AzureBlobStorageDataArgs

data class AzureBlobStorageDataArgs(val azureCredentials: Output<AzureCredentialsArgs>, val container: Output<String>, val credentialsSecret: Output<String>? = null, val path: Output<String>? = null, val storageAccount: Output<String>) : ConvertibleToJava<AzureBlobStorageDataArgs>

An AzureBlobStorageData resource can be a data source, but not a data sink. An AzureBlobStorageData resource represents one Azure container. The storage account determines the Azure endpoint. In an AzureBlobStorageData resource, a blobs's name is the Azure Blob Storage blob's key name.

Constructors

Link copied to clipboard
fun AzureBlobStorageDataArgs(azureCredentials: Output<AzureCredentialsArgs>, container: Output<String>, credentialsSecret: Output<String>? = null, path: Output<String>? = null, storageAccount: Output<String>)

Functions

Link copied to clipboard
open override fun toJava(): AzureBlobStorageDataArgs

Properties

Link copied to clipboard

Input only. Credentials used to authenticate API requests to Azure. For information on our data retention policy for user credentials, see /storage-transfer/docs/data-retention#user-credentials.

Link copied to clipboard
val container: Output<String>

The container to transfer from the Azure Storage account.

Link copied to clipboard
val credentialsSecret: Output<String>? = null

Optional. The Resource name of a secret in Secret Manager. The Azure SAS token must be stored in Secret Manager in JSON format: { "sas_token" : "SAS_TOKEN" } GoogleServiceAccount must be granted roles/secretmanager.secretAccessor for the resource. See Configure access to a source: Microsoft Azure Blob Storage (https://cloud.google.com/storage-transfer/docs/source-microsoft-azure#secret_manager) for more information. If credentials_secret is specified, do not specify azure_credentials. This feature is in preview. Format: projects/{project_number}/secrets/{secret_name}

Link copied to clipboard
val path: Output<String>? = null

Root path to transfer objects. Must be an empty string or full path name that ends with a '/'. This field is treated as an object prefix. As such, it should generally not begin with a '/'.

Link copied to clipboard
val storageAccount: Output<String>

The name of the Azure Storage account.