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.
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 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")
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 (
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 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")
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.
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={
"sourceId": "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:
- Creation
Data Pulumi.Azure Native. Elastic San. Inputs. Snapshot Creation Data - Data used when creating a volume snapshot.
- Elastic
San stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Volume
Group stringName - The name of the VolumeGroup.
- Snapshot
Name 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 stringName - The name of the ElasticSan.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Volume
Group stringName - The name of the VolumeGroup.
- Snapshot
Name string - The name of the volume snapshot within the given volume group.
- creation
Data SnapshotCreation Data - Data used when creating a volume snapshot.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- volume
Group StringName - The name of the VolumeGroup.
- snapshot
Name String - The name of the volume snapshot within the given volume group.
- creation
Data SnapshotCreation Data - Data used when creating a volume snapshot.
- elastic
San stringName - The name of the ElasticSan.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- volume
Group stringName - The name of the VolumeGroup.
- snapshot
Name 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.
- creation
Data Property Map - Data used when creating a volume snapshot.
- elastic
San StringName - The name of the ElasticSan.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- volume
Group StringName - The name of the VolumeGroup.
- snapshot
Name 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
- Provisioning
State string - State of the operation on the resource.
- Source
Volume doubleSize Gi B - Size of Source Volume
- System
Data 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"
- Volume
Name 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
- Provisioning
State string - State of the operation on the resource.
- Source
Volume float64Size Gi B - Size of Source Volume
- System
Data 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"
- Volume
Name 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
- provisioning
State String - State of the operation on the resource.
- source
Volume DoubleSize Gi B - Size of Source Volume
- system
Data 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"
- volume
Name 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
- provisioning
State string - State of the operation on the resource.
- source
Volume numberSize Gi B - Size of Source Volume
- system
Data 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"
- volume
Name 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
- provisioning
State String - State of the operation on the resource.
- source
Volume NumberSize Gi B - Size of Source Volume
- system
Data 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"
- volume
Name String - Source Volume Name of a snapshot
Supporting Types
SnapshotCreationData, SnapshotCreationDataArgs
- Source
Id 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 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 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 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}"
- source
Id 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
- Source
Id 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 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 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 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}"
- source
Id 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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