import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Storage Table. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getTable({ * name: "example-table-name", * storageAccountName: "example-storage-account-name", * }); * ``` */ export declare function getTable(args: GetTableArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTable. */ export interface GetTableArgs { /** * The name of the Table. */ name: string; /** * The name of the Storage Account where the Table exists. */ storageAccountName: string; } /** * A collection of values returned by getTable. */ export interface GetTableResult { /** * A mapping of ACLs for this Table. */ readonly acls: outputs.storage.GetTableAcl[]; /** * The ID of the Storage Table. */ readonly id: string; readonly name: string; /** * The Resource Manager ID of this Storage Table. */ readonly resourceManagerId: string; readonly storageAccountName: string; } /** * Use this data source to access information about an existing Storage Table. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getTable({ * name: "example-table-name", * storageAccountName: "example-storage-account-name", * }); * ``` */ export declare function getTableOutput(args: GetTableOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTable. */ export interface GetTableOutputArgs { /** * The name of the Table. */ name: pulumi.Input; /** * The name of the Storage Account where the Table exists. */ storageAccountName: pulumi.Input; }