Show / Hide Table of Contents

Class AzureDataLakeStorageConnectionSummary

Summary of the Azure Data Lake Storage Connection.

Inheritance
object
ConnectionSummary
AzureDataLakeStorageConnectionSummary
Inherited Members
ConnectionSummary.Id
ConnectionSummary.DisplayName
ConnectionSummary.Description
ConnectionSummary.CompartmentId
ConnectionSummary.FreeformTags
ConnectionSummary.DefinedTags
ConnectionSummary.SystemTags
ConnectionSummary.LifecycleState
ConnectionSummary.LifecycleDetails
ConnectionSummary.TimeCreated
ConnectionSummary.TimeUpdated
ConnectionSummary.VaultId
ConnectionSummary.KeyId
ConnectionSummary.IngressIps
ConnectionSummary.NsgIds
ConnectionSummary.SubnetId
ConnectionSummary.RoutingMethod
ConnectionSummary.Locks
ConnectionSummary.DoesUseSecretIds
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 AzureDataLakeStorageConnectionSummary : ConnectionSummary

Properties

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. Note: When provided, 'accountKey' field must not be provided.

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

AuthenticationType

Declaration
[Required(ErrorMessage = "AuthenticationType is required.")]
[JsonProperty(PropertyName = "authenticationType")]
[JsonConverter(typeof(StringEnumConverter))]
public AzureDataLakeStorageConnection.AuthenticationTypeEnum? AuthenticationType { get; set; }
Property Value
Type Description
AzureDataLakeStorageConnection.AuthenticationTypeEnum?

Used authentication mechanism to access Azure Data Lake Storage.

Remarks

Required

AzureTenantId

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

Azure tenant ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 14593954-d337-4a61-a364-9f758c64f97f

ClientId

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

Azure client ID of the application. This property is required when 'authenticationType' is set to 'AZURE_ACTIVE_DIRECTORY'. e.g.: 06ecaabf-8b80-4ec8-a0ec-20cbf463703d

ClientSecretSecretId

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

The OCID of the Secret where the client secret is stored. Note: When provided, 'clientSecret' field must not be provided.

Endpoint

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

Azure Storage service endpoint. e.g: https://test.blob.core.windows.net

SasTokenSecretId

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

The OCID of the Secret where the sas token is stored. Note: When provided, 'sasToken' field must not be provided.

TechnologyType

Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public AzureDataLakeStorageConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type Description
AzureDataLakeStorageConnection.TechnologyTypeEnum?

The Azure Data Lake Storage technology type.

Remarks

Required

In this article
Back to top