Class: Google::Apis::OracledatabaseV1::IcebergCatalog

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 Iceberg catalog details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IcebergCatalog

Returns a new instance of IcebergCatalog.



7231
7232
7233
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7231

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

Instance Attribute Details

#catalog_typeString

Required. The type of Iceberg catalog. Corresponds to the JSON property catalogType

Returns:

  • (String)


7209
7210
7211
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7209

def catalog_type
  @catalog_type
end

#glue_iceberg_catalogGoogle::Apis::OracledatabaseV1::GlueIcebergCatalog

The Glue Iceberg catalog. Corresponds to the JSON property glueIcebergCatalog



7214
7215
7216
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7214

def glue_iceberg_catalog
  @glue_iceberg_catalog
end

#nessie_iceberg_catalogGoogle::Apis::OracledatabaseV1::NessieIcebergCatalog

The Nessie Iceberg catalog. Corresponds to the JSON property nessieIcebergCatalog



7219
7220
7221
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7219

def nessie_iceberg_catalog
  @nessie_iceberg_catalog
end

#polaris_iceberg_catalogGoogle::Apis::OracledatabaseV1::PolarisIcebergCatalog

The Polaris Iceberg catalog. Corresponds to the JSON property polarisIcebergCatalog



7224
7225
7226
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7224

def polaris_iceberg_catalog
  @polaris_iceberg_catalog
end

#rest_iceberg_catalogGoogle::Apis::OracledatabaseV1::RestIcebergCatalog

The REST Iceberg catalog. Corresponds to the JSON property restIcebergCatalog



7229
7230
7231
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7229

def rest_iceberg_catalog
  @rest_iceberg_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7236
7237
7238
7239
7240
7241
7242
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7236

def update!(**args)
  @catalog_type = args[:catalog_type] if args.key?(:catalog_type)
  @glue_iceberg_catalog = args[:glue_iceberg_catalog] if args.key?(:glue_iceberg_catalog)
  @nessie_iceberg_catalog = args[:nessie_iceberg_catalog] if args.key?(:nessie_iceberg_catalog)
  @polaris_iceberg_catalog = args[:polaris_iceberg_catalog] if args.key?(:polaris_iceberg_catalog)
  @rest_iceberg_catalog = args[:rest_iceberg_catalog] if args.key?(:rest_iceberg_catalog)
end