Class: Google::Apis::ComputeV1::OperationsScopedList
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeV1::OperationsScopedList
 
 
- 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
- 
  
    
      #operations  ⇒ Array<Google::Apis::ComputeV1::Operation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] A list of operations contained in this scope.
 - 
  
    
      #warning  ⇒ Google::Apis::ComputeV1::OperationsScopedList::Warning 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Informational warning which replaces the list of operations when the list is empty.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationsScopedList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OperationsScopedList.
 - 
  
    
      #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) ⇒ OperationsScopedList
Returns a new instance of OperationsScopedList
      13968 13969 13970  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13968 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#operations ⇒ Array<Google::Apis::ComputeV1::Operation>
[Output Only] A list of operations contained in this scope.
Corresponds to the JSON property operations
      13960 13961 13962  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13960 def operations @operations end  | 
  
#warning ⇒ Google::Apis::ComputeV1::OperationsScopedList::Warning
[Output Only] Informational warning which replaces the list of operations when
the list is empty.
Corresponds to the JSON property warning
      13966 13967 13968  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13966 def warning @warning end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      13973 13974 13975 13976  | 
    
      # File 'generated/google/apis/compute_v1/classes.rb', line 13973 def update!(**args) @operations = args[:operations] if args.key?(:operations) @warning = args[:warning] if args.key?(:warning) end  |