-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
ContainerApps.json
612 lines (612 loc) · 17.5 KB
/
ContainerApps.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
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
{
"swagger": "2.0",
"info": {
"version": "2022-09-01",
"title": "ContainerApps API Client"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/containerApps": {
"get": {
"tags": [
"ContainerApps"
],
"summary": "Get the Container Apps in a given subscription.",
"operationId": "ContainerApps_ListBySubscription",
"parameters": [
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ContainerAppCollection"
}
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"List Container Apps by resource group": {
"$ref": "./examples/ListContainerAppsBySubscription.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/containerApps": {
"get": {
"tags": [
"ContainerApps"
],
"summary": "Get the Container Apps in a given resource group.",
"operationId": "ContainerApps_ListByResourceGroup",
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
},
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/ContainerAppCollection"
}
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"List Container Apps by resource group": {
"$ref": "./examples/ListContainerAppsByResourceGroup.json"
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Web/containerApps/{name}": {
"get": {
"tags": [
"ContainerApps"
],
"summary": "Get the properties of a Container App.",
"operationId": "ContainerApps_Get",
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
},
{
"name": "name",
"in": "path",
"description": "Name of the Container App.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "OK.",
"schema": {
"$ref": "#/definitions/ContainerApp"
}
},
"404": {
"description": "Not found.",
"x-ms-error-response": true
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"Get Container App": {
"$ref": "./examples/GetContainerApp.json"
}
}
},
"put": {
"tags": [
"ContainerApps"
],
"summary": "Create or update a Container App.",
"description": "Description for Create or update a Container App.",
"operationId": "ContainerApps_CreateOrUpdate",
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
},
{
"name": "name",
"in": "path",
"description": "Name of the Container App.",
"required": true,
"type": "string"
},
{
"name": "containerAppEnvelope",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/ContainerApp"
}
},
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "No change performed on the Container App.",
"schema": {
"$ref": "#/definitions/ContainerApp"
}
},
"201": {
"description": "Container App create or update has been started.",
"schema": {
"$ref": "#/definitions/ContainerApp"
}
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"Create or Update Container App": {
"$ref": "./examples/CreateOrUpdateContainerApp.json"
}
},
"x-ms-long-running-operation": true
},
"delete": {
"tags": [
"ContainerApps"
],
"summary": "Delete a Container App.",
"description": "Description for Delete a Container App.",
"operationId": "ContainerApps_Delete",
"parameters": [
{
"$ref": "#/parameters/resourceGroupNameParameter"
},
{
"name": "name",
"in": "path",
"description": "Name of the Container App.",
"required": true,
"type": "string"
},
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
}
],
"responses": {
"200": {
"description": "Container App deleted successfully."
},
"202": {
"description": "Delete operation is in progress."
},
"204": {
"description": "Container App does not exist."
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"Delete Container App": {
"$ref": "./examples/DeleteContainerApp.json"
}
},
"x-ms-long-running-operation": true
}
},
"/subscriptions/{subscriptionId}/providers/Microsoft.Web/containerApps/{name}/listSecrets": {
"post": {
"tags": [
"ContainerApps"
],
"summary": "List secrets for a container app",
"operationId": "ContainerApps_ListSecrets",
"parameters": [
{
"$ref": "#/parameters/subscriptionIdParameter"
},
{
"$ref": "#/parameters/apiVersionParameter"
},
{
"name": "name",
"in": "path",
"description": "Name of the Container App.",
"required": true,
"type": "string"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/SecretsCollection"
}
},
"default": {
"description": "App Service error response.",
"schema": {
"$ref": "./CommonDefinitions.json#/definitions/DefaultErrorResponse"
}
}
},
"x-ms-examples": {
"List Container Apps Secrets": {
"$ref": "./examples/ListContainerAppSecrets.json"
}
}
}
}
},
"definitions": {
"Configuration": {
"description": "Non versioned Container App configuration properties that define the mutable settings of a Container app",
"type": "object",
"properties": {
"secrets": {
"description": "Collection of secrets used by a Container app",
"type": "array",
"items": {
"$ref": "#/definitions/Secret"
},
"x-ms-identifiers": [
"name"
]
},
"activeRevisionsMode": {
"description": "ActiveRevisionsMode controls how active revisions are handled for the Container app:\n<list><item>Multiple: multiple revisions can be active. If no value if provided, this is the default</item><item>Single: Only one revision can be active at a time. Revision weights can not be used in this mode</item></list>",
"enum": [
"multiple",
"single"
],
"type": "string",
"x-ms-enum": {
"name": "ActiveRevisionsMode",
"modelAsString": true
}
},
"ingress": {
"$ref": "#/definitions/Ingress",
"description": "Ingress configurations."
},
"registries": {
"description": "Collection of private container registry credentials for containers used by the Container app",
"type": "array",
"items": {
"$ref": "#/definitions/RegistryCredentials"
},
"x-ms-identifiers": [
"server"
]
}
}
},
"ContainerApp": {
"description": "Container App.",
"type": "object",
"allOf": [
{
"$ref": "./CommonDefinitions.json#/definitions/Resource"
}
],
"properties": {
"properties": {
"description": "ContainerApp resource specific properties",
"type": "object",
"properties": {
"provisioningState": {
"description": "Provisioning state of the Container App.",
"enum": [
"InProgress",
"Succeeded",
"Failed",
"Canceled"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "ContainerAppProvisioningState",
"modelAsString": true
}
},
"kubeEnvironmentId": {
"description": "Resource ID of the Container App's KubeEnvironment.",
"type": "string",
"x-ms-mutability": [
"create",
"read"
]
},
"latestRevisionName": {
"description": "Name of the latest revision of the Container App.",
"type": "string",
"readOnly": true
},
"latestRevisionFqdn": {
"description": "Fully Qualified Domain Name of the latest revision of the Container App.",
"type": "string",
"readOnly": true
},
"configuration": {
"$ref": "#/definitions/Configuration",
"description": "Non versioned Container App configuration properties."
},
"template": {
"$ref": "./CommonDefinitions.json#/definitions/Template",
"description": "Container App versioned application definition."
}
},
"x-ms-client-flatten": true
}
}
},
"ContainerAppCollection": {
"description": "Container App collection ARM resource.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/ContainerApp"
}
},
"nextLink": {
"description": "Link to next page of resources.",
"type": "string",
"readOnly": true
}
}
},
"SecretsCollection": {
"description": "Container App Secrets Collection ARM resource.",
"required": [
"value"
],
"type": "object",
"properties": {
"value": {
"description": "Collection of resources.",
"type": "array",
"items": {
"$ref": "#/definitions/ContainerAppSecret"
},
"x-ms-identifiers": [
"name"
]
}
}
},
"Ingress": {
"description": "Container App Ingress configuration.",
"type": "object",
"properties": {
"fqdn": {
"description": "Hostname.",
"type": "string",
"readOnly": true
},
"external": {
"description": "Bool indicating if app exposes an external http endpoint",
"default": false,
"type": "boolean"
},
"targetPort": {
"format": "int32",
"description": "Target Port in containers for traffic from ingress",
"type": "integer"
},
"transport": {
"description": "Ingress transport protocol",
"enum": [
"auto",
"http",
"http2"
],
"type": "string",
"x-ms-enum": {
"name": "IngressTransportMethod",
"modelAsString": true
}
},
"traffic": {
"type": "array",
"items": {
"$ref": "#/definitions/TrafficWeight"
},
"x-ms-identifiers": [
"revisionName"
]
},
"allowInsecure": {
"description": "Bool indicating if HTTP connections to is allowed. If set to false HTTP connections are automatically redirected to HTTPS connections",
"type": "boolean"
}
}
},
"RegistryCredentials": {
"description": "Container App Private Registry",
"type": "object",
"properties": {
"server": {
"description": "Container Registry Server",
"type": "string"
},
"username": {
"description": "Container Registry Username",
"type": "string"
},
"passwordSecretRef": {
"description": "The name of the Secret that contains the registry login password",
"type": "string"
}
}
},
"Secret": {
"description": "Container App Secret.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string"
},
"value": {
"description": "Secret Value.",
"type": "string",
"x-ms-mutability": [
"create",
"update"
],
"x-ms-secret": true
}
}
},
"ContainerAppSecret": {
"description": "Container App Secret.",
"type": "object",
"properties": {
"name": {
"description": "Secret Name.",
"type": "string",
"readOnly": true
},
"value": {
"description": "Secret Value.",
"type": "string",
"readOnly": true
}
}
},
"TrafficWeight": {
"description": "Traffic weight assigned to a revision",
"type": "object",
"properties": {
"revisionName": {
"description": "Name of a revision",
"type": "string"
},
"weight": {
"format": "int32",
"description": "Traffic weight assigned to a revision",
"type": "integer"
},
"latestRevision": {
"description": "Indicates that the traffic weight belongs to a latest stable revision",
"default": false,
"type": "boolean"
}
}
}
},
"parameters": {
"subscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"description": "Your Azure subscription ID. This is a GUID-formatted string (e.g. 00000000-0000-0000-0000-000000000000).",
"required": true,
"type": "string",
"x-ms-parameter-location": "client"
},
"resourceGroupNameParameter": {
"name": "resourceGroupName",
"in": "path",
"description": "Name of the resource group to which the resource belongs.",
"required": true,
"type": "string",
"maxLength": 90,
"minLength": 1,
"pattern": "^[-\\w\\._\\(\\)]+[^\\.]$",
"x-ms-parameter-location": "method"
},
"apiVersionParameter": {
"name": "api-version",
"in": "query",
"description": "API Version",
"required": true,
"type": "string",
"x-ms-parameter-location": "client"
}
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
]
}