Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add xms-ids for machinelearning, machinelearningcompute, machinelearningexperimentation and machinelearningservices #17734

Merged
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 @@ -449,7 +449,8 @@
"type": "array",
"items": {
"$ref": "#/definitions/CatalogSku"
}
},
"x-ms-identifiers": []
}
}
},
Expand Down Expand Up @@ -491,6 +492,9 @@
"items": {
"$ref": "#/definitions/SkuCapability"
},
"x-ms-identifiers": [
"name"
],
"description": "The capability information for the specified SKU."
},
"costs": {
Expand All @@ -499,6 +503,7 @@
"items": {
"$ref": "#/definitions/SkuCost"
},
"x-ms-identifiers": [],
"description": "The cost information for the specified SKU."
},
"restrictions": {
Expand All @@ -507,6 +512,7 @@
"items": {
"$ref": "#/definitions/SkuRestrictions"
},
"x-ms-identifiers": [],
"description": "Restrictions which would prevent a SKU from being used. This is empty if there are no restrictions."
}
}
Expand Down Expand Up @@ -912,7 +918,8 @@
"description": "The set of results for this page.",
"items": {
"$ref": "#/definitions/PlanUsageHistory"
}
},
"x-ms-identifiers": []
}
}
},
Expand Down Expand Up @@ -985,7 +992,10 @@
"type": "array",
"items": {
"$ref": "#/definitions/OperationEntity"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -625,6 +625,9 @@
"items": {
"$ref": "#/definitions/Operation"
},
"x-ms-identifiers": [
"name"
],
"description": "List of AML Studio operations supported by the AML Studio resource provider."
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,8 @@
"description": "If the data type is categorical, this provides the list of accepted categories.",
"items": {
"type": "object"
}
},
"x-ms-identifiers": []
},
"x-ms-isnullable": {
"type": "boolean",
Expand Down Expand Up @@ -900,8 +901,10 @@
"type": "array",
"items": {
"type": "object"
}
}
},
"x-ms-identifiers": []
},
"x-ms-identifiers": []
}
},
"globalParameters": {
Expand Down Expand Up @@ -967,7 +970,10 @@
"description": "If the asset is a custom module, this holds the module's parameters.",
"items": {
"$ref": "#/definitions/ModuleAssetParameter"
}
},
"x-ms-identifiers": [
"name"
]
}
},
"required": [
Expand Down Expand Up @@ -1027,7 +1033,10 @@
"description": "The definition of the parameter.",
"items": {
"$ref": "#/definitions/ModuleAssetParameter"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down Expand Up @@ -1083,7 +1092,13 @@
"description": "The list of edges making up the graph.",
"items": {
"$ref": "#/definitions/GraphEdge"
}
},
"x-ms-identifiers": [
"sourceNodeId",
"sourcePortId",
"targetNodeId",
"targetPortId"
]
},
"graphParameters": {
"type": "object",
Expand Down Expand Up @@ -1176,7 +1191,11 @@
"description": "Association links for this parameter to nodes in the graph.",
"items": {
"$ref": "#/definitions/GraphParameterLink"
}
},
"x-ms-identifiers": [
"nodeId",
"parameterKey"
]
}
},
"required": [
Expand Down Expand Up @@ -1294,7 +1313,10 @@
"readOnly": true,
"items": {
"$ref": "#/definitions/AsyncOperationErrorInfo"
}
},
"x-ms-identifiers": [
"code"
]
}
}
},
Expand All @@ -1308,7 +1330,10 @@
"type": "array",
"items": {
"$ref": "#/definitions/OperationEntity"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -602,6 +602,9 @@
"items": {
"$ref": "#/definitions/ErrorResponseWrapper"
},
"x-ms-identifiers": [
"/error/code"
],
"readOnly": true
},
"clusterType": {
Expand Down Expand Up @@ -701,7 +704,10 @@
"description": "The system services deployed to the cluster",
"items": {
"$ref": "#/definitions/SystemService"
}
},
"x-ms-identifiers": [
"publicIpAddress"
]
},
"masterCount": {
"type": "integer",
Expand Down Expand Up @@ -1176,7 +1182,10 @@
"description": "An array of error detail objects.",
"items": {
"$ref": "#/definitions/ErrorDetail"
}
},
"x-ms-identifiers": [
"code"
]
}
},
"required": [
Expand Down Expand Up @@ -1211,7 +1220,10 @@
"description": "An array of available operations.",
"items": {
"$ref": "#/definitions/ResourceOperation"
}
},
"x-ms-identifiers": [
"name"
]
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1280,6 +1280,9 @@
"items": {
"$ref": "#/definitions/Operation"
},
"x-ms-identifiers": [
"name"
],
"description": "List of AML team account operations supported by the AML team account resource provider."
}
}
Expand Down
Loading