1. Packages
  2. Azure Native
  3. API Docs
  4. netapp
  5. ElasticBackup
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.13.0 published on Wednesday, Jan 28, 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:

    AccountName string
    The name of the ElasticAccount
    BackupVaultName string
    The name of the ElasticBackupVault
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    BackupName string
    The name of the ElasticBackup
    Properties Pulumi.AzureNative.NetApp.Inputs.ElasticBackupProperties
    The resource-specific properties for this resource.
    AccountName string
    The name of the ElasticAccount
    BackupVaultName string
    The name of the ElasticBackupVault
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    BackupName string
    The name of the ElasticBackup
    Properties ElasticBackupPropertiesArgs
    The resource-specific properties for this resource.
    accountName String
    The name of the ElasticAccount
    backupVaultName String
    The name of the ElasticBackupVault
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    backupName String
    The name of the ElasticBackup
    properties ElasticBackupProperties
    The resource-specific properties for this resource.
    accountName string
    The name of the ElasticAccount
    backupVaultName string
    The name of the ElasticBackupVault
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    backupName string
    The name of the ElasticBackup
    properties ElasticBackupProperties
    The resource-specific properties for this resource.
    account_name str
    The name of the ElasticAccount
    backup_vault_name str
    The name of the ElasticBackupVault
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    backup_name str
    The name of the ElasticBackup
    properties ElasticBackupPropertiesArgs
    The resource-specific properties for this resource.
    accountName String
    The name of the ElasticAccount
    backupVaultName String
    The name of the ElasticBackupVault
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    backupName 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:

    AzureApiVersion string
    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
    SystemData Pulumi.AzureNative.NetApp.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    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
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    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
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    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
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    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 SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    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
    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"

    Supporting Types

    ElasticBackupProperties, ElasticBackupPropertiesArgs

    Elastic Backup properties
    ElasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    ElasticSnapshotResourceId string
    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
    SnapshotUsage string | Pulumi.AzureNative.NetApp.SnapshotUsage
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    ElasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    ElasticSnapshotResourceId string
    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
    SnapshotUsage string | SnapshotUsage
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    elasticVolumeResourceId String
    ResourceId used to identify the Elastic Volume
    elasticSnapshotResourceId String
    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
    snapshotUsage String | SnapshotUsage
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    elasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    elasticSnapshotResourceId string
    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
    snapshotUsage 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_resource_id str
    ResourceId used to identify the Elastic Volume
    elastic_snapshot_resource_id str
    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
    elasticVolumeResourceId String
    ResourceId used to identify the Elastic Volume
    elasticSnapshotResourceId String
    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
    snapshotUsage String | "UseExistingSnapshot" | "CreateNewSnapshot"
    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
    BackupType string
    Type of backup Manual or Scheduled
    CompletionDate string
    The completion date of the backup
    CreationDate string
    The creation date of the backup
    ElasticBackupPolicyResourceId string
    ResourceId used to identify the elastic backup policy
    ElasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    FailureReason string
    Failure reason
    ProvisioningState string
    Azure lifecycle management.
    Size double
    Size of backup in bytes
    SnapshotCreationDate string
    The snapshot creation date of the backup
    VolumeSize string
    Specifies if the backup is for a large volume.
    ElasticSnapshotResourceId string
    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
    SnapshotUsage string
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    BackupType string
    Type of backup Manual or Scheduled
    CompletionDate string
    The completion date of the backup
    CreationDate string
    The creation date of the backup
    ElasticBackupPolicyResourceId string
    ResourceId used to identify the elastic backup policy
    ElasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    FailureReason string
    Failure reason
    ProvisioningState string
    Azure lifecycle management.
    Size float64
    Size of backup in bytes
    SnapshotCreationDate string
    The snapshot creation date of the backup
    VolumeSize string
    Specifies if the backup is for a large volume.
    ElasticSnapshotResourceId string
    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
    SnapshotUsage string
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    backupType String
    Type of backup Manual or Scheduled
    completionDate String
    The completion date of the backup
    creationDate String
    The creation date of the backup
    elasticBackupPolicyResourceId String
    ResourceId used to identify the elastic backup policy
    elasticVolumeResourceId String
    ResourceId used to identify the Elastic Volume
    failureReason String
    Failure reason
    provisioningState String
    Azure lifecycle management.
    size Double
    Size of backup in bytes
    snapshotCreationDate String
    The snapshot creation date of the backup
    volumeSize String
    Specifies if the backup is for a large volume.
    elasticSnapshotResourceId String
    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
    snapshotUsage String
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups
    backupType string
    Type of backup Manual or Scheduled
    completionDate string
    The completion date of the backup
    creationDate string
    The creation date of the backup
    elasticBackupPolicyResourceId string
    ResourceId used to identify the elastic backup policy
    elasticVolumeResourceId string
    ResourceId used to identify the Elastic Volume
    failureReason string
    Failure reason
    provisioningState string
    Azure lifecycle management.
    size number
    Size of backup in bytes
    snapshotCreationDate string
    The snapshot creation date of the backup
    volumeSize string
    Specifies if the backup is for a large volume.
    elasticSnapshotResourceId string
    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
    snapshotUsage 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_policy_resource_id str
    ResourceId used to identify the elastic backup policy
    elastic_volume_resource_id str
    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_date str
    The snapshot creation date of the backup
    volume_size str
    Specifies if the backup is for a large volume.
    elastic_snapshot_resource_id str
    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
    backupType String
    Type of backup Manual or Scheduled
    completionDate String
    The completion date of the backup
    creationDate String
    The creation date of the backup
    elasticBackupPolicyResourceId String
    ResourceId used to identify the elastic backup policy
    elasticVolumeResourceId String
    ResourceId used to identify the Elastic Volume
    failureReason String
    Failure reason
    provisioningState String
    Azure lifecycle management.
    size Number
    Size of backup in bytes
    snapshotCreationDate String
    The snapshot creation date of the backup
    volumeSize String
    Specifies if the backup is for a large volume.
    elasticSnapshotResourceId String
    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
    snapshotUsage String
    Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups

    SnapshotUsage, SnapshotUsageArgs

    UseExistingSnapshot
    UseExistingSnapshot Value indicating an existing snapshot is used
    CreateNewSnapshot
    CreateNewSnapshot Value indicating a new snapshot is created
    SnapshotUsageUseExistingSnapshot
    UseExistingSnapshot Value indicating an existing snapshot is used
    SnapshotUsageCreateNewSnapshot
    CreateNewSnapshot Value indicating a new snapshot is created
    UseExistingSnapshot
    UseExistingSnapshot Value indicating an existing snapshot is used
    CreateNewSnapshot
    CreateNewSnapshot Value indicating a new snapshot is created
    UseExistingSnapshot
    UseExistingSnapshot Value indicating an existing snapshot is used
    CreateNewSnapshot
    CreateNewSnapshot Value indicating a new snapshot is created
    USE_EXISTING_SNAPSHOT
    UseExistingSnapshot Value indicating an existing snapshot is used
    CREATE_NEW_SNAPSHOT
    CreateNewSnapshot Value indicating a new snapshot is created
    "UseExistingSnapshot"
    UseExistingSnapshot Value indicating an existing snapshot is used
    "CreateNewSnapshot"
    CreateNewSnapshot Value indicating a new snapshot is created

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

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

    $ pulumi import azure-native: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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate