Interface ConfigureContactSettingsRequestOrBuilder

    • 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.v1beta1.ContactSettings contact_settings = 2;
        Returns:
        Whether the contactSettings field is set.
      • getContactSettings

        ContactSettings getContactSettings()
         Fields of the `ContactSettings` to update.
         
        .google.cloud.domains.v1beta1.ContactSettings contact_settings = 2;
        Returns:
        The contactSettings.
      • getContactSettingsOrBuilder

        ContactSettingsOrBuilder getContactSettingsOrBuilder()
         Fields of the `ContactSettings` to update.
         
        .google.cloud.domains.v1beta1.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.v1beta1.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.v1beta1.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.v1beta1.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.v1beta1.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.v1beta1.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.