Package com.google.cloud.compute.v1
Interface RegionInstanceGroupsListInstancesRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RegionInstanceGroupsListInstancesRequest
,RegionInstanceGroupsListInstancesRequest.Builder
public interface RegionInstanceGroupsListInstancesRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInstanceState()
Instances in which state should be returned.com.google.protobuf.ByteString
getInstanceStateBytes()
Instances in which state should be returned.String
getPortName()
Name of port user is interested in.com.google.protobuf.ByteString
getPortNameBytes()
Name of port user is interested in.boolean
hasInstanceState()
Instances in which state should be returned.boolean
hasPortName()
Name of port user is interested in.-
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()
Instances in which state should be returned. Valid options are: 'ALL', 'RUNNING'. By default, it lists all instances. 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()
Instances in which state should be returned. Valid options are: 'ALL', 'RUNNING'. By default, it lists all instances. Check the InstanceState enum for the list of possible values.
optional string instance_state = 92223591;
- Returns:
- The instanceState.
-
getInstanceStateBytes
com.google.protobuf.ByteString getInstanceStateBytes()
Instances in which state should be returned. Valid options are: 'ALL', 'RUNNING'. By default, it lists all instances. Check the InstanceState enum for the list of possible values.
optional string instance_state = 92223591;
- Returns:
- The bytes for instanceState.
-
hasPortName
boolean hasPortName()
Name of port user is interested in. It is optional. If it is set, only information about this ports will be returned. If it is not set, all the named ports will be returned. Always lists all instances.
optional string port_name = 41534345;
- Returns:
- Whether the portName field is set.
-
getPortName
String getPortName()
Name of port user is interested in. It is optional. If it is set, only information about this ports will be returned. If it is not set, all the named ports will be returned. Always lists all instances.
optional string port_name = 41534345;
- Returns:
- The portName.
-
getPortNameBytes
com.google.protobuf.ByteString getPortNameBytes()
Name of port user is interested in. It is optional. If it is set, only information about this ports will be returned. If it is not set, all the named ports will be returned. Always lists all instances.
optional string port_name = 41534345;
- Returns:
- The bytes for portName.
-
-