Skip to content

Commit

Permalink
Updating Package Manifest Schema in Private Preview API (Azure#11688)
Browse files Browse the repository at this point in the history
  • Loading branch information
lavinir authored and giromm2ms committed Dec 20, 2020
1 parent 950b9e6 commit 105524e
Show file tree
Hide file tree
Showing 3 changed files with 88 additions and 11 deletions.
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1604,6 +1604,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 @@ -359,6 +359,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 @@ -418,7 +434,7 @@
"type": "array",
"description": "Sensor upgrade package downloads (on existing installations)",
"items": {
"$ref": "#/definitions/PackageDownloadInfo"
"$ref": "#/definitions/UpgradePackageDownloadInfo"
}
}
}
Expand Down Expand Up @@ -487,20 +503,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

0 comments on commit 105524e

Please sign in to comment.