class Google::Apis::SqladminV1beta4::SslCertsCreateEphemeralRequest

SslCerts create ephemeral certificate request.

Attributes

access_token[RW]

Access token to include in the signed certificate. Corresponds to the JSON property `access_token` @return [String]

public_key[RW]

PEM encoded public key to include in the signed certificate. Corresponds to the JSON property `public_key` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3373
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 3378
def update!(**args)
  @access_token = args[:access_token] if args.key?(:access_token)
  @public_key = args[:public_key] if args.key?(:public_key)
end