Class: Google::Apis::ContainerV1::ListOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::ListOperationsResponse
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/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::ContainerV1::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.
Constructor Details
#initialize(**args) ⇒ ListOperationsResponse
Returns a new instance of ListOperationsResponse.
2533 2534 2535 |
# File 'lib/google/apis/container_v1/classes.rb', line 2533 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
2526 2527 2528 |
# File 'lib/google/apis/container_v1/classes.rb', line 2526 def missing_zones @missing_zones end |
#operations ⇒ Array<Google::Apis::ContainerV1::Operation>
A list of operations in the project in the specified zone.
Corresponds to the JSON property operations
2531 2532 2533 |
# File 'lib/google/apis/container_v1/classes.rb', line 2531 def operations @operations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2538 2539 2540 2541 |
# File 'lib/google/apis/container_v1/classes.rb', line 2538 def update!(**args) @missing_zones = args[:missing_zones] if args.key?(:missing_zones) @operations = args[:operations] if args.key?(:operations) end |