Class: Google::Apis::ComputeBeta::RegionInstanceGroupsListInstancesRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::RegionInstanceGroupsListInstancesRequest
 
 
- Defined in:
 - generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #instance_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Instances in which state should be returned.
 - 
  
    
      #port_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of port user is interested in.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RegionInstanceGroupsListInstancesRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RegionInstanceGroupsListInstancesRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RegionInstanceGroupsListInstancesRequest
Returns a new instance of RegionInstanceGroupsListInstancesRequest
      17560 17561 17562  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 17560 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance_state ⇒ String
Instances in which state should be returned. Valid options are: 'ALL', '
RUNNING'. By default, it lists all instances.
Corresponds to the JSON property instanceState
      17551 17552 17553  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 17551 def instance_state @instance_state end  | 
  
#port_name ⇒ String
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
      17558 17559 17560  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 17558 def port_name @port_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      17565 17566 17567 17568  | 
    
      # File 'generated/google/apis/compute_beta/classes.rb', line 17565 def update!(**args) @instance_state = args[:instance_state] if args.key?(:instance_state) @port_name = args[:port_name] if args.key?(:port_name) end  |