Class: Google::Apis::BigtableadminV2::ListAppProfilesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb

Overview

Response message for BigtableInstanceAdmin.ListAppProfiles.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListAppProfilesResponse

Returns a new instance of ListAppProfilesResponse.



2347
2348
2349
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2347

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#app_profilesArray<Google::Apis::BigtableadminV2::AppProfile>

The list of requested app profiles. Corresponds to the JSON property appProfiles



2332
2333
2334
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2332

def app_profiles
  @app_profiles
end

#failed_locationsArray<String>

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

Returns:

  • (Array<String>)


2339
2340
2341
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2339

def failed_locations
  @failed_locations
end

#next_page_tokenString

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

Returns:

  • (String)


2345
2346
2347
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2345

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2352
2353
2354
2355
2356
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2352

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