Skip to main content

storage_accounts_sas_tokens

Creates, updates, deletes, gets or lists a storage_accounts_sas_tokens resource.

Overview

Namestorage_accounts_sas_tokens
TypeResource
Idazure.data_lake_analytics.storage_accounts_sas_tokens

Fields

NameDatatypeDescription
accessTokenstringThe access token for the associated Azure Storage Container.

Methods

NameAccessible byRequired ParamsDescription
listSELECTaccountName, containerName, resourceGroupName, storageAccountName, subscriptionIdGets 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 }}';