class Google::Apis::BigtableadminV2::ListBackupsResponse
The response for ListBackups.
Attributes
backups[RW]
The list of matching backups. Corresponds to the JSON property `backups` @return [Array<Google::Apis::BigtableadminV2::Backup>]
next_page_token[RW]
`next_page_token` can be sent in a subsequent ListBackups call to fetch more of the matching backups. 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 1172 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 1177 def update!(**args) @backups = args[:backups] if args.key?(:backups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end