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.



7312
7313
7314
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7312

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)


7290
7291
7292
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7290

def catalog_type
  @catalog_type
end

#glue_iceberg_catalogGoogle::Apis::OracledatabaseV1::GlueIcebergCatalog

The Glue Iceberg catalog. Corresponds to the JSON property glueIcebergCatalog



7295
7296
7297
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7295

def glue_iceberg_catalog
  @glue_iceberg_catalog
end

#nessie_iceberg_catalogGoogle::Apis::OracledatabaseV1::NessieIcebergCatalog

The Nessie Iceberg catalog. Corresponds to the JSON property nessieIcebergCatalog



7300
7301
7302
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7300

def nessie_iceberg_catalog
  @nessie_iceberg_catalog
end

#polaris_iceberg_catalogGoogle::Apis::OracledatabaseV1::PolarisIcebergCatalog

The Polaris Iceberg catalog. Corresponds to the JSON property polarisIcebergCatalog



7305
7306
7307
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7305

def polaris_iceberg_catalog
  @polaris_iceberg_catalog
end

#rest_iceberg_catalogGoogle::Apis::OracledatabaseV1::RestIcebergCatalog

The REST Iceberg catalog. Corresponds to the JSON property restIcebergCatalog



7310
7311
7312
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7310

def rest_iceberg_catalog
  @rest_iceberg_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7317
7318
7319
7320
7321
7322
7323
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7317

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