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
2173 2174 2175 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_info ⇒ Google::Apis::SqladminV1beta4::SslCert
SslCerts Resource
Corresponds to the JSON property certInfo
2165 2166 2167 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2165 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
2171 2172 2173 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2171 def cert_private_key @cert_private_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2178 2179 2180 2181 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2178 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 |