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

Added extension properties to DSCNode for Get/GetNode api calls #1

Merged
merged 4 commits into from
Sep 12, 2017
Merged
Changes from all commits
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
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