Class: Google::Apis::SpannerV1::OptimizeRestoredDatabaseMetadata
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::OptimizeRestoredDatabaseMetadata
- 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
Metadata type for the long-running operation used to track the progress of optimizations performed on a newly restored database. This long-running operation is automatically created by the system after the successful completion of a database restore, and cannot be cancelled.
Instance Attribute Summary collapse
-
#name ⇒ String
Name of the restored database being optimized.
-
#progress ⇒ Google::Apis::SpannerV1::OperationProgress
Encapsulates progress related information for a Cloud Spanner long running operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OptimizeRestoredDatabaseMetadata
constructor
A new instance of OptimizeRestoredDatabaseMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OptimizeRestoredDatabaseMetadata
Returns a new instance of OptimizeRestoredDatabaseMetadata.
2064 2065 2066 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2064 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Name of the restored database being optimized.
Corresponds to the JSON property name
2056 2057 2058 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2056 def name @name end |
#progress ⇒ Google::Apis::SpannerV1::OperationProgress
Encapsulates progress related information for a Cloud Spanner long running
operation.
Corresponds to the JSON property progress
2062 2063 2064 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2062 def progress @progress end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2069 2070 2071 2072 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2069 def update!(**args) @name = args[:name] if args.key?(:name) @progress = args[:progress] if args.key?(:progress) end |