Class: Google::Apis::SqladminV1beta4::RestoreBackupContext
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::RestoreBackupContext
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta4/classes.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb
Overview
Database instance restore from backup context.
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.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RestoreBackupContext
constructor
A new instance of RestoreBackupContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ RestoreBackupContext
Returns a new instance of RestoreBackupContext
1600 1601 1602 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1600 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
1588 1589 1590 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1588 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
1593 1594 1595 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1593 def instance_id @instance_id end |
#kind ⇒ String
This is always sql#restoreBackupContext.
Corresponds to the JSON property kind
1598 1599 1600 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1598 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1605 1606 1607 1608 1609 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1605 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) end |