1. Packages
  2. Azure Native
  3. API Docs
  4. netapp
  5. ElasticSnapshotPolicy
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
azure-native logo
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.13.0 published on Wednesday, Jan 28, 2026 by Pulumi

    NetApp Elastic Snapshot Policy under an Elastic Account

    Uses Azure REST API version 2025-09-01-preview.

    Example Usage

    ElasticSnapshotPolicies_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var elasticSnapshotPolicy = new AzureNative.NetApp.ElasticSnapshotPolicy("elasticSnapshotPolicy", new()
        {
            AccountName = "account1",
            Location = "eastus",
            Properties = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyPropertiesArgs
            {
                DailySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyDailyScheduleArgs
                {
                    Hour = 14,
                    Minute = 30,
                    SnapshotsToKeep = 4,
                },
                HourlySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyHourlyScheduleArgs
                {
                    Minute = 50,
                    SnapshotsToKeep = 2,
                },
                MonthlySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyMonthlyScheduleArgs
                {
                    DaysOfMonth = new[]
                    {
                        10,
                        11,
                        12,
                    },
                    Hour = 14,
                    Minute = 15,
                    SnapshotsToKeep = 5,
                },
                PolicyStatus = AzureNative.NetApp.PolicyStatus.Enabled,
                WeeklySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyWeeklyScheduleArgs
                {
                    Days = new[]
                    {
                        AzureNative.NetApp.DayOfWeek.Wednesday,
                    },
                    Hour = 14,
                    Minute = 45,
                    SnapshotsToKeep = 3,
                },
            },
            ResourceGroupName = "myRG",
            SnapshotPolicyName = "snapshotPolicyName",
        });
    
    });
    
    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.NewElasticSnapshotPolicy(ctx, "elasticSnapshotPolicy", &netapp.ElasticSnapshotPolicyArgs{
    			AccountName: pulumi.String("account1"),
    			Location:    pulumi.String("eastus"),
    			Properties: &netapp.ElasticSnapshotPolicyPropertiesArgs{
    				DailySchedule: &netapp.ElasticSnapshotPolicyDailyScheduleArgs{
    					Hour:            pulumi.Int(14),
    					Minute:          pulumi.Int(30),
    					SnapshotsToKeep: pulumi.Int(4),
    				},
    				HourlySchedule: &netapp.ElasticSnapshotPolicyHourlyScheduleArgs{
    					Minute:          pulumi.Int(50),
    					SnapshotsToKeep: pulumi.Int(2),
    				},
    				MonthlySchedule: &netapp.ElasticSnapshotPolicyMonthlyScheduleArgs{
    					DaysOfMonth: pulumi.IntArray{
    						pulumi.Int(10),
    						pulumi.Int(11),
    						pulumi.Int(12),
    					},
    					Hour:            pulumi.Int(14),
    					Minute:          pulumi.Int(15),
    					SnapshotsToKeep: pulumi.Int(5),
    				},
    				PolicyStatus: pulumi.String(netapp.PolicyStatusEnabled),
    				WeeklySchedule: &netapp.ElasticSnapshotPolicyWeeklyScheduleArgs{
    					Days: pulumi.StringArray{
    						pulumi.String(netapp.DayOfWeekWednesday),
    					},
    					Hour:            pulumi.Int(14),
    					Minute:          pulumi.Int(45),
    					SnapshotsToKeep: pulumi.Int(3),
    				},
    			},
    			ResourceGroupName:  pulumi.String("myRG"),
    			SnapshotPolicyName: pulumi.String("snapshotPolicyName"),
    		})
    		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.ElasticSnapshotPolicy;
    import com.pulumi.azurenative.netapp.ElasticSnapshotPolicyArgs;
    import com.pulumi.azurenative.netapp.inputs.ElasticSnapshotPolicyPropertiesArgs;
    import com.pulumi.azurenative.netapp.inputs.ElasticSnapshotPolicyDailyScheduleArgs;
    import com.pulumi.azurenative.netapp.inputs.ElasticSnapshotPolicyHourlyScheduleArgs;
    import com.pulumi.azurenative.netapp.inputs.ElasticSnapshotPolicyMonthlyScheduleArgs;
    import com.pulumi.azurenative.netapp.inputs.ElasticSnapshotPolicyWeeklyScheduleArgs;
    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 elasticSnapshotPolicy = new ElasticSnapshotPolicy("elasticSnapshotPolicy", ElasticSnapshotPolicyArgs.builder()
                .accountName("account1")
                .location("eastus")
                .properties(ElasticSnapshotPolicyPropertiesArgs.builder()
                    .dailySchedule(ElasticSnapshotPolicyDailyScheduleArgs.builder()
                        .hour(14)
                        .minute(30)
                        .snapshotsToKeep(4)
                        .build())
                    .hourlySchedule(ElasticSnapshotPolicyHourlyScheduleArgs.builder()
                        .minute(50)
                        .snapshotsToKeep(2)
                        .build())
                    .monthlySchedule(ElasticSnapshotPolicyMonthlyScheduleArgs.builder()
                        .daysOfMonth(                    
                            10,
                            11,
                            12)
                        .hour(14)
                        .minute(15)
                        .snapshotsToKeep(5)
                        .build())
                    .policyStatus("Enabled")
                    .weeklySchedule(ElasticSnapshotPolicyWeeklyScheduleArgs.builder()
                        .days("Wednesday")
                        .hour(14)
                        .minute(45)
                        .snapshotsToKeep(3)
                        .build())
                    .build())
                .resourceGroupName("myRG")
                .snapshotPolicyName("snapshotPolicyName")
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const elasticSnapshotPolicy = new azure_native.netapp.ElasticSnapshotPolicy("elasticSnapshotPolicy", {
        accountName: "account1",
        location: "eastus",
        properties: {
            dailySchedule: {
                hour: 14,
                minute: 30,
                snapshotsToKeep: 4,
            },
            hourlySchedule: {
                minute: 50,
                snapshotsToKeep: 2,
            },
            monthlySchedule: {
                daysOfMonth: [
                    10,
                    11,
                    12,
                ],
                hour: 14,
                minute: 15,
                snapshotsToKeep: 5,
            },
            policyStatus: azure_native.netapp.PolicyStatus.Enabled,
            weeklySchedule: {
                days: [azure_native.netapp.DayOfWeek.Wednesday],
                hour: 14,
                minute: 45,
                snapshotsToKeep: 3,
            },
        },
        resourceGroupName: "myRG",
        snapshotPolicyName: "snapshotPolicyName",
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    elastic_snapshot_policy = azure_native.netapp.ElasticSnapshotPolicy("elasticSnapshotPolicy",
        account_name="account1",
        location="eastus",
        properties={
            "daily_schedule": {
                "hour": 14,
                "minute": 30,
                "snapshots_to_keep": 4,
            },
            "hourly_schedule": {
                "minute": 50,
                "snapshots_to_keep": 2,
            },
            "monthly_schedule": {
                "days_of_month": [
                    10,
                    11,
                    12,
                ],
                "hour": 14,
                "minute": 15,
                "snapshots_to_keep": 5,
            },
            "policy_status": azure_native.netapp.PolicyStatus.ENABLED,
            "weekly_schedule": {
                "days": [azure_native.netapp.DayOfWeek.WEDNESDAY],
                "hour": 14,
                "minute": 45,
                "snapshots_to_keep": 3,
            },
        },
        resource_group_name="myRG",
        snapshot_policy_name="snapshotPolicyName")
    
    resources:
      elasticSnapshotPolicy:
        type: azure-native:netapp:ElasticSnapshotPolicy
        properties:
          accountName: account1
          location: eastus
          properties:
            dailySchedule:
              hour: 14
              minute: 30
              snapshotsToKeep: 4
            hourlySchedule:
              minute: 50
              snapshotsToKeep: 2
            monthlySchedule:
              daysOfMonth:
                - 10
                - 11
                - 12
              hour: 14
              minute: 15
              snapshotsToKeep: 5
            policyStatus: Enabled
            weeklySchedule:
              days:
                - Wednesday
              hour: 14
              minute: 45
              snapshotsToKeep: 3
          resourceGroupName: myRG
          snapshotPolicyName: snapshotPolicyName
    

    Create ElasticSnapshotPolicy Resource

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

    Constructor syntax

    new ElasticSnapshotPolicy(name: string, args: ElasticSnapshotPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def ElasticSnapshotPolicy(resource_name: str,
                              args: ElasticSnapshotPolicyArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ElasticSnapshotPolicy(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              account_name: Optional[str] = None,
                              resource_group_name: Optional[str] = None,
                              location: Optional[str] = None,
                              properties: Optional[ElasticSnapshotPolicyPropertiesArgs] = None,
                              snapshot_policy_name: Optional[str] = None,
                              tags: Optional[Mapping[str, str]] = None)
    func NewElasticSnapshotPolicy(ctx *Context, name string, args ElasticSnapshotPolicyArgs, opts ...ResourceOption) (*ElasticSnapshotPolicy, error)
    public ElasticSnapshotPolicy(string name, ElasticSnapshotPolicyArgs args, CustomResourceOptions? opts = null)
    public ElasticSnapshotPolicy(String name, ElasticSnapshotPolicyArgs args)
    public ElasticSnapshotPolicy(String name, ElasticSnapshotPolicyArgs args, CustomResourceOptions options)
    
    type: azure-native:netapp:ElasticSnapshotPolicy
    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 ElasticSnapshotPolicyArgs
    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 ElasticSnapshotPolicyArgs
    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 ElasticSnapshotPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ElasticSnapshotPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ElasticSnapshotPolicyArgs
    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 elasticSnapshotPolicyResource = new AzureNative.NetApp.ElasticSnapshotPolicy("elasticSnapshotPolicyResource", new()
    {
        AccountName = "string",
        ResourceGroupName = "string",
        Location = "string",
        Properties = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyPropertiesArgs
        {
            DailySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyDailyScheduleArgs
            {
                Hour = 0,
                Minute = 0,
                SnapshotsToKeep = 0,
            },
            HourlySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyHourlyScheduleArgs
            {
                Minute = 0,
                SnapshotsToKeep = 0,
            },
            MonthlySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyMonthlyScheduleArgs
            {
                DaysOfMonth = new[]
                {
                    0,
                },
                Hour = 0,
                Minute = 0,
                SnapshotsToKeep = 0,
            },
            PolicyStatus = "string",
            WeeklySchedule = new AzureNative.NetApp.Inputs.ElasticSnapshotPolicyWeeklyScheduleArgs
            {
                Days = new[]
                {
                    "string",
                },
                Hour = 0,
                Minute = 0,
                SnapshotsToKeep = 0,
            },
        },
        SnapshotPolicyName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := netapp.NewElasticSnapshotPolicy(ctx, "elasticSnapshotPolicyResource", &netapp.ElasticSnapshotPolicyArgs{
    	AccountName:       pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	Location:          pulumi.String("string"),
    	Properties: &netapp.ElasticSnapshotPolicyPropertiesArgs{
    		DailySchedule: &netapp.ElasticSnapshotPolicyDailyScheduleArgs{
    			Hour:            pulumi.Int(0),
    			Minute:          pulumi.Int(0),
    			SnapshotsToKeep: pulumi.Int(0),
    		},
    		HourlySchedule: &netapp.ElasticSnapshotPolicyHourlyScheduleArgs{
    			Minute:          pulumi.Int(0),
    			SnapshotsToKeep: pulumi.Int(0),
    		},
    		MonthlySchedule: &netapp.ElasticSnapshotPolicyMonthlyScheduleArgs{
    			DaysOfMonth: pulumi.IntArray{
    				pulumi.Int(0),
    			},
    			Hour:            pulumi.Int(0),
    			Minute:          pulumi.Int(0),
    			SnapshotsToKeep: pulumi.Int(0),
    		},
    		PolicyStatus: pulumi.String("string"),
    		WeeklySchedule: &netapp.ElasticSnapshotPolicyWeeklyScheduleArgs{
    			Days: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			Hour:            pulumi.Int(0),
    			Minute:          pulumi.Int(0),
    			SnapshotsToKeep: pulumi.Int(0),
    		},
    	},
    	SnapshotPolicyName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var elasticSnapshotPolicyResource = new ElasticSnapshotPolicy("elasticSnapshotPolicyResource", ElasticSnapshotPolicyArgs.builder()
        .accountName("string")
        .resourceGroupName("string")
        .location("string")
        .properties(ElasticSnapshotPolicyPropertiesArgs.builder()
            .dailySchedule(ElasticSnapshotPolicyDailyScheduleArgs.builder()
                .hour(0)
                .minute(0)
                .snapshotsToKeep(0)
                .build())
            .hourlySchedule(ElasticSnapshotPolicyHourlyScheduleArgs.builder()
                .minute(0)
                .snapshotsToKeep(0)
                .build())
            .monthlySchedule(ElasticSnapshotPolicyMonthlyScheduleArgs.builder()
                .daysOfMonth(0)
                .hour(0)
                .minute(0)
                .snapshotsToKeep(0)
                .build())
            .policyStatus("string")
            .weeklySchedule(ElasticSnapshotPolicyWeeklyScheduleArgs.builder()
                .days("string")
                .hour(0)
                .minute(0)
                .snapshotsToKeep(0)
                .build())
            .build())
        .snapshotPolicyName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    elastic_snapshot_policy_resource = azure_native.netapp.ElasticSnapshotPolicy("elasticSnapshotPolicyResource",
        account_name="string",
        resource_group_name="string",
        location="string",
        properties={
            "daily_schedule": {
                "hour": 0,
                "minute": 0,
                "snapshots_to_keep": 0,
            },
            "hourly_schedule": {
                "minute": 0,
                "snapshots_to_keep": 0,
            },
            "monthly_schedule": {
                "days_of_month": [0],
                "hour": 0,
                "minute": 0,
                "snapshots_to_keep": 0,
            },
            "policy_status": "string",
            "weekly_schedule": {
                "days": ["string"],
                "hour": 0,
                "minute": 0,
                "snapshots_to_keep": 0,
            },
        },
        snapshot_policy_name="string",
        tags={
            "string": "string",
        })
    
    const elasticSnapshotPolicyResource = new azure_native.netapp.ElasticSnapshotPolicy("elasticSnapshotPolicyResource", {
        accountName: "string",
        resourceGroupName: "string",
        location: "string",
        properties: {
            dailySchedule: {
                hour: 0,
                minute: 0,
                snapshotsToKeep: 0,
            },
            hourlySchedule: {
                minute: 0,
                snapshotsToKeep: 0,
            },
            monthlySchedule: {
                daysOfMonth: [0],
                hour: 0,
                minute: 0,
                snapshotsToKeep: 0,
            },
            policyStatus: "string",
            weeklySchedule: {
                days: ["string"],
                hour: 0,
                minute: 0,
                snapshotsToKeep: 0,
            },
        },
        snapshotPolicyName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:netapp:ElasticSnapshotPolicy
    properties:
        accountName: string
        location: string
        properties:
            dailySchedule:
                hour: 0
                minute: 0
                snapshotsToKeep: 0
            hourlySchedule:
                minute: 0
                snapshotsToKeep: 0
            monthlySchedule:
                daysOfMonth:
                    - 0
                hour: 0
                minute: 0
                snapshotsToKeep: 0
            policyStatus: string
            weeklySchedule:
                days:
                    - string
                hour: 0
                minute: 0
                snapshotsToKeep: 0
        resourceGroupName: string
        snapshotPolicyName: string
        tags:
            string: string
    

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

    AccountName string
    The name of the ElasticAccount
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties Pulumi.AzureNative.NetApp.Inputs.ElasticSnapshotPolicyProperties
    The resource-specific properties for this resource.
    SnapshotPolicyName string
    The name of the ElasticSnapshotPolicy
    Tags Dictionary<string, string>
    Resource tags.
    AccountName string
    The name of the ElasticAccount
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    Properties ElasticSnapshotPolicyPropertiesArgs
    The resource-specific properties for this resource.
    SnapshotPolicyName string
    The name of the ElasticSnapshotPolicy
    Tags map[string]string
    Resource tags.
    accountName String
    The name of the ElasticAccount
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties ElasticSnapshotPolicyProperties
    The resource-specific properties for this resource.
    snapshotPolicyName String
    The name of the ElasticSnapshotPolicy
    tags Map<String,String>
    Resource tags.
    accountName string
    The name of the ElasticAccount
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    properties ElasticSnapshotPolicyProperties
    The resource-specific properties for this resource.
    snapshotPolicyName string
    The name of the ElasticSnapshotPolicy
    tags {[key: string]: string}
    Resource tags.
    account_name str
    The name of the ElasticAccount
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    properties ElasticSnapshotPolicyPropertiesArgs
    The resource-specific properties for this resource.
    snapshot_policy_name str
    The name of the ElasticSnapshotPolicy
    tags Mapping[str, str]
    Resource tags.
    accountName String
    The name of the ElasticAccount
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    properties Property Map
    The resource-specific properties for this resource.
    snapshotPolicyName String
    The name of the ElasticSnapshotPolicy
    tags Map<String>
    Resource tags.

    Outputs

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

    AzureApiVersion string
    The Azure API version of the resource.
    ETag string
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    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
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    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.
    e_tag str
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    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
    If eTag is provided in the response body, it may also be provided as a header per the normal etag convention. Entity tags are used for comparing two or more entities from the same requested resource. HTTP/1.1 uses entity tags in the etag (section 14.19), If-Match (section 14.24), If-None-Match (section 14.26), and If-Range (section 14.27) header fields.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    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

    DayOfWeek, DayOfWeekArgs

    Sunday
    Sunday Take a snapshot each Sunday
    Monday
    Monday Take a snapshot each Monday
    Tuesday
    Tuesday Take a snapshot each Tuesday
    Wednesday
    Wednesday Take a snapshot each Wednesday
    Thursday
    Thursday Take a snapshot each Thursday
    Friday
    Friday Take a snapshot each Friday
    Saturday
    Saturday Take a snapshot each Saturday
    DayOfWeekSunday
    Sunday Take a snapshot each Sunday
    DayOfWeekMonday
    Monday Take a snapshot each Monday
    DayOfWeekTuesday
    Tuesday Take a snapshot each Tuesday
    DayOfWeekWednesday
    Wednesday Take a snapshot each Wednesday
    DayOfWeekThursday
    Thursday Take a snapshot each Thursday
    DayOfWeekFriday
    Friday Take a snapshot each Friday
    DayOfWeekSaturday
    Saturday Take a snapshot each Saturday
    Sunday
    Sunday Take a snapshot each Sunday
    Monday
    Monday Take a snapshot each Monday
    Tuesday
    Tuesday Take a snapshot each Tuesday
    Wednesday
    Wednesday Take a snapshot each Wednesday
    Thursday
    Thursday Take a snapshot each Thursday
    Friday
    Friday Take a snapshot each Friday
    Saturday
    Saturday Take a snapshot each Saturday
    Sunday
    Sunday Take a snapshot each Sunday
    Monday
    Monday Take a snapshot each Monday
    Tuesday
    Tuesday Take a snapshot each Tuesday
    Wednesday
    Wednesday Take a snapshot each Wednesday
    Thursday
    Thursday Take a snapshot each Thursday
    Friday
    Friday Take a snapshot each Friday
    Saturday
    Saturday Take a snapshot each Saturday
    SUNDAY
    Sunday Take a snapshot each Sunday
    MONDAY
    Monday Take a snapshot each Monday
    TUESDAY
    Tuesday Take a snapshot each Tuesday
    WEDNESDAY
    Wednesday Take a snapshot each Wednesday
    THURSDAY
    Thursday Take a snapshot each Thursday
    FRIDAY
    Friday Take a snapshot each Friday
    SATURDAY
    Saturday Take a snapshot each Saturday
    "Sunday"
    Sunday Take a snapshot each Sunday
    "Monday"
    Monday Take a snapshot each Monday
    "Tuesday"
    Tuesday Take a snapshot each Tuesday
    "Wednesday"
    Wednesday Take a snapshot each Wednesday
    "Thursday"
    Thursday Take a snapshot each Thursday
    "Friday"
    Friday Take a snapshot each Friday
    "Saturday"
    Saturday Take a snapshot each Saturday

    ElasticSnapshotPolicyDailySchedule, ElasticSnapshotPolicyDailyScheduleArgs

    Daily Schedule properties used to create NetApp snapshot policy
    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
    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
    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
    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
    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
    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

    ElasticSnapshotPolicyDailyScheduleResponse, ElasticSnapshotPolicyDailyScheduleResponseArgs

    Daily Schedule properties used to create NetApp snapshot policy
    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
    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
    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
    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
    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
    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

    ElasticSnapshotPolicyHourlySchedule, ElasticSnapshotPolicyHourlyScheduleArgs

    Hourly Schedule properties used to create NetApp snapshot policy
    Minute int
    Indicates which minute snapshot should be taken
    SnapshotsToKeep int
    Hourly snapshot count to keep
    Minute int
    Indicates which minute snapshot should be taken
    SnapshotsToKeep int
    Hourly snapshot count to keep
    minute Integer
    Indicates which minute snapshot should be taken
    snapshotsToKeep Integer
    Hourly snapshot count to keep
    minute number
    Indicates which minute snapshot should be taken
    snapshotsToKeep number
    Hourly snapshot count to keep
    minute int
    Indicates which minute snapshot should be taken
    snapshots_to_keep int
    Hourly snapshot count to keep
    minute Number
    Indicates which minute snapshot should be taken
    snapshotsToKeep Number
    Hourly snapshot count to keep

    ElasticSnapshotPolicyHourlyScheduleResponse, ElasticSnapshotPolicyHourlyScheduleResponseArgs

    Hourly Schedule properties used to create NetApp snapshot policy
    Minute int
    Indicates which minute snapshot should be taken
    SnapshotsToKeep int
    Hourly snapshot count to keep
    Minute int
    Indicates which minute snapshot should be taken
    SnapshotsToKeep int
    Hourly snapshot count to keep
    minute Integer
    Indicates which minute snapshot should be taken
    snapshotsToKeep Integer
    Hourly snapshot count to keep
    minute number
    Indicates which minute snapshot should be taken
    snapshotsToKeep number
    Hourly snapshot count to keep
    minute int
    Indicates which minute snapshot should be taken
    snapshots_to_keep int
    Hourly snapshot count to keep
    minute Number
    Indicates which minute snapshot should be taken
    snapshotsToKeep Number
    Hourly snapshot count to keep

    ElasticSnapshotPolicyMonthlySchedule, ElasticSnapshotPolicyMonthlyScheduleArgs

    Monthly Schedule properties used to create NetApp snapshot policy
    DaysOfMonth List<int>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    DaysOfMonth []int
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth List<Integer>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth number[]
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    days_of_month Sequence[int]
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth List<Number>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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

    ElasticSnapshotPolicyMonthlyScheduleResponse, ElasticSnapshotPolicyMonthlyScheduleResponseArgs

    Monthly Schedule properties used to create NetApp snapshot policy
    DaysOfMonth List<int>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    DaysOfMonth []int
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth List<Integer>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth number[]
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    days_of_month Sequence[int]
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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
    daysOfMonth List<Number>
    Indicates which days of the month snapshot (1-31) should be taken, accepts a list of integers
    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

    ElasticSnapshotPolicyProperties, ElasticSnapshotPolicyPropertiesArgs

    Elastic Snapshot policy properties
    DailySchedule ElasticSnapshotPolicyDailySchedule
    Schedule for daily snapshots
    HourlySchedule ElasticSnapshotPolicyHourlySchedule
    Schedule for hourly snapshots
    MonthlySchedule ElasticSnapshotPolicyMonthlySchedule
    Schedule for monthly snapshots
    PolicyStatus string | PolicyStatus
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    WeeklySchedule ElasticSnapshotPolicyWeeklySchedule
    Schedule for weekly snapshots
    dailySchedule ElasticSnapshotPolicyDailySchedule
    Schedule for daily snapshots
    hourlySchedule ElasticSnapshotPolicyHourlySchedule
    Schedule for hourly snapshots
    monthlySchedule ElasticSnapshotPolicyMonthlySchedule
    Schedule for monthly snapshots
    policyStatus String | PolicyStatus
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule ElasticSnapshotPolicyWeeklySchedule
    Schedule for weekly snapshots
    dailySchedule ElasticSnapshotPolicyDailySchedule
    Schedule for daily snapshots
    hourlySchedule ElasticSnapshotPolicyHourlySchedule
    Schedule for hourly snapshots
    monthlySchedule ElasticSnapshotPolicyMonthlySchedule
    Schedule for monthly snapshots
    policyStatus string | PolicyStatus
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule ElasticSnapshotPolicyWeeklySchedule
    Schedule for weekly snapshots
    daily_schedule ElasticSnapshotPolicyDailySchedule
    Schedule for daily snapshots
    hourly_schedule ElasticSnapshotPolicyHourlySchedule
    Schedule for hourly snapshots
    monthly_schedule ElasticSnapshotPolicyMonthlySchedule
    Schedule for monthly snapshots
    policy_status str | PolicyStatus
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weekly_schedule ElasticSnapshotPolicyWeeklySchedule
    Schedule for weekly snapshots
    dailySchedule Property Map
    Schedule for daily snapshots
    hourlySchedule Property Map
    Schedule for hourly snapshots
    monthlySchedule Property Map
    Schedule for monthly snapshots
    policyStatus String | "Enabled" | "Disabled"
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule Property Map
    Schedule for weekly snapshots

    ElasticSnapshotPolicyPropertiesResponse, ElasticSnapshotPolicyPropertiesResponseArgs

    Elastic Snapshot policy properties
    ProvisioningState string
    Azure lifecycle management.
    DailySchedule ElasticSnapshotPolicyDailyScheduleResponse
    Schedule for daily snapshots
    HourlySchedule ElasticSnapshotPolicyHourlyScheduleResponse
    Schedule for hourly snapshots
    MonthlySchedule ElasticSnapshotPolicyMonthlyScheduleResponse
    Schedule for monthly snapshots
    PolicyStatus string
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    WeeklySchedule ElasticSnapshotPolicyWeeklyScheduleResponse
    Schedule for weekly snapshots
    provisioningState String
    Azure lifecycle management.
    dailySchedule ElasticSnapshotPolicyDailyScheduleResponse
    Schedule for daily snapshots
    hourlySchedule ElasticSnapshotPolicyHourlyScheduleResponse
    Schedule for hourly snapshots
    monthlySchedule ElasticSnapshotPolicyMonthlyScheduleResponse
    Schedule for monthly snapshots
    policyStatus String
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule ElasticSnapshotPolicyWeeklyScheduleResponse
    Schedule for weekly snapshots
    provisioningState string
    Azure lifecycle management.
    dailySchedule ElasticSnapshotPolicyDailyScheduleResponse
    Schedule for daily snapshots
    hourlySchedule ElasticSnapshotPolicyHourlyScheduleResponse
    Schedule for hourly snapshots
    monthlySchedule ElasticSnapshotPolicyMonthlyScheduleResponse
    Schedule for monthly snapshots
    policyStatus string
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule ElasticSnapshotPolicyWeeklyScheduleResponse
    Schedule for weekly snapshots
    provisioning_state str
    Azure lifecycle management.
    daily_schedule ElasticSnapshotPolicyDailyScheduleResponse
    Schedule for daily snapshots
    hourly_schedule ElasticSnapshotPolicyHourlyScheduleResponse
    Schedule for hourly snapshots
    monthly_schedule ElasticSnapshotPolicyMonthlyScheduleResponse
    Schedule for monthly snapshots
    policy_status str
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weekly_schedule ElasticSnapshotPolicyWeeklyScheduleResponse
    Schedule for weekly snapshots
    provisioningState String
    Azure lifecycle management.
    dailySchedule Property Map
    Schedule for daily snapshots
    hourlySchedule Property Map
    Schedule for hourly snapshots
    monthlySchedule Property Map
    Schedule for monthly snapshots
    policyStatus String
    Configures if the snapshot policy is enabled on the volumes connected to the policy.
    weeklySchedule Property Map
    Schedule for weekly snapshots

    ElasticSnapshotPolicyWeeklySchedule, ElasticSnapshotPolicyWeeklyScheduleArgs

    Weekly Schedule properties used to create NetApp snapshot policy
    Days List<Union<string, Pulumi.AzureNative.NetApp.DayOfWeek>>
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    Days []string
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days List<Either<String,DayOfWeek>>
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days (string | DayOfWeek)[]
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days Sequence[Union[str, DayOfWeek]]
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days List<String | "Sunday" | "Monday" | "Tuesday" | "Wednesday" | "Thursday" | "Friday" | "Saturday">
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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

    ElasticSnapshotPolicyWeeklyScheduleResponse, ElasticSnapshotPolicyWeeklyScheduleResponseArgs

    Weekly Schedule properties used to create NetApp snapshot policy
    Days List<string>
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    Days []string
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days List<String>
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days string[]
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days Sequence[str]
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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
    days List<String>
    Indicates which weekday(s) snapshot(s) should be taken, accepts a 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

    PolicyStatus, PolicyStatusArgs

    Enabled
    Enabled Value indicating the policy is enabled
    Disabled
    Disabled Value indicating the policy is disabled
    PolicyStatusEnabled
    Enabled Value indicating the policy is enabled
    PolicyStatusDisabled
    Disabled Value indicating the policy is disabled
    Enabled
    Enabled Value indicating the policy is enabled
    Disabled
    Disabled Value indicating the policy is disabled
    Enabled
    Enabled Value indicating the policy is enabled
    Disabled
    Disabled Value indicating the policy is disabled
    ENABLED
    Enabled Value indicating the policy is enabled
    DISABLED
    Disabled Value indicating the policy is disabled
    "Enabled"
    Enabled Value indicating the policy is enabled
    "Disabled"
    Disabled Value indicating the policy is disabled

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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.
    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.

    Import

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

    $ pulumi import azure-native:netapp:ElasticSnapshotPolicy account1/snapshotPolicy1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetApp/elasticAccounts/{accountName}/elasticSnapshotPolicies/{snapshotPolicyName} 
    

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

    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 v2 docs if using the v2 version of this package.
    Azure Native v3.13.0 published on Wednesday, Jan 28, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate