Skip to content

Commit 0460de8

Browse files
dulikvorDudi Likvornik
andauthored
Microsoft.OperationalInsights: 2021-12-01-preview (Azure#17138)
* Microsoft.OperationalInsights: tables privatepreview * Microsoft.OperationalInsights: tables privatepreview * Microsoft.OperationalInsights: tables privatepreview * code review changes. * Update Tables.json * Update Tables.json * OperationalManagement: 2021-12-01-preview * more fixes. * Update Clusters.json * Tables: Sentinel+CLV2 changes. * Tables: More descriptions. * removing un related child resources. * Create OperationsListByTenant.json * Update Tables.json * Update TablesGet.json * Add systemData example. * Model fixes + pretty * adding description to ip data hint. * Update Tables.json Co-authored-by: Dudi Likvornik <dulikvor@microsoft.com>
1 parent 7b89a1a commit 0460de8

File tree

17 files changed

+2709
-0
lines changed

17 files changed

+2709
-0
lines changed
Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"title": "Azure Log Analytics",
5+
"description": "Azure Log Analytics API reference",
6+
"version": "2021-12-01-preview"
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+
"description": "List of solution operations supported by the OperationsManagement resource provider."
84+
},
85+
"nextLink": {
86+
"type": "string",
87+
"readOnly": true,
88+
"description": "URL to get the next set of operation list results if there are any."
89+
}
90+
}
91+
},
92+
"Operation": {
93+
"description": "Supported operation of OperationalInsights resource provider.",
94+
"properties": {
95+
"name": {
96+
"description": "Operation name: {provider}/{resource}/{operation}",
97+
"type": "string"
98+
},
99+
"display": {
100+
"description": "Display metadata associated with the operation.",
101+
"properties": {
102+
"provider": {
103+
"description": "Service provider: Microsoft OperationsManagement.",
104+
"type": "string"
105+
},
106+
"resource": {
107+
"description": "Resource on which the operation is performed etc.",
108+
"type": "string"
109+
},
110+
"operation": {
111+
"description": "Type of operation: get, read, delete, etc.",
112+
"type": "string"
113+
},
114+
"description": {
115+
"description": "Description of operation",
116+
"type": "string"
117+
}
118+
}
119+
}
120+
}
121+
}
122+
},
123+
"parameters": {}
124+
}

0 commit comments

Comments
 (0)