We recommend using Azure Native.
azure.backup.PolicyFileShare
Explore with Pulumi AI
Manages an Azure File Share Backup Policy within a Recovery Services vault.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
    name: "tfex-recovery_vault",
    location: "West Europe",
});
const exampleVault = new azure.recoveryservices.Vault("example", {
    name: "tfex-recovery-vault",
    location: example.location,
    resourceGroupName: example.name,
    sku: "Standard",
});
const policy = new azure.backup.PolicyFileShare("policy", {
    name: "tfex-recovery-vault-policy",
    resourceGroupName: example.name,
    recoveryVaultName: exampleVault.name,
    timezone: "UTC",
    backup: {
        frequency: "Daily",
        time: "23:00",
    },
    retentionDaily: {
        count: 10,
    },
    retentionWeekly: {
        count: 7,
        weekdays: [
            "Sunday",
            "Wednesday",
            "Friday",
            "Saturday",
        ],
    },
    retentionMonthly: {
        count: 7,
        weekdays: [
            "Sunday",
            "Wednesday",
        ],
        weeks: [
            "First",
            "Last",
        ],
    },
    retentionYearly: {
        count: 7,
        weekdays: ["Sunday"],
        weeks: ["Last"],
        months: ["January"],
    },
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="tfex-recovery_vault",
    location="West Europe")
example_vault = azure.recoveryservices.Vault("example",
    name="tfex-recovery-vault",
    location=example.location,
    resource_group_name=example.name,
    sku="Standard")
policy = azure.backup.PolicyFileShare("policy",
    name="tfex-recovery-vault-policy",
    resource_group_name=example.name,
    recovery_vault_name=example_vault.name,
    timezone="UTC",
    backup={
        "frequency": "Daily",
        "time": "23:00",
    },
    retention_daily={
        "count": 10,
    },
    retention_weekly={
        "count": 7,
        "weekdays": [
            "Sunday",
            "Wednesday",
            "Friday",
            "Saturday",
        ],
    },
    retention_monthly={
        "count": 7,
        "weekdays": [
            "Sunday",
            "Wednesday",
        ],
        "weeks": [
            "First",
            "Last",
        ],
    },
    retention_yearly={
        "count": 7,
        "weekdays": ["Sunday"],
        "weeks": ["Last"],
        "months": ["January"],
    })
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/backup"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/recoveryservices"
	"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("tfex-recovery_vault"),
			Location: pulumi.String("West Europe"),
		})
		if err != nil {
			return err
		}
		exampleVault, err := recoveryservices.NewVault(ctx, "example", &recoveryservices.VaultArgs{
			Name:              pulumi.String("tfex-recovery-vault"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("Standard"),
		})
		if err != nil {
			return err
		}
		_, err = backup.NewPolicyFileShare(ctx, "policy", &backup.PolicyFileShareArgs{
			Name:              pulumi.String("tfex-recovery-vault-policy"),
			ResourceGroupName: example.Name,
			RecoveryVaultName: exampleVault.Name,
			Timezone:          pulumi.String("UTC"),
			Backup: &backup.PolicyFileShareBackupArgs{
				Frequency: pulumi.String("Daily"),
				Time:      pulumi.String("23:00"),
			},
			RetentionDaily: &backup.PolicyFileShareRetentionDailyArgs{
				Count: pulumi.Int(10),
			},
			RetentionWeekly: &backup.PolicyFileShareRetentionWeeklyArgs{
				Count: pulumi.Int(7),
				Weekdays: pulumi.StringArray{
					pulumi.String("Sunday"),
					pulumi.String("Wednesday"),
					pulumi.String("Friday"),
					pulumi.String("Saturday"),
				},
			},
			RetentionMonthly: &backup.PolicyFileShareRetentionMonthlyArgs{
				Count: pulumi.Int(7),
				Weekdays: pulumi.StringArray{
					pulumi.String("Sunday"),
					pulumi.String("Wednesday"),
				},
				Weeks: pulumi.StringArray{
					pulumi.String("First"),
					pulumi.String("Last"),
				},
			},
			RetentionYearly: &backup.PolicyFileShareRetentionYearlyArgs{
				Count: pulumi.Int(7),
				Weekdays: pulumi.StringArray{
					pulumi.String("Sunday"),
				},
				Weeks: pulumi.StringArray{
					pulumi.String("Last"),
				},
				Months: pulumi.StringArray{
					pulumi.String("January"),
				},
			},
		})
		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 = "tfex-recovery_vault",
        Location = "West Europe",
    });
    var exampleVault = new Azure.RecoveryServices.Vault("example", new()
    {
        Name = "tfex-recovery-vault",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "Standard",
    });
    var policy = new Azure.Backup.PolicyFileShare("policy", new()
    {
        Name = "tfex-recovery-vault-policy",
        ResourceGroupName = example.Name,
        RecoveryVaultName = exampleVault.Name,
        Timezone = "UTC",
        Backup = new Azure.Backup.Inputs.PolicyFileShareBackupArgs
        {
            Frequency = "Daily",
            Time = "23:00",
        },
        RetentionDaily = new Azure.Backup.Inputs.PolicyFileShareRetentionDailyArgs
        {
            Count = 10,
        },
        RetentionWeekly = new Azure.Backup.Inputs.PolicyFileShareRetentionWeeklyArgs
        {
            Count = 7,
            Weekdays = new[]
            {
                "Sunday",
                "Wednesday",
                "Friday",
                "Saturday",
            },
        },
        RetentionMonthly = new Azure.Backup.Inputs.PolicyFileShareRetentionMonthlyArgs
        {
            Count = 7,
            Weekdays = new[]
            {
                "Sunday",
                "Wednesday",
            },
            Weeks = new[]
            {
                "First",
                "Last",
            },
        },
        RetentionYearly = new Azure.Backup.Inputs.PolicyFileShareRetentionYearlyArgs
        {
            Count = 7,
            Weekdays = new[]
            {
                "Sunday",
            },
            Weeks = new[]
            {
                "Last",
            },
            Months = new[]
            {
                "January",
            },
        },
    });
});
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.recoveryservices.Vault;
import com.pulumi.azure.recoveryservices.VaultArgs;
import com.pulumi.azure.backup.PolicyFileShare;
import com.pulumi.azure.backup.PolicyFileShareArgs;
import com.pulumi.azure.backup.inputs.PolicyFileShareBackupArgs;
import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionDailyArgs;
import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionWeeklyArgs;
import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionMonthlyArgs;
import com.pulumi.azure.backup.inputs.PolicyFileShareRetentionYearlyArgs;
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("tfex-recovery_vault")
            .location("West Europe")
            .build());
        var exampleVault = new Vault("exampleVault", VaultArgs.builder()
            .name("tfex-recovery-vault")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("Standard")
            .build());
        var policy = new PolicyFileShare("policy", PolicyFileShareArgs.builder()
            .name("tfex-recovery-vault-policy")
            .resourceGroupName(example.name())
            .recoveryVaultName(exampleVault.name())
            .timezone("UTC")
            .backup(PolicyFileShareBackupArgs.builder()
                .frequency("Daily")
                .time("23:00")
                .build())
            .retentionDaily(PolicyFileShareRetentionDailyArgs.builder()
                .count(10)
                .build())
            .retentionWeekly(PolicyFileShareRetentionWeeklyArgs.builder()
                .count(7)
                .weekdays(                
                    "Sunday",
                    "Wednesday",
                    "Friday",
                    "Saturday")
                .build())
            .retentionMonthly(PolicyFileShareRetentionMonthlyArgs.builder()
                .count(7)
                .weekdays(                
                    "Sunday",
                    "Wednesday")
                .weeks(                
                    "First",
                    "Last")
                .build())
            .retentionYearly(PolicyFileShareRetentionYearlyArgs.builder()
                .count(7)
                .weekdays("Sunday")
                .weeks("Last")
                .months("January")
                .build())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: tfex-recovery_vault
      location: West Europe
  exampleVault:
    type: azure:recoveryservices:Vault
    name: example
    properties:
      name: tfex-recovery-vault
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: Standard
  policy:
    type: azure:backup:PolicyFileShare
    properties:
      name: tfex-recovery-vault-policy
      resourceGroupName: ${example.name}
      recoveryVaultName: ${exampleVault.name}
      timezone: UTC
      backup:
        frequency: Daily
        time: 23:00
      retentionDaily:
        count: 10
      retentionWeekly:
        count: 7
        weekdays:
          - Sunday
          - Wednesday
          - Friday
          - Saturday
      retentionMonthly:
        count: 7
        weekdays:
          - Sunday
          - Wednesday
        weeks:
          - First
          - Last
      retentionYearly:
        count: 7
        weekdays:
          - Sunday
        weeks:
          - Last
        months:
          - January
Create PolicyFileShare Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyFileShare(name: string, args: PolicyFileShareArgs, opts?: CustomResourceOptions);@overload
def PolicyFileShare(resource_name: str,
                    args: PolicyFileShareArgs,
                    opts: Optional[ResourceOptions] = None)
@overload
def PolicyFileShare(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    backup: Optional[PolicyFileShareBackupArgs] = None,
                    recovery_vault_name: Optional[str] = None,
                    resource_group_name: Optional[str] = None,
                    retention_daily: Optional[PolicyFileShareRetentionDailyArgs] = None,
                    name: Optional[str] = None,
                    retention_monthly: Optional[PolicyFileShareRetentionMonthlyArgs] = None,
                    retention_weekly: Optional[PolicyFileShareRetentionWeeklyArgs] = None,
                    retention_yearly: Optional[PolicyFileShareRetentionYearlyArgs] = None,
                    timezone: Optional[str] = None)func NewPolicyFileShare(ctx *Context, name string, args PolicyFileShareArgs, opts ...ResourceOption) (*PolicyFileShare, error)public PolicyFileShare(string name, PolicyFileShareArgs args, CustomResourceOptions? opts = null)
public PolicyFileShare(String name, PolicyFileShareArgs args)
public PolicyFileShare(String name, PolicyFileShareArgs args, CustomResourceOptions options)
type: azure:backup:PolicyFileShare
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 PolicyFileShareArgs
- 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 PolicyFileShareArgs
- 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 PolicyFileShareArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyFileShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyFileShareArgs
- 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 policyFileShareResource = new Azure.Backup.PolicyFileShare("policyFileShareResource", new()
{
    Backup = new Azure.Backup.Inputs.PolicyFileShareBackupArgs
    {
        Frequency = "string",
        Hourly = new Azure.Backup.Inputs.PolicyFileShareBackupHourlyArgs
        {
            Interval = 0,
            StartTime = "string",
            WindowDuration = 0,
        },
        Time = "string",
    },
    RecoveryVaultName = "string",
    ResourceGroupName = "string",
    RetentionDaily = new Azure.Backup.Inputs.PolicyFileShareRetentionDailyArgs
    {
        Count = 0,
    },
    Name = "string",
    RetentionMonthly = new Azure.Backup.Inputs.PolicyFileShareRetentionMonthlyArgs
    {
        Count = 0,
        Days = new[]
        {
            0,
        },
        IncludeLastDays = false,
        Weekdays = new[]
        {
            "string",
        },
        Weeks = new[]
        {
            "string",
        },
    },
    RetentionWeekly = new Azure.Backup.Inputs.PolicyFileShareRetentionWeeklyArgs
    {
        Count = 0,
        Weekdays = new[]
        {
            "string",
        },
    },
    RetentionYearly = new Azure.Backup.Inputs.PolicyFileShareRetentionYearlyArgs
    {
        Count = 0,
        Months = new[]
        {
            "string",
        },
        Days = new[]
        {
            0,
        },
        IncludeLastDays = false,
        Weekdays = new[]
        {
            "string",
        },
        Weeks = new[]
        {
            "string",
        },
    },
    Timezone = "string",
});
example, err := backup.NewPolicyFileShare(ctx, "policyFileShareResource", &backup.PolicyFileShareArgs{
	Backup: &backup.PolicyFileShareBackupArgs{
		Frequency: pulumi.String("string"),
		Hourly: &backup.PolicyFileShareBackupHourlyArgs{
			Interval:       pulumi.Int(0),
			StartTime:      pulumi.String("string"),
			WindowDuration: pulumi.Int(0),
		},
		Time: pulumi.String("string"),
	},
	RecoveryVaultName: pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	RetentionDaily: &backup.PolicyFileShareRetentionDailyArgs{
		Count: pulumi.Int(0),
	},
	Name: pulumi.String("string"),
	RetentionMonthly: &backup.PolicyFileShareRetentionMonthlyArgs{
		Count: pulumi.Int(0),
		Days: pulumi.IntArray{
			pulumi.Int(0),
		},
		IncludeLastDays: pulumi.Bool(false),
		Weekdays: pulumi.StringArray{
			pulumi.String("string"),
		},
		Weeks: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	RetentionWeekly: &backup.PolicyFileShareRetentionWeeklyArgs{
		Count: pulumi.Int(0),
		Weekdays: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	RetentionYearly: &backup.PolicyFileShareRetentionYearlyArgs{
		Count: pulumi.Int(0),
		Months: pulumi.StringArray{
			pulumi.String("string"),
		},
		Days: pulumi.IntArray{
			pulumi.Int(0),
		},
		IncludeLastDays: pulumi.Bool(false),
		Weekdays: pulumi.StringArray{
			pulumi.String("string"),
		},
		Weeks: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Timezone: pulumi.String("string"),
})
var policyFileShareResource = new PolicyFileShare("policyFileShareResource", PolicyFileShareArgs.builder()
    .backup(PolicyFileShareBackupArgs.builder()
        .frequency("string")
        .hourly(PolicyFileShareBackupHourlyArgs.builder()
            .interval(0)
            .startTime("string")
            .windowDuration(0)
            .build())
        .time("string")
        .build())
    .recoveryVaultName("string")
    .resourceGroupName("string")
    .retentionDaily(PolicyFileShareRetentionDailyArgs.builder()
        .count(0)
        .build())
    .name("string")
    .retentionMonthly(PolicyFileShareRetentionMonthlyArgs.builder()
        .count(0)
        .days(0)
        .includeLastDays(false)
        .weekdays("string")
        .weeks("string")
        .build())
    .retentionWeekly(PolicyFileShareRetentionWeeklyArgs.builder()
        .count(0)
        .weekdays("string")
        .build())
    .retentionYearly(PolicyFileShareRetentionYearlyArgs.builder()
        .count(0)
        .months("string")
        .days(0)
        .includeLastDays(false)
        .weekdays("string")
        .weeks("string")
        .build())
    .timezone("string")
    .build());
policy_file_share_resource = azure.backup.PolicyFileShare("policyFileShareResource",
    backup={
        "frequency": "string",
        "hourly": {
            "interval": 0,
            "start_time": "string",
            "window_duration": 0,
        },
        "time": "string",
    },
    recovery_vault_name="string",
    resource_group_name="string",
    retention_daily={
        "count": 0,
    },
    name="string",
    retention_monthly={
        "count": 0,
        "days": [0],
        "include_last_days": False,
        "weekdays": ["string"],
        "weeks": ["string"],
    },
    retention_weekly={
        "count": 0,
        "weekdays": ["string"],
    },
    retention_yearly={
        "count": 0,
        "months": ["string"],
        "days": [0],
        "include_last_days": False,
        "weekdays": ["string"],
        "weeks": ["string"],
    },
    timezone="string")
const policyFileShareResource = new azure.backup.PolicyFileShare("policyFileShareResource", {
    backup: {
        frequency: "string",
        hourly: {
            interval: 0,
            startTime: "string",
            windowDuration: 0,
        },
        time: "string",
    },
    recoveryVaultName: "string",
    resourceGroupName: "string",
    retentionDaily: {
        count: 0,
    },
    name: "string",
    retentionMonthly: {
        count: 0,
        days: [0],
        includeLastDays: false,
        weekdays: ["string"],
        weeks: ["string"],
    },
    retentionWeekly: {
        count: 0,
        weekdays: ["string"],
    },
    retentionYearly: {
        count: 0,
        months: ["string"],
        days: [0],
        includeLastDays: false,
        weekdays: ["string"],
        weeks: ["string"],
    },
    timezone: "string",
});
type: azure:backup:PolicyFileShare
properties:
    backup:
        frequency: string
        hourly:
            interval: 0
            startTime: string
            windowDuration: 0
        time: string
    name: string
    recoveryVaultName: string
    resourceGroupName: string
    retentionDaily:
        count: 0
    retentionMonthly:
        count: 0
        days:
            - 0
        includeLastDays: false
        weekdays:
            - string
        weeks:
            - string
    retentionWeekly:
        count: 0
        weekdays:
            - string
    retentionYearly:
        count: 0
        days:
            - 0
        includeLastDays: false
        months:
            - string
        weekdays:
            - string
        weeks:
            - string
    timezone: string
PolicyFileShare 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 PolicyFileShare resource accepts the following input properties:
- Backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- RecoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- RetentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- Name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- RetentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- RetentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- RetentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- Backup
PolicyFile Share Backup Args 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- RecoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- RetentionDaily PolicyFile Share Retention Daily Args 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- Name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- RetentionMonthly PolicyFile Share Retention Monthly Args 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- RetentionWeekly PolicyFile Share Retention Weekly Args 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- RetentionYearly PolicyFile Share Retention Yearly Args 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- recoveryVault StringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- name String
- Specifies the name of the policy. Changing this forces a new resource to be created.
- retentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone String
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- recoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- retentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup Args 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- recovery_vault_ strname 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource_group_ strname 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retention_daily PolicyFile Share Retention Daily Args 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- name str
- Specifies the name of the policy. Changing this forces a new resource to be created.
- retention_monthly PolicyFile Share Retention Monthly Args 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retention_weekly PolicyFile Share Retention Weekly Args 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retention_yearly PolicyFile Share Retention Yearly Args 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone str
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup Property Map
- Configures the Policy backup frequency and times as documented in the backupblock below.
- recoveryVault StringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily Property Map
- Configures the policy daily retention as documented in the retention_dailyblock below.
- name String
- Specifies the name of the policy. Changing this forces a new resource to be created.
- retentionMonthly Property Map
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly Property Map
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly Property Map
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone String
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyFileShare 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 PolicyFileShare Resource
Get an existing PolicyFileShare 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?: PolicyFileShareState, opts?: CustomResourceOptions): PolicyFileShare@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        backup: Optional[PolicyFileShareBackupArgs] = None,
        name: Optional[str] = None,
        recovery_vault_name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        retention_daily: Optional[PolicyFileShareRetentionDailyArgs] = None,
        retention_monthly: Optional[PolicyFileShareRetentionMonthlyArgs] = None,
        retention_weekly: Optional[PolicyFileShareRetentionWeeklyArgs] = None,
        retention_yearly: Optional[PolicyFileShareRetentionYearlyArgs] = None,
        timezone: Optional[str] = None) -> PolicyFileSharefunc GetPolicyFileShare(ctx *Context, name string, id IDInput, state *PolicyFileShareState, opts ...ResourceOption) (*PolicyFileShare, error)public static PolicyFileShare Get(string name, Input<string> id, PolicyFileShareState? state, CustomResourceOptions? opts = null)public static PolicyFileShare get(String name, Output<String> id, PolicyFileShareState state, CustomResourceOptions options)resources:  _:    type: azure:backup:PolicyFileShare    get:      id: ${id}- 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.
- Backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- Name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- RecoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- RetentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- RetentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- RetentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- RetentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- Backup
PolicyFile Share Backup Args 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- Name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- RecoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- ResourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- RetentionDaily PolicyFile Share Retention Daily Args 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- RetentionMonthly PolicyFile Share Retention Monthly Args 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- RetentionWeekly PolicyFile Share Retention Weekly Args 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- RetentionYearly PolicyFile Share Retention Yearly Args 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- Timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- name String
- Specifies the name of the policy. Changing this forces a new resource to be created.
- recoveryVault StringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- retentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone String
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- name string
- Specifies the name of the policy. Changing this forces a new resource to be created.
- recoveryVault stringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup stringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily PolicyFile Share Retention Daily 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- retentionMonthly PolicyFile Share Retention Monthly 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly PolicyFile Share Retention Weekly 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly PolicyFile Share Retention Yearly 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone string
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup
PolicyFile Share Backup Args 
- Configures the Policy backup frequency and times as documented in the backupblock below.
- name str
- Specifies the name of the policy. Changing this forces a new resource to be created.
- recovery_vault_ strname 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resource_group_ strname 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retention_daily PolicyFile Share Retention Daily Args 
- Configures the policy daily retention as documented in the retention_dailyblock below.
- retention_monthly PolicyFile Share Retention Monthly Args 
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retention_weekly PolicyFile Share Retention Weekly Args 
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retention_yearly PolicyFile Share Retention Yearly Args 
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone str
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
- backup Property Map
- Configures the Policy backup frequency and times as documented in the backupblock below.
- name String
- Specifies the name of the policy. Changing this forces a new resource to be created.
- recoveryVault StringName 
- Specifies the name of the Recovery Services Vault to use. Changing this forces a new resource to be created.
- resourceGroup StringName 
- The name of the resource group in which to create the policy. Changing this forces a new resource to be created.
- retentionDaily Property Map
- Configures the policy daily retention as documented in the retention_dailyblock below.
- retentionMonthly Property Map
- Configures the policy monthly retention as documented in the retention_monthlyblock below.
- retentionWeekly Property Map
- Configures the policy weekly retention as documented in the retention_weeklyblock below.
- retentionYearly Property Map
- Configures the policy yearly retention as documented in the retention_yearlyblock below.
- timezone String
- Specifies the timezone. the possible values are defined here. Defaults to - UTC- NOTE: The maximum number of snapshots that Azure Files can retain is 200. If your combined snapshot count exceeds 200 based on your retention policies, it will result in an error. See this article for more information. 
Supporting Types
PolicyFileShareBackup, PolicyFileShareBackupArgs        
- Frequency string
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- Hourly
PolicyFile Share Backup Hourly 
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- Time string
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
- Frequency string
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- Hourly
PolicyFile Share Backup Hourly 
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- Time string
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
- frequency String
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- hourly
PolicyFile Share Backup Hourly 
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- time String
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
- frequency string
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- hourly
PolicyFile Share Backup Hourly 
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- time string
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
- frequency str
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- hourly
PolicyFile Share Backup Hourly 
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- time str
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
- frequency String
- Sets the backup frequency. Possible values are - Dailyand- Hourly.- NOTE: This argument is made available for consistency with VM backup policies and to allow for potential future support of weekly backups 
- hourly Property Map
- A hourlyblock defined as below. This is required whenfrequencyis set toHourly.
- time String
- The time of day to perform the backup in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.) - NOTE: - timeis required when- frequencyis set to- Daily.
PolicyFileShareBackupHourly, PolicyFileShareBackupHourlyArgs          
- Interval int
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- StartTime string
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- WindowDuration int
- Species the duration of the backup window in hours. Details could be found here.
- Interval int
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- StartTime string
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- WindowDuration int
- Species the duration of the backup window in hours. Details could be found here.
- interval Integer
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- startTime String
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- windowDuration Integer
- Species the duration of the backup window in hours. Details could be found here.
- interval number
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- startTime string
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- windowDuration number
- Species the duration of the backup window in hours. Details could be found here.
- interval int
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- start_time str
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- window_duration int
- Species the duration of the backup window in hours. Details could be found here.
- interval Number
- Specifies the interval at which backup needs to be triggered. Possible values are 4,6,8and12.
- startTime String
- Specifies the start time of the hourly backup. The time format should be in 24-hour format. Times must be either on the hour or half hour (e.g. 12:00, 12:30, 13:00, etc.).
- windowDuration Number
- Species the duration of the backup window in hours. Details could be found here.
PolicyFileShareRetentionDaily, PolicyFileShareRetentionDailyArgs          
- Count int
- The number of daily backups to keep. Must be between 1and200(inclusive)
- Count int
- The number of daily backups to keep. Must be between 1and200(inclusive)
- count Integer
- The number of daily backups to keep. Must be between 1and200(inclusive)
- count number
- The number of daily backups to keep. Must be between 1and200(inclusive)
- count int
- The number of daily backups to keep. Must be between 1and200(inclusive)
- count Number
- The number of daily backups to keep. Must be between 1and200(inclusive)
PolicyFileShareRetentionMonthly, PolicyFileShareRetentionMonthlyArgs          
- Count int
- The number of monthly backups to keep. Must be between 1and120
- Days List<int>
- The days of the month to retain backups of. Must be between 1and31.
- IncludeLast boolDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- Weekdays List<string>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- Weeks List<string>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- Count int
- The number of monthly backups to keep. Must be between 1and120
- Days []int
- The days of the month to retain backups of. Must be between 1and31.
- IncludeLast boolDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- Weekdays []string
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- Weeks []string
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count Integer
- The number of monthly backups to keep. Must be between 1and120
- days List<Integer>
- The days of the month to retain backups of. Must be between 1and31.
- includeLast BooleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays List<String>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks List<String>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count number
- The number of monthly backups to keep. Must be between 1and120
- days number[]
- The days of the month to retain backups of. Must be between 1and31.
- includeLast booleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays string[]
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks string[]
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count int
- The number of monthly backups to keep. Must be between 1and120
- days Sequence[int]
- The days of the month to retain backups of. Must be between 1and31.
- include_last_ booldays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays Sequence[str]
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks Sequence[str]
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count Number
- The number of monthly backups to keep. Must be between 1and120
- days List<Number>
- The days of the month to retain backups of. Must be between 1and31.
- includeLast BooleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays List<String>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks List<String>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
PolicyFileShareRetentionWeekly, PolicyFileShareRetentionWeeklyArgs          
PolicyFileShareRetentionYearly, PolicyFileShareRetentionYearlyArgs          
- Count int
- The number of yearly backups to keep. Must be between 1and10
- Months List<string>
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- Days List<int>
- The days of the month to retain backups of. Must be between 1and31.
- IncludeLast boolDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- Weekdays List<string>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- Weeks List<string>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- Count int
- The number of yearly backups to keep. Must be between 1and10
- Months []string
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- Days []int
- The days of the month to retain backups of. Must be between 1and31.
- IncludeLast boolDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- Weekdays []string
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- Weeks []string
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count Integer
- The number of yearly backups to keep. Must be between 1and10
- months List<String>
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- days List<Integer>
- The days of the month to retain backups of. Must be between 1and31.
- includeLast BooleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays List<String>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks List<String>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count number
- The number of yearly backups to keep. Must be between 1and10
- months string[]
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- days number[]
- The days of the month to retain backups of. Must be between 1and31.
- includeLast booleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays string[]
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks string[]
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count int
- The number of yearly backups to keep. Must be between 1and10
- months Sequence[str]
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- days Sequence[int]
- The days of the month to retain backups of. Must be between 1and31.
- include_last_ booldays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays Sequence[str]
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks Sequence[str]
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
- count Number
- The number of yearly backups to keep. Must be between 1and10
- months List<String>
- The months of the year to retain backups of. Must be one of January,February,March,April,May,June,July,Augest,September,October,NovemberandDecember.
- days List<Number>
- The days of the month to retain backups of. Must be between 1and31.
- includeLast BooleanDays 
- Including the last day of the month, default to - false.- NOTE:: Either - weekdaysand- weeksor- daysand- include_last_daysmust be specified.
- weekdays List<String>
- The weekday backups to retain . Must be one of Sunday,Monday,Tuesday,Wednesday,Thursday,FridayorSaturday.
- weeks List<String>
- The weeks of the month to retain backups of. Must be one of First,Second,Third,Fourth,Last.
Import
Azure File Share Backup Policies can be imported using the resource id, e.g.
$ pulumi import azure:backup/policyFileShare:PolicyFileShare policy1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.RecoveryServices/vaults/example-recovery-vault/backupPolicies/policy1
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 azurermTerraform Provider.