Interface CreateTagHoldRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
CreateTagHoldRequest
,CreateTagHoldRequest.Builder
public interface CreateTagHoldRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getParent()
Required.com.google.protobuf.ByteString
getParentBytes()
Required.TagHold
getTagHold()
Required.TagHoldOrBuilder
getTagHoldOrBuilder()
Required.boolean
getValidateOnly()
Optional.boolean
hasTagHold()
Required.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getParent
String getParent()
Required. The resource name of the TagHold's parent TagValue. Must be of the form: `tagValues/{tag-value-id}`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The parent.
-
getParentBytes
com.google.protobuf.ByteString getParentBytes()
Required. The resource name of the TagHold's parent TagValue. Must be of the form: `tagValues/{tag-value-id}`.
string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
- Returns:
- The bytes for parent.
-
hasTagHold
boolean hasTagHold()
Required. The TagHold to be created.
.google.cloud.resourcemanager.v3.TagHold tag_hold = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- Whether the tagHold field is set.
-
getTagHold
TagHold getTagHold()
Required. The TagHold to be created.
.google.cloud.resourcemanager.v3.TagHold tag_hold = 2 [(.google.api.field_behavior) = REQUIRED];
- Returns:
- The tagHold.
-
getTagHoldOrBuilder
TagHoldOrBuilder getTagHoldOrBuilder()
Required. The TagHold to be created.
.google.cloud.resourcemanager.v3.TagHold tag_hold = 2 [(.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 = 3 [(.google.api.field_behavior) = OPTIONAL];
- Returns:
- The validateOnly.
-
-