Class: Google::Apis::SpannerV1::ListDatabaseOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListDatabaseOperationsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/spanner_v1/classes.rb,
lib/google/apis/spanner_v1/representations.rb,
lib/google/apis/spanner_v1/representations.rb
Overview
The response for ListDatabaseOperations.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
next_page_tokencan be sent in a subsequent ListDatabaseOperations call to fetch more of the matching metadata. -
#operations ⇒ Array<Google::Apis::SpannerV1::Operation>
The list of matching database long-running operations.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListDatabaseOperationsResponse
constructor
A new instance of ListDatabaseOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListDatabaseOperationsResponse
Returns a new instance of ListDatabaseOperationsResponse.
1737 1738 1739 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1737 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
next_page_token can be sent in a subsequent ListDatabaseOperations call to
fetch more of the matching metadata.
Corresponds to the JSON property nextPageToken
1728 1729 1730 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1728 def next_page_token @next_page_token end |
#operations ⇒ Array<Google::Apis::SpannerV1::Operation>
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
1735 1736 1737 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1735 def operations @operations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1742 1743 1744 1745 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1742 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) end |