Show / Hide Table of Contents

Class TableEntity

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

Inheritance
System.Object
Resource
CustomResource
TableEntity
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
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 class TableEntity : CustomResource

Constructors

View Source

TableEntity(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 Source

Entity

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

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

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>
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 Output<string> StorageAccountName { get; }
Property Value
Type Description
Output<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 Output<string> TableName { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

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