Package com.google.cloud.compute.v1
Interface RegionInstanceGroupManagersAbandonInstancesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RegionInstanceGroupManagersAbandonInstancesRequest
,RegionInstanceGroupManagersAbandonInstancesRequest.Builder
public interface RegionInstanceGroupManagersAbandonInstancesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInstances(int index)
The URLs of one or more instances to abandon.com.google.protobuf.ByteString
getInstancesBytes(int index)
The URLs of one or more instances to abandon.int
getInstancesCount()
The URLs of one or more instances to abandon.List<String>
getInstancesList()
The URLs of one or more instances to abandon.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInstancesList
List<String> getInstancesList()
The URLs of one or more instances to abandon. This can be a full URL or a partial URL, such as zones/[ZONE]/instances/[INSTANCE_NAME].
repeated string instances = 29097598;
- Returns:
- A list containing the instances.
-
getInstancesCount
int getInstancesCount()
The URLs of one or more instances to abandon. This can be a full URL or a partial URL, such as zones/[ZONE]/instances/[INSTANCE_NAME].
repeated string instances = 29097598;
- Returns:
- The count of instances.
-
getInstances
String getInstances(int index)
The URLs of one or more instances to abandon. This can be a full URL or a partial URL, such as zones/[ZONE]/instances/[INSTANCE_NAME].
repeated string instances = 29097598;
- Parameters:
index
- The index of the element to return.- Returns:
- The instances at the given index.
-
getInstancesBytes
com.google.protobuf.ByteString getInstancesBytes(int index)
The URLs of one or more instances to abandon. This can be a full URL or a partial URL, such as zones/[ZONE]/instances/[INSTANCE_NAME].
repeated string instances = 29097598;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the instances at the given index.
-
-