Package com.google.cloud.compute.v1
Interface InstanceGroupsListInstancesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
InstanceGroupsListInstancesRequest,InstanceGroupsListInstancesRequest.Builder
public interface InstanceGroupsListInstancesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetInstanceState()A filter for the state of the instances in the instance group.com.google.protobuf.ByteStringgetInstanceStateBytes()A filter for the state of the instances in the instance group.booleanhasInstanceState()A filter for the state of the instances in the instance group.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasInstanceState
boolean hasInstanceState()
A filter for the state of the instances in the instance group. Valid options are ALL or RUNNING. If you do not specify this parameter the list includes all instances regardless of their state. Check the InstanceState enum for the list of possible values.
optional string instance_state = 92223591;- Returns:
- Whether the instanceState field is set.
-
getInstanceState
String getInstanceState()
A filter for the state of the instances in the instance group. Valid options are ALL or RUNNING. If you do not specify this parameter the list includes all instances regardless of their state. Check the InstanceState enum for the list of possible values.
optional string instance_state = 92223591;- Returns:
- The instanceState.
-
getInstanceStateBytes
com.google.protobuf.ByteString getInstanceStateBytes()
A filter for the state of the instances in the instance group. Valid options are ALL or RUNNING. If you do not specify this parameter the list includes all instances regardless of their state. Check the InstanceState enum for the list of possible values.
optional string instance_state = 92223591;- Returns:
- The bytes for instanceState.
-
-