Package com.google.cloud.domains.v1
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 ContactNotice
getContactNotices(int index)
The list of contact notices that the caller acknowledges.int
getContactNoticesCount()
The list of contact notices that the caller acknowledges.List<ContactNotice>
getContactNoticesList()
The list of contact notices that the caller acknowledges.int
getContactNoticesValue(int index)
The list of contact notices that the caller acknowledges.List<Integer>
getContactNoticesValueList()
The list of contact notices that the caller acknowledges.ContactSettings
getContactSettings()
Fields of the `ContactSettings` to update.ContactSettingsOrBuilder
getContactSettingsOrBuilder()
Fields of the `ContactSettings` to update.String
getRegistration()
Required.com.google.protobuf.ByteString
getRegistrationBytes()
Required.com.google.protobuf.FieldMask
getUpdateMask()
Required.com.google.protobuf.FieldMaskOrBuilder
getUpdateMaskOrBuilder()
Required.boolean
getValidateOnly()
Validate the request without actually updating the contact settings.boolean
hasContactSettings()
Fields of the `ContactSettings` 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
-
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.v1.ContactSettings contact_settings = 2;
- Returns:
- Whether the contactSettings field is set.
-
getContactSettings
ContactSettings getContactSettings()
Fields of the `ContactSettings` to update.
.google.cloud.domains.v1.ContactSettings contact_settings = 2;
- Returns:
- The contactSettings.
-
getContactSettingsOrBuilder
ContactSettingsOrBuilder getContactSettingsOrBuilder()
Fields of the `ContactSettings` to update.
.google.cloud.domains.v1.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.v1.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.v1.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.v1.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.v1.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.v1.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.
-
-