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.



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

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)


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

def catalog_type
  @catalog_type
end

#glue_iceberg_catalogGoogle::Apis::OracledatabaseV1::GlueIcebergCatalog

The Glue Iceberg catalog. Corresponds to the JSON property glueIcebergCatalog



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

def glue_iceberg_catalog
  @glue_iceberg_catalog
end

#nessie_iceberg_catalogGoogle::Apis::OracledatabaseV1::NessieIcebergCatalog

The Nessie Iceberg catalog. Corresponds to the JSON property nessieIcebergCatalog



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

def nessie_iceberg_catalog
  @nessie_iceberg_catalog
end

#polaris_iceberg_catalogGoogle::Apis::OracledatabaseV1::PolarisIcebergCatalog

The Polaris Iceberg catalog. Corresponds to the JSON property polarisIcebergCatalog



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

def polaris_iceberg_catalog
  @polaris_iceberg_catalog
end

#rest_iceberg_catalogGoogle::Apis::OracledatabaseV1::RestIcebergCatalog

The REST Iceberg catalog. Corresponds to the JSON property restIcebergCatalog



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

def rest_iceberg_catalog
  @rest_iceberg_catalog
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



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

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