Class: Google::Apis::SqladminV1beta4::SslCertsCreateEphemeralRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::SslCertsCreateEphemeralRequest
 
 
- 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
SslCerts create ephemeral certificate request.
Instance Attribute Summary collapse
- 
  
    
      #public_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
PEM encoded public key to include in the signed certificate.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SslCertsCreateEphemeralRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SslCertsCreateEphemeralRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsCreateEphemeralRequest
Returns a new instance of SslCertsCreateEphemeralRequest
      2132 2133 2134  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2132 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#public_key ⇒ String
PEM encoded public key to include in the signed certificate.
Corresponds to the JSON property public_key
      2130 2131 2132  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2130 def public_key @public_key end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2137 2138 2139  | 
    
      # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2137 def update!(**args) @public_key = args[:public_key] if args.key?(:public_key) end  |