Class: Google::Apis::SqladminV1beta3::InstancesDeleteResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::InstancesDeleteResponse
- 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 delete response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#instancesDelete.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesDeleteResponse
constructor
A new instance of InstancesDeleteResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesDeleteResponse
Returns a new instance of InstancesDeleteResponse
742 743 744 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 742 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesDelete.
Corresponds to the JSON property kind
733 734 735 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 733 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
740 741 742 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 740 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
747 748 749 750 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 747 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |