Class: Google::Apis::OracledatabaseV1::IcebergStorage
- Inherits:
-
Object
- Object
- Google::Apis::OracledatabaseV1::IcebergStorage
- 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
-
#amazon_s3_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::AmazonS3IcebergStorage
The Amazon S3 Iceberg storage.
-
#azure_data_lake_storage_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage
The Azure Data Lake Storage Iceberg storage.
-
#google_cloud_storage_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage
The Google Cloud Storage Iceberg storage.
-
#storage_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IcebergStorage
constructor
A new instance of IcebergStorage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IcebergStorage
Returns a new instance of IcebergStorage.
7403 7404 7405 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#amazon_s3_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::AmazonS3IcebergStorage
The Amazon S3 Iceberg storage.
Corresponds to the JSON property amazonS3IcebergStorage
7386 7387 7388 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7386 def amazon_s3_iceberg_storage @amazon_s3_iceberg_storage end |
#azure_data_lake_storage_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::AzureDataLakeStorageIcebergStorage
The Azure Data Lake Storage Iceberg storage.
Corresponds to the JSON property azureDataLakeStorageIcebergStorage
7391 7392 7393 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7391 def azure_data_lake_storage_iceberg_storage @azure_data_lake_storage_iceberg_storage end |
#google_cloud_storage_iceberg_storage ⇒ Google::Apis::OracledatabaseV1::GoogleCloudStorageIcebergStorage
The Google Cloud Storage Iceberg storage.
Corresponds to the JSON property googleCloudStorageIcebergStorage
7396 7397 7398 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7396 def google_cloud_storage_iceberg_storage @google_cloud_storage_iceberg_storage end |
#storage_type ⇒ String
Required. The type of Iceberg storage.
Corresponds to the JSON property storageType
7401 7402 7403 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7401 def storage_type @storage_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7408 7409 7410 7411 7412 7413 |
# File 'lib/google/apis/oracledatabase_v1/classes.rb', line 7408 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 |