Interface ConfigureContactSettingsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConfigureContactSettingsRequest,ConfigureContactSettingsRequest.Builder
public interface ConfigureContactSettingsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ContactNoticegetContactNotices(int index)The list of contact notices that the caller acknowledges.intgetContactNoticesCount()The list of contact notices that the caller acknowledges.List<ContactNotice>getContactNoticesList()The list of contact notices that the caller acknowledges.intgetContactNoticesValue(int index)The list of contact notices that the caller acknowledges.List<Integer>getContactNoticesValueList()The list of contact notices that the caller acknowledges.ContactSettingsgetContactSettings()Fields of the `ContactSettings` to update.ContactSettingsOrBuildergetContactSettingsOrBuilder()Fields of the `ContactSettings` to update.StringgetRegistration()Required.com.google.protobuf.ByteStringgetRegistrationBytes()Required.com.google.protobuf.FieldMaskgetUpdateMask()Required.com.google.protobuf.FieldMaskOrBuildergetUpdateMaskOrBuilder()Required.booleangetValidateOnly()Validate the request without actually updating the contact settings.booleanhasContactSettings()Fields of the `ContactSettings` to update.booleanhasUpdateMask()Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getRegistration
String getRegistration()
Required. The name of the `Registration` whose contact settings are being updated, in the format `projects/*/locations/*/registrations/*`.
string registration = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The registration.
-
getRegistrationBytes
com.google.protobuf.ByteString getRegistrationBytes()
Required. The name of the `Registration` whose contact settings are being updated, in the format `projects/*/locations/*/registrations/*`.
string registration = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for registration.
-
hasContactSettings
boolean hasContactSettings()
Fields of the `ContactSettings` to update.
.google.cloud.domains.v1alpha2.ContactSettings contact_settings = 2;- Returns:
- Whether the contactSettings field is set.
-
getContactSettings
ContactSettings getContactSettings()
Fields of the `ContactSettings` to update.
.google.cloud.domains.v1alpha2.ContactSettings contact_settings = 2;- Returns:
- The contactSettings.
-
getContactSettingsOrBuilder
ContactSettingsOrBuilder getContactSettingsOrBuilder()
Fields of the `ContactSettings` to update.
.google.cloud.domains.v1alpha2.ContactSettings contact_settings = 2;
-
hasUpdateMask
boolean hasUpdateMask()
Required. The field mask describing which fields to update as a comma-separated list. For example, if only the registrant contact is being updated, the `update_mask` is `"registrant_contact"`.
.google.protobuf.FieldMask update_mask = 3 [(.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 registrant contact is being updated, the `update_mask` is `"registrant_contact"`.
.google.protobuf.FieldMask update_mask = 3 [(.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 registrant contact is being updated, the `update_mask` is `"registrant_contact"`.
.google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED];
-
getContactNoticesList
List<ContactNotice> getContactNoticesList()
The list of contact notices that the caller acknowledges. The notices needed here depend on the values specified in `contact_settings`.
repeated .google.cloud.domains.v1alpha2.ContactNotice contact_notices = 4;- Returns:
- A list containing the contactNotices.
-
getContactNoticesCount
int getContactNoticesCount()
The list of contact notices that the caller acknowledges. The notices needed here depend on the values specified in `contact_settings`.
repeated .google.cloud.domains.v1alpha2.ContactNotice contact_notices = 4;- Returns:
- The count of contactNotices.
-
getContactNotices
ContactNotice getContactNotices(int index)
The list of contact notices that the caller acknowledges. The notices needed here depend on the values specified in `contact_settings`.
repeated .google.cloud.domains.v1alpha2.ContactNotice contact_notices = 4;- Parameters:
index- The index of the element to return.- Returns:
- The contactNotices at the given index.
-
getContactNoticesValueList
List<Integer> getContactNoticesValueList()
The list of contact notices that the caller acknowledges. The notices needed here depend on the values specified in `contact_settings`.
repeated .google.cloud.domains.v1alpha2.ContactNotice contact_notices = 4;- Returns:
- A list containing the enum numeric values on the wire for contactNotices.
-
getContactNoticesValue
int getContactNoticesValue(int index)
The list of contact notices that the caller acknowledges. The notices needed here depend on the values specified in `contact_settings`.
repeated .google.cloud.domains.v1alpha2.ContactNotice contact_notices = 4;- Parameters:
index- The index of the value to return.- Returns:
- The enum numeric value on the wire of contactNotices at the given index.
-
getValidateOnly
boolean getValidateOnly()
Validate the request without actually updating the contact settings.
bool validate_only = 5;- Returns:
- The validateOnly.
-
-