Skip to content

Commit 8f20ad7

Browse files
committed
address comments
1 parent e4a5d19 commit 8f20ad7

File tree

2 files changed

+36
-11
lines changed

2 files changed

+36
-11
lines changed

specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2020-09-01-preview/examples/getTransitivePEUsages.json

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,19 @@
77
"responses": {
88
"200": {
99
"body": {
10-
"subscriptionId": "00000000-0000-0000-0000-000000000000",
11-
"transitivePrivateEndpointsUsage": {
12-
"totalUsage": 0
13-
},
14-
"transitivePrivateEndpointsQuota": 0,
15-
"privateDnsZonesUsage": {
16-
"totalUsage": 0
17-
},
18-
"privateDnsZonesQuota": 0
10+
"value": [
11+
{
12+
"subscriptionId": "00000000-0000-0000-0000-000000000000",
13+
"transitivePrivateEndpointsUsage": {
14+
"totalUsage": 0
15+
},
16+
"transitivePrivateEndpointsQuota": 0,
17+
"privateDnsZonesUsage": {
18+
"totalUsage": 0
19+
},
20+
"privateDnsZonesQuota": 0
21+
}
22+
]
1923
}
2024
}
2125
}

specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/preview/2020-09-01-preview/machineLearningServices.json

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@
350350
}
351351
},
352352
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/listNotebookKeys": {
353-
"get": {
353+
"post": {
354354
"tags": [
355355
"Workspaces"
356356
],
@@ -499,7 +499,7 @@
499499
"200": {
500500
"description": "OK",
501501
"schema": {
502-
"$ref": "#/definitions/TransitivePEUsagesResult"
502+
"$ref": "#/definitions/ListTransitivePEUsagesResult"
503503
}
504504
},
505505
"default": {
@@ -513,6 +513,9 @@
513513
"Get Transitive PE Usages": {
514514
"$ref": "./examples/getTransitivePEUsages.json"
515515
}
516+
},
517+
"x-ms-pageable": {
518+
"nextLinkName": null
516519
}
517520
}
518521
},
@@ -2287,6 +2290,24 @@
22872290
}
22882291
}
22892292
},
2293+
"ListTransitivePEUsagesResult": {
2294+
"properties": {
2295+
"value": {
2296+
"readOnly": true,
2297+
"type": "array",
2298+
"items": {
2299+
"$ref": "#/definitions/TransitivePEUsagesResult"
2300+
},
2301+
"description": "The list of transitive private endpoint usages."
2302+
},
2303+
"nextLink": {
2304+
"readOnly": true,
2305+
"type": "string",
2306+
"description": "The URI to fetch the next page of transitive private endpoint usages information. Call ListNext() with this to fetch the next page of AML resource usage information."
2307+
}
2308+
},
2309+
"description": "The List transitive private endpoint usages operation response."
2310+
},
22902311
"ListUsagesResult": {
22912312
"properties": {
22922313
"value": {

0 commit comments

Comments
 (0)