UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

64 lines (63 loc) 2.3 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the SAS token associated with the specified Data Lake Analytics and Azure Storage account and container combination. * * Uses Azure REST API version 2019-11-01-preview. */ export declare function listStorageAccountSasTokens(args: ListStorageAccountSasTokensArgs, opts?: pulumi.InvokeOptions): Promise<ListStorageAccountSasTokensResult>; export interface ListStorageAccountSasTokensArgs { /** * The name of the Data Lake Analytics account. */ accountName: string; /** * The name of the Azure storage container for which the SAS token is being requested. */ containerName: string; /** * The name of the Azure resource group. */ resourceGroupName: string; /** * The name of the Azure storage account for which the SAS token is being requested. */ storageAccountName: string; } /** * The SAS response that contains the storage account, container and associated SAS token for connection use. */ export interface ListStorageAccountSasTokensResult { /** * The link (url) to the next page of results. */ readonly nextLink: string; /** * The results of the list operation. */ readonly value: outputs.datalakeanalytics.SasTokenInformationResponse[]; } /** * Gets the SAS token associated with the specified Data Lake Analytics and Azure Storage account and container combination. * * Uses Azure REST API version 2019-11-01-preview. */ export declare function listStorageAccountSasTokensOutput(args: ListStorageAccountSasTokensOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListStorageAccountSasTokensResult>; export interface ListStorageAccountSasTokensOutputArgs { /** * The name of the Data Lake Analytics account. */ accountName: pulumi.Input<string>; /** * The name of the Azure storage container for which the SAS token is being requested. */ containerName: pulumi.Input<string>; /** * The name of the Azure resource group. */ resourceGroupName: pulumi.Input<string>; /** * The name of the Azure storage account for which the SAS token is being requested. */ storageAccountName: pulumi.Input<string>; }