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
2011 2012 2013 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2011 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cert_info ⇒ Google::Apis::SqladminV1beta4::SslCert
SslCerts Resource
Corresponds to the JSON property certInfo
2003 2004 2005 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2003 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
2009 2010 2011 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2009 def cert_private_key @cert_private_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2016 2017 2018 2019 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2016 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 |