Class: Google::Apis::SqladminV1::RestoreBackupContext

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb

Overview

Database instance restore from backup context. Backup context contains source instance id and project id.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RestoreBackupContext

Returns a new instance of RestoreBackupContext.



3765
3766
3767
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3765

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#backup_run_idFixnum

The ID of the backup run to restore from. Corresponds to the JSON property backupRunId

Returns:

  • (Fixnum)


3748
3749
3750
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3748

def backup_run_id
  @backup_run_id
end

#instance_idString

The ID of the instance that the backup was taken from. Corresponds to the JSON property instanceId

Returns:

  • (String)


3753
3754
3755
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3753

def instance_id
  @instance_id
end

#kindString

This is always sql#restoreBackupContext. Corresponds to the JSON property kind

Returns:

  • (String)


3758
3759
3760
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3758

def kind
  @kind
end

#projectString

The full project ID of the source instance. Corresponds to the JSON property project

Returns:

  • (String)


3763
3764
3765
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3763

def project
  @project
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3770
3771
3772
3773
3774
3775
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3770

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