Class: Google::Apis::ComputeV1::InstancesScopedList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::InstancesScopedList
 
- 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
- 
  
    
      #instances  ⇒ Array<Google::Apis::ComputeV1::Instance> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] A list of instances contained in this scope. 
- 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::InstancesScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Informational warning which replaces the list of instances when the list is empty. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstancesScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InstancesScopedList. 
- 
  
    
      #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) ⇒ InstancesScopedList
Returns a new instance of InstancesScopedList
| 8754 8755 8756 | # File 'generated/google/apis/compute_v1/classes.rb', line 8754 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#instances ⇒ Array<Google::Apis::ComputeV1::Instance>
[Output Only] A list of instances contained in this scope.
Corresponds to the JSON property instances
| 8746 8747 8748 | # File 'generated/google/apis/compute_v1/classes.rb', line 8746 def instances @instances end | 
#warning ⇒ Google::Apis::ComputeV1::InstancesScopedList::Warning
[Output Only] Informational warning which replaces the list of instances when
the list is empty.
Corresponds to the JSON property warning
| 8752 8753 8754 | # File 'generated/google/apis/compute_v1/classes.rb', line 8752 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 8759 8760 8761 8762 | # File 'generated/google/apis/compute_v1/classes.rb', line 8759 def update!(**args) @instances = args[:instances] if args.key?(:instances) @warning = args[:warning] if args.key?(:warning) end |