File tree Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Expand file tree Collapse file tree 1 file changed +43
-0
lines changed Original file line number Diff line number Diff line change @@ -1403,6 +1403,42 @@ components:
1403
1403
type : " array"
1404
1404
items :
1405
1405
$ref : ' #/components/schemas/ErrorObject'
1406
+ StrategyEnum :
1407
+ type : " string"
1408
+ enum :
1409
+ - ttl
1410
+ x-beta : true
1411
+ x-annotation-enumDescriptions :
1412
+ ttl : " Time to live"
1413
+ RetentionPolicy :
1414
+ type : " object"
1415
+ discriminator :
1416
+ propertyName : strategy
1417
+ mapping :
1418
+ ttl : ' #/components/schemas/TimeToLiveRetentionPolicy'
1419
+ required :
1420
+ - strategy
1421
+ properties :
1422
+ strategy :
1423
+ $ref : ' #/components/schemas/StrategyEnum'
1424
+ TimeToLiveConfig :
1425
+ type : " object"
1426
+ required :
1427
+ - timeToLive
1428
+ properties :
1429
+ timeToLive :
1430
+ type : " string"
1431
+ TimeToLiveRetentionPolicy :
1432
+ allOf :
1433
+ - $ref : ' #/components/schemas/RetentionPolicy'
1434
+ - type : " object"
1435
+ required :
1436
+ - config
1437
+ properties :
1438
+ strategy :
1439
+ $ref : ' #/components/schemas/StrategyEnum'
1440
+ config :
1441
+ $ref : ' #/components/schemas/TimeToLiveConfig'
1406
1442
ImportContainer :
1407
1443
type : " object"
1408
1444
required :
@@ -1418,12 +1454,17 @@ components:
1418
1454
version :
1419
1455
type : " number"
1420
1456
format : " double"
1457
+ retentionPolicy :
1458
+ $ref : ' #/components/schemas/RetentionPolicy'
1421
1459
createdAt :
1422
1460
type : " string"
1423
1461
format : " datetime"
1424
1462
lastModifiedAt :
1425
1463
type : " string"
1426
1464
format : " datetime"
1465
+ expiresAt :
1466
+ type : " string"
1467
+ format : " datetime"
1427
1468
ImportContainerDraft :
1428
1469
type : " object"
1429
1470
required :
@@ -1433,6 +1474,8 @@ components:
1433
1474
type : " string"
1434
1475
resourceType :
1435
1476
$ref : ' #/components/schemas/ImportResourceType'
1477
+ retentionPolicy :
1478
+ $ref : ' #/components/schemas/RetentionPolicy'
1436
1479
ImportContainerUpdateDraft :
1437
1480
type : " object"
1438
1481
required :
You can’t perform that action at this time.
0 commit comments