/** * GoldenGate API * Use the Oracle Cloud Infrastructure GoldenGate APIs to perform data replication operations. * OpenAPI spec version: 20200407 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ import * as model from "../model"; /** * Represents the metadata of a Azure Data Lake Storage Connection. * */ export interface AzureDataLakeStorageConnection extends model.Connection { /** * The Azure Data Lake Storage technology type. */ "technologyType": AzureDataLakeStorageConnection.TechnologyType; /** * Used authentication mechanism to access Azure Data Lake Storage. * */ "authenticationType": AzureDataLakeStorageConnection.AuthenticationType; /** * Sets the Azure storage account name. * */ "accountName": 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 * */ "azureTenantId"?: 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 * */ "clientId"?: string; /** * Azure Storage service endpoint. * e.g: https://test.blob.core.windows.net * */ "endpoint"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the account key is stored. * Note: When provided, 'accountKey' field must not be provided. * */ "accountKeySecretId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the sas token is stored. * Note: When provided, 'sasToken' field must not be provided. * */ "sasTokenSecretId"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the client secret is stored. * Note: When provided, 'clientSecret' field must not be provided. * */ "clientSecretSecretId"?: string; /** * The endpoint used for authentication with Microsoft Entra ID (formerly Azure Active Directory). * Default value: https://login.microsoftonline.com * When connecting to a non-public Azure Cloud, the endpoint must be provided, eg: * * Azure China: https://login.chinacloudapi.cn/ * * Azure US Government: https://login.microsoftonline.us/ * */ "azureAuthorityHost"?: string; "connectionType": string; } export declare namespace AzureDataLakeStorageConnection { enum TechnologyType { AzureDataLakeStorage = "AZURE_DATA_LAKE_STORAGE", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } enum AuthenticationType { SharedKey = "SHARED_KEY", SharedAccessSignature = "SHARED_ACCESS_SIGNATURE", AzureActiveDirectory = "AZURE_ACTIVE_DIRECTORY", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: AzureDataLakeStorageConnection, isParentJsonObj?: boolean): object; const connectionType = "AZURE_DATA_LAKE_STORAGE"; function getDeserializedJsonObj(obj: AzureDataLakeStorageConnection, isParentJsonObj?: boolean): object; }