Class: Google::Apis::OracledatabaseV1::GoldengateHdfsConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateHdfsConnectionProperties
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/oracledatabase_v1/classes.rb,
lib/google/apis/oracledatabase_v1/representations.rb,
lib/google/apis/oracledatabase_v1/representations.rb
Overview
The properties of GoldengateHdfsConnection.
Instance Attribute Summary collapse
-
#core_site_xml ⇒ String
Optional.
-
#technology_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateHdfsConnectionProperties
constructor
A new instance of GoldengateHdfsConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateHdfsConnectionProperties
Returns a new instance of GoldengateHdfsConnectionProperties.
5842 5843 5844 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5842 def initialize(**args) update!(**args) end |
Instance Attribute Details
#core_site_xml ⇒ String
Optional. The content of the Hadoop Distributed File System configuration file
(core-site.xml).
Corresponds to the JSON property coreSiteXml
5835 5836 5837 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5835 def core_site_xml @core_site_xml end |
#technology_type ⇒ String
Optional. The technology type of HdfsConnection.
Corresponds to the JSON property technologyType
5840 5841 5842 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5840 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5847 5848 5849 5850 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5847 def update!(**args) @core_site_xml = args[:core_site_xml] if args.key?(:core_site_xml) @technology_type = args[:technology_type] if args.key?(:technology_type) end |