Class: Google::Apis::SpannerV1::ListInstancePartitionOperationsResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListInstancePartitionOperationsResponse
- 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 ListInstancePartitionOperations.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
next_page_tokencan be sent in a subsequent ListInstancePartitionOperations call to fetch more of the matching metadata. -
#operations ⇒ Array<Google::Apis::SpannerV1::Operation>
The list of matching instance partition long-running operations.
-
#unreachable_instance_partitions ⇒ Array<String>
The list of unreachable instance partitions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInstancePartitionOperationsResponse
constructor
A new instance of ListInstancePartitionOperationsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInstancePartitionOperationsResponse
Returns a new instance of ListInstancePartitionOperationsResponse.
4075 4076 4077 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 4075 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
next_page_token can be sent in a subsequent ListInstancePartitionOperations
call to fetch more of the matching metadata.
Corresponds to the JSON property nextPageToken
4058 4059 4060 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 4058 def next_page_token @next_page_token end |
#operations ⇒ Array<Google::Apis::SpannerV1::Operation>
The list of matching instance partition long-running operations. Each
operation's name will be prefixed by the instance partition's name. The
operation's metadata field type metadata.type_url describes the type of the
metadata.
Corresponds to the JSON property operations
4066 4067 4068 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 4066 def operations @operations end |
#unreachable_instance_partitions ⇒ Array<String>
The list of unreachable instance partitions. It includes the names of instance
partitions whose operation metadata could not be retrieved within
instance_partition_deadline.
Corresponds to the JSON property unreachableInstancePartitions
4073 4074 4075 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 4073 def unreachable_instance_partitions @unreachable_instance_partitions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4080 4081 4082 4083 4084 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 4080 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) @unreachable_instance_partitions = args[:unreachable_instance_partitions] if args.key?(:unreachable_instance_partitions) end |