1. Packages
  2. Azure Native
  3. API Docs
  4. elasticsan
  5. VolumeSnapshot
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.38.0 published on Monday, Apr 22, 2024 by Pulumi

azure-native.elasticsan.VolumeSnapshot

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.38.0 published on Monday, Apr 22, 2024 by Pulumi

    Response for Volume Snapshot request. Azure REST API version: 2023-01-01.

    Example Usage

    VolumeSnapshots_Create_MaximumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var volumeSnapshot = new AzureNative.ElasticSan.VolumeSnapshot("volumeSnapshot", new()
        {
            CreationData = new AzureNative.ElasticSan.Inputs.SnapshotCreationDataArgs
            {
                SourceId = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
            },
            ElasticSanName = "elasticsanname",
            ResourceGroupName = "resourcegroupname",
            SnapshotName = "snapshotname",
            VolumeGroupName = "volumegroupname",
        });
    
    });
    
    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.NewVolumeSnapshot(ctx, "volumeSnapshot", &elasticsan.VolumeSnapshotArgs{
    			CreationData: &elasticsan.SnapshotCreationDataArgs{
    				SourceId: pulumi.String("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"),
    			},
    			ElasticSanName:    pulumi.String("elasticsanname"),
    			ResourceGroupName: pulumi.String("resourcegroupname"),
    			SnapshotName:      pulumi.String("snapshotname"),
    			VolumeGroupName:   pulumi.String("volumegroupname"),
    		})
    		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.VolumeSnapshot;
    import com.pulumi.azurenative.elasticsan.VolumeSnapshotArgs;
    import com.pulumi.azurenative.elasticsan.inputs.SnapshotCreationDataArgs;
    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 volumeSnapshot = new VolumeSnapshot("volumeSnapshot", VolumeSnapshotArgs.builder()        
                .creationData(SnapshotCreationDataArgs.builder()
                    .sourceId("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}")
                    .build())
                .elasticSanName("elasticsanname")
                .resourceGroupName("resourcegroupname")
                .snapshotName("snapshotname")
                .volumeGroupName("volumegroupname")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    volume_snapshot = azure_native.elasticsan.VolumeSnapshot("volumeSnapshot",
        creation_data=azure_native.elasticsan.SnapshotCreationDataArgs(
            source_id="/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
        ),
        elastic_san_name="elasticsanname",
        resource_group_name="resourcegroupname",
        snapshot_name="snapshotname",
        volume_group_name="volumegroupname")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const volumeSnapshot = new azure_native.elasticsan.VolumeSnapshot("volumeSnapshot", {
        creationData: {
            sourceId: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
        },
        elasticSanName: "elasticsanname",
        resourceGroupName: "resourcegroupname",
        snapshotName: "snapshotname",
        volumeGroupName: "volumegroupname",
    });
    
    resources:
      volumeSnapshot:
        type: azure-native:elasticsan:VolumeSnapshot
        properties:
          creationData:
            sourceId: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}
          elasticSanName: elasticsanname
          resourceGroupName: resourcegroupname
          snapshotName: snapshotname
          volumeGroupName: volumegroupname
    

    VolumeSnapshots_Create_MinimumSet_Gen

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var volumeSnapshot = new AzureNative.ElasticSan.VolumeSnapshot("volumeSnapshot", new()
        {
            CreationData = new AzureNative.ElasticSan.Inputs.SnapshotCreationDataArgs
            {
                SourceId = "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
            },
            ElasticSanName = "elasticsanname",
            ResourceGroupName = "resourcegroupname",
            SnapshotName = "snapshotname",
            VolumeGroupName = "volumegroupname",
        });
    
    });
    
    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.NewVolumeSnapshot(ctx, "volumeSnapshot", &elasticsan.VolumeSnapshotArgs{
    			CreationData: &elasticsan.SnapshotCreationDataArgs{
    				SourceId: pulumi.String("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"),
    			},
    			ElasticSanName:    pulumi.String("elasticsanname"),
    			ResourceGroupName: pulumi.String("resourcegroupname"),
    			SnapshotName:      pulumi.String("snapshotname"),
    			VolumeGroupName:   pulumi.String("volumegroupname"),
    		})
    		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.VolumeSnapshot;
    import com.pulumi.azurenative.elasticsan.VolumeSnapshotArgs;
    import com.pulumi.azurenative.elasticsan.inputs.SnapshotCreationDataArgs;
    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 volumeSnapshot = new VolumeSnapshot("volumeSnapshot", VolumeSnapshotArgs.builder()        
                .creationData(SnapshotCreationDataArgs.builder()
                    .sourceId("/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}")
                    .build())
                .elasticSanName("elasticsanname")
                .resourceGroupName("resourcegroupname")
                .snapshotName("snapshotname")
                .volumeGroupName("volumegroupname")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    volume_snapshot = azure_native.elasticsan.VolumeSnapshot("volumeSnapshot",
        creation_data=azure_native.elasticsan.SnapshotCreationDataArgs(
            source_id="/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
        ),
        elastic_san_name="elasticsanname",
        resource_group_name="resourcegroupname",
        snapshot_name="snapshotname",
        volume_group_name="volumegroupname")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const volumeSnapshot = new azure_native.elasticsan.VolumeSnapshot("volumeSnapshot", {
        creationData: {
            sourceId: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}",
        },
        elasticSanName: "elasticsanname",
        resourceGroupName: "resourcegroupname",
        snapshotName: "snapshotname",
        volumeGroupName: "volumegroupname",
    });
    
    resources:
      volumeSnapshot:
        type: azure-native:elasticsan:VolumeSnapshot
        properties:
          creationData:
            sourceId: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}
          elasticSanName: elasticsanname
          resourceGroupName: resourcegroupname
          snapshotName: snapshotname
          volumeGroupName: volumegroupname
    

    Create VolumeSnapshot Resource

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

    Constructor syntax

    new VolumeSnapshot(name: string, args: VolumeSnapshotArgs, opts?: CustomResourceOptions);
    @overload
    def VolumeSnapshot(resource_name: str,
                       args: VolumeSnapshotArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def VolumeSnapshot(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       creation_data: Optional[SnapshotCreationDataArgs] = None,
                       elastic_san_name: Optional[str] = None,
                       resource_group_name: Optional[str] = None,
                       volume_group_name: Optional[str] = None,
                       snapshot_name: Optional[str] = None)
    func NewVolumeSnapshot(ctx *Context, name string, args VolumeSnapshotArgs, opts ...ResourceOption) (*VolumeSnapshot, error)
    public VolumeSnapshot(string name, VolumeSnapshotArgs args, CustomResourceOptions? opts = null)
    public VolumeSnapshot(String name, VolumeSnapshotArgs args)
    public VolumeSnapshot(String name, VolumeSnapshotArgs args, CustomResourceOptions options)
    
    type: azure-native:elasticsan:VolumeSnapshot
    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 VolumeSnapshotArgs
    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 VolumeSnapshotArgs
    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 VolumeSnapshotArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VolumeSnapshotArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VolumeSnapshotArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var volumeSnapshotResource = new AzureNative.ElasticSan.VolumeSnapshot("volumeSnapshotResource", new()
    {
        CreationData = new AzureNative.ElasticSan.Inputs.SnapshotCreationDataArgs
        {
            SourceId = "string",
        },
        ElasticSanName = "string",
        ResourceGroupName = "string",
        VolumeGroupName = "string",
        SnapshotName = "string",
    });
    
    example, err := elasticsan.NewVolumeSnapshot(ctx, "volumeSnapshotResource", &elasticsan.VolumeSnapshotArgs{
    CreationData: &elasticsan.SnapshotCreationDataArgs{
    SourceId: pulumi.String("string"),
    },
    ElasticSanName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    VolumeGroupName: pulumi.String("string"),
    SnapshotName: pulumi.String("string"),
    })
    
    var volumeSnapshotResource = new VolumeSnapshot("volumeSnapshotResource", VolumeSnapshotArgs.builder()        
        .creationData(SnapshotCreationDataArgs.builder()
            .sourceId("string")
            .build())
        .elasticSanName("string")
        .resourceGroupName("string")
        .volumeGroupName("string")
        .snapshotName("string")
        .build());
    
    volume_snapshot_resource = azure_native.elasticsan.VolumeSnapshot("volumeSnapshotResource",
        creation_data=azure_native.elasticsan.SnapshotCreationDataArgs(
            source_id="string",
        ),
        elastic_san_name="string",
        resource_group_name="string",
        volume_group_name="string",
        snapshot_name="string")
    
    const volumeSnapshotResource = new azure_native.elasticsan.VolumeSnapshot("volumeSnapshotResource", {
        creationData: {
            sourceId: "string",
        },
        elasticSanName: "string",
        resourceGroupName: "string",
        volumeGroupName: "string",
        snapshotName: "string",
    });
    
    type: azure-native:elasticsan:VolumeSnapshot
    properties:
        creationData:
            sourceId: string
        elasticSanName: string
        resourceGroupName: string
        snapshotName: string
        volumeGroupName: string
    

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

    CreationData Pulumi.AzureNative.ElasticSan.Inputs.SnapshotCreationData
    Data used when creating a volume snapshot.
    ElasticSanName string
    The name of the ElasticSan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VolumeGroupName string
    The name of the VolumeGroup.
    SnapshotName string
    The name of the volume snapshot within the given volume group.
    CreationData SnapshotCreationDataArgs
    Data used when creating a volume snapshot.
    ElasticSanName string
    The name of the ElasticSan.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    VolumeGroupName string
    The name of the VolumeGroup.
    SnapshotName string
    The name of the volume snapshot within the given volume group.
    creationData SnapshotCreationData
    Data used when creating a volume snapshot.
    elasticSanName String
    The name of the ElasticSan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    volumeGroupName String
    The name of the VolumeGroup.
    snapshotName String
    The name of the volume snapshot within the given volume group.
    creationData SnapshotCreationData
    Data used when creating a volume snapshot.
    elasticSanName string
    The name of the ElasticSan.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    volumeGroupName string
    The name of the VolumeGroup.
    snapshotName string
    The name of the volume snapshot within the given volume group.
    creation_data SnapshotCreationDataArgs
    Data used when creating a volume snapshot.
    elastic_san_name str
    The name of the ElasticSan.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    volume_group_name str
    The name of the VolumeGroup.
    snapshot_name str
    The name of the volume snapshot within the given volume group.
    creationData Property Map
    Data used when creating a volume snapshot.
    elasticSanName String
    The name of the ElasticSan.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    volumeGroupName String
    The name of the VolumeGroup.
    snapshotName String
    The name of the volume snapshot within the given volume group.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of the operation on the resource.
    SourceVolumeSizeGiB double
    Size of Source Volume
    SystemData Pulumi.AzureNative.ElasticSan.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VolumeName string
    Source Volume Name of a snapshot
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    ProvisioningState string
    State of the operation on the resource.
    SourceVolumeSizeGiB float64
    Size of Source Volume
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    VolumeName string
    Source Volume Name of a snapshot
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of the operation on the resource.
    sourceVolumeSizeGiB Double
    Size of Source Volume
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeName String
    Source Volume Name of a snapshot
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    provisioningState string
    State of the operation on the resource.
    sourceVolumeSizeGiB number
    Size of Source Volume
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeName string
    Source Volume Name of a snapshot
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    provisioning_state str
    State of the operation on the resource.
    source_volume_size_gi_b float
    Size of Source Volume
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volume_name str
    Source Volume Name of a snapshot
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    provisioningState String
    State of the operation on the resource.
    sourceVolumeSizeGiB Number
    Size of Source Volume
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    volumeName String
    Source Volume Name of a snapshot

    Supporting Types

    SnapshotCreationData, SnapshotCreationDataArgs

    SourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    SourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId String
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    source_id str
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId String
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"

    SnapshotCreationDataResponse, SnapshotCreationDataResponseArgs

    SourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    SourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId String
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId string
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    source_id str
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"
    sourceId String
    Fully qualified resource ID of the volume. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/volumes/{volumeName}"

    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.

    Import

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

    $ pulumi import azure-native:elasticsan:VolumeSnapshot qukfugetqthsufp /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}/snapshots/{snapshotName} 
    

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

    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.38.0 published on Monday, Apr 22, 2024 by Pulumi