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
Original file line number Diff line number Diff line change
Expand Up @@ -2815,11 +2815,23 @@
],
"responses": {
"201": {
"description": "An object containing the application endpoint URL and its assigned endpoint key.",
"description": "An object containing the application endpoint URL, its assigned endpoint key and publishing status.",
"schema": {
"$ref": "#/definitions/ProductionOrStagingEndpointInfo"
}
},
"207": {
"description": "An object containing the application endpoint URL, its assigned endpoint key and publishing status.",
"schema": {
"$ref": "#/definitions/ProductionOrStagingEndpointInfo"
}
},
"503": {
"description": "A string with the error message",
"schema": {
"$ref": "#/definitions/ErrorMessage"
}
},
"default": {
"description": "Error Response.",
"schema": {
Expand Down Expand Up @@ -9332,6 +9344,10 @@
"type": "string",
"description": "The endpoint's region."
},
"failedRegions": {
"type": "string",
"description": "Regions where publishing failed."
},
"publishedDateTime": {
"description": "Timestamp when was last published.",
"type": "string"
Expand Down Expand Up @@ -9604,6 +9620,10 @@
"type": "object"
}
},
"ErrorMessage": {
"description": "Error message when invoking an operation on the API.",
"type": "string"
},
"OperationError": {
"description": "Operation error details when invoking an operation on the API.",
"type": "object",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@
"isStaging": false,
"endpointUrl": "https://westus.api.cognitive.microsoft.com/luis/v2.0/apps/11be6373fca44ded80fbe2afa8597c18",
"assignedEndpointKey": "11be6373fca44ded80fbe2afa8597c18",
"endpointRegion": "westus",
"endpointRegion": "westus, cus",
"failedRegions": "cus",
"publishedDateTime": "2017-11-28T19:20:28Z"
}
}
Expand Down