Skip to content

Commit 9c80ca1

Browse files
authored
OperationalInsights: 2022-10-01 stable version. (Azure#20236)
* OperationalInsights: 2022-10-01 stable version * Actual changes. * More fixes. * more changes. * Removing redundant breaking change. * Workspace identity: referencing standard types. * Referencing managed identity standard type, refactoring booleans into enum. * Fixing examples. * Removing duplicate resource. * Update Workspaces.json * Update Clusters.json * Revert "Update Clusters.json" This reverts commit 4eb99cf. * Revert "Update Workspaces.json" This reverts commit c16bc82. * Returning to our identity implementation.
1 parent a5df773 commit 9c80ca1

19 files changed

+2975
-7
lines changed
Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"title": "Azure Log Analytics",
5+
"description": "Azure Log Analytics API reference",
6+
"version": "2022-10-01"
7+
},
8+
"host": "management.azure.com",
9+
"schemes": [
10+
"https"
11+
],
12+
"consumes": [
13+
"application/json"
14+
],
15+
"produces": [
16+
"application/json"
17+
],
18+
"security": [
19+
{
20+
"azure_auth": [
21+
"user_impersonation"
22+
]
23+
}
24+
],
25+
"securityDefinitions": {
26+
"azure_auth": {
27+
"type": "oauth2",
28+
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
29+
"flow": "implicit",
30+
"description": "Azure Active Directory OAuth2 Flow",
31+
"scopes": {
32+
"user_impersonation": "impersonate your user account"
33+
}
34+
}
35+
},
36+
"paths": {
37+
"/providers/Microsoft.OperationalInsights/operations": {
38+
"get": {
39+
"x-ms-examples": {
40+
"Get specific operation status": {
41+
"$ref": "./examples/OperationsListByTenant.json"
42+
}
43+
},
44+
"tags": [
45+
"Operations"
46+
],
47+
"operationId": "Operations_List",
48+
"description": "Lists all of the available OperationalInsights Rest API operations.",
49+
"parameters": [
50+
{
51+
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
52+
}
53+
],
54+
"responses": {
55+
"200": {
56+
"description": "OK response definition.",
57+
"schema": {
58+
"$ref": "#/definitions/OperationListResult"
59+
}
60+
},
61+
"default": {
62+
"description": "Error response describing why the operation failed.",
63+
"schema": {
64+
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
65+
}
66+
}
67+
},
68+
"x-ms-pageable": {
69+
"nextLinkName": "nextLink"
70+
}
71+
}
72+
}
73+
},
74+
"definitions": {
75+
"OperationListResult": {
76+
"description": "Result of the request to list solution operations.",
77+
"properties": {
78+
"value": {
79+
"type": "array",
80+
"items": {
81+
"$ref": "#/definitions/Operation"
82+
},
83+
"x-ms-identifiers": [
84+
"name"
85+
],
86+
"description": "List of solution operations supported by the OperationsManagement resource provider."
87+
},
88+
"nextLink": {
89+
"type": "string",
90+
"readOnly": true,
91+
"description": "URL to get the next set of operation list results if there are any."
92+
}
93+
}
94+
},
95+
"Operation": {
96+
"description": "Supported operation of OperationalInsights resource provider.",
97+
"properties": {
98+
"name": {
99+
"description": "Operation name: {provider}/{resource}/{operation}",
100+
"type": "string"
101+
},
102+
"display": {
103+
"description": "Display metadata associated with the operation.",
104+
"properties": {
105+
"provider": {
106+
"description": "Service provider: Microsoft OperationsManagement.",
107+
"type": "string"
108+
},
109+
"resource": {
110+
"description": "Resource on which the operation is performed etc.",
111+
"type": "string"
112+
},
113+
"operation": {
114+
"description": "Type of operation: get, read, delete, etc.",
115+
"type": "string"
116+
},
117+
"description": {
118+
"description": "Description of operation",
119+
"type": "string"
120+
}
121+
}
122+
}
123+
}
124+
}
125+
},
126+
"parameters": {}
127+
}

0 commit comments

Comments
 (0)