storage_accounts_sas_tokens
Creates, updates, deletes, gets or lists a storage_accounts_sas_tokens
resource.
Overview
Name | storage_accounts_sas_tokens |
Type | Resource |
Id | azure.data_lake_analytics.storage_accounts_sas_tokens |
Fields
Name | Datatype | Description |
---|---|---|
accessToken | string | The access token for the associated Azure Storage Container. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | accountName, containerName, resourceGroupName, storageAccountName, subscriptionId | Gets the SAS token associated with the specified Data Lake Analytics and Azure Storage account and container combination. |
SELECT
examples
Gets the SAS token associated with the specified Data Lake Analytics and Azure Storage account and container combination.
SELECT
accessToken
FROM azure.data_lake_analytics.storage_accounts_sas_tokens
WHERE accountName = '{{ accountName }}'
AND containerName = '{{ containerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND storageAccountName = '{{ storageAccountName }}'
AND subscriptionId = '{{ subscriptionId }}';