Class: Google::Apis::AlloydbV1beta::SslConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SslConfig

Returns a new instance of SslConfig.



2623
2624
2625
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2623

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ca_sourceString

Optional. Certificate Authority (CA) source. Only CA_SOURCE_MANAGED is supported currently, and is the default value. Corresponds to the JSON property caSource

Returns:

  • (String)


2616
2617
2618
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2616

def ca_source
  @ca_source
end

#ssl_modeString

Optional. SSL mode. Specifies client-server SSL/TLS connection behavior. Corresponds to the JSON property sslMode

Returns:

  • (String)


2621
2622
2623
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2621

def ssl_mode
  @ssl_mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2628
2629
2630
2631
# File 'lib/google/apis/alloydb_v1beta/classes.rb', line 2628

def update!(**args)
  @ca_source = args[:ca_source] if args.key?(:ca_source)
  @ssl_mode = args[:ssl_mode] if args.key?(:ssl_mode)
end