1. Packages
  2. Azure Native v2
  3. API Docs
  4. elasticsan
  5. VolumeGroup
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.elasticsan.VolumeGroup

Explore with Pulumi AI

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.

Other available API versions: 2022-12-01-preview, 2023-01-01, 2024-05-01, 2024-06-01-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 = AzureNative.ElasticSan.EncryptionType.EncryptionAtRestWithPlatformKey,
        NetworkAcls = new AzureNative.ElasticSan.Inputs.NetworkRuleSetArgs
        {
            VirtualNetworkRules = new[]
            {
                new AzureNative.ElasticSan.Inputs.VirtualNetworkRuleArgs
                {
                    Action = AzureNative.ElasticSan.Action.Allow,
                    VirtualNetworkResourceId = "aaaaaaaaaaaaaaaa",
                },
            },
        },
        ProtocolType = AzureNative.ElasticSan.StorageTargetType.Iscsi,
        ResourceGroupName = "rgelasticsan",
        Tags = 
        {
            { "key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa" },
        },
        VolumeGroupName = "u_5I_1j4t3",
    });

});
Copy
package main

import (
	elasticsan "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(elasticsan.EncryptionTypeEncryptionAtRestWithPlatformKey),
			NetworkAcls: &elasticsan.NetworkRuleSetArgs{
				VirtualNetworkRules: elasticsan.VirtualNetworkRuleArray{
					&elasticsan.VirtualNetworkRuleArgs{
						Action:                   elasticsan.ActionAllow,
						VirtualNetworkResourceId: pulumi.String("aaaaaaaaaaaaaaaa"),
					},
				},
			},
			ProtocolType:      pulumi.String(elasticsan.StorageTargetTypeIscsi),
			ResourceGroupName: pulumi.String("rgelasticsan"),
			Tags: pulumi.StringMap{
				"key5933": pulumi.String("aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"),
			},
			VolumeGroupName: pulumi.String("u_5I_1j4t3"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 com.pulumi.azurenative.elasticsan.inputs.NetworkRuleSetArgs;
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(NetworkRuleSetArgs.builder()
                .virtualNetworkRules(VirtualNetworkRuleArgs.builder()
                    .action("Allow")
                    .virtualNetworkResourceId("aaaaaaaaaaaaaaaa")
                    .build())
                .build())
            .protocolType("Iscsi")
            .resourceGroupName("rgelasticsan")
            .tags(Map.of("key5933", "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa"))
            .volumeGroupName("u_5I_1j4t3")
            .build());

    }
}
Copy
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: azure_native.elasticsan.EncryptionType.EncryptionAtRestWithPlatformKey,
    networkAcls: {
        virtualNetworkRules: [{
            action: azure_native.elasticsan.Action.Allow,
            virtualNetworkResourceId: "aaaaaaaaaaaaaaaa",
        }],
    },
    protocolType: azure_native.elasticsan.StorageTargetType.Iscsi,
    resourceGroupName: "rgelasticsan",
    tags: {
        key5933: "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    },
    volumeGroupName: "u_5I_1j4t3",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

volume_group = azure_native.elasticsan.VolumeGroup("volumeGroup",
    elastic_san_name="ti7q-k952-1qB3J_5",
    encryption=azure_native.elasticsan.EncryptionType.ENCRYPTION_AT_REST_WITH_PLATFORM_KEY,
    network_acls={
        "virtual_network_rules": [{
            "action": azure_native.elasticsan.Action.ALLOW,
            "virtual_network_resource_id": "aaaaaaaaaaaaaaaa",
        }],
    },
    protocol_type=azure_native.elasticsan.StorageTargetType.ISCSI,
    resource_group_name="rgelasticsan",
    tags={
        "key5933": "aaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    },
    volume_group_name="u_5I_1j4t3")
Copy
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
Copy

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",
    });

});
Copy
package main

import (
	elasticsan "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
	})
}
Copy
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());

    }
}
Copy
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",
});
Copy
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")
Copy
resources:
  volumeGroup:
    type: azure-native:elasticsan:VolumeGroup
    properties:
      elasticSanName: ti7q-k952-1qB3J_5
      resourceGroupName: rgelasticsan
      volumeGroupName: u_5I_1j4t3
Copy

Create VolumeGroup Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new VolumeGroup(name: string, args: VolumeGroupArgs, opts?: CustomResourceOptions);
@overload
def VolumeGroup(resource_name: str,
                args: VolumeGroupArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def VolumeGroup(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                elastic_san_name: Optional[str] = None,
                resource_group_name: Optional[str] = None,
                encryption: Optional[Union[str, EncryptionType]] = None,
                network_acls: Optional[NetworkRuleSetArgs] = None,
                protocol_type: Optional[Union[str, StorageTargetType]] = None,
                tags: Optional[Mapping[str, str]] = None,
                volume_group_name: Optional[str] = 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.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VolumeGroupArgs
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 volumeGroupResource = new AzureNative.Elasticsan.VolumeGroup("volumeGroupResource", new()
{
    ElasticSanName = "string",
    ResourceGroupName = "string",
    Encryption = "string",
    NetworkAcls = 
    {
        { "virtualNetworkRules", new[]
        {
            
            {
                { "virtualNetworkResourceId", "string" },
                { "action", "Allow" },
            },
        } },
    },
    ProtocolType = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VolumeGroupName = "string",
});
Copy
example, err := elasticsan.NewVolumeGroup(ctx, "volumeGroupResource", &elasticsan.VolumeGroupArgs{
	ElasticSanName:    "string",
	ResourceGroupName: "string",
	Encryption:        "string",
	NetworkAcls: map[string]interface{}{
		"virtualNetworkRules": []map[string]interface{}{
			map[string]interface{}{
				"virtualNetworkResourceId": "string",
				"action":                   "Allow",
			},
		},
	},
	ProtocolType: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
	VolumeGroupName: "string",
})
Copy
var volumeGroupResource = new com.pulumi.azurenative.elasticsan.VolumeGroup("volumeGroupResource", com.pulumi.azurenative.elasticsan.VolumeGroupArgs.builder()
    .elasticSanName("string")
    .resourceGroupName("string")
    .encryption("string")
    .networkAcls(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .protocolType("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .volumeGroupName("string")
    .build());
Copy
volume_group_resource = azure_native.elasticsan.VolumeGroup("volumeGroupResource",
    elastic_san_name=string,
    resource_group_name=string,
    encryption=string,
    network_acls={
        virtualNetworkRules: [{
            virtualNetworkResourceId: string,
            action: Allow,
        }],
    },
    protocol_type=string,
    tags={
        string: string,
    },
    volume_group_name=string)
Copy
const volumeGroupResource = new azure_native.elasticsan.VolumeGroup("volumeGroupResource", {
    elasticSanName: "string",
    resourceGroupName: "string",
    encryption: "string",
    networkAcls: {
        virtualNetworkRules: [{
            virtualNetworkResourceId: "string",
            action: "Allow",
        }],
    },
    protocolType: "string",
    tags: {
        string: "string",
    },
    volumeGroupName: "string",
});
Copy
type: azure-native:elasticsan:VolumeGroup
properties:
    elasticSanName: string
    encryption: string
    networkAcls:
        virtualNetworkRules:
            - action: Allow
              virtualNetworkResourceId: string
    protocolType: string
    resourceGroupName: string
    tags:
        string: string
    volumeGroupName: string
Copy

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VolumeGroup resource accepts the following input properties:

ElasticSanName
This property is required.
Changes to this property will trigger replacement.
string
The name of the ElasticSan.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Encryption string | Pulumi.AzureNative.ElasticSan.EncryptionType
Type of encryption
NetworkAcls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the VolumeGroup.
ElasticSanName
This property is required.
Changes to this property will trigger replacement.
string
The name of the ElasticSan.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Encryption string | EncryptionType
Type of encryption
NetworkAcls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the VolumeGroup.
elasticSanName
This property is required.
Changes to this property will trigger replacement.
String
The name of the ElasticSan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
encryption String | EncryptionType
Type of encryption
networkAcls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. String
The name of the VolumeGroup.
elasticSanName
This property is required.
Changes to this property will trigger replacement.
string
The name of the ElasticSan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
encryption string | EncryptionType
Type of encryption
networkAcls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. string
The name of the VolumeGroup.
elastic_san_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the ElasticSan.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
encryption str | EncryptionType
Type of encryption
network_acls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. str
The name of the VolumeGroup.
elasticSanName
This property is required.
Changes to this property will trigger replacement.
String
The name of the ElasticSan.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
encryption String | "EncryptionAtRestWithPlatformKey"
Type of encryption
networkAcls Changes to this property will trigger replacement. 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 Changes to this property will trigger replacement. 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
EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
EncryptionTypeEncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
EncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
EncryptionAtRestWithPlatformKey
EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
ENCRYPTION_AT_REST_WITH_PLATFORM_KEY
EncryptionAtRestWithPlatformKeyVolume is encrypted at rest with Platform managed key. It is the default encryption type.
"EncryptionAtRestWithPlatformKey"
EncryptionAtRestWithPlatformKeyVolume 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. 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 This property is required. string
Gets the state of virtual network rule.
VirtualNetworkResourceId This property is required. 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 This property is required. string
Gets the state of virtual network rule.
VirtualNetworkResourceId This property is required. 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 This property is required. String
Gets the state of virtual network rule.
virtualNetworkResourceId This property is required. 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 This property is required. string
Gets the state of virtual network rule.
virtualNetworkResourceId This property is required. 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 This property is required. str
Gets the state of virtual network rule.
virtual_network_resource_id This property is required. 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 This property is required. String
Gets the state of virtual network rule.
virtualNetworkResourceId This property is required. 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} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0