Class: Google::Apis::SqladminV1beta3::SslCertsDeleteResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::SslCertsDeleteResponse
- 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
SslCert delete response.
Instance Attribute Summary collapse
-
#kind ⇒ String
This is always sql#sslCertsDelete.
-
#operation ⇒ String
An identifier that uniquely identifies the operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslCertsDeleteResponse
constructor
A new instance of SslCertsDeleteResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsDeleteResponse
Returns a new instance of SslCertsDeleteResponse
1457 1458 1459 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1457 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
This is always sql#sslCertsDelete.
Corresponds to the JSON property kind
1448 1449 1450 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1448 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
1455 1456 1457 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1455 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1462 1463 1464 1465 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1462 def update!(**args) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) end |