Class: Google::Apis::SqladminV1beta4::SslCertDetail
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::SslCertDetail
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/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.
 
Constructor Details
#initialize(**args) ⇒ SslCertDetail
Returns a new instance of SslCertDetail.
      4394 4395 4396  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4394 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#cert_info ⇒ Google::Apis::SqladminV1beta4::SslCert
SslCerts Resource
Corresponds to the JSON property certInfo
      4386 4387 4388  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4386 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
      4392 4393 4394  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4392 def cert_private_key @cert_private_key end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4399 4400 4401 4402  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4399 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  |