Skip to content
Merged
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 @@ -152,7 +152,7 @@
"description": "The payload to use to patch the web service.",
"required": true,
"schema": {
"$ref": "#/definitions/WebService"
"$ref": "#/definitions/PatchedWebService"
}
},
{
Expand Down Expand Up @@ -443,6 +443,39 @@
}
}
},
"PatchedResource": {
"description": "Azure resource.",
"x-ms-azure-resource": true,
"properties": {
"id": {
"description": "Specifies the resource ID.",
"type": "string",
"readOnly": true
},
"name": {
"description": "Specifies the name of the resource.",
"type": "string",
"readOnly": true
},
"location": {
"description": "Specifies the location of the resource.",
"type": "string",
"readOnly": true
},
"type": {
"description": "Specifies the type of the resource.",
"type": "string",
"readOnly": true
},
"tags": {
"description": "Contains resource tags defined as key/value pairs.",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"WebService": {
"type": "object",
"description": "Instance of an Azure ML web service resource.",
Expand All @@ -460,6 +493,21 @@
"required": [
"properties"
]
},
"PatchedWebService": {
"type": "object",
"description": "Instance of an Patched Azure ML web service resource.",
"allOf": [
{
"$ref": "#/definitions/PatchedResource"
}
],
"properties": {
"properties": {
"$ref": "#/definitions/WebServiceProperties",
"description": "Contains the property payload that describes the web service."
}
}
},
"WebServiceProperties": {
"type": "object",
Expand Down