Class: Google::Apis::DatastreamV1::OracleSslConfig
- Inherits:
-
Object
- Object
- Google::Apis::DatastreamV1::OracleSslConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datastream_v1/classes.rb,
lib/google/apis/datastream_v1/representations.rb,
lib/google/apis/datastream_v1/representations.rb
Overview
Oracle SSL configuration information.
Instance Attribute Summary collapse
-
#ca_certificate ⇒ String
Input only.
-
#ca_certificate_set ⇒ Boolean
(also: #ca_certificate_set?)
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OracleSslConfig
constructor
A new instance of OracleSslConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OracleSslConfig
Returns a new instance of OracleSslConfig.
1810 1811 1812 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1810 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ca_certificate ⇒ String
Input only. PEM-encoded certificate of the CA that signed the source database
server's certificate.
Corresponds to the JSON property caCertificate
1801 1802 1803 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1801 def ca_certificate @ca_certificate end |
#ca_certificate_set ⇒ Boolean Also known as: ca_certificate_set?
Output only. Indicates whether the ca_certificate field has been set for this
Connection-Profile.
Corresponds to the JSON property caCertificateSet
1807 1808 1809 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1807 def ca_certificate_set @ca_certificate_set end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1815 1816 1817 1818 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1815 def update!(**args) @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate) @ca_certificate_set = args[:ca_certificate_set] if args.key?(:ca_certificate_set) end |