Skip to content

Commit 9246d62

Browse files
committed
Adds base for updating Microsoft.Web from version stable/2020-12-01 to version 2021-01-01
1 parent dceaa75 commit 9246d62

File tree

133 files changed

+63198
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

133 files changed

+63198
-0
lines changed

specification/web/resource-manager/Microsoft.Web/stable/2021-01-01/AppServiceEnvironments.json

Lines changed: 2883 additions & 0 deletions
Large diffs are not rendered by default.

specification/web/resource-manager/Microsoft.Web/stable/2021-01-01/AppServicePlans.json

Lines changed: 1748 additions & 0 deletions
Large diffs are not rendered by default.

specification/web/resource-manager/Microsoft.Web/stable/2021-01-01/Certificates.json

Lines changed: 659 additions & 0 deletions
Large diffs are not rendered by default.

specification/web/resource-manager/Microsoft.Web/stable/2021-01-01/CommonDefinitions.json

Lines changed: 3329 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 207 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,207 @@
1+
{
2+
"swagger": "2.0",
3+
"info": {
4+
"version": "2020-12-01",
5+
"title": "DeletedWebApps API Client"
6+
},
7+
"host": "management.azure.com",
8+
"schemes": [
9+
"https"
10+
],
11+
"consumes": [
12+
"application/json"
13+
],
14+
"produces": [
15+
"application/json"
16+
],
17+
"paths": {
18+
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/deletedSites": {
19+
"get": {
20+
"tags": [
21+
"DeletedWebApps"
22+
],
23+
"summary": "Get all deleted apps for a subscription.",
24+
"description": "Description for Get all deleted apps for a subscription.",
25+
"operationId": "DeletedWebApps_List",
26+
"parameters": [
27+
{
28+
"$ref": "#/parameters/subscriptionIdParameter"
29+
},
30+
{
31+
"$ref": "#/parameters/apiVersionParameter"
32+
}
33+
],
34+
"responses": {
35+
"200": {
36+
"description": "OK",
37+
"schema": {
38+
"$ref": "#/definitions/DeletedWebAppCollection"
39+
}
40+
},
41+
"default": {
42+
"description": "App Service error response.",
43+
"schema": {
44+
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
45+
}
46+
}
47+
},
48+
"x-ms-pageable": {
49+
"nextLinkName": "nextLink"
50+
}
51+
}
52+
},
53+
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites": {
54+
"get": {
55+
"tags": [
56+
"DeletedWebApps"
57+
],
58+
"summary": "Get all deleted apps for a subscription at location",
59+
"description": "Description for Get all deleted apps for a subscription at location",
60+
"operationId": "DeletedWebApps_ListByLocation",
61+
"parameters": [
62+
{
63+
"name": "location",
64+
"in": "path",
65+
"required": true,
66+
"type": "string"
67+
},
68+
{
69+
"$ref": "#/parameters/subscriptionIdParameter"
70+
},
71+
{
72+
"$ref": "#/parameters/apiVersionParameter"
73+
}
74+
],
75+
"responses": {
76+
"200": {
77+
"description": "OK",
78+
"schema": {
79+
"$ref": "#/definitions/DeletedWebAppCollection"
80+
}
81+
},
82+
"default": {
83+
"description": "App Service error response.",
84+
"schema": {
85+
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
86+
}
87+
}
88+
},
89+
"x-ms-examples": {
90+
"List Deleted Web App by Location": {
91+
"$ref": "./examples/ListDeletedWebAppsByLocation.json"
92+
}
93+
},
94+
"x-ms-pageable": {
95+
"nextLinkName": "nextLink"
96+
}
97+
}
98+
},
99+
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/locations/{location}/deletedSites/{deletedSiteId}": {
100+
"get": {
101+
"tags": [
102+
"DeletedWebApps"
103+
],
104+
"summary": "Get deleted app for a subscription at location.",
105+
"description": "Description for Get deleted app for a subscription at location.",
106+
"operationId": "DeletedWebApps_GetDeletedWebAppByLocation",
107+
"parameters": [
108+
{
109+
"name": "location",
110+
"in": "path",
111+
"required": true,
112+
"type": "string"
113+
},
114+
{
115+
"name": "deletedSiteId",
116+
"in": "path",
117+
"description": "The numeric ID of the deleted app, e.g. 12345",
118+
"required": true,
119+
"type": "string"
120+
},
121+
{
122+
"$ref": "#/parameters/subscriptionIdParameter"
123+
},
124+
{
125+
"$ref": "#/parameters/apiVersionParameter"
126+
}
127+
],
128+
"responses": {
129+
"200": {
130+
"description": "OK",
131+
"schema": {
132+
"$ref": "./CommonDefinitions.json#/definitions/DeletedSite"
133+
}
134+
},
135+
"default": {
136+
"description": "App Service error response.",
137+
"schema": {
138+
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
139+
}
140+
}
141+
},
142+
"x-ms-examples": {
143+
"Get Deleted Web App by Location": {
144+
"$ref": "./examples/GetDeletedWebAppByLocation.json"
145+
}
146+
}
147+
}
148+
}
149+
},
150+
"definitions": {
151+
"DeletedWebAppCollection": {
152+
"description": "Collection of deleted apps.",
153+
"required": [
154+
"value"
155+
],
156+
"type": "object",
157+
"properties": {
158+
"value": {
159+
"description": "Collection of resources.",
160+
"type": "array",
161+
"items": {
162+
"$ref": "./CommonDefinitions.json#/definitions/DeletedSite"
163+
}
164+
},
165+
"nextLink": {
166+
"description": "Link to next page of resources.",
167+
"type": "string",
168+
"readOnly": true
169+
}
170+
}
171+
}
172+
},
173+
"parameters": {
174+
"subscriptionIdParameter": {
175+
"name": "subscriptionId",
176+
"in": "path",
177+
"description": "Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).",
178+
"required": true,
179+
"type": "string"
180+
},
181+
"apiVersionParameter": {
182+
"name": "api-version",
183+
"in": "query",
184+
"description": "API Version",
185+
"required": true,
186+
"type": "string"
187+
}
188+
},
189+
"securityDefinitions": {
190+
"azure_auth": {
191+
"type": "oauth2",
192+
"description": "Azure Active Directory OAuth2 Flow",
193+
"flow": "implicit",
194+
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
195+
"scopes": {
196+
"user_impersonation": "impersonate your user account"
197+
}
198+
}
199+
},
200+
"security": [
201+
{
202+
"azure_auth": [
203+
"user_impersonation"
204+
]
205+
}
206+
]
207+
}

0 commit comments

Comments
 (0)