The netAppAccounts/snapshotPolicies resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.NetApp/netAppAccounts/snapshotPolicies resource, add the following JSON to your template.
{
"type": "Microsoft.NetApp/netAppAccounts/snapshotPolicies",
"apiVersion": "2023-07-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"dailySchedule": {
"hour": "int",
"minute": "int",
"snapshotsToKeep": "int",
"usedBytes": "int"
},
"enabled": "bool",
"hourlySchedule": {
"minute": "int",
"snapshotsToKeep": "int",
"usedBytes": "int"
},
"monthlySchedule": {
"daysOfMonth": "string",
"hour": "int",
"minute": "int",
"snapshotsToKeep": "int",
"usedBytes": "int"
},
"weeklySchedule": {
"day": "string",
"hour": "int",
"minute": "int",
"snapshotsToKeep": "int",
"usedBytes": "int"
}
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.NetApp/netAppAccounts/snapshotPolicies' |
apiVersion | The resource api version | '2023-07-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) Character limit: 1-64 Valid characters: Alphanumerics, underscores, and hyphens. Start with alphanumeric. |
location | The geo-location where the resource lives | string (required) |
tags | Resource tags. | Dictionary of tag names and values. See Tags in templates |
properties | Snapshot policy Properties | SnapshotPolicyProperties (required) |
Name | Description | Value |
---|---|---|
dailySchedule | Schedule for daily snapshots | DailySchedule |
enabled | The property to decide policy is enabled or not | bool |
hourlySchedule | Schedule for hourly snapshots | HourlySchedule |
monthlySchedule | Schedule for monthly snapshots | MonthlySchedule |
weeklySchedule | Schedule for weekly snapshots | WeeklySchedule |
Name | Description | Value |
---|---|---|
hour | Indicates which hour in UTC timezone a snapshot should be taken | int |
minute | Indicates which minute snapshot should be taken | int |
snapshotsToKeep | Daily snapshot count to keep | int |
usedBytes | Resource size in bytes, current storage usage for the volume in bytes | int |
Name | Description | Value |
---|---|---|
minute | Indicates which minute snapshot should be taken | int |
snapshotsToKeep | Hourly snapshot count to keep | int |
usedBytes | Resource size in bytes, current storage usage for the volume in bytes | int |
Name | Description | Value |
---|---|---|
daysOfMonth | Indicates which days of the month snapshot should be taken. A comma delimited string. | string |
hour | Indicates which hour in UTC timezone a snapshot should be taken | int |
minute | Indicates which minute snapshot should be taken | int |
snapshotsToKeep | Monthly snapshot count to keep | int |
usedBytes | Resource size in bytes, current storage usage for the volume in bytes | int |
Name | Description | Value |
---|---|---|
day | Indicates which weekdays snapshot should be taken, accepts a comma separated list of week day names in english | string |
hour | Indicates which hour in UTC timezone a snapshot should be taken | int |
minute | Indicates which minute snapshot should be taken | int |
snapshotsToKeep | Weekly snapshot count to keep | int |
usedBytes | Resource size in bytes, current storage usage for the volume in bytes | int |