published on Wednesday, Mar 4, 2026 by Pulumi
published on Wednesday, Mar 4, 2026 by Pulumi
NetApp Elastic Backup under an elastic Backup Vault
Uses Azure REST API version 2025-09-01-preview.
Example Usage
ElasticBackups_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var elasticBackup = new AzureNative.NetApp.ElasticBackup("elasticBackup", new()
{
AccountName = "account1",
BackupName = "backup1",
BackupVaultName = "backupVault1",
Properties = new AzureNative.NetApp.Inputs.ElasticBackupPropertiesArgs
{
ElasticSnapshotResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1",
ElasticVolumeResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1",
Label = "myLabel",
SnapshotUsage = AzureNative.NetApp.SnapshotUsage.UseExistingSnapshot,
},
ResourceGroupName = "myRG",
});
});
package main
import (
netapp "github.com/pulumi/pulumi-azure-native-sdk/netapp/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netapp.NewElasticBackup(ctx, "elasticBackup", &netapp.ElasticBackupArgs{
AccountName: pulumi.String("account1"),
BackupName: pulumi.String("backup1"),
BackupVaultName: pulumi.String("backupVault1"),
Properties: &netapp.ElasticBackupPropertiesArgs{
ElasticSnapshotResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1"),
ElasticVolumeResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1"),
Label: pulumi.String("myLabel"),
SnapshotUsage: pulumi.String(netapp.SnapshotUsageUseExistingSnapshot),
},
ResourceGroupName: pulumi.String("myRG"),
})
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.netapp.ElasticBackup;
import com.pulumi.azurenative.netapp.ElasticBackupArgs;
import com.pulumi.azurenative.netapp.inputs.ElasticBackupPropertiesArgs;
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 elasticBackup = new ElasticBackup("elasticBackup", ElasticBackupArgs.builder()
.accountName("account1")
.backupName("backup1")
.backupVaultName("backupVault1")
.properties(ElasticBackupPropertiesArgs.builder()
.elasticSnapshotResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1")
.elasticVolumeResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1")
.label("myLabel")
.snapshotUsage("UseExistingSnapshot")
.build())
.resourceGroupName("myRG")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const elasticBackup = new azure_native.netapp.ElasticBackup("elasticBackup", {
accountName: "account1",
backupName: "backup1",
backupVaultName: "backupVault1",
properties: {
elasticSnapshotResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1",
elasticVolumeResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1",
label: "myLabel",
snapshotUsage: azure_native.netapp.SnapshotUsage.UseExistingSnapshot,
},
resourceGroupName: "myRG",
});
import pulumi
import pulumi_azure_native as azure_native
elastic_backup = azure_native.netapp.ElasticBackup("elasticBackup",
account_name="account1",
backup_name="backup1",
backup_vault_name="backupVault1",
properties={
"elastic_snapshot_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1",
"elastic_volume_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1",
"label": "myLabel",
"snapshot_usage": azure_native.netapp.SnapshotUsage.USE_EXISTING_SNAPSHOT,
},
resource_group_name="myRG")
resources:
elasticBackup:
type: azure-native:netapp:ElasticBackup
properties:
accountName: account1
backupName: backup1
backupVaultName: backupVault1
properties:
elasticSnapshotResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1/elasticSnapshots/snap1
elasticVolumeResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myRG/providers/Microsoft.NetApp/elasticAccounts/account1/elasticCapacityPools/pool1/elasticVolumes/volume1
label: myLabel
snapshotUsage: UseExistingSnapshot
resourceGroupName: myRG
Create ElasticBackup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ElasticBackup(name: string, args: ElasticBackupArgs, opts?: CustomResourceOptions);@overload
def ElasticBackup(resource_name: str,
args: ElasticBackupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ElasticBackup(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
backup_vault_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
backup_name: Optional[str] = None,
properties: Optional[ElasticBackupPropertiesArgs] = None)func NewElasticBackup(ctx *Context, name string, args ElasticBackupArgs, opts ...ResourceOption) (*ElasticBackup, error)public ElasticBackup(string name, ElasticBackupArgs args, CustomResourceOptions? opts = null)
public ElasticBackup(String name, ElasticBackupArgs args)
public ElasticBackup(String name, ElasticBackupArgs args, CustomResourceOptions options)
type: azure-native:netapp:ElasticBackup
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 ElasticBackupArgs
- 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 ElasticBackupArgs
- 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 ElasticBackupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ElasticBackupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ElasticBackupArgs
- 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 elasticBackupResource = new AzureNative.NetApp.ElasticBackup("elasticBackupResource", new()
{
AccountName = "string",
BackupVaultName = "string",
ResourceGroupName = "string",
BackupName = "string",
Properties = new AzureNative.NetApp.Inputs.ElasticBackupPropertiesArgs
{
ElasticVolumeResourceId = "string",
ElasticSnapshotResourceId = "string",
Label = "string",
SnapshotUsage = "string",
},
});
example, err := netapp.NewElasticBackup(ctx, "elasticBackupResource", &netapp.ElasticBackupArgs{
AccountName: pulumi.String("string"),
BackupVaultName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
BackupName: pulumi.String("string"),
Properties: &netapp.ElasticBackupPropertiesArgs{
ElasticVolumeResourceId: pulumi.String("string"),
ElasticSnapshotResourceId: pulumi.String("string"),
Label: pulumi.String("string"),
SnapshotUsage: pulumi.String("string"),
},
})
var elasticBackupResource = new ElasticBackup("elasticBackupResource", ElasticBackupArgs.builder()
.accountName("string")
.backupVaultName("string")
.resourceGroupName("string")
.backupName("string")
.properties(ElasticBackupPropertiesArgs.builder()
.elasticVolumeResourceId("string")
.elasticSnapshotResourceId("string")
.label("string")
.snapshotUsage("string")
.build())
.build());
elastic_backup_resource = azure_native.netapp.ElasticBackup("elasticBackupResource",
account_name="string",
backup_vault_name="string",
resource_group_name="string",
backup_name="string",
properties={
"elastic_volume_resource_id": "string",
"elastic_snapshot_resource_id": "string",
"label": "string",
"snapshot_usage": "string",
})
const elasticBackupResource = new azure_native.netapp.ElasticBackup("elasticBackupResource", {
accountName: "string",
backupVaultName: "string",
resourceGroupName: "string",
backupName: "string",
properties: {
elasticVolumeResourceId: "string",
elasticSnapshotResourceId: "string",
label: "string",
snapshotUsage: "string",
},
});
type: azure-native:netapp:ElasticBackup
properties:
accountName: string
backupName: string
backupVaultName: string
properties:
elasticSnapshotResourceId: string
elasticVolumeResourceId: string
label: string
snapshotUsage: string
resourceGroupName: string
ElasticBackup 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 ElasticBackup resource accepts the following input properties:
- Account
Name string - The name of the ElasticAccount
- Backup
Vault stringName - The name of the ElasticBackupVault
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Backup
Name string - The name of the ElasticBackup
- Properties
Pulumi.
Azure Native. Net App. Inputs. Elastic Backup Properties - The resource-specific properties for this resource.
- Account
Name string - The name of the ElasticAccount
- Backup
Vault stringName - The name of the ElasticBackupVault
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Backup
Name string - The name of the ElasticBackup
- Properties
Elastic
Backup Properties Args - The resource-specific properties for this resource.
- account
Name String - The name of the ElasticAccount
- backup
Vault StringName - The name of the ElasticBackupVault
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- backup
Name String - The name of the ElasticBackup
- properties
Elastic
Backup Properties - The resource-specific properties for this resource.
- account
Name string - The name of the ElasticAccount
- backup
Vault stringName - The name of the ElasticBackupVault
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- backup
Name string - The name of the ElasticBackup
- properties
Elastic
Backup Properties - The resource-specific properties for this resource.
- account_
name str - The name of the ElasticAccount
- backup_
vault_ strname - The name of the ElasticBackupVault
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- backup_
name str - The name of the ElasticBackup
- properties
Elastic
Backup Properties Args - The resource-specific properties for this resource.
- account
Name String - The name of the ElasticAccount
- backup
Vault StringName - The name of the ElasticBackupVault
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- backup
Name String - The name of the ElasticBackup
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ElasticBackup 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. Net App. 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
ElasticBackupProperties, ElasticBackupPropertiesArgs
Elastic Backup properties- Elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- Elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- Label string
- Label for backup
- Snapshot
Usage string | Pulumi.Azure Native. Net App. Snapshot Usage - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- Elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- Elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- Label string
- Label for backup
- Snapshot
Usage string | SnapshotUsage - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- elastic
Volume StringResource Id - ResourceId used to identify the Elastic Volume
- elastic
Snapshot StringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label String
- Label for backup
- snapshot
Usage String | SnapshotUsage - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label string
- Label for backup
- snapshot
Usage string | SnapshotUsage - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- elastic_
volume_ strresource_ id - ResourceId used to identify the Elastic Volume
- elastic_
snapshot_ strresource_ id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label str
- Label for backup
- snapshot_
usage str | SnapshotUsage - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- elastic
Volume StringResource Id - ResourceId used to identify the Elastic Volume
- elastic
Snapshot StringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label String
- Label for backup
- snapshot
Usage String | "UseExisting Snapshot" | "Create New Snapshot" - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
ElasticBackupPropertiesResponse, ElasticBackupPropertiesResponseArgs
Elastic Backup properties- Backup
Type string - Type of backup Manual or Scheduled
- Completion
Date string - The completion date of the backup
- Creation
Date string - The creation date of the backup
- Elastic
Backup stringPolicy Resource Id - ResourceId used to identify the elastic backup policy
- Elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- Failure
Reason string - Failure reason
- Provisioning
State string - Azure lifecycle management.
- Size double
- Size of backup in bytes
- Snapshot
Creation stringDate - The snapshot creation date of the backup
- Volume
Size string - Specifies if the backup is for a large volume.
- Elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- Label string
- Label for backup
- Snapshot
Usage string - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- Backup
Type string - Type of backup Manual or Scheduled
- Completion
Date string - The completion date of the backup
- Creation
Date string - The creation date of the backup
- Elastic
Backup stringPolicy Resource Id - ResourceId used to identify the elastic backup policy
- Elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- Failure
Reason string - Failure reason
- Provisioning
State string - Azure lifecycle management.
- Size float64
- Size of backup in bytes
- Snapshot
Creation stringDate - The snapshot creation date of the backup
- Volume
Size string - Specifies if the backup is for a large volume.
- Elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- Label string
- Label for backup
- Snapshot
Usage string - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- backup
Type String - Type of backup Manual or Scheduled
- completion
Date String - The completion date of the backup
- creation
Date String - The creation date of the backup
- elastic
Backup StringPolicy Resource Id - ResourceId used to identify the elastic backup policy
- elastic
Volume StringResource Id - ResourceId used to identify the Elastic Volume
- failure
Reason String - Failure reason
- provisioning
State String - Azure lifecycle management.
- size Double
- Size of backup in bytes
- snapshot
Creation StringDate - The snapshot creation date of the backup
- volume
Size String - Specifies if the backup is for a large volume.
- elastic
Snapshot StringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label String
- Label for backup
- snapshot
Usage String - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- backup
Type string - Type of backup Manual or Scheduled
- completion
Date string - The completion date of the backup
- creation
Date string - The creation date of the backup
- elastic
Backup stringPolicy Resource Id - ResourceId used to identify the elastic backup policy
- elastic
Volume stringResource Id - ResourceId used to identify the Elastic Volume
- failure
Reason string - Failure reason
- provisioning
State string - Azure lifecycle management.
- size number
- Size of backup in bytes
- snapshot
Creation stringDate - The snapshot creation date of the backup
- volume
Size string - Specifies if the backup is for a large volume.
- elastic
Snapshot stringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label string
- Label for backup
- snapshot
Usage string - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- backup_
type str - Type of backup Manual or Scheduled
- completion_
date str - The completion date of the backup
- creation_
date str - The creation date of the backup
- elastic_
backup_ strpolicy_ resource_ id - ResourceId used to identify the elastic backup policy
- elastic_
volume_ strresource_ id - ResourceId used to identify the Elastic Volume
- failure_
reason str - Failure reason
- provisioning_
state str - Azure lifecycle management.
- size float
- Size of backup in bytes
- snapshot_
creation_ strdate - The snapshot creation date of the backup
- volume_
size str - Specifies if the backup is for a large volume.
- elastic_
snapshot_ strresource_ id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label str
- Label for backup
- snapshot_
usage str - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
- backup
Type String - Type of backup Manual or Scheduled
- completion
Date String - The completion date of the backup
- creation
Date String - The creation date of the backup
- elastic
Backup StringPolicy Resource Id - ResourceId used to identify the elastic backup policy
- elastic
Volume StringResource Id - ResourceId used to identify the Elastic Volume
- failure
Reason String - Failure reason
- provisioning
State String - Azure lifecycle management.
- size Number
- Size of backup in bytes
- snapshot
Creation StringDate - The snapshot creation date of the backup
- volume
Size String - Specifies if the backup is for a large volume.
- elastic
Snapshot StringResource Id - ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup
- label String
- Label for backup
- snapshot
Usage String - Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
SnapshotUsage, SnapshotUsageArgs
- Use
Existing Snapshot UseExistingSnapshotValue indicating an existing snapshot is used- Create
New Snapshot CreateNewSnapshotValue indicating a new snapshot is created
- Snapshot
Usage Use Existing Snapshot UseExistingSnapshotValue indicating an existing snapshot is used- Snapshot
Usage Create New Snapshot CreateNewSnapshotValue indicating a new snapshot is created
- Use
Existing Snapshot UseExistingSnapshotValue indicating an existing snapshot is used- Create
New Snapshot CreateNewSnapshotValue indicating a new snapshot is created
- Use
Existing Snapshot UseExistingSnapshotValue indicating an existing snapshot is used- Create
New Snapshot CreateNewSnapshotValue indicating a new snapshot is created
- USE_EXISTING_SNAPSHOT
UseExistingSnapshotValue indicating an existing snapshot is used- CREATE_NEW_SNAPSHOT
CreateNewSnapshotValue indicating a new snapshot is created
- "Use
Existing Snapshot" UseExistingSnapshotValue indicating an existing snapshot is used- "Create
New Snapshot" CreateNewSnapshotValue indicating a new snapshot is created
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:netapp:ElasticBackup account1/backupVault1/backup1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/elasticAccounts/{accountName}/elasticBackupVaults/{backupVaultName}/elasticBackups/{backupName}
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 Wednesday, Mar 4, 2026 by Pulumi
