Class: Google::Apis::OracledatabaseV1::IcebergStorage

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 storage details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IcebergStorage

Returns a new instance of IcebergStorage.



7466
7467
7468
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7466

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

Instance Attribute Details

#amazon_s3_iceberg_storageGoogle::Apis::OracledatabaseV1::AmazonS3IcebergStorage

The Amazon S3 Iceberg storage. Corresponds to the JSON property amazonS3IcebergStorage



7449
7450
7451
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7449

def amazon_s3_iceberg_storage
  @amazon_s3_iceberg_storage
end

#azure_data_lake_storage_iceberg_storageGoogle::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage

The Azure Data Lake Storage Iceberg storage. Corresponds to the JSON property azureDataLakeStorageIcebergStorage



7454
7455
7456
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7454

def azure_data_lake_storage_iceberg_storage
  @azure_data_lake_storage_iceberg_storage
end

#google_cloud_storage_iceberg_storageGoogle::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage

The Google Cloud Storage Iceberg storage. Corresponds to the JSON property googleCloudStorageIcebergStorage



7459
7460
7461
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7459

def google_cloud_storage_iceberg_storage
  @google_cloud_storage_iceberg_storage
end

#storage_typeString

Required. The type of Iceberg storage. Corresponds to the JSON property storageType

Returns:

  • (String)


7464
7465
7466
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7464

def storage_type
  @storage_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



7471
7472
7473
7474
7475
7476
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7471

def update!(**args)
  @amazon_s3_iceberg_storage = args[:amazon_s3_iceberg_storage] if args.key?(:amazon_s3_iceberg_storage)
  @azure_data_lake_storage_iceberg_storage = args[:azure_data_lake_storage_iceberg_storage] if args.key?(:azure_data_lake_storage_iceberg_storage)
  @google_cloud_storage_iceberg_storage = args[:google_cloud_storage_iceberg_storage] if args.key?(:google_cloud_storage_iceberg_storage)
  @storage_type = args[:storage_type] if args.key?(:storage_type)
end