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
| 2031 2032 2033 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2031 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
| 2029 2030 2031 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2029 def public_key @public_key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2036 2037 2038 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2036 def update!(**args) @public_key = args[:public_key] if args.key?(:public_key) end |