Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Adding new API version (2017-05-15-preview). No other changes made (#2)
Adding new API version (2017-05-15-preview). Only three new resources added and all others reference the previous version. 

- Added resources:
 - SoftwareUpdateConfiguration
 - SoftwareUpdateConfigurationRun
 - SoftwareUpdateConfigurationMachineRun

- Validations:
 - Autorest azure validations passed
  - x-ms-examples validated with no errors
  • Loading branch information
finiteattractor authored Oct 30, 2017
commit a32938a3ac299b6a31054851807686009c8eed3c
Original file line number Diff line number Diff line change
Expand Up @@ -2954,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 @@ -2975,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