1. Packages
  2. Azure Native
  3. API Docs
  4. netapp
  5. SnapshotPolicy
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.netapp.SnapshotPolicy

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Snapshot policy information

Uses Azure REST API version 2024-09-01. In version 2.x of the Azure Native provider, it used API version 2022-11-01.

Other available API versions: 2022-11-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview, 2023-11-01, 2023-11-01-preview, 2024-01-01, 2024-03-01, 2024-03-01-preview, 2024-05-01, 2024-05-01-preview, 2024-07-01, 2024-07-01-preview, 2024-09-01-preview, 2025-01-01, 2025-01-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native netapp [ApiVersion]. See the version guide for details.

Example Usage

SnapshotPolicies_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var snapshotPolicy = new AzureNative.NetApp.SnapshotPolicy("snapshotPolicy", new()
    {
        AccountName = "account1",
        DailySchedule = new AzureNative.NetApp.Inputs.DailyScheduleArgs
        {
            Hour = 14,
            Minute = 30,
            SnapshotsToKeep = 4,
        },
        Enabled = true,
        HourlySchedule = new AzureNative.NetApp.Inputs.HourlyScheduleArgs
        {
            Minute = 50,
            SnapshotsToKeep = 2,
        },
        Location = "eastus",
        MonthlySchedule = new AzureNative.NetApp.Inputs.MonthlyScheduleArgs
        {
            DaysOfMonth = "10,11,12",
            Hour = 14,
            Minute = 15,
            SnapshotsToKeep = 5,
        },
        ResourceGroupName = "myRG",
        SnapshotPolicyName = "snapshotPolicyName",
        WeeklySchedule = new AzureNative.NetApp.Inputs.WeeklyScheduleArgs
        {
            Day = "Wednesday",
            Hour = 14,
            Minute = 45,
            SnapshotsToKeep = 3,
        },
    });

});
Copy
package main

import (
	netapp "github.com/pulumi/pulumi-azure-native-sdk/netapp/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := netapp.NewSnapshotPolicy(ctx, "snapshotPolicy", &netapp.SnapshotPolicyArgs{
			AccountName: pulumi.String("account1"),
			DailySchedule: &netapp.DailyScheduleArgs{
				Hour:            pulumi.Int(14),
				Minute:          pulumi.Int(30),
				SnapshotsToKeep: pulumi.Int(4),
			},
			Enabled: pulumi.Bool(true),
			HourlySchedule: &netapp.HourlyScheduleArgs{
				Minute:          pulumi.Int(50),
				SnapshotsToKeep: pulumi.Int(2),
			},
			Location: pulumi.String("eastus"),
			MonthlySchedule: &netapp.MonthlyScheduleArgs{
				DaysOfMonth:     pulumi.String("10,11,12"),
				Hour:            pulumi.Int(14),
				Minute:          pulumi.Int(15),
				SnapshotsToKeep: pulumi.Int(5),
			},
			ResourceGroupName:  pulumi.String("myRG"),
			SnapshotPolicyName: pulumi.String("snapshotPolicyName"),
			WeeklySchedule: &netapp.WeeklyScheduleArgs{
				Day:             pulumi.String("Wednesday"),
				Hour:            pulumi.Int(14),
				Minute:          pulumi.Int(45),
				SnapshotsToKeep: pulumi.Int(3),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.netapp.SnapshotPolicy;
import com.pulumi.azurenative.netapp.SnapshotPolicyArgs;
import com.pulumi.azurenative.netapp.inputs.DailyScheduleArgs;
import com.pulumi.azurenative.netapp.inputs.HourlyScheduleArgs;
import com.pulumi.azurenative.netapp.inputs.MonthlyScheduleArgs;
import com.pulumi.azurenative.netapp.inputs.WeeklyScheduleArgs;
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 snapshotPolicy = new SnapshotPolicy("snapshotPolicy", SnapshotPolicyArgs.builder()
            .accountName("account1")
            .dailySchedule(DailyScheduleArgs.builder()
                .hour(14)
                .minute(30)
                .snapshotsToKeep(4)
                .build())
            .enabled(true)
            .hourlySchedule(HourlyScheduleArgs.builder()
                .minute(50)
                .snapshotsToKeep(2)
                .build())
            .location("eastus")
            .monthlySchedule(MonthlyScheduleArgs.builder()
                .daysOfMonth("10,11,12")
                .hour(14)
                .minute(15)
                .snapshotsToKeep(5)
                .build())
            .resourceGroupName("myRG")
            .snapshotPolicyName("snapshotPolicyName")
            .weeklySchedule(WeeklyScheduleArgs.builder()
                .day("Wednesday")
                .hour(14)
                .minute(45)
                .snapshotsToKeep(3)
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const snapshotPolicy = new azure_native.netapp.SnapshotPolicy("snapshotPolicy", {
    accountName: "account1",
    dailySchedule: {
        hour: 14,
        minute: 30,
        snapshotsToKeep: 4,
    },
    enabled: true,
    hourlySchedule: {
        minute: 50,
        snapshotsToKeep: 2,
    },
    location: "eastus",
    monthlySchedule: {
        daysOfMonth: "10,11,12",
        hour: 14,
        minute: 15,
        snapshotsToKeep: 5,
    },
    resourceGroupName: "myRG",
    snapshotPolicyName: "snapshotPolicyName",
    weeklySchedule: {
        day: "Wednesday",
        hour: 14,
        minute: 45,
        snapshotsToKeep: 3,
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

snapshot_policy = azure_native.netapp.SnapshotPolicy("snapshotPolicy",
    account_name="account1",
    daily_schedule={
        "hour": 14,
        "minute": 30,
        "snapshots_to_keep": 4,
    },
    enabled=True,
    hourly_schedule={
        "minute": 50,
        "snapshots_to_keep": 2,
    },
    location="eastus",
    monthly_schedule={
        "days_of_month": "10,11,12",
        "hour": 14,
        "minute": 15,
        "snapshots_to_keep": 5,
    },
    resource_group_name="myRG",
    snapshot_policy_name="snapshotPolicyName",
    weekly_schedule={
        "day": "Wednesday",
        "hour": 14,
        "minute": 45,
        "snapshots_to_keep": 3,
    })
Copy
resources:
  snapshotPolicy:
    type: azure-native:netapp:SnapshotPolicy
    properties:
      accountName: account1
      dailySchedule:
        hour: 14
        minute: 30
        snapshotsToKeep: 4
      enabled: true
      hourlySchedule:
        minute: 50
        snapshotsToKeep: 2
      location: eastus
      monthlySchedule:
        daysOfMonth: 10,11,12
        hour: 14
        minute: 15
        snapshotsToKeep: 5
      resourceGroupName: myRG
      snapshotPolicyName: snapshotPolicyName
      weeklySchedule:
        day: Wednesday
        hour: 14
        minute: 45
        snapshotsToKeep: 3
Copy

Create SnapshotPolicy Resource

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

Constructor syntax

new SnapshotPolicy(name: string, args: SnapshotPolicyArgs, opts?: CustomResourceOptions);
@overload
def SnapshotPolicy(resource_name: str,
                   args: SnapshotPolicyArgs,
                   opts: Optional[ResourceOptions] = None)

@overload
def SnapshotPolicy(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   account_name: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   daily_schedule: Optional[DailyScheduleArgs] = None,
                   enabled: Optional[bool] = None,
                   hourly_schedule: Optional[HourlyScheduleArgs] = None,
                   location: Optional[str] = None,
                   monthly_schedule: Optional[MonthlyScheduleArgs] = None,
                   snapshot_policy_name: Optional[str] = None,
                   tags: Optional[Mapping[str, str]] = None,
                   weekly_schedule: Optional[WeeklyScheduleArgs] = None)
func NewSnapshotPolicy(ctx *Context, name string, args SnapshotPolicyArgs, opts ...ResourceOption) (*SnapshotPolicy, error)
public SnapshotPolicy(string name, SnapshotPolicyArgs args, CustomResourceOptions? opts = null)
public SnapshotPolicy(String name, SnapshotPolicyArgs args)
public SnapshotPolicy(String name, SnapshotPolicyArgs args, CustomResourceOptions options)
type: azure-native:netapp:SnapshotPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SnapshotPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SnapshotPolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SnapshotPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SnapshotPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SnapshotPolicyArgs
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 snapshotPolicyResource = new AzureNative.NetApp.SnapshotPolicy("snapshotPolicyResource", new()
{
    AccountName = "string",
    ResourceGroupName = "string",
    DailySchedule = new AzureNative.NetApp.Inputs.DailyScheduleArgs
    {
        Hour = 0,
        Minute = 0,
        SnapshotsToKeep = 0,
        UsedBytes = 0,
    },
    Enabled = false,
    HourlySchedule = new AzureNative.NetApp.Inputs.HourlyScheduleArgs
    {
        Minute = 0,
        SnapshotsToKeep = 0,
        UsedBytes = 0,
    },
    Location = "string",
    MonthlySchedule = new AzureNative.NetApp.Inputs.MonthlyScheduleArgs
    {
        DaysOfMonth = "string",
        Hour = 0,
        Minute = 0,
        SnapshotsToKeep = 0,
        UsedBytes = 0,
    },
    SnapshotPolicyName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    WeeklySchedule = new AzureNative.NetApp.Inputs.WeeklyScheduleArgs
    {
        Day = "string",
        Hour = 0,
        Minute = 0,
        SnapshotsToKeep = 0,
        UsedBytes = 0,
    },
});
Copy
example, err := netapp.NewSnapshotPolicy(ctx, "snapshotPolicyResource", &netapp.SnapshotPolicyArgs{
	AccountName:       pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	DailySchedule: &netapp.DailyScheduleArgs{
		Hour:            pulumi.Int(0),
		Minute:          pulumi.Int(0),
		SnapshotsToKeep: pulumi.Int(0),
		UsedBytes:       pulumi.Float64(0),
	},
	Enabled: pulumi.Bool(false),
	HourlySchedule: &netapp.HourlyScheduleArgs{
		Minute:          pulumi.Int(0),
		SnapshotsToKeep: pulumi.Int(0),
		UsedBytes:       pulumi.Float64(0),
	},
	Location: pulumi.String("string"),
	MonthlySchedule: &netapp.MonthlyScheduleArgs{
		DaysOfMonth:     pulumi.String("string"),
		Hour:            pulumi.Int(0),
		Minute:          pulumi.Int(0),
		SnapshotsToKeep: pulumi.Int(0),
		UsedBytes:       pulumi.Float64(0),
	},
	SnapshotPolicyName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	WeeklySchedule: &netapp.WeeklyScheduleArgs{
		Day:             pulumi.String("string"),
		Hour:            pulumi.Int(0),
		Minute:          pulumi.Int(0),
		SnapshotsToKeep: pulumi.Int(0),
		UsedBytes:       pulumi.Float64(0),
	},
})
Copy
var snapshotPolicyResource = new SnapshotPolicy("snapshotPolicyResource", SnapshotPolicyArgs.builder()
    .accountName("string")
    .resourceGroupName("string")
    .dailySchedule(DailyScheduleArgs.builder()
        .hour(0)
        .minute(0)
        .snapshotsToKeep(0)
        .usedBytes(0)
        .build())
    .enabled(false)
    .hourlySchedule(HourlyScheduleArgs.builder()
        .minute(0)
        .snapshotsToKeep(0)
        .usedBytes(0)
        .build())
    .location("string")
    .monthlySchedule(MonthlyScheduleArgs.builder()
        .daysOfMonth("string")
        .hour(0)
        .minute(0)
        .snapshotsToKeep(0)
        .usedBytes(0)
        .build())
    .snapshotPolicyName("string")
    .tags(Map.of("string", "string"))
    .weeklySchedule(WeeklyScheduleArgs.builder()
        .day("string")
        .hour(0)
        .minute(0)
        .snapshotsToKeep(0)
        .usedBytes(0)
        .build())
    .build());
Copy
snapshot_policy_resource = azure_native.netapp.SnapshotPolicy("snapshotPolicyResource",
    account_name="string",
    resource_group_name="string",
    daily_schedule={
        "hour": 0,
        "minute": 0,
        "snapshots_to_keep": 0,
        "used_bytes": 0,
    },
    enabled=False,
    hourly_schedule={
        "minute": 0,
        "snapshots_to_keep": 0,
        "used_bytes": 0,
    },
    location="string",
    monthly_schedule={
        "days_of_month": "string",
        "hour": 0,
        "minute": 0,
        "snapshots_to_keep": 0,
        "used_bytes": 0,
    },
    snapshot_policy_name="string",
    tags={
        "string": "string",
    },
    weekly_schedule={
        "day": "string",
        "hour": 0,
        "minute": 0,
        "snapshots_to_keep": 0,
        "used_bytes": 0,
    })
Copy
const snapshotPolicyResource = new azure_native.netapp.SnapshotPolicy("snapshotPolicyResource", {
    accountName: "string",
    resourceGroupName: "string",
    dailySchedule: {
        hour: 0,
        minute: 0,
        snapshotsToKeep: 0,
        usedBytes: 0,
    },
    enabled: false,
    hourlySchedule: {
        minute: 0,
        snapshotsToKeep: 0,
        usedBytes: 0,
    },
    location: "string",
    monthlySchedule: {
        daysOfMonth: "string",
        hour: 0,
        minute: 0,
        snapshotsToKeep: 0,
        usedBytes: 0,
    },
    snapshotPolicyName: "string",
    tags: {
        string: "string",
    },
    weeklySchedule: {
        day: "string",
        hour: 0,
        minute: 0,
        snapshotsToKeep: 0,
        usedBytes: 0,
    },
});
Copy
type: azure-native:netapp:SnapshotPolicy
properties:
    accountName: string
    dailySchedule:
        hour: 0
        minute: 0
        snapshotsToKeep: 0
        usedBytes: 0
    enabled: false
    hourlySchedule:
        minute: 0
        snapshotsToKeep: 0
        usedBytes: 0
    location: string
    monthlySchedule:
        daysOfMonth: string
        hour: 0
        minute: 0
        snapshotsToKeep: 0
        usedBytes: 0
    resourceGroupName: string
    snapshotPolicyName: string
    tags:
        string: string
    weeklySchedule:
        day: string
        hour: 0
        minute: 0
        snapshotsToKeep: 0
        usedBytes: 0
Copy

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

AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DailySchedule Pulumi.AzureNative.NetApp.Inputs.DailySchedule
Schedule for daily snapshots
Enabled bool
The property to decide policy is enabled or not
HourlySchedule Pulumi.AzureNative.NetApp.Inputs.HourlySchedule
Schedule for hourly snapshots
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
MonthlySchedule Pulumi.AzureNative.NetApp.Inputs.MonthlySchedule
Schedule for monthly snapshots
SnapshotPolicyName Changes to this property will trigger replacement. string
The name of the snapshot policy
Tags Dictionary<string, string>
Resource tags.
WeeklySchedule Pulumi.AzureNative.NetApp.Inputs.WeeklySchedule
Schedule for weekly snapshots
AccountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DailySchedule DailyScheduleArgs
Schedule for daily snapshots
Enabled bool
The property to decide policy is enabled or not
HourlySchedule HourlyScheduleArgs
Schedule for hourly snapshots
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
MonthlySchedule MonthlyScheduleArgs
Schedule for monthly snapshots
SnapshotPolicyName Changes to this property will trigger replacement. string
The name of the snapshot policy
Tags map[string]string
Resource tags.
WeeklySchedule WeeklyScheduleArgs
Schedule for weekly snapshots
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
dailySchedule DailySchedule
Schedule for daily snapshots
enabled Boolean
The property to decide policy is enabled or not
hourlySchedule HourlySchedule
Schedule for hourly snapshots
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
monthlySchedule MonthlySchedule
Schedule for monthly snapshots
snapshotPolicyName Changes to this property will trigger replacement. String
The name of the snapshot policy
tags Map<String,String>
Resource tags.
weeklySchedule WeeklySchedule
Schedule for weekly snapshots
accountName
This property is required.
Changes to this property will trigger replacement.
string
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
dailySchedule DailySchedule
Schedule for daily snapshots
enabled boolean
The property to decide policy is enabled or not
hourlySchedule HourlySchedule
Schedule for hourly snapshots
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
monthlySchedule MonthlySchedule
Schedule for monthly snapshots
snapshotPolicyName Changes to this property will trigger replacement. string
The name of the snapshot policy
tags {[key: string]: string}
Resource tags.
weeklySchedule WeeklySchedule
Schedule for weekly snapshots
account_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the NetApp account
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
daily_schedule DailyScheduleArgs
Schedule for daily snapshots
enabled bool
The property to decide policy is enabled or not
hourly_schedule HourlyScheduleArgs
Schedule for hourly snapshots
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
monthly_schedule MonthlyScheduleArgs
Schedule for monthly snapshots
snapshot_policy_name Changes to this property will trigger replacement. str
The name of the snapshot policy
tags Mapping[str, str]
Resource tags.
weekly_schedule WeeklyScheduleArgs
Schedule for weekly snapshots
accountName
This property is required.
Changes to this property will trigger replacement.
String
The name of the NetApp account
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
dailySchedule Property Map
Schedule for daily snapshots
enabled Boolean
The property to decide policy is enabled or not
hourlySchedule Property Map
Schedule for hourly snapshots
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
monthlySchedule Property Map
Schedule for monthly snapshots
snapshotPolicyName Changes to this property will trigger replacement. String
The name of the snapshot policy
tags Map<String>
Resource tags.
weeklySchedule Property Map
Schedule for weekly snapshots

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Azure lifecycle management
SystemData Pulumi.AzureNative.NetApp.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
Azure lifecycle management
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Azure lifecycle management
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
etag string
A unique read-only string that changes whenever the resource is updated.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
Azure lifecycle management
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
etag str
A unique read-only string that changes whenever the resource is updated.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
Azure lifecycle management
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
Azure lifecycle management
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

DailySchedule
, DailyScheduleArgs

Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Daily snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Daily snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Daily snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Daily snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Daily snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Daily snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

DailyScheduleResponse
, DailyScheduleResponseArgs

Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Daily snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Daily snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Daily snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Daily snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Daily snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Daily snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

HourlySchedule
, HourlyScheduleArgs

Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Hourly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Hourly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Hourly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Hourly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Hourly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Hourly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

HourlyScheduleResponse
, HourlyScheduleResponseArgs

Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Hourly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Hourly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Hourly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Hourly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Hourly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Hourly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

MonthlySchedule
, MonthlyScheduleArgs

DaysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Monthly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
DaysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Monthly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth String
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Monthly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Monthly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
days_of_month str
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Monthly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth String
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Monthly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

MonthlyScheduleResponse
, MonthlyScheduleResponseArgs

DaysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Monthly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
DaysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Monthly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth String
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Monthly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth string
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Monthly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
days_of_month str
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Monthly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
daysOfMonth String
Indicates which days of the month snapshot should be taken. A comma delimited string.
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Monthly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

SystemDataResponse
, SystemDataResponseArgs

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

WeeklySchedule
, WeeklyScheduleArgs

Day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Weekly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Weekly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
day String
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Weekly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Weekly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
day str
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Weekly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
day String
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Weekly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

WeeklyScheduleResponse
, WeeklyScheduleResponseArgs

Day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Weekly snapshot count to keep
UsedBytes double
Resource size in bytes, current storage usage for the volume in bytes
Day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
Hour int
Indicates which hour in UTC timezone a snapshot should be taken
Minute int
Indicates which minute snapshot should be taken
SnapshotsToKeep int
Weekly snapshot count to keep
UsedBytes float64
Resource size in bytes, current storage usage for the volume in bytes
day String
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour Integer
Indicates which hour in UTC timezone a snapshot should be taken
minute Integer
Indicates which minute snapshot should be taken
snapshotsToKeep Integer
Weekly snapshot count to keep
usedBytes Double
Resource size in bytes, current storage usage for the volume in bytes
day string
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour number
Indicates which hour in UTC timezone a snapshot should be taken
minute number
Indicates which minute snapshot should be taken
snapshotsToKeep number
Weekly snapshot count to keep
usedBytes number
Resource size in bytes, current storage usage for the volume in bytes
day str
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour int
Indicates which hour in UTC timezone a snapshot should be taken
minute int
Indicates which minute snapshot should be taken
snapshots_to_keep int
Weekly snapshot count to keep
used_bytes float
Resource size in bytes, current storage usage for the volume in bytes
day String
Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english
hour Number
Indicates which hour in UTC timezone a snapshot should be taken
minute Number
Indicates which minute snapshot should be taken
snapshotsToKeep Number
Weekly snapshot count to keep
usedBytes Number
Resource size in bytes, current storage usage for the volume in bytes

Import

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

$ pulumi import azure-native:netapp:SnapshotPolicy account1/snapshotPolicy1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/netAppAccounts/{accountName}/snapshotPolicies/{snapshotPolicyName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi