class Google::Apis::BigtableadminV2::ListAppProfilesResponse

Response message for BigtableInstanceAdmin.ListAppProfiles.

Attributes

app_profiles[RW]

The list of requested app profiles. Corresponds to the JSON property `appProfiles` @return [Array<Google::Apis::BigtableadminV2::AppProfile>]

failed_locations[RW]

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

next_page_token[RW]

Set if not all app profiles could be returned in a single response. Pass this value to `page_token` in another request to get the next page of results. 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 1145
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 1150
def update!(**args)
  @app_profiles = args[:app_profiles] if args.key?(:app_profiles)
  @failed_locations = args[:failed_locations] if args.key?(:failed_locations)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end