Show / Hide Table of Contents

Class CreateAzureDataLakeStorageIcebergStorageDetails

The information about a new Azure Data Lake Storage storage used in the Iceberg connection.

Inheritance
object
CreateIcebergStorageDetails
CreateAzureDataLakeStorageIcebergStorageDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class CreateAzureDataLakeStorageIcebergStorageDetails : CreateIcebergStorageDetails

Properties

AccountKey

Declaration
[JsonProperty(PropertyName = "accountKey")]
public string AccountKey { get; set; }
Property Value
Type Description
string

Azure storage account key. This property is required when 'authenticationType' is set to 'SHARED_KEY'. e.g.: pa3WbhVATzj56xD4DH1VjOUhApRGEGHvOo58eQJVWIzX+j8j4CUVFcTjpIqDSRaSa1Wo2LbWY5at+AStEgLOIQ== Deprecated: This field is deprecated and replaced by "accountKeySecretId". This field will be removed after February 15 2026.

AccountKeySecretId

Declaration
[JsonProperty(PropertyName = "accountKeySecretId")]
public string AccountKeySecretId { get; set; }
Property Value
Type Description
string

The OCID of the Secret where the account key is stored.

AccountName

Declaration
[Required(ErrorMessage = "AccountName is required.")]
[JsonProperty(PropertyName = "accountName")]
public string AccountName { get; set; }
Property Value
Type Description
string

Sets the Azure storage account name.

Remarks

Required

Container

Declaration
[Required(ErrorMessage = "Container is required.")]
[JsonProperty(PropertyName = "container")]
public string Container { get; set; }
Property Value
Type Description
string

The Azure Blob Storage container where Iceberg tables are stored.

Remarks

Required

Endpoint

Declaration
[JsonProperty(PropertyName = "endpoint")]
public string Endpoint { get; set; }
Property Value
Type Description
string

The Azure Blob Storage endpoint where Iceberg data is stored. e.g.: 'https://my-azure-storage-account.blob.core.windows.net'

In this article
Back to top