Class: Google::Apis::OracledatabaseV1::GoldengateIcebergConnectionProperties
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::GoldengateIcebergConnectionProperties
- 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 GoldengateIcebergConnection.
Instance Attribute Summary collapse
-
#catalog ⇒ Google::Apis::OracledatabaseV1::IcebergCatalog
The Iceberg catalog details.
-
#storage ⇒ Google::Apis::OracledatabaseV1::IcebergStorage
The Iceberg storage details.
-
#technology_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoldengateIcebergConnectionProperties
constructor
A new instance of GoldengateIcebergConnectionProperties.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoldengateIcebergConnectionProperties
Returns a new instance of GoldengateIcebergConnectionProperties.
5678 5679 5680 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5678 def initialize(**args) update!(**args) end |
Instance Attribute Details
#catalog ⇒ Google::Apis::OracledatabaseV1::IcebergCatalog
The Iceberg catalog details.
Corresponds to the JSON property catalog
5666 5667 5668 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5666 def catalog @catalog end |
#storage ⇒ Google::Apis::OracledatabaseV1::IcebergStorage
The Iceberg storage details.
Corresponds to the JSON property storage
5671 5672 5673 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5671 def storage @storage end |
#technology_type ⇒ String
Required. The technology type of Iceberg connection.
Corresponds to the JSON property technologyType
5676 5677 5678 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5676 def technology_type @technology_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5683 5684 5685 5686 5687 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5683 def update!(**args) @catalog = args[:catalog] if args.key?(:catalog) @storage = args[:storage] if args.key?(:storage) @technology_type = args[:technology_type] if args.key?(:technology_type) end |