-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
LabPlans.json
532 lines (532 loc) · 17.9 KB
/
LabPlans.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
{
"swagger": "2.0",
"info": {
"version": "2021-11-15-preview",
"title": "LabServicesClient",
"description": "REST API for managing Azure Lab Services lab plans."
},
"host": "management.azure.com",
"schemes": [
"https"
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.LabServices/labPlans": {
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"in": "query",
"name": "$filter",
"type": "string",
"description": "The filter to apply to the operation."
}
],
"get": {
"tags": [
"LabPlan"
],
"summary": "Get all lab plans for a subscription.",
"description": "Returns a list of all lab plans within a subscription",
"operationId": "LabPlans_ListBySubscription",
"responses": {
"200": {
"description": "The request was successful; response contains all Lab Plans for the given subscription.",
"schema": {
"$ref": "#/definitions/PagedLabPlans"
}
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"listLabPlans": {
"$ref": "./examples/LabPlans/listLabPlans.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labPlans": {
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
}
],
"get": {
"tags": [
"LabPlan"
],
"summary": "Get all lab plans for a subscription and resource group.",
"description": "Returns a list of all lab plans for a subscription and resource group.",
"operationId": "LabPlans_ListByResourceGroup",
"responses": {
"200": {
"description": "The request was successful; response contains all Lab Plans for the given subscription.",
"schema": {
"$ref": "#/definitions/PagedLabPlans"
}
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"listResourceGroupLabPlans": {
"$ref": "./examples/LabPlans/listResourceGroupLabPlans.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labPlans/{labPlanName}": {
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/LabPlanNameParameter"
}
],
"get": {
"tags": [
"LabPlan"
],
"summary": "Retrieves a Lab Plan resource.",
"description": "Retrieves the properties of a Lab Plan.",
"operationId": "LabPlans_Get",
"responses": {
"200": {
"description": "The request was successful; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-examples": {
"getLabPlan": {
"$ref": "./examples/LabPlans/getLabPlan.json"
}
}
},
"put": {
"tags": [
"LabPlan"
],
"summary": "Updates or creates a Lab Plan resource.",
"description": "Operation to create or update a Lab Plan resource.",
"operationId": "LabPlans_CreateOrUpdate",
"parameters": [
{
"in": "body",
"name": "body",
"description": "The request body.",
"required": true,
"schema": {
"$ref": "#/definitions/LabPlan"
}
}
],
"responses": {
"200": {
"description": "The update was successful; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"201": {
"description": "The create was successful; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"202": {
"description": "The update was successful and has a long running operation; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "original-uri"
},
"x-ms-examples": {
"putLabPlan": {
"$ref": "./examples/LabPlans/putLabPlan.json"
}
}
},
"patch": {
"tags": [
"LabPlan"
],
"summary": "Updates a Lab Plan resource.",
"description": "Operation to update a Lab Plan resource.",
"consumes": [
"application/json"
],
"operationId": "LabPlans_Update",
"parameters": [
{
"in": "body",
"name": "body",
"description": "The request body.",
"required": true,
"schema": {
"$ref": "#/definitions/LabPlanUpdate"
}
}
],
"responses": {
"200": {
"description": "The update was successful; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"202": {
"description": "The update was successful and has a long running operation; response contains the Lab Plan.",
"schema": {
"$ref": "#/definitions/LabPlan"
}
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"x-ms-examples": {
"patchLabPlan": {
"$ref": "./examples/LabPlans/patchLabPlan.json"
}
}
},
"delete": {
"tags": [
"LabPlan"
],
"summary": "Deletes a Lab Plan resource.",
"description": "Operation to delete a Lab Plan resource. Deleting a lab plan does not delete labs associated with a lab plan, nor does it delete shared images added to a gallery via the lab plan permission container.",
"operationId": "LabPlans_Delete",
"responses": {
"200": {
"description": "The request was successful."
},
"202": {
"description": "The request was accepted."
},
"204": {
"description": "The request has been fulfilled."
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"x-ms-examples": {
"deleteLabPlan": {
"$ref": "./examples/LabPlans/deleteLabPlan.json"
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.LabServices/labPlans/{labPlanName}/saveImage": {
"parameters": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/parameters/ResourceGroupNameParameter"
},
{
"$ref": "#/parameters/LabPlanNameParameter"
}
],
"post": {
"tags": [
"VirtualMachine"
],
"summary": "Save an image from a lab VM to the attached shared image gallery.",
"description": "Saves an image from a lab VM to the attached shared image gallery.",
"operationId": "LabPlans_SaveImage",
"parameters": [
{
"in": "body",
"name": "body",
"description": "The request body.",
"required": true,
"schema": {
"$ref": "#/definitions/SaveImageBody"
}
}
],
"responses": {
"200": {
"description": "The request was successful."
},
"202": {
"description": "The request was accepted."
},
"default": {
"description": "The default error response.",
"schema": {
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/ErrorResponse"
}
}
},
"x-ms-long-running-operation": true,
"x-ms-long-running-operation-options": {
"final-state-via": "location"
},
"x-ms-examples": {
"saveImageVirtualMachine": {
"$ref": "./examples/LabPlans/saveImageVirtualMachine.json"
}
}
}
}
},
"definitions": {
"LabPlan": {
"description": "Lab Plans act as a permission container for creating labs via labs.azure.com. Additionally, they can provide a set of default configurations that will apply at the time of creating a lab, but these defaults can still be overwritten.",
"type": "object",
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/TrackedResource"
}
],
"properties": {
"systemData": {
"description": "Metadata pertaining to creation and last modification of the lab plan.",
"$ref": "../../../../../common-types/resource-management/v2/types.json#/definitions/systemData",
"readOnly": true
},
"properties": {
"description": "Lab plan resource properties",
"$ref": "#/definitions/LabPlanProperties",
"x-ms-client-flatten": true
}
},
"required": [
"properties"
]
},
"PagedLabPlans": {
"description": "Paged list of lab plans.",
"type": "object",
"properties": {
"value": {
"description": "The array page of lab plans.",
"type": "array",
"items": {
"$ref": "#/definitions/LabPlan"
},
"readOnly": true
},
"nextLink": {
"description": "The link to get the next page of lab plan results.",
"type": "string",
"readOnly": true
}
}
},
"LabPlanNetworkProfile": {
"description": "Profile for how to handle networking for Lab Plans.",
"type": "object",
"properties": {
"subnetId": {
"description": "The external subnet resource id",
"$ref": "LabServices.json#/definitions/url"
}
}
},
"LabPlanUpdate": {
"description": "Contains lab configuration and default settings. This variant is used for PATCH.",
"type": "object",
"allOf": [
{
"$ref": "LabServices.json#/definitions/TrackedResourceUpdate"
}
],
"properties": {
"properties": {
"description": "Lab plan resource update properties",
"$ref": "#/definitions/LabPlanUpdateProperties",
"x-ms-client-flatten": true
}
}
},
"LabPlanUpdateProperties": {
"description": "Lab plan resource properties for updates",
"type": "object",
"properties": {
"defaultConnectionProfile": {
"description": "The default lab connection profile. This can be changed on a lab resource and only provides a default profile.",
"$ref": "LabServices.json#/definitions/ConnectionProfile"
},
"defaultAutoShutdownProfile": {
"description": "The default lab shutdown profile. This can be changed on a lab resource and only provides a default profile.",
"$ref": "LabServices.json#/definitions/AutoShutdownProfile"
},
"defaultNetworkProfile": {
"description": "The lab plan network profile. To enforce lab network policies they must be defined here and cannot be changed when there are existing labs associated with this lab plan.",
"$ref": "#/definitions/LabPlanNetworkProfile"
},
"allowedRegions": {
"description": "The allowed regions for the lab creator to use when creating labs using this lab plan.",
"type": "array",
"items": {
"type": "string"
}
},
"sharedGalleryId": {
"description": "Resource ID of the Shared Image Gallery attached to this lab plan. When saving a lab template virtual machine image it will be persisted in this gallery. Shared images from the gallery can be made available to use when creating new labs.",
"$ref": "LabServices.json#/definitions/url"
},
"supportInfo": {
"description": "Support contact information and instructions for users of the lab plan. This information is displayed to lab owners and virtual machine users for all labs in the lab plan.",
"$ref": "#/definitions/SupportInfo"
},
"linkedLmsInstance": {
"description": "Base Url of the lms instance this lab plan can link lab rosters against.",
"$ref": "LabServices.json#/definitions/url"
}
}
},
"LabPlanProperties": {
"description": "Lab plan resource properties",
"type": "object",
"allOf": [
{
"$ref": "#/definitions/LabPlanUpdateProperties"
}
],
"properties": {
"provisioningState": {
"description": "Current provisioning state of the lab plan.",
"$ref": "LabServices.json#/definitions/provisioningState",
"readOnly": true
}
}
},
"SupportInfo": {
"description": "Support contact information and instructions.",
"type": "object",
"properties": {
"url": {
"description": "Support web address.",
"$ref": "LabServices.json#/definitions/url"
},
"email": {
"description": "Support contact email address.",
"$ref": "LabServices.json#/definitions/emailAddress"
},
"phone": {
"description": "Support contact phone number.",
"$ref": "LabServices.json#/definitions/phoneNumber"
},
"instructions": {
"description": "Support instructions.",
"type": "string"
}
}
},
"SaveImageBody": {
"description": "Body for the save image POST",
"type": "object",
"properties": {
"name": {
"description": "The name for the image we create.",
"type": "string"
},
"labVirtualMachineId": {
"description": "The ID of the lab virtual machine you want to save an image from.",
"$ref": "LabServices.json#/definitions/url"
}
}
}
},
"parameters": {
"LabPlanNameParameter": {
"name": "labPlanName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the lab plan that uniquely identifies it within containing resource group. Used in resource URIs and in UI.",
"minLength": 1,
"maxLength": 100,
"x-ms-parameter-location": "method"
}
}
}