Class: Google::Apis::SqladminV1beta3::SslCertsInsertResponse
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::SslCertsInsertResponse
- 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 insert response.
Instance Attribute Summary collapse
-
#client_cert ⇒ Google::Apis::SqladminV1beta3::SslCertDetail
SslCertDetail.
-
#kind ⇒ String
This is always sql#sslCertsInsert.
-
#server_ca_cert ⇒ Google::Apis::SqladminV1beta3::SslCert
SslCerts Resource Corresponds to the JSON property
serverCaCert
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslCertsInsertResponse
constructor
A new instance of SslCertsInsertResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsInsertResponse
Returns a new instance of SslCertsInsertResponse
1525 1526 1527 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1525 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_cert ⇒ Google::Apis::SqladminV1beta3::SslCertDetail
SslCertDetail.
Corresponds to the JSON property clientCert
1513 1514 1515 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1513 def client_cert @client_cert end |
#kind ⇒ String
This is always sql#sslCertsInsert.
Corresponds to the JSON property kind
1518 1519 1520 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1518 def kind @kind end |
#server_ca_cert ⇒ Google::Apis::SqladminV1beta3::SslCert
SslCerts Resource
Corresponds to the JSON property serverCaCert
1523 1524 1525 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1523 def server_ca_cert @server_ca_cert end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1530 1531 1532 1533 1534 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1530 def update!(**args) @client_cert = args[:client_cert] if args.key?(:client_cert) @kind = args[:kind] if args.key?(:kind) @server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert) end |