Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Address PR comments
  • Loading branch information
AndyTao0402 committed Feb 14, 2020
commit 9be1c3169040187d6dbc447f3755ec68eb6b4555
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
}
}
},
"/providers/Microsoft.AzureStack/cloudmanifestfile": {
"/providers/Microsoft.AzureStack/cloudmanifestfiles/{verificationVersion}": {
"get": {
"x-ms-examples": {
"Returns the properties of a cloud specific manifest file.": {
Expand All @@ -58,14 +58,11 @@
"description": "Returns a cloud specific manifest JSON file.",
"operationId": "CloudManifestFile_Get",
"parameters": [
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"name": "verificationVersion",
"in": "query",
"in": "path",
"description": "Signing verification key version.",
"required": false,
"required": true,
"type": "string"
},
{
Expand All @@ -74,6 +71,9 @@
"description": "Signing verification key version creation date.",
"required": false,
"type": "string"
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
Expand Down Expand Up @@ -242,11 +242,16 @@
"description": "Cloud specific manifest GET response.",
"type": "object",
"properties": {
"value": {
"properties": {
"description": "Cloud specific manifest data.",
"$ref": "#/definitions/CloudManifestFileProperties"
}
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
]
},
"CloudManifestFileProperties": {
"description": "Cloud specific manifest JSON properties.",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
{
"parameters": {
"verificationVersion": "latest",
"api-version": "2017-06-01"
},
"responses": {
"200": {
"body": {
"value": {
"id": "/providers/Microsoft.AzureStack/cloudmanifestfiles/latest",
"name": "latest",
"type": "Microsoft.AzureStack/cloudmanifestfiles",
"properties": {
"deploymentData": {
"externalDsmsCertificates": "",
"customCloudVerificationKey": "",
Expand Down