Package com.google.cloud.compute.v1
Interface InstanceGroupManagersRecreateInstancesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceGroupManagersRecreateInstancesRequest,InstanceGroupManagersRecreateInstancesRequest.Builder
public interface InstanceGroupManagersRecreateInstancesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetInstances(int index)The URLs of one or more instances to recreate.com.google.protobuf.ByteStringgetInstancesBytes(int index)The URLs of one or more instances to recreate.intgetInstancesCount()The URLs of one or more instances to recreate.List<String>getInstancesList()The URLs of one or more instances to recreate.-
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 recreate. 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 recreate. 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 recreate. 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 recreate. 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.
-
-