Class: Google::Apis::ComputeV1::InstanceGroupsScopedList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::InstanceGroupsScopedList
 
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
 generated/google/apis/compute_v1/representations.rb,
 generated/google/apis/compute_v1/representations.rb
Defined Under Namespace
Classes: Warning
Instance Attribute Summary collapse
- 
  
    
      #instance_groups  ⇒ Array<Google::Apis::ComputeV1::InstanceGroup> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] The list of instance groups that are contained in this scope. 
- 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::InstanceGroupsScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] An informational warning that replaces the list of instance groups when the list is empty. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstanceGroupsScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InstanceGroupsScopedList. 
- 
  
    
      #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) ⇒ InstanceGroupsScopedList
Returns a new instance of InstanceGroupsScopedList
| 8029 8030 8031 | # File 'generated/google/apis/compute_v1/classes.rb', line 8029 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#instance_groups ⇒ Array<Google::Apis::ComputeV1::InstanceGroup>
[Output Only] The list of instance groups that are contained in this scope.
Corresponds to the JSON property instanceGroups
| 8021 8022 8023 | # File 'generated/google/apis/compute_v1/classes.rb', line 8021 def instance_groups @instance_groups end | 
#warning ⇒ Google::Apis::ComputeV1::InstanceGroupsScopedList::Warning
[Output Only] An informational warning that replaces the list of instance
groups when the list is empty.
Corresponds to the JSON property warning
| 8027 8028 8029 | # File 'generated/google/apis/compute_v1/classes.rb', line 8027 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 8034 8035 8036 8037 | # File 'generated/google/apis/compute_v1/classes.rb', line 8034 def update!(**args) @instance_groups = args[:instance_groups] if args.key?(:instance_groups) @warning = args[:warning] if args.key?(:warning) end |