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.



3768
3769
3770
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3768

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

Instance Attribute Details

#cert_infoGoogle::Apis::SqladminV1::SslCert

SslCerts Resource Corresponds to the JSON property certInfo



3760
3761
3762
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3760

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)


3766
3767
3768
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3766

def cert_private_key
  @cert_private_key
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3773
3774
3775
3776
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 3773

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