azure-native.storage.StorageAccount
Explore with Pulumi AI
The storage account. API Version: 2021-02-01.
Example Usage
NfsV3AccountCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var storageAccount = new AzureNative.Storage.StorageAccount("storageAccount", new()
{
AccountName = "sto4445",
EnableHttpsTrafficOnly = false,
EnableNfsV3 = true,
IsHnsEnabled = true,
Kind = "BlockBlobStorage",
Location = "eastus",
NetworkRuleSet = new AzureNative.Storage.Inputs.NetworkRuleSetArgs
{
Bypass = "AzureServices",
DefaultAction = AzureNative.Storage.DefaultAction.Allow,
IpRules = new[] {},
VirtualNetworkRules = new[]
{
new AzureNative.Storage.Inputs.VirtualNetworkRuleArgs
{
VirtualNetworkResourceId = "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12",
},
},
},
ResourceGroupName = "res9101",
Sku = new AzureNative.Storage.Inputs.SkuArgs
{
Name = "Premium_LRS",
},
});
});
package main
import (
storage "github.com/pulumi/pulumi-azure-native-sdk/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := storage.NewStorageAccount(ctx, "storageAccount", &storage.StorageAccountArgs{
AccountName: pulumi.String("sto4445"),
EnableHttpsTrafficOnly: pulumi.Bool(false),
EnableNfsV3: pulumi.Bool(true),
IsHnsEnabled: pulumi.Bool(true),
Kind: pulumi.String("BlockBlobStorage"),
Location: pulumi.String("eastus"),
NetworkRuleSet: storage.NetworkRuleSetResponse{
Bypass: pulumi.String("AzureServices"),
DefaultAction: storage.DefaultActionAllow,
IpRules: storage.IPRuleArray{},
VirtualNetworkRules: storage.VirtualNetworkRuleArray{
&storage.VirtualNetworkRuleArgs{
VirtualNetworkResourceId: pulumi.String("/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12"),
},
},
},
ResourceGroupName: pulumi.String("res9101"),
Sku: &storage.SkuArgs{
Name: pulumi.String("Premium_LRS"),
},
})
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.StorageAccount;
import com.pulumi.azurenative.storage.StorageAccountArgs;
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 storageAccount = new StorageAccount("storageAccount", StorageAccountArgs.builder()
.accountName("sto4445")
.enableHttpsTrafficOnly(false)
.enableNfsV3(true)
.isHnsEnabled(true)
.kind("BlockBlobStorage")
.location("eastus")
.networkRuleSet(Map.ofEntries(
Map.entry("bypass", "AzureServices"),
Map.entry("defaultAction", "Allow"),
Map.entry("ipRules", ),
Map.entry("virtualNetworkRules", Map.of("virtualNetworkResourceId", "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12"))
))
.resourceGroupName("res9101")
.sku(Map.of("name", "Premium_LRS"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
storage_account = azure_native.storage.StorageAccount("storageAccount",
account_name="sto4445",
enable_https_traffic_only=False,
enable_nfs_v3=True,
is_hns_enabled=True,
kind="BlockBlobStorage",
location="eastus",
network_rule_set=azure_native.storage.NetworkRuleSetResponseArgs(
bypass="AzureServices",
default_action=azure_native.storage.DefaultAction.ALLOW,
ip_rules=[],
virtual_network_rules=[azure_native.storage.VirtualNetworkRuleArgs(
virtual_network_resource_id="/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12",
)],
),
resource_group_name="res9101",
sku=azure_native.storage.SkuArgs(
name="Premium_LRS",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageAccount = new azure_native.storage.StorageAccount("storageAccount", {
accountName: "sto4445",
enableHttpsTrafficOnly: false,
enableNfsV3: true,
isHnsEnabled: true,
kind: "BlockBlobStorage",
location: "eastus",
networkRuleSet: {
bypass: "AzureServices",
defaultAction: azure_native.storage.DefaultAction.Allow,
ipRules: [],
virtualNetworkRules: [{
virtualNetworkResourceId: "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12",
}],
},
resourceGroupName: "res9101",
sku: {
name: "Premium_LRS",
},
});
resources:
storageAccount:
type: azure-native:storage:StorageAccount
properties:
accountName: sto4445
enableHttpsTrafficOnly: false
enableNfsV3: true
isHnsEnabled: true
kind: BlockBlobStorage
location: eastus
networkRuleSet:
bypass: AzureServices
defaultAction: Allow
ipRules: []
virtualNetworkRules:
- virtualNetworkResourceId: /subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Network/virtualNetworks/net123/subnets/subnet12
resourceGroupName: res9101
sku:
name: Premium_LRS
StorageAccountCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var storageAccount = new AzureNative.Storage.StorageAccount("storageAccount", new()
{
AccountName = "sto4445",
AllowBlobPublicAccess = false,
AllowSharedKeyAccess = true,
Encryption = new AzureNative.Storage.Inputs.EncryptionArgs
{
KeySource = "Microsoft.Storage",
RequireInfrastructureEncryption = false,
Services = new AzureNative.Storage.Inputs.EncryptionServicesArgs
{
Blob = new AzureNative.Storage.Inputs.EncryptionServiceArgs
{
Enabled = true,
KeyType = "Account",
},
File = new AzureNative.Storage.Inputs.EncryptionServiceArgs
{
Enabled = true,
KeyType = "Account",
},
},
},
ExtendedLocation = new AzureNative.Storage.Inputs.ExtendedLocationArgs
{
Name = "losangeles001",
Type = "EdgeZone",
},
IsHnsEnabled = true,
KeyPolicy = new AzureNative.Storage.Inputs.KeyPolicyArgs
{
KeyExpirationPeriodInDays = 20,
},
Kind = "Storage",
Location = "eastus",
MinimumTlsVersion = "TLS1_2",
ResourceGroupName = "res9101",
RoutingPreference = new AzureNative.Storage.Inputs.RoutingPreferenceArgs
{
PublishInternetEndpoints = true,
PublishMicrosoftEndpoints = true,
RoutingChoice = "MicrosoftRouting",
},
SasPolicy = new AzureNative.Storage.Inputs.SasPolicyArgs
{
ExpirationAction = "Log",
SasExpirationPeriod = "1.15:59:59",
},
Sku = new AzureNative.Storage.Inputs.SkuArgs
{
Name = "Standard_GRS",
},
Tags =
{
{ "key1", "value1" },
{ "key2", "value2" },
},
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.StorageAccount;
import com.pulumi.azurenative.storage.StorageAccountArgs;
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 storageAccount = new StorageAccount("storageAccount", StorageAccountArgs.builder()
.accountName("sto4445")
.allowBlobPublicAccess(false)
.allowSharedKeyAccess(true)
.encryption(Map.ofEntries(
Map.entry("keySource", "Microsoft.Storage"),
Map.entry("requireInfrastructureEncryption", false),
Map.entry("services", Map.ofEntries(
Map.entry("blob", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("keyType", "Account")
)),
Map.entry("file", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("keyType", "Account")
))
))
))
.extendedLocation(Map.ofEntries(
Map.entry("name", "losangeles001"),
Map.entry("type", "EdgeZone")
))
.isHnsEnabled(true)
.keyPolicy(Map.of("keyExpirationPeriodInDays", 20))
.kind("Storage")
.location("eastus")
.minimumTlsVersion("TLS1_2")
.resourceGroupName("res9101")
.routingPreference(Map.ofEntries(
Map.entry("publishInternetEndpoints", true),
Map.entry("publishMicrosoftEndpoints", true),
Map.entry("routingChoice", "MicrosoftRouting")
))
.sasPolicy(Map.ofEntries(
Map.entry("expirationAction", "Log"),
Map.entry("sasExpirationPeriod", "1.15:59:59")
))
.sku(Map.of("name", "Standard_GRS"))
.tags(Map.ofEntries(
Map.entry("key1", "value1"),
Map.entry("key2", "value2")
))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
storage_account = azure_native.storage.StorageAccount("storageAccount",
account_name="sto4445",
allow_blob_public_access=False,
allow_shared_key_access=True,
encryption=azure_native.storage.EncryptionResponseArgs(
key_source="Microsoft.Storage",
require_infrastructure_encryption=False,
services={
"blob": azure_native.storage.EncryptionServiceArgs(
enabled=True,
key_type="Account",
),
"file": azure_native.storage.EncryptionServiceArgs(
enabled=True,
key_type="Account",
),
},
),
extended_location=azure_native.storage.ExtendedLocationArgs(
name="losangeles001",
type="EdgeZone",
),
is_hns_enabled=True,
key_policy=azure_native.storage.KeyPolicyArgs(
key_expiration_period_in_days=20,
),
kind="Storage",
location="eastus",
minimum_tls_version="TLS1_2",
resource_group_name="res9101",
routing_preference=azure_native.storage.RoutingPreferenceArgs(
publish_internet_endpoints=True,
publish_microsoft_endpoints=True,
routing_choice="MicrosoftRouting",
),
sas_policy=azure_native.storage.SasPolicyArgs(
expiration_action="Log",
sas_expiration_period="1.15:59:59",
),
sku=azure_native.storage.SkuArgs(
name="Standard_GRS",
),
tags={
"key1": "value1",
"key2": "value2",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageAccount = new azure_native.storage.StorageAccount("storageAccount", {
accountName: "sto4445",
allowBlobPublicAccess: false,
allowSharedKeyAccess: true,
encryption: {
keySource: "Microsoft.Storage",
requireInfrastructureEncryption: false,
services: {
blob: {
enabled: true,
keyType: "Account",
},
file: {
enabled: true,
keyType: "Account",
},
},
},
extendedLocation: {
name: "losangeles001",
type: "EdgeZone",
},
isHnsEnabled: true,
keyPolicy: {
keyExpirationPeriodInDays: 20,
},
kind: "Storage",
location: "eastus",
minimumTlsVersion: "TLS1_2",
resourceGroupName: "res9101",
routingPreference: {
publishInternetEndpoints: true,
publishMicrosoftEndpoints: true,
routingChoice: "MicrosoftRouting",
},
sasPolicy: {
expirationAction: "Log",
sasExpirationPeriod: "1.15:59:59",
},
sku: {
name: "Standard_GRS",
},
tags: {
key1: "value1",
key2: "value2",
},
});
resources:
storageAccount:
type: azure-native:storage:StorageAccount
properties:
accountName: sto4445
allowBlobPublicAccess: false
allowSharedKeyAccess: true
encryption:
keySource: Microsoft.Storage
requireInfrastructureEncryption: false
services:
blob:
enabled: true
keyType: Account
file:
enabled: true
keyType: Account
extendedLocation:
name: losangeles001
type: EdgeZone
isHnsEnabled: true
keyPolicy:
keyExpirationPeriodInDays: 20
kind: Storage
location: eastus
minimumTlsVersion: TLS1_2
resourceGroupName: res9101
routingPreference:
publishInternetEndpoints: true
publishMicrosoftEndpoints: true
routingChoice: MicrosoftRouting
sasPolicy:
expirationAction: Log
sasExpirationPeriod: 1.15:59:59
sku:
name: Standard_GRS
tags:
key1: value1
key2: value2
StorageAccountCreateUserAssignedEncryptionIdentityWithCMK
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var storageAccount = new AzureNative.Storage.StorageAccount("storageAccount", new()
{
AccountName = "sto4445",
Encryption = new AzureNative.Storage.Inputs.EncryptionArgs
{
EncryptionIdentity = new AzureNative.Storage.Inputs.EncryptionIdentityArgs
{
EncryptionUserAssignedIdentity = "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}",
},
KeySource = "Microsoft.Keyvault",
KeyVaultProperties = new AzureNative.Storage.Inputs.KeyVaultPropertiesArgs
{
KeyName = "wrappingKey",
KeyVaultUri = "https://myvault8569.vault.azure.net",
KeyVersion = "",
},
Services = new AzureNative.Storage.Inputs.EncryptionServicesArgs
{
Blob = new AzureNative.Storage.Inputs.EncryptionServiceArgs
{
Enabled = true,
KeyType = "Account",
},
File = new AzureNative.Storage.Inputs.EncryptionServiceArgs
{
Enabled = true,
KeyType = "Account",
},
},
},
Identity = new AzureNative.Storage.Inputs.IdentityArgs
{
Type = "UserAssigned",
UserAssignedIdentities =
{
{ "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}", null },
},
},
Kind = "Storage",
Location = "eastus",
ResourceGroupName = "res9101",
Sku = new AzureNative.Storage.Inputs.SkuArgs
{
Name = "Standard_LRS",
},
});
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storage.StorageAccount;
import com.pulumi.azurenative.storage.StorageAccountArgs;
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 storageAccount = new StorageAccount("storageAccount", StorageAccountArgs.builder()
.accountName("sto4445")
.encryption(Map.ofEntries(
Map.entry("encryptionIdentity", Map.of("encryptionUserAssignedIdentity", "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}")),
Map.entry("keySource", "Microsoft.Keyvault"),
Map.entry("keyVaultProperties", Map.ofEntries(
Map.entry("keyName", "wrappingKey"),
Map.entry("keyVaultUri", "https://myvault8569.vault.azure.net"),
Map.entry("keyVersion", "")
)),
Map.entry("services", Map.ofEntries(
Map.entry("blob", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("keyType", "Account")
)),
Map.entry("file", Map.ofEntries(
Map.entry("enabled", true),
Map.entry("keyType", "Account")
))
))
))
.identity(Map.ofEntries(
Map.entry("type", "UserAssigned"),
Map.entry("userAssignedIdentities", Map.of("/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}", ))
))
.kind("Storage")
.location("eastus")
.resourceGroupName("res9101")
.sku(Map.of("name", "Standard_LRS"))
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
storage_account = azure_native.storage.StorageAccount("storageAccount",
account_name="sto4445",
encryption=azure_native.storage.EncryptionResponseArgs(
encryption_identity=azure_native.storage.EncryptionIdentityArgs(
encryption_user_assigned_identity="/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}",
),
key_source="Microsoft.Keyvault",
key_vault_properties=azure_native.storage.KeyVaultPropertiesArgs(
key_name="wrappingKey",
key_vault_uri="https://myvault8569.vault.azure.net",
key_version="",
),
services={
"blob": azure_native.storage.EncryptionServiceArgs(
enabled=True,
key_type="Account",
),
"file": azure_native.storage.EncryptionServiceArgs(
enabled=True,
key_type="Account",
),
},
),
identity=azure_native.storage.IdentityArgs(
type="UserAssigned",
user_assigned_identities={
"/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}": {},
},
),
kind="Storage",
location="eastus",
resource_group_name="res9101",
sku=azure_native.storage.SkuArgs(
name="Standard_LRS",
))
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const storageAccount = new azure_native.storage.StorageAccount("storageAccount", {
accountName: "sto4445",
encryption: {
encryptionIdentity: {
encryptionUserAssignedIdentity: "/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}",
},
keySource: "Microsoft.Keyvault",
keyVaultProperties: {
keyName: "wrappingKey",
keyVaultUri: "https://myvault8569.vault.azure.net",
keyVersion: "",
},
services: {
blob: {
enabled: true,
keyType: "Account",
},
file: {
enabled: true,
keyType: "Account",
},
},
},
identity: {
type: "UserAssigned",
userAssignedIdentities: {
"/subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}": {},
},
},
kind: "Storage",
location: "eastus",
resourceGroupName: "res9101",
sku: {
name: "Standard_LRS",
},
});
resources:
storageAccount:
type: azure-native:storage:StorageAccount
properties:
accountName: sto4445
encryption:
encryptionIdentity:
encryptionUserAssignedIdentity: /subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}
keySource: Microsoft.Keyvault
keyVaultProperties:
keyName: wrappingKey
keyVaultUri: https://myvault8569.vault.azure.net
keyVersion:
services:
blob:
enabled: true
keyType: Account
file:
enabled: true
keyType: Account
identity:
type: UserAssigned
userAssignedIdentities:
? /subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{managed-identity-name}
: {}
kind: Storage
location: eastus
resourceGroupName: res9101
sku:
name: Standard_LRS
Create StorageAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new StorageAccount(name: string, args: StorageAccountArgs, opts?: CustomResourceOptions);
@overload
def StorageAccount(resource_name: str,
args: StorageAccountArgs,
opts: Optional[ResourceOptions] = None)
@overload
def StorageAccount(resource_name: str,
opts: Optional[ResourceOptions] = None,
kind: Optional[Union[str, Kind]] = None,
sku: Optional[SkuArgs] = None,
resource_group_name: Optional[str] = None,
identity: Optional[IdentityArgs] = None,
key_policy: Optional[KeyPolicyArgs] = None,
custom_domain: Optional[CustomDomainArgs] = None,
enable_https_traffic_only: Optional[bool] = None,
enable_nfs_v3: Optional[bool] = None,
encryption: Optional[EncryptionArgs] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
access_tier: Optional[AccessTier] = None,
is_hns_enabled: Optional[bool] = None,
azure_files_identity_based_authentication: Optional[AzureFilesIdentityBasedAuthenticationArgs] = None,
allow_shared_key_access: Optional[bool] = None,
large_file_shares_state: Optional[Union[str, LargeFileSharesState]] = None,
location: Optional[str] = None,
minimum_tls_version: Optional[Union[str, MinimumTlsVersion]] = None,
network_rule_set: Optional[NetworkRuleSetArgs] = None,
allow_blob_public_access: Optional[bool] = None,
routing_preference: Optional[RoutingPreferenceArgs] = None,
sas_policy: Optional[SasPolicyArgs] = None,
account_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewStorageAccount(ctx *Context, name string, args StorageAccountArgs, opts ...ResourceOption) (*StorageAccount, error)
public StorageAccount(string name, StorageAccountArgs args, CustomResourceOptions? opts = null)
public StorageAccount(String name, StorageAccountArgs args)
public StorageAccount(String name, StorageAccountArgs args, CustomResourceOptions options)
type: azure-native:storage:StorageAccount
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 StorageAccountArgs
- 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 StorageAccountArgs
- 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 StorageAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args StorageAccountArgs
- 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_nativeStorageAccountResource = new AzureNative.Storage.StorageAccount("azure-nativeStorageAccountResource", new()
{
Kind = "string",
Sku =
{
{ "name", "string" },
},
ResourceGroupName = "string",
Identity =
{
{ "type", "string" },
{ "userAssignedIdentities",
{
{ "string", "any" },
} },
},
KeyPolicy =
{
{ "keyExpirationPeriodInDays", 0 },
},
CustomDomain =
{
{ "name", "string" },
{ "useSubDomainName", false },
},
EnableHttpsTrafficOnly = false,
EnableNfsV3 = false,
Encryption =
{
{ "keySource", "string" },
{ "encryptionIdentity",
{
{ "encryptionUserAssignedIdentity", "string" },
} },
{ "keyVaultProperties",
{
{ "keyName", "string" },
{ "keyVaultUri", "string" },
{ "keyVersion", "string" },
} },
{ "requireInfrastructureEncryption", false },
{ "services",
{
{ "blob",
{
{ "enabled", false },
{ "keyType", "string" },
} },
{ "file",
{
{ "enabled", false },
{ "keyType", "string" },
} },
{ "queue",
{
{ "enabled", false },
{ "keyType", "string" },
} },
{ "table",
{
{ "enabled", false },
{ "keyType", "string" },
} },
} },
},
ExtendedLocation =
{
{ "name", "string" },
{ "type", "string" },
},
AccessTier = "Hot",
IsHnsEnabled = false,
AzureFilesIdentityBasedAuthentication =
{
{ "directoryServiceOptions", "string" },
{ "activeDirectoryProperties",
{
{ "azureStorageSid", "string" },
{ "domainGuid", "string" },
{ "domainName", "string" },
{ "domainSid", "string" },
{ "forestName", "string" },
{ "netBiosDomainName", "string" },
} },
},
AllowSharedKeyAccess = false,
LargeFileSharesState = "string",
Location = "string",
MinimumTlsVersion = "string",
NetworkRuleSet =
{
{ "defaultAction", "Allow" },
{ "bypass", "string" },
{ "ipRules", new[]
{
{
{ "iPAddressOrRange", "string" },
{ "action", "Allow" },
},
} },
{ "resourceAccessRules", new[]
{
{
{ "resourceId", "string" },
{ "tenantId", "string" },
},
} },
{ "virtualNetworkRules", new[]
{
{
{ "virtualNetworkResourceId", "string" },
{ "action", "Allow" },
{ "state", "string" },
},
} },
},
AllowBlobPublicAccess = false,
RoutingPreference =
{
{ "publishInternetEndpoints", false },
{ "publishMicrosoftEndpoints", false },
{ "routingChoice", "string" },
},
SasPolicy =
{
{ "expirationAction", "string" },
{ "sasExpirationPeriod", "string" },
},
AccountName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := storage.NewStorageAccount(ctx, "azure-nativeStorageAccountResource", &storage.StorageAccountArgs{
Kind: "string",
Sku: map[string]interface{}{
"name": "string",
},
ResourceGroupName: "string",
Identity: map[string]interface{}{
"type": "string",
"userAssignedIdentities": map[string]interface{}{
"string": "any",
},
},
KeyPolicy: map[string]interface{}{
"keyExpirationPeriodInDays": 0,
},
CustomDomain: map[string]interface{}{
"name": "string",
"useSubDomainName": false,
},
EnableHttpsTrafficOnly: false,
EnableNfsV3: false,
Encryption: map[string]interface{}{
"keySource": "string",
"encryptionIdentity": map[string]interface{}{
"encryptionUserAssignedIdentity": "string",
},
"keyVaultProperties": map[string]interface{}{
"keyName": "string",
"keyVaultUri": "string",
"keyVersion": "string",
},
"requireInfrastructureEncryption": false,
"services": map[string]interface{}{
"blob": map[string]interface{}{
"enabled": false,
"keyType": "string",
},
"file": map[string]interface{}{
"enabled": false,
"keyType": "string",
},
"queue": map[string]interface{}{
"enabled": false,
"keyType": "string",
},
"table": map[string]interface{}{
"enabled": false,
"keyType": "string",
},
},
},
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
AccessTier: "Hot",
IsHnsEnabled: false,
AzureFilesIdentityBasedAuthentication: map[string]interface{}{
"directoryServiceOptions": "string",
"activeDirectoryProperties": map[string]interface{}{
"azureStorageSid": "string",
"domainGuid": "string",
"domainName": "string",
"domainSid": "string",
"forestName": "string",
"netBiosDomainName": "string",
},
},
AllowSharedKeyAccess: false,
LargeFileSharesState: "string",
Location: "string",
MinimumTlsVersion: "string",
NetworkRuleSet: map[string]interface{}{
"defaultAction": "Allow",
"bypass": "string",
"ipRules": []map[string]interface{}{
map[string]interface{}{
"iPAddressOrRange": "string",
"action": "Allow",
},
},
"resourceAccessRules": []map[string]interface{}{
map[string]interface{}{
"resourceId": "string",
"tenantId": "string",
},
},
"virtualNetworkRules": []map[string]interface{}{
map[string]interface{}{
"virtualNetworkResourceId": "string",
"action": "Allow",
"state": "string",
},
},
},
AllowBlobPublicAccess: false,
RoutingPreference: map[string]interface{}{
"publishInternetEndpoints": false,
"publishMicrosoftEndpoints": false,
"routingChoice": "string",
},
SasPolicy: map[string]interface{}{
"expirationAction": "string",
"sasExpirationPeriod": "string",
},
AccountName: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var azure_nativeStorageAccountResource = new StorageAccount("azure-nativeStorageAccountResource", StorageAccountArgs.builder()
.kind("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.identity(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.keyPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.customDomain(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.enableHttpsTrafficOnly(false)
.enableNfsV3(false)
.encryption(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.accessTier("Hot")
.isHnsEnabled(false)
.azureFilesIdentityBasedAuthentication(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.allowSharedKeyAccess(false)
.largeFileSharesState("string")
.location("string")
.minimumTlsVersion("string")
.networkRuleSet(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.allowBlobPublicAccess(false)
.routingPreference(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.sasPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.accountName("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
azure_native_storage_account_resource = azure_native.storage.StorageAccount("azure-nativeStorageAccountResource",
kind=string,
sku={
name: string,
},
resource_group_name=string,
identity={
type: string,
userAssignedIdentities: {
string: any,
},
},
key_policy={
keyExpirationPeriodInDays: 0,
},
custom_domain={
name: string,
useSubDomainName: False,
},
enable_https_traffic_only=False,
enable_nfs_v3=False,
encryption={
keySource: string,
encryptionIdentity: {
encryptionUserAssignedIdentity: string,
},
keyVaultProperties: {
keyName: string,
keyVaultUri: string,
keyVersion: string,
},
requireInfrastructureEncryption: False,
services: {
blob: {
enabled: False,
keyType: string,
},
file: {
enabled: False,
keyType: string,
},
queue: {
enabled: False,
keyType: string,
},
table: {
enabled: False,
keyType: string,
},
},
},
extended_location={
name: string,
type: string,
},
access_tier=Hot,
is_hns_enabled=False,
azure_files_identity_based_authentication={
directoryServiceOptions: string,
activeDirectoryProperties: {
azureStorageSid: string,
domainGuid: string,
domainName: string,
domainSid: string,
forestName: string,
netBiosDomainName: string,
},
},
allow_shared_key_access=False,
large_file_shares_state=string,
location=string,
minimum_tls_version=string,
network_rule_set={
defaultAction: Allow,
bypass: string,
ipRules: [{
iPAddressOrRange: string,
action: Allow,
}],
resourceAccessRules: [{
resourceId: string,
tenantId: string,
}],
virtualNetworkRules: [{
virtualNetworkResourceId: string,
action: Allow,
state: string,
}],
},
allow_blob_public_access=False,
routing_preference={
publishInternetEndpoints: False,
publishMicrosoftEndpoints: False,
routingChoice: string,
},
sas_policy={
expirationAction: string,
sasExpirationPeriod: string,
},
account_name=string,
tags={
string: string,
})
const azure_nativeStorageAccountResource = new azure_native.storage.StorageAccount("azure-nativeStorageAccountResource", {
kind: "string",
sku: {
name: "string",
},
resourceGroupName: "string",
identity: {
type: "string",
userAssignedIdentities: {
string: "any",
},
},
keyPolicy: {
keyExpirationPeriodInDays: 0,
},
customDomain: {
name: "string",
useSubDomainName: false,
},
enableHttpsTrafficOnly: false,
enableNfsV3: false,
encryption: {
keySource: "string",
encryptionIdentity: {
encryptionUserAssignedIdentity: "string",
},
keyVaultProperties: {
keyName: "string",
keyVaultUri: "string",
keyVersion: "string",
},
requireInfrastructureEncryption: false,
services: {
blob: {
enabled: false,
keyType: "string",
},
file: {
enabled: false,
keyType: "string",
},
queue: {
enabled: false,
keyType: "string",
},
table: {
enabled: false,
keyType: "string",
},
},
},
extendedLocation: {
name: "string",
type: "string",
},
accessTier: "Hot",
isHnsEnabled: false,
azureFilesIdentityBasedAuthentication: {
directoryServiceOptions: "string",
activeDirectoryProperties: {
azureStorageSid: "string",
domainGuid: "string",
domainName: "string",
domainSid: "string",
forestName: "string",
netBiosDomainName: "string",
},
},
allowSharedKeyAccess: false,
largeFileSharesState: "string",
location: "string",
minimumTlsVersion: "string",
networkRuleSet: {
defaultAction: "Allow",
bypass: "string",
ipRules: [{
iPAddressOrRange: "string",
action: "Allow",
}],
resourceAccessRules: [{
resourceId: "string",
tenantId: "string",
}],
virtualNetworkRules: [{
virtualNetworkResourceId: "string",
action: "Allow",
state: "string",
}],
},
allowBlobPublicAccess: false,
routingPreference: {
publishInternetEndpoints: false,
publishMicrosoftEndpoints: false,
routingChoice: "string",
},
sasPolicy: {
expirationAction: "string",
sasExpirationPeriod: "string",
},
accountName: "string",
tags: {
string: "string",
},
});
type: azure-native:storage:StorageAccount
properties:
accessTier: Hot
accountName: string
allowBlobPublicAccess: false
allowSharedKeyAccess: false
azureFilesIdentityBasedAuthentication:
activeDirectoryProperties:
azureStorageSid: string
domainGuid: string
domainName: string
domainSid: string
forestName: string
netBiosDomainName: string
directoryServiceOptions: string
customDomain:
name: string
useSubDomainName: false
enableHttpsTrafficOnly: false
enableNfsV3: false
encryption:
encryptionIdentity:
encryptionUserAssignedIdentity: string
keySource: string
keyVaultProperties:
keyName: string
keyVaultUri: string
keyVersion: string
requireInfrastructureEncryption: false
services:
blob:
enabled: false
keyType: string
file:
enabled: false
keyType: string
queue:
enabled: false
keyType: string
table:
enabled: false
keyType: string
extendedLocation:
name: string
type: string
identity:
type: string
userAssignedIdentities:
string: any
isHnsEnabled: false
keyPolicy:
keyExpirationPeriodInDays: 0
kind: string
largeFileSharesState: string
location: string
minimumTlsVersion: string
networkRuleSet:
bypass: string
defaultAction: Allow
ipRules:
- action: Allow
iPAddressOrRange: string
resourceAccessRules:
- resourceId: string
tenantId: string
virtualNetworkRules:
- action: Allow
state: string
virtualNetworkResourceId: string
resourceGroupName: string
routingPreference:
publishInternetEndpoints: false
publishMicrosoftEndpoints: false
routingChoice: string
sasPolicy:
expirationAction: string
sasExpirationPeriod: string
sku:
name: string
tags:
string: string
StorageAccount 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 StorageAccount resource accepts the following input properties:
- Kind
string | Pulumi.
Azure Native. Storage. Kind - Required. Indicates the type of storage account.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Sku
Pulumi.
Azure Native. Storage. Inputs. Sku - Required. Gets or sets the SKU name.
- Access
Tier Pulumi.Azure Native. Storage. Access Tier - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- Allow
Blob boolPublic Access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- bool
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- Azure
Files Pulumi.Identity Based Authentication Azure Native. Storage. Inputs. Azure Files Identity Based Authentication - Provides the identity based authentication settings for Azure Files.
- Custom
Domain Pulumi.Azure Native. Storage. Inputs. Custom Domain - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- Enable
Https boolTraffic Only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- Enable
Nfs boolV3 - NFS 3.0 protocol support enabled if set to true.
- Encryption
Pulumi.
Azure Native. Storage. Inputs. Encryption - Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- Extended
Location Pulumi.Azure Native. Storage. Inputs. Extended Location - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- Identity
Pulumi.
Azure Native. Storage. Inputs. Identity - The identity of the resource.
- Is
Hns boolEnabled - Account HierarchicalNamespace enabled if sets to true.
- Key
Policy Pulumi.Azure Native. Storage. Inputs. Key Policy - KeyPolicy assigned to the storage account.
- string | Pulumi.
Azure Native. Storage. Large File Shares State - Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- Location string
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- Minimum
Tls string | Pulumi.Version Azure Native. Storage. Minimum Tls Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- Network
Rule Pulumi.Set Azure Native. Storage. Inputs. Network Rule Set - Network rule set
- Routing
Preference Pulumi.Azure Native. Storage. Inputs. Routing Preference - Maintains information about the network routing choice opted by the user for data transfer
- Sas
Policy Pulumi.Azure Native. Storage. Inputs. Sas Policy - SasPolicy assigned to the storage account.
- Dictionary<string, string>
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
- Kind string | Kind
- Required. Indicates the type of storage account.
- Resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- Sku
Sku
Args - Required. Gets or sets the SKU name.
- Access
Tier AccessTier - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- Allow
Blob boolPublic Access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- bool
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- Azure
Files AzureIdentity Based Authentication Files Identity Based Authentication Args - Provides the identity based authentication settings for Azure Files.
- Custom
Domain CustomDomain Args - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- Enable
Https boolTraffic Only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- Enable
Nfs boolV3 - NFS 3.0 protocol support enabled if set to true.
- Encryption
Encryption
Args - Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- Extended
Location ExtendedLocation Args - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- Identity
Identity
Args - The identity of the resource.
- Is
Hns boolEnabled - Account HierarchicalNamespace enabled if sets to true.
- Key
Policy KeyPolicy Args - KeyPolicy assigned to the storage account.
- string | Large
File Shares State - Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- Location string
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- Minimum
Tls string | MinimumVersion Tls Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- Network
Rule NetworkSet Rule Set Args - Network rule set
- Routing
Preference RoutingPreference Args - Maintains information about the network routing choice opted by the user for data transfer
- Sas
Policy SasPolicy Args - SasPolicy assigned to the storage account.
- map[string]string
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
- kind String | Kind
- Required. Indicates the type of storage account.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- sku Sku
- Required. Gets or sets the SKU name.
- access
Tier AccessTier - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- allow
Blob BooleanPublic Access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- Boolean
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- azure
Files AzureIdentity Based Authentication Files Identity Based Authentication - Provides the identity based authentication settings for Azure Files.
- custom
Domain CustomDomain - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- enable
Https BooleanTraffic Only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- enable
Nfs BooleanV3 - NFS 3.0 protocol support enabled if set to true.
- encryption Encryption
- Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- extended
Location ExtendedLocation - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- identity Identity
- The identity of the resource.
- is
Hns BooleanEnabled - Account HierarchicalNamespace enabled if sets to true.
- key
Policy KeyPolicy - KeyPolicy assigned to the storage account.
- String | Large
File Shares State - Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- location String
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- minimum
Tls String | MinimumVersion Tls Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- network
Rule NetworkSet Rule Set - Network rule set
- routing
Preference RoutingPreference - Maintains information about the network routing choice opted by the user for data transfer
- sas
Policy SasPolicy - SasPolicy assigned to the storage account.
- Map<String,String>
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
- kind string | Kind
- Required. Indicates the type of storage account.
- resource
Group stringName - The name of the resource group within the user's subscription. The name is case insensitive.
- sku Sku
- Required. Gets or sets the SKU name.
- access
Tier AccessTier - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- allow
Blob booleanPublic Access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- boolean
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- azure
Files AzureIdentity Based Authentication Files Identity Based Authentication - Provides the identity based authentication settings for Azure Files.
- custom
Domain CustomDomain - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- enable
Https booleanTraffic Only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- enable
Nfs booleanV3 - NFS 3.0 protocol support enabled if set to true.
- encryption Encryption
- Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- extended
Location ExtendedLocation - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- identity Identity
- The identity of the resource.
- is
Hns booleanEnabled - Account HierarchicalNamespace enabled if sets to true.
- key
Policy KeyPolicy - KeyPolicy assigned to the storage account.
- string | Large
File Shares State - Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- location string
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- minimum
Tls string | MinimumVersion Tls Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- network
Rule NetworkSet Rule Set - Network rule set
- routing
Preference RoutingPreference - Maintains information about the network routing choice opted by the user for data transfer
- sas
Policy SasPolicy - SasPolicy assigned to the storage account.
- {[key: string]: string}
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
- kind str | Kind
- Required. Indicates the type of storage account.
- resource_
group_ strname - The name of the resource group within the user's subscription. The name is case insensitive.
- sku
Sku
Args - Required. Gets or sets the SKU name.
- access_
tier AccessTier - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- allow_
blob_ boolpublic_ access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- bool
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- azure_
files_ Azureidentity_ based_ authentication Files Identity Based Authentication Args - Provides the identity based authentication settings for Azure Files.
- custom_
domain CustomDomain Args - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- enable_
https_ booltraffic_ only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- enable_
nfs_ boolv3 - NFS 3.0 protocol support enabled if set to true.
- encryption
Encryption
Args - Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- extended_
location ExtendedLocation Args - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- identity
Identity
Args - The identity of the resource.
- is_
hns_ boolenabled - Account HierarchicalNamespace enabled if sets to true.
- key_
policy KeyPolicy Args - KeyPolicy assigned to the storage account.
- str | Large
File Shares State - Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- location str
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- minimum_
tls_ str | Minimumversion Tls Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- network_
rule_ Networkset Rule Set Args - Network rule set
- routing_
preference RoutingPreference Args - Maintains information about the network routing choice opted by the user for data transfer
- sas_
policy SasPolicy Args - SasPolicy assigned to the storage account.
- Mapping[str, str]
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
- kind
String | "Storage" | "Storage
V2" | "Blob Storage" | "File Storage" | "Block Blob Storage" - Required. Indicates the type of storage account.
- resource
Group StringName - The name of the resource group within the user's subscription. The name is case insensitive.
- sku Property Map
- Required. Gets or sets the SKU name.
- access
Tier "Hot" | "Cool" - Required for storage accounts where kind = BlobStorage. The access tier used for billing.
- 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.
- allow
Blob BooleanPublic Access - Allow or disallow public access to all blobs or containers in the storage account. The default interpretation is true for this property.
- Boolean
- Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. If false, then all requests, including shared access signatures, must be authorized with Azure Active Directory (Azure AD). The default value is null, which is equivalent to true.
- azure
Files Property MapIdentity Based Authentication - Provides the identity based authentication settings for Azure Files.
- custom
Domain Property Map - User domain assigned to the storage account. Name is the CNAME source. Only one custom domain is supported per storage account at this time. To clear the existing custom domain, use an empty string for the custom domain name property.
- enable
Https BooleanTraffic Only - Allows https traffic only to storage service if sets to true. The default value is true since API version 2019-04-01.
- enable
Nfs BooleanV3 - NFS 3.0 protocol support enabled if set to true.
- encryption Property Map
- Not applicable. Azure Storage encryption is enabled for all storage accounts and cannot be disabled.
- extended
Location Property Map - Optional. Set the extended location of the resource. If not set, the storage account will be created in Azure main region. Otherwise it will be created in the specified extended location
- identity Property Map
- The identity of the resource.
- is
Hns BooleanEnabled - Account HierarchicalNamespace enabled if sets to true.
- key
Policy Property Map - KeyPolicy assigned to the storage account.
- String | "Disabled" | "Enabled"
- Allow large file shares if sets to Enabled. It cannot be disabled once it is enabled.
- location String
- Required. Gets or sets the location of the resource. This will be one of the supported and registered Azure Geo Regions (e.g. West US, East US, Southeast Asia, etc.). The geo region of a resource cannot be changed once it is created, but if an identical geo region is specified on update, the request will succeed.
- minimum
Tls String | "TLS1_0" | "TLS1_1" | "TLS1_2"Version - Set the minimum TLS version to be permitted on requests to storage. The default interpretation is TLS 1.0 for this property.
- network
Rule Property MapSet - Network rule set
- routing
Preference Property Map - Maintains information about the network routing choice opted by the user for data transfer
- sas
Policy Property Map - SasPolicy assigned to the storage account.
- Map<String>
- Gets or sets a list of key value pairs that describe the resource. These tags can be used for viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key with a length no greater than 128 characters and a value with a length no greater than 256 characters.
Outputs
All input properties are implicitly available as output properties. Additionally, the StorageAccount resource produces the following output properties:
- Blob
Restore Pulumi.Status Azure Native. Storage. Outputs. Blob Restore Status Response - Blob restore status
- Creation
Time string - Gets the creation date and time of the storage account in UTC.
- Failover
In boolProgress - If the failover is in progress, the value will be true, otherwise, it will be null.
- Geo
Replication Pulumi.Stats Azure Native. Storage. Outputs. Geo Replication Stats Response - Geo Replication Stats
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Creation Pulumi.Time Azure Native. Storage. Outputs. Key Creation Time Response - Storage account keys creation time.
- Last
Geo stringFailover Time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- Name string
- The name of the resource
- Primary
Endpoints Pulumi.Azure Native. Storage. Outputs. Endpoints Response - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- Primary
Location string - Gets the location of the primary data center for the storage account.
- Private
Endpoint List<Pulumi.Connections Azure Native. Storage. Outputs. Private Endpoint Connection Response> - List of private endpoint connection associated with the specified storage account
- Provisioning
State string - Gets the status of the storage account at the time the operation was called.
- Secondary
Endpoints Pulumi.Azure Native. Storage. Outputs. Endpoints Response - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- Secondary
Location string - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- Status
Of stringPrimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- Status
Of stringSecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Blob
Restore BlobStatus Restore Status Response - Blob restore status
- Creation
Time string - Gets the creation date and time of the storage account in UTC.
- Failover
In boolProgress - If the failover is in progress, the value will be true, otherwise, it will be null.
- Geo
Replication GeoStats Replication Stats Response - Geo Replication Stats
- Id string
- The provider-assigned unique ID for this managed resource.
- Key
Creation KeyTime Creation Time Response - Storage account keys creation time.
- Last
Geo stringFailover Time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- Name string
- The name of the resource
- Primary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- Primary
Location string - Gets the location of the primary data center for the storage account.
- Private
Endpoint []PrivateConnections Endpoint Connection Response - List of private endpoint connection associated with the specified storage account
- Provisioning
State string - Gets the status of the storage account at the time the operation was called.
- Secondary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- Secondary
Location string - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- Status
Of stringPrimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- Status
Of stringSecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blob
Restore BlobStatus Restore Status Response - Blob restore status
- creation
Time String - Gets the creation date and time of the storage account in UTC.
- failover
In BooleanProgress - If the failover is in progress, the value will be true, otherwise, it will be null.
- geo
Replication GeoStats Replication Stats Response - Geo Replication Stats
- id String
- The provider-assigned unique ID for this managed resource.
- key
Creation KeyTime Creation Time Response - Storage account keys creation time.
- last
Geo StringFailover Time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- name String
- The name of the resource
- primary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- primary
Location String - Gets the location of the primary data center for the storage account.
- private
Endpoint List<PrivateConnections Endpoint Connection Response> - List of private endpoint connection associated with the specified storage account
- provisioning
State String - Gets the status of the storage account at the time the operation was called.
- secondary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- secondary
Location String - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- status
Of StringPrimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- status
Of StringSecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blob
Restore BlobStatus Restore Status Response - Blob restore status
- creation
Time string - Gets the creation date and time of the storage account in UTC.
- failover
In booleanProgress - If the failover is in progress, the value will be true, otherwise, it will be null.
- geo
Replication GeoStats Replication Stats Response - Geo Replication Stats
- id string
- The provider-assigned unique ID for this managed resource.
- key
Creation KeyTime Creation Time Response - Storage account keys creation time.
- last
Geo stringFailover Time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- name string
- The name of the resource
- primary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- primary
Location string - Gets the location of the primary data center for the storage account.
- private
Endpoint PrivateConnections Endpoint Connection Response[] - List of private endpoint connection associated with the specified storage account
- provisioning
State string - Gets the status of the storage account at the time the operation was called.
- secondary
Endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- secondary
Location string - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- status
Of stringPrimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- status
Of stringSecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blob_
restore_ Blobstatus Restore Status Response - Blob restore status
- creation_
time str - Gets the creation date and time of the storage account in UTC.
- failover_
in_ boolprogress - If the failover is in progress, the value will be true, otherwise, it will be null.
- geo_
replication_ Geostats Replication Stats Response - Geo Replication Stats
- id str
- The provider-assigned unique ID for this managed resource.
- key_
creation_ Keytime Creation Time Response - Storage account keys creation time.
- last_
geo_ strfailover_ time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- name str
- The name of the resource
- primary_
endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- primary_
location str - Gets the location of the primary data center for the storage account.
- private_
endpoint_ Sequence[Privateconnections Endpoint Connection Response] - List of private endpoint connection associated with the specified storage account
- provisioning_
state str - Gets the status of the storage account at the time the operation was called.
- secondary_
endpoints EndpointsResponse - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- secondary_
location str - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- status_
of_ strprimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- status_
of_ strsecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- blob
Restore Property MapStatus - Blob restore status
- creation
Time String - Gets the creation date and time of the storage account in UTC.
- failover
In BooleanProgress - If the failover is in progress, the value will be true, otherwise, it will be null.
- geo
Replication Property MapStats - Geo Replication Stats
- id String
- The provider-assigned unique ID for this managed resource.
- key
Creation Property MapTime - Storage account keys creation time.
- last
Geo StringFailover Time - Gets the timestamp of the most recent instance of a failover to the secondary location. Only the most recent timestamp is retained. This element is not returned if there has never been a failover instance. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- name String
- The name of the resource
- primary
Endpoints Property Map - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object. Note that Standard_ZRS and Premium_LRS accounts only return the blob endpoint.
- primary
Location String - Gets the location of the primary data center for the storage account.
- private
Endpoint List<Property Map>Connections - List of private endpoint connection associated with the specified storage account
- provisioning
State String - Gets the status of the storage account at the time the operation was called.
- secondary
Endpoints Property Map - Gets the URLs that are used to perform a retrieval of a public blob, queue, or table object from the secondary location of the storage account. Only available if the SKU name is Standard_RAGRS.
- secondary
Location String - Gets the location of the geo-replicated secondary for the storage account. Only available if the accountType is Standard_GRS or Standard_RAGRS.
- status
Of StringPrimary - Gets the status indicating whether the primary location of the storage account is available or unavailable.
- status
Of StringSecondary - Gets the status indicating whether the secondary location of the storage account is available or unavailable. Only available if the SKU name is Standard_GRS or Standard_RAGRS.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
AccessTier, AccessTierArgs
- Hot
- Hot
- Cool
- Cool
- Access
Tier Hot - Hot
- Access
Tier Cool - Cool
- Hot
- Hot
- Cool
- Cool
- Hot
- Hot
- Cool
- Cool
- HOT
- Hot
- COOL
- Cool
- "Hot"
- Hot
- "Cool"
- Cool
Action, ActionArgs
- Allow
- Allow
- Action
Allow - Allow
- Allow
- Allow
- Allow
- Allow
- ALLOW
- Allow
- "Allow"
- Allow
ActiveDirectoryProperties, ActiveDirectoryPropertiesArgs
- Azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- Domain
Guid string - Specifies the domain GUID.
- Domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - Specifies the security identifier (SID).
- Forest
Name string - Specifies the Active Directory forest to get.
- Net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- Azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- Domain
Guid string - Specifies the domain GUID.
- Domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - Specifies the security identifier (SID).
- Forest
Name string - Specifies the Active Directory forest to get.
- Net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- azure
Storage StringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid String - Specifies the domain GUID.
- domain
Name String - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid String - Specifies the security identifier (SID).
- forest
Name String - Specifies the Active Directory forest to get.
- net
Bios StringDomain Name - Specifies the NetBIOS domain name.
- azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid string - Specifies the domain GUID.
- domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid string - Specifies the security identifier (SID).
- forest
Name string - Specifies the Active Directory forest to get.
- net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- azure_
storage_ strsid - Specifies the security identifier (SID) for Azure Storage.
- domain_
guid str - Specifies the domain GUID.
- domain_
name str - Specifies the primary domain that the AD DNS server is authoritative for.
- domain_
sid str - Specifies the security identifier (SID).
- forest_
name str - Specifies the Active Directory forest to get.
- net_
bios_ strdomain_ name - Specifies the NetBIOS domain name.
- azure
Storage StringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid String - Specifies the domain GUID.
- domain
Name String - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid String - Specifies the security identifier (SID).
- forest
Name String - Specifies the Active Directory forest to get.
- net
Bios StringDomain Name - Specifies the NetBIOS domain name.
ActiveDirectoryPropertiesResponse, ActiveDirectoryPropertiesResponseArgs
- Azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- Domain
Guid string - Specifies the domain GUID.
- Domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - Specifies the security identifier (SID).
- Forest
Name string - Specifies the Active Directory forest to get.
- Net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- Azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- Domain
Guid string - Specifies the domain GUID.
- Domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- Domain
Sid string - Specifies the security identifier (SID).
- Forest
Name string - Specifies the Active Directory forest to get.
- Net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- azure
Storage StringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid String - Specifies the domain GUID.
- domain
Name String - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid String - Specifies the security identifier (SID).
- forest
Name String - Specifies the Active Directory forest to get.
- net
Bios StringDomain Name - Specifies the NetBIOS domain name.
- azure
Storage stringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid string - Specifies the domain GUID.
- domain
Name string - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid string - Specifies the security identifier (SID).
- forest
Name string - Specifies the Active Directory forest to get.
- net
Bios stringDomain Name - Specifies the NetBIOS domain name.
- azure_
storage_ strsid - Specifies the security identifier (SID) for Azure Storage.
- domain_
guid str - Specifies the domain GUID.
- domain_
name str - Specifies the primary domain that the AD DNS server is authoritative for.
- domain_
sid str - Specifies the security identifier (SID).
- forest_
name str - Specifies the Active Directory forest to get.
- net_
bios_ strdomain_ name - Specifies the NetBIOS domain name.
- azure
Storage StringSid - Specifies the security identifier (SID) for Azure Storage.
- domain
Guid String - Specifies the domain GUID.
- domain
Name String - Specifies the primary domain that the AD DNS server is authoritative for.
- domain
Sid String - Specifies the security identifier (SID).
- forest
Name String - Specifies the Active Directory forest to get.
- net
Bios StringDomain Name - Specifies the NetBIOS domain name.
AzureFilesIdentityBasedAuthentication, AzureFilesIdentityBasedAuthenticationArgs
- Directory
Service string | Pulumi.Options Azure Native. Storage. Directory Service Options - Indicates the directory service used.
- Active
Directory Pulumi.Properties Azure Native. Storage. Inputs. Active Directory Properties - Required if choose AD.
- Directory
Service string | DirectoryOptions Service Options - Indicates the directory service used.
- Active
Directory ActiveProperties Directory Properties - Required if choose AD.
- directory
Service String | DirectoryOptions Service Options - Indicates the directory service used.
- active
Directory ActiveProperties Directory Properties - Required if choose AD.
- directory
Service string | DirectoryOptions Service Options - Indicates the directory service used.
- active
Directory ActiveProperties Directory Properties - Required if choose AD.
- directory_
service_ str | Directoryoptions Service Options - Indicates the directory service used.
- active_
directory_ Activeproperties Directory Properties - Required if choose AD.
- directory
Service String | "None" | "AADDS" | "AD"Options - Indicates the directory service used.
- active
Directory Property MapProperties - Required if choose AD.
AzureFilesIdentityBasedAuthenticationResponse, AzureFilesIdentityBasedAuthenticationResponseArgs
- Directory
Service stringOptions - Indicates the directory service used.
- Active
Directory Pulumi.Properties Azure Native. Storage. Inputs. Active Directory Properties Response - Required if choose AD.
- Directory
Service stringOptions - Indicates the directory service used.
- Active
Directory ActiveProperties Directory Properties Response - Required if choose AD.
- directory
Service StringOptions - Indicates the directory service used.
- active
Directory ActiveProperties Directory Properties Response - Required if choose AD.
- directory
Service stringOptions - Indicates the directory service used.
- active
Directory ActiveProperties Directory Properties Response - Required if choose AD.
- directory_
service_ stroptions - Indicates the directory service used.
- active_
directory_ Activeproperties Directory Properties Response - Required if choose AD.
- directory
Service StringOptions - Indicates the directory service used.
- active
Directory Property MapProperties - Required if choose AD.
BlobRestoreParametersResponse, BlobRestoreParametersResponseArgs
- Blob
Ranges List<Pulumi.Azure Native. Storage. Inputs. Blob Restore Range Response> - Blob ranges to restore.
- Time
To stringRestore - Restore blob to the specified time.
- Blob
Ranges []BlobRestore Range Response - Blob ranges to restore.
- Time
To stringRestore - Restore blob to the specified time.
- blob
Ranges List<BlobRestore Range Response> - Blob ranges to restore.
- time
To StringRestore - Restore blob to the specified time.
- blob
Ranges BlobRestore Range Response[] - Blob ranges to restore.
- time
To stringRestore - Restore blob to the specified time.
- blob_
ranges Sequence[BlobRestore Range Response] - Blob ranges to restore.
- time_
to_ strrestore - Restore blob to the specified time.
- blob
Ranges List<Property Map> - Blob ranges to restore.
- time
To StringRestore - Restore blob to the specified time.
BlobRestoreRangeResponse, BlobRestoreRangeResponseArgs
- End
Range string - Blob end range. This is exclusive. Empty means account end.
- Start
Range string - Blob start range. This is inclusive. Empty means account start.
- End
Range string - Blob end range. This is exclusive. Empty means account end.
- Start
Range string - Blob start range. This is inclusive. Empty means account start.
- end
Range String - Blob end range. This is exclusive. Empty means account end.
- start
Range String - Blob start range. This is inclusive. Empty means account start.
- end
Range string - Blob end range. This is exclusive. Empty means account end.
- start
Range string - Blob start range. This is inclusive. Empty means account start.
- end_
range str - Blob end range. This is exclusive. Empty means account end.
- start_
range str - Blob start range. This is inclusive. Empty means account start.
- end
Range String - Blob end range. This is exclusive. Empty means account end.
- start
Range String - Blob start range. This is inclusive. Empty means account start.
BlobRestoreStatusResponse, BlobRestoreStatusResponseArgs
- Failure
Reason string - Failure reason when blob restore is failed.
- Parameters
Pulumi.
Azure Native. Storage. Inputs. Blob Restore Parameters Response - Blob restore request parameters.
- Restore
Id string - Id for tracking blob restore request.
- Status string
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
- Failure
Reason string - Failure reason when blob restore is failed.
- Parameters
Blob
Restore Parameters Response - Blob restore request parameters.
- Restore
Id string - Id for tracking blob restore request.
- Status string
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
- failure
Reason String - Failure reason when blob restore is failed.
- parameters
Blob
Restore Parameters Response - Blob restore request parameters.
- restore
Id String - Id for tracking blob restore request.
- status String
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
- failure
Reason string - Failure reason when blob restore is failed.
- parameters
Blob
Restore Parameters Response - Blob restore request parameters.
- restore
Id string - Id for tracking blob restore request.
- status string
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
- failure_
reason str - Failure reason when blob restore is failed.
- parameters
Blob
Restore Parameters Response - Blob restore request parameters.
- restore_
id str - Id for tracking blob restore request.
- status str
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
- failure
Reason String - Failure reason when blob restore is failed.
- parameters Property Map
- Blob restore request parameters.
- restore
Id String - Id for tracking blob restore request.
- status String
- The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed.
Bypass, BypassArgs
- None
- None
- Logging
- Logging
- Metrics
- Metrics
- Azure
Services - AzureServices
- Bypass
None - None
- Bypass
Logging - Logging
- Bypass
Metrics - Metrics
- Bypass
Azure Services - AzureServices
- None
- None
- Logging
- Logging
- Metrics
- Metrics
- Azure
Services - AzureServices
- None
- None
- Logging
- Logging
- Metrics
- Metrics
- Azure
Services - AzureServices
- NONE
- None
- LOGGING
- Logging
- METRICS
- Metrics
- AZURE_SERVICES
- AzureServices
- "None"
- None
- "Logging"
- Logging
- "Metrics"
- Metrics
- "Azure
Services" - AzureServices
CustomDomain, CustomDomainArgs
- Name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- Use
Sub boolDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- Name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- Use
Sub boolDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name String
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub BooleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub booleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name str
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use_
sub_ booldomain_ name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name String
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub BooleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
CustomDomainResponse, CustomDomainResponseArgs
- Name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- Use
Sub boolDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- Name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- Use
Sub boolDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name String
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub BooleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name string
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub booleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name str
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use_
sub_ booldomain_ name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
- name String
- Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
- use
Sub BooleanDomain Name - Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
DefaultAction, DefaultActionArgs
- Allow
- Allow
- Deny
- Deny
- Default
Action Allow - Allow
- Default
Action Deny - Deny
- Allow
- Allow
- Deny
- Deny
- Allow
- Allow
- Deny
- Deny
- ALLOW
- Allow
- DENY
- Deny
- "Allow"
- Allow
- "Deny"
- Deny
DirectoryServiceOptions, DirectoryServiceOptionsArgs
- None
- None
- AADDS
- AADDS
- AD
- AD
- Directory
Service Options None - None
- Directory
Service Options AADDS - AADDS
- Directory
Service Options AD - AD
- None
- None
- AADDS
- AADDS
- AD
- AD
- None
- None
- AADDS
- AADDS
- AD
- AD
- NONE
- None
- AADDS
- AADDS
- AD
- AD
- "None"
- None
- "AADDS"
- AADDS
- "AD"
- AD
Encryption, EncryptionArgs
- Key
Source string | Pulumi.Azure Native. Storage. Key Source - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- Encryption
Identity Pulumi.Azure Native. Storage. Inputs. Encryption Identity - The identity to be used with service-side encryption at rest.
- Key
Vault Pulumi.Properties Azure Native. Storage. Inputs. Key Vault Properties - Properties provided by key vault.
- Require
Infrastructure boolEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- Services
Pulumi.
Azure Native. Storage. Inputs. Encryption Services - List of services which support encryption.
- Key
Source string | KeySource - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- Encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- Key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- Require
Infrastructure boolEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- Services
Encryption
Services - List of services which support encryption.
- key
Source String | KeySource - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- require
Infrastructure BooleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services - List of services which support encryption.
- key
Source string | KeySource - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties - Properties provided by key vault.
- require
Infrastructure booleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services - List of services which support encryption.
- key_
source str | KeySource - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption_
identity EncryptionIdentity - The identity to be used with service-side encryption at rest.
- key_
vault_ Keyproperties Vault Properties - Properties provided by key vault.
- require_
infrastructure_ boolencryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services - List of services which support encryption.
- key
Source String | "Microsoft.Storage" | "Microsoft. Keyvault" - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity Property Map - The identity to be used with service-side encryption at rest.
- key
Vault Property MapProperties - Properties provided by key vault.
- require
Infrastructure BooleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services Property Map
- List of services which support encryption.
EncryptionIdentity, EncryptionIdentityArgs
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption_
user_ strassigned_ identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
EncryptionIdentityResponse, EncryptionIdentityResponseArgs
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- Encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User stringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption_
user_ strassigned_ identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
- encryption
User StringAssigned Identity - Resource identifier of the UserAssigned identity to be associated with server-side encryption on the storage account.
EncryptionResponse, EncryptionResponseArgs
- Key
Source string - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- Encryption
Identity Pulumi.Azure Native. Storage. Inputs. Encryption Identity Response - The identity to be used with service-side encryption at rest.
- Key
Vault Pulumi.Properties Azure Native. Storage. Inputs. Key Vault Properties Response - Properties provided by key vault.
- Require
Infrastructure boolEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- Services
Pulumi.
Azure Native. Storage. Inputs. Encryption Services Response - List of services which support encryption.
- Key
Source string - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- Encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- Key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- Require
Infrastructure boolEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- Services
Encryption
Services Response - List of services which support encryption.
- key
Source String - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- require
Infrastructure BooleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services Response - List of services which support encryption.
- key
Source string - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key
Vault KeyProperties Vault Properties Response - Properties provided by key vault.
- require
Infrastructure booleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services Response - List of services which support encryption.
- key_
source str - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption_
identity EncryptionIdentity Response - The identity to be used with service-side encryption at rest.
- key_
vault_ Keyproperties Vault Properties Response - Properties provided by key vault.
- require_
infrastructure_ boolencryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services
Encryption
Services Response - List of services which support encryption.
- key
Source String - The encryption keySource (provider). Possible values (case-insensitive): Microsoft.Storage, Microsoft.Keyvault
- encryption
Identity Property Map - The identity to be used with service-side encryption at rest.
- key
Vault Property MapProperties - Properties provided by key vault.
- require
Infrastructure BooleanEncryption - A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
- services Property Map
- List of services which support encryption.
EncryptionService, EncryptionServiceArgs
- Enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- Key
Type string | Pulumi.Azure Native. Storage. Key Type - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- Enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- Key
Type string | KeyType - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- enabled Boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type String | KeyType - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- enabled boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type string | KeyType - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key_
type str | KeyType - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- enabled Boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type String | "Service" | "Account" - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
EncryptionServiceResponse, EncryptionServiceResponseArgs
- Last
Enabled stringTime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- Enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- Key
Type string - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- Last
Enabled stringTime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- Enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- Key
Type string - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- last
Enabled StringTime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- enabled Boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type String - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- last
Enabled stringTime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- enabled boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type string - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- last_
enabled_ strtime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- enabled bool
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key_
type str - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
- last
Enabled StringTime - Gets a rough estimate of the date/time when the encryption was last enabled by the user. Only returned when encryption is enabled. There might be some unencrypted blobs which were written after this time, as it is just a rough estimate.
- enabled Boolean
- A boolean indicating whether or not the service encrypts the data as it is stored.
- key
Type String - Encryption key type to be used for the encryption service. 'Account' key type implies that an account-scoped encryption key will be used. 'Service' key type implies that a default service key is used.
EncryptionServices, EncryptionServicesArgs
- Blob
Pulumi.
Azure Native. Storage. Inputs. Encryption Service - The encryption function of the blob storage service.
- File
Pulumi.
Azure Native. Storage. Inputs. Encryption Service - The encryption function of the file storage service.
- Queue
Pulumi.
Azure Native. Storage. Inputs. Encryption Service - The encryption function of the queue storage service.
- Table
Pulumi.
Azure Native. Storage. Inputs. Encryption Service - The encryption function of the table storage service.
- Blob
Encryption
Service - The encryption function of the blob storage service.
- File
Encryption
Service - The encryption function of the file storage service.
- Queue
Encryption
Service - The encryption function of the queue storage service.
- Table
Encryption
Service - The encryption function of the table storage service.
- blob
Encryption
Service - The encryption function of the blob storage service.
- file
Encryption
Service - The encryption function of the file storage service.
- queue
Encryption
Service - The encryption function of the queue storage service.
- table
Encryption
Service - The encryption function of the table storage service.
- blob
Encryption
Service - The encryption function of the blob storage service.
- file
Encryption
Service - The encryption function of the file storage service.
- queue
Encryption
Service - The encryption function of the queue storage service.
- table
Encryption
Service - The encryption function of the table storage service.
- blob
Encryption
Service - The encryption function of the blob storage service.
- file
Encryption
Service - The encryption function of the file storage service.
- queue
Encryption
Service - The encryption function of the queue storage service.
- table
Encryption
Service - The encryption function of the table storage service.
- blob Property Map
- The encryption function of the blob storage service.
- file Property Map
- The encryption function of the file storage service.
- queue Property Map
- The encryption function of the queue storage service.
- table Property Map
- The encryption function of the table storage service.
EncryptionServicesResponse, EncryptionServicesResponseArgs
- Blob
Pulumi.
Azure Native. Storage. Inputs. Encryption Service Response - The encryption function of the blob storage service.
- File
Pulumi.
Azure Native. Storage. Inputs. Encryption Service Response - The encryption function of the file storage service.
- Queue
Pulumi.
Azure Native. Storage. Inputs. Encryption Service Response - The encryption function of the queue storage service.
- Table
Pulumi.
Azure Native. Storage. Inputs. Encryption Service Response - The encryption function of the table storage service.
- Blob
Encryption
Service Response - The encryption function of the blob storage service.
- File
Encryption
Service Response - The encryption function of the file storage service.
- Queue
Encryption
Service Response - The encryption function of the queue storage service.
- Table
Encryption
Service Response - The encryption function of the table storage service.
- blob
Encryption
Service Response - The encryption function of the blob storage service.
- file
Encryption
Service Response - The encryption function of the file storage service.
- queue
Encryption
Service Response - The encryption function of the queue storage service.
- table
Encryption
Service Response - The encryption function of the table storage service.
- blob
Encryption
Service Response - The encryption function of the blob storage service.
- file
Encryption
Service Response - The encryption function of the file storage service.
- queue
Encryption
Service Response - The encryption function of the queue storage service.
- table
Encryption
Service Response - The encryption function of the table storage service.
- blob
Encryption
Service Response - The encryption function of the blob storage service.
- file
Encryption
Service Response - The encryption function of the file storage service.
- queue
Encryption
Service Response - The encryption function of the queue storage service.
- table
Encryption
Service Response - The encryption function of the table storage service.
- blob Property Map
- The encryption function of the blob storage service.
- file Property Map
- The encryption function of the file storage service.
- queue Property Map
- The encryption function of the queue storage service.
- table Property Map
- The encryption function of the table storage service.
EndpointsResponse, EndpointsResponseArgs
- Blob string
- Gets the blob endpoint.
- Dfs string
- Gets the dfs endpoint.
- File string
- Gets the file endpoint.
- Queue string
- Gets the queue endpoint.
- Table string
- Gets the table endpoint.
- Web string
- Gets the web endpoint.
- Internet
Endpoints Pulumi.Azure Native. Storage. Inputs. Storage Account Internet Endpoints Response - Gets the internet routing storage endpoints
- Microsoft
Endpoints Pulumi.Azure Native. Storage. Inputs. Storage Account Microsoft Endpoints Response - Gets the microsoft routing storage endpoints.
- Blob string
- Gets the blob endpoint.
- Dfs string
- Gets the dfs endpoint.
- File string
- Gets the file endpoint.
- Queue string
- Gets the queue endpoint.
- Table string
- Gets the table endpoint.
- Web string
- Gets the web endpoint.
- Internet
Endpoints StorageAccount Internet Endpoints Response - Gets the internet routing storage endpoints
- Microsoft
Endpoints StorageAccount Microsoft Endpoints Response - Gets the microsoft routing storage endpoints.
- blob String
- Gets the blob endpoint.
- dfs String
- Gets the dfs endpoint.
- file String
- Gets the file endpoint.
- queue String
- Gets the queue endpoint.
- table String
- Gets the table endpoint.
- web String
- Gets the web endpoint.
- internet
Endpoints StorageAccount Internet Endpoints Response - Gets the internet routing storage endpoints
- microsoft
Endpoints StorageAccount Microsoft Endpoints Response - Gets the microsoft routing storage endpoints.
- blob string
- Gets the blob endpoint.
- dfs string
- Gets the dfs endpoint.
- file string
- Gets the file endpoint.
- queue string
- Gets the queue endpoint.
- table string
- Gets the table endpoint.
- web string
- Gets the web endpoint.
- internet
Endpoints StorageAccount Internet Endpoints Response - Gets the internet routing storage endpoints
- microsoft
Endpoints StorageAccount Microsoft Endpoints Response - Gets the microsoft routing storage endpoints.
- blob str
- Gets the blob endpoint.
- dfs str
- Gets the dfs endpoint.
- file str
- Gets the file endpoint.
- queue str
- Gets the queue endpoint.
- table str
- Gets the table endpoint.
- web str
- Gets the web endpoint.
- internet_
endpoints StorageAccount Internet Endpoints Response - Gets the internet routing storage endpoints
- microsoft_
endpoints StorageAccount Microsoft Endpoints Response - Gets the microsoft routing storage endpoints.
- blob String
- Gets the blob endpoint.
- dfs String
- Gets the dfs endpoint.
- file String
- Gets the file endpoint.
- queue String
- Gets the queue endpoint.
- table String
- Gets the table endpoint.
- web String
- Gets the web endpoint.
- internet
Endpoints Property Map - Gets the internet routing storage endpoints
- microsoft
Endpoints Property Map - Gets the microsoft routing storage endpoints.
ExpirationAction, ExpirationActionArgs
- Log
- Log
- Expiration
Action Log - Log
- Log
- Log
- Log
- Log
- LOG
- Log
- "Log"
- Log
ExtendedLocation, ExtendedLocationArgs
- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Storage. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Edge
Zone" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
ExtendedLocationTypes, ExtendedLocationTypesArgs
- Edge
Zone - EdgeZone
- Extended
Location Types Edge Zone - EdgeZone
- Edge
Zone - EdgeZone
- Edge
Zone - EdgeZone
- EDGE_ZONE
- EdgeZone
- "Edge
Zone" - EdgeZone
GeoReplicationStatsResponse, GeoReplicationStatsResponseArgs
- Can
Failover bool - A boolean flag which indicates whether or not account failover is supported for the account.
- Last
Sync stringTime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- Status string
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
- Can
Failover bool - A boolean flag which indicates whether or not account failover is supported for the account.
- Last
Sync stringTime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- Status string
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
- can
Failover Boolean - A boolean flag which indicates whether or not account failover is supported for the account.
- last
Sync StringTime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- status String
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
- can
Failover boolean - A boolean flag which indicates whether or not account failover is supported for the account.
- last
Sync stringTime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- status string
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
- can_
failover bool - A boolean flag which indicates whether or not account failover is supported for the account.
- last_
sync_ strtime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- status str
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
- can
Failover Boolean - A boolean flag which indicates whether or not account failover is supported for the account.
- last
Sync StringTime - All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap.
- status String
- The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.
IPRule, IPRuleArgs
- IPAddress
Or stringRange - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- Action
Pulumi.
Azure Native. Storage. Action - The action of IP ACL rule.
- IPAddress
Or stringRange - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- Action Action
- The action of IP ACL rule.
- i
PAddress StringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action Action
- The action of IP ACL rule.
- i
PAddress stringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action Action
- The action of IP ACL rule.
- i_
p_ straddress_ or_ range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action Action
- The action of IP ACL rule.
- i
PAddress StringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action "Allow"
- The action of IP ACL rule.
IPRuleResponse, IPRuleResponseArgs
- IPAddress
Or stringRange - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- Action string
- The action of IP ACL rule.
- IPAddress
Or stringRange - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- Action string
- The action of IP ACL rule.
- i
PAddress StringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action String
- The action of IP ACL rule.
- i
PAddress stringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action string
- The action of IP ACL rule.
- i_
p_ straddress_ or_ range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action str
- The action of IP ACL rule.
- i
PAddress StringOr Range - Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.
- action String
- The action of IP ACL rule.
Identity, IdentityArgs
- Type
string | Pulumi.
Azure Native. Storage. Identity Type - The identity type.
- User
Assigned Dictionary<string, object>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- Type
string | Identity
Type - The identity type.
- User
Assigned map[string]interface{}Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- type
String | Identity
Type - The identity type.
- user
Assigned Map<String,Object>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- type
string | Identity
Type - The identity type.
- user
Assigned {[key: string]: any}Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- type
str | Identity
Type - The identity type.
- user_
assigned_ Mapping[str, Any]identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- type
String | "None" | "System
Assigned" | "User Assigned" | "System Assigned,User Assigned" - The identity type.
- user
Assigned Map<Any>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
IdentityResponse, IdentityResponseArgs
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned Dictionary<string, Pulumi.Identities Azure Native. Storage. Inputs. User Assigned Identity Response> - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- Principal
Id string - The principal ID of resource identity.
- Tenant
Id string - The tenant ID of resource.
- Type string
- The identity type.
- User
Assigned map[string]UserIdentities Assigned Identity Response - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<String,UserIdentities Assigned Identity Response> - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- principal
Id string - The principal ID of resource identity.
- tenant
Id string - The tenant ID of resource.
- type string
- The identity type.
- user
Assigned {[key: string]: UserIdentities Assigned Identity Response} - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- principal_
id str - The principal ID of resource identity.
- tenant_
id str - The tenant ID of resource.
- type str
- The identity type.
- user_
assigned_ Mapping[str, Useridentities Assigned Identity Response] - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
- principal
Id String - The principal ID of resource identity.
- tenant
Id String - The tenant ID of resource.
- type String
- The identity type.
- user
Assigned Map<Property Map>Identities - Gets or sets a list of key value pairs that describe the set of User Assigned identities that will be used with this storage account. The key is the ARM resource identifier of the identity. Only 1 User Assigned identity is permitted here.
IdentityType, IdentityTypeArgs
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- Identity
Type None - None
- Identity
Type System Assigned - SystemAssigned
- Identity
Type User Assigned - UserAssigned
- Identity
Type_System Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- None
- None
- System
Assigned - SystemAssigned
- User
Assigned - UserAssigned
- System
Assigned_User Assigned - SystemAssigned,UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned,UserAssigned
- "None"
- None
- "System
Assigned" - SystemAssigned
- "User
Assigned" - UserAssigned
- "System
Assigned,User Assigned" - SystemAssigned,UserAssigned
KeyCreationTimeResponse, KeyCreationTimeResponseArgs
KeyPolicy, KeyPolicyArgs
- Key
Expiration intPeriod In Days - The key expiration period in days.
- Key
Expiration intPeriod In Days - The key expiration period in days.
- key
Expiration IntegerPeriod In Days - The key expiration period in days.
- key
Expiration numberPeriod In Days - The key expiration period in days.
- key_
expiration_ intperiod_ in_ days - The key expiration period in days.
- key
Expiration NumberPeriod In Days - The key expiration period in days.
KeyPolicyResponse, KeyPolicyResponseArgs
- Key
Expiration intPeriod In Days - The key expiration period in days.
- Key
Expiration intPeriod In Days - The key expiration period in days.
- key
Expiration IntegerPeriod In Days - The key expiration period in days.
- key
Expiration numberPeriod In Days - The key expiration period in days.
- key_
expiration_ intperiod_ in_ days - The key expiration period in days.
- key
Expiration NumberPeriod In Days - The key expiration period in days.
KeySource, KeySourceArgs
- Microsoft_Storage
- Microsoft.Storage
- Microsoft_Keyvault
- Microsoft.Keyvault
- Key
Source_Microsoft_Storage - Microsoft.Storage
- Key
Source_Microsoft_Keyvault - Microsoft.Keyvault
- Microsoft_Storage
- Microsoft.Storage
- Microsoft_Keyvault
- Microsoft.Keyvault
- Microsoft_Storage
- Microsoft.Storage
- Microsoft_Keyvault
- Microsoft.Keyvault
- MICROSOFT_STORAGE
- Microsoft.Storage
- MICROSOFT_KEYVAULT
- Microsoft.Keyvault
- "Microsoft.
Storage" - Microsoft.Storage
- "Microsoft.
Keyvault" - Microsoft.Keyvault
KeyType, KeyTypeArgs
- Service
- Service
- Account
- Account
- Key
Type Service - Service
- Key
Type Account - Account
- Service
- Service
- Account
- Account
- Service
- Service
- Account
- Account
- SERVICE
- Service
- ACCOUNT
- Account
- "Service"
- Service
- "Account"
- Account
KeyVaultProperties, KeyVaultPropertiesArgs
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
- key
Name string - The name of KeyVault key.
- key
Vault stringUri - The Uri of KeyVault.
- key
Version string - The version of KeyVault key.
- key_
name str - The name of KeyVault key.
- key_
vault_ struri - The Uri of KeyVault.
- key_
version str - The version of KeyVault key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
KeyVaultPropertiesResponse, KeyVaultPropertiesResponseArgs
- Current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- Last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- Current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- Last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- Key
Name string - The name of KeyVault key.
- Key
Vault stringUri - The Uri of KeyVault.
- Key
Version string - The version of KeyVault key.
- current
Versioned StringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key StringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
- current
Versioned stringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key stringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name string - The name of KeyVault key.
- key
Vault stringUri - The Uri of KeyVault.
- key
Version string - The version of KeyVault key.
- current_
versioned_ strkey_ identifier - The object identifier of the current versioned Key Vault Key in use.
- last_
key_ strrotation_ timestamp - Timestamp of last rotation of the Key Vault Key.
- key_
name str - The name of KeyVault key.
- key_
vault_ struri - The Uri of KeyVault.
- key_
version str - The version of KeyVault key.
- current
Versioned StringKey Identifier - The object identifier of the current versioned Key Vault Key in use.
- last
Key StringRotation Timestamp - Timestamp of last rotation of the Key Vault Key.
- key
Name String - The name of KeyVault key.
- key
Vault StringUri - The Uri of KeyVault.
- key
Version String - The version of KeyVault key.
Kind, KindArgs
- Storage
- Storage
- Storage
V2 - StorageV2
- Blob
Storage - BlobStorage
- File
Storage - FileStorage
- Block
Blob Storage - BlockBlobStorage
- Kind
Storage - Storage
- Kind
Storage V2 - StorageV2
- Kind
Blob Storage - BlobStorage
- Kind
File Storage - FileStorage
- Kind
Block Blob Storage - BlockBlobStorage
- Storage
- Storage
- Storage
V2 - StorageV2
- Blob
Storage - BlobStorage
- File
Storage - FileStorage
- Block
Blob Storage - BlockBlobStorage
- Storage
- Storage
- Storage
V2 - StorageV2
- Blob
Storage - BlobStorage
- File
Storage - FileStorage
- Block
Blob Storage - BlockBlobStorage
- STORAGE
- Storage
- STORAGE_V2
- StorageV2
- BLOB_STORAGE
- BlobStorage
- FILE_STORAGE
- FileStorage
- BLOCK_BLOB_STORAGE
- BlockBlobStorage
- "Storage"
- Storage
- "Storage
V2" - StorageV2
- "Blob
Storage" - BlobStorage
- "File
Storage" - FileStorage
- "Block
Blob Storage" - BlockBlobStorage
LargeFileSharesState, LargeFileSharesStateArgs
- Disabled
- Disabled
- Enabled
- Enabled
- Large
File Shares State Disabled - Disabled
- Large
File Shares State Enabled - Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- DISABLED
- Disabled
- ENABLED
- Enabled
- "Disabled"
- Disabled
- "Enabled"
- Enabled
MinimumTlsVersion, MinimumTlsVersionArgs
- TLS1_0
- TLS1_0
- TLS1_1
- TLS1_1
- TLS1_2
- TLS1_2
- Minimum
Tls Version_TLS1_0 - TLS1_0
- Minimum
Tls Version_TLS1_1 - TLS1_1
- Minimum
Tls Version_TLS1_2 - TLS1_2
- TLS1_0
- TLS1_0
- TLS1_1
- TLS1_1
- TLS1_2
- TLS1_2
- TLS1_0
- TLS1_0
- TLS1_1
- TLS1_1
- TLS1_2
- TLS1_2
- TLS1_0
- TLS1_0
- TLS1_1
- TLS1_1
- TLS1_2
- TLS1_2
- "TLS1_0"
- TLS1_0
- "TLS1_1"
- TLS1_1
- "TLS1_2"
- TLS1_2
NetworkRuleSet, NetworkRuleSetArgs
- Default
Action Pulumi.Azure Native. Storage. Default Action - Specifies the default action of allow or deny when no other rules match.
- Bypass
string | Pulumi.
Azure Native. Storage. Bypass - Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- Ip
Rules List<Pulumi.Azure Native. Storage. Inputs. IPRule> - Sets the IP ACL rules
- Resource
Access List<Pulumi.Rules Azure Native. Storage. Inputs. Resource Access Rule> - Sets the resource access rules
- Virtual
Network List<Pulumi.Rules Azure Native. Storage. Inputs. Virtual Network Rule> - Sets the virtual network rules
- Default
Action DefaultAction - Specifies the default action of allow or deny when no other rules match.
- Bypass string | Bypass
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- Ip
Rules []IPRule - Sets the IP ACL rules
- Resource
Access []ResourceRules Access Rule - Sets the resource access rules
- Virtual
Network []VirtualRules Network Rule - Sets the virtual network rules
- default
Action DefaultAction - Specifies the default action of allow or deny when no other rules match.
- bypass String | Bypass
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules List<IPRule> - Sets the IP ACL rules
- resource
Access List<ResourceRules Access Rule> - Sets the resource access rules
- virtual
Network List<VirtualRules Network Rule> - Sets the virtual network rules
- default
Action DefaultAction - Specifies the default action of allow or deny when no other rules match.
- bypass string | Bypass
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules IPRule[] - Sets the IP ACL rules
- resource
Access ResourceRules Access Rule[] - Sets the resource access rules
- virtual
Network VirtualRules Network Rule[] - Sets the virtual network rules
- default_
action DefaultAction - Specifies the default action of allow or deny when no other rules match.
- bypass str | Bypass
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip_
rules Sequence[IPRule] - Sets the IP ACL rules
- resource_
access_ Sequence[Resourcerules Access Rule] - Sets the resource access rules
- virtual_
network_ Sequence[Virtualrules Network Rule] - Sets the virtual network rules
- default
Action "Allow" | "Deny" - Specifies the default action of allow or deny when no other rules match.
- bypass
String | "None" | "Logging" | "Metrics" | "Azure
Services" - Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules List<Property Map> - Sets the IP ACL rules
- resource
Access List<Property Map>Rules - Sets the resource access rules
- virtual
Network List<Property Map>Rules - Sets the virtual network rules
NetworkRuleSetResponse, NetworkRuleSetResponseArgs
- Default
Action string - Specifies the default action of allow or deny when no other rules match.
- Bypass string
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- Ip
Rules List<Pulumi.Azure Native. Storage. Inputs. IPRule Response> - Sets the IP ACL rules
- Resource
Access List<Pulumi.Rules Azure Native. Storage. Inputs. Resource Access Rule Response> - Sets the resource access rules
- Virtual
Network List<Pulumi.Rules Azure Native. Storage. Inputs. Virtual Network Rule Response> - Sets the virtual network rules
- Default
Action string - Specifies the default action of allow or deny when no other rules match.
- Bypass string
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- Ip
Rules []IPRuleResponse - Sets the IP ACL rules
- Resource
Access []ResourceRules Access Rule Response - Sets the resource access rules
- Virtual
Network []VirtualRules Network Rule Response - Sets the virtual network rules
- default
Action String - Specifies the default action of allow or deny when no other rules match.
- bypass String
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules List<IPRuleResponse> - Sets the IP ACL rules
- resource
Access List<ResourceRules Access Rule Response> - Sets the resource access rules
- virtual
Network List<VirtualRules Network Rule Response> - Sets the virtual network rules
- default
Action string - Specifies the default action of allow or deny when no other rules match.
- bypass string
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules IPRuleResponse[] - Sets the IP ACL rules
- resource
Access ResourceRules Access Rule Response[] - Sets the resource access rules
- virtual
Network VirtualRules Network Rule Response[] - Sets the virtual network rules
- default_
action str - Specifies the default action of allow or deny when no other rules match.
- bypass str
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip_
rules Sequence[IPRuleResponse] - Sets the IP ACL rules
- resource_
access_ Sequence[Resourcerules Access Rule Response] - Sets the resource access rules
- virtual_
network_ Sequence[Virtualrules Network Rule Response] - Sets the virtual network rules
- default
Action String - Specifies the default action of allow or deny when no other rules match.
- bypass String
- Specifies whether traffic is bypassed for Logging/Metrics/AzureServices. Possible values are any combination of Logging|Metrics|AzureServices (For example, "Logging, Metrics"), or None to bypass none of those traffics.
- ip
Rules List<Property Map> - Sets the IP ACL rules
- resource
Access List<Property Map>Rules - Sets the resource access rules
- virtual
Network List<Property Map>Rules - Sets the virtual network rules
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link Pulumi.Service Connection State Azure Native. Storage. Inputs. Private Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint Pulumi.Azure Native. Storage. Inputs. Private Endpoint Response - The resource of private end point.
- Id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- Name string
- The name of the resource
- Private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- Provisioning
State string - The provisioning state of the private endpoint connection resource.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id string
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name string
- The name of the resource
- private
Link PrivateService Connection State Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State string - The provisioning state of the private endpoint connection resource.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint PrivateEndpoint Response - The resource of private end point.
- id str
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name str
- The name of the resource
- private_
link_ Privateservice_ connection_ state Link Service Connection State Response - A collection of information about the state of the connection between service consumer and provider.
- provisioning_
state str - The provisioning state of the private endpoint connection resource.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_
endpoint PrivateEndpoint Response - The resource of private end point.
- id String
- Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
- name String
- The name of the resource
- private
Link Property MapService Connection State - A collection of information about the state of the connection between service consumer and provider.
- provisioning
State String - The provisioning state of the private endpoint connection resource.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private
Endpoint Property Map - The resource of private end point.
PrivateEndpointResponse, PrivateEndpointResponseArgs
- Id string
- The ARM identifier for Private Endpoint
- Id string
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
- id string
- The ARM identifier for Private Endpoint
- id str
- The ARM identifier for Private Endpoint
- id String
- The ARM identifier for Private Endpoint
PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs
- Action
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- Action
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- Description string
- The reason for approval/rejection of the connection.
- Status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- action
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- action
Required string - A message indicating if changes on the service provider require any updates on the consumer.
- description string
- The reason for approval/rejection of the connection.
- status string
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- action_
required str - A message indicating if changes on the service provider require any updates on the consumer.
- description str
- The reason for approval/rejection of the connection.
- status str
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
- action
Required String - A message indicating if changes on the service provider require any updates on the consumer.
- description String
- The reason for approval/rejection of the connection.
- status String
- Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
ResourceAccessRule, ResourceAccessRuleArgs
- Resource
Id string - Resource Id
- Tenant
Id string - Tenant Id
- Resource
Id string - Resource Id
- Tenant
Id string - Tenant Id
- resource
Id String - Resource Id
- tenant
Id String - Tenant Id
- resource
Id string - Resource Id
- tenant
Id string - Tenant Id
- resource_
id str - Resource Id
- tenant_
id str - Tenant Id
- resource
Id String - Resource Id
- tenant
Id String - Tenant Id
ResourceAccessRuleResponse, ResourceAccessRuleResponseArgs
- Resource
Id string - Resource Id
- Tenant
Id string - Tenant Id
- Resource
Id string - Resource Id
- Tenant
Id string - Tenant Id
- resource
Id String - Resource Id
- tenant
Id String - Tenant Id
- resource
Id string - Resource Id
- tenant
Id string - Tenant Id
- resource_
id str - Resource Id
- tenant_
id str - Tenant Id
- resource
Id String - Resource Id
- tenant
Id String - Tenant Id
RoutingChoice, RoutingChoiceArgs
- Microsoft
Routing - MicrosoftRouting
- Internet
Routing - InternetRouting
- Routing
Choice Microsoft Routing - MicrosoftRouting
- Routing
Choice Internet Routing - InternetRouting
- Microsoft
Routing - MicrosoftRouting
- Internet
Routing - InternetRouting
- Microsoft
Routing - MicrosoftRouting
- Internet
Routing - InternetRouting
- MICROSOFT_ROUTING
- MicrosoftRouting
- INTERNET_ROUTING
- InternetRouting
- "Microsoft
Routing" - MicrosoftRouting
- "Internet
Routing" - InternetRouting
RoutingPreference, RoutingPreferenceArgs
- Publish
Internet boolEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- Publish
Microsoft boolEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- Routing
Choice string | Pulumi.Azure Native. Storage. Routing Choice - Routing Choice defines the kind of network routing opted by the user.
- Publish
Internet boolEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- Publish
Microsoft boolEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- Routing
Choice string | RoutingChoice - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet BooleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft BooleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice String | RoutingChoice - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet booleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft booleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice string | RoutingChoice - Routing Choice defines the kind of network routing opted by the user.
- publish_
internet_ boolendpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish_
microsoft_ boolendpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing_
choice str | RoutingChoice - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet BooleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft BooleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice String | "MicrosoftRouting" | "Internet Routing" - Routing Choice defines the kind of network routing opted by the user.
RoutingPreferenceResponse, RoutingPreferenceResponseArgs
- Publish
Internet boolEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- Publish
Microsoft boolEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- Routing
Choice string - Routing Choice defines the kind of network routing opted by the user.
- Publish
Internet boolEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- Publish
Microsoft boolEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- Routing
Choice string - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet BooleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft BooleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice String - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet booleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft booleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice string - Routing Choice defines the kind of network routing opted by the user.
- publish_
internet_ boolendpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish_
microsoft_ boolendpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing_
choice str - Routing Choice defines the kind of network routing opted by the user.
- publish
Internet BooleanEndpoints - A boolean flag which indicates whether internet routing storage endpoints are to be published
- publish
Microsoft BooleanEndpoints - A boolean flag which indicates whether microsoft routing storage endpoints are to be published
- routing
Choice String - Routing Choice defines the kind of network routing opted by the user.
SasPolicy, SasPolicyArgs
- Expiration
Action string | Pulumi.Azure Native. Storage. Expiration Action - The SAS expiration action. Can only be Log.
- Sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- Expiration
Action string | ExpirationAction - The SAS expiration action. Can only be Log.
- Sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action String | ExpirationAction - The SAS expiration action. Can only be Log.
- sas
Expiration StringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action string | ExpirationAction - The SAS expiration action. Can only be Log.
- sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration_
action str | ExpirationAction - The SAS expiration action. Can only be Log.
- sas_
expiration_ strperiod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action String | "Log" - The SAS expiration action. Can only be Log.
- sas
Expiration StringPeriod - The SAS expiration period, DD.HH:MM:SS.
SasPolicyResponse, SasPolicyResponseArgs
- Expiration
Action string - The SAS expiration action. Can only be Log.
- Sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- Expiration
Action string - The SAS expiration action. Can only be Log.
- Sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action String - The SAS expiration action. Can only be Log.
- sas
Expiration StringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action string - The SAS expiration action. Can only be Log.
- sas
Expiration stringPeriod - The SAS expiration period, DD.HH:MM:SS.
- expiration_
action str - The SAS expiration action. Can only be Log.
- sas_
expiration_ strperiod - The SAS expiration period, DD.HH:MM:SS.
- expiration
Action String - The SAS expiration action. Can only be Log.
- sas
Expiration StringPeriod - The SAS expiration period, DD.HH:MM:SS.
Sku, SkuArgs
- Name
string | Pulumi.
Azure Native. Storage. Sku Name - The SKU name. Required for account creation; optional for update. Note that in older versions, SKU name was called accountType.
- name String | "Standard_LRS" | "Standard_GRS" | "Standard_RAGRS" | "Standard_ZRS" | "Premium_LRS" | "Premium_ZRS" | "Standard_GZRS" | "Standard_RAGZRS"
- The SKU name. Required for account creation; optional for update. Note that in older versions, SKU name was called accountType.
SkuName, SkuNameArgs
- Standard_LRS
- Standard_LRS
- Standard_GRS
- Standard_GRS
- Standard_RAGRS
- Standard_RAGRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- Premium_ZRS
- Premium_ZRS
- Standard_GZRS
- Standard_GZRS
- Standard_RAGZRS
- Standard_RAGZRS
- Sku
Name_Standard_LRS - Standard_LRS
- Sku
Name_Standard_GRS - Standard_GRS
- Sku
Name_Standard_RAGRS - Standard_RAGRS
- Sku
Name_Standard_ZRS - Standard_ZRS
- Sku
Name_Premium_LRS - Premium_LRS
- Sku
Name_Premium_ZRS - Premium_ZRS
- Sku
Name_Standard_GZRS - Standard_GZRS
- Sku
Name_Standard_RAGZRS - Standard_RAGZRS
- Standard_LRS
- Standard_LRS
- Standard_GRS
- Standard_GRS
- Standard_RAGRS
- Standard_RAGRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- Premium_ZRS
- Premium_ZRS
- Standard_GZRS
- Standard_GZRS
- Standard_RAGZRS
- Standard_RAGZRS
- Standard_LRS
- Standard_LRS
- Standard_GRS
- Standard_GRS
- Standard_RAGRS
- Standard_RAGRS
- Standard_ZRS
- Standard_ZRS
- Premium_LRS
- Premium_LRS
- Premium_ZRS
- Premium_ZRS
- Standard_GZRS
- Standard_GZRS
- Standard_RAGZRS
- Standard_RAGZRS
- STANDARD_LRS
- Standard_LRS
- STANDARD_GRS
- Standard_GRS
- STANDARD_RAGRS
- Standard_RAGRS
- STANDARD_ZRS
- Standard_ZRS
- PREMIUM_LRS
- Premium_LRS
- PREMIUM_ZRS
- Premium_ZRS
- STANDARD_GZRS
- Standard_GZRS
- STANDARD_RAGZRS
- Standard_RAGZRS
- "Standard_LRS"
- Standard_LRS
- "Standard_GRS"
- Standard_GRS
- "Standard_RAGRS"
- Standard_RAGRS
- "Standard_ZRS"
- Standard_ZRS
- "Premium_LRS"
- Premium_LRS
- "Premium_ZRS"
- Premium_ZRS
- "Standard_GZRS"
- Standard_GZRS
- "Standard_RAGZRS"
- Standard_RAGZRS
SkuResponse, SkuResponseArgs
State, StateArgs
- Provisioning
- provisioning
- Deprovisioning
- deprovisioning
- Succeeded
- succeeded
- Failed
- failed
- Network
Source Deleted - networkSourceDeleted
- State
Provisioning - provisioning
- State
Deprovisioning - deprovisioning
- State
Succeeded - succeeded
- State
Failed - failed
- State
Network Source Deleted - networkSourceDeleted
- Provisioning
- provisioning
- Deprovisioning
- deprovisioning
- Succeeded
- succeeded
- Failed
- failed
- Network
Source Deleted - networkSourceDeleted
- Provisioning
- provisioning
- Deprovisioning
- deprovisioning
- Succeeded
- succeeded
- Failed
- failed
- Network
Source Deleted - networkSourceDeleted
- PROVISIONING
- provisioning
- DEPROVISIONING
- deprovisioning
- SUCCEEDED
- succeeded
- FAILED
- failed
- NETWORK_SOURCE_DELETED
- networkSourceDeleted
- "provisioning"
- provisioning
- "deprovisioning"
- deprovisioning
- "succeeded"
- succeeded
- "failed"
- failed
- "network
Source Deleted" - networkSourceDeleted
StorageAccountInternetEndpointsResponse, StorageAccountInternetEndpointsResponseArgs
StorageAccountMicrosoftEndpointsResponse, StorageAccountMicrosoftEndpointsResponseArgs
UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs
- Client
Id string - The client ID of the identity.
- Principal
Id string - The principal ID of the identity.
- Client
Id string - The client ID of the identity.
- Principal
Id string - The principal ID of the identity.
- client
Id String - The client ID of the identity.
- principal
Id String - The principal ID of the identity.
- client
Id string - The client ID of the identity.
- principal
Id string - The principal ID of the identity.
- client_
id str - The client ID of the identity.
- principal_
id str - The principal ID of the identity.
- client
Id String - The client ID of the identity.
- principal
Id String - The principal ID of the identity.
VirtualNetworkRule, VirtualNetworkRuleArgs
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action
Pulumi.
Azure Native. Storage. Action - The action of virtual network rule.
- State
string | Pulumi.
Azure Native. Storage. State - Gets the state of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action Action
- The action of virtual network rule.
- State string | State
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- state String | State
- Gets the state of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- state string | State
- Gets the state of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action Action
- The action of virtual network rule.
- state str | State
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action "Allow"
- The action of virtual network rule.
- state
String | "provisioning" | "deprovisioning" | "succeeded" | "failed" | "network
Source Deleted" - Gets the state of virtual network rule.
VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- State string
- Gets the state of virtual network rule.
- Virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- Action string
- The action of virtual network rule.
- State string
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
- state String
- Gets the state of virtual network rule.
- virtual
Network stringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action string
- The action of virtual network rule.
- state string
- Gets the state of virtual network rule.
- virtual_
network_ strresource_ id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action str
- The action of virtual network rule.
- state str
- Gets the state of virtual network rule.
- virtual
Network StringResource Id - Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.
- action String
- The action of virtual network rule.
- state String
- Gets the state of virtual network rule.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:storage:StorageAccount sto4445 /subscriptions/{subscription-id}/resourceGroups/res9101/providers/Microsoft.Storage/storageAccounts/sto4445
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0