Skip to content

Commit

Permalink
address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaomuzhi committed Sep 22, 2020
1 parent e4a5d19 commit 8f20ad7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,19 @@
"responses": {
"200": {
"body": {
"subscriptionId": "00000000-0000-0000-0000-000000000000",
"transitivePrivateEndpointsUsage": {
"totalUsage": 0
},
"transitivePrivateEndpointsQuota": 0,
"privateDnsZonesUsage": {
"totalUsage": 0
},
"privateDnsZonesQuota": 0
"value": [
{
"subscriptionId": "00000000-0000-0000-0000-000000000000",
"transitivePrivateEndpointsUsage": {
"totalUsage": 0
},
"transitivePrivateEndpointsQuota": 0,
"privateDnsZonesUsage": {
"totalUsage": 0
},
"privateDnsZonesQuota": 0
}
]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/listNotebookKeys": {
"get": {
"post": {
"tags": [
"Workspaces"
],
Expand Down Expand Up @@ -499,7 +499,7 @@
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/TransitivePEUsagesResult"
"$ref": "#/definitions/ListTransitivePEUsagesResult"
}
},
"default": {
Expand All @@ -513,6 +513,9 @@
"Get Transitive PE Usages": {
"$ref": "./examples/getTransitivePEUsages.json"
}
},
"x-ms-pageable": {
"nextLinkName": null
}
}
},
Expand Down Expand Up @@ -2287,6 +2290,24 @@
}
}
},
"ListTransitivePEUsagesResult": {
"properties": {
"value": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/TransitivePEUsagesResult"
},
"description": "The list of transitive private endpoint usages."
},
"nextLink": {
"readOnly": true,
"type": "string",
"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."
}
},
"description": "The List transitive private endpoint usages operation response."
},
"ListUsagesResult": {
"properties": {
"value": {
Expand Down

0 comments on commit 8f20ad7

Please sign in to comment.