Class: Google::Apis::SqladminV1beta3::InstancesResetSslConfigResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::InstancesResetSslConfigResponse
- 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 resetSslConfig response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#instancesResetSslConfig.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesResetSslConfigResponse
constructor
A new instance of InstancesResetSslConfigResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InstancesResetSslConfigResponse
Returns a new instance of InstancesResetSslConfigResponse
966 967 968 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 966 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#instancesResetSslConfig.
Corresponds to the JSON property kind
955 956 957 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 955 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. All ssl client certificates will be deleted and a new server
certificate will be created. Does not take effect until the next instance
restart.
Corresponds to the JSON property operation
964 965 966 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 964 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
971 972 973 974 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 971 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |