Class: Google::Apis::SqladminV1beta4::SslCertDetail
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::SslCertDetail
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta4/classes.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb,
generated/google/apis/sqladmin_v1beta4/representations.rb
Overview
SslCertDetail.
Instance Attribute Summary collapse
-
#cert_info ⇒ Google::Apis::SqladminV1beta4::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
2231 2232 2233 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2231 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_info ⇒ Google::Apis::SqladminV1beta4::SslCert
SslCerts Resource
Corresponds to the JSON property certInfo
2223 2224 2225 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2223 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
2229 2230 2231 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2229 def cert_private_key @cert_private_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2236 2237 2238 2239 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2236 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 |