azure-native.storage.Table
Explore with Pulumi AI
Properties of the table, including Id, resource name, resource type. Azure REST API version: 2022-09-01. Prior API version in Azure Native 1.x: 2021-02-01.
Other available API versions: 2023-01-01, 2023-04-01, 2023-05-01.
Example Usage
TableOperationPut
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var table = new AzureNative.Storage.Table("table", new()
{
AccountName = "sto328",
ResourceGroupName = "res3376",
TableName = "table6185",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewTable(ctx, "table", &storage.TableArgs{
AccountName: pulumi.String("sto328"),
ResourceGroupName: pulumi.String("res3376"),
TableName: pulumi.String("table6185"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.Table;
import com.pulumi.azurenative.storage.TableArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var table = new Table("table", TableArgs.builder()
.accountName("sto328")
.resourceGroupName("res3376")
.tableName("table6185")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
table = azure_native.storage.Table("table",
account_name="sto328",
resource_group_name="res3376",
table_name="table6185")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const table = new azure_native.storage.Table("table", {
accountName: "sto328",
resourceGroupName: "res3376",
tableName: "table6185",
});
resources:
table:
type: azure-native:storage:Table
properties:
accountName: sto328
resourceGroupName: res3376
tableName: table6185
TableOperationPutOrPatchAcls
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var table = new AzureNative.Storage.Table("table", new()
{
AccountName = "sto328",
ResourceGroupName = "res3376",
SignedIdentifiers = new[]
{
new AzureNative.Storage.Inputs.TableSignedIdentifierArgs
{
AccessPolicy = new AzureNative.Storage.Inputs.TableAccessPolicyArgs
{
ExpiryTime = "2022-03-20T08:49:37.0000000Z",
Permission = "raud",
StartTime = "2022-03-17T08:49:37.0000000Z",
},
Id = "MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI",
},
new AzureNative.Storage.Inputs.TableSignedIdentifierArgs
{
AccessPolicy = new AzureNative.Storage.Inputs.TableAccessPolicyArgs
{
ExpiryTime = "2022-03-20T08:49:37.0000000Z",
Permission = "rad",
StartTime = "2022-03-17T08:49:37.0000000Z",
},
Id = "PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI",
},
},
TableName = "table6185",
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewTable(ctx, "table", &storage.TableArgs{
AccountName: pulumi.String("sto328"),
ResourceGroupName: pulumi.String("res3376"),
SignedIdentifiers: storage.TableSignedIdentifierArray{
&storage.TableSignedIdentifierArgs{
AccessPolicy: &storage.TableAccessPolicyArgs{
ExpiryTime: pulumi.String("2022-03-20T08:49:37.0000000Z"),
Permission: pulumi.String("raud"),
StartTime: pulumi.String("2022-03-17T08:49:37.0000000Z"),
},
Id: pulumi.String("MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI"),
},
&storage.TableSignedIdentifierArgs{
AccessPolicy: &storage.TableAccessPolicyArgs{
ExpiryTime: pulumi.String("2022-03-20T08:49:37.0000000Z"),
Permission: pulumi.String("rad"),
StartTime: pulumi.String("2022-03-17T08:49:37.0000000Z"),
},
Id: pulumi.String("PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI"),
},
},
TableName: pulumi.String("table6185"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.Table;
import com.pulumi.azurenative.storage.TableArgs;
import com.pulumi.azurenative.storage.inputs.TableSignedIdentifierArgs;
import com.pulumi.azurenative.storage.inputs.TableAccessPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var table = new Table("table", TableArgs.builder()
.accountName("sto328")
.resourceGroupName("res3376")
.signedIdentifiers(
TableSignedIdentifierArgs.builder()
.accessPolicy(TableAccessPolicyArgs.builder()
.expiryTime("2022-03-20T08:49:37.0000000Z")
.permission("raud")
.startTime("2022-03-17T08:49:37.0000000Z")
.build())
.id("MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI")
.build(),
TableSignedIdentifierArgs.builder()
.accessPolicy(TableAccessPolicyArgs.builder()
.expiryTime("2022-03-20T08:49:37.0000000Z")
.permission("rad")
.startTime("2022-03-17T08:49:37.0000000Z")
.build())
.id("PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI")
.build())
.tableName("table6185")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
table = azure_native.storage.Table("table",
account_name="sto328",
resource_group_name="res3376",
signed_identifiers=[
azure_native.storage.TableSignedIdentifierArgs(
access_policy=azure_native.storage.TableAccessPolicyArgs(
expiry_time="2022-03-20T08:49:37.0000000Z",
permission="raud",
start_time="2022-03-17T08:49:37.0000000Z",
),
id="MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI",
),
azure_native.storage.TableSignedIdentifierArgs(
access_policy=azure_native.storage.TableAccessPolicyArgs(
expiry_time="2022-03-20T08:49:37.0000000Z",
permission="rad",
start_time="2022-03-17T08:49:37.0000000Z",
),
id="PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI",
),
],
table_name="table6185")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const table = new azure_native.storage.Table("table", {
accountName: "sto328",
resourceGroupName: "res3376",
signedIdentifiers: [
{
accessPolicy: {
expiryTime: "2022-03-20T08:49:37.0000000Z",
permission: "raud",
startTime: "2022-03-17T08:49:37.0000000Z",
},
id: "MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI",
},
{
accessPolicy: {
expiryTime: "2022-03-20T08:49:37.0000000Z",
permission: "rad",
startTime: "2022-03-17T08:49:37.0000000Z",
},
id: "PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI",
},
],
tableName: "table6185",
});
resources:
table:
type: azure-native:storage:Table
properties:
accountName: sto328
resourceGroupName: res3376
signedIdentifiers:
- accessPolicy:
expiryTime: 2022-03-20T08:49:37.0000000Z
permission: raud
startTime: 2022-03-17T08:49:37.0000000Z
id: MTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTI
- accessPolicy:
expiryTime: 2022-03-20T08:49:37.0000000Z
permission: rad
startTime: 2022-03-17T08:49:37.0000000Z
id: PTIzNDU2Nzg5MDEyMzQ1Njc4OTAxMjM0NTY3ODklMTI
tableName: table6185
Create Table Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Table(name: string, args: TableArgs, opts?: CustomResourceOptions);
@overload
def Table(resource_name: str,
args: TableArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Table(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
signed_identifiers: Optional[Sequence[TableSignedIdentifierArgs]] = None,
table_name: Optional[str] = None)
func NewTable(ctx *Context, name string, args TableArgs, opts ...ResourceOption) (*Table, error)
public Table(string name, TableArgs args, CustomResourceOptions? opts = null)
type: azure-native:storage:Table
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- 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.
- args TableArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control 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.
- name String
- The unique name of the resource.
- args TableArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeTableResource = new AzureNative.Storage.Table("azure-nativeTableResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
SignedIdentifiers = new[]
{
new AzureNative.Storage.Inputs.TableSignedIdentifierArgs
{
Id = "string",
AccessPolicy = new AzureNative.Storage.Inputs.TableAccessPolicyArgs
{
Permission = "string",
ExpiryTime = "string",
StartTime = "string",
},
},
},
TableName = "string",
});
example, err := storage.NewTable(ctx, "azure-nativeTableResource", &storage.TableArgs{
AccountName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
SignedIdentifiers: storage.TableSignedIdentifierArray{
&storage.TableSignedIdentifierArgs{
Id: pulumi.String("string"),
AccessPolicy: &storage.TableAccessPolicyArgs{
Permission: pulumi.String("string"),
ExpiryTime: pulumi.String("string"),
StartTime: pulumi.String("string"),
},
},
},
TableName: pulumi.String("string"),
})
var azure_nativeTableResource = new Table("azure-nativeTableResource", TableArgs.builder()
.accountName("string")
.resourceGroupName("string")
.signedIdentifiers(TableSignedIdentifierArgs.builder()
.id("string")
.accessPolicy(TableAccessPolicyArgs.builder()
.permission("string")
.expiryTime("string")
.startTime("string")
.build())
.build())
.tableName("string")
.build());
azure_native_table_resource = azure_native.storage.Table("azure-nativeTableResource",
account_name="string",
resource_group_name="string",
signed_identifiers=[azure_native.storage.TableSignedIdentifierArgs(
id="string",
access_policy=azure_native.storage.TableAccessPolicyArgs(
permission="string",
expiry_time="string",
start_time="string",
),
)],
table_name="string")
const azure_nativeTableResource = new azure_native.storage.Table("azure-nativeTableResource", {
accountName: "string",
resourceGroupName: "string",
signedIdentifiers: [{
id: "string",
accessPolicy: {
permission: "string",
expiryTime: "string",
startTime: "string",
},
}],
tableName: "string",
});
type: azure-native:storage:Table
properties:
accountName: string
resourceGroupName: string
signedIdentifiers:
- accessPolicy:
expiryTime: string
permission: string
startTime: string
id: string
tableName: string
Table Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Table resource accepts the following input properties:
- Account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Signed
Identifiers List<Pulumi.Azure Native. Storage. Inputs. Table Signed Identifier> - List of stored access policies specified on the table.
- Table
Name string - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
- Account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Signed
Identifiers []TableSigned Identifier Args - List of stored access policies specified on the table.
- Table
Name string - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
- account
Name String - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- signed
Identifiers List<TableSigned Identifier> - List of stored access policies specified on the table.
- table
Name String - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
- account
Name string - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- signed
Identifiers TableSigned Identifier[] - List of stored access policies specified on the table.
- table
Name string - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
- account_
name str - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource_
group_ strname - The name of the resource group within the user's subscription. The name is case insensitive.
- signed_
identifiers Sequence[TableSigned Identifier Args] - List of stored access policies specified on the table.
- table_
name str - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
- account
Name String - The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- signed
Identifiers List<Property Map> - List of stored access policies specified on the table.
- table
Name String - A table name must be unique within a storage account and must be between 3 and 63 characters.The name must comprise of only alphanumeric characters and it cannot begin with a numeric character.
Outputs
All input properties are implicitly available as output properties. Additionally, the Table resource produces the following output properties:
Supporting Types
TableAccessPolicy, TableAccessPolicyArgs
- Permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- Expiry
Time string - Expiry time of the access policy
- Start
Time string - Start time of the access policy
- Permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- Expiry
Time string - Expiry time of the access policy
- Start
Time string - Start time of the access policy
- permission String
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time String - Expiry time of the access policy
- start
Time String - Start time of the access policy
- permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time string - Expiry time of the access policy
- start
Time string - Start time of the access policy
- permission str
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry_
time str - Expiry time of the access policy
- start_
time str - Start time of the access policy
- permission String
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time String - Expiry time of the access policy
- start
Time String - Start time of the access policy
TableAccessPolicyResponse, TableAccessPolicyResponseArgs
- Permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- Expiry
Time string - Expiry time of the access policy
- Start
Time string - Start time of the access policy
- Permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- Expiry
Time string - Expiry time of the access policy
- Start
Time string - Start time of the access policy
- permission String
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time String - Expiry time of the access policy
- start
Time String - Start time of the access policy
- permission string
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time string - Expiry time of the access policy
- start
Time string - Start time of the access policy
- permission str
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry_
time str - Expiry time of the access policy
- start_
time str - Start time of the access policy
- permission String
- Required. List of abbreviated permissions. Supported permission values include 'r','a','u','d'
- expiry
Time String - Expiry time of the access policy
- start
Time String - Start time of the access policy
TableSignedIdentifier, TableSignedIdentifierArgs
- Id string
- unique-64-character-value of the stored access policy.
- Access
Policy Pulumi.Azure Native. Storage. Inputs. Table Access Policy - Access policy
- Id string
- unique-64-character-value of the stored access policy.
- Access
Policy TableAccess Policy - Access policy
- id String
- unique-64-character-value of the stored access policy.
- access
Policy TableAccess Policy - Access policy
- id string
- unique-64-character-value of the stored access policy.
- access
Policy TableAccess Policy - Access policy
- id str
- unique-64-character-value of the stored access policy.
- access_
policy TableAccess Policy - Access policy
- id String
- unique-64-character-value of the stored access policy.
- access
Policy Property Map - Access policy
TableSignedIdentifierResponse, TableSignedIdentifierResponseArgs
- Id string
- unique-64-character-value of the stored access policy.
- Access
Policy Pulumi.Azure Native. Storage. Inputs. Table Access Policy Response - Access policy
- Id string
- unique-64-character-value of the stored access policy.
- Access
Policy TableAccess Policy Response - Access policy
- id String
- unique-64-character-value of the stored access policy.
- access
Policy TableAccess Policy Response - Access policy
- id string
- unique-64-character-value of the stored access policy.
- access
Policy TableAccess Policy Response - Access policy
- id str
- unique-64-character-value of the stored access policy.
- access_
policy TableAccess Policy Response - Access policy
- id String
- unique-64-character-value of the stored access policy.
- access
Policy Property Map - Access policy
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storage:Table table6185 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}/tableServices/default/tables/{tableName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0