Skip to content

Commit

Permalink
Adding new Automation API version (2017-05-15-preview) (#1953)
Browse files Browse the repository at this point in the history
* added extension properties to Get & GetNode

* fix indentation

* fix indentation

* changed description text

* 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

* Updated tag in global configuration

Updated tag in global configuration to use the latest api version as per azure PR review comment
  • Loading branch information
finiteattractor authored and sarangan12 committed Nov 7, 2017
1 parent 652cebd commit ed7a298
Show file tree
Hide file tree
Showing 17 changed files with 1,931 additions and 13 deletions.
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

0 comments on commit ed7a298

Please sign in to comment.