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.



7365
7366
7367
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7365

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)


7343
7344
7345
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7343

def catalog_type
  @catalog_type
end

#glue_iceberg_catalogGoogle::Apis::OracledatabaseV1::GlueIcebergCatalog

The Glue Iceberg catalog. Corresponds to the JSON property glueIcebergCatalog



7348
7349
7350
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7348

def glue_iceberg_catalog
  @glue_iceberg_catalog
end

#nessie_iceberg_catalogGoogle::Apis::OracledatabaseV1::NessieIcebergCatalog

The Nessie Iceberg catalog. Corresponds to the JSON property nessieIcebergCatalog



7353
7354
7355
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7353

def nessie_iceberg_catalog
  @nessie_iceberg_catalog
end

#polaris_iceberg_catalogGoogle::Apis::OracledatabaseV1::PolarisIcebergCatalog

The Polaris Iceberg catalog. Corresponds to the JSON property polarisIcebergCatalog



7358
7359
7360
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7358

def polaris_iceberg_catalog
  @polaris_iceberg_catalog
end

#rest_iceberg_catalogGoogle::Apis::OracledatabaseV1::RestIcebergCatalog

The REST Iceberg catalog. Corresponds to the JSON property restIcebergCatalog



7363
7364
7365
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7363

def rest_iceberg_catalog
  @rest_iceberg_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7370
7371
7372
7373
7374
7375
7376
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7370

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