Package com.google.cloud.compute.v1
Interface InstanceGroupManagersSetTargetPoolsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceGroupManagersSetTargetPoolsRequest
,InstanceGroupManagersSetTargetPoolsRequest.Builder
public interface InstanceGroupManagersSetTargetPoolsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFingerprint()
The fingerprint of the target pools information.com.google.protobuf.ByteString
getFingerprintBytes()
The fingerprint of the target pools information.String
getTargetPools(int index)
The list of target pool URLs that instances in this managed instance group belong to.com.google.protobuf.ByteString
getTargetPoolsBytes(int index)
The list of target pool URLs that instances in this managed instance group belong to.int
getTargetPoolsCount()
The list of target pool URLs that instances in this managed instance group belong to.List<String>
getTargetPoolsList()
The list of target pool URLs that instances in this managed instance group belong to.boolean
hasFingerprint()
The fingerprint of the target pools information.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFingerprint
boolean hasFingerprint()
The fingerprint of the target pools information. Use this optional property to prevent conflicts when multiple users change the target pools settings concurrently. Obtain the fingerprint with the instanceGroupManagers.get method. Then, include the fingerprint in your request to ensure that you do not overwrite changes that were applied from another concurrent request.
optional string fingerprint = 234678500;
- Returns:
- Whether the fingerprint field is set.
-
getFingerprint
String getFingerprint()
The fingerprint of the target pools information. Use this optional property to prevent conflicts when multiple users change the target pools settings concurrently. Obtain the fingerprint with the instanceGroupManagers.get method. Then, include the fingerprint in your request to ensure that you do not overwrite changes that were applied from another concurrent request.
optional string fingerprint = 234678500;
- Returns:
- The fingerprint.
-
getFingerprintBytes
com.google.protobuf.ByteString getFingerprintBytes()
The fingerprint of the target pools information. Use this optional property to prevent conflicts when multiple users change the target pools settings concurrently. Obtain the fingerprint with the instanceGroupManagers.get method. Then, include the fingerprint in your request to ensure that you do not overwrite changes that were applied from another concurrent request.
optional string fingerprint = 234678500;
- Returns:
- The bytes for fingerprint.
-
getTargetPoolsList
List<String> getTargetPoolsList()
The list of target pool URLs that instances in this managed instance group belong to. The managed instance group applies these target pools to all of the instances in the group. Existing instances and new instances in the group all receive these target pool settings.
repeated string target_pools = 336072617;
- Returns:
- A list containing the targetPools.
-
getTargetPoolsCount
int getTargetPoolsCount()
The list of target pool URLs that instances in this managed instance group belong to. The managed instance group applies these target pools to all of the instances in the group. Existing instances and new instances in the group all receive these target pool settings.
repeated string target_pools = 336072617;
- Returns:
- The count of targetPools.
-
getTargetPools
String getTargetPools(int index)
The list of target pool URLs that instances in this managed instance group belong to. The managed instance group applies these target pools to all of the instances in the group. Existing instances and new instances in the group all receive these target pool settings.
repeated string target_pools = 336072617;
- Parameters:
index
- The index of the element to return.- Returns:
- The targetPools at the given index.
-
getTargetPoolsBytes
com.google.protobuf.ByteString getTargetPoolsBytes(int index)
The list of target pool URLs that instances in this managed instance group belong to. The managed instance group applies these target pools to all of the instances in the group. Existing instances and new instances in the group all receive these target pool settings.
repeated string target_pools = 336072617;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the targetPools at the given index.
-
-