class Google::Apis::ComputeV1::RegionInstanceGroupsListInstancesRequest

Attributes

instance_state[RW]

Instances in which state should be returned. Valid options are: 'ALL', ' RUNNING'. By default, it lists all instances. Corresponds to the JSON property `instanceState` @return [String]

port_name[RW]

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. Corresponds to the JSON property `portName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 27719
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_v1/classes.rb, line 27724
def update!(**args)
  @instance_state = args[:instance_state] if args.key?(:instance_state)
  @port_name = args[:port_name] if args.key?(:port_name)
end