Class: Google::Apis::ContainerV1::ListOperationsResponse

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

Overview

ListOperationsResponse is the result of ListOperationsRequest.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListOperationsResponse

Returns a new instance of ListOperationsResponse.



677
678
679
# File 'generated/google/apis/container_v1/classes.rb', line 677

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>)


675
676
677
# File 'generated/google/apis/container_v1/classes.rb', line 675

def missing_zones
  @missing_zones
end

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

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



669
670
671
# File 'generated/google/apis/container_v1/classes.rb', line 669

def operations
  @operations
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



682
683
684
685
# File 'generated/google/apis/container_v1/classes.rb', line 682

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