Class: Google::Apis::SqladminV1beta4::SslCertsCreateEphemeralRequest
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::SslCertsCreateEphemeralRequest
- 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
SslCerts create ephemeral certificate request.
Instance Attribute Summary collapse
-
#public_key ⇒ String
PEM encoded public key to include in the signed certificate.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslCertsCreateEphemeralRequest
constructor
A new instance of SslCertsCreateEphemeralRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SslCertsCreateEphemeralRequest
Returns a new instance of SslCertsCreateEphemeralRequest
2193 2194 2195 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2193 def initialize(**args) update!(**args) end |
Instance Attribute Details
#public_key ⇒ String
PEM encoded public key to include in the signed certificate.
Corresponds to the JSON property public_key
2191 2192 2193 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2191 def public_key @public_key end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2198 2199 2200 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 2198 def update!(**args) @public_key = args[:public_key] if args.key?(:public_key) end |