azure-native.elasticsan.VolumeSnapshot
Explore with Pulumi AI
Response for Volume Snapshot request. Azure REST API version: 2023-01-01.
Other available API versions: 2024-05-01, 2024-06-01-preview.
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 (
	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.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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
volume_snapshot = azure_native.elasticsan.VolumeSnapshot("volumeSnapshot",
    creation_data={
        "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")
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 (
	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.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 * 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",
});
import pulumi
import pulumi_azure_native as azure_native
volume_snapshot = azure_native.elasticsan.VolumeSnapshot("volumeSnapshot",
    creation_data={
        "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")
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.
Constructor 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={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VolumeSnapshot resource accepts the following input properties:
- CreationData Pulumi.Azure Native. Elastic San. Inputs. Snapshot Creation Data 
- Data used when creating a volume snapshot.
- ElasticSan stringName 
- The name of the ElasticSan.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- VolumeGroup stringName 
- The name of the VolumeGroup.
- SnapshotName string
- The name of the volume snapshot within the given volume group.
- CreationData SnapshotCreation Data Args 
- Data used when creating a volume snapshot.
- ElasticSan stringName 
- The name of the ElasticSan.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- VolumeGroup stringName 
- The name of the VolumeGroup.
- SnapshotName string
- The name of the volume snapshot within the given volume group.
- creationData SnapshotCreation Data 
- Data used when creating a volume snapshot.
- elasticSan StringName 
- The name of the ElasticSan.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- volumeGroup StringName 
- The name of the VolumeGroup.
- snapshotName String
- The name of the volume snapshot within the given volume group.
- creationData SnapshotCreation Data 
- Data used when creating a volume snapshot.
- elasticSan stringName 
- The name of the ElasticSan.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- volumeGroup stringName 
- The name of the VolumeGroup.
- snapshotName string
- The name of the volume snapshot within the given volume group.
- creation_data SnapshotCreation Data Args 
- Data used when creating a volume snapshot.
- elastic_san_ strname 
- The name of the ElasticSan.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- volume_group_ strname 
- 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.
- elasticSan StringName 
- The name of the ElasticSan.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- volumeGroup StringName 
- 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.
- SourceVolume doubleSize Gi B 
- Size of Source Volume
- SystemData Pulumi.Azure Native. Elastic San. Outputs. System Data Response 
- 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.
- SourceVolume float64Size Gi B 
- Size of Source Volume
- SystemData SystemData Response 
- 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.
- sourceVolume DoubleSize Gi B 
- Size of Source Volume
- systemData SystemData Response 
- 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.
- sourceVolume numberSize Gi B 
- Size of Source Volume
- systemData SystemData Response 
- 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_ floatsize_ gi_ b 
- Size of Source Volume
- system_data SystemData Response 
- 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.
- sourceVolume NumberSize Gi B 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- 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_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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