Class: Google::Apis::SqladminV1beta3::SslCertDetail
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta3::SslCertDetail
- 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
SslCertDetail.
Instance Attribute Summary collapse
-
#cert_info ⇒ Google::Apis::SqladminV1beta3::SslCert
SslCerts Resource Corresponds to the JSON property
certInfo
. -
#cert_private_key ⇒ String
The private key for the client cert, in pem format.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslCertDetail
constructor
A new instance of SslCertDetail.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertDetail
Returns a new instance of SslCertDetail
1447 1448 1449 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1447 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_info ⇒ Google::Apis::SqladminV1beta3::SslCert
SslCerts Resource
Corresponds to the JSON property certInfo
1439 1440 1441 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1439 def cert_info @cert_info end |
#cert_private_key ⇒ String
The private key for the client cert, in pem format. Keep private in order to
protect your security.
Corresponds to the JSON property certPrivateKey
1445 1446 1447 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1445 def cert_private_key @cert_private_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1452 1453 1454 1455 |
# File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1452 def update!(**args) @cert_info = args[:cert_info] if args.key?(:cert_info) @cert_private_key = args[:cert_private_key] if args.key?(:cert_private_key) end |