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.
2009 2010 2011 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2009 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
2000 2001 2002 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2000 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
2007 2008 2009 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2007 def operations @operations end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2014 2015 2016 2017 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2014 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) end |