Class: Google::Apis::ComputeV1::DisksScopedList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeV1::DisksScopedList
 
- 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
- 
  
    
      #disks  ⇒ Array<Google::Apis::ComputeV1::Disk> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] A list of disks contained in this scope. 
- 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::DisksScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output Only] Informational warning which replaces the list of disks when the list is empty. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ DisksScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of DisksScopedList. 
- 
  
    
      #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) ⇒ DisksScopedList
Returns a new instance of DisksScopedList
| 4239 4240 4241 | # File 'generated/google/apis/compute_v1/classes.rb', line 4239 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#disks ⇒ Array<Google::Apis::ComputeV1::Disk>
[Output Only] A list of disks contained in this scope.
Corresponds to the JSON property disks
| 4231 4232 4233 | # File 'generated/google/apis/compute_v1/classes.rb', line 4231 def disks @disks end | 
#warning ⇒ Google::Apis::ComputeV1::DisksScopedList::Warning
[Output Only] Informational warning which replaces the list of disks when the
list is empty.
Corresponds to the JSON property warning
| 4237 4238 4239 | # File 'generated/google/apis/compute_v1/classes.rb', line 4237 def warning @warning end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 4244 4245 4246 4247 | # File 'generated/google/apis/compute_v1/classes.rb', line 4244 def update!(**args) @disks = args[:disks] if args.key?(:disks) @warning = args[:warning] if args.key?(:warning) end |