Class: Google::Apis::SqladminV1beta3::InstancesSetRootPasswordResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::InstancesSetRootPasswordResponse
- 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 set root password response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#instancesSetRootPassword.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesSetRootPasswordResponse
constructor
A new instance of InstancesSetRootPasswordResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesSetRootPasswordResponse
Returns a new instance of InstancesSetRootPasswordResponse
1047 1048 1049 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1047 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesSetRootPassword.
Corresponds to the JSON property kind
1038 1039 1040 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1038 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
1045 1046 1047 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1045 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1052 1053 1054 1055 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1052 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |