TableEntity
Manages an Entity within a Table in an Azure Storage Account.
Create a TableEntity Resource
new TableEntity(name: string, args: TableEntityArgs, opts?: CustomResourceOptions);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.
- Partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- Row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- Storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- Table
Name 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.
- Partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- Row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- Storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- Table
Name 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.
- partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- table
Name 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_ strname 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:
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): TableEntitystatic 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.
- Partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- Row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- Storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- Table
Name 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.
- Partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- Row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- Storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- Table
Name 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.
- partition
Key string The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
- row
Key string The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
- storage
Account stringName Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
- table
Name 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_ strname 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
azurermTerraform Provider.