published on Friday, Mar 20, 2026 by Pulumi
published on Friday, Mar 20, 2026 by Pulumi
The snapshot resource definition.
Uses Azure REST API version 2026-02-01-preview.
Example Usage
Create or update a snapshot
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var snapshot = new AzureNative.AzureStackHCI.Snapshot("snapshot", new()
{
ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
{
Name = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
Type = AzureNative.AzureStackHCI.ExtendedLocationTypes.CustomLocation,
},
Location = "West US2",
Properties = new AzureNative.AzureStackHCI.Inputs.SnapshotPropertiesArgs
{
CreationData = new AzureNative.AzureStackHCI.Inputs.CreationDataArgs
{
CreateOption = AzureNative.AzureStackHCI.DiskCreateOption.Copy,
SourceResourceId = "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd",
},
},
ResourceGroupName = "test-rg",
SnapshotName = "test-snapshot",
Tags =
{
{ "environment", "test" },
},
});
});
package main
import (
azurestackhci "github.com/pulumi/pulumi-azure-native-sdk/azurestackhci/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := azurestackhci.NewSnapshot(ctx, "snapshot", &azurestackhci.SnapshotArgs{
ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
Name: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location"),
Type: pulumi.String(azurestackhci.ExtendedLocationTypesCustomLocation),
},
Location: pulumi.String("West US2"),
Properties: &azurestackhci.SnapshotPropertiesArgs{
CreationData: &azurestackhci.CreationDataArgs{
CreateOption: pulumi.String(azurestackhci.DiskCreateOptionCopy),
SourceResourceId: pulumi.String("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd"),
},
},
ResourceGroupName: pulumi.String("test-rg"),
SnapshotName: pulumi.String("test-snapshot"),
Tags: pulumi.StringMap{
"environment": pulumi.String("test"),
},
})
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.azurestackhci.Snapshot;
import com.pulumi.azurenative.azurestackhci.SnapshotArgs;
import com.pulumi.azurenative.azurestackhci.inputs.ExtendedLocationArgs;
import com.pulumi.azurenative.azurestackhci.inputs.SnapshotPropertiesArgs;
import com.pulumi.azurenative.azurestackhci.inputs.CreationDataArgs;
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 snapshot = new Snapshot("snapshot", SnapshotArgs.builder()
.extendedLocation(ExtendedLocationArgs.builder()
.name("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location")
.type("CustomLocation")
.build())
.location("West US2")
.properties(SnapshotPropertiesArgs.builder()
.creationData(CreationDataArgs.builder()
.createOption("Copy")
.sourceResourceId("/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd")
.build())
.build())
.resourceGroupName("test-rg")
.snapshotName("test-snapshot")
.tags(Map.of("environment", "test"))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const snapshot = new azure_native.azurestackhci.Snapshot("snapshot", {
extendedLocation: {
name: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
type: azure_native.azurestackhci.ExtendedLocationTypes.CustomLocation,
},
location: "West US2",
properties: {
creationData: {
createOption: azure_native.azurestackhci.DiskCreateOption.Copy,
sourceResourceId: "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd",
},
},
resourceGroupName: "test-rg",
snapshotName: "test-snapshot",
tags: {
environment: "test",
},
});
import pulumi
import pulumi_azure_native as azure_native
snapshot = azure_native.azurestackhci.Snapshot("snapshot",
extended_location={
"name": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location",
"type": azure_native.azurestackhci.ExtendedLocationTypes.CUSTOM_LOCATION,
},
location="West US2",
properties={
"creation_data": {
"create_option": azure_native.azurestackhci.DiskCreateOption.COPY,
"source_resource_id": "/subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd",
},
},
resource_group_name="test-rg",
snapshot_name="test-snapshot",
tags={
"environment": "test",
})
resources:
snapshot:
type: azure-native:azurestackhci:Snapshot
properties:
extendedLocation:
name: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/dogfoodarc/providers/Microsoft.ExtendedLocation/customLocations/dogfood-location
type: CustomLocation
location: West US2
properties:
creationData:
createOption: Copy
sourceResourceId: /subscriptions/a95612cb-f1fa-4daa-a4fd-272844fa512c/resourceGroups/test-rg/providers/Microsoft.AzureStackHCI/virtualHardDisks/source-vhd
resourceGroupName: test-rg
snapshotName: test-snapshot
tags:
environment: test
Create Snapshot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Snapshot(name: string, args: SnapshotArgs, opts?: CustomResourceOptions);@overload
def Snapshot(resource_name: str,
args: SnapshotArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Snapshot(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
extended_location: Optional[ExtendedLocationArgs] = None,
location: Optional[str] = None,
properties: Optional[SnapshotPropertiesArgs] = None,
snapshot_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewSnapshot(ctx *Context, name string, args SnapshotArgs, opts ...ResourceOption) (*Snapshot, error)public Snapshot(string name, SnapshotArgs args, CustomResourceOptions? opts = null)
public Snapshot(String name, SnapshotArgs args)
public Snapshot(String name, SnapshotArgs args, CustomResourceOptions options)
type: azure-native:azurestackhci:Snapshot
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 SnapshotArgs
- 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 SnapshotArgs
- 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 SnapshotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SnapshotArgs
- 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 snapshotResource = new AzureNative.AzureStackHCI.Snapshot("snapshotResource", new()
{
ResourceGroupName = "string",
ExtendedLocation = new AzureNative.AzureStackHCI.Inputs.ExtendedLocationArgs
{
Name = "string",
Type = "string",
},
Location = "string",
Properties = new AzureNative.AzureStackHCI.Inputs.SnapshotPropertiesArgs
{
CreationData = new AzureNative.AzureStackHCI.Inputs.CreationDataArgs
{
CreateOption = "string",
SourceResourceId = "string",
},
},
SnapshotName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := azurestackhci.NewSnapshot(ctx, "snapshotResource", &azurestackhci.SnapshotArgs{
ResourceGroupName: pulumi.String("string"),
ExtendedLocation: &azurestackhci.ExtendedLocationArgs{
Name: pulumi.String("string"),
Type: pulumi.String("string"),
},
Location: pulumi.String("string"),
Properties: &azurestackhci.SnapshotPropertiesArgs{
CreationData: &azurestackhci.CreationDataArgs{
CreateOption: pulumi.String("string"),
SourceResourceId: pulumi.String("string"),
},
},
SnapshotName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var snapshotResource = new com.pulumi.azurenative.azurestackhci.Snapshot("snapshotResource", com.pulumi.azurenative.azurestackhci.SnapshotArgs.builder()
.resourceGroupName("string")
.extendedLocation(ExtendedLocationArgs.builder()
.name("string")
.type("string")
.build())
.location("string")
.properties(SnapshotPropertiesArgs.builder()
.creationData(CreationDataArgs.builder()
.createOption("string")
.sourceResourceId("string")
.build())
.build())
.snapshotName("string")
.tags(Map.of("string", "string"))
.build());
snapshot_resource = azure_native.azurestackhci.Snapshot("snapshotResource",
resource_group_name="string",
extended_location={
"name": "string",
"type": "string",
},
location="string",
properties={
"creation_data": {
"create_option": "string",
"source_resource_id": "string",
},
},
snapshot_name="string",
tags={
"string": "string",
})
const snapshotResource = new azure_native.azurestackhci.Snapshot("snapshotResource", {
resourceGroupName: "string",
extendedLocation: {
name: "string",
type: "string",
},
location: "string",
properties: {
creationData: {
createOption: "string",
sourceResourceId: "string",
},
},
snapshotName: "string",
tags: {
string: "string",
},
});
type: azure-native:azurestackhci:Snapshot
properties:
extendedLocation:
name: string
type: string
location: string
properties:
creationData:
createOption: string
sourceResourceId: string
resourceGroupName: string
snapshotName: string
tags:
string: string
Snapshot 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 Snapshot resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location Pulumi.Azure Native. Azure Stack HCI. Inputs. Extended Location - The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Properties
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Snapshot Properties - The resource-specific properties for this resource.
- Snapshot
Name string - Name of the snapshot
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Extended
Location ExtendedLocation Args - The extendedLocation of the resource.
- Location string
- The geo-location where the resource lives
- Properties
Snapshot
Properties Args - The resource-specific properties for this resource.
- Snapshot
Name string - Name of the snapshot
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- properties
Snapshot
Properties - The resource-specific properties for this resource.
- snapshot
Name String - Name of the snapshot
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- extended
Location ExtendedLocation - The extendedLocation of the resource.
- location string
- The geo-location where the resource lives
- properties
Snapshot
Properties - The resource-specific properties for this resource.
- snapshot
Name string - Name of the snapshot
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- extended_
location ExtendedLocation Args - The extendedLocation of the resource.
- location str
- The geo-location where the resource lives
- properties
Snapshot
Properties Args - The resource-specific properties for this resource.
- snapshot_
name str - Name of the snapshot
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- extended
Location Property Map - The extendedLocation of the resource.
- location String
- The geo-location where the resource lives
- properties Property Map
- The resource-specific properties for this resource.
- snapshot
Name String - Name of the snapshot
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the Snapshot resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Azure Stack HCI. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
Supporting Types
CreationData, CreationDataArgs
Data used when creating a disk or snapshot- Create
Option string | Pulumi.Azure Native. Azure Stack HCI. Disk Create Option - This enumerates the possible sources of a disk's creation
- Source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- Create
Option string | DiskCreate Option - This enumerates the possible sources of a disk's creation
- Source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option String | DiskCreate Option - This enumerates the possible sources of a disk's creation
- source
Resource StringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option string | DiskCreate Option - This enumerates the possible sources of a disk's creation
- source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create_
option str | DiskCreate Option - This enumerates the possible sources of a disk's creation
- source_
resource_ strid - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option String | "Copy" | "Empty" - This enumerates the possible sources of a disk's creation
- source
Resource StringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
CreationDataResponse, CreationDataResponseArgs
Data used when creating a disk or snapshot- Create
Option string - This enumerates the possible sources of a disk's creation
- Source
Unique stringId - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- Source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- Create
Option string - This enumerates the possible sources of a disk's creation
- Source
Unique stringId - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- Source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option String - This enumerates the possible sources of a disk's creation
- source
Unique StringId - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- source
Resource StringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option string - This enumerates the possible sources of a disk's creation
- source
Unique stringId - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- source
Resource stringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create_
option str - This enumerates the possible sources of a disk's creation
- source_
unique_ strid - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- source_
resource_ strid - ARM ID of the source resource used for disk creation. Required when createOption is Copy
- create
Option String - This enumerates the possible sources of a disk's creation
- source
Unique StringId - Unique ID of the source resource used for disk creation. Read-only and not required for disk creation.
- source
Resource StringId - ARM ID of the source resource used for disk creation. Required when createOption is Copy
DiskCreateOption, DiskCreateOptionArgs
- Copy
CopyCreate a disk by copying from a source resource- Empty
EmptyCreate an empty disk
- Disk
Create Option Copy CopyCreate a disk by copying from a source resource- Disk
Create Option Empty EmptyCreate an empty disk
- Copy
CopyCreate a disk by copying from a source resource- Empty
EmptyCreate an empty disk
- Copy
CopyCreate a disk by copying from a source resource- Empty
EmptyCreate an empty disk
- COPY
CopyCreate a disk by copying from a source resource- EMPTY
EmptyCreate an empty disk
- "Copy"
CopyCreate a disk by copying from a source resource- "Empty"
EmptyCreate an empty disk
ExtendedLocation, ExtendedLocationArgs
The complex type of the extended location.- Name string
- The name of the extended location.
- Type
string | Pulumi.
Azure Native. Azure Stack HCI. Extended Location Types - The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | Extended
Location Types - The type of the extended location.
- name string
- The name of the extended location.
- type
string | Extended
Location Types - The type of the extended location.
- name str
- The name of the extended location.
- type
str | Extended
Location Types - The type of the extended location.
- name String
- The name of the extended location.
- type
String | "Custom
Location" - The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs
The complex type of the extended location.ExtendedLocationTypes, ExtendedLocationTypesArgs
- Custom
Location CustomLocationCustom extended location type
- Extended
Location Types Custom Location CustomLocationCustom extended location type
- Custom
Location CustomLocationCustom extended location type
- Custom
Location CustomLocationCustom extended location type
- CUSTOM_LOCATION
CustomLocationCustom extended location type
- "Custom
Location" CustomLocationCustom extended location type
SnapshotProperties, SnapshotPropertiesArgs
Properties under the snapshot resource- Creation
Data Pulumi.Azure Native. Azure Stack HCI. Inputs. Creation Data - Data used when creating a snapshot
- Creation
Data CreationData - Data used when creating a snapshot
- creation
Data CreationData - Data used when creating a snapshot
- creation
Data CreationData - Data used when creating a snapshot
- creation_
data CreationData - Data used when creating a snapshot
- creation
Data Property Map - Data used when creating a snapshot
SnapshotPropertiesResponse, SnapshotPropertiesResponseArgs
Properties under the snapshot resource- Disk
Size doubleBytes - The size of the disk in bytes.
- Provisioning
State string - Provisioning state of the snapshot.
- Status
Pulumi.
Azure Native. Azure Stack HCI. Inputs. Snapshot Status Response - The observed state of snapshots
- Time
Created string - The time when the snapshot was created.
- Unique
Id string - Unique identifier for the snapshot.
- Creation
Data Pulumi.Azure Native. Azure Stack HCI. Inputs. Creation Data Response - Data used when creating a snapshot
- Disk
Size float64Bytes - The size of the disk in bytes.
- Provisioning
State string - Provisioning state of the snapshot.
- Status
Snapshot
Status Response - The observed state of snapshots
- Time
Created string - The time when the snapshot was created.
- Unique
Id string - Unique identifier for the snapshot.
- Creation
Data CreationData Response - Data used when creating a snapshot
- disk
Size DoubleBytes - The size of the disk in bytes.
- provisioning
State String - Provisioning state of the snapshot.
- status
Snapshot
Status Response - The observed state of snapshots
- time
Created String - The time when the snapshot was created.
- unique
Id String - Unique identifier for the snapshot.
- creation
Data CreationData Response - Data used when creating a snapshot
- disk
Size numberBytes - The size of the disk in bytes.
- provisioning
State string - Provisioning state of the snapshot.
- status
Snapshot
Status Response - The observed state of snapshots
- time
Created string - The time when the snapshot was created.
- unique
Id string - Unique identifier for the snapshot.
- creation
Data CreationData Response - Data used when creating a snapshot
- disk_
size_ floatbytes - The size of the disk in bytes.
- provisioning_
state str - Provisioning state of the snapshot.
- status
Snapshot
Status Response - The observed state of snapshots
- time_
created str - The time when the snapshot was created.
- unique_
id str - Unique identifier for the snapshot.
- creation_
data CreationData Response - Data used when creating a snapshot
- disk
Size NumberBytes - The size of the disk in bytes.
- provisioning
State String - Provisioning state of the snapshot.
- status Property Map
- The observed state of snapshots
- time
Created String - The time when the snapshot was created.
- unique
Id String - Unique identifier for the snapshot.
- creation
Data Property Map - Data used when creating a snapshot
SnapshotStatusProvisioningStatusResponse, SnapshotStatusProvisioningStatusResponseArgs
Snapshot Status provisioning status- Status string
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- Operation
Id string - The ID of the operation performed on the snapshot
- Status string
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- Operation
Id string - The ID of the operation performed on the snapshot
- status String
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- operation
Id String - The ID of the operation performed on the snapshot
- status string
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- operation
Id string - The ID of the operation performed on the snapshot
- status str
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- operation_
id str - The ID of the operation performed on the snapshot
- status String
- The status of the operation performed on the snapshot [Succeeded, Failed, InProgress]
- operation
Id String - The ID of the operation performed on the snapshot
SnapshotStatusResponse, SnapshotStatusResponseArgs
The observed state of snapshots- Error
Code string - Snapshot provisioning error code
- Error
Message string - Descriptive error message
- Provisioning
Status Pulumi.Azure Native. Azure Stack HCI. Inputs. Snapshot Status Provisioning Status Response - Provisioning status of the snapshot
- Error
Code string - Snapshot provisioning error code
- Error
Message string - Descriptive error message
- Provisioning
Status SnapshotStatus Provisioning Status Response - Provisioning status of the snapshot
- error
Code String - Snapshot provisioning error code
- error
Message String - Descriptive error message
- provisioning
Status SnapshotStatus Provisioning Status Response - Provisioning status of the snapshot
- error
Code string - Snapshot provisioning error code
- error
Message string - Descriptive error message
- provisioning
Status SnapshotStatus Provisioning Status Response - Provisioning status of the snapshot
- error_
code str - Snapshot provisioning error code
- error_
message str - Descriptive error message
- provisioning_
status SnapshotStatus Provisioning Status Response - Provisioning status of the snapshot
- error
Code String - Snapshot provisioning error code
- error
Message String - Descriptive error message
- provisioning
Status Property Map - Provisioning status of the snapshot
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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:azurestackhci:Snapshot test-snapshot /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/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
published on Friday, Mar 20, 2026 by Pulumi
