Class: Google::Apis::SpannerV1::RestoreInfo
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::RestoreInfo
 
 
- 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
Information about the database restore.
Instance Attribute Summary collapse
- 
  
    
      #backup_info  ⇒ Google::Apis::SpannerV1::BackupInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about a backup.
 - 
  
    
      #source_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of the restore source.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RestoreInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RestoreInfo.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ RestoreInfo
Returns a new instance of RestoreInfo.
      3859 3860 3861  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3859 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
      3852 3853 3854  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3852 def backup_info @backup_info end  | 
  
#source_type ⇒ String
The type of the restore source.
Corresponds to the JSON property sourceType
      3857 3858 3859  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3857 def source_type @source_type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3864 3865 3866 3867  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 3864 def update!(**args) @backup_info = args[:backup_info] if args.key?(:backup_info) @source_type = args[:source_type] if args.key?(:source_type) end  |