class Google::Apis::SpannerV1::ListDatabaseOperationsResponse

The response for ListDatabaseOperations.

Attributes

next_page_token[RW]

`next_page_token` can be sent in a subsequent ListDatabaseOperations call to fetch more of the matching metadata. Corresponds to the JSON property `nextPageToken` @return [String]

operations[RW]

The list of matching database long-running operations. Each operation's name will be prefixed by the database's name. The operation's metadata field type ` metadata.type_url` describes the type of the metadata. Corresponds to the JSON property `operations` @return [Array<Google::Apis::SpannerV1::Operation>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 2046
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 2051
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @operations = args[:operations] if args.key?(:operations)
end