Class: Google::Apis::SqladminV1beta3::InstancesRestoreBackupResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::InstancesRestoreBackupResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta3/classes.rb,
generated/google/apis/sqladmin_v1beta3/representations.rb,
generated/google/apis/sqladmin_v1beta3/representations.rb
Overview
Database instance restore backup response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#instancesRestoreBackup.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesRestoreBackupResponse
constructor
A new instance of InstancesRestoreBackupResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesRestoreBackupResponse
Returns a new instance of InstancesRestoreBackupResponse
1003 1004 1005 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1003 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesRestoreBackup.
Corresponds to the JSON property kind
994 995 996 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 994 def kind @kind end |
#operation ⇒ String
An identifier that uniquely identifies the operation. You can use this
identifier to retrieve the Operations resource that has information about the
operation.
Corresponds to the JSON property operation
1001 1002 1003 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1001 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1008 1009 1010 1011 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1008 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |