Interface CreateTagBindingRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTagBindingRequest
,CreateTagBindingRequest.Builder
public interface CreateTagBindingRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TagBinding
getTagBinding()
Required.TagBindingOrBuilder
getTagBindingOrBuilder()
Required.boolean
getValidateOnly()
Optional.boolean
hasTagBinding()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTagBinding
boolean hasTagBinding()
Required. The TagBinding to be created.
.google.cloud.resourcemanager.v3.TagBinding tag_binding = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the tagBinding field is set.
-
getTagBinding
TagBinding getTagBinding()
Required. The TagBinding to be created.
.google.cloud.resourcemanager.v3.TagBinding tag_binding = 1 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tagBinding.
-
getTagBindingOrBuilder
TagBindingOrBuilder getTagBindingOrBuilder()
Required. The TagBinding to be created.
.google.cloud.resourcemanager.v3.TagBinding tag_binding = 1 [(.google.api.field_behavior) = REQUIRED];
-
getValidateOnly
boolean getValidateOnly()
Optional. Set to true to perform the validations necessary for creating the resource, but not actually perform the action.
bool validate_only = 2 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The validateOnly.
-
-