Class: Google::Apis::OracledatabaseV1::GoldengateIcebergConnectionProperties

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoldengateIcebergConnectionProperties

Returns a new instance of GoldengateIcebergConnectionProperties.



5809
5810
5811
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5809

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#catalogGoogle::Apis::OracledatabaseV1::IcebergCatalog

The Iceberg catalog details. Corresponds to the JSON property catalog



5797
5798
5799
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5797

def catalog
  @catalog
end

#storageGoogle::Apis::OracledatabaseV1::IcebergStorage

The Iceberg storage details. Corresponds to the JSON property storage



5802
5803
5804
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5802

def storage
  @storage
end

#technology_typeString

Required. The technology type of Iceberg connection. Corresponds to the JSON property technologyType

Returns:

  • (String)


5807
5808
5809
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5807

def technology_type
  @technology_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5814
5815
5816
5817
5818
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 5814

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