Interface UpdateRegistrationRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateRegistrationRequest
,UpdateRegistrationRequest.Builder
public interface UpdateRegistrationRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Registration
getRegistration()
Fields of the `Registration` to update.RegistrationOrBuilder
getRegistrationOrBuilder()
Fields of the `Registration` to update.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
hasRegistration()
Fields of the `Registration` to update.boolean
hasUpdateMask()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasRegistration
boolean hasRegistration()
Fields of the `Registration` to update.
.google.cloud.domains.v1alpha2.Registration registration = 1;
- Returns:
- Whether the registration field is set.
-
getRegistration
Registration getRegistration()
Fields of the `Registration` to update.
.google.cloud.domains.v1alpha2.Registration registration = 1;
- Returns:
- The registration.
-
getRegistrationOrBuilder
RegistrationOrBuilder getRegistrationOrBuilder()
Fields of the `Registration` to update.
.google.cloud.domains.v1alpha2.Registration registration = 1;
-
hasUpdateMask
boolean hasUpdateMask()
Required. The field mask describing which fields to update as a comma-separated list. For example, if only the labels are being updated, the `update_mask` is `"labels"`.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the updateMask field is set.
-
getUpdateMask
com.google.protobuf.FieldMask getUpdateMask()
Required. The field mask describing which fields to update as a comma-separated list. For example, if only the labels are being updated, the `update_mask` is `"labels"`.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The updateMask.
-
getUpdateMaskOrBuilder
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
Required. The field mask describing which fields to update as a comma-separated list. For example, if only the labels are being updated, the `update_mask` is `"labels"`.
.google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = REQUIRED];
-
-