Class: Google::Apis::SqladminV1beta3::InstancesUpdateResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::InstancesUpdateResponse
- 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 update response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#instancesUpdate.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesUpdateResponse
constructor
A new instance of InstancesUpdateResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesUpdateResponse
Returns a new instance of InstancesUpdateResponse
1056 1057 1058 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1056 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesUpdate.
Corresponds to the JSON property kind
1048 1049 1050 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1048 def kind @kind end |
#operation ⇒ String
An identifier that uniquely identifies the operation. You can use this
identifier to retrieve information about the operation.
Corresponds to the JSON property operation
1054 1055 1056 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1054 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1061 1062 1063 1064 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1061 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |