1. Packages
  2. Azure Native
  3. API Docs
  4. netapp
  5. SnapshotPolicy
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

azure-native.netapp.SnapshotPolicy

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi

    Snapshot policy information Azure REST API version: 2022-11-01. Prior API version in Azure Native 1.x: 2020-12-01.

    Other available API versions: 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01.

    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,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/netapp/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    snapshot_policy = azure_native.netapp.SnapshotPolicy("snapshotPolicy",
        account_name="account1",
        daily_schedule=azure_native.netapp.DailyScheduleArgs(
            hour=14,
            minute=30,
            snapshots_to_keep=4,
        ),
        enabled=True,
        hourly_schedule=azure_native.netapp.HourlyScheduleArgs(
            minute=50,
            snapshots_to_keep=2,
        ),
        location="eastus",
        monthly_schedule=azure_native.netapp.MonthlyScheduleArgs(
            days_of_month="10,11,12",
            hour=14,
            minute=15,
            snapshots_to_keep=5,
        ),
        resource_group_name="myRG",
        snapshot_policy_name="snapshotPolicyName",
        weekly_schedule=azure_native.netapp.WeeklyScheduleArgs(
            day="Wednesday",
            hour=14,
            minute=45,
            snapshots_to_keep=3,
        ))
    
    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,
        },
    });
    
    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
    

    Create SnapshotPolicy Resource

    new SnapshotPolicy(name: string, args: SnapshotPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def SnapshotPolicy(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       account_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,
                       resource_group_name: Optional[str] = None,
                       snapshot_policy_name: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None,
                       weekly_schedule: Optional[WeeklyScheduleArgs] = None)
    @overload
    def SnapshotPolicy(resource_name: str,
                       args: SnapshotPolicyArgs,
                       opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args SnapshotPolicyArgs
    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 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 string
    The unique name of the resource.
    args SnapshotPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SnapshotPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SnapshotPolicyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The SnapshotPolicy resource accepts the following input properties:

    AccountName string
    The name of the NetApp account
    ResourceGroupName 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 string
    The geo-location where the resource lives
    MonthlySchedule Pulumi.AzureNative.NetApp.Inputs.MonthlySchedule
    Schedule for monthly snapshots
    SnapshotPolicyName string
    The name of the snapshot policy
    Tags Dictionary<string, string>
    Resource tags.
    WeeklySchedule Pulumi.AzureNative.NetApp.Inputs.WeeklySchedule
    Schedule for weekly snapshots
    AccountName string
    The name of the NetApp account
    ResourceGroupName 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 string
    The geo-location where the resource lives
    MonthlySchedule MonthlyScheduleArgs
    Schedule for monthly snapshots
    SnapshotPolicyName string
    The name of the snapshot policy
    Tags map[string]string
    Resource tags.
    WeeklySchedule WeeklyScheduleArgs
    Schedule for weekly snapshots
    accountName String
    The name of the NetApp account
    resourceGroupName 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 String
    The geo-location where the resource lives
    monthlySchedule MonthlySchedule
    Schedule for monthly snapshots
    snapshotPolicyName String
    The name of the snapshot policy
    tags Map<String,String>
    Resource tags.
    weeklySchedule WeeklySchedule
    Schedule for weekly snapshots
    accountName string
    The name of the NetApp account
    resourceGroupName 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 string
    The geo-location where the resource lives
    monthlySchedule MonthlySchedule
    Schedule for monthly snapshots
    snapshotPolicyName string
    The name of the snapshot policy
    tags {[key: string]: string}
    Resource tags.
    weeklySchedule WeeklySchedule
    Schedule for weekly snapshots
    account_name str
    The name of the NetApp account
    resource_group_name 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 str
    The geo-location where the resource lives
    monthly_schedule MonthlyScheduleArgs
    Schedule for monthly snapshots
    snapshot_policy_name str
    The name of the snapshot policy
    tags Mapping[str, str]
    Resource tags.
    weekly_schedule WeeklyScheduleArgs
    Schedule for weekly snapshots
    accountName String
    The name of the NetApp account
    resourceGroupName 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 String
    The geo-location where the resource lives
    monthlySchedule Property Map
    Schedule for monthly snapshots
    snapshotPolicyName 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:

    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"
    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"
    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"
    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"
    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"
    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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.34.0 published on Thursday, Mar 28, 2024 by Pulumi