Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new Automation API version (2017-05-15-preview) #1953

Merged
merged 9 commits into from
Nov 7, 2017
Original file line number Diff line number Diff line change
Expand Up @@ -1446,6 +1446,13 @@
"etag": {
"type": "string",
"description": "Gets or sets the etag of the resource."
},
"extensionHandler": {
"type": "array",
"description": "Gets or sets the list of extensionHandler properties for a Node.",
"items": {
"$ref": "#/definitions/DscNodeExtensionHandlerAssociationProperty"
}
}
},
"allOf": [
Expand Down Expand Up @@ -1529,6 +1536,19 @@
},
"description": "The dsc nodeconfiguration property associated with the entity."
},
"DscNodeExtensionHandlerAssociationProperty": {
"properties": {
"name": {
"type": "string",
"description": "Gets or sets the name of the extension handler."
},
"version": {
"type": "string",
"description": "Gets or sets the version of the extension handler."
}
},
"description": "The dsc extensionHandler property associated with the node"
},
"DscNodeListResult": {
"properties": {
"value": {
Expand Down Expand Up @@ -2934,6 +2954,21 @@
},
"description": "The runbook property associated with the entity."
},
"scheduleFrequency": {
"type": "string",
"description": "Gets or sets the frequency of the schedule.",
"enum": [
"OneTime",
"Day",
"Hour",
"Week",
"Month"
],
"x-ms-enum": {
"name": "ScheduleFrequency",
"modelAsString": true
}
},
"ScheduleCreateOrUpdateProperties": {
"properties": {
"description": {
Expand All @@ -2955,18 +2990,7 @@
},
"frequency": {
"type": "string",
"description": "Gets or sets the frequency of the schedule.",
"enum": [
"OneTime",
"Day",
"Hour",
"Week",
"Month"
],
"x-ms-enum": {
"name": "ScheduleFrequency",
"modelAsString": true
}
"$ref": "#/definitions/scheduleFrequency"
},
"timeZone": {
"type": "string",
Expand Down
Loading