Class: Google::Apis::SpannerV1::RestoreDatabaseMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::RestoreDatabaseMetadata
 
 
- 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 returned by RestoreDatabase.
Instance Attribute Summary collapse
- 
  
    
      #backup_info  ⇒ Google::Apis::SpannerV1::BackupInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about a backup.
 - 
  
    
      #cancel_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which cancellation of this operation was received.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the database being created and restored to.
 - 
  
    
      #optimize_database_operation_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If exists, the name of the long-running operation that will be used to track the post-restore optimization process to optimize the performance of the restored database, and remove the dependency on the restore source.
 - 
  
    
      #progress  ⇒ Google::Apis::SpannerV1::OperationProgress 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Encapsulates progress related information for a Cloud Spanner long running operation.
 - 
  
    
      #source_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the restore source.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RestoreDatabaseMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RestoreDatabaseMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ RestoreDatabaseMetadata
Returns a new instance of RestoreDatabaseMetadata.
      3796 3797 3798  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3796 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#backup_info ⇒ Google::Apis::SpannerV1::BackupInfo
Information about a backup.
Corresponds to the JSON property backupInfo
      3753 3754 3755  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3753 def backup_info @backup_info end  | 
  
#cancel_time ⇒ String
The time at which cancellation of this operation was received. Operations.
CancelOperation starts asynchronous cancellation on a long-running operation.
The server makes a best effort to cancel the operation, but success is not
guaranteed. Clients can use Operations.GetOperation or other methods to check
whether the cancellation succeeded or whether the operation completed despite
cancellation. On successful cancellation, the operation is not deleted;
instead, it becomes an operation with an Operation.error value with a google.
rpc.Status.code of 1, corresponding to Code.CANCELLED.
Corresponds to the JSON property cancelTime
      3765 3766 3767  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3765 def cancel_time @cancel_time end  | 
  
#name ⇒ String
Name of the database being created and restored to.
Corresponds to the JSON property name
      3770 3771 3772  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3770 def name @name end  | 
  
#optimize_database_operation_name ⇒ String
If exists, the name of the long-running operation that will be used to track
the post-restore optimization process to optimize the performance of the
restored database, and remove the dependency on the restore source. The name
is of the form projects//instances//databases//operations/ where the is the
name of database being created and restored to. The metadata type of the long-
running operation is OptimizeRestoredDatabaseMetadata. This long-running
operation will be automatically created by the system after the
RestoreDatabase long-running operation completes successfully. This operation
will not be created if the restore was not successful.
Corresponds to the JSON property optimizeDatabaseOperationName
      3783 3784 3785  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3783 def optimize_database_operation_name @optimize_database_operation_name end  | 
  
#progress ⇒ Google::Apis::SpannerV1::OperationProgress
Encapsulates progress related information for a Cloud Spanner long running
operation.
Corresponds to the JSON property progress
      3789 3790 3791  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3789 def progress @progress end  | 
  
#source_type ⇒ String
The type of the restore source.
Corresponds to the JSON property sourceType
      3794 3795 3796  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3794 def source_type @source_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3801 3802 3803 3804 3805 3806 3807 3808  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3801 def update!(**args) @backup_info = args[:backup_info] if args.key?(:backup_info) @cancel_time = args[:cancel_time] if args.key?(:cancel_time) @name = args[:name] if args.key?(:name) @optimize_database_operation_name = args[:optimize_database_operation_name] if args.key?(:optimize_database_operation_name) @progress = args[:progress] if args.key?(:progress) @source_type = args[:source_type] if args.key?(:source_type) end  |