1. Packages
  2. Azure Native
  3. API Docs
  4. elasticsan
  5. VolumeGroup
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

azure-native.elasticsan.VolumeGroup

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi

    Response for Volume Group request. Azure REST API version: 2021-11-20-preview. Prior API version in Azure Native 1.x: 2021-11-20-preview

    Example Usage

    VolumeGroups_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
        {
            ElasticSanName = "ti7q-k952-1qB3J_5",
            Encryption = "EncryptionAtRestWithPlatformKey",
            NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
            {
                VirtualNetworkRules = new[]
                {
                    new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
                    {
                        Action = AzureNative.ElasticSan.Action.Allow,
                        VirtualNetworkResourceId = "aaaaaaaaaaaaaaaa",
                    },
                },
            },
            ProtocolType = "Iscsi",
            ResourceGroupName = "rgelasticsan",
            Tags = 
            {
                { "key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa" },
            },
            VolumeGroupName = "u_5I_1j4t3",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
    			ElasticSanName: pulumi.String("ti7q-k952-1qB3J_5"),
    			Encryption:     pulumi.String("EncryptionAtRestWithPlatformKey"),
    			NetworkAcls: elasticsan.NetworkRuleSetResponse{
    				VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
    					&elasticsan.VirtualNetworkRuleArgs{
    						Action:                   elasticsan.ActionAllow,
    						VirtualNetworkResourceId: pulumi.String("aaaaaaaaaaaaaaaa"),
    					},
    				},
    			},
    			ProtocolType:      pulumi.String("Iscsi"),
    			ResourceGroupName: pulumi.String("rgelasticsan"),
    			Tags: pulumi.StringMap{
    				"key5933": pulumi.String("aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
    			},
    			VolumeGroupName: pulumi.String("u_5I_1j4t3"),
    		})
    		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.elasticsan.VolumeGroup;
    import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
    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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()        
                .elasticSanName("ti7q-k952-1qB3J_5")
                .encryption("EncryptionAtRestWithPlatformKey")
                .networkAcls(Map.of("virtualNetworkRules", Map.ofEntries(
                    Map.entry("action", "Allow"),
                    Map.entry("virtualNetworkResourceId", "aaaaaaaaaaaaaaaa")
                )))
                .protocolType("Iscsi")
                .resourceGroupName("rgelasticsan")
                .tags(Map.of("key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
                .volumeGroupName("u_5I_1j4t3")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
        elastic_san_name="ti7q-k952-1qB3J_5",
        encryption="EncryptionAtRestWithPlatformKey",
        network_acls=azure_native.elasticsan.NetworkRuleSetResponseArgs(
            virtual_network_rules=[azure_native.elasticsan.VirtualNetworkRuleArgs(
                action=azure_native.elasticsan.Action.ALLOW,
                virtual_network_resource_id="aaaaaaaaaaaaaaaa",
            )],
        ),
        protocol_type="Iscsi",
        resource_group_name="rgelasticsan",
        tags={
            "key5933": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
        },
        volume_group_name="u_5I_1j4t3")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
        elasticSanName: "ti7q-k952-1qB3J_5",
        encryption: "EncryptionAtRestWithPlatformKey",
        networkAcls: {
            virtualNetworkRules: [{
                action: azure_native.elasticsan.Action.Allow,
                virtualNetworkResourceId: "aaaaaaaaaaaaaaaa",
            }],
        },
        protocolType: "Iscsi",
        resourceGroupName: "rgelasticsan",
        tags: {
            key5933: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
        },
        volumeGroupName: "u_5I_1j4t3",
    });
    
    resources:
      volumeGroup:
        type: azure-native:elasticsan:VolumeGroup
        properties:
          elasticSanName: ti7q-k952-1qB3J_5
          encryption: EncryptionAtRestWithPlatformKey
          networkAcls:
            virtualNetworkRules:
              - action: Allow
                virtualNetworkResourceId: aaaaaaaaaaaaaaaa
          protocolType: Iscsi
          resourceGroupName: rgelasticsan
          tags:
            key5933: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa
          volumeGroupName: u_5I_1j4t3
    

    VolumeGroups_Create_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
        {
            ElasticSanName = "ti7q-k952-1qB3J_5",
            ResourceGroupName = "rgelasticsan",
            VolumeGroupName = "u_5I_1j4t3",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
    			ElasticSanName:    pulumi.String("ti7q-k952-1qB3J_5"),
    			ResourceGroupName: pulumi.String("rgelasticsan"),
    			VolumeGroupName:   pulumi.String("u_5I_1j4t3"),
    		})
    		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.elasticsan.VolumeGroup;
    import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
    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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()        
                .elasticSanName("ti7q-k952-1qB3J_5")
                .resourceGroupName("rgelasticsan")
                .volumeGroupName("u_5I_1j4t3")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
        elastic_san_name="ti7q-k952-1qB3J_5",
        resource_group_name="rgelasticsan",
        volume_group_name="u_5I_1j4t3")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const volumeGroup = new azure_native.elasticsan.VolumeGroup("volumeGroup", {
        elasticSanName: "ti7q-k952-1qB3J_5",
        resourceGroupName: "rgelasticsan",
        volumeGroupName: "u_5I_1j4t3",
    });
    
    resources:
      volumeGroup:
        type: azure-native:elasticsan:VolumeGroup
        properties:
          elasticSanName: ti7q-k952-1qB3J_5
          resourceGroupName: rgelasticsan
          volumeGroupName: u_5I_1j4t3
    

    Create VolumeGroup Resource

    new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
    @overload
    def VolumeGroup(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    elastic_san_name: Optional[str] = None,
                    encryption: Optional[Union[str, EncryptionType]] = None,
                    network_acls: Optional[NetworkRuleSetArgs] = None,
                    protocol_type: Optional[Union[str, StorageTargetType]] = None,
                    resource_group_name: Optional[str] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    volume_group_name: Optional[str] = None)
    @overload
    def VolumeGroup(resource_name: str,
                    args: VolumeGroupArgs,
                    opts: Optional[ResourceOptions] = None)
    func NewVolumeGroup(ctx *Context, name string, args VolumeGroupArgs, opts ...ResourceOption) (*VolumeGroup, error)
    public VolumeGroup(string name, VolumeGroupArgs args, CustomResourceOptions? opts = null)
    public VolumeGroup(String name, VolumeGroupArgs args)
    public VolumeGroup(String name, VolumeGroupArgs args, CustomResourceOptions options)
    
    type: azure-native:elasticsan:VolumeGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args VolumeGroupArgs
    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 VolumeGroupArgs
    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 VolumeGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VolumeGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VolumeGroupArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    VolumeGroup 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 VolumeGroup resource accepts the following input properties:

    ElasticSanName string

    The name of the ElasticSan.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    Encryption string | Pulumi.AzureNative.ElasticSan.EncryptionType

    Type of encryption

    NetworkAcls Pulumi.AzureNative.ElasticSan.Inputs.NetworkRuleSet

    A collection of rules governing the accessibility from specific network locations.

    ProtocolType string | Pulumi.AzureNative.ElasticSan.StorageTargetType

    Type of storage target

    Tags Dictionary<string, string>

    Azure resource tags.

    VolumeGroupName string

    The name of the VolumeGroup.

    ElasticSanName string

    The name of the ElasticSan.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    Encryption string | EncryptionType

    Type of encryption

    NetworkAcls NetworkRuleSetArgs

    A collection of rules governing the accessibility from specific network locations.

    ProtocolType string | StorageTargetType

    Type of storage target

    Tags map[string]string

    Azure resource tags.

    VolumeGroupName string

    The name of the VolumeGroup.

    elasticSanName String

    The name of the ElasticSan.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    encryption String | EncryptionType

    Type of encryption

    networkAcls NetworkRuleSet

    A collection of rules governing the accessibility from specific network locations.

    protocolType String | StorageTargetType

    Type of storage target

    tags Map<String,String>

    Azure resource tags.

    volumeGroupName String

    The name of the VolumeGroup.

    elasticSanName string

    The name of the ElasticSan.

    resourceGroupName string

    The name of the resource group. The name is case insensitive.

    encryption string | EncryptionType

    Type of encryption

    networkAcls NetworkRuleSet

    A collection of rules governing the accessibility from specific network locations.

    protocolType string | StorageTargetType

    Type of storage target

    tags {[key: string]: string}

    Azure resource tags.

    volumeGroupName string

    The name of the VolumeGroup.

    elastic_san_name str

    The name of the ElasticSan.

    resource_group_name str

    The name of the resource group. The name is case insensitive.

    encryption str | EncryptionType

    Type of encryption

    network_acls NetworkRuleSetArgs

    A collection of rules governing the accessibility from specific network locations.

    protocol_type str | StorageTargetType

    Type of storage target

    tags Mapping[str, str]

    Azure resource tags.

    volume_group_name str

    The name of the VolumeGroup.

    elasticSanName String

    The name of the ElasticSan.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    encryption String | "EncryptionAtRestWithPlatformKey"

    Type of encryption

    networkAcls Property Map

    A collection of rules governing the accessibility from specific network locations.

    protocolType String | "Iscsi" | "None"

    Type of storage target

    tags Map<String>

    Azure resource tags.

    volumeGroupName String

    The name of the VolumeGroup.

    Outputs

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

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Azure resource name.

    ProvisioningState string

    State of the operation on the resource.

    SystemData Pulumi.AzureNative.ElasticSan.Outputs.SystemDataResponse

    Resource metadata required by ARM RPC

    Type string

    Azure resource type.

    Id string

    The provider-assigned unique ID for this managed resource.

    Name string

    Azure resource name.

    ProvisioningState string

    State of the operation on the resource.

    SystemData SystemDataResponse

    Resource metadata required by ARM RPC

    Type string

    Azure resource type.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Azure resource name.

    provisioningState String

    State of the operation on the resource.

    systemData SystemDataResponse

    Resource metadata required by ARM RPC

    type String

    Azure resource type.

    id string

    The provider-assigned unique ID for this managed resource.

    name string

    Azure resource name.

    provisioningState string

    State of the operation on the resource.

    systemData SystemDataResponse

    Resource metadata required by ARM RPC

    type string

    Azure resource type.

    id str

    The provider-assigned unique ID for this managed resource.

    name str

    Azure resource name.

    provisioning_state str

    State of the operation on the resource.

    system_data SystemDataResponse

    Resource metadata required by ARM RPC

    type str

    Azure resource type.

    id String

    The provider-assigned unique ID for this managed resource.

    name String

    Azure resource name.

    provisioningState String

    State of the operation on the resource.

    systemData Property Map

    Resource metadata required by ARM RPC

    type String

    Azure resource type.

    Supporting Types

    Action, ActionArgs

    Allow
    Allow
    ActionAllow
    Allow
    Allow
    Allow
    Allow
    Allow
    ALLOW
    Allow
    "Allow"
    Allow

    EncryptionType, EncryptionTypeArgs

    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    EncryptionTypeEncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    EncryptionAtRestWithPlatformKey
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    "EncryptionAtRestWithPlatformKey"
    EncryptionAtRestWithPlatformKey

    Volume is encrypted at rest with Platform managed key. It is the default encryption type.

    NetworkRuleSet, NetworkRuleSetArgs

    VirtualNetworkRules []VirtualNetworkRule

    The list of virtual network rules.

    virtualNetworkRules List<VirtualNetworkRule>

    The list of virtual network rules.

    virtualNetworkRules VirtualNetworkRule[]

    The list of virtual network rules.

    virtual_network_rules Sequence[VirtualNetworkRule]

    The list of virtual network rules.

    virtualNetworkRules List<Property Map>

    The list of virtual network rules.

    NetworkRuleSetResponse, NetworkRuleSetResponseArgs

    VirtualNetworkRules []VirtualNetworkRuleResponse

    The list of virtual network rules.

    virtualNetworkRules List<VirtualNetworkRuleResponse>

    The list of virtual network rules.

    virtualNetworkRules VirtualNetworkRuleResponse[]

    The list of virtual network rules.

    virtualNetworkRules List<Property Map>

    The list of virtual network rules.

    StorageTargetType, StorageTargetTypeArgs

    Iscsi
    Iscsi
    None
    None
    StorageTargetTypeIscsi
    Iscsi
    StorageTargetTypeNone
    None
    Iscsi
    Iscsi
    None
    None
    Iscsi
    Iscsi
    None
    None
    ISCSI
    Iscsi
    NONE
    None
    "Iscsi"
    Iscsi
    "None"
    None

    SystemDataResponse, SystemDataResponseArgs

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    CreatedAt string

    The timestamp of resource creation (UTC).

    CreatedBy string

    The identity that created the resource.

    CreatedByType string

    The type of identity that created the resource.

    LastModifiedAt string

    The timestamp of resource last modification (UTC)

    LastModifiedBy string

    The identity that last modified the resource.

    LastModifiedByType string

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    createdAt string

    The timestamp of resource creation (UTC).

    createdBy string

    The identity that created the resource.

    createdByType string

    The type of identity that created the resource.

    lastModifiedAt string

    The timestamp of resource last modification (UTC)

    lastModifiedBy string

    The identity that last modified the resource.

    lastModifiedByType string

    The type of identity that last modified the resource.

    created_at str

    The timestamp of resource creation (UTC).

    created_by str

    The identity that created the resource.

    created_by_type str

    The type of identity that created the resource.

    last_modified_at str

    The timestamp of resource last modification (UTC)

    last_modified_by str

    The identity that last modified the resource.

    last_modified_by_type str

    The type of identity that last modified the resource.

    createdAt String

    The timestamp of resource creation (UTC).

    createdBy String

    The identity that created the resource.

    createdByType String

    The type of identity that created the resource.

    lastModifiedAt String

    The timestamp of resource last modification (UTC)

    lastModifiedBy String

    The identity that last modified the resource.

    lastModifiedByType String

    The type of identity that last modified the resource.

    VirtualNetworkRule, VirtualNetworkRuleArgs

    VirtualNetworkResourceId string

    Resource ID of a subnet, for example: /subscriptions/{subscriptionId}/resourceGroups/{groupName}/providers/Microsoft.Network/virtualNetworks/{vnetName}/subnets/{subnetName}.

    Action Pulumi.AzureNative.ElasticSan.Action

    The action of virtual network rule.

    VirtualNetworkResourceId string

    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.

    virtualNetworkResourceId String

    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.

    virtualNetworkResourceId string

    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.

    virtual_network_resource_id str

    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.

    virtualNetworkResourceId String

    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.

    VirtualNetworkRuleResponse, VirtualNetworkRuleResponseArgs

    State string

    Gets the state of virtual network rule.

    VirtualNetworkResourceId string

    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.

    VirtualNetworkResourceId string

    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.

    virtualNetworkResourceId String

    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.

    virtualNetworkResourceId string

    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 str

    Gets the state of virtual network rule.

    virtual_network_resource_id str

    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 String

    Gets the state of virtual network rule.

    virtualNetworkResourceId String

    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.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:elasticsan:VolumeGroup aaaaaaaaaaaaaaaaaaaaaa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.9.0 published on Wednesday, Sep 27, 2023 by Pulumi