Class: Google::Apis::ContainerV1beta1::ListOperationsResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

ListOperationsResponse is the result of ListOperationsRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListOperationsResponse

Returns a new instance of ListOperationsResponse.



3809
3810
3811
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3809

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#missing_zonesArray<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

Returns:

  • (Array<String>)


3802
3803
3804
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3802

def missing_zones
  @missing_zones
end

#operationsArray<Google::Apis::ContainerV1beta1::Operation>

A list of operations in the project in the specified zone. Corresponds to the JSON property operations



3807
3808
3809
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3807

def operations
  @operations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3814
3815
3816
3817
# File 'lib/google/apis/container_v1beta1/classes.rb', line 3814

def update!(**args)
  @missing_zones = args[:missing_zones] if args.key?(:missing_zones)
  @operations = args[:operations] if args.key?(:operations)
end