com.google.cloud.domains.v1.ConfigureManagementSettingsRequestOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-domains-v1 Show documentation
Show all versions of proto-google-cloud-domains-v1 Show documentation
Proto library for google-cloud-domains
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/domains/v1/domains.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.domains.v1;
public interface ConfigureManagementSettingsRequestOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.domains.v1.ConfigureManagementSettingsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Required. The name of the `Registration` whose management settings are being updated,
* in the format `projects/*/locations/*/registrations/*`.
*
*
*
* string registration = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The registration.
*/
java.lang.String getRegistration();
/**
*
*
*
* Required. The name of the `Registration` whose management settings are being updated,
* in the format `projects/*/locations/*/registrations/*`.
*
*
*
* string registration = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
*
*
* @return The bytes for registration.
*/
com.google.protobuf.ByteString getRegistrationBytes();
/**
*
*
*
* Fields of the `ManagementSettings` to update.
*
*
* .google.cloud.domains.v1.ManagementSettings management_settings = 2;
*
* @return Whether the managementSettings field is set.
*/
boolean hasManagementSettings();
/**
*
*
*
* Fields of the `ManagementSettings` to update.
*
*
* .google.cloud.domains.v1.ManagementSettings management_settings = 2;
*
* @return The managementSettings.
*/
com.google.cloud.domains.v1.ManagementSettings getManagementSettings();
/**
*
*
*
* Fields of the `ManagementSettings` to update.
*
*
* .google.cloud.domains.v1.ManagementSettings management_settings = 2;
*/
com.google.cloud.domains.v1.ManagementSettingsOrBuilder getManagementSettingsOrBuilder();
/**
*
*
*
* Required. The field mask describing which fields to update as a comma-separated list.
* For example, if only the transfer lock is being updated, the `update_mask`
* is `"transfer_lock_state"`.
*
*
* .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return Whether the updateMask field is set.
*/
boolean hasUpdateMask();
/**
*
*
*
* Required. The field mask describing which fields to update as a comma-separated list.
* For example, if only the transfer lock is being updated, the `update_mask`
* is `"transfer_lock_state"`.
*
*
* .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED];
*
*
* @return The updateMask.
*/
com.google.protobuf.FieldMask getUpdateMask();
/**
*
*
*
* Required. The field mask describing which fields to update as a comma-separated list.
* For example, if only the transfer lock is being updated, the `update_mask`
* is `"transfer_lock_state"`.
*
*
* .google.protobuf.FieldMask update_mask = 3 [(.google.api.field_behavior) = REQUIRED];
*
*/
com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder();
}