class Google::Apis::SpannerV1::ListBackupsResponse
The response for ListBackups.
Attributes
backups[RW]
The list of matching backups. Backups returned are ordered by `create_time` in descending order, starting from the most recent `create_time`. Corresponds to the JSON property `backups` @return [Array<Google::Apis::SpannerV1::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/spanner_v1/classes.rb, line 2018 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 2023 def update!(**args) @backups = args[:backups] if args.key?(:backups) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end