TableEntity

Manages an Entity within a Table in an Azure Storage Account.

Create a TableEntity Resource

def TableEntity(resource_name, opts=None, entity=None, partition_key=None, row_key=None, storage_account_name=None, table_name=None, __props__=None);
func NewTableEntity(ctx *Context, name string, args TableEntityArgs, opts ...ResourceOption) (*TableEntity, error)
public TableEntity(string name, TableEntityArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args TableEntityArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args TableEntityArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args TableEntityArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

TableEntity Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The TableEntity resource accepts the following input properties:

Entity Dictionary<string, string>

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

PartitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

RowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

StorageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

TableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

Entity map[string]string

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

PartitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

RowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

StorageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

TableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

entity {[key: string]: string}

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

partitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

rowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

storageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

tableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

entity Dict[str, str]

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

partition_key str

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

row_key str

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

storage_account_name str

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

table_name str

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

Outputs

All input properties are implicitly available as output properties. Additionally, the TableEntity resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing TableEntity Resource

Get an existing TableEntity resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: TableEntityState, opts?: CustomResourceOptions): TableEntity
static get(resource_name, id, opts=None, entity=None, partition_key=None, row_key=None, storage_account_name=None, table_name=None, __props__=None);
func GetTableEntity(ctx *Context, name string, id IDInput, state *TableEntityState, opts ...ResourceOption) (*TableEntity, error)
public static TableEntity Get(string name, Input<string> id, TableEntityState? state, CustomResourceOptions? opts = null)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

Entity Dictionary<string, string>

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

PartitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

RowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

StorageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

TableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

Entity map[string]string

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

PartitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

RowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

StorageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

TableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

entity {[key: string]: string}

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

partitionKey string

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

rowKey string

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

storageAccountName string

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

tableName string

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

entity Dict[str, str]

A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.

partition_key str

The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.

row_key str

The key for the row where the entity will be inserted/merged. Changing this forces a new resource.

storage_account_name str

Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.

table_name str

The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.