Class: Google::Apis::SqladminV1beta3::SslCertsInsertRequest
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta3::SslCertsInsertRequest
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta3/classes.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb,
 generated/google/apis/sqladmin_v1beta3/representations.rb
Overview
SslCerts insert request.
Instance Attribute Summary collapse
- 
  
    
      #common_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    User supplied name. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SslCertsInsertRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SslCertsInsertRequest. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsInsertRequest
Returns a new instance of SslCertsInsertRequest
| 1496 1497 1498 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1496 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#common_name ⇒ String
User supplied name. Must be a distinct name from the other certificates for
this instance. New certificates will not be usable until the instance is
restarted.
Corresponds to the JSON property commonName
| 1494 1495 1496 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1494 def common_name @common_name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1501 1502 1503 | # File 'generated/google/apis/sqladmin_v1beta3/classes.rb', line 1501 def update!(**args) @common_name = args[:common_name] if args.key?(:common_name) end |