Class: Google::Apis::SqladminV1beta4::RestoreBackupContext

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RestoreBackupContext

Returns a new instance of RestoreBackupContext.



1542
1543
1544
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1542

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

Instance Attribute Details

#backup_run_idString

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

Returns:

  • (String)


1530
1531
1532
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1530

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)


1535
1536
1537
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1535

def instance_id
  @instance_id
end

#kindString

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

Returns:

  • (String)


1540
1541
1542
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1540

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1547
1548
1549
1550
1551
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1547

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