Show / Hide Table of Contents

Class TableEntityArgs

Inheritance
System.Object
InputArgs
ResourceArgs
TableEntityArgs
Inherited Members
ResourceArgs.Empty
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 Source

TableEntityArgs()

Declaration
public TableEntityArgs()

Properties

View Source

Entity

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.