Class: Google::Apis::SqladminV1beta4::InsertSslCertsRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1beta4::InsertSslCertsRequest
 
 
- 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
SslCerts insert request.
Instance Attribute Summary collapse
- 
  
    
      #common_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
User supplied name.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InsertSslCertsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InsertSslCertsRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InsertSslCertsRequest
Returns a new instance of InsertSslCertsRequest.
      4440 4441 4442  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4440 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.
Corresponds to the JSON property commonName
      4438 4439 4440  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4438 def common_name @common_name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4445 4446 4447  | 
    
      # File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 4445 def update!(**args) @common_name = args[:common_name] if args.key?(:common_name) end  |