Class: Google::Apis::SqladminV1::SslCertDetail

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb

Overview

SslCertDetail.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslCertDetail

Returns a new instance of SslCertDetail.



4544
4545
4546
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4544

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#cert_infoGoogle::Apis::SqladminV1::SslCert

SslCerts Resource Corresponds to the JSON property certInfo



4536
4537
4538
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4536

def cert_info
  @cert_info
end

#cert_private_keyString

The private key for the client cert, in pem format. Keep private in order to protect your security. Corresponds to the JSON property certPrivateKey

Returns:

  • (String)


4542
4543
4544
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4542

def cert_private_key
  @cert_private_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4549
4550
4551
4552
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4549

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