@faable/deploy-sdk 2.7.0 → 2.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/FaableDeployApi.d.ts +16 -8
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/api/api-types.d.ts +12 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/generated-client.d.ts +28 -14
- package/dist/api/generated-client.d.ts.map +1 -1
- package/dist/api/types.d.ts +200 -11
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +900 -142
package/spec/openapi.json
CHANGED
|
@@ -433,6 +433,26 @@
|
|
|
433
433
|
"default": null,
|
|
434
434
|
"description": "Live versions of the app: the promoted one plus any draining (coexistence) versions"
|
|
435
435
|
},
|
|
436
|
+
"cold_state": {
|
|
437
|
+
"anyOf": [
|
|
438
|
+
{
|
|
439
|
+
"type": "string",
|
|
440
|
+
"enum": [
|
|
441
|
+
"asleep"
|
|
442
|
+
]
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"type": "string",
|
|
446
|
+
"enum": [
|
|
447
|
+
"waking"
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"type": "null"
|
|
452
|
+
}
|
|
453
|
+
],
|
|
454
|
+
"description": "Scale-to-zero sub-state of the promoted deployment (admin-only)"
|
|
455
|
+
},
|
|
436
456
|
"secrets_revision": {
|
|
437
457
|
"type": "string",
|
|
438
458
|
"description": "Opaque revision token; changes whenever the app secrets change",
|
|
@@ -826,7 +846,8 @@
|
|
|
826
846
|
"INITIALIZING",
|
|
827
847
|
"READY",
|
|
828
848
|
"CANCELED",
|
|
829
|
-
"TERMINATING"
|
|
849
|
+
"TERMINATING",
|
|
850
|
+
"SUPERSEDED"
|
|
830
851
|
],
|
|
831
852
|
"description": "High-level summary of where the Deployment is in its lifecycle",
|
|
832
853
|
"default": "QUEUED"
|
|
@@ -844,6 +865,26 @@
|
|
|
844
865
|
"type": "string",
|
|
845
866
|
"description": "Why the deployment failed (shown to the user on ERROR)"
|
|
846
867
|
},
|
|
868
|
+
"cold_state": {
|
|
869
|
+
"anyOf": [
|
|
870
|
+
{
|
|
871
|
+
"type": "string",
|
|
872
|
+
"enum": [
|
|
873
|
+
"asleep"
|
|
874
|
+
]
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
"type": "string",
|
|
878
|
+
"enum": [
|
|
879
|
+
"waking"
|
|
880
|
+
]
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"type": "null"
|
|
884
|
+
}
|
|
885
|
+
],
|
|
886
|
+
"description": "Scale-to-zero sub-state (admin-only): asleep, waking or null"
|
|
887
|
+
},
|
|
847
888
|
"runtime_image": {
|
|
848
889
|
"type": "string",
|
|
849
890
|
"description": "Digest-pinned runtime image stamped at first materialization (artifact deploys)"
|
|
@@ -943,7 +984,9 @@
|
|
|
943
984
|
"version": {
|
|
944
985
|
"anyOf": [
|
|
945
986
|
{
|
|
946
|
-
"type": "string"
|
|
987
|
+
"type": "string",
|
|
988
|
+
"pattern": "^[0-9]+(\\.[0-9]+){0,2}$",
|
|
989
|
+
"maxLength": 16
|
|
947
990
|
},
|
|
948
991
|
{
|
|
949
992
|
"type": "null"
|
|
@@ -1009,6 +1052,9 @@
|
|
|
1009
1052
|
"image": {
|
|
1010
1053
|
"type": "string"
|
|
1011
1054
|
},
|
|
1055
|
+
"release": {
|
|
1056
|
+
"type": "string"
|
|
1057
|
+
},
|
|
1012
1058
|
"github_commit": {
|
|
1013
1059
|
"type": "string"
|
|
1014
1060
|
},
|
|
@@ -1021,11 +1067,15 @@
|
|
|
1021
1067
|
"github_commit_message": {
|
|
1022
1068
|
"type": "string"
|
|
1023
1069
|
},
|
|
1024
|
-
"
|
|
1025
|
-
"
|
|
1070
|
+
"artifact_id": {
|
|
1071
|
+
"type": "string"
|
|
1026
1072
|
},
|
|
1027
|
-
"
|
|
1028
|
-
"
|
|
1073
|
+
"artifact_ready_at": {
|
|
1074
|
+
"type": "string",
|
|
1075
|
+
"format": "date-time"
|
|
1076
|
+
},
|
|
1077
|
+
"redeploy_of": {
|
|
1078
|
+
"type": "string"
|
|
1029
1079
|
},
|
|
1030
1080
|
"status": {
|
|
1031
1081
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
@@ -1135,141 +1185,782 @@
|
|
|
1135
1185
|
"image": {
|
|
1136
1186
|
"type": "string"
|
|
1137
1187
|
},
|
|
1138
|
-
"
|
|
1139
|
-
"type": "string"
|
|
1188
|
+
"release": {
|
|
1189
|
+
"type": "string",
|
|
1190
|
+
"maxLength": 128
|
|
1191
|
+
},
|
|
1192
|
+
"github_commit": {
|
|
1193
|
+
"type": "string"
|
|
1194
|
+
},
|
|
1195
|
+
"github_ref": {
|
|
1196
|
+
"type": "string"
|
|
1197
|
+
},
|
|
1198
|
+
"github_actor": {
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
},
|
|
1201
|
+
"github_commit_message": {
|
|
1202
|
+
"type": "string"
|
|
1203
|
+
},
|
|
1204
|
+
"type": {
|
|
1205
|
+
"type": "string"
|
|
1206
|
+
},
|
|
1207
|
+
"source": {
|
|
1208
|
+
"$ref": "#/components/schemas/DeploymentSource"
|
|
1209
|
+
}
|
|
1210
|
+
}
|
|
1211
|
+
},
|
|
1212
|
+
"DeploymentUpdate": {
|
|
1213
|
+
"type": "object",
|
|
1214
|
+
"properties": {
|
|
1215
|
+
"image": {
|
|
1216
|
+
"type": "string"
|
|
1217
|
+
},
|
|
1218
|
+
"artifact": {
|
|
1219
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
1220
|
+
},
|
|
1221
|
+
"type": {
|
|
1222
|
+
"type": "string"
|
|
1223
|
+
}
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
"DomainStatus": {
|
|
1227
|
+
"type": "object",
|
|
1228
|
+
"required": [
|
|
1229
|
+
"dns_state",
|
|
1230
|
+
"dns_checked_at",
|
|
1231
|
+
"dns_expected",
|
|
1232
|
+
"dns_observed",
|
|
1233
|
+
"dns_message"
|
|
1234
|
+
],
|
|
1235
|
+
"properties": {
|
|
1236
|
+
"dns_state": {
|
|
1237
|
+
"enum": [
|
|
1238
|
+
"pending",
|
|
1239
|
+
"ok",
|
|
1240
|
+
"misconfigured",
|
|
1241
|
+
"error"
|
|
1242
|
+
],
|
|
1243
|
+
"description": "Outcome of the latest DNS verification check",
|
|
1244
|
+
"default": "pending"
|
|
1245
|
+
},
|
|
1246
|
+
"dns_checked_at": {
|
|
1247
|
+
"type": "string",
|
|
1248
|
+
"description": "ISO timestamp of the last DNS check",
|
|
1249
|
+
"nullable": true,
|
|
1250
|
+
"default": null
|
|
1251
|
+
},
|
|
1252
|
+
"dns_expected": {
|
|
1253
|
+
"type": "array",
|
|
1254
|
+
"items": {
|
|
1255
|
+
"type": "string"
|
|
1256
|
+
},
|
|
1257
|
+
"description": "Expected CNAME target(s) the fqdn should point to",
|
|
1258
|
+
"default": []
|
|
1259
|
+
},
|
|
1260
|
+
"dns_observed": {
|
|
1261
|
+
"type": "array",
|
|
1262
|
+
"items": {
|
|
1263
|
+
"type": "string"
|
|
1264
|
+
},
|
|
1265
|
+
"description": "CNAME target(s) actually resolved for the fqdn",
|
|
1266
|
+
"default": []
|
|
1267
|
+
},
|
|
1268
|
+
"dns_message": {
|
|
1269
|
+
"type": "string",
|
|
1270
|
+
"description": "Human-readable diagnostic of the DNS check",
|
|
1271
|
+
"nullable": true,
|
|
1272
|
+
"default": null
|
|
1273
|
+
}
|
|
1274
|
+
},
|
|
1275
|
+
"additionalProperties": false
|
|
1276
|
+
},
|
|
1277
|
+
"Domain": {
|
|
1278
|
+
"type": "object",
|
|
1279
|
+
"required": [
|
|
1280
|
+
"id",
|
|
1281
|
+
"team",
|
|
1282
|
+
"fqdn",
|
|
1283
|
+
"tls",
|
|
1284
|
+
"verified",
|
|
1285
|
+
"active",
|
|
1286
|
+
"status",
|
|
1287
|
+
"metadata",
|
|
1288
|
+
"createdAt"
|
|
1289
|
+
],
|
|
1290
|
+
"properties": {
|
|
1291
|
+
"id": {
|
|
1292
|
+
"type": "string",
|
|
1293
|
+
"description": "Domain ID"
|
|
1294
|
+
},
|
|
1295
|
+
"team": {
|
|
1296
|
+
"type": "string"
|
|
1297
|
+
},
|
|
1298
|
+
"fqdn": {
|
|
1299
|
+
"type": "string",
|
|
1300
|
+
"description": "Unique identifier of the domain"
|
|
1301
|
+
},
|
|
1302
|
+
"tls": {
|
|
1303
|
+
"type": "boolean",
|
|
1304
|
+
"description": "TLS is enabled for this domain"
|
|
1305
|
+
},
|
|
1306
|
+
"app_id": {
|
|
1307
|
+
"type": "string",
|
|
1308
|
+
"description": "Linked App",
|
|
1309
|
+
"nullable": true,
|
|
1310
|
+
"default": null
|
|
1311
|
+
},
|
|
1312
|
+
"verified": {
|
|
1313
|
+
"type": "boolean",
|
|
1314
|
+
"description": "If the domain has the ownership verified"
|
|
1315
|
+
},
|
|
1316
|
+
"active": {
|
|
1317
|
+
"type": "boolean"
|
|
1318
|
+
},
|
|
1319
|
+
"dns_alias": {
|
|
1320
|
+
"type": "string",
|
|
1321
|
+
"description": "Internal DNS alias override host",
|
|
1322
|
+
"nullable": true,
|
|
1323
|
+
"default": null
|
|
1324
|
+
},
|
|
1325
|
+
"status": {
|
|
1326
|
+
"$ref": "#/components/schemas/DomainStatus"
|
|
1327
|
+
},
|
|
1328
|
+
"metadata": {
|
|
1329
|
+
"type": "object",
|
|
1330
|
+
"properties": {},
|
|
1331
|
+
"additionalProperties": true,
|
|
1332
|
+
"default": {}
|
|
1333
|
+
},
|
|
1334
|
+
"createdAt": {
|
|
1335
|
+
"type": "string",
|
|
1336
|
+
"description": "Domain creation date"
|
|
1337
|
+
},
|
|
1338
|
+
"updatedAt": {
|
|
1339
|
+
"type": "string",
|
|
1340
|
+
"description": "Domain updated date"
|
|
1341
|
+
}
|
|
1342
|
+
},
|
|
1343
|
+
"description": "Domain",
|
|
1344
|
+
"additionalProperties": false
|
|
1345
|
+
},
|
|
1346
|
+
"EventDomainCreate": {
|
|
1347
|
+
"type": "object",
|
|
1348
|
+
"required": [
|
|
1349
|
+
"type",
|
|
1350
|
+
"produced_at",
|
|
1351
|
+
"payload"
|
|
1352
|
+
],
|
|
1353
|
+
"properties": {
|
|
1354
|
+
"type": {
|
|
1355
|
+
"type": "string",
|
|
1356
|
+
"enum": [
|
|
1357
|
+
"domain.create"
|
|
1358
|
+
]
|
|
1359
|
+
},
|
|
1360
|
+
"produced_at": {
|
|
1361
|
+
"type": "number",
|
|
1362
|
+
"description": "Timestamp"
|
|
1363
|
+
},
|
|
1364
|
+
"payload": {
|
|
1365
|
+
"$ref": "#/components/schemas/Domain"
|
|
1366
|
+
}
|
|
1367
|
+
},
|
|
1368
|
+
"description": "Event Domain Create",
|
|
1369
|
+
"additionalProperties": false
|
|
1370
|
+
},
|
|
1371
|
+
"EventDomainUpdate": {
|
|
1372
|
+
"type": "object",
|
|
1373
|
+
"required": [
|
|
1374
|
+
"type",
|
|
1375
|
+
"produced_at",
|
|
1376
|
+
"payload"
|
|
1377
|
+
],
|
|
1378
|
+
"properties": {
|
|
1379
|
+
"type": {
|
|
1380
|
+
"type": "string",
|
|
1381
|
+
"enum": [
|
|
1382
|
+
"domain.update"
|
|
1383
|
+
]
|
|
1384
|
+
},
|
|
1385
|
+
"produced_at": {
|
|
1386
|
+
"type": "number",
|
|
1387
|
+
"description": "Timestamp"
|
|
1388
|
+
},
|
|
1389
|
+
"payload": {
|
|
1390
|
+
"$ref": "#/components/schemas/Domain"
|
|
1391
|
+
}
|
|
1392
|
+
},
|
|
1393
|
+
"description": "Event Domain Update",
|
|
1394
|
+
"additionalProperties": false
|
|
1395
|
+
},
|
|
1396
|
+
"EventDomainDelete": {
|
|
1397
|
+
"type": "object",
|
|
1398
|
+
"required": [
|
|
1399
|
+
"type",
|
|
1400
|
+
"produced_at",
|
|
1401
|
+
"payload"
|
|
1402
|
+
],
|
|
1403
|
+
"properties": {
|
|
1404
|
+
"type": {
|
|
1405
|
+
"type": "string",
|
|
1406
|
+
"enum": [
|
|
1407
|
+
"domain.delete"
|
|
1408
|
+
]
|
|
1409
|
+
},
|
|
1410
|
+
"produced_at": {
|
|
1411
|
+
"type": "number",
|
|
1412
|
+
"description": "Timestamp"
|
|
1413
|
+
},
|
|
1414
|
+
"payload": {
|
|
1415
|
+
"$ref": "#/components/schemas/Domain"
|
|
1416
|
+
}
|
|
1417
|
+
},
|
|
1418
|
+
"description": "Event Domain Delete",
|
|
1419
|
+
"additionalProperties": false
|
|
1420
|
+
},
|
|
1421
|
+
"DomainCreate": {
|
|
1422
|
+
"type": "object",
|
|
1423
|
+
"required": [
|
|
1424
|
+
"fqdn"
|
|
1425
|
+
],
|
|
1426
|
+
"properties": {
|
|
1427
|
+
"fqdn": {
|
|
1428
|
+
"type": "string"
|
|
1429
|
+
},
|
|
1430
|
+
"app_id": {
|
|
1431
|
+
"type": "string",
|
|
1432
|
+
"description": "Linked App"
|
|
1433
|
+
},
|
|
1434
|
+
"tls": {
|
|
1435
|
+
"type": "boolean",
|
|
1436
|
+
"default": true
|
|
1437
|
+
}
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"DomainUpdate": {
|
|
1441
|
+
"type": "object",
|
|
1442
|
+
"properties": {
|
|
1443
|
+
"app_id": {
|
|
1444
|
+
"type": "string",
|
|
1445
|
+
"description": "Link domain to this App",
|
|
1446
|
+
"nullable": true,
|
|
1447
|
+
"default": null
|
|
1448
|
+
},
|
|
1449
|
+
"active": {
|
|
1450
|
+
"type": "boolean"
|
|
1451
|
+
}
|
|
1452
|
+
}
|
|
1453
|
+
},
|
|
1454
|
+
"WafProfile": {
|
|
1455
|
+
"type": "object",
|
|
1456
|
+
"required": [
|
|
1457
|
+
"id",
|
|
1458
|
+
"team",
|
|
1459
|
+
"name",
|
|
1460
|
+
"scope",
|
|
1461
|
+
"source",
|
|
1462
|
+
"action",
|
|
1463
|
+
"apply",
|
|
1464
|
+
"rules",
|
|
1465
|
+
"enabled",
|
|
1466
|
+
"lock",
|
|
1467
|
+
"metadata",
|
|
1468
|
+
"createdAt"
|
|
1469
|
+
],
|
|
1470
|
+
"properties": {
|
|
1471
|
+
"id": {
|
|
1472
|
+
"type": "string",
|
|
1473
|
+
"description": "WafProfile ID"
|
|
1474
|
+
},
|
|
1475
|
+
"team": {
|
|
1476
|
+
"type": "string"
|
|
1477
|
+
},
|
|
1478
|
+
"name": {
|
|
1479
|
+
"type": "string",
|
|
1480
|
+
"description": "Lookup name, e.g. scanner-php"
|
|
1481
|
+
},
|
|
1482
|
+
"scope": {
|
|
1483
|
+
"anyOf": [
|
|
1484
|
+
{
|
|
1485
|
+
"type": "string",
|
|
1486
|
+
"enum": [
|
|
1487
|
+
"global"
|
|
1488
|
+
]
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"type": "string",
|
|
1492
|
+
"enum": [
|
|
1493
|
+
"app"
|
|
1494
|
+
]
|
|
1495
|
+
}
|
|
1496
|
+
]
|
|
1497
|
+
},
|
|
1498
|
+
"app_id": {
|
|
1499
|
+
"type": "string",
|
|
1500
|
+
"description": "Owning App (null for global)",
|
|
1501
|
+
"nullable": true,
|
|
1502
|
+
"default": null
|
|
1503
|
+
},
|
|
1504
|
+
"source": {
|
|
1505
|
+
"anyOf": [
|
|
1506
|
+
{
|
|
1507
|
+
"type": "string",
|
|
1508
|
+
"enum": [
|
|
1509
|
+
"builtin"
|
|
1510
|
+
]
|
|
1511
|
+
},
|
|
1512
|
+
{
|
|
1513
|
+
"type": "string",
|
|
1514
|
+
"enum": [
|
|
1515
|
+
"manual"
|
|
1516
|
+
]
|
|
1517
|
+
},
|
|
1518
|
+
{
|
|
1519
|
+
"type": "string",
|
|
1520
|
+
"enum": [
|
|
1521
|
+
"auto"
|
|
1522
|
+
]
|
|
1523
|
+
}
|
|
1524
|
+
]
|
|
1525
|
+
},
|
|
1526
|
+
"action": {
|
|
1527
|
+
"anyOf": [
|
|
1528
|
+
{
|
|
1529
|
+
"type": "string",
|
|
1530
|
+
"enum": [
|
|
1531
|
+
"deny"
|
|
1532
|
+
]
|
|
1533
|
+
},
|
|
1534
|
+
{
|
|
1535
|
+
"type": "string",
|
|
1536
|
+
"enum": [
|
|
1537
|
+
"ratelimit"
|
|
1538
|
+
]
|
|
1539
|
+
}
|
|
1540
|
+
]
|
|
1541
|
+
},
|
|
1542
|
+
"apply": {
|
|
1543
|
+
"anyOf": [
|
|
1544
|
+
{
|
|
1545
|
+
"type": "string",
|
|
1546
|
+
"enum": [
|
|
1547
|
+
"all"
|
|
1548
|
+
]
|
|
1549
|
+
},
|
|
1550
|
+
{
|
|
1551
|
+
"type": "string",
|
|
1552
|
+
"enum": [
|
|
1553
|
+
"node"
|
|
1554
|
+
]
|
|
1555
|
+
},
|
|
1556
|
+
{
|
|
1557
|
+
"type": "string",
|
|
1558
|
+
"enum": [
|
|
1559
|
+
"php"
|
|
1560
|
+
]
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"type": "string",
|
|
1564
|
+
"enum": [
|
|
1565
|
+
"manual"
|
|
1566
|
+
]
|
|
1567
|
+
}
|
|
1568
|
+
]
|
|
1569
|
+
},
|
|
1570
|
+
"rules": {
|
|
1571
|
+
"type": "array",
|
|
1572
|
+
"items": {
|
|
1573
|
+
"type": "object",
|
|
1574
|
+
"required": [
|
|
1575
|
+
"pattern"
|
|
1576
|
+
],
|
|
1577
|
+
"properties": {
|
|
1578
|
+
"pattern": {
|
|
1579
|
+
"type": "string",
|
|
1580
|
+
"description": "RE2 path-regex fragment"
|
|
1581
|
+
},
|
|
1582
|
+
"description": {
|
|
1583
|
+
"type": "string",
|
|
1584
|
+
"description": "What this rule blocks (human annotation)"
|
|
1585
|
+
}
|
|
1586
|
+
}
|
|
1587
|
+
}
|
|
1588
|
+
},
|
|
1589
|
+
"enabled": {
|
|
1590
|
+
"type": "boolean"
|
|
1591
|
+
},
|
|
1592
|
+
"lock": {
|
|
1593
|
+
"type": "boolean",
|
|
1594
|
+
"description": "Profiler must not overwrite rules"
|
|
1595
|
+
},
|
|
1596
|
+
"sample_count": {
|
|
1597
|
+
"type": "number",
|
|
1598
|
+
"nullable": true,
|
|
1599
|
+
"default": null
|
|
1600
|
+
},
|
|
1601
|
+
"updated_at": {
|
|
1602
|
+
"type": "string",
|
|
1603
|
+
"nullable": true,
|
|
1604
|
+
"default": null
|
|
1605
|
+
},
|
|
1606
|
+
"metadata": {
|
|
1607
|
+
"type": "object",
|
|
1608
|
+
"properties": {},
|
|
1609
|
+
"additionalProperties": true,
|
|
1610
|
+
"default": {}
|
|
1611
|
+
},
|
|
1612
|
+
"createdAt": {
|
|
1613
|
+
"type": "string",
|
|
1614
|
+
"description": "WafProfile creation date"
|
|
1615
|
+
},
|
|
1616
|
+
"updatedAt": {
|
|
1617
|
+
"type": "string",
|
|
1618
|
+
"description": "WafProfile updated date"
|
|
1619
|
+
}
|
|
1620
|
+
},
|
|
1621
|
+
"description": "WafProfile",
|
|
1622
|
+
"additionalProperties": false
|
|
1623
|
+
},
|
|
1624
|
+
"EventWafprofileCreate": {
|
|
1625
|
+
"type": "object",
|
|
1626
|
+
"required": [
|
|
1627
|
+
"type",
|
|
1628
|
+
"produced_at",
|
|
1629
|
+
"payload"
|
|
1630
|
+
],
|
|
1631
|
+
"properties": {
|
|
1632
|
+
"type": {
|
|
1633
|
+
"type": "string",
|
|
1634
|
+
"enum": [
|
|
1635
|
+
"wafprofile.create"
|
|
1636
|
+
]
|
|
1637
|
+
},
|
|
1638
|
+
"produced_at": {
|
|
1639
|
+
"type": "number",
|
|
1640
|
+
"description": "Timestamp"
|
|
1641
|
+
},
|
|
1642
|
+
"payload": {
|
|
1643
|
+
"$ref": "#/components/schemas/WafProfile"
|
|
1644
|
+
}
|
|
1645
|
+
},
|
|
1646
|
+
"description": "Event Wafprofile Create",
|
|
1647
|
+
"additionalProperties": false
|
|
1648
|
+
},
|
|
1649
|
+
"EventWafprofileUpdate": {
|
|
1650
|
+
"type": "object",
|
|
1651
|
+
"required": [
|
|
1652
|
+
"type",
|
|
1653
|
+
"produced_at",
|
|
1654
|
+
"payload"
|
|
1655
|
+
],
|
|
1656
|
+
"properties": {
|
|
1657
|
+
"type": {
|
|
1658
|
+
"type": "string",
|
|
1659
|
+
"enum": [
|
|
1660
|
+
"wafprofile.update"
|
|
1661
|
+
]
|
|
1662
|
+
},
|
|
1663
|
+
"produced_at": {
|
|
1664
|
+
"type": "number",
|
|
1665
|
+
"description": "Timestamp"
|
|
1666
|
+
},
|
|
1667
|
+
"payload": {
|
|
1668
|
+
"$ref": "#/components/schemas/WafProfile"
|
|
1669
|
+
}
|
|
1670
|
+
},
|
|
1671
|
+
"description": "Event Wafprofile Update",
|
|
1672
|
+
"additionalProperties": false
|
|
1673
|
+
},
|
|
1674
|
+
"EventWafprofileDelete": {
|
|
1675
|
+
"type": "object",
|
|
1676
|
+
"required": [
|
|
1677
|
+
"type",
|
|
1678
|
+
"produced_at",
|
|
1679
|
+
"payload"
|
|
1680
|
+
],
|
|
1681
|
+
"properties": {
|
|
1682
|
+
"type": {
|
|
1683
|
+
"type": "string",
|
|
1684
|
+
"enum": [
|
|
1685
|
+
"wafprofile.delete"
|
|
1686
|
+
]
|
|
1687
|
+
},
|
|
1688
|
+
"produced_at": {
|
|
1689
|
+
"type": "number",
|
|
1690
|
+
"description": "Timestamp"
|
|
1691
|
+
},
|
|
1692
|
+
"payload": {
|
|
1693
|
+
"$ref": "#/components/schemas/WafProfile"
|
|
1694
|
+
}
|
|
1695
|
+
},
|
|
1696
|
+
"description": "Event Wafprofile Delete",
|
|
1697
|
+
"additionalProperties": false
|
|
1698
|
+
},
|
|
1699
|
+
"WafProfileCreate": {
|
|
1700
|
+
"type": "object",
|
|
1701
|
+
"required": [
|
|
1702
|
+
"name"
|
|
1703
|
+
],
|
|
1704
|
+
"properties": {
|
|
1705
|
+
"name": {
|
|
1706
|
+
"type": "string"
|
|
1707
|
+
},
|
|
1708
|
+
"scope": {
|
|
1709
|
+
"anyOf": [
|
|
1710
|
+
{
|
|
1711
|
+
"type": "string",
|
|
1712
|
+
"enum": [
|
|
1713
|
+
"global"
|
|
1714
|
+
]
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"type": "string",
|
|
1718
|
+
"enum": [
|
|
1719
|
+
"app"
|
|
1720
|
+
]
|
|
1721
|
+
}
|
|
1722
|
+
]
|
|
1723
|
+
},
|
|
1724
|
+
"app_id": {
|
|
1725
|
+
"type": "string",
|
|
1726
|
+
"description": "Owning App"
|
|
1727
|
+
},
|
|
1728
|
+
"source": {
|
|
1729
|
+
"anyOf": [
|
|
1730
|
+
{
|
|
1731
|
+
"type": "string",
|
|
1732
|
+
"enum": [
|
|
1733
|
+
"builtin"
|
|
1734
|
+
]
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"type": "string",
|
|
1738
|
+
"enum": [
|
|
1739
|
+
"manual"
|
|
1740
|
+
]
|
|
1741
|
+
},
|
|
1742
|
+
{
|
|
1743
|
+
"type": "string",
|
|
1744
|
+
"enum": [
|
|
1745
|
+
"auto"
|
|
1746
|
+
]
|
|
1747
|
+
}
|
|
1748
|
+
]
|
|
1749
|
+
},
|
|
1750
|
+
"action": {
|
|
1751
|
+
"anyOf": [
|
|
1752
|
+
{
|
|
1753
|
+
"type": "string",
|
|
1754
|
+
"enum": [
|
|
1755
|
+
"deny"
|
|
1756
|
+
]
|
|
1757
|
+
},
|
|
1758
|
+
{
|
|
1759
|
+
"type": "string",
|
|
1760
|
+
"enum": [
|
|
1761
|
+
"ratelimit"
|
|
1762
|
+
]
|
|
1763
|
+
}
|
|
1764
|
+
]
|
|
1765
|
+
},
|
|
1766
|
+
"apply": {
|
|
1767
|
+
"anyOf": [
|
|
1768
|
+
{
|
|
1769
|
+
"type": "string",
|
|
1770
|
+
"enum": [
|
|
1771
|
+
"all"
|
|
1772
|
+
]
|
|
1773
|
+
},
|
|
1774
|
+
{
|
|
1775
|
+
"type": "string",
|
|
1776
|
+
"enum": [
|
|
1777
|
+
"node"
|
|
1778
|
+
]
|
|
1779
|
+
},
|
|
1780
|
+
{
|
|
1781
|
+
"type": "string",
|
|
1782
|
+
"enum": [
|
|
1783
|
+
"php"
|
|
1784
|
+
]
|
|
1785
|
+
},
|
|
1786
|
+
{
|
|
1787
|
+
"type": "string",
|
|
1788
|
+
"enum": [
|
|
1789
|
+
"manual"
|
|
1790
|
+
]
|
|
1791
|
+
}
|
|
1792
|
+
]
|
|
1793
|
+
},
|
|
1794
|
+
"rules": {
|
|
1795
|
+
"type": "array",
|
|
1796
|
+
"items": {
|
|
1797
|
+
"type": "object",
|
|
1798
|
+
"required": [
|
|
1799
|
+
"pattern"
|
|
1800
|
+
],
|
|
1801
|
+
"properties": {
|
|
1802
|
+
"pattern": {
|
|
1803
|
+
"type": "string",
|
|
1804
|
+
"description": "RE2 path-regex fragment"
|
|
1805
|
+
},
|
|
1806
|
+
"description": {
|
|
1807
|
+
"type": "string",
|
|
1808
|
+
"description": "What this rule blocks (human annotation)"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
}
|
|
1140
1812
|
},
|
|
1141
|
-
"
|
|
1142
|
-
"type": "
|
|
1813
|
+
"enabled": {
|
|
1814
|
+
"type": "boolean"
|
|
1143
1815
|
},
|
|
1144
|
-
"
|
|
1145
|
-
"type": "
|
|
1816
|
+
"lock": {
|
|
1817
|
+
"type": "boolean"
|
|
1146
1818
|
},
|
|
1147
|
-
"
|
|
1148
|
-
"type": "
|
|
1819
|
+
"sample_count": {
|
|
1820
|
+
"type": "number"
|
|
1149
1821
|
},
|
|
1150
|
-
"
|
|
1822
|
+
"updated_at": {
|
|
1151
1823
|
"type": "string"
|
|
1152
|
-
},
|
|
1153
|
-
"source": {
|
|
1154
|
-
"$ref": "#/components/schemas/DeploymentSource"
|
|
1155
1824
|
}
|
|
1156
1825
|
}
|
|
1157
1826
|
},
|
|
1158
|
-
"
|
|
1827
|
+
"WafProfileUpdate": {
|
|
1159
1828
|
"type": "object",
|
|
1160
1829
|
"properties": {
|
|
1161
|
-
"
|
|
1830
|
+
"name": {
|
|
1162
1831
|
"type": "string"
|
|
1163
1832
|
},
|
|
1164
|
-
"
|
|
1165
|
-
"
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
"dns_message"
|
|
1180
|
-
],
|
|
1181
|
-
"properties": {
|
|
1182
|
-
"dns_state": {
|
|
1183
|
-
"enum": [
|
|
1184
|
-
"pending",
|
|
1185
|
-
"ok",
|
|
1186
|
-
"misconfigured",
|
|
1187
|
-
"error"
|
|
1188
|
-
],
|
|
1189
|
-
"description": "Outcome of the latest DNS verification check",
|
|
1190
|
-
"default": "pending"
|
|
1833
|
+
"action": {
|
|
1834
|
+
"anyOf": [
|
|
1835
|
+
{
|
|
1836
|
+
"type": "string",
|
|
1837
|
+
"enum": [
|
|
1838
|
+
"deny"
|
|
1839
|
+
]
|
|
1840
|
+
},
|
|
1841
|
+
{
|
|
1842
|
+
"type": "string",
|
|
1843
|
+
"enum": [
|
|
1844
|
+
"ratelimit"
|
|
1845
|
+
]
|
|
1846
|
+
}
|
|
1847
|
+
]
|
|
1191
1848
|
},
|
|
1192
|
-
"
|
|
1193
|
-
"
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1849
|
+
"apply": {
|
|
1850
|
+
"anyOf": [
|
|
1851
|
+
{
|
|
1852
|
+
"type": "string",
|
|
1853
|
+
"enum": [
|
|
1854
|
+
"all"
|
|
1855
|
+
]
|
|
1856
|
+
},
|
|
1857
|
+
{
|
|
1858
|
+
"type": "string",
|
|
1859
|
+
"enum": [
|
|
1860
|
+
"node"
|
|
1861
|
+
]
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"type": "string",
|
|
1865
|
+
"enum": [
|
|
1866
|
+
"php"
|
|
1867
|
+
]
|
|
1868
|
+
},
|
|
1869
|
+
{
|
|
1870
|
+
"type": "string",
|
|
1871
|
+
"enum": [
|
|
1872
|
+
"manual"
|
|
1873
|
+
]
|
|
1874
|
+
}
|
|
1875
|
+
]
|
|
1197
1876
|
},
|
|
1198
|
-
"
|
|
1877
|
+
"rules": {
|
|
1199
1878
|
"type": "array",
|
|
1200
1879
|
"items": {
|
|
1201
|
-
"type": "
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1880
|
+
"type": "object",
|
|
1881
|
+
"required": [
|
|
1882
|
+
"pattern"
|
|
1883
|
+
],
|
|
1884
|
+
"properties": {
|
|
1885
|
+
"pattern": {
|
|
1886
|
+
"type": "string",
|
|
1887
|
+
"description": "RE2 path-regex fragment"
|
|
1888
|
+
},
|
|
1889
|
+
"description": {
|
|
1890
|
+
"type": "string",
|
|
1891
|
+
"description": "What this rule blocks (human annotation)"
|
|
1892
|
+
}
|
|
1893
|
+
}
|
|
1894
|
+
}
|
|
1205
1895
|
},
|
|
1206
|
-
"
|
|
1207
|
-
"type": "
|
|
1208
|
-
"items": {
|
|
1209
|
-
"type": "string"
|
|
1210
|
-
},
|
|
1211
|
-
"description": "CNAME target(s) actually resolved for the fqdn",
|
|
1212
|
-
"default": []
|
|
1896
|
+
"enabled": {
|
|
1897
|
+
"type": "boolean"
|
|
1213
1898
|
},
|
|
1214
|
-
"
|
|
1899
|
+
"lock": {
|
|
1900
|
+
"type": "boolean"
|
|
1901
|
+
},
|
|
1902
|
+
"sample_count": {
|
|
1903
|
+
"type": "number",
|
|
1904
|
+
"nullable": true,
|
|
1905
|
+
"default": null
|
|
1906
|
+
},
|
|
1907
|
+
"updated_at": {
|
|
1215
1908
|
"type": "string",
|
|
1216
|
-
"description": "Human-readable diagnostic of the DNS check",
|
|
1217
1909
|
"nullable": true,
|
|
1218
1910
|
"default": null
|
|
1219
1911
|
}
|
|
1220
|
-
}
|
|
1221
|
-
"additionalProperties": false
|
|
1912
|
+
}
|
|
1222
1913
|
},
|
|
1223
|
-
"
|
|
1914
|
+
"AppWaf": {
|
|
1224
1915
|
"type": "object",
|
|
1225
1916
|
"required": [
|
|
1226
1917
|
"id",
|
|
1227
1918
|
"team",
|
|
1228
|
-
"
|
|
1229
|
-
"
|
|
1230
|
-
"
|
|
1231
|
-
"
|
|
1232
|
-
"status",
|
|
1919
|
+
"app_id",
|
|
1920
|
+
"enabled",
|
|
1921
|
+
"profiles",
|
|
1922
|
+
"lock",
|
|
1233
1923
|
"metadata",
|
|
1234
1924
|
"createdAt"
|
|
1235
1925
|
],
|
|
1236
1926
|
"properties": {
|
|
1237
1927
|
"id": {
|
|
1238
1928
|
"type": "string",
|
|
1239
|
-
"description": "
|
|
1929
|
+
"description": "AppWaf ID"
|
|
1240
1930
|
},
|
|
1241
1931
|
"team": {
|
|
1242
1932
|
"type": "string"
|
|
1243
1933
|
},
|
|
1244
|
-
"fqdn": {
|
|
1245
|
-
"type": "string",
|
|
1246
|
-
"description": "Unique identifier of the domain"
|
|
1247
|
-
},
|
|
1248
|
-
"tls": {
|
|
1249
|
-
"type": "boolean",
|
|
1250
|
-
"description": "TLS is enabled for this domain"
|
|
1251
|
-
},
|
|
1252
1934
|
"app_id": {
|
|
1253
1935
|
"type": "string",
|
|
1254
|
-
"description": "Linked App"
|
|
1255
|
-
"nullable": true,
|
|
1256
|
-
"default": null
|
|
1936
|
+
"description": "Linked App"
|
|
1257
1937
|
},
|
|
1258
|
-
"
|
|
1938
|
+
"enabled": {
|
|
1259
1939
|
"type": "boolean",
|
|
1260
|
-
"description": "
|
|
1940
|
+
"description": "Master toggle for the app WAF"
|
|
1261
1941
|
},
|
|
1262
|
-
"
|
|
1263
|
-
"type": "
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1942
|
+
"profiles": {
|
|
1943
|
+
"type": "array",
|
|
1944
|
+
"items": {
|
|
1945
|
+
"type": "object",
|
|
1946
|
+
"required": [
|
|
1947
|
+
"profile",
|
|
1948
|
+
"enabled"
|
|
1949
|
+
],
|
|
1950
|
+
"properties": {
|
|
1951
|
+
"profile": {
|
|
1952
|
+
"type": "string",
|
|
1953
|
+
"description": "WafProfile id"
|
|
1954
|
+
},
|
|
1955
|
+
"enabled": {
|
|
1956
|
+
"type": "boolean"
|
|
1957
|
+
}
|
|
1958
|
+
}
|
|
1959
|
+
}
|
|
1270
1960
|
},
|
|
1271
|
-
"
|
|
1272
|
-
"
|
|
1961
|
+
"lock": {
|
|
1962
|
+
"type": "boolean",
|
|
1963
|
+
"description": "Profiler must not touch the list"
|
|
1273
1964
|
},
|
|
1274
1965
|
"metadata": {
|
|
1275
1966
|
"type": "object",
|
|
@@ -1279,17 +1970,17 @@
|
|
|
1279
1970
|
},
|
|
1280
1971
|
"createdAt": {
|
|
1281
1972
|
"type": "string",
|
|
1282
|
-
"description": "
|
|
1973
|
+
"description": "AppWaf creation date"
|
|
1283
1974
|
},
|
|
1284
1975
|
"updatedAt": {
|
|
1285
1976
|
"type": "string",
|
|
1286
|
-
"description": "
|
|
1977
|
+
"description": "AppWaf updated date"
|
|
1287
1978
|
}
|
|
1288
1979
|
},
|
|
1289
|
-
"description": "
|
|
1980
|
+
"description": "AppWaf",
|
|
1290
1981
|
"additionalProperties": false
|
|
1291
1982
|
},
|
|
1292
|
-
"
|
|
1983
|
+
"EventAppwafCreate": {
|
|
1293
1984
|
"type": "object",
|
|
1294
1985
|
"required": [
|
|
1295
1986
|
"type",
|
|
@@ -1300,7 +1991,7 @@
|
|
|
1300
1991
|
"type": {
|
|
1301
1992
|
"type": "string",
|
|
1302
1993
|
"enum": [
|
|
1303
|
-
"
|
|
1994
|
+
"appwaf.create"
|
|
1304
1995
|
]
|
|
1305
1996
|
},
|
|
1306
1997
|
"produced_at": {
|
|
@@ -1308,13 +1999,13 @@
|
|
|
1308
1999
|
"description": "Timestamp"
|
|
1309
2000
|
},
|
|
1310
2001
|
"payload": {
|
|
1311
|
-
"$ref": "#/components/schemas/
|
|
2002
|
+
"$ref": "#/components/schemas/AppWaf"
|
|
1312
2003
|
}
|
|
1313
2004
|
},
|
|
1314
|
-
"description": "Event
|
|
2005
|
+
"description": "Event Appwaf Create",
|
|
1315
2006
|
"additionalProperties": false
|
|
1316
2007
|
},
|
|
1317
|
-
"
|
|
2008
|
+
"EventAppwafUpdate": {
|
|
1318
2009
|
"type": "object",
|
|
1319
2010
|
"required": [
|
|
1320
2011
|
"type",
|
|
@@ -1325,7 +2016,7 @@
|
|
|
1325
2016
|
"type": {
|
|
1326
2017
|
"type": "string",
|
|
1327
2018
|
"enum": [
|
|
1328
|
-
"
|
|
2019
|
+
"appwaf.update"
|
|
1329
2020
|
]
|
|
1330
2021
|
},
|
|
1331
2022
|
"produced_at": {
|
|
@@ -1333,13 +2024,13 @@
|
|
|
1333
2024
|
"description": "Timestamp"
|
|
1334
2025
|
},
|
|
1335
2026
|
"payload": {
|
|
1336
|
-
"$ref": "#/components/schemas/
|
|
2027
|
+
"$ref": "#/components/schemas/AppWaf"
|
|
1337
2028
|
}
|
|
1338
2029
|
},
|
|
1339
|
-
"description": "Event
|
|
2030
|
+
"description": "Event Appwaf Update",
|
|
1340
2031
|
"additionalProperties": false
|
|
1341
2032
|
},
|
|
1342
|
-
"
|
|
2033
|
+
"EventAppwafDelete": {
|
|
1343
2034
|
"type": "object",
|
|
1344
2035
|
"required": [
|
|
1345
2036
|
"type",
|
|
@@ -1350,7 +2041,7 @@
|
|
|
1350
2041
|
"type": {
|
|
1351
2042
|
"type": "string",
|
|
1352
2043
|
"enum": [
|
|
1353
|
-
"
|
|
2044
|
+
"appwaf.delete"
|
|
1354
2045
|
]
|
|
1355
2046
|
},
|
|
1356
2047
|
"produced_at": {
|
|
@@ -1358,41 +2049,76 @@
|
|
|
1358
2049
|
"description": "Timestamp"
|
|
1359
2050
|
},
|
|
1360
2051
|
"payload": {
|
|
1361
|
-
"$ref": "#/components/schemas/
|
|
2052
|
+
"$ref": "#/components/schemas/AppWaf"
|
|
1362
2053
|
}
|
|
1363
2054
|
},
|
|
1364
|
-
"description": "Event
|
|
2055
|
+
"description": "Event Appwaf Delete",
|
|
1365
2056
|
"additionalProperties": false
|
|
1366
2057
|
},
|
|
1367
|
-
"
|
|
2058
|
+
"AppWafCreate": {
|
|
1368
2059
|
"type": "object",
|
|
1369
2060
|
"required": [
|
|
1370
|
-
"
|
|
2061
|
+
"app_id"
|
|
1371
2062
|
],
|
|
1372
2063
|
"properties": {
|
|
1373
|
-
"fqdn": {
|
|
1374
|
-
"type": "string"
|
|
1375
|
-
},
|
|
1376
2064
|
"app_id": {
|
|
1377
2065
|
"type": "string",
|
|
1378
2066
|
"description": "Linked App"
|
|
1379
2067
|
},
|
|
1380
|
-
"
|
|
2068
|
+
"enabled": {
|
|
1381
2069
|
"type": "boolean",
|
|
1382
2070
|
"default": true
|
|
2071
|
+
},
|
|
2072
|
+
"profiles": {
|
|
2073
|
+
"type": "array",
|
|
2074
|
+
"items": {
|
|
2075
|
+
"type": "object",
|
|
2076
|
+
"required": [
|
|
2077
|
+
"profile",
|
|
2078
|
+
"enabled"
|
|
2079
|
+
],
|
|
2080
|
+
"properties": {
|
|
2081
|
+
"profile": {
|
|
2082
|
+
"type": "string",
|
|
2083
|
+
"description": "WafProfile id"
|
|
2084
|
+
},
|
|
2085
|
+
"enabled": {
|
|
2086
|
+
"type": "boolean"
|
|
2087
|
+
}
|
|
2088
|
+
}
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2091
|
+
"lock": {
|
|
2092
|
+
"type": "boolean"
|
|
1383
2093
|
}
|
|
1384
2094
|
}
|
|
1385
2095
|
},
|
|
1386
|
-
"
|
|
2096
|
+
"AppWafUpdate": {
|
|
1387
2097
|
"type": "object",
|
|
1388
2098
|
"properties": {
|
|
1389
|
-
"
|
|
1390
|
-
"type": "
|
|
1391
|
-
"description": "Link domain to this App",
|
|
1392
|
-
"nullable": true,
|
|
1393
|
-
"default": null
|
|
2099
|
+
"enabled": {
|
|
2100
|
+
"type": "boolean"
|
|
1394
2101
|
},
|
|
1395
|
-
"
|
|
2102
|
+
"profiles": {
|
|
2103
|
+
"type": "array",
|
|
2104
|
+
"items": {
|
|
2105
|
+
"type": "object",
|
|
2106
|
+
"required": [
|
|
2107
|
+
"profile",
|
|
2108
|
+
"enabled"
|
|
2109
|
+
],
|
|
2110
|
+
"properties": {
|
|
2111
|
+
"profile": {
|
|
2112
|
+
"type": "string",
|
|
2113
|
+
"description": "WafProfile id"
|
|
2114
|
+
},
|
|
2115
|
+
"enabled": {
|
|
2116
|
+
"type": "boolean"
|
|
2117
|
+
}
|
|
2118
|
+
}
|
|
2119
|
+
}
|
|
2120
|
+
},
|
|
2121
|
+
"lock": {
|
|
1396
2122
|
"type": "boolean"
|
|
1397
2123
|
}
|
|
1398
2124
|
}
|
|
@@ -4602,6 +5328,10 @@
|
|
|
4602
5328
|
"image": {
|
|
4603
5329
|
"type": "string"
|
|
4604
5330
|
},
|
|
5331
|
+
"release": {
|
|
5332
|
+
"type": "string",
|
|
5333
|
+
"maxLength": 128
|
|
5334
|
+
},
|
|
4605
5335
|
"github_commit": {
|
|
4606
5336
|
"type": "string"
|
|
4607
5337
|
},
|
|
@@ -4662,6 +5392,9 @@
|
|
|
4662
5392
|
"image": {
|
|
4663
5393
|
"type": "string"
|
|
4664
5394
|
},
|
|
5395
|
+
"release": {
|
|
5396
|
+
"type": "string"
|
|
5397
|
+
},
|
|
4665
5398
|
"github_commit": {
|
|
4666
5399
|
"type": "string"
|
|
4667
5400
|
},
|
|
@@ -4674,11 +5407,15 @@
|
|
|
4674
5407
|
"github_commit_message": {
|
|
4675
5408
|
"type": "string"
|
|
4676
5409
|
},
|
|
4677
|
-
"
|
|
4678
|
-
"
|
|
5410
|
+
"artifact_id": {
|
|
5411
|
+
"type": "string"
|
|
5412
|
+
},
|
|
5413
|
+
"artifact_ready_at": {
|
|
5414
|
+
"type": "string",
|
|
5415
|
+
"format": "date-time"
|
|
4679
5416
|
},
|
|
4680
|
-
"
|
|
4681
|
-
"
|
|
5417
|
+
"redeploy_of": {
|
|
5418
|
+
"type": "string"
|
|
4682
5419
|
},
|
|
4683
5420
|
"status": {
|
|
4684
5421
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
@@ -4762,6 +5499,9 @@
|
|
|
4762
5499
|
"image": {
|
|
4763
5500
|
"type": "string"
|
|
4764
5501
|
},
|
|
5502
|
+
"release": {
|
|
5503
|
+
"type": "string"
|
|
5504
|
+
},
|
|
4765
5505
|
"github_commit": {
|
|
4766
5506
|
"type": "string"
|
|
4767
5507
|
},
|
|
@@ -4774,11 +5514,15 @@
|
|
|
4774
5514
|
"github_commit_message": {
|
|
4775
5515
|
"type": "string"
|
|
4776
5516
|
},
|
|
4777
|
-
"
|
|
4778
|
-
"
|
|
5517
|
+
"artifact_id": {
|
|
5518
|
+
"type": "string"
|
|
5519
|
+
},
|
|
5520
|
+
"artifact_ready_at": {
|
|
5521
|
+
"type": "string",
|
|
5522
|
+
"format": "date-time"
|
|
4779
5523
|
},
|
|
4780
|
-
"
|
|
4781
|
-
"
|
|
5524
|
+
"redeploy_of": {
|
|
5525
|
+
"type": "string"
|
|
4782
5526
|
},
|
|
4783
5527
|
"status": {
|
|
4784
5528
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
@@ -4881,6 +5625,9 @@
|
|
|
4881
5625
|
"image": {
|
|
4882
5626
|
"type": "string"
|
|
4883
5627
|
},
|
|
5628
|
+
"release": {
|
|
5629
|
+
"type": "string"
|
|
5630
|
+
},
|
|
4884
5631
|
"github_commit": {
|
|
4885
5632
|
"type": "string"
|
|
4886
5633
|
},
|
|
@@ -4893,11 +5640,15 @@
|
|
|
4893
5640
|
"github_commit_message": {
|
|
4894
5641
|
"type": "string"
|
|
4895
5642
|
},
|
|
4896
|
-
"
|
|
4897
|
-
"
|
|
5643
|
+
"artifact_id": {
|
|
5644
|
+
"type": "string"
|
|
5645
|
+
},
|
|
5646
|
+
"artifact_ready_at": {
|
|
5647
|
+
"type": "string",
|
|
5648
|
+
"format": "date-time"
|
|
4898
5649
|
},
|
|
4899
|
-
"
|
|
4900
|
-
"
|
|
5650
|
+
"redeploy_of": {
|
|
5651
|
+
"type": "string"
|
|
4901
5652
|
},
|
|
4902
5653
|
"status": {
|
|
4903
5654
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
@@ -4979,6 +5730,9 @@
|
|
|
4979
5730
|
"image": {
|
|
4980
5731
|
"type": "string"
|
|
4981
5732
|
},
|
|
5733
|
+
"release": {
|
|
5734
|
+
"type": "string"
|
|
5735
|
+
},
|
|
4982
5736
|
"github_commit": {
|
|
4983
5737
|
"type": "string"
|
|
4984
5738
|
},
|
|
@@ -4991,11 +5745,15 @@
|
|
|
4991
5745
|
"github_commit_message": {
|
|
4992
5746
|
"type": "string"
|
|
4993
5747
|
},
|
|
4994
|
-
"
|
|
4995
|
-
"
|
|
5748
|
+
"artifact_id": {
|
|
5749
|
+
"type": "string"
|
|
5750
|
+
},
|
|
5751
|
+
"artifact_ready_at": {
|
|
5752
|
+
"type": "string",
|
|
5753
|
+
"format": "date-time"
|
|
4996
5754
|
},
|
|
4997
|
-
"
|
|
4998
|
-
"
|
|
5755
|
+
"redeploy_of": {
|
|
5756
|
+
"type": "string"
|
|
4999
5757
|
},
|
|
5000
5758
|
"status": {
|
|
5001
5759
|
"$ref": "#/components/schemas/DeploymentStatus"
|