The managedInstances/startStopSchedules 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.Sql/managedInstances/startStopSchedules resource, add the following JSON to your template.
{
"type": "Microsoft.Sql/managedInstances/startStopSchedules",
"apiVersion": "2023-05-01-preview",
"name": "default",
"properties": {
"description": "string",
"scheduleList": [
{
"startDay": "string",
"startTime": "string",
"stopDay": "string",
"stopTime": "string"
}
],
"timeZoneId": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Sql/managedInstances/startStopSchedules' |
apiVersion | The resource api version | '2023-05-01-preview' |
name | The resource name See how to set names and types for child resources in JSON ARM templates. |
'default' |
properties | Resource properties. | StartStopManagedInstanceScheduleProperties |
Name | Description | Value |
---|---|---|
description | The description of the schedule. | string |
scheduleList | Schedule list. | ScheduleItem[] (required) |
timeZoneId | The time zone of the schedule. | string |
Name | Description | Value |
---|---|---|
startDay | Start day. | 'Friday' 'Monday' 'Saturday' 'Sunday' 'Thursday' 'Tuesday' 'Wednesday' (required) |
startTime | Start time. | string (required) |
stopDay | Stop day. | 'Friday' 'Monday' 'Saturday' 'Sunday' 'Thursday' 'Tuesday' 'Wednesday' (required) |
stopTime | Stop time. | string (required) |