Table

Manages a Table within an Azure Storage Account.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
        {
            Location = "West Europe",
        });
        var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
        });
        var exampleTable = new Azure.Storage.Table("exampleTable", new Azure.Storage.TableArgs
        {
            StorageAccountName = exampleAccount.Name,
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/storage"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
            Location: pulumi.String("West Europe"),
        })
        if err != nil {
            return err
        }
        exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
            ResourceGroupName:      exampleResourceGroup.Name,
            Location:               exampleResourceGroup.Location,
            AccountTier:            pulumi.String("Standard"),
            AccountReplicationType: pulumi.String("LRS"),
        })
        if err != nil {
            return err
        }
        _, err = storage.NewTable(ctx, "exampleTable", &storage.TableArgs{
            StorageAccountName: exampleAccount.Name,
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    account_tier="Standard",
    account_replication_type="LRS")
example_table = azure.storage.Table("exampleTable", storage_account_name=example_account.name)
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    accountTier: "Standard",
    accountReplicationType: "LRS",
});
const exampleTable = new azure.storage.Table("exampleTable", {storageAccountName: exampleAccount.name});

Create a Table Resource

new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);
def Table(resource_name, opts=None, acls=None, name=None, storage_account_name=None, __props__=None);
func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)
public Table(string name, TableArgs args, CustomResourceOptions? opts = null)
name string
The unique name of the resource.
args TableArgs
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 TableArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args TableArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

Table Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The Table resource accepts the following input properties:

StorageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

Acls List<TableAclArgs>

One or more acl blocks as defined below.

Name string

The name of the storage table. Must be unique within the storage account the table is located.

StorageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

Acls []TableAcl

One or more acl blocks as defined below.

Name string

The name of the storage table. Must be unique within the storage account the table is located.

storageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

acls TableAcl[]

One or more acl blocks as defined below.

name string

The name of the storage table. Must be unique within the storage account the table is located.

storage_account_name str

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

acls List[TableAcl]

One or more acl blocks as defined below.

name str

The name of the storage table. Must be unique within the storage account the table is located.

Outputs

All input properties are implicitly available as output properties. Additionally, the Table resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing Table Resource

Get an existing Table 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?: TableState, opts?: CustomResourceOptions): Table
static get(resource_name, id, opts=None, acls=None, name=None, storage_account_name=None, __props__=None);
func GetTable(ctx *Context, name string, id IDInput, state *TableState, opts ...ResourceOption) (*Table, error)
public static Table Get(string name, Input<string> id, TableState? 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:

Acls List<TableAclArgs>

One or more acl blocks as defined below.

Name string

The name of the storage table. Must be unique within the storage account the table is located.

StorageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

Acls []TableAcl

One or more acl blocks as defined below.

Name string

The name of the storage table. Must be unique within the storage account the table is located.

StorageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

acls TableAcl[]

One or more acl blocks as defined below.

name string

The name of the storage table. Must be unique within the storage account the table is located.

storageAccountName string

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

acls List[TableAcl]

One or more acl blocks as defined below.

name str

The name of the storage table. Must be unique within the storage account the table is located.

storage_account_name str

Specifies the storage account in which to create the storage table. Changing this forces a new resource to be created.

Supporting Types

TableAcl

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Id string

The ID which should be used for this Shared Identifier.

AccessPolicies List<TableAclAccessPolicyArgs>

An access_policy block as defined below.

Id string

The ID which should be used for this Shared Identifier.

AccessPolicies []TableAclAccessPolicy

An access_policy block as defined below.

id string

The ID which should be used for this Shared Identifier.

accessPolicies TableAclAccessPolicy[]

An access_policy block as defined below.

id str

The ID which should be used for this Shared Identifier.

access_policies List[TableAclAccessPolicy]

An access_policy block as defined below.

TableAclAccessPolicy

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

Expiry string

The ISO8061 UTC time at which this Access Policy should be valid until.

Permissions string

The permissions which should associated with this Shared Identifier.

Start string

The ISO8061 UTC time at which this Access Policy should be valid from.

Expiry string

The ISO8061 UTC time at which this Access Policy should be valid until.

Permissions string

The permissions which should associated with this Shared Identifier.

Start string

The ISO8061 UTC time at which this Access Policy should be valid from.

expiry string

The ISO8061 UTC time at which this Access Policy should be valid until.

permissions string

The permissions which should associated with this Shared Identifier.

start string

The ISO8061 UTC time at which this Access Policy should be valid from.

expiry str

The ISO8061 UTC time at which this Access Policy should be valid until.

permissions str

The permissions which should associated with this Shared Identifier.

start str

The ISO8061 UTC time at which this Access Policy should be valid from.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.