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 @@ -9,6 +9,7 @@
},
"responses": {
"200": {},
"202": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,9 @@
"200": {
"description": "OK"
},
"202": {
"description": "Accepted"
},
"204": {
"description": "No Content - the specified application was not found."
},
Expand Down Expand Up @@ -1657,17 +1660,57 @@
"description": "An operation available at the listed Azure resource provider."
},
"ErrorModel": {
"properties": {
"error": {
"$ref": "#/definitions/ErrorErrorModel",
"description": "Error model information"
}
},
"description": "The error details.",
"required": [
"error"
]
},
"ErrorErrorModel": {
"description": "Error model information",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string",
"description": "The error code."
"description": "Error message."
},
"innerError": {
"type": "string"
},
"details": {
"type": "array",
"description": "List of error message details.",
"items": {
"$ref": "#/definitions/ErrorDetailsModel"
}
}
},
"required": [
"code"
]
},
"ErrorDetailsModel": {
"description": "Error model details information",
"properties": {
"code": {
"type": "string"
},
"message": {
"type": "string",
"description": "The error message."
"description": "Error message."
}
},
"description": "The error details."
"required": [
"code",
"message"
]
},
"ContainerCodePackageProperties": {
"description": "Describes a container and its runtime properties.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2013,7 +2013,7 @@
"modelAsString": true,
"values": [
{
"value": "inlinedValue",
"value": "InlinedValue",
"description": "A simple secret resource whose plaintext value is provided by the user."
}
]
Expand Down