The managers/devices/backupPolicies/schedules resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.StorSimple/managers/devices/backupPolicies/schedules resource, add the following JSON to your template.
{
"type": "Microsoft.StorSimple/managers/devices/backupPolicies/schedules",
"apiVersion": "2017-06-01",
"name": "string",
"kind": "Series8000",
"properties": {
"backupType": "string",
"retentionCount": "int",
"scheduleRecurrence": {
"recurrenceType": "string",
"recurrenceValue": "int",
"weeklyDaysList": [ "string" ]
},
"scheduleStatus": "string",
"startTime": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.StorSimple/managers/devices/backupPolicies/schedules' |
apiVersion | The resource api version | '2017-06-01' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
string (required) |
kind | The Kind of the object. Currently only Series8000 is supported | 'Series8000' |
properties | The properties of the backup schedule. | BackupScheduleProperties (required) |
Name | Description | Value |
---|---|---|
backupType | The type of backup which needs to be taken. | 'CloudSnapshot' 'LocalSnapshot' (required) |
retentionCount | The number of backups to be retained. | int (required) |
scheduleRecurrence | The schedule recurrence. | ScheduleRecurrence (required) |
scheduleStatus | The schedule status. | 'Disabled' 'Enabled' (required) |
startTime | The start time of the schedule. | string (required) |
Name | Description | Value |
---|---|---|
recurrenceType | The recurrence type. | 'Daily' 'Hourly' 'Minutes' 'Weekly' (required) |
recurrenceValue | The recurrence value. | int (required) |
weeklyDaysList | The week days list. Applicable only for schedules of recurrence type 'weekly'. | String array containing any of: 'Friday' 'Monday' 'Saturday' 'Sunday' 'Thursday' 'Tuesday' 'Wednesday' |