Class TableEntity
Manages an Entity within a Table in an Azure Storage Account.
Inherited Members
Namespace: Pulumi.Azure.Storage
Assembly: Pulumi.Azure.dll
Syntax
public class TableEntity : CustomResource
Constructors
View SourceTableEntity(String, TableEntityArgs, CustomResourceOptions)
Create a TableEntity resource with the given unique name, arguments, and options.
Declaration
public TableEntity(string name, TableEntityArgs args, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resource |
| TableEntityArgs | args | The arguments used to populate this resource's properties |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Properties
View SourceEntity
A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.
Declaration
public Output<ImmutableDictionary<string, string>> Entity { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.Collections.Immutable.ImmutableDictionary<System.String, System.String>> |
PartitionKey
The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
Declaration
public Output<string> PartitionKey { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
RowKey
The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
Declaration
public Output<string> RowKey { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
StorageAccountName
Specifies the storage account in which to create the storage table entity. Changing this forces a new resource to be created.
Declaration
public Output<string> StorageAccountName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
TableName
The name of the storage table in which to create the storage table entity. Changing this forces a new resource to be created.
Declaration
public Output<string> TableName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(String, Input<String>, TableEntityState, CustomResourceOptions)
Get an existing TableEntity resource's state with the given name, ID, and optional extra properties used to qualify the lookup.
Declaration
public static TableEntity Get(string name, Input<string> id, TableEntityState state = null, CustomResourceOptions options = null)
Parameters
| Type | Name | Description |
|---|---|---|
| System.String | name | The unique name of the resulting resource. |
| Input<System.String> | id | The unique provider ID of the resource to lookup. |
| TableEntityState | state | Any extra arguments used during the lookup. |
| CustomResourceOptions | options | A bag of options that control this resource's behavior |
Returns
| Type | Description |
|---|---|
| TableEntity |