-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
workspaceFeatures.json
114 lines (114 loc) · 3.44 KB
/
workspaceFeatures.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"swagger": "2.0",
"info": {
"title": "Azure Machine Learning Workspaces",
"version": "2022-06-01-preview"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/features": {
"get": {
"tags": [
"Workspaces"
],
"description": "Lists all enabled features for a workspace",
"operationId": "WorkspaceFeatures_List",
"x-ms-examples": {
"List Workspace features": {
"$ref": "./examples/WorkspaceFeature/list.json"
}
},
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v3/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "machineLearningServices.json#/parameters/WorkspaceNameParameter"
}
],
"responses": {
"200": {
"description": "The request was successful; the request was well-formed and received properly.",
"schema": {
"$ref": "#/definitions/ListAmlUserFeatureResult"
}
},
"default": {
"description": "Error response describing why the operation failed",
"schema": {
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
}
},
"definitions": {
"AmlUserFeature": {
"description": "Features enabled for a workspace",
"type": "object",
"properties": {
"id": {
"description": "Specifies the feature ID",
"type": "string"
},
"displayName": {
"description": "Specifies the feature name ",
"type": "string"
},
"description": {
"description": "Describes the feature for user experience",
"type": "string"
}
}
},
"ListAmlUserFeatureResult": {
"type": "object",
"properties": {
"value": {
"readOnly": true,
"type": "array",
"items": {
"$ref": "#/definitions/AmlUserFeature"
},
"description": "The list of AML user facing features."
},
"nextLink": {
"readOnly": true,
"type": "string",
"description": "The URI to fetch the next page of AML user features information. Call ListNext() with this to fetch the next page of AML user features information."
}
},
"description": "The List Aml user feature operation response."
}
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
},
"description": "Azure Active Directory OAuth2 Flow."
}
}
}