Class: Google::Apis::SqladminV1beta4::RestoreBackupContext
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::RestoreBackupContext
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb 
Overview
Database instance restore from backup context. Backup context contains source instance id and project id.
Instance Attribute Summary collapse
- 
  
    
      #backup_run_id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the backup run to restore from.
 - 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the instance that the backup was taken from.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This is always
sql#restoreBackupContext. - 
  
    
      #project  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full project ID of the source instance.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ RestoreBackupContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of RestoreBackupContext.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ RestoreBackupContext
Returns a new instance of RestoreBackupContext.
      3541 3542 3543  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3541 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#backup_run_id ⇒ Fixnum
The ID of the backup run to restore from.
Corresponds to the JSON property backupRunId
      3524 3525 3526  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3524 def backup_run_id @backup_run_id end  | 
  
#instance_id ⇒ String
The ID of the instance that the backup was taken from.
Corresponds to the JSON property instanceId
      3529 3530 3531  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3529 def instance_id @instance_id end  | 
  
#kind ⇒ String
This is always sql#restoreBackupContext.
Corresponds to the JSON property kind
      3534 3535 3536  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3534 def kind @kind end  | 
  
#project ⇒ String
The full project ID of the source instance.
Corresponds to the JSON property project
      3539 3540 3541  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3539 def project @project end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3546 3547 3548 3549 3550 3551  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 3546 def update!(**args) @backup_run_id = args[:backup_run_id] if args.key?(:backup_run_id) @instance_id = args[:instance_id] if args.key?(:instance_id) @kind = args[:kind] if args.key?(:kind) @project = args[:project] if args.key?(:project) end  |