Class: Google::Apis::AlloydbV1beta::SslConfig
- Inherits:
-
Object
- Object
- Google::Apis::AlloydbV1beta::SslConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alloydb_v1beta/classes.rb,
lib/google/apis/alloydb_v1beta/representations.rb,
lib/google/apis/alloydb_v1beta/representations.rb
Overview
SSL configuration.
Instance Attribute Summary collapse
-
#ca_source ⇒ String
Optional.
-
#ssl_mode ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SslConfig
constructor
A new instance of SslConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SslConfig
Returns a new instance of SslConfig.
2316 2317 2318 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2316 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ca_source ⇒ String
Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is
supported currently, and is the default value.
Corresponds to the JSON property caSource
2309 2310 2311 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2309 def ca_source @ca_source end |
#ssl_mode ⇒ String
Optional. SSL mode. Specifies client-server SSL/TLS connection behavior.
Corresponds to the JSON property sslMode
2314 2315 2316 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2314 def ssl_mode @ssl_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2321 2322 2323 2324 |
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2321 def update!(**args) @ca_source = args[:ca_source] if args.key?(:ca_source) @ssl_mode = args[:ssl_mode] if args.key?(:ssl_mode) end |