1. Packages
  2. Azure Native v2
  3. API Docs
  4. elasticsan
  5. Volume
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.Volume

Explore with Pulumi AI

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

Response for Volume 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

Volumes_Create_MaximumSet_Gen

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var volume = new AzureNative.ElasticSan.Volume("volume", new()
    {
        CreationData = new AzureNative.ElasticSan.Inputs.SourceCreationDataArgs
        {
            CreateSource = AzureNative.ElasticSan.VolumeCreateOption.None,
            SourceUri = "aaaaaa",
        },
        ElasticSanName = "ti7q-k952-1qB3J_5",
        ResourceGroupName = "rgelasticsan",
        SizeGiB = 22,
        Tags = 
        {
            { "key7423", "aaaa" },
        },
        VolumeGroupName = "u_5I_1j4t3",
        VolumeName = "9132y",
    });

});
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.NewVolume(ctx, "volume", &elasticsan.VolumeArgs{
			CreationData: &elasticsan.SourceCreationDataArgs{
				CreateSource: elasticsan.VolumeCreateOptionNone,
				SourceUri:    pulumi.String("aaaaaa"),
			},
			ElasticSanName:    pulumi.String("ti7q-k952-1qB3J_5"),
			ResourceGroupName: pulumi.String("rgelasticsan"),
			SizeGiB:           pulumi.Float64(22),
			Tags: pulumi.StringMap{
				"key7423": pulumi.String("aaaa"),
			},
			VolumeGroupName: pulumi.String("u_5I_1j4t3"),
			VolumeName:      pulumi.String("9132y"),
		})
		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.Volume;
import com.pulumi.azurenative.elasticsan.VolumeArgs;
import com.pulumi.azurenative.elasticsan.inputs.SourceCreationDataArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
            .creationData(SourceCreationDataArgs.builder()
                .createSource("None")
                .sourceUri("aaaaaa")
                .build())
            .elasticSanName("ti7q-k952-1qB3J_5")
            .resourceGroupName("rgelasticsan")
            .sizeGiB(22)
            .tags(Map.of("key7423", "aaaa"))
            .volumeGroupName("u_5I_1j4t3")
            .volumeName("9132y")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const volume = new azure_native.elasticsan.Volume("volume", {
    creationData: {
        createSource: azure_native.elasticsan.VolumeCreateOption.None,
        sourceUri: "aaaaaa",
    },
    elasticSanName: "ti7q-k952-1qB3J_5",
    resourceGroupName: "rgelasticsan",
    sizeGiB: 22,
    tags: {
        key7423: "aaaa",
    },
    volumeGroupName: "u_5I_1j4t3",
    volumeName: "9132y",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

volume = azure_native.elasticsan.Volume("volume",
    creation_data={
        "create_source": azure_native.elasticsan.VolumeCreateOption.NONE,
        "source_uri": "aaaaaa",
    },
    elastic_san_name="ti7q-k952-1qB3J_5",
    resource_group_name="rgelasticsan",
    size_gi_b=22,
    tags={
        "key7423": "aaaa",
    },
    volume_group_name="u_5I_1j4t3",
    volume_name="9132y")
Copy
resources:
  volume:
    type: azure-native:elasticsan:Volume
    properties:
      creationData:
        createSource: None
        sourceUri: aaaaaa
      elasticSanName: ti7q-k952-1qB3J_5
      resourceGroupName: rgelasticsan
      sizeGiB: 22
      tags:
        key7423: aaaa
      volumeGroupName: u_5I_1j4t3
      volumeName: 9132y
Copy

Volumes_Create_MinimumSet_Gen

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var volume = new AzureNative.ElasticSan.Volume("volume", new()
    {
        ElasticSanName = "ti7q-k952-1qB3J_5",
        ResourceGroupName = "rgelasticsan",
        VolumeGroupName = "u_5I_1j4t3",
        VolumeName = "9132y",
    });

});
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.NewVolume(ctx, "volume", &elasticsan.VolumeArgs{
			ElasticSanName:    pulumi.String("ti7q-k952-1qB3J_5"),
			ResourceGroupName: pulumi.String("rgelasticsan"),
			VolumeGroupName:   pulumi.String("u_5I_1j4t3"),
			VolumeName:        pulumi.String("9132y"),
		})
		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.Volume;
import com.pulumi.azurenative.elasticsan.VolumeArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
            .elasticSanName("ti7q-k952-1qB3J_5")
            .resourceGroupName("rgelasticsan")
            .volumeGroupName("u_5I_1j4t3")
            .volumeName("9132y")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const volume = new azure_native.elasticsan.Volume("volume", {
    elasticSanName: "ti7q-k952-1qB3J_5",
    resourceGroupName: "rgelasticsan",
    volumeGroupName: "u_5I_1j4t3",
    volumeName: "9132y",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

volume = azure_native.elasticsan.Volume("volume",
    elastic_san_name="ti7q-k952-1qB3J_5",
    resource_group_name="rgelasticsan",
    volume_group_name="u_5I_1j4t3",
    volume_name="9132y")
Copy
resources:
  volume:
    type: azure-native:elasticsan:Volume
    properties:
      elasticSanName: ti7q-k952-1qB3J_5
      resourceGroupName: rgelasticsan
      volumeGroupName: u_5I_1j4t3
      volumeName: 9132y
Copy

Create Volume Resource

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

Constructor syntax

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

@overload
def Volume(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           elastic_san_name: Optional[str] = None,
           resource_group_name: Optional[str] = None,
           volume_group_name: Optional[str] = None,
           creation_data: Optional[SourceCreationDataArgs] = None,
           size_gi_b: Optional[float] = None,
           tags: Optional[Mapping[str, str]] = None,
           volume_name: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: azure-native:elasticsan:Volume
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. VolumeArgs
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. VolumeArgs
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. VolumeArgs
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. VolumeArgs
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. VolumeArgs
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_nativeVolumeResource = new AzureNative.Elasticsan.Volume("azure-nativeVolumeResource", new()
{
    ElasticSanName = "string",
    ResourceGroupName = "string",
    VolumeGroupName = "string",
    CreationData = 
    {
        { "createSource", "None" },
        { "sourceUri", "string" },
    },
    SizeGiB = 0,
    Tags = 
    {
        { "string", "string" },
    },
    VolumeName = "string",
});
Copy
example, err := elasticsan.NewVolume(ctx, "azure-nativeVolumeResource", &elasticsan.VolumeArgs{
	ElasticSanName:    "string",
	ResourceGroupName: "string",
	VolumeGroupName:   "string",
	CreationData: map[string]interface{}{
		"createSource": "None",
		"sourceUri":    "string",
	},
	SizeGiB: 0,
	Tags: map[string]interface{}{
		"string": "string",
	},
	VolumeName: "string",
})
Copy
var azure_nativeVolumeResource = new Volume("azure-nativeVolumeResource", VolumeArgs.builder()
    .elasticSanName("string")
    .resourceGroupName("string")
    .volumeGroupName("string")
    .creationData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .sizeGiB(0)
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .volumeName("string")
    .build());
Copy
azure_native_volume_resource = azure_native.elasticsan.Volume("azure-nativeVolumeResource",
    elastic_san_name=string,
    resource_group_name=string,
    volume_group_name=string,
    creation_data={
        createSource: None,
        sourceUri: string,
    },
    size_gi_b=0,
    tags={
        string: string,
    },
    volume_name=string)
Copy
const azure_nativeVolumeResource = new azure_native.elasticsan.Volume("azure-nativeVolumeResource", {
    elasticSanName: "string",
    resourceGroupName: "string",
    volumeGroupName: "string",
    creationData: {
        createSource: "None",
        sourceUri: "string",
    },
    sizeGiB: 0,
    tags: {
        string: "string",
    },
    volumeName: "string",
});
Copy
type: azure-native:elasticsan:Volume
properties:
    creationData:
        createSource: None
        sourceUri: string
    elasticSanName: string
    resourceGroupName: string
    sizeGiB: 0
    tags:
        string: string
    volumeGroupName: string
    volumeName: string
Copy

Volume 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 Volume 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.
VolumeGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VolumeGroup.
CreationData Pulumi.AzureNative.ElasticSan.Inputs.SourceCreationData
State of the operation on the resource.
SizeGiB double
Volume size.
Tags Dictionary<string, string>
Azure resource tags.
VolumeName Changes to this property will trigger replacement. string
The name of the Volume.
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.
VolumeGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VolumeGroup.
CreationData SourceCreationDataArgs
State of the operation on the resource.
SizeGiB float64
Volume size.
Tags map[string]string
Azure resource tags.
VolumeName Changes to this property will trigger replacement. string
The name of the Volume.
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.
volumeGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the VolumeGroup.
creationData SourceCreationData
State of the operation on the resource.
sizeGiB Double
Volume size.
tags Map<String,String>
Azure resource tags.
volumeName Changes to this property will trigger replacement. String
The name of the Volume.
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.
volumeGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the VolumeGroup.
creationData SourceCreationData
State of the operation on the resource.
sizeGiB number
Volume size.
tags {[key: string]: string}
Azure resource tags.
volumeName Changes to this property will trigger replacement. string
The name of the Volume.
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.
volume_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the VolumeGroup.
creation_data SourceCreationDataArgs
State of the operation on the resource.
size_gi_b float
Volume size.
tags Mapping[str, str]
Azure resource tags.
volume_name Changes to this property will trigger replacement. str
The name of the Volume.
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.
volumeGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the VolumeGroup.
creationData Property Map
State of the operation on the resource.
sizeGiB Number
Volume size.
tags Map<String>
Azure resource tags.
volumeName Changes to this property will trigger replacement. String
The name of the Volume.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Azure resource name.
StorageTarget Pulumi.AzureNative.ElasticSan.Outputs.IscsiTargetInfoResponse
Storage target information
SystemData Pulumi.AzureNative.ElasticSan.Outputs.SystemDataResponse
Resource metadata required by ARM RPC
Type string
Azure resource type.
VolumeId string
Unique Id of the volume in GUID format
Id string
The provider-assigned unique ID for this managed resource.
Name string
Azure resource name.
StorageTarget IscsiTargetInfoResponse
Storage target information
SystemData SystemDataResponse
Resource metadata required by ARM RPC
Type string
Azure resource type.
VolumeId string
Unique Id of the volume in GUID format
id String
The provider-assigned unique ID for this managed resource.
name String
Azure resource name.
storageTarget IscsiTargetInfoResponse
Storage target information
systemData SystemDataResponse
Resource metadata required by ARM RPC
type String
Azure resource type.
volumeId String
Unique Id of the volume in GUID format
id string
The provider-assigned unique ID for this managed resource.
name string
Azure resource name.
storageTarget IscsiTargetInfoResponse
Storage target information
systemData SystemDataResponse
Resource metadata required by ARM RPC
type string
Azure resource type.
volumeId string
Unique Id of the volume in GUID format
id str
The provider-assigned unique ID for this managed resource.
name str
Azure resource name.
storage_target IscsiTargetInfoResponse
Storage target information
system_data SystemDataResponse
Resource metadata required by ARM RPC
type str
Azure resource type.
volume_id str
Unique Id of the volume in GUID format
id String
The provider-assigned unique ID for this managed resource.
name String
Azure resource name.
storageTarget Property Map
Storage target information
systemData Property Map
Resource metadata required by ARM RPC
type String
Azure resource type.
volumeId String
Unique Id of the volume in GUID format

Supporting Types

IscsiTargetInfoResponse
, IscsiTargetInfoResponseArgs

ProvisioningState This property is required. string
State of the operation on the resource.
TargetIqn This property is required. string
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
TargetPortalHostname This property is required. string
iSCSI Target Portal Host Name
TargetPortalPort This property is required. int
iSCSI Target Portal Port
Status string
Operational status of the iSCSI Target.
ProvisioningState This property is required. string
State of the operation on the resource.
TargetIqn This property is required. string
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
TargetPortalHostname This property is required. string
iSCSI Target Portal Host Name
TargetPortalPort This property is required. int
iSCSI Target Portal Port
Status string
Operational status of the iSCSI Target.
provisioningState This property is required. String
State of the operation on the resource.
targetIqn This property is required. String
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
targetPortalHostname This property is required. String
iSCSI Target Portal Host Name
targetPortalPort This property is required. Integer
iSCSI Target Portal Port
status String
Operational status of the iSCSI Target.
provisioningState This property is required. string
State of the operation on the resource.
targetIqn This property is required. string
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
targetPortalHostname This property is required. string
iSCSI Target Portal Host Name
targetPortalPort This property is required. number
iSCSI Target Portal Port
status string
Operational status of the iSCSI Target.
provisioning_state This property is required. str
State of the operation on the resource.
target_iqn This property is required. str
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
target_portal_hostname This property is required. str
iSCSI Target Portal Host Name
target_portal_port This property is required. int
iSCSI Target Portal Port
status str
Operational status of the iSCSI Target.
provisioningState This property is required. String
State of the operation on the resource.
targetIqn This property is required. String
iSCSI Target IQN (iSCSI Qualified Name); example: "iqn.2005-03.org.iscsi:server".
targetPortalHostname This property is required. String
iSCSI Target Portal Host Name
targetPortalPort This property is required. Number
iSCSI Target Portal Port
status String
Operational status of the iSCSI Target.

SourceCreationData
, SourceCreationDataArgs

CreateSource Pulumi.AzureNative.ElasticSan.VolumeCreateOption
This enumerates the possible sources of a volume creation.
SourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
CreateSource VolumeCreateOption
This enumerates the possible sources of a volume creation.
SourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource VolumeCreateOption
This enumerates the possible sources of a volume creation.
sourceUri String
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource VolumeCreateOption
This enumerates the possible sources of a volume creation.
sourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
create_source VolumeCreateOption
This enumerates the possible sources of a volume creation.
source_uri str
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource "None"
This enumerates the possible sources of a volume creation.
sourceUri String
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.

SourceCreationDataResponse
, SourceCreationDataResponseArgs

CreateSource string
This enumerates the possible sources of a volume creation.
SourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
CreateSource string
This enumerates the possible sources of a volume creation.
SourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource String
This enumerates the possible sources of a volume creation.
sourceUri String
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource string
This enumerates the possible sources of a volume creation.
sourceUri string
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
create_source str
This enumerates the possible sources of a volume creation.
source_uri str
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.
createSource String
This enumerates the possible sources of a volume creation.
sourceUri String
If createOption is Copy, this is the ARM id of the source snapshot or disk. If createOption is Restore, this is the ARM-like id of the source disk restore point.

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.

VolumeCreateOption
, VolumeCreateOptionArgs

None
None
VolumeCreateOptionNone
None
None
None
None
None
NONE
None
"None"
None

Import

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

$ pulumi import azure-native:elasticsan:Volume aaaaaaaaaaaa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName} 
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
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