The jobCollections resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.Scheduler/jobCollections resource, add the following JSON to your template.
{
"type": "Microsoft.Scheduler/jobCollections",
"apiVersion": "2016-03-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"quota": {
"maxJobCount": "int",
"maxJobOccurrence": "int",
"maxRecurrence": {
"frequency": "string",
"interval": "int"
}
},
"sku": {
"name": "string"
},
"state": "string"
}
}
Name | Description | Value |
---|---|---|
type | The resource type | 'Microsoft.Scheduler/jobCollections' |
apiVersion | The resource api version | '2016-03-01' |
name | The resource name | string (required) |
location | Gets or sets the storage account location. | string |
tags | Gets or sets the tags. | Dictionary of tag names and values. See Tags in templates |
properties | Gets or sets the job collection properties. | JobCollectionProperties |
Name | Description | Value |
---|---|---|
quota | Gets or sets the job collection quota. | JobCollectionQuota |
sku | Gets or sets the SKU. | Sku |
state | Gets or sets the state. | 'Deleted' 'Disabled' 'Enabled' 'Suspended' |
Name | Description | Value |
---|---|---|
maxJobCount | Gets or set the maximum job count. | int |
maxJobOccurrence | Gets or sets the maximum job occurrence. | int |
maxRecurrence | Gets or set the maximum recurrence. | JobMaxRecurrence |
Name | Description | Value |
---|---|---|
frequency | Gets or sets the frequency of recurrence (second, minute, hour, day, week, month). | 'Day' 'Hour' 'Minute' 'Month' 'Week' |
interval | Gets or sets the interval between retries. | int |
Name | Description | Value |
---|---|---|
name | Gets or set the SKU. | 'Free' 'P10Premium' 'P20Premium' 'Standard' |