Interface UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersionOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion, UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersion.Builder
Enclosing class:
UpdateWorkerBuildIdCompatibilityRequest

public static interface UpdateWorkerBuildIdCompatibilityRequest.AddNewCompatibleVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    A build id which must already exist in the version sets known by the task queue.
    com.google.protobuf.ByteString
    A build id which must already exist in the version sets known by the task queue.
    boolean
    When set, establishes the compatible set being targeted as the overall default for the queue.
    A new id to be added to an existing compatible set.
    com.google.protobuf.ByteString
    A new id to be added to an existing compatible set.

    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 Details

    • getNewBuildId

      String getNewBuildId()
       A new id to be added to an existing compatible set.
       
      string new_build_id = 1;
      Returns:
      The newBuildId.
    • getNewBuildIdBytes

      com.google.protobuf.ByteString getNewBuildIdBytes()
       A new id to be added to an existing compatible set.
       
      string new_build_id = 1;
      Returns:
      The bytes for newBuildId.
    • getExistingCompatibleBuildId

      String getExistingCompatibleBuildId()
       A build id which must already exist in the version sets known by the task queue. The new
       id will be stored in the set containing this id, marking it as compatible with
       the versions within.
       
      string existing_compatible_build_id = 2;
      Returns:
      The existingCompatibleBuildId.
    • getExistingCompatibleBuildIdBytes

      com.google.protobuf.ByteString getExistingCompatibleBuildIdBytes()
       A build id which must already exist in the version sets known by the task queue. The new
       id will be stored in the set containing this id, marking it as compatible with
       the versions within.
       
      string existing_compatible_build_id = 2;
      Returns:
      The bytes for existingCompatibleBuildId.
    • getMakeSetDefault

      boolean getMakeSetDefault()
       When set, establishes the compatible set being targeted as the overall default for the
       queue. If a different set was the current default, the targeted set will replace it as
       the new default.
       
      bool make_set_default = 3;
      Returns:
      The makeSetDefault.