1. Packages
  2. Azure Classic
  3. API Docs
  4. storage
  5. getTableEntity

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Use this data source to access information about an existing Storage Table Entity.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var example = Output.Create(Azure.Storage.GetTableEntity.InvokeAsync(new Azure.Storage.GetTableEntityArgs
            {
                PartitionKey = "example-partition-key",
                RowKey = "example-row-key",
                StorageAccountName = "example-storage-account-name",
                TableName = "example-table-name",
            }));
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storage.LookupTableEntity(ctx, &storage.LookupTableEntityArgs{
    			PartitionKey:       "example-partition-key",
    			RowKey:             "example-row-key",
    			StorageAccountName: "example-storage-account-name",
    			TableName:          "example-table-name",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = pulumi.output(azure.storage.getTableEntity({
        partitionKey: "example-partition-key",
        rowKey: "example-row-key",
        storageAccountName: "example-storage-account-name",
        tableName: "example-table-name",
    }));
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.storage.get_table_entity(partition_key="example-partition-key",
        row_key="example-row-key",
        storage_account_name="example-storage-account-name",
        table_name="example-table-name")
    

    Example coming soon!

    Using getTableEntity

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getTableEntity(args: GetTableEntityArgs, opts?: InvokeOptions): Promise<GetTableEntityResult>
    function getTableEntityOutput(args: GetTableEntityOutputArgs, opts?: InvokeOptions): Output<GetTableEntityResult>
    def get_table_entity(partition_key: Optional[str] = None,
                         row_key: Optional[str] = None,
                         storage_account_name: Optional[str] = None,
                         table_name: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetTableEntityResult
    def get_table_entity_output(partition_key: Optional[pulumi.Input[str]] = None,
                         row_key: Optional[pulumi.Input[str]] = None,
                         storage_account_name: Optional[pulumi.Input[str]] = None,
                         table_name: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetTableEntityResult]
    func LookupTableEntity(ctx *Context, args *LookupTableEntityArgs, opts ...InvokeOption) (*LookupTableEntityResult, error)
    func LookupTableEntityOutput(ctx *Context, args *LookupTableEntityOutputArgs, opts ...InvokeOption) LookupTableEntityResultOutput

    > Note: This function is named LookupTableEntity in the Go SDK.

    public static class GetTableEntity 
    {
        public static Task<GetTableEntityResult> InvokeAsync(GetTableEntityArgs args, InvokeOptions? opts = null)
        public static Output<GetTableEntityResult> Invoke(GetTableEntityInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTableEntityResult> getTableEntity(GetTableEntityArgs args, InvokeOptions options)
    public static Output<GetTableEntityResult> getTableEntity(GetTableEntityArgs args, InvokeOptions options)
    
    fn::invoke:
      function: azure:storage/getTableEntity:getTableEntity
      arguments:
        # arguments dictionary

    The following arguments are supported:

    PartitionKey string
    The key for the partition where the entity will be retrieved.
    RowKey string
    The key for the row where the entity will be retrieved.
    StorageAccountName string
    The name of the Storage Account where the Table exists.
    TableName string
    The name of the Table.
    PartitionKey string
    The key for the partition where the entity will be retrieved.
    RowKey string
    The key for the row where the entity will be retrieved.
    StorageAccountName string
    The name of the Storage Account where the Table exists.
    TableName string
    The name of the Table.
    partitionKey String
    The key for the partition where the entity will be retrieved.
    rowKey String
    The key for the row where the entity will be retrieved.
    storageAccountName String
    The name of the Storage Account where the Table exists.
    tableName String
    The name of the Table.
    partitionKey string
    The key for the partition where the entity will be retrieved.
    rowKey string
    The key for the row where the entity will be retrieved.
    storageAccountName string
    The name of the Storage Account where the Table exists.
    tableName string
    The name of the Table.
    partition_key str
    The key for the partition where the entity will be retrieved.
    row_key str
    The key for the row where the entity will be retrieved.
    storage_account_name str
    The name of the Storage Account where the Table exists.
    table_name str
    The name of the Table.
    partitionKey String
    The key for the partition where the entity will be retrieved.
    rowKey String
    The key for the row where the entity will be retrieved.
    storageAccountName String
    The name of the Storage Account where the Table exists.
    tableName String
    The name of the Table.

    getTableEntity Result

    The following output properties are available:

    Entity Dictionary<string, string>
    A map of key/value pairs that describe the entity to be stored in the storage table.
    Id string
    The provider-assigned unique ID for this managed resource.
    PartitionKey string
    RowKey string
    StorageAccountName string
    TableName string
    Entity map[string]string
    A map of key/value pairs that describe the entity to be stored in the storage table.
    Id string
    The provider-assigned unique ID for this managed resource.
    PartitionKey string
    RowKey string
    StorageAccountName string
    TableName string
    entity Map<String,String>
    A map of key/value pairs that describe the entity to be stored in the storage table.
    id String
    The provider-assigned unique ID for this managed resource.
    partitionKey String
    rowKey String
    storageAccountName String
    tableName String
    entity {[key: string]: string}
    A map of key/value pairs that describe the entity to be stored in the storage table.
    id string
    The provider-assigned unique ID for this managed resource.
    partitionKey string
    rowKey string
    storageAccountName string
    tableName string
    entity Mapping[str, str]
    A map of key/value pairs that describe the entity to be stored in the storage table.
    id str
    The provider-assigned unique ID for this managed resource.
    partition_key str
    row_key str
    storage_account_name str
    table_name str
    entity Map<String>
    A map of key/value pairs that describe the entity to be stored in the storage table.
    id String
    The provider-assigned unique ID for this managed resource.
    partitionKey String
    rowKey String
    storageAccountName String
    tableName String

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.