class Google::Apis::ContainerV1::ListClustersResponse
ListClustersResponse is the result of ListClustersRequest.
Attributes
clusters[RW]
A list of clusters in the project in the specified zone, or across all ones. Corresponds to the JSON property `clusters` @return [Array<Google::Apis::ContainerV1::Cluster>]
missing_zones[RW]
If any zones are listed here, the list of clusters returned may be missing those zones. Corresponds to the JSON property `missingZones` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/container_v1/classes.rb, line 40 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/container_v1/classes.rb, line 45 def update!(**args) @clusters = args[:clusters] if args.key?(:clusters) @missing_zones = args[:missing_zones] if args.key?(:missing_zones) end