Interface UpdateWorkerBuildIdCompatabilityRequest.AddNewCompatibleVersionOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateWorkerBuildIdCompatabilityRequest.AddNewCompatibleVersion,UpdateWorkerBuildIdCompatabilityRequest.AddNewCompatibleVersion.Builder
- Enclosing class:
- UpdateWorkerBuildIdCompatabilityRequest
public static interface UpdateWorkerBuildIdCompatabilityRequest.AddNewCompatibleVersionOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetExistingCompatibleBuildId()A build id which must already exist in the version sets known by the task queue.com.google.protobuf.ByteStringgetExistingCompatibleBuildIdBytes()A build id which must already exist in the version sets known by the task queue.booleangetMakeSetDefault()When set, establishes the compatible set being targeted as the overall default for the queue.java.lang.StringgetNewBuildId()A new id to be added to an existing compatible set.com.google.protobuf.ByteStringgetNewBuildIdBytes()A new id to be added to an existing compatible set.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNewBuildId
java.lang.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
java.lang.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.
-
-