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.



7396
7397
7398
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7396

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)


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

def catalog_type
  @catalog_type
end

#glue_iceberg_catalogGoogle::Apis::OracledatabaseV1::GlueIcebergCatalog

The Glue Iceberg catalog. Corresponds to the JSON property glueIcebergCatalog



7379
7380
7381
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7379

def glue_iceberg_catalog
  @glue_iceberg_catalog
end

#nessie_iceberg_catalogGoogle::Apis::OracledatabaseV1::NessieIcebergCatalog

The Nessie Iceberg catalog. Corresponds to the JSON property nessieIcebergCatalog



7384
7385
7386
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7384

def nessie_iceberg_catalog
  @nessie_iceberg_catalog
end

#polaris_iceberg_catalogGoogle::Apis::OracledatabaseV1::PolarisIcebergCatalog

The Polaris Iceberg catalog. Corresponds to the JSON property polarisIcebergCatalog



7389
7390
7391
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7389

def polaris_iceberg_catalog
  @polaris_iceberg_catalog
end

#rest_iceberg_catalogGoogle::Apis::OracledatabaseV1::RestIcebergCatalog

The REST Iceberg catalog. Corresponds to the JSON property restIcebergCatalog



7394
7395
7396
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7394

def rest_iceberg_catalog
  @rest_iceberg_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7401
7402
7403
7404
7405
7406
7407
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7401

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