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.
5726 5727 5728 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5726 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
5719 5720 5721 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5719 def core_site_xml @core_site_xml end |
#technology_type ⇒ String
Optional. The technology type of HdfsConnection.
Corresponds to the JSON property technologyType
5724 5725 5726 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5724 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5731 5732 5733 5734 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5731 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 |