Class: Google::Apis::SqladminV1beta4::BackupContext
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::BackupContext
- 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
Backup context.
Instance Attribute Summary collapse
-
#backup_id ⇒ Fixnum
The identifier of the backup.
-
#kind ⇒ String
This is always
sql#backupContext.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BackupContext
constructor
A new instance of BackupContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ BackupContext
Returns a new instance of BackupContext.
202 203 204 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 202 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup_id ⇒ Fixnum
The identifier of the backup.
Corresponds to the JSON property backupId
195 196 197 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 195 def backup_id @backup_id end |
#kind ⇒ String
This is always sql#backupContext.
Corresponds to the JSON property kind
200 201 202 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 200 def kind @kind end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
207 208 209 210 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 207 def update!(**args) @backup_id = args[:backup_id] if args.key?(:backup_id) @kind = args[:kind] if args.key?(:kind) end |