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.
1808 1809 1810 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1808 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
1799 1800 1801 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1799 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
1805 1806 1807 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1805 def ca_certificate_set @ca_certificate_set end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1813 1814 1815 1816 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1813 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 |