Class: Google::Apis::SqladminV1beta4::InsertSslCertsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta4::InsertSslCertsResponse
 
- 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
SslCert insert response.
Instance Attribute Summary collapse
- 
  
    
      #client_cert  ⇒ Google::Apis::SqladminV1beta4::SslCertDetail 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    SslCertDetail. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#sslCertsInsert. 
- 
  
    
      #operation  ⇒ Google::Apis::SqladminV1beta4::Operation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An Operations resource contains information about database instance operations such as create, delete, and restart. 
- 
  
    
      #server_ca_cert  ⇒ Google::Apis::SqladminV1beta4::SslCert 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    SslCerts Resource Corresponds to the JSON property serverCaCert.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InsertSslCertsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of InsertSslCertsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ InsertSslCertsResponse
Returns a new instance of InsertSslCertsResponse
| 2088 2089 2090 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2088 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#client_cert ⇒ Google::Apis::SqladminV1beta4::SslCertDetail
SslCertDetail.
Corresponds to the JSON property clientCert
| 2069 2070 2071 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2069 def client_cert @client_cert end | 
#kind ⇒ String
This is always sql#sslCertsInsert.
Corresponds to the JSON property kind
| 2074 2075 2076 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2074 def kind @kind end | 
#operation ⇒ Google::Apis::SqladminV1beta4::Operation
An Operations resource contains information about database instance operations
such as create, delete, and restart. Operations resources are created in
response to operations that were initiated; you never create them directly.
Corresponds to the JSON property operation
| 2081 2082 2083 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2081 def operation @operation end | 
#server_ca_cert ⇒ Google::Apis::SqladminV1beta4::SslCert
SslCerts Resource
Corresponds to the JSON property serverCaCert
| 2086 2087 2088 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2086 def server_ca_cert @server_ca_cert end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2093 2094 2095 2096 2097 2098 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2093 def update!(**args) @client_cert = args[:client_cert] if args.key?(:client_cert) @kind = args[:kind] if args.key?(:kind) @operation = args[:operation] if args.key?(:operation) @server_ca_cert = args[:server_ca_cert] if args.key?(:server_ca_cert) end |