Class TableEntityArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Azure.Storage
Assembly: Pulumi.Azure.dll
Syntax
public sealed class TableEntityArgs : ResourceArgs
Constructors
View SourceTableEntityArgs()
Declaration
public TableEntityArgs()
Properties
View SourceEntity
A map of key/value pairs that describe the entity to be inserted/merged in to the storage table.
Declaration
public InputMap<string> Entity { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.String> |
PartitionKey
The key for the partition where the entity will be inserted/merged. Changing this forces a new resource.
Declaration
public Input<string> PartitionKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
RowKey
The key for the row where the entity will be inserted/merged. Changing this forces a new resource.
Declaration
public Input<string> RowKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<string> StorageAccountName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<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 Input<string> TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |