class Google::Apis::SqladminV1beta4::InsertSslCertsResponse

SslCert insert response.

Attributes

client_cert[RW]

SslCertDetail. Corresponds to the JSON property `clientCert` @return [Google::Apis::SqladminV1beta4::SslCertDetail]

kind[RW]

This is always `sql#sslCertsInsert`. Corresponds to the JSON property `kind` @return [String]

operation[RW]

An Operation resource. For successful operations that return an Operation resource, only the fields relevant to the operation are populated in the resource. Corresponds to the JSON property `operation` @return [Google::Apis::SqladminV1beta4::Operation]

server_ca_cert[RW]

SslCerts Resource Corresponds to the JSON property `serverCaCert` @return [Google::Apis::SqladminV1beta4::SslCert]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3518
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3523
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