import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to access information about an existing Storage Table Entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getTableEntities({ * storageTableId: exampleAzurermStorageTable.id, * filter: "PartitionKey eq 'example'", * }); * ``` */ export declare function getTableEntities(args: GetTableEntitiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTableEntities. */ export interface GetTableEntitiesArgs { /** * The filter used to retrieve the entities. */ filter: string; /** * A list of properties to select from the returned Storage Table Entities. */ selects?: string[]; /** * The Storage Table ID where the entities exist. */ storageTableId: string; } /** * A collection of values returned by getTableEntities. */ export interface GetTableEntitiesResult { readonly filter: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of `items` blocks as defined below. */ readonly items: outputs.storage.GetTableEntitiesItem[]; readonly selects?: string[]; readonly storageTableId: string; } /** * Use this data source to access information about an existing Storage Table Entity. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.storage.getTableEntities({ * storageTableId: exampleAzurermStorageTable.id, * filter: "PartitionKey eq 'example'", * }); * ``` */ export declare function getTableEntitiesOutput(args: GetTableEntitiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTableEntities. */ export interface GetTableEntitiesOutputArgs { /** * The filter used to retrieve the entities. */ filter: pulumi.Input; /** * A list of properties to select from the returned Storage Table Entities. */ selects?: pulumi.Input[]>; /** * The Storage Table ID where the entities exist. */ storageTableId: pulumi.Input; }