Interface UpdateTagValueRequestOrBuilder

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

    public interface UpdateTagValueRequestOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Detail

      • hasTagValue

        boolean hasTagValue()
         Required. The new definition of the TagValue. Only fields `description` and
         `etag` fields can be updated by this request. If the `etag` field is
         nonempty, it must match the `etag` field of the existing ControlGroup.
         Otherwise, `ABORTED` will be returned.
         
        .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 new definition of the TagValue. Only fields `description` and
         `etag` fields can be updated by this request. If the `etag` field is
         nonempty, it must match the `etag` field of the existing ControlGroup.
         Otherwise, `ABORTED` will be returned.
         
        .google.cloud.resourcemanager.v3.TagValue tag_value = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The tagValue.
      • getTagValueOrBuilder

        TagValueOrBuilder getTagValueOrBuilder()
         Required. The new definition of the TagValue. Only fields `description` and
         `etag` fields can be updated by this request. If the `etag` field is
         nonempty, it must match the `etag` field of the existing ControlGroup.
         Otherwise, `ABORTED` will be returned.
         
        .google.cloud.resourcemanager.v3.TagValue tag_value = 1 [(.google.api.field_behavior) = REQUIRED];
      • hasUpdateMask

        boolean hasUpdateMask()
         Optional. Fields to be updated.
         
        .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        Whether the updateMask field is set.
      • getUpdateMask

        com.google.protobuf.FieldMask getUpdateMask()
         Optional. Fields to be updated.
         
        .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The updateMask.
      • getUpdateMaskOrBuilder

        com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder()
         Optional. Fields to be updated.
         
        .google.protobuf.FieldMask update_mask = 2 [(.google.api.field_behavior) = OPTIONAL];
      • getValidateOnly

        boolean getValidateOnly()
         Optional. True to perform validations necessary for updating the resource,
         but not actually perform the action.
         
        bool validate_only = 3 [(.google.api.field_behavior) = OPTIONAL];
        Returns:
        The validateOnly.