class Google::Apis::BigtableadminV2::ListClustersResponse

Response message for BigtableInstanceAdmin.ListClusters.

Attributes

clusters[RW]

The list of requested clusters. Corresponds to the JSON property `clusters` @return [Array<Google::Apis::BigtableadminV2::Cluster>]

failed_locations[RW]

Locations from which Cluster information could not be retrieved, due to an outage or some other transient condition. Clusters from these locations may be missing from `clusters`, or may only have partial information returned. Values are of the form `projects//locations/` Corresponds to the JSON property `failedLocations` @return [Array<String>]

next_page_token[RW]

DEPRECATED: This field is unused and ignored. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1205
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1210
def update!(**args)
  @clusters = args[:clusters] if args.key?(:clusters)
  @failed_locations = args[:failed_locations] if args.key?(:failed_locations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end