class Google::Apis::BigtableadminV2::ListInstancesResponse
Response message for BigtableInstanceAdmin.ListInstances.
Attributes
Locations from which Instance
information could not be retrieved, due to an outage or some other transient condition. Instances whose Clusters are all in one of the failed locations may be missing from `instances`, and Instances with at least one Cluster
in a failed location may only have partial information returned. Values are of the form `projects//locations/` Corresponds to the JSON property `failedLocations` @return [Array<String>]
The list of requested instances. Corresponds to the JSON property `instances` @return [Array<Google::Apis::BigtableadminV2::Instance>]
DEPRECATED: This field is unused and ignored. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1240 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/bigtableadmin_v2/classes.rb, line 1245 def update!(**args) @failed_locations = args[:failed_locations] if args.key?(:failed_locations) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end