Class: Google::Apis::ContainerV1beta1::ListOperationsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1beta1::ListOperationsResponse
 
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
 generated/google/apis/container_v1beta1/representations.rb,
 generated/google/apis/container_v1beta1/representations.rb
Overview
ListOperationsResponse is the result of ListOperationsRequest.
Instance Attribute Summary collapse
- 
  
    
      #missing_zones  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    If any zones are listed here, the list of operations returned may be missing the operations from those zones. 
- 
  
    
      #operations  ⇒ Array<Google::Apis::ContainerV1beta1::Operation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of operations in the project in the specified zone. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListOperationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListOperationsResponse. 
- 
  
    
      #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) ⇒ ListOperationsResponse
Returns a new instance of ListOperationsResponse
| 1166 1167 1168 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1166 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#missing_zones ⇒ Array<String>
If any zones are listed here, the list of operations returned
may be missing the operations from those zones.
Corresponds to the JSON property missingZones
| 1159 1160 1161 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1159 def missing_zones @missing_zones end | 
#operations ⇒ Array<Google::Apis::ContainerV1beta1::Operation>
A list of operations in the project in the specified zone.
Corresponds to the JSON property operations
| 1164 1165 1166 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1164 def operations @operations end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1171 1172 1173 1174 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1171 def update!(**args) @missing_zones = args[:missing_zones] if args.key?(:missing_zones) @operations = args[:operations] if args.key?(:operations) end |