Interface CreateTagValueRequestOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    CreateTagValueRequest, CreateTagValueRequest.Builder

    public interface CreateTagValueRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      TagValue getTagValue()
      Required.
      TagValueOrBuilder getTagValueOrBuilder()
      Required.
      boolean getValidateOnly()
      Optional.
      boolean hasTagValue()
      Required.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • hasTagValue

        boolean hasTagValue()
         Required. The TagValue to be created. Only fields `short_name`,
         `description`, and `parent` are considered during the creation request.
         
        .google.cloud.resourcemanager.v3.TagValue tag_value = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        Whether the tagValue field is set.
      • getTagValue

        TagValue getTagValue()
         Required. The TagValue to be created. Only fields `short_name`,
         `description`, and `parent` are considered during the creation request.
         
        .google.cloud.resourcemanager.v3.TagValue tag_value = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The tagValue.
      • getTagValueOrBuilder

        TagValueOrBuilder getTagValueOrBuilder()
         Required. The TagValue to be created. Only fields `short_name`,
         `description`, and `parent` are considered during the creation request.
         
        .google.cloud.resourcemanager.v3.TagValue tag_value = 1 [(.google.api.field_behavior) = REQUIRED];
      • getValidateOnly

        boolean getValidateOnly()
         Optional. Set as 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.