Class: Google::Cloud::Spanner::Instance::Job Deprecated
- Inherits:
-
Object
- Object
- Google::Cloud::Spanner::Instance::Job
- Defined in:
- lib/google/cloud/spanner/instance/job.rb
Overview
Use the long-running operation returned by the Admin::Instance.instance_admin.create_instance instead.
Job
A resource representing the long-running, asynchronous processing of an instance create or update operation. The job can be refreshed to retrieve the instance object once the operation has been completed.
See Project#create_instance and #update.
Instance Method Summary collapse
-
#done? ⇒ boolean
Checks if the processing of the instance operation is complete.
-
#error ⇒ Google::Cloud::Spanner::Status?
The status if the operation associated with this job produced an error.
-
#error? ⇒ boolean
Checks if the processing of the instance operation has errored.
-
#instance ⇒ Google::Cloud::Spanner::Instance?
The instance that is the object of the operation.
-
#reload! ⇒ Google::Cloud::Spanner::Instance::Job
(also: #refresh!)
Reloads the job with current data from the long-running, asynchronous processing of an instance operation.
-
#wait_until_done! ⇒ Object
Reloads the job until the operation is complete.
Instance Method Details
#done? ⇒ boolean
Checks if the processing of the instance operation is complete.
123 124 125 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 123 def done? @grpc.done? end |
#error ⇒ Google::Cloud::Spanner::Status?
The status if the operation associated with this job produced an error.
171 172 173 174 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 171 def error return nil unless error? Google::Cloud::Spanner::Status.from_grpc @grpc.error end |
#error? ⇒ boolean
Checks if the processing of the instance operation has errored.
145 146 147 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 145 def error? @grpc.error? end |
#instance ⇒ Google::Cloud::Spanner::Instance?
The instance that is the object of the operation.
99 100 101 102 103 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 99 def instance return nil unless done? return nil unless @grpc.grpc_op.result == :response Instance.from_grpc @grpc.results, service end |
#reload! ⇒ Google::Cloud::Spanner::Instance::Job Also known as: refresh!
Reloads the job with current data from the long-running, asynchronous processing of an instance operation.
198 199 200 201 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 198 def reload! @grpc.reload! self end |
#wait_until_done! ⇒ Object
Reloads the job until the operation is complete. The delay between reloads will incrementally increase.
223 224 225 |
# File 'lib/google/cloud/spanner/instance/job.rb', line 223 def wait_until_done! @grpc.wait_until_done! end |