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.
2004 2005 2006 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2004 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
1995 1996 1997 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 1995 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
2001 2002 2003 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2001 def ca_certificate_set @ca_certificate_set end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2009 2010 2011 2012 |
# File 'lib/google/apis/datastream_v1/classes.rb', line 2009 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 |