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.
5648 5649 5650 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5648 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
5641 5642 5643 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5641 def core_site_xml @core_site_xml end |
#technology_type ⇒ String
Optional. The technology type of HdfsConnection.
Corresponds to the JSON property technologyType
5646 5647 5648 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5646 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5653 5654 5655 5656 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5653 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 |