Skip to content
Merged
Original file line number Diff line number Diff line change
Expand Up @@ -9,67 +9,35 @@
"value": [
{
"resourceType": "workspaces",
"name": "Basic",
"tier": "Basic",
"locations": [
"westus"
],
"locationInfo": [
"skus": [
{
"location": "westus",
"zones": [
"westus-AZ02",
"westus-AZ01"
]
}
],
"capabilities": [
{
"name": "automatedml_readhyperdrivesdk",
"value": "{\n \"id\": \"automatedml_ readhyperdrivesdk\",\n \"name\": \"Read hyperdrive SDK\",\n \"description\": \"Read only access to Hyperdrive in the SDK\"\n}"
},
{
"name": "workspace_upgradeworkspacesdk",
"value": "{\n \"id\": \"workspace_upgradeworkspacesdk\",\n \"name\": \"Upgrade workspace SDK\",\n \"description\": \"Upgrade workspace from Basic to enterprise from the SDK\"\n}"
}
],
"restrictions": []
},
{
"resourceType": "workspaces",
"name": "Enterprise",
"tier": "Enterprise",
"locations": [
"westus"
],
"locationInfo": [
{
"location": "westus",
"zones": [
"westus-AZ01"
"name": "Basic",
"tier": "Basic",
"locations": [
"westus"
],
"zoneDetails": [
"locationInfo": [
{
"name": [
"location": "westus",
"zones": [
"westus-AZ02",
"westus-AZ01"
],
"capabilities": [
{
"name": "automatedml_createeditexperimentssdk",
"value": "{\n \"id\": \"automatedml_createeditexperimentssdk\",\n \"name\": \"Create edit experiments SDK\",\n \"description\": \"Create, edit or delete AutoML experiments in the SDK\"\n}"
}
]
}
]
}
],
"capabilities": [
{
"name": "automatedml_createeditexperimentssdk",
"value": "{\n \"id\": \"automatedml_createeditexperimentssdk\",\n \"name\": \"Create edit experiments SDK\",\n \"description\": \"Create, edit or delete AutoML experiments in the SDK\"\n}"
],
"capabilities": [
{
"name": "automatedml_readhyperdrivesdk",
"value": "{\n \"id\": \"automatedml_ readhyperdrivesdk\",\n \"name\": \"Read hyperdrive SDK\",\n \"description\": \"Read only access to Hyperdrive in the SDK\"\n}"
},
{
"name": "workspace_upgradeworkspacesdk",
"value": "{\n \"id\": \"workspace_upgradeworkspacesdk\",\n \"name\": \"Upgrade workspace SDK\",\n \"description\": \"Upgrade workspace from Basic to enterprise from the SDK\"\n}"
}
],
"restrictions": []
}
],
"restrictions": []
]
}
],
"nextLink": null
Expand Down
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 @@ -1344,7 +1344,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
"$ref": "#/definitions/MachineLearningServiceError"
}
}
}
Expand Down Expand Up @@ -1396,7 +1396,7 @@
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
"$ref": "#/definitions/MachineLearningServiceError"
}
}
}
Expand All @@ -1407,6 +1407,7 @@
],
"operationId": "PrivateEndpointConnections_Delete",
"description": "Deletes the specified private endpoint connection associated with the workspace.",
"x-ms-long-running-operation": true,
"x-ms-examples": {
"WorkspaceDeletePrivateEndpointConnection": {
"$ref": "./examples/workspaceDeletePrivateEndpointConnection.json"
Expand All @@ -1433,13 +1434,16 @@
"200": {
"description": "OK -- Delete the private endpoint connection successfully."
},
"202": {
"description": "The request was successful; the request was well-formed and received properly."
},
"204": {
"description": "No Content -- The private endpoint connection does not exist."
},
"default": {
"description": "Error response describing why the operation failed.",
"schema": {
"$ref": "#/definitions/ErrorResponse"
"$ref": "#/definitions/MachineLearningServiceError"
}
}
}
Expand Down Expand Up @@ -3533,6 +3537,24 @@
"description": "Describes The zonal capabilities of a SKU."
},
"WorkspaceSku": {
"type": "object",
"description": "AML workspace sku information",
"properties": {
"resourceType": {
"readOnly": true,
"type": "string"
},
"skus": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/SkuSettings"
},
"description": "The list of workspace sku settings"
}
}
},
"SkuSettings": {
"description": "Describes Workspace Sku details and features",
"type": "object",
"properties": {
Expand Down Expand Up @@ -3646,19 +3668,31 @@
}
},
"PrivateEndpointConnection": {
"x-ms-azure-resource": true,
"description": "The Private Endpoint Connection resource.",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ResourceId of the private endpoint connection.",
"readOnly": true
},
"name": {
"type": "string",
"description": "Friendly name of the private endpoint connection.",
"readOnly": true
},
"type": {
"type": "string",
"description": "Resource type of private endpoint connection.",
"readOnly": true
},
"properties": {
"$ref": "#/definitions/PrivateEndpointConnectionProperties",
"x-ms-client-flatten": true,
"description": "Resource properties."
}
},
"allOf": [
{
"$ref": "#/definitions/Resource"
}
],
"description": "The Private Endpoint Connection resource."
}
},
"PrivateEndpointConnectionProperties": {
"properties": {
Expand Down