Skip to content
Merged
Show file tree
Hide file tree
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
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,19 +122,48 @@
"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"
}
]
}
}
}
Expand Down
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 @@ -378,7 +394,7 @@
"type": "array",
"description": "Sensor upgrade package downloads (on existing installations)",
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
"$ref": "#/definitions/UpgradePackageDownloadInfo"
}
}
}
Expand Down Expand Up @@ -447,20 +463,49 @@
"description": "Central Manager upgrade package downloads (on existing installations)",
"readOnly": true,
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
"$ref": "#/definitions/UpgradePackageDownloadInfo"
}
}
}
},
"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