class Google::Apis::SpannerV1::ListBackupOperationsResponse
The response for ListBackupOperations.
Attributes
`next_page_token` can be sent in a subsequent ListBackupOperations call to fetch more of the matching metadata. Corresponds to the JSON property `nextPageToken` @return [String]
The list of matching backup long-running operations. Each operation's name will be prefixed by the backup's name and the operation's metadata will be of type CreateBackupMetadata
. Operations returned include those that are pending or have completed/failed/canceled within the last 7 days. Operations returned are ordered by `operation.metadata.value.progress.start_time` in descending order starting from the most recently started operation. Corresponds to the JSON property `operations` @return [Array<Google::Apis::SpannerV1::Operation>]
Public Class Methods
# File lib/google/apis/spanner_v1/classes.rb, line 1991 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 1996 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) end