1. Packages
  2. Azure Classic
  3. API Docs
  4. netapp
  5. BackupPolicy

We recommend using Azure Native.

Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi

azure.netapp.BackupPolicy

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi

    Manages a NetApp Backup Policy.

    NetApp Backup Policy Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = new azure.core.ResourceGroup("example", {
        name: "example-resources",
        location: "West Europe",
    });
    const exampleAccount = new azure.netapp.Account("example", {
        name: "example-netappaccount",
        location: example.location,
        resourceGroupName: example.name,
    });
    const exampleBackupPolicy = new azure.netapp.BackupPolicy("example", {
        name: "example-netappbackuppolicy",
        resourceGroupName: example.name,
        location: example.location,
        accountName: exampleAccount.name,
        enabled: true,
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.core.ResourceGroup("example",
        name="example-resources",
        location="West Europe")
    example_account = azure.netapp.Account("example",
        name="example-netappaccount",
        location=example.location,
        resource_group_name=example.name)
    example_backup_policy = azure.netapp.BackupPolicy("example",
        name="example-netappbackuppolicy",
        resource_group_name=example.name,
        location=example.location,
        account_name=example_account.name,
        enabled=True)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/netapp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
    			Name:     pulumi.String("example-resources"),
    			Location: pulumi.String("West Europe"),
    		})
    		if err != nil {
    			return err
    		}
    		exampleAccount, err := netapp.NewAccount(ctx, "example", &netapp.AccountArgs{
    			Name:              pulumi.String("example-netappaccount"),
    			Location:          example.Location,
    			ResourceGroupName: example.Name,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = netapp.NewBackupPolicy(ctx, "example", &netapp.BackupPolicyArgs{
    			Name:              pulumi.String("example-netappbackuppolicy"),
    			ResourceGroupName: example.Name,
    			Location:          example.Location,
    			AccountName:       exampleAccount.Name,
    			Enabled:           pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Azure.Core.ResourceGroup("example", new()
        {
            Name = "example-resources",
            Location = "West Europe",
        });
    
        var exampleAccount = new Azure.NetApp.Account("example", new()
        {
            Name = "example-netappaccount",
            Location = example.Location,
            ResourceGroupName = example.Name,
        });
    
        var exampleBackupPolicy = new Azure.NetApp.BackupPolicy("example", new()
        {
            Name = "example-netappbackuppolicy",
            ResourceGroupName = example.Name,
            Location = example.Location,
            AccountName = exampleAccount.Name,
            Enabled = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.netapp.Account;
    import com.pulumi.azure.netapp.AccountArgs;
    import com.pulumi.azure.netapp.BackupPolicy;
    import com.pulumi.azure.netapp.BackupPolicyArgs;
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
                .name("example-netappaccount")
                .location(example.location())
                .resourceGroupName(example.name())
                .build());
    
            var exampleBackupPolicy = new BackupPolicy("exampleBackupPolicy", BackupPolicyArgs.builder()
                .name("example-netappbackuppolicy")
                .resourceGroupName(example.name())
                .location(example.location())
                .accountName(exampleAccount.name())
                .enabled(true)
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleAccount:
        type: azure:netapp:Account
        name: example
        properties:
          name: example-netappaccount
          location: ${example.location}
          resourceGroupName: ${example.name}
      exampleBackupPolicy:
        type: azure:netapp:BackupPolicy
        name: example
        properties:
          name: example-netappbackuppolicy
          resourceGroupName: ${example.name}
          location: ${example.location}
          accountName: ${exampleAccount.name}
          enabled: true
    

    Create BackupPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BackupPolicy(name: string, args: BackupPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def BackupPolicy(resource_name: str,
                     args: BackupPolicyArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def BackupPolicy(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     account_name: Optional[str] = None,
                     resource_group_name: Optional[str] = None,
                     daily_backups_to_keep: Optional[int] = None,
                     enabled: Optional[bool] = None,
                     location: Optional[str] = None,
                     monthly_backups_to_keep: Optional[int] = None,
                     name: Optional[str] = None,
                     tags: Optional[Mapping[str, str]] = None,
                     weekly_backups_to_keep: Optional[int] = None)
    func NewBackupPolicy(ctx *Context, name string, args BackupPolicyArgs, opts ...ResourceOption) (*BackupPolicy, error)
    public BackupPolicy(string name, BackupPolicyArgs args, CustomResourceOptions? opts = null)
    public BackupPolicy(String name, BackupPolicyArgs args)
    public BackupPolicy(String name, BackupPolicyArgs args, CustomResourceOptions options)
    
    type: azure:netapp:BackupPolicy
    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 BackupPolicyArgs
    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 BackupPolicyArgs
    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 BackupPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BackupPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BackupPolicyArgs
    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 backupPolicyResource = new Azure.NetApp.BackupPolicy("backupPolicyResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        DailyBackupsToKeep = 0,
        Enabled = false,
        Location = "string",
        MonthlyBackupsToKeep = 0,
        Name = "string",
        Tags = 
        {
            { "string", "string" },
        },
        WeeklyBackupsToKeep = 0,
    });
    
    example, err := netapp.NewBackupPolicy(ctx, "backupPolicyResource", &netapp.BackupPolicyArgs{
    	AccountName:          pulumi.String("string"),
    	ResourceGroupName:    pulumi.String("string"),
    	DailyBackupsToKeep:   pulumi.Int(0),
    	Enabled:              pulumi.Bool(false),
    	Location:             pulumi.String("string"),
    	MonthlyBackupsToKeep: pulumi.Int(0),
    	Name:                 pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	WeeklyBackupsToKeep: pulumi.Int(0),
    })
    
    var backupPolicyResource = new BackupPolicy("backupPolicyResource", BackupPolicyArgs.builder()
        .accountName("string")
        .resourceGroupName("string")
        .dailyBackupsToKeep(0)
        .enabled(false)
        .location("string")
        .monthlyBackupsToKeep(0)
        .name("string")
        .tags(Map.of("string", "string"))
        .weeklyBackupsToKeep(0)
        .build());
    
    backup_policy_resource = azure.netapp.BackupPolicy("backupPolicyResource",
        account_name="string",
        resource_group_name="string",
        daily_backups_to_keep=0,
        enabled=False,
        location="string",
        monthly_backups_to_keep=0,
        name="string",
        tags={
            "string": "string",
        },
        weekly_backups_to_keep=0)
    
    const backupPolicyResource = new azure.netapp.BackupPolicy("backupPolicyResource", {
        accountName: "string",
        resourceGroupName: "string",
        dailyBackupsToKeep: 0,
        enabled: false,
        location: "string",
        monthlyBackupsToKeep: 0,
        name: "string",
        tags: {
            string: "string",
        },
        weeklyBackupsToKeep: 0,
    });
    
    type: azure:netapp:BackupPolicy
    properties:
        accountName: string
        dailyBackupsToKeep: 0
        enabled: false
        location: string
        monthlyBackupsToKeep: 0
        name: string
        resourceGroupName: string
        tags:
            string: string
        weeklyBackupsToKeep: 0
    

    BackupPolicy 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 BackupPolicy resource accepts the following input properties:

    AccountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    DailyBackupsToKeep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    Enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MonthlyBackupsToKeep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    Name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WeeklyBackupsToKeep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    AccountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    DailyBackupsToKeep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    Enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MonthlyBackupsToKeep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    Name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WeeklyBackupsToKeep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName String
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    dailyBackupsToKeep Integer
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled Boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep Integer

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name String
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep Integer
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    dailyBackupsToKeep number
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep number

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep number
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    account_name str
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    daily_backups_to_keep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthly_backups_to_keep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name str
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    weekly_backups_to_keep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName String
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    dailyBackupsToKeep Number
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled Boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep Number

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name String
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep Number
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BackupPolicy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing BackupPolicy Resource

    Get an existing BackupPolicy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: BackupPolicyState, opts?: CustomResourceOptions): BackupPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            daily_backups_to_keep: Optional[int] = None,
            enabled: Optional[bool] = None,
            location: Optional[str] = None,
            monthly_backups_to_keep: Optional[int] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            weekly_backups_to_keep: Optional[int] = None) -> BackupPolicy
    func GetBackupPolicy(ctx *Context, name string, id IDInput, state *BackupPolicyState, opts ...ResourceOption) (*BackupPolicy, error)
    public static BackupPolicy Get(string name, Input<string> id, BackupPolicyState? state, CustomResourceOptions? opts = null)
    public static BackupPolicy get(String name, Output<String> id, BackupPolicyState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AccountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    DailyBackupsToKeep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    Enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MonthlyBackupsToKeep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    Name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WeeklyBackupsToKeep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    AccountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    DailyBackupsToKeep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    Enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    Location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    MonthlyBackupsToKeep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    Name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WeeklyBackupsToKeep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName String
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    dailyBackupsToKeep Integer
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled Boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep Integer

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name String
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep Integer
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName string
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    dailyBackupsToKeep number
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location string
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep number

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name string
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep number
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    account_name str
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    daily_backups_to_keep int
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled bool
    Whether the Backup Policy is enabled. Defaults to true.
    location str
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthly_backups_to_keep int

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name str
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    weekly_backups_to_keep int
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.
    accountName String
    The name of the NetApp account in which the NetApp Policy should be created under. Changing this forces a new resource to be created.
    dailyBackupsToKeep Number
    Provides the number of daily backups to keep, defaults to 2 which is the minimum, maximum is 1019.
    enabled Boolean
    Whether the Backup Policy is enabled. Defaults to true.
    location String
    Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
    monthlyBackupsToKeep Number

    Provides the number of monthly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Note: Currently, the combined (daily + weekly + monthy) retention counts cannot exceed 1019.

    name String
    The name of the NetApp Backup Policy. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group where the NetApp Backup Policy should be created. Changing this forces a new resource to be created.
    tags Map<String>
    A mapping of tags to assign to the resource.
    weeklyBackupsToKeep Number
    Provides the number of weekly backups to keep, defaults to 1 which is the minimum, maximum is 1019.

    Import

    NetApp Backup Policy can be imported using the resource id, e.g.

    $ pulumi import azure:netapp/backupPolicy:BackupPolicy example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.NetApp/netAppAccounts/account1/backupPolicies/backuppolicy1
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.10.0 published on Tuesday, Nov 19, 2024 by Pulumi