azure-native.netapp.BackupPolicy
Explore with Pulumi AI
Backup policy information API Version: 2020-12-01.
Example Usage
BackupPolicies_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var backupPolicy = new AzureNative.NetApp.BackupPolicy("backupPolicy", new()
{
AccountName = "account1",
BackupPolicyName = "backupPolicyName",
DailyBackupsToKeep = 10,
Enabled = true,
Location = "westus",
MonthlyBackupsToKeep = 10,
ResourceGroupName = "myRG",
WeeklyBackupsToKeep = 10,
});
});
package main
import (
netapp "github.com/pulumi/pulumi-azure-native-sdk/netapp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netapp.NewBackupPolicy(ctx, "backupPolicy", &netapp.BackupPolicyArgs{
AccountName: pulumi.String("account1"),
BackupPolicyName: pulumi.String("backupPolicyName"),
DailyBackupsToKeep: pulumi.Int(10),
Enabled: pulumi.Bool(true),
Location: pulumi.String("westus"),
MonthlyBackupsToKeep: pulumi.Int(10),
ResourceGroupName: pulumi.String("myRG"),
WeeklyBackupsToKeep: pulumi.Int(10),
})
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.BackupPolicy;
import com.pulumi.azurenative.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 backupPolicy = new BackupPolicy("backupPolicy", BackupPolicyArgs.builder()
.accountName("account1")
.backupPolicyName("backupPolicyName")
.dailyBackupsToKeep(10)
.enabled(true)
.location("westus")
.monthlyBackupsToKeep(10)
.resourceGroupName("myRG")
.weeklyBackupsToKeep(10)
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
backup_policy = azure_native.netapp.BackupPolicy("backupPolicy",
account_name="account1",
backup_policy_name="backupPolicyName",
daily_backups_to_keep=10,
enabled=True,
location="westus",
monthly_backups_to_keep=10,
resource_group_name="myRG",
weekly_backups_to_keep=10)
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const backupPolicy = new azure_native.netapp.BackupPolicy("backupPolicy", {
accountName: "account1",
backupPolicyName: "backupPolicyName",
dailyBackupsToKeep: 10,
enabled: true,
location: "westus",
monthlyBackupsToKeep: 10,
resourceGroupName: "myRG",
weeklyBackupsToKeep: 10,
});
resources:
backupPolicy:
type: azure-native:netapp:BackupPolicy
properties:
accountName: account1
backupPolicyName: backupPolicyName
dailyBackupsToKeep: 10
enabled: true
location: westus
monthlyBackupsToKeep: 10
resourceGroupName: myRG
weeklyBackupsToKeep: 10
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,
backup_policy_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,
tags: Optional[Mapping[str, str]] = None,
volume_backups: Optional[Sequence[VolumeBackupsArgs]] = None,
volumes_assigned: Optional[int] = None,
weekly_backups_to_keep: Optional[int] = None,
yearly_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-native: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 azure_nativeBackupPolicyResource = new AzureNative.Netapp.BackupPolicy("azure-nativeBackupPolicyResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
BackupPolicyName = "string",
DailyBackupsToKeep = 0,
Enabled = false,
Location = "string",
MonthlyBackupsToKeep = 0,
Tags =
{
{ "string", "string" },
},
VolumeBackups = new[]
{
{
{ "backupsCount", 0 },
{ "policyEnabled", false },
{ "volumeName", "string" },
},
},
VolumesAssigned = 0,
WeeklyBackupsToKeep = 0,
YearlyBackupsToKeep = 0,
});
example, err := netapp.NewBackupPolicy(ctx, "azure-nativeBackupPolicyResource", &netapp.BackupPolicyArgs{
AccountName: "string",
ResourceGroupName: "string",
BackupPolicyName: "string",
DailyBackupsToKeep: 0,
Enabled: false,
Location: "string",
MonthlyBackupsToKeep: 0,
Tags: map[string]interface{}{
"string": "string",
},
VolumeBackups: []map[string]interface{}{
map[string]interface{}{
"backupsCount": 0,
"policyEnabled": false,
"volumeName": "string",
},
},
VolumesAssigned: 0,
WeeklyBackupsToKeep: 0,
YearlyBackupsToKeep: 0,
})
var azure_nativeBackupPolicyResource = new BackupPolicy("azure-nativeBackupPolicyResource", BackupPolicyArgs.builder()
.accountName("string")
.resourceGroupName("string")
.backupPolicyName("string")
.dailyBackupsToKeep(0)
.enabled(false)
.location("string")
.monthlyBackupsToKeep(0)
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.volumeBackups(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.volumesAssigned(0)
.weeklyBackupsToKeep(0)
.yearlyBackupsToKeep(0)
.build());
azure_native_backup_policy_resource = azure_native.netapp.BackupPolicy("azure-nativeBackupPolicyResource",
account_name=string,
resource_group_name=string,
backup_policy_name=string,
daily_backups_to_keep=0,
enabled=False,
location=string,
monthly_backups_to_keep=0,
tags={
string: string,
},
volume_backups=[{
backupsCount: 0,
policyEnabled: False,
volumeName: string,
}],
volumes_assigned=0,
weekly_backups_to_keep=0,
yearly_backups_to_keep=0)
const azure_nativeBackupPolicyResource = new azure_native.netapp.BackupPolicy("azure-nativeBackupPolicyResource", {
accountName: "string",
resourceGroupName: "string",
backupPolicyName: "string",
dailyBackupsToKeep: 0,
enabled: false,
location: "string",
monthlyBackupsToKeep: 0,
tags: {
string: "string",
},
volumeBackups: [{
backupsCount: 0,
policyEnabled: false,
volumeName: "string",
}],
volumesAssigned: 0,
weeklyBackupsToKeep: 0,
yearlyBackupsToKeep: 0,
});
type: azure-native:netapp:BackupPolicy
properties:
accountName: string
backupPolicyName: string
dailyBackupsToKeep: 0
enabled: false
location: string
monthlyBackupsToKeep: 0
resourceGroupName: string
tags:
string: string
volumeBackups:
- backupsCount: 0
policyEnabled: false
volumeName: string
volumesAssigned: 0
weeklyBackupsToKeep: 0
yearlyBackupsToKeep: 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
The BackupPolicy resource accepts the following input properties:
- Account
Name string - The name of the NetApp account
- Resource
Group stringName - The name of the resource group.
- Backup
Policy stringName - Backup policy Name which uniquely identify backup policy.
- Daily
Backups intTo Keep - Daily backups count to keep
- Enabled bool
- The property to decide policy is enabled or not
- Location string
- Resource location
- Monthly
Backups intTo Keep - Monthly backups count to keep
- Dictionary<string, string>
- Resource tags
- Volume
Backups List<Pulumi.Azure Native. Net App. Inputs. Volume Backups> - A list of volumes assigned to this policy
- Volumes
Assigned int - Volumes using current backup policy
- Weekly
Backups intTo Keep - Weekly backups count to keep
- Yearly
Backups intTo Keep - Yearly backups count to keep
- Account
Name string - The name of the NetApp account
- Resource
Group stringName - The name of the resource group.
- Backup
Policy stringName - Backup policy Name which uniquely identify backup policy.
- Daily
Backups intTo Keep - Daily backups count to keep
- Enabled bool
- The property to decide policy is enabled or not
- Location string
- Resource location
- Monthly
Backups intTo Keep - Monthly backups count to keep
- map[string]string
- Resource tags
- Volume
Backups []VolumeBackups Args - A list of volumes assigned to this policy
- Volumes
Assigned int - Volumes using current backup policy
- Weekly
Backups intTo Keep - Weekly backups count to keep
- Yearly
Backups intTo Keep - Yearly backups count to keep
- account
Name String - The name of the NetApp account
- resource
Group StringName - The name of the resource group.
- backup
Policy StringName - Backup policy Name which uniquely identify backup policy.
- daily
Backups IntegerTo Keep - Daily backups count to keep
- enabled Boolean
- The property to decide policy is enabled or not
- location String
- Resource location
- monthly
Backups IntegerTo Keep - Monthly backups count to keep
- Map<String,String>
- Resource tags
- volume
Backups List<VolumeBackups> - A list of volumes assigned to this policy
- volumes
Assigned Integer - Volumes using current backup policy
- weekly
Backups IntegerTo Keep - Weekly backups count to keep
- yearly
Backups IntegerTo Keep - Yearly backups count to keep
- account
Name string - The name of the NetApp account
- resource
Group stringName - The name of the resource group.
- backup
Policy stringName - Backup policy Name which uniquely identify backup policy.
- daily
Backups numberTo Keep - Daily backups count to keep
- enabled boolean
- The property to decide policy is enabled or not
- location string
- Resource location
- monthly
Backups numberTo Keep - Monthly backups count to keep
- {[key: string]: string}
- Resource tags
- volume
Backups VolumeBackups[] - A list of volumes assigned to this policy
- volumes
Assigned number - Volumes using current backup policy
- weekly
Backups numberTo Keep - Weekly backups count to keep
- yearly
Backups numberTo Keep - Yearly backups count to keep
- account_
name str - The name of the NetApp account
- resource_
group_ strname - The name of the resource group.
- backup_
policy_ strname - Backup policy Name which uniquely identify backup policy.
- daily_
backups_ intto_ keep - Daily backups count to keep
- enabled bool
- The property to decide policy is enabled or not
- location str
- Resource location
- monthly_
backups_ intto_ keep - Monthly backups count to keep
- Mapping[str, str]
- Resource tags
- volume_
backups Sequence[VolumeBackups Args] - A list of volumes assigned to this policy
- volumes_
assigned int - Volumes using current backup policy
- weekly_
backups_ intto_ keep - Weekly backups count to keep
- yearly_
backups_ intto_ keep - Yearly backups count to keep
- account
Name String - The name of the NetApp account
- resource
Group StringName - The name of the resource group.
- backup
Policy StringName - Backup policy Name which uniquely identify backup policy.
- daily
Backups NumberTo Keep - Daily backups count to keep
- enabled Boolean
- The property to decide policy is enabled or not
- location String
- Resource location
- monthly
Backups NumberTo Keep - Monthly backups count to keep
- Map<String>
- Resource tags
- volume
Backups List<Property Map> - A list of volumes assigned to this policy
- volumes
Assigned Number - Volumes using current backup policy
- weekly
Backups NumberTo Keep - Weekly backups count to keep
- yearly
Backups NumberTo Keep - Yearly backups count to keep
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.
- Name string
- Name of backup policy
- Provisioning
State string - Azure lifecycle management
- Type string
- Resource type
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of backup policy
- Provisioning
State string - Azure lifecycle management
- Type string
- Resource type
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of backup policy
- provisioning
State String - Azure lifecycle management
- type String
- Resource type
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of backup policy
- provisioning
State string - Azure lifecycle management
- type string
- Resource type
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of backup policy
- provisioning_
state str - Azure lifecycle management
- type str
- Resource type
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of backup policy
- provisioning
State String - Azure lifecycle management
- type String
- Resource type
Supporting Types
VolumeBackups, VolumeBackupsArgs
- Backups
Count int - Total count of backups for volume
- Policy
Enabled bool - Policy enabled
- Volume
Name string - Volume name
- Backups
Count int - Total count of backups for volume
- Policy
Enabled bool - Policy enabled
- Volume
Name string - Volume name
- backups
Count Integer - Total count of backups for volume
- policy
Enabled Boolean - Policy enabled
- volume
Name String - Volume name
- backups
Count number - Total count of backups for volume
- policy
Enabled boolean - Policy enabled
- volume
Name string - Volume name
- backups_
count int - Total count of backups for volume
- policy_
enabled bool - Policy enabled
- volume_
name str - Volume name
- backups
Count Number - Total count of backups for volume
- policy
Enabled Boolean - Policy enabled
- volume
Name String - Volume name
VolumeBackupsResponse, VolumeBackupsResponseArgs
- Backups
Count int - Total count of backups for volume
- Policy
Enabled bool - Policy enabled
- Volume
Name string - Volume name
- Backups
Count int - Total count of backups for volume
- Policy
Enabled bool - Policy enabled
- Volume
Name string - Volume name
- backups
Count Integer - Total count of backups for volume
- policy
Enabled Boolean - Policy enabled
- volume
Name String - Volume name
- backups
Count number - Total count of backups for volume
- policy
Enabled boolean - Policy enabled
- volume
Name string - Volume name
- backups_
count int - Total count of backups for volume
- policy_
enabled bool - Policy enabled
- volume_
name str - Volume name
- backups
Count Number - Total count of backups for volume
- policy
Enabled Boolean - Policy enabled
- volume
Name String - Volume name
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:netapp:BackupPolicy account1/backupPolicyName /subscriptions/D633CC2E-722B-4AE1-B636-BBD9E4C60ED9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/backupPolocies/backupPolicyName
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0