Share via


Microsoft.NetApp elasticAccounts/elasticBackupVaults/elasticBackups 2025-09-01-preview

Bicep resource definition

The elasticAccounts/elasticBackupVaults/elasticBackups resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups@2025-09-01-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    elasticSnapshotResourceId: 'string'
    elasticVolumeResourceId: 'string'
    label: 'string'
    snapshotUsage: 'string'
  }
}

Property Values

Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups

Name Description Value
name The resource name string

Constraints:
Min length = 1
Max length = 256
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,63}$ (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: elasticAccounts/elasticBackupVaults
properties The resource-specific properties for this resource. ElasticBackupProperties

ElasticBackupProperties

Name Description Value
elasticSnapshotResourceId ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup string
elasticVolumeResourceId ResourceId used to identify the Elastic Volume string (required)
label Label for backup string
snapshotUsage Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups 'CreateNewSnapshot'
'UseExistingSnapshot'

ARM template resource definition

The elasticAccounts/elasticBackupVaults/elasticBackups resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups resource, add the following JSON to your template.

{
  "type": "Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups",
  "apiVersion": "2025-09-01-preview",
  "name": "string",
  "properties": {
    "elasticSnapshotResourceId": "string",
    "elasticVolumeResourceId": "string",
    "label": "string",
    "snapshotUsage": "string"
  }
}

Property Values

Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups

Name Description Value
apiVersion The api version '2025-09-01-preview'
name The resource name string

Constraints:
Min length = 1
Max length = 256
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,63}$ (required)
properties The resource-specific properties for this resource. ElasticBackupProperties
type The resource type 'Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups'

ElasticBackupProperties

Name Description Value
elasticSnapshotResourceId ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup string
elasticVolumeResourceId ResourceId used to identify the Elastic Volume string (required)
label Label for backup string
snapshotUsage Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups 'CreateNewSnapshot'
'UseExistingSnapshot'

Usage Examples

Terraform (AzAPI provider) resource definition

The elasticAccounts/elasticBackupVaults/elasticBackups resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups@2025-09-01-preview"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      elasticSnapshotResourceId = "string"
      elasticVolumeResourceId = "string"
      label = "string"
      snapshotUsage = "string"
    }
  }
}

Property Values

Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups

Name Description Value
name The resource name string

Constraints:
Min length = 1
Max length = 256
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9\-_]{0,63}$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: elasticAccounts/elasticBackupVaults
properties The resource-specific properties for this resource. ElasticBackupProperties
type The resource type "Microsoft.NetApp/elasticAccounts/elasticBackupVaults/elasticBackups@2025-09-01-preview"

ElasticBackupProperties

Name Description Value
elasticSnapshotResourceId ResourceId used to identify the elastic snapshot resource. This is required when an existing snapshot needs to be used for creating a manual backup string
elasticVolumeResourceId ResourceId used to identify the Elastic Volume string (required)
label Label for backup string
snapshotUsage Manual backup using an already existing snapshot. This will always be CreateNewSnapshot for scheduled backups and UseExistingSnapshot/CreateNewSnapshot for manual backups 'CreateNewSnapshot'
'UseExistingSnapshot'