Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1526,6 +1526,7 @@ SMBIOS
snapshotrun
snapshotsdr
SNAT
SNMP
softwareplan
SOHSV
solaris
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,13 @@
"upgrade": [
{
"version": "2.8.2",
"fromVersion": "2.8.0",
"link": "http://microsoft.com/downloadLocation",
"versionKind": "Latest"
},
{
"version": "2.8.10",
"fromVersion": "2.8.0",
"link": "http://microsoft.com/downloadLocation",
"versionKind": "Previous"
}
Expand Down Expand Up @@ -120,20 +122,49 @@
"upgrade": [
{
"version": "2.8.2",
"fromVersion": "2.8.0",
"link": "http://microsoft.com/downloadLocation",
"versionKind": "Latest"
},
{
"version": "2.8.10",
"fromVersion": "2.8.0",
"link": "http://microsoft.com/downloadLocation",
"versionKind": "Previous"
}
]
},
"threatIntelligence": {
"link": "http://microsoft.com/downloadLocation"
}
"threatIntelligence": [
{
"link": "http://microsoft.com/downloadLocation",
"version": "2020.02.10"
}
],
"snmp": [
{
"link": "http://microsoft.com/downloadLocation",
"version": "2020.02.10"
}
],
"wmiTool": [
{
"link": "http://microsoft.com/downloadLocation",
"version": "2020.02.10"
}
],
"authorizedDevicesImportTemplate": [
{
"link": "http://microsoft.com/downloadLocation",
"version": "2020.02.10"
}
],
"deviceInformationUpdateImportTemplate": [
{
"link": "http://microsoft.com/downloadLocation",
"version": "2020.02.10"
}
]
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,22 @@
}
}
},
"UpgradePackageDownloadInfo": {
"type": "object",
"description": "Information on a specific package upgrade download",
"properties": {
"fromVersion": {
"type": "string",
"description": "Minimum base version for upgrade",
"readOnly": true
}
},
"allOf": [
{
"$ref": "#/definitions/PackageDownloadInfo"
}
]
},
"PackageDownloads": {
"type": "object",
"description": "Information about package downloads",
Expand Down Expand Up @@ -453,14 +469,43 @@
}
},
"threatIntelligence": {
"type": "object",
"type": "array",
"description": "All downloads for threat intelligence",
"readOnly": true,
"properties": {
"link": {
"description": "Download link",
"$ref": "#/definitions/DownloadLink"
}
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
}
},
"snmp": {
"type": "array",
"description": "SNMP Server file",
"readOnly": true,
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
}
},
"wmiTool": {
"type": "array",
"description": "Used for local configuration export",
"readOnly": true,
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
}
},
"authorizedDevicesImportTemplate": {
"type": "array",
"description": "Authorized devices import template",
"readOnly": true,
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
}
},
"deviceInformationUpdateImportTemplate": {
"type": "array",
"description": "Authorized devices import template",
"readOnly": true,
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
}
}
}
Expand Down