@platzio/sdk 0.5.0-beta.11 → 0.5.0-beta.13

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/api.ts CHANGED
@@ -168,10 +168,10 @@ export interface AllDeploymentResourceTypes200ResponseItemsInner {
168
168
  'key': string;
169
169
  /**
170
170
  *
171
- * @type {any}
171
+ * @type {ChartExtResourceTypeV1Beta1Spec}
172
172
  * @memberof AllDeploymentResourceTypes200ResponseItemsInner
173
173
  */
174
- 'spec': any;
174
+ 'spec': ChartExtResourceTypeV1Beta1Spec;
175
175
  }
176
176
  /**
177
177
  *
@@ -478,10 +478,10 @@ export interface AllDeployments200ResponseItemsInner {
478
478
  'revision_id'?: string | null;
479
479
  /**
480
480
  *
481
- * @type {any}
481
+ * @type {DeploymentReportedStatus}
482
482
  * @memberof AllDeployments200ResponseItemsInner
483
483
  */
484
- 'reported_status'?: any | null;
484
+ 'reported_status'?: DeploymentReportedStatus | null;
485
485
  /**
486
486
  *
487
487
  * @type {string}
@@ -722,28 +722,28 @@ export interface AllHelmCharts200ResponseItemsInner {
722
722
  'available': boolean;
723
723
  /**
724
724
  *
725
- * @type {any}
725
+ * @type {UiSchema}
726
726
  * @memberof AllHelmCharts200ResponseItemsInner
727
727
  */
728
- 'values_ui'?: any | null;
728
+ 'values_ui'?: UiSchema | null;
729
729
  /**
730
730
  *
731
- * @type {any}
731
+ * @type {ChartExtActions}
732
732
  * @memberof AllHelmCharts200ResponseItemsInner
733
733
  */
734
- 'actions_schema'?: any | null;
734
+ 'actions_schema'?: ChartExtActions | null;
735
735
  /**
736
736
  *
737
- * @type {any}
737
+ * @type {ChartExtFeatures}
738
738
  * @memberof AllHelmCharts200ResponseItemsInner
739
739
  */
740
- 'features'?: any | null;
740
+ 'features'?: ChartExtFeatures | null;
741
741
  /**
742
742
  *
743
- * @type {any}
743
+ * @type {Array<ChartExtResourceType>}
744
744
  * @memberof AllHelmCharts200ResponseItemsInner
745
745
  */
746
- 'resource_types'?: any | null;
746
+ 'resource_types'?: Array<ChartExtResourceType> | null;
747
747
  /**
748
748
  *
749
749
  * @type {string}
@@ -1338,1455 +1338,2940 @@ export interface AllUsers200ResponseItemsInner {
1338
1338
  /**
1339
1339
  *
1340
1340
  * @export
1341
- * @interface CreateDeploymentTask
1341
+ * @interface ChartExt
1342
1342
  */
1343
- export interface CreateDeploymentTask {
1343
+ export interface ChartExt {
1344
1344
  /**
1345
1345
  *
1346
- * @type {string}
1347
- * @memberof CreateDeploymentTask
1346
+ * @type {ChartMetadata}
1347
+ * @memberof ChartExt
1348
1348
  */
1349
- 'deployment_id': string;
1349
+ 'metadata'?: ChartMetadata | null;
1350
1350
  /**
1351
1351
  *
1352
- * @type {DeploymentTaskOperation}
1353
- * @memberof CreateDeploymentTask
1352
+ * @type {UiSchema}
1353
+ * @memberof ChartExt
1354
1354
  */
1355
- 'operation': DeploymentTaskOperation;
1356
- }
1357
- /**
1358
- *
1359
- * @export
1360
- * @interface CreateUserToken
1361
- */
1362
- export interface CreateUserToken {
1355
+ 'ui_schema'?: UiSchema | null;
1363
1356
  /**
1364
1357
  *
1365
- * @type {string}
1366
- * @memberof CreateUserToken
1358
+ * @type {ChartExtActions}
1359
+ * @memberof ChartExt
1367
1360
  */
1368
- 'user_id'?: string | null;
1369
- }
1370
- /**
1371
- *
1372
- * @export
1373
- * @interface Deployment
1374
- */
1375
- export interface Deployment {
1361
+ 'actions'?: ChartExtActions | null;
1376
1362
  /**
1377
1363
  *
1378
- * @type {string}
1379
- * @memberof Deployment
1364
+ * @type {ChartExtFeatures}
1365
+ * @memberof ChartExt
1380
1366
  */
1381
- 'id': string;
1367
+ 'features'?: ChartExtFeatures | null;
1382
1368
  /**
1383
1369
  *
1384
- * @type {string}
1385
- * @memberof Deployment
1370
+ * @type {Array<ChartExtResourceType>}
1371
+ * @memberof ChartExt
1386
1372
  */
1387
- 'created_at': string;
1373
+ 'resource_types'?: Array<ChartExtResourceType> | null;
1388
1374
  /**
1389
1375
  *
1390
1376
  * @type {string}
1391
- * @memberof Deployment
1377
+ * @memberof ChartExt
1392
1378
  */
1393
- 'name': string;
1379
+ 'error'?: string | null;
1380
+ }
1381
+ /**
1382
+ *
1383
+ * @export
1384
+ * @enum {string}
1385
+ */
1386
+
1387
+ export const ChartExtActionEndpoint = {
1388
+ StandardIngress: 'standard_ingress'
1389
+ } as const;
1390
+
1391
+ export type ChartExtActionEndpoint = typeof ChartExtActionEndpoint[keyof typeof ChartExtActionEndpoint];
1392
+
1393
+
1394
+ /**
1395
+ *
1396
+ * @export
1397
+ * @enum {string}
1398
+ */
1399
+
1400
+ export const ChartExtActionMethod = {
1401
+ Get: 'GET',
1402
+ Post: 'POST',
1403
+ Put: 'PUT',
1404
+ Patch: 'PATCH',
1405
+ Delete: 'DELETE'
1406
+ } as const;
1407
+
1408
+ export type ChartExtActionMethod = typeof ChartExtActionMethod[keyof typeof ChartExtActionMethod];
1409
+
1410
+
1411
+ /**
1412
+ *
1413
+ * @export
1414
+ * @interface ChartExtActionTarget
1415
+ */
1416
+ export interface ChartExtActionTarget {
1394
1417
  /**
1395
1418
  *
1396
- * @type {string}
1397
- * @memberof Deployment
1419
+ * @type {ChartExtActionEndpoint}
1420
+ * @memberof ChartExtActionTarget
1398
1421
  */
1399
- 'kind': string;
1422
+ 'endpoint': ChartExtActionEndpoint;
1400
1423
  /**
1401
1424
  *
1402
1425
  * @type {string}
1403
- * @memberof Deployment
1426
+ * @memberof ChartExtActionTarget
1404
1427
  */
1405
- 'cluster_id': string;
1428
+ 'path': string;
1406
1429
  /**
1407
1430
  *
1408
- * @type {boolean}
1409
- * @memberof Deployment
1431
+ * @type {ChartExtActionMethod}
1432
+ * @memberof ChartExtActionTarget
1410
1433
  */
1411
- 'enabled': boolean;
1434
+ 'method': ChartExtActionMethod;
1435
+ }
1436
+
1437
+
1438
+ /**
1439
+ *
1440
+ * @export
1441
+ * @enum {string}
1442
+ */
1443
+
1444
+ export const ChartExtActionUserDeploymentRole = {
1445
+ Owner: 'Owner',
1446
+ Maintainer: 'Maintainer'
1447
+ } as const;
1448
+
1449
+ export type ChartExtActionUserDeploymentRole = typeof ChartExtActionUserDeploymentRole[keyof typeof ChartExtActionUserDeploymentRole];
1450
+
1451
+
1452
+ /**
1453
+ *
1454
+ * @export
1455
+ * @interface ChartExtActionV0
1456
+ */
1457
+ export interface ChartExtActionV0 {
1412
1458
  /**
1413
1459
  *
1414
- * @type {DeploymentStatus}
1415
- * @memberof Deployment
1460
+ * @type {ChartExtActionEndpoint}
1461
+ * @memberof ChartExtActionV0
1416
1462
  */
1417
- 'status': DeploymentStatus;
1463
+ 'endpoint': ChartExtActionEndpoint;
1418
1464
  /**
1419
1465
  *
1420
1466
  * @type {string}
1421
- * @memberof Deployment
1467
+ * @memberof ChartExtActionV0
1422
1468
  */
1423
- 'description_md'?: string | null;
1469
+ 'path': string;
1424
1470
  /**
1425
1471
  *
1426
- * @type {string}
1427
- * @memberof Deployment
1472
+ * @type {ChartExtActionMethod}
1473
+ * @memberof ChartExtActionV0
1428
1474
  */
1429
- 'reason'?: string | null;
1475
+ 'method': ChartExtActionMethod;
1430
1476
  /**
1431
1477
  *
1432
1478
  * @type {string}
1433
- * @memberof Deployment
1479
+ * @memberof ChartExtActionV0
1434
1480
  */
1435
- 'revision_id'?: string | null;
1481
+ 'id': string;
1436
1482
  /**
1437
1483
  *
1438
- * @type {any}
1439
- * @memberof Deployment
1484
+ * @type {ChartExtActionUserDeploymentRole}
1485
+ * @memberof ChartExtActionV0
1440
1486
  */
1441
- 'reported_status'?: any | null;
1487
+ 'allowed_role': ChartExtActionUserDeploymentRole;
1442
1488
  /**
1443
1489
  *
1444
1490
  * @type {string}
1445
- * @memberof Deployment
1491
+ * @memberof ChartExtActionV0
1446
1492
  */
1447
- 'helm_chart_id': string;
1493
+ 'title': string;
1448
1494
  /**
1449
1495
  *
1450
- * @type {any}
1451
- * @memberof Deployment
1496
+ * @type {string}
1497
+ * @memberof ChartExtActionV0
1452
1498
  */
1453
- 'config': any;
1499
+ 'fontawesome_icon'?: string | null;
1454
1500
  /**
1455
1501
  *
1456
- * @type {any}
1457
- * @memberof Deployment
1502
+ * @type {string}
1503
+ * @memberof ChartExtActionV0
1458
1504
  */
1459
- 'values_override'?: any | null;
1505
+ 'description': string;
1506
+ /**
1507
+ *
1508
+ * @type {UiSchema}
1509
+ * @memberof ChartExtActionV0
1510
+ */
1511
+ 'ui_schema'?: UiSchema | null;
1460
1512
  }
1461
1513
 
1462
1514
 
1463
1515
  /**
1464
1516
  *
1465
1517
  * @export
1466
- * @interface DeploymentInstallTask
1518
+ * @interface ChartExtActionV0AllOf
1467
1519
  */
1468
- export interface DeploymentInstallTask {
1520
+ export interface ChartExtActionV0AllOf {
1469
1521
  /**
1470
1522
  *
1471
1523
  * @type {string}
1472
- * @memberof DeploymentInstallTask
1524
+ * @memberof ChartExtActionV0AllOf
1473
1525
  */
1474
- 'helm_chart_id': string;
1526
+ 'id': string;
1475
1527
  /**
1476
1528
  *
1477
- * @type {any}
1478
- * @memberof DeploymentInstallTask
1529
+ * @type {ChartExtActionUserDeploymentRole}
1530
+ * @memberof ChartExtActionV0AllOf
1479
1531
  */
1480
- 'config_inputs': any;
1532
+ 'allowed_role': ChartExtActionUserDeploymentRole;
1481
1533
  /**
1482
1534
  *
1483
- * @type {any}
1484
- * @memberof DeploymentInstallTask
1535
+ * @type {string}
1536
+ * @memberof ChartExtActionV0AllOf
1485
1537
  */
1486
- 'values_override'?: any | null;
1487
- }
1488
- /**
1489
- *
1490
- * @export
1491
- * @interface DeploymentInvokeActionTask
1492
- */
1493
- export interface DeploymentInvokeActionTask {
1538
+ 'title': string;
1494
1539
  /**
1495
1540
  *
1496
1541
  * @type {string}
1497
- * @memberof DeploymentInvokeActionTask
1542
+ * @memberof ChartExtActionV0AllOf
1498
1543
  */
1499
- 'helm_chart_id': string;
1544
+ 'fontawesome_icon'?: string | null;
1500
1545
  /**
1501
1546
  *
1502
1547
  * @type {string}
1503
- * @memberof DeploymentInvokeActionTask
1548
+ * @memberof ChartExtActionV0AllOf
1504
1549
  */
1505
- 'action_id': string;
1550
+ 'description': string;
1506
1551
  /**
1507
1552
  *
1508
- * @type {any}
1509
- * @memberof DeploymentInvokeActionTask
1553
+ * @type {UiSchema}
1554
+ * @memberof ChartExtActionV0AllOf
1510
1555
  */
1511
- 'body': any;
1556
+ 'ui_schema'?: UiSchema | null;
1512
1557
  }
1558
+
1559
+
1513
1560
  /**
1514
1561
  *
1515
1562
  * @export
1516
- * @interface DeploymentPermission
1563
+ * @interface ChartExtActionV1Beta1
1517
1564
  */
1518
- export interface DeploymentPermission {
1565
+ export interface ChartExtActionV1Beta1 {
1519
1566
  /**
1520
1567
  *
1521
- * @type {string}
1522
- * @memberof DeploymentPermission
1568
+ * @type {ChartExtVersionV1Beta1}
1569
+ * @memberof ChartExtActionV1Beta1
1523
1570
  */
1524
- 'id': string;
1571
+ 'apiVersion': ChartExtVersionV1Beta1;
1525
1572
  /**
1526
1573
  *
1527
- * @type {string}
1528
- * @memberof DeploymentPermission
1574
+ * @type {ChartExtKindAction}
1575
+ * @memberof ChartExtActionV1Beta1
1529
1576
  */
1530
- 'created_at': string;
1577
+ 'kind': ChartExtKindAction;
1531
1578
  /**
1532
1579
  *
1533
- * @type {string}
1534
- * @memberof DeploymentPermission
1580
+ * @type {ChartExtActionV0}
1581
+ * @memberof ChartExtActionV1Beta1
1535
1582
  */
1536
- 'env_id': string;
1583
+ 'spec': ChartExtActionV0;
1584
+ }
1585
+
1586
+
1587
+ /**
1588
+ * @type ChartExtActions
1589
+ * @export
1590
+ */
1591
+ export type ChartExtActions = ChartExtActionsV0 | ChartExtActionsV1Beta1;
1592
+
1593
+ /**
1594
+ *
1595
+ * @export
1596
+ * @interface ChartExtActionsV0
1597
+ */
1598
+ export interface ChartExtActionsV0 {
1537
1599
  /**
1538
1600
  *
1539
- * @type {string}
1540
- * @memberof DeploymentPermission
1601
+ * @type {number}
1602
+ * @memberof ChartExtActionsV0
1541
1603
  */
1542
- 'user_id': string;
1604
+ 'schema_version': number;
1543
1605
  /**
1544
1606
  *
1545
- * @type {string}
1546
- * @memberof DeploymentPermission
1607
+ * @type {Array<ChartExtActionV0>}
1608
+ * @memberof ChartExtActionsV0
1547
1609
  */
1548
- 'kind': string;
1610
+ 'actions': Array<ChartExtActionV0>;
1611
+ }
1612
+ /**
1613
+ *
1614
+ * @export
1615
+ * @interface ChartExtActionsV1Beta1
1616
+ */
1617
+ export interface ChartExtActionsV1Beta1 {
1549
1618
  /**
1550
1619
  *
1551
- * @type {UserDeploymentRole}
1552
- * @memberof DeploymentPermission
1620
+ * @type {Array<ChartExtActionV1Beta1>}
1621
+ * @memberof ChartExtActionsV1Beta1
1553
1622
  */
1554
- 'role': UserDeploymentRole;
1623
+ 'actions': Array<ChartExtActionV1Beta1>;
1555
1624
  }
1625
+ /**
1626
+ *
1627
+ * @export
1628
+ * @enum {string}
1629
+ */
1630
+
1631
+ export const ChartExtCardinality = {
1632
+ Many: 'Many',
1633
+ OnePerCluster: 'OnePerCluster'
1634
+ } as const;
1635
+
1636
+ export type ChartExtCardinality = typeof ChartExtCardinality[keyof typeof ChartExtCardinality];
1556
1637
 
1557
1638
 
1558
1639
  /**
1559
1640
  *
1560
1641
  * @export
1561
- * @interface DeploymentRecreaseTask
1642
+ * @interface ChartExtDeploymentDisplay
1562
1643
  */
1563
- export interface DeploymentRecreaseTask {
1644
+ export interface ChartExtDeploymentDisplay {
1564
1645
  /**
1565
1646
  *
1566
- * @type {string}
1567
- * @memberof DeploymentRecreaseTask
1647
+ * @type {ChartExtDeploymentDisplayName}
1648
+ * @memberof ChartExtDeploymentDisplay
1568
1649
  */
1569
- 'old_cluster_id': string;
1650
+ 'name'?: ChartExtDeploymentDisplayName | null;
1570
1651
  /**
1571
1652
  *
1572
- * @type {string}
1573
- * @memberof DeploymentRecreaseTask
1653
+ * @type {ChartExtDeploymentDisplayIcon}
1654
+ * @memberof ChartExtDeploymentDisplay
1574
1655
  */
1575
- 'old_namespace': string;
1656
+ 'icon'?: ChartExtDeploymentDisplayIcon | null;
1657
+ }
1658
+ /**
1659
+ *
1660
+ * @export
1661
+ * @interface ChartExtDeploymentDisplayIcon
1662
+ */
1663
+ export interface ChartExtDeploymentDisplayIcon {
1576
1664
  /**
1577
1665
  *
1578
1666
  * @type {string}
1579
- * @memberof DeploymentRecreaseTask
1667
+ * @memberof ChartExtDeploymentDisplayIcon
1580
1668
  */
1581
- 'new_cluster_id': string;
1669
+ 'font_awesome': string;
1670
+ }
1671
+ /**
1672
+ * @type ChartExtDeploymentDisplayName
1673
+ * @export
1674
+ */
1675
+ export type ChartExtDeploymentDisplayName = ChartExtDeploymentDisplayNameOneOf | string;
1676
+
1677
+ /**
1678
+ *
1679
+ * @export
1680
+ * @interface ChartExtDeploymentDisplayNameInputField
1681
+ */
1682
+ export interface ChartExtDeploymentDisplayNameInputField {
1582
1683
  /**
1583
1684
  *
1584
1685
  * @type {string}
1585
- * @memberof DeploymentRecreaseTask
1686
+ * @memberof ChartExtDeploymentDisplayNameInputField
1586
1687
  */
1587
- 'new_namespace': string;
1688
+ 'name': string;
1588
1689
  }
1589
1690
  /**
1590
1691
  *
1591
1692
  * @export
1592
- * @interface DeploymentReinstallTask
1693
+ * @interface ChartExtDeploymentDisplayNameOneOf
1593
1694
  */
1594
- export interface DeploymentReinstallTask {
1695
+ export interface ChartExtDeploymentDisplayNameOneOf {
1595
1696
  /**
1596
1697
  *
1597
- * @type {string}
1598
- * @memberof DeploymentReinstallTask
1698
+ * @type {ChartExtDeploymentDisplayNameInputField}
1699
+ * @memberof ChartExtDeploymentDisplayNameOneOf
1599
1700
  */
1600
- 'reason': string;
1701
+ 'InputField': ChartExtDeploymentDisplayNameInputField;
1601
1702
  }
1703
+ /**
1704
+ * @type ChartExtFeatures
1705
+ * @export
1706
+ */
1707
+ export type ChartExtFeatures = ChartExtFeaturesV0 | ChartExtFeaturesV1Beta1 | ChartExtFeaturesV1Beta2;
1708
+
1602
1709
  /**
1603
1710
  *
1604
1711
  * @export
1605
- * @interface DeploymentResource
1712
+ * @interface ChartExtFeaturesSpec
1606
1713
  */
1607
- export interface DeploymentResource {
1714
+ export interface ChartExtFeaturesSpec {
1608
1715
  /**
1609
1716
  *
1610
- * @type {string}
1611
- * @memberof DeploymentResource
1717
+ * @type {ChartExtIngress}
1718
+ * @memberof ChartExtFeaturesSpec
1612
1719
  */
1613
- 'id': string;
1720
+ 'ingress'?: ChartExtIngress;
1614
1721
  /**
1615
1722
  *
1616
- * @type {string}
1617
- * @memberof DeploymentResource
1723
+ * @type {ChartExtStatusFeature}
1724
+ * @memberof ChartExtFeaturesSpec
1618
1725
  */
1619
- 'created_at': string;
1726
+ 'status'?: ChartExtStatusFeature | null;
1620
1727
  /**
1621
1728
  *
1622
- * @type {string}
1623
- * @memberof DeploymentResource
1729
+ * @type {ChartExtCardinality}
1730
+ * @memberof ChartExtFeaturesSpec
1624
1731
  */
1625
- 'type_id': string;
1732
+ 'cardinality'?: ChartExtCardinality;
1626
1733
  /**
1627
- *
1628
- * @type {string}
1629
- * @memberof DeploymentResource
1734
+ * Should dependent deployments be reinstalled when this deployment config/values are updated. This doesn\'t apply to renames or moving between clusters which always reinstalls dependencies.
1735
+ * @type {boolean}
1736
+ * @memberof ChartExtFeaturesSpec
1630
1737
  */
1631
- 'deployment_id'?: string | null;
1738
+ 'reinstall_dependencies'?: boolean;
1632
1739
  /**
1633
- *
1634
- * @type {string}
1635
- * @memberof DeploymentResource
1740
+ * Paths to inject the node selector to. Node selector is always added at the values top level `nodeSelector`.
1741
+ * @type {Array<Array<string>>}
1742
+ * @memberof ChartExtFeaturesSpec
1636
1743
  */
1637
- 'name': string;
1744
+ 'node_selector_paths'?: Array<Array<string>>;
1638
1745
  /**
1639
- *
1640
- * @type {boolean}
1641
- * @memberof DeploymentResource
1746
+ * Same for tolerations
1747
+ * @type {Array<Array<string>>}
1748
+ * @memberof ChartExtFeaturesSpec
1642
1749
  */
1643
- 'exists': boolean;
1750
+ 'tolerations_paths'?: Array<Array<string>>;
1644
1751
  /**
1645
1752
  *
1646
- * @type {any}
1647
- * @memberof DeploymentResource
1753
+ * @type {ChartExtDeploymentDisplay}
1754
+ * @memberof ChartExtFeaturesSpec
1648
1755
  */
1649
- 'props': any;
1650
- /**
1651
- *
1652
- * @type {DeploymentResourceSyncStatus}
1653
- * @memberof DeploymentResource
1654
- */
1655
- 'sync_status': DeploymentResourceSyncStatus;
1656
- /**
1657
- *
1658
- * @type {string}
1659
- * @memberof DeploymentResource
1660
- */
1661
- 'sync_reason'?: string | null;
1756
+ 'display'?: ChartExtDeploymentDisplay;
1662
1757
  }
1663
1758
 
1664
1759
 
1665
1760
  /**
1666
1761
  *
1667
1762
  * @export
1668
- * @enum {string}
1763
+ * @interface ChartExtFeaturesV0
1669
1764
  */
1670
-
1671
- export const DeploymentResourceSyncStatus = {
1672
- Creating: 'Creating',
1673
- Updating: 'Updating',
1674
- Deleting: 'Deleting',
1675
- Ready: 'Ready',
1676
- Error: 'Error'
1677
- } as const;
1678
-
1679
- export type DeploymentResourceSyncStatus = typeof DeploymentResourceSyncStatus[keyof typeof DeploymentResourceSyncStatus];
1765
+ export interface ChartExtFeaturesV0 {
1766
+ /**
1767
+ * When true, values.yaml is injected with an `ingress` section that matches the structure generated by `helm create`. This generates the hostname and sets TLS correctly.
1768
+ * @type {boolean}
1769
+ * @memberof ChartExtFeaturesV0
1770
+ */
1771
+ 'standard_ingress'?: boolean;
1772
+ /**
1773
+ *
1774
+ * @type {ChartExtStatusFeature}
1775
+ * @memberof ChartExtFeaturesV0
1776
+ */
1777
+ 'status'?: ChartExtStatusFeature | null;
1778
+ /**
1779
+ *
1780
+ * @type {ChartExtCardinality}
1781
+ * @memberof ChartExtFeaturesV0
1782
+ */
1783
+ 'cardinality'?: ChartExtCardinality;
1784
+ /**
1785
+ * Should dependent deployments be reinstalled when this deployment config/values are updated. This doesn\'t apply to renames or moving between clusters which always reinstalls dependencies.
1786
+ * @type {boolean}
1787
+ * @memberof ChartExtFeaturesV0
1788
+ */
1789
+ 'reinstall_dependencies'?: boolean;
1790
+ /**
1791
+ * Paths to inject the node selector to. Node selector is always added at the values top level `nodeSelector`.
1792
+ * @type {Array<Array<string>>}
1793
+ * @memberof ChartExtFeaturesV0
1794
+ */
1795
+ 'node_selector_paths'?: Array<Array<string>>;
1796
+ /**
1797
+ * Same for tolerations
1798
+ * @type {Array<Array<string>>}
1799
+ * @memberof ChartExtFeaturesV0
1800
+ */
1801
+ 'tolerations_paths'?: Array<Array<string>>;
1802
+ }
1680
1803
 
1681
1804
 
1682
1805
  /**
1683
1806
  *
1684
1807
  * @export
1685
- * @interface DeploymentResourceType
1808
+ * @interface ChartExtFeaturesV1Beta1
1686
1809
  */
1687
- export interface DeploymentResourceType {
1810
+ export interface ChartExtFeaturesV1Beta1 {
1688
1811
  /**
1689
1812
  *
1690
- * @type {string}
1691
- * @memberof DeploymentResourceType
1813
+ * @type {ChartExtVersionV1Beta1}
1814
+ * @memberof ChartExtFeaturesV1Beta1
1692
1815
  */
1693
- 'id': string;
1816
+ 'apiVersion': ChartExtVersionV1Beta1;
1694
1817
  /**
1695
1818
  *
1696
- * @type {string}
1697
- * @memberof DeploymentResourceType
1819
+ * @type {ChartExtKindFeatures}
1820
+ * @memberof ChartExtFeaturesV1Beta1
1698
1821
  */
1699
- 'created_at': string;
1822
+ 'kind': ChartExtKindFeatures;
1700
1823
  /**
1701
1824
  *
1702
- * @type {string}
1703
- * @memberof DeploymentResourceType
1825
+ * @type {ChartExtFeaturesV0}
1826
+ * @memberof ChartExtFeaturesV1Beta1
1704
1827
  */
1705
- 'env_id'?: string | null;
1828
+ 'spec': ChartExtFeaturesV0;
1829
+ }
1830
+
1831
+
1832
+ /**
1833
+ *
1834
+ * @export
1835
+ * @interface ChartExtFeaturesV1Beta2
1836
+ */
1837
+ export interface ChartExtFeaturesV1Beta2 {
1706
1838
  /**
1707
1839
  *
1708
- * @type {string}
1709
- * @memberof DeploymentResourceType
1840
+ * @type {ChartExtVersionV1Beta2}
1841
+ * @memberof ChartExtFeaturesV1Beta2
1710
1842
  */
1711
- 'deployment_kind': string;
1843
+ 'apiVersion': ChartExtVersionV1Beta2;
1712
1844
  /**
1713
1845
  *
1714
- * @type {string}
1715
- * @memberof DeploymentResourceType
1846
+ * @type {ChartExtKindFeatures}
1847
+ * @memberof ChartExtFeaturesV1Beta2
1716
1848
  */
1717
- 'key': string;
1849
+ 'kind': ChartExtKindFeatures;
1718
1850
  /**
1719
1851
  *
1720
- * @type {any}
1721
- * @memberof DeploymentResourceType
1852
+ * @type {ChartExtFeaturesSpec}
1853
+ * @memberof ChartExtFeaturesV1Beta2
1722
1854
  */
1723
- 'spec': any;
1855
+ 'spec': ChartExtFeaturesSpec;
1724
1856
  }
1857
+
1858
+
1725
1859
  /**
1726
1860
  *
1727
1861
  * @export
1728
- * @interface DeploymentRestartK8sResourceTask
1862
+ * @interface ChartExtIngress
1729
1863
  */
1730
- export interface DeploymentRestartK8sResourceTask {
1864
+ export interface ChartExtIngress {
1731
1865
  /**
1732
1866
  *
1733
- * @type {string}
1734
- * @memberof DeploymentRestartK8sResourceTask
1867
+ * @type {boolean}
1868
+ * @memberof ChartExtIngress
1735
1869
  */
1736
- 'resource_id': string;
1870
+ 'enabled': boolean;
1737
1871
  /**
1738
1872
  *
1739
- * @type {string}
1740
- * @memberof DeploymentRestartK8sResourceTask
1873
+ * @type {ChartExtIngressHostnameFormat}
1874
+ * @memberof ChartExtIngress
1741
1875
  */
1742
- 'resource_name': string;
1876
+ 'hostname_format'?: ChartExtIngressHostnameFormat;
1743
1877
  }
1878
+
1879
+
1744
1880
  /**
1745
1881
  *
1746
1882
  * @export
1747
1883
  * @enum {string}
1748
1884
  */
1749
1885
 
1750
- export const DeploymentStatus = {
1751
- Unknown: 'Unknown',
1752
- Installing: 'Installing',
1753
- Renaming: 'Renaming',
1754
- Upgrading: 'Upgrading',
1755
- Running: 'Running',
1756
- Error: 'Error',
1757
- Uninstalling: 'Uninstalling',
1758
- Uninstalled: 'Uninstalled',
1759
- Deleting: 'Deleting'
1886
+ export const ChartExtIngressHostnameFormat = {
1887
+ Name: 'Name',
1888
+ KindAndName: 'KindAndName'
1760
1889
  } as const;
1761
1890
 
1762
- export type DeploymentStatus = typeof DeploymentStatus[keyof typeof DeploymentStatus];
1891
+ export type ChartExtIngressHostnameFormat = typeof ChartExtIngressHostnameFormat[keyof typeof ChartExtIngressHostnameFormat];
1763
1892
 
1764
1893
 
1765
1894
  /**
1766
1895
  *
1767
1896
  * @export
1768
- * @interface DeploymentTask
1897
+ * @enum {string}
1769
1898
  */
1770
- export interface DeploymentTask {
1899
+
1900
+ export const ChartExtKindAction = {
1901
+ Action: 'Action'
1902
+ } as const;
1903
+
1904
+ export type ChartExtKindAction = typeof ChartExtKindAction[keyof typeof ChartExtKindAction];
1905
+
1906
+
1907
+ /**
1908
+ *
1909
+ * @export
1910
+ * @enum {string}
1911
+ */
1912
+
1913
+ export const ChartExtKindFeatures = {
1914
+ Features: 'Features'
1915
+ } as const;
1916
+
1917
+ export type ChartExtKindFeatures = typeof ChartExtKindFeatures[keyof typeof ChartExtKindFeatures];
1918
+
1919
+
1920
+ /**
1921
+ *
1922
+ * @export
1923
+ * @enum {string}
1924
+ */
1925
+
1926
+ export const ChartExtKindResourceType = {
1927
+ ResourceType: 'ResourceType'
1928
+ } as const;
1929
+
1930
+ export type ChartExtKindResourceType = typeof ChartExtKindResourceType[keyof typeof ChartExtKindResourceType];
1931
+
1932
+
1933
+ /**
1934
+ *
1935
+ * @export
1936
+ * @enum {string}
1937
+ */
1938
+
1939
+ export const ChartExtKindValuesUi = {
1940
+ ValuesUi: 'ValuesUi'
1941
+ } as const;
1942
+
1943
+ export type ChartExtKindValuesUi = typeof ChartExtKindValuesUi[keyof typeof ChartExtKindValuesUi];
1944
+
1945
+
1946
+ /**
1947
+ *
1948
+ * @export
1949
+ * @interface ChartExtResourceLifecycleActionV1Beta1
1950
+ */
1951
+ export interface ChartExtResourceLifecycleActionV1Beta1 {
1771
1952
  /**
1772
1953
  *
1773
- * @type {string}
1774
- * @memberof DeploymentTask
1954
+ * @type {ChartExtActionUserDeploymentRole}
1955
+ * @memberof ChartExtResourceLifecycleActionV1Beta1
1775
1956
  */
1776
- 'id': string;
1957
+ 'allowed_role'?: ChartExtActionUserDeploymentRole | null;
1777
1958
  /**
1778
1959
  *
1779
- * @type {string}
1780
- * @memberof DeploymentTask
1960
+ * @type {ChartExtActionTarget}
1961
+ * @memberof ChartExtResourceLifecycleActionV1Beta1
1781
1962
  */
1782
- 'created_at': string;
1963
+ 'target'?: ChartExtActionTarget | null;
1964
+ }
1965
+
1966
+
1967
+ /**
1968
+ *
1969
+ * @export
1970
+ * @interface ChartExtResourceLifecycleV1Beta1
1971
+ */
1972
+ export interface ChartExtResourceLifecycleV1Beta1 {
1783
1973
  /**
1784
1974
  *
1785
- * @type {string}
1786
- * @memberof DeploymentTask
1975
+ * @type {ChartExtResourceLifecycleActionV1Beta1}
1976
+ * @memberof ChartExtResourceLifecycleV1Beta1
1787
1977
  */
1788
- 'first_attempted_at'?: string | null;
1978
+ 'create'?: ChartExtResourceLifecycleActionV1Beta1 | null;
1789
1979
  /**
1790
1980
  *
1791
- * @type {string}
1792
- * @memberof DeploymentTask
1981
+ * @type {ChartExtResourceLifecycleActionV1Beta1}
1982
+ * @memberof ChartExtResourceLifecycleV1Beta1
1793
1983
  */
1794
- 'started_at'?: string | null;
1984
+ 'update'?: ChartExtResourceLifecycleActionV1Beta1 | null;
1795
1985
  /**
1796
1986
  *
1797
- * @type {string}
1798
- * @memberof DeploymentTask
1987
+ * @type {ChartExtResourceLifecycleActionV1Beta1}
1988
+ * @memberof ChartExtResourceLifecycleV1Beta1
1799
1989
  */
1800
- 'finished_at'?: string | null;
1990
+ 'delete'?: ChartExtResourceLifecycleActionV1Beta1 | null;
1991
+ }
1992
+ /**
1993
+ * @type ChartExtResourceType
1994
+ * @export
1995
+ */
1996
+ export type ChartExtResourceType = ChartExtResourceTypeV1Beta1;
1997
+
1998
+ /**
1999
+ *
2000
+ * @export
2001
+ * @interface ChartExtResourceTypeV1Beta1
2002
+ */
2003
+ export interface ChartExtResourceTypeV1Beta1 {
2004
+ /**
2005
+ *
2006
+ * @type {ChartExtVersionV1Beta1}
2007
+ * @memberof ChartExtResourceTypeV1Beta1
2008
+ */
2009
+ 'apiVersion': ChartExtVersionV1Beta1;
2010
+ /**
2011
+ *
2012
+ * @type {ChartExtKindResourceType}
2013
+ * @memberof ChartExtResourceTypeV1Beta1
2014
+ */
2015
+ 'kind': ChartExtKindResourceType;
1801
2016
  /**
1802
2017
  *
1803
2018
  * @type {string}
1804
- * @memberof DeploymentTask
2019
+ * @memberof ChartExtResourceTypeV1Beta1
1805
2020
  */
1806
- 'cluster_id': string;
2021
+ 'key': string;
2022
+ /**
2023
+ *
2024
+ * @type {ChartExtResourceTypeV1Beta1Spec}
2025
+ * @memberof ChartExtResourceTypeV1Beta1
2026
+ */
2027
+ 'spec': ChartExtResourceTypeV1Beta1Spec;
2028
+ }
2029
+
2030
+
2031
+ /**
2032
+ *
2033
+ * @export
2034
+ * @interface ChartExtResourceTypeV1Beta1Spec
2035
+ */
2036
+ export interface ChartExtResourceTypeV1Beta1Spec {
1807
2037
  /**
1808
2038
  *
1809
2039
  * @type {string}
1810
- * @memberof DeploymentTask
2040
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1811
2041
  */
1812
- 'deployment_id': string;
2042
+ 'name_singular': string;
1813
2043
  /**
1814
2044
  *
1815
2045
  * @type {string}
1816
- * @memberof DeploymentTask
2046
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1817
2047
  */
1818
- 'acting_user_id'?: string | null;
2048
+ 'name_plural': string;
1819
2049
  /**
1820
2050
  *
1821
2051
  * @type {string}
1822
- * @memberof DeploymentTask
2052
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1823
2053
  */
1824
- 'acting_deployment_id'?: string | null;
2054
+ 'fontawesome_icon': string;
1825
2055
  /**
1826
2056
  *
1827
- * @type {DeploymentTaskOperation}
1828
- * @memberof DeploymentTask
2057
+ * @type {boolean}
2058
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1829
2059
  */
1830
- 'operation': DeploymentTaskOperation;
2060
+ 'global'?: boolean;
1831
2061
  /**
1832
2062
  *
1833
- * @type {DeploymentTaskStatus}
1834
- * @memberof DeploymentTask
2063
+ * @type {UiSchemaV0}
2064
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1835
2065
  */
1836
- 'status': DeploymentTaskStatus;
2066
+ 'values_ui': UiSchemaV0;
1837
2067
  /**
1838
2068
  *
1839
- * @type {string}
1840
- * @memberof DeploymentTask
2069
+ * @type {ChartExtResourceLifecycleV1Beta1}
2070
+ * @memberof ChartExtResourceTypeV1Beta1Spec
1841
2071
  */
1842
- 'reason'?: string | null;
2072
+ 'lifecycle'?: ChartExtResourceLifecycleV1Beta1;
1843
2073
  }
1844
-
1845
-
1846
- /**
1847
- * @type DeploymentTaskOperation
1848
- * @export
1849
- */
1850
- export type DeploymentTaskOperation = DeploymentTaskOperationOneOf | DeploymentTaskOperationOneOf1 | DeploymentTaskOperationOneOf2 | DeploymentTaskOperationOneOf3 | DeploymentTaskOperationOneOf4 | DeploymentTaskOperationOneOf5 | DeploymentTaskOperationOneOf6;
1851
-
1852
2074
  /**
1853
2075
  *
1854
2076
  * @export
1855
- * @interface DeploymentTaskOperationOneOf
2077
+ * @interface ChartExtStatusFeature
1856
2078
  */
1857
- export interface DeploymentTaskOperationOneOf {
2079
+ export interface ChartExtStatusFeature {
1858
2080
  /**
1859
2081
  *
1860
- * @type {DeploymentInstallTask}
1861
- * @memberof DeploymentTaskOperationOneOf
2082
+ * @type {ChartExtActionEndpoint}
2083
+ * @memberof ChartExtStatusFeature
1862
2084
  */
1863
- 'Install': DeploymentInstallTask;
2085
+ 'endpoint': ChartExtActionEndpoint;
2086
+ /**
2087
+ *
2088
+ * @type {string}
2089
+ * @memberof ChartExtStatusFeature
2090
+ */
2091
+ 'path': string;
2092
+ /**
2093
+ *
2094
+ * @type {number}
2095
+ * @memberof ChartExtStatusFeature
2096
+ */
2097
+ 'refresh_interval_secs': number;
1864
2098
  }
2099
+
2100
+
1865
2101
  /**
1866
2102
  *
1867
2103
  * @export
1868
- * @interface DeploymentTaskOperationOneOf1
2104
+ * @enum {string}
1869
2105
  */
1870
- export interface DeploymentTaskOperationOneOf1 {
1871
- /**
1872
- *
1873
- * @type {DeploymentUpgradeTask}
1874
- * @memberof DeploymentTaskOperationOneOf1
1875
- */
1876
- 'Upgrade': DeploymentUpgradeTask;
1877
- }
2106
+
2107
+ export const ChartExtVersionV1Beta1 = {
2108
+ PlatzIoV1beta1: 'platz.io/v1beta1'
2109
+ } as const;
2110
+
2111
+ export type ChartExtVersionV1Beta1 = typeof ChartExtVersionV1Beta1[keyof typeof ChartExtVersionV1Beta1];
2112
+
2113
+
1878
2114
  /**
1879
2115
  *
1880
2116
  * @export
1881
- * @interface DeploymentTaskOperationOneOf2
2117
+ * @enum {string}
1882
2118
  */
1883
- export interface DeploymentTaskOperationOneOf2 {
1884
- /**
1885
- *
1886
- * @type {DeploymentReinstallTask}
1887
- * @memberof DeploymentTaskOperationOneOf2
1888
- */
1889
- 'Reinstall': DeploymentReinstallTask;
1890
- }
2119
+
2120
+ export const ChartExtVersionV1Beta2 = {
2121
+ PlatzIoV1beta2: 'platz.io/v1beta2'
2122
+ } as const;
2123
+
2124
+ export type ChartExtVersionV1Beta2 = typeof ChartExtVersionV1Beta2[keyof typeof ChartExtVersionV1Beta2];
2125
+
2126
+
1891
2127
  /**
1892
2128
  *
1893
2129
  * @export
1894
- * @interface DeploymentTaskOperationOneOf3
2130
+ * @interface ChartMetadata
1895
2131
  */
1896
- export interface DeploymentTaskOperationOneOf3 {
2132
+ export interface ChartMetadata {
1897
2133
  /**
1898
2134
  *
1899
- * @type {DeploymentRecreaseTask}
1900
- * @memberof DeploymentTaskOperationOneOf3
2135
+ * @type {string}
2136
+ * @memberof ChartMetadata
1901
2137
  */
1902
- 'Recreate': DeploymentRecreaseTask;
1903
- }
1904
- /**
1905
- *
1906
- * @export
1907
- * @interface DeploymentTaskOperationOneOf4
1908
- */
1909
- export interface DeploymentTaskOperationOneOf4 {
2138
+ 'version': string;
1910
2139
  /**
1911
2140
  *
1912
- * @type {object}
1913
- * @memberof DeploymentTaskOperationOneOf4
2141
+ * @type {string}
2142
+ * @memberof ChartMetadata
1914
2143
  */
1915
- 'Uninstall': object;
2144
+ 'git_commit'?: string | null;
2145
+ /**
2146
+ *
2147
+ * @type {string}
2148
+ * @memberof ChartMetadata
2149
+ */
2150
+ 'git_branch'?: string | null;
2151
+ /**
2152
+ *
2153
+ * @type {string}
2154
+ * @memberof ChartMetadata
2155
+ */
2156
+ 'git_repo'?: string | null;
2157
+ /**
2158
+ *
2159
+ * @type {string}
2160
+ * @memberof ChartMetadata
2161
+ */
2162
+ 'git_provider'?: string | null;
1916
2163
  }
1917
2164
  /**
1918
2165
  *
1919
2166
  * @export
1920
- * @interface DeploymentTaskOperationOneOf5
2167
+ * @interface CreateDeploymentTask
1921
2168
  */
1922
- export interface DeploymentTaskOperationOneOf5 {
2169
+ export interface CreateDeploymentTask {
1923
2170
  /**
1924
2171
  *
1925
- * @type {DeploymentInvokeActionTask}
1926
- * @memberof DeploymentTaskOperationOneOf5
2172
+ * @type {string}
2173
+ * @memberof CreateDeploymentTask
1927
2174
  */
1928
- 'InvokeAction': DeploymentInvokeActionTask;
2175
+ 'deployment_id': string;
2176
+ /**
2177
+ *
2178
+ * @type {DeploymentTaskOperation}
2179
+ * @memberof CreateDeploymentTask
2180
+ */
2181
+ 'operation': DeploymentTaskOperation;
1929
2182
  }
1930
2183
  /**
1931
2184
  *
1932
2185
  * @export
1933
- * @interface DeploymentTaskOperationOneOf6
2186
+ * @interface CreateUserToken
1934
2187
  */
1935
- export interface DeploymentTaskOperationOneOf6 {
2188
+ export interface CreateUserToken {
1936
2189
  /**
1937
2190
  *
1938
- * @type {DeploymentRestartK8sResourceTask}
1939
- * @memberof DeploymentTaskOperationOneOf6
2191
+ * @type {string}
2192
+ * @memberof CreateUserToken
1940
2193
  */
1941
- 'RestartK8sResource': DeploymentRestartK8sResourceTask;
2194
+ 'user_id'?: string | null;
1942
2195
  }
1943
2196
  /**
1944
2197
  *
1945
2198
  * @export
1946
- * @enum {string}
1947
- */
1948
-
1949
- export const DeploymentTaskStatus = {
1950
- Pending: 'Pending',
1951
- Started: 'Started',
1952
- Failed: 'Failed',
1953
- Done: 'Done'
1954
- } as const;
1955
-
1956
- export type DeploymentTaskStatus = typeof DeploymentTaskStatus[keyof typeof DeploymentTaskStatus];
1957
-
1958
-
1959
- /**
1960
- *
1961
- * @export
1962
- * @interface DeploymentUpgradeTask
2199
+ * @interface Deployment
1963
2200
  */
1964
- export interface DeploymentUpgradeTask {
2201
+ export interface Deployment {
1965
2202
  /**
1966
2203
  *
1967
2204
  * @type {string}
1968
- * @memberof DeploymentUpgradeTask
2205
+ * @memberof Deployment
1969
2206
  */
1970
- 'helm_chart_id': string;
2207
+ 'id': string;
1971
2208
  /**
1972
2209
  *
1973
2210
  * @type {string}
1974
- * @memberof DeploymentUpgradeTask
2211
+ * @memberof Deployment
1975
2212
  */
1976
- 'prev_helm_chart_id'?: string | null;
2213
+ 'created_at': string;
1977
2214
  /**
1978
2215
  *
1979
- * @type {any}
1980
- * @memberof DeploymentUpgradeTask
2216
+ * @type {string}
2217
+ * @memberof Deployment
1981
2218
  */
1982
- 'config_inputs': any;
2219
+ 'name': string;
1983
2220
  /**
1984
2221
  *
1985
- * @type {object}
1986
- * @memberof DeploymentUpgradeTask
2222
+ * @type {string}
2223
+ * @memberof Deployment
1987
2224
  */
1988
- 'config_delta': object;
2225
+ 'kind': string;
2226
+ /**
2227
+ *
2228
+ * @type {string}
2229
+ * @memberof Deployment
2230
+ */
2231
+ 'cluster_id': string;
2232
+ /**
2233
+ *
2234
+ * @type {boolean}
2235
+ * @memberof Deployment
2236
+ */
2237
+ 'enabled': boolean;
2238
+ /**
2239
+ *
2240
+ * @type {DeploymentStatus}
2241
+ * @memberof Deployment
2242
+ */
2243
+ 'status': DeploymentStatus;
2244
+ /**
2245
+ *
2246
+ * @type {string}
2247
+ * @memberof Deployment
2248
+ */
2249
+ 'description_md'?: string | null;
2250
+ /**
2251
+ *
2252
+ * @type {string}
2253
+ * @memberof Deployment
2254
+ */
2255
+ 'reason'?: string | null;
2256
+ /**
2257
+ *
2258
+ * @type {string}
2259
+ * @memberof Deployment
2260
+ */
2261
+ 'revision_id'?: string | null;
2262
+ /**
2263
+ *
2264
+ * @type {DeploymentReportedStatus}
2265
+ * @memberof Deployment
2266
+ */
2267
+ 'reported_status'?: DeploymentReportedStatus | null;
2268
+ /**
2269
+ *
2270
+ * @type {string}
2271
+ * @memberof Deployment
2272
+ */
2273
+ 'helm_chart_id': string;
1989
2274
  /**
1990
2275
  *
1991
2276
  * @type {any}
1992
- * @memberof DeploymentUpgradeTask
2277
+ * @memberof Deployment
2278
+ */
2279
+ 'config': any;
2280
+ /**
2281
+ *
2282
+ * @type {any}
2283
+ * @memberof Deployment
1993
2284
  */
1994
2285
  'values_override'?: any | null;
1995
2286
  }
2287
+
2288
+
1996
2289
  /**
1997
2290
  *
1998
2291
  * @export
1999
- * @interface Env
2292
+ * @interface DeploymentInstallTask
2000
2293
  */
2001
- export interface Env {
2294
+ export interface DeploymentInstallTask {
2002
2295
  /**
2003
2296
  *
2004
2297
  * @type {string}
2005
- * @memberof Env
2298
+ * @memberof DeploymentInstallTask
2006
2299
  */
2007
- 'id': string;
2300
+ 'helm_chart_id': string;
2008
2301
  /**
2009
2302
  *
2010
- * @type {string}
2011
- * @memberof Env
2303
+ * @type {any}
2304
+ * @memberof DeploymentInstallTask
2012
2305
  */
2013
- 'created_at': string;
2306
+ 'config_inputs': any;
2014
2307
  /**
2015
2308
  *
2016
- * @type {string}
2017
- * @memberof Env
2309
+ * @type {any}
2310
+ * @memberof DeploymentInstallTask
2018
2311
  */
2019
- 'name': string;
2312
+ 'values_override'?: any | null;
2313
+ }
2314
+ /**
2315
+ *
2316
+ * @export
2317
+ * @interface DeploymentInvokeActionTask
2318
+ */
2319
+ export interface DeploymentInvokeActionTask {
2020
2320
  /**
2021
2321
  *
2022
- * @type {any}
2023
- * @memberof Env
2322
+ * @type {string}
2323
+ * @memberof DeploymentInvokeActionTask
2024
2324
  */
2025
- 'node_selector': any;
2325
+ 'helm_chart_id': string;
2026
2326
  /**
2027
2327
  *
2028
- * @type {any}
2029
- * @memberof Env
2328
+ * @type {string}
2329
+ * @memberof DeploymentInvokeActionTask
2030
2330
  */
2031
- 'tolerations': any;
2331
+ 'action_id': string;
2032
2332
  /**
2033
2333
  *
2034
- * @type {boolean}
2035
- * @memberof Env
2334
+ * @type {any}
2335
+ * @memberof DeploymentInvokeActionTask
2036
2336
  */
2037
- 'auto_add_new_users': boolean;
2337
+ 'body': any;
2038
2338
  }
2039
2339
  /**
2040
2340
  *
2041
2341
  * @export
2042
- * @interface EnvUserPermission
2342
+ * @interface DeploymentPermission
2043
2343
  */
2044
- export interface EnvUserPermission {
2344
+ export interface DeploymentPermission {
2045
2345
  /**
2046
2346
  *
2047
2347
  * @type {string}
2048
- * @memberof EnvUserPermission
2348
+ * @memberof DeploymentPermission
2049
2349
  */
2050
2350
  'id': string;
2051
2351
  /**
2052
2352
  *
2053
2353
  * @type {string}
2054
- * @memberof EnvUserPermission
2354
+ * @memberof DeploymentPermission
2055
2355
  */
2056
2356
  'created_at': string;
2057
2357
  /**
2058
2358
  *
2059
2359
  * @type {string}
2060
- * @memberof EnvUserPermission
2360
+ * @memberof DeploymentPermission
2061
2361
  */
2062
2362
  'env_id': string;
2063
2363
  /**
2064
2364
  *
2065
2365
  * @type {string}
2066
- * @memberof EnvUserPermission
2366
+ * @memberof DeploymentPermission
2067
2367
  */
2068
2368
  'user_id': string;
2069
2369
  /**
2070
2370
  *
2071
- * @type {EnvUserRole}
2072
- * @memberof EnvUserPermission
2371
+ * @type {string}
2372
+ * @memberof DeploymentPermission
2073
2373
  */
2074
- 'role': EnvUserRole;
2075
- }
2076
-
2077
-
2078
- /**
2079
- *
2080
- * @export
2081
- * @enum {string}
2082
- */
2083
-
2084
- export const EnvUserRole = {
2085
- Admin: 'Admin',
2086
- User: 'User'
2087
- } as const;
2088
-
2089
- export type EnvUserRole = typeof EnvUserRole[keyof typeof EnvUserRole];
2090
-
2091
-
2092
- /**
2093
- *
2094
- * @export
2095
- * @interface FinishGoogleLoginResponse
2096
- */
2097
- export interface FinishGoogleLoginResponse {
2374
+ 'kind': string;
2098
2375
  /**
2099
2376
  *
2100
- * @type {string}
2101
- * @memberof FinishGoogleLoginResponse
2377
+ * @type {UserDeploymentRole}
2378
+ * @memberof DeploymentPermission
2102
2379
  */
2103
- 'access_token': string;
2380
+ 'role': UserDeploymentRole;
2104
2381
  }
2382
+
2383
+
2105
2384
  /**
2106
2385
  *
2107
2386
  * @export
2108
- * @interface HelmChart
2387
+ * @interface DeploymentRecreaseTask
2109
2388
  */
2110
- export interface HelmChart {
2389
+ export interface DeploymentRecreaseTask {
2111
2390
  /**
2112
2391
  *
2113
2392
  * @type {string}
2114
- * @memberof HelmChart
2393
+ * @memberof DeploymentRecreaseTask
2115
2394
  */
2116
- 'id': string;
2395
+ 'old_cluster_id': string;
2117
2396
  /**
2118
2397
  *
2119
2398
  * @type {string}
2120
- * @memberof HelmChart
2399
+ * @memberof DeploymentRecreaseTask
2121
2400
  */
2122
- 'created_at': string;
2401
+ 'old_namespace': string;
2123
2402
  /**
2124
2403
  *
2125
2404
  * @type {string}
2126
- * @memberof HelmChart
2405
+ * @memberof DeploymentRecreaseTask
2127
2406
  */
2128
- 'helm_registry_id': string;
2407
+ 'new_cluster_id': string;
2408
+ /**
2409
+ *
2410
+ * @type {string}
2411
+ * @memberof DeploymentRecreaseTask
2412
+ */
2413
+ 'new_namespace': string;
2414
+ }
2415
+ /**
2416
+ *
2417
+ * @export
2418
+ * @interface DeploymentReinstallTask
2419
+ */
2420
+ export interface DeploymentReinstallTask {
2421
+ /**
2422
+ *
2423
+ * @type {string}
2424
+ * @memberof DeploymentReinstallTask
2425
+ */
2426
+ 'reason': string;
2427
+ }
2428
+ /**
2429
+ *
2430
+ * @export
2431
+ * @interface DeploymentRepootedMetric
2432
+ */
2433
+ export interface DeploymentRepootedMetric {
2434
+ /**
2435
+ *
2436
+ * @type {string}
2437
+ * @memberof DeploymentRepootedMetric
2438
+ */
2439
+ 'value': string;
2440
+ /**
2441
+ *
2442
+ * @type {string}
2443
+ * @memberof DeploymentRepootedMetric
2444
+ */
2445
+ 'unit': string;
2446
+ /**
2447
+ *
2448
+ * @type {string}
2449
+ * @memberof DeploymentRepootedMetric
2450
+ */
2451
+ 'short_description': string;
2452
+ /**
2453
+ *
2454
+ * @type {DeploymentReportedStatusColor}
2455
+ * @memberof DeploymentRepootedMetric
2456
+ */
2457
+ 'color'?: DeploymentReportedStatusColor | null;
2458
+ }
2459
+
2460
+
2461
+ /**
2462
+ *
2463
+ * @export
2464
+ * @interface DeploymentReportedNotice
2465
+ */
2466
+ export interface DeploymentReportedNotice {
2467
+ /**
2468
+ *
2469
+ * @type {DeploymentReportedNoticeLevel}
2470
+ * @memberof DeploymentReportedNotice
2471
+ */
2472
+ 'level': DeploymentReportedNoticeLevel;
2473
+ /**
2474
+ *
2475
+ * @type {string}
2476
+ * @memberof DeploymentReportedNotice
2477
+ */
2478
+ 'text': string;
2479
+ }
2480
+
2481
+
2482
+ /**
2483
+ *
2484
+ * @export
2485
+ * @enum {string}
2486
+ */
2487
+
2488
+ export const DeploymentReportedNoticeLevel = {
2489
+ Info: 'Info',
2490
+ Warning: 'Warning',
2491
+ Danger: 'Danger'
2492
+ } as const;
2493
+
2494
+ export type DeploymentReportedNoticeLevel = typeof DeploymentReportedNoticeLevel[keyof typeof DeploymentReportedNoticeLevel];
2495
+
2496
+
2497
+ /**
2498
+ *
2499
+ * @export
2500
+ * @interface DeploymentReportedStatus
2501
+ */
2502
+ export interface DeploymentReportedStatus {
2503
+ /**
2504
+ *
2505
+ * @type {string}
2506
+ * @memberof DeploymentReportedStatus
2507
+ */
2508
+ 'timestamp': string;
2509
+ /**
2510
+ *
2511
+ * @type {boolean}
2512
+ * @memberof DeploymentReportedStatus
2513
+ */
2514
+ 'get_successful': boolean;
2515
+ /**
2516
+ *
2517
+ * @type {DeploymentReportedStatusContent}
2518
+ * @memberof DeploymentReportedStatus
2519
+ */
2520
+ 'content'?: DeploymentReportedStatusContent | null;
2521
+ /**
2522
+ *
2523
+ * @type {string}
2524
+ * @memberof DeploymentReportedStatus
2525
+ */
2526
+ 'error'?: string | null;
2527
+ }
2528
+ /**
2529
+ *
2530
+ * @export
2531
+ * @enum {string}
2532
+ */
2533
+
2534
+ export const DeploymentReportedStatusColor = {
2535
+ Primary: 'primary',
2536
+ Success: 'success',
2537
+ Danger: 'danger',
2538
+ Warning: 'warning',
2539
+ Secondary: 'secondary'
2540
+ } as const;
2541
+
2542
+ export type DeploymentReportedStatusColor = typeof DeploymentReportedStatusColor[keyof typeof DeploymentReportedStatusColor];
2543
+
2544
+
2545
+ /**
2546
+ *
2547
+ * @export
2548
+ * @interface DeploymentReportedStatusContent
2549
+ */
2550
+ export interface DeploymentReportedStatusContent {
2551
+ /**
2552
+ *
2553
+ * @type {DeploymentReportedStatusSummary}
2554
+ * @memberof DeploymentReportedStatusContent
2555
+ */
2556
+ 'status': DeploymentReportedStatusSummary;
2557
+ /**
2558
+ *
2559
+ * @type {DeploymentRepootedMetric}
2560
+ * @memberof DeploymentReportedStatusContent
2561
+ */
2562
+ 'primary_metric'?: DeploymentRepootedMetric | null;
2563
+ /**
2564
+ *
2565
+ * @type {Array<DeploymentRepootedMetric>}
2566
+ * @memberof DeploymentReportedStatusContent
2567
+ */
2568
+ 'metrics'?: Array<DeploymentRepootedMetric> | null;
2569
+ /**
2570
+ *
2571
+ * @type {Array<DeploymentReportedNotice>}
2572
+ * @memberof DeploymentReportedStatusContent
2573
+ */
2574
+ 'notices': Array<DeploymentReportedNotice>;
2575
+ }
2576
+ /**
2577
+ *
2578
+ * @export
2579
+ * @interface DeploymentReportedStatusSummary
2580
+ */
2581
+ export interface DeploymentReportedStatusSummary {
2582
+ /**
2583
+ *
2584
+ * @type {string}
2585
+ * @memberof DeploymentReportedStatusSummary
2586
+ */
2587
+ 'name': string;
2588
+ /**
2589
+ *
2590
+ * @type {DeploymentReportedStatusColor}
2591
+ * @memberof DeploymentReportedStatusSummary
2592
+ */
2593
+ 'color': DeploymentReportedStatusColor;
2594
+ }
2595
+
2596
+
2597
+ /**
2598
+ *
2599
+ * @export
2600
+ * @interface DeploymentResource
2601
+ */
2602
+ export interface DeploymentResource {
2603
+ /**
2604
+ *
2605
+ * @type {string}
2606
+ * @memberof DeploymentResource
2607
+ */
2608
+ 'id': string;
2609
+ /**
2610
+ *
2611
+ * @type {string}
2612
+ * @memberof DeploymentResource
2613
+ */
2614
+ 'created_at': string;
2615
+ /**
2616
+ *
2617
+ * @type {string}
2618
+ * @memberof DeploymentResource
2619
+ */
2620
+ 'type_id': string;
2621
+ /**
2622
+ *
2623
+ * @type {string}
2624
+ * @memberof DeploymentResource
2625
+ */
2626
+ 'deployment_id'?: string | null;
2627
+ /**
2628
+ *
2629
+ * @type {string}
2630
+ * @memberof DeploymentResource
2631
+ */
2632
+ 'name': string;
2633
+ /**
2634
+ *
2635
+ * @type {boolean}
2636
+ * @memberof DeploymentResource
2637
+ */
2638
+ 'exists': boolean;
2639
+ /**
2640
+ *
2641
+ * @type {any}
2642
+ * @memberof DeploymentResource
2643
+ */
2644
+ 'props': any;
2645
+ /**
2646
+ *
2647
+ * @type {DeploymentResourceSyncStatus}
2648
+ * @memberof DeploymentResource
2649
+ */
2650
+ 'sync_status': DeploymentResourceSyncStatus;
2651
+ /**
2652
+ *
2653
+ * @type {string}
2654
+ * @memberof DeploymentResource
2655
+ */
2656
+ 'sync_reason'?: string | null;
2657
+ }
2658
+
2659
+
2660
+ /**
2661
+ *
2662
+ * @export
2663
+ * @enum {string}
2664
+ */
2665
+
2666
+ export const DeploymentResourceSyncStatus = {
2667
+ Creating: 'Creating',
2668
+ Updating: 'Updating',
2669
+ Deleting: 'Deleting',
2670
+ Ready: 'Ready',
2671
+ Error: 'Error'
2672
+ } as const;
2673
+
2674
+ export type DeploymentResourceSyncStatus = typeof DeploymentResourceSyncStatus[keyof typeof DeploymentResourceSyncStatus];
2675
+
2676
+
2677
+ /**
2678
+ *
2679
+ * @export
2680
+ * @interface DeploymentResourceType
2681
+ */
2682
+ export interface DeploymentResourceType {
2683
+ /**
2684
+ *
2685
+ * @type {string}
2686
+ * @memberof DeploymentResourceType
2687
+ */
2688
+ 'id': string;
2689
+ /**
2690
+ *
2691
+ * @type {string}
2692
+ * @memberof DeploymentResourceType
2693
+ */
2694
+ 'created_at': string;
2695
+ /**
2696
+ *
2697
+ * @type {string}
2698
+ * @memberof DeploymentResourceType
2699
+ */
2700
+ 'env_id'?: string | null;
2701
+ /**
2702
+ *
2703
+ * @type {string}
2704
+ * @memberof DeploymentResourceType
2705
+ */
2706
+ 'deployment_kind': string;
2707
+ /**
2708
+ *
2709
+ * @type {string}
2710
+ * @memberof DeploymentResourceType
2711
+ */
2712
+ 'key': string;
2713
+ /**
2714
+ *
2715
+ * @type {ChartExtResourceTypeV1Beta1Spec}
2716
+ * @memberof DeploymentResourceType
2717
+ */
2718
+ 'spec': ChartExtResourceTypeV1Beta1Spec;
2719
+ }
2720
+ /**
2721
+ *
2722
+ * @export
2723
+ * @interface DeploymentRestartK8sResourceTask
2724
+ */
2725
+ export interface DeploymentRestartK8sResourceTask {
2726
+ /**
2727
+ *
2728
+ * @type {string}
2729
+ * @memberof DeploymentRestartK8sResourceTask
2730
+ */
2731
+ 'resource_id': string;
2732
+ /**
2733
+ *
2734
+ * @type {string}
2735
+ * @memberof DeploymentRestartK8sResourceTask
2736
+ */
2737
+ 'resource_name': string;
2738
+ }
2739
+ /**
2740
+ *
2741
+ * @export
2742
+ * @enum {string}
2743
+ */
2744
+
2745
+ export const DeploymentStatus = {
2746
+ Unknown: 'Unknown',
2747
+ Installing: 'Installing',
2748
+ Renaming: 'Renaming',
2749
+ Upgrading: 'Upgrading',
2750
+ Running: 'Running',
2751
+ Error: 'Error',
2752
+ Uninstalling: 'Uninstalling',
2753
+ Uninstalled: 'Uninstalled',
2754
+ Deleting: 'Deleting'
2755
+ } as const;
2756
+
2757
+ export type DeploymentStatus = typeof DeploymentStatus[keyof typeof DeploymentStatus];
2758
+
2759
+
2760
+ /**
2761
+ *
2762
+ * @export
2763
+ * @interface DeploymentTask
2764
+ */
2765
+ export interface DeploymentTask {
2766
+ /**
2767
+ *
2768
+ * @type {string}
2769
+ * @memberof DeploymentTask
2770
+ */
2771
+ 'id': string;
2772
+ /**
2773
+ *
2774
+ * @type {string}
2775
+ * @memberof DeploymentTask
2776
+ */
2777
+ 'created_at': string;
2778
+ /**
2779
+ *
2780
+ * @type {string}
2781
+ * @memberof DeploymentTask
2782
+ */
2783
+ 'first_attempted_at'?: string | null;
2784
+ /**
2785
+ *
2786
+ * @type {string}
2787
+ * @memberof DeploymentTask
2788
+ */
2789
+ 'started_at'?: string | null;
2790
+ /**
2791
+ *
2792
+ * @type {string}
2793
+ * @memberof DeploymentTask
2794
+ */
2795
+ 'finished_at'?: string | null;
2796
+ /**
2797
+ *
2798
+ * @type {string}
2799
+ * @memberof DeploymentTask
2800
+ */
2801
+ 'cluster_id': string;
2802
+ /**
2803
+ *
2804
+ * @type {string}
2805
+ * @memberof DeploymentTask
2806
+ */
2807
+ 'deployment_id': string;
2808
+ /**
2809
+ *
2810
+ * @type {string}
2811
+ * @memberof DeploymentTask
2812
+ */
2813
+ 'acting_user_id'?: string | null;
2814
+ /**
2815
+ *
2816
+ * @type {string}
2817
+ * @memberof DeploymentTask
2818
+ */
2819
+ 'acting_deployment_id'?: string | null;
2820
+ /**
2821
+ *
2822
+ * @type {DeploymentTaskOperation}
2823
+ * @memberof DeploymentTask
2824
+ */
2825
+ 'operation': DeploymentTaskOperation;
2826
+ /**
2827
+ *
2828
+ * @type {DeploymentTaskStatus}
2829
+ * @memberof DeploymentTask
2830
+ */
2831
+ 'status': DeploymentTaskStatus;
2832
+ /**
2833
+ *
2834
+ * @type {string}
2835
+ * @memberof DeploymentTask
2836
+ */
2837
+ 'reason'?: string | null;
2838
+ }
2839
+
2840
+
2841
+ /**
2842
+ * @type DeploymentTaskOperation
2843
+ * @export
2844
+ */
2845
+ export type DeploymentTaskOperation = DeploymentTaskOperationOneOf | DeploymentTaskOperationOneOf1 | DeploymentTaskOperationOneOf2 | DeploymentTaskOperationOneOf3 | DeploymentTaskOperationOneOf4 | DeploymentTaskOperationOneOf5 | DeploymentTaskOperationOneOf6;
2846
+
2847
+ /**
2848
+ *
2849
+ * @export
2850
+ * @interface DeploymentTaskOperationOneOf
2851
+ */
2852
+ export interface DeploymentTaskOperationOneOf {
2853
+ /**
2854
+ *
2855
+ * @type {DeploymentInstallTask}
2856
+ * @memberof DeploymentTaskOperationOneOf
2857
+ */
2858
+ 'Install': DeploymentInstallTask;
2859
+ }
2860
+ /**
2861
+ *
2862
+ * @export
2863
+ * @interface DeploymentTaskOperationOneOf1
2864
+ */
2865
+ export interface DeploymentTaskOperationOneOf1 {
2866
+ /**
2867
+ *
2868
+ * @type {DeploymentUpgradeTask}
2869
+ * @memberof DeploymentTaskOperationOneOf1
2870
+ */
2871
+ 'Upgrade': DeploymentUpgradeTask;
2872
+ }
2873
+ /**
2874
+ *
2875
+ * @export
2876
+ * @interface DeploymentTaskOperationOneOf2
2877
+ */
2878
+ export interface DeploymentTaskOperationOneOf2 {
2879
+ /**
2880
+ *
2881
+ * @type {DeploymentReinstallTask}
2882
+ * @memberof DeploymentTaskOperationOneOf2
2883
+ */
2884
+ 'Reinstall': DeploymentReinstallTask;
2885
+ }
2886
+ /**
2887
+ *
2888
+ * @export
2889
+ * @interface DeploymentTaskOperationOneOf3
2890
+ */
2891
+ export interface DeploymentTaskOperationOneOf3 {
2892
+ /**
2893
+ *
2894
+ * @type {DeploymentRecreaseTask}
2895
+ * @memberof DeploymentTaskOperationOneOf3
2896
+ */
2897
+ 'Recreate': DeploymentRecreaseTask;
2898
+ }
2899
+ /**
2900
+ *
2901
+ * @export
2902
+ * @interface DeploymentTaskOperationOneOf4
2903
+ */
2904
+ export interface DeploymentTaskOperationOneOf4 {
2905
+ /**
2906
+ *
2907
+ * @type {object}
2908
+ * @memberof DeploymentTaskOperationOneOf4
2909
+ */
2910
+ 'Uninstall': object;
2911
+ }
2912
+ /**
2913
+ *
2914
+ * @export
2915
+ * @interface DeploymentTaskOperationOneOf5
2916
+ */
2917
+ export interface DeploymentTaskOperationOneOf5 {
2918
+ /**
2919
+ *
2920
+ * @type {DeploymentInvokeActionTask}
2921
+ * @memberof DeploymentTaskOperationOneOf5
2922
+ */
2923
+ 'InvokeAction': DeploymentInvokeActionTask;
2924
+ }
2925
+ /**
2926
+ *
2927
+ * @export
2928
+ * @interface DeploymentTaskOperationOneOf6
2929
+ */
2930
+ export interface DeploymentTaskOperationOneOf6 {
2931
+ /**
2932
+ *
2933
+ * @type {DeploymentRestartK8sResourceTask}
2934
+ * @memberof DeploymentTaskOperationOneOf6
2935
+ */
2936
+ 'RestartK8sResource': DeploymentRestartK8sResourceTask;
2937
+ }
2938
+ /**
2939
+ *
2940
+ * @export
2941
+ * @enum {string}
2942
+ */
2943
+
2944
+ export const DeploymentTaskStatus = {
2945
+ Pending: 'Pending',
2946
+ Started: 'Started',
2947
+ Failed: 'Failed',
2948
+ Done: 'Done'
2949
+ } as const;
2950
+
2951
+ export type DeploymentTaskStatus = typeof DeploymentTaskStatus[keyof typeof DeploymentTaskStatus];
2952
+
2953
+
2954
+ /**
2955
+ *
2956
+ * @export
2957
+ * @interface DeploymentUpgradeTask
2958
+ */
2959
+ export interface DeploymentUpgradeTask {
2960
+ /**
2961
+ *
2962
+ * @type {string}
2963
+ * @memberof DeploymentUpgradeTask
2964
+ */
2965
+ 'helm_chart_id': string;
2966
+ /**
2967
+ *
2968
+ * @type {string}
2969
+ * @memberof DeploymentUpgradeTask
2970
+ */
2971
+ 'prev_helm_chart_id'?: string | null;
2972
+ /**
2973
+ *
2974
+ * @type {any}
2975
+ * @memberof DeploymentUpgradeTask
2976
+ */
2977
+ 'config_inputs': any;
2978
+ /**
2979
+ *
2980
+ * @type {object}
2981
+ * @memberof DeploymentUpgradeTask
2982
+ */
2983
+ 'config_delta': object;
2984
+ /**
2985
+ *
2986
+ * @type {any}
2987
+ * @memberof DeploymentUpgradeTask
2988
+ */
2989
+ 'values_override'?: any | null;
2990
+ }
2991
+ /**
2992
+ *
2993
+ * @export
2994
+ * @interface Env
2995
+ */
2996
+ export interface Env {
2997
+ /**
2998
+ *
2999
+ * @type {string}
3000
+ * @memberof Env
3001
+ */
3002
+ 'id': string;
3003
+ /**
3004
+ *
3005
+ * @type {string}
3006
+ * @memberof Env
3007
+ */
3008
+ 'created_at': string;
3009
+ /**
3010
+ *
3011
+ * @type {string}
3012
+ * @memberof Env
3013
+ */
3014
+ 'name': string;
3015
+ /**
3016
+ *
3017
+ * @type {any}
3018
+ * @memberof Env
3019
+ */
3020
+ 'node_selector': any;
3021
+ /**
3022
+ *
3023
+ * @type {any}
3024
+ * @memberof Env
3025
+ */
3026
+ 'tolerations': any;
3027
+ /**
3028
+ *
3029
+ * @type {boolean}
3030
+ * @memberof Env
3031
+ */
3032
+ 'auto_add_new_users': boolean;
3033
+ }
3034
+ /**
3035
+ *
3036
+ * @export
3037
+ * @interface EnvUserPermission
3038
+ */
3039
+ export interface EnvUserPermission {
3040
+ /**
3041
+ *
3042
+ * @type {string}
3043
+ * @memberof EnvUserPermission
3044
+ */
3045
+ 'id': string;
3046
+ /**
3047
+ *
3048
+ * @type {string}
3049
+ * @memberof EnvUserPermission
3050
+ */
3051
+ 'created_at': string;
3052
+ /**
3053
+ *
3054
+ * @type {string}
3055
+ * @memberof EnvUserPermission
3056
+ */
3057
+ 'env_id': string;
3058
+ /**
3059
+ *
3060
+ * @type {string}
3061
+ * @memberof EnvUserPermission
3062
+ */
3063
+ 'user_id': string;
3064
+ /**
3065
+ *
3066
+ * @type {EnvUserRole}
3067
+ * @memberof EnvUserPermission
3068
+ */
3069
+ 'role': EnvUserRole;
3070
+ }
3071
+
3072
+
3073
+ /**
3074
+ *
3075
+ * @export
3076
+ * @enum {string}
3077
+ */
3078
+
3079
+ export const EnvUserRole = {
3080
+ Admin: 'Admin',
3081
+ User: 'User'
3082
+ } as const;
3083
+
3084
+ export type EnvUserRole = typeof EnvUserRole[keyof typeof EnvUserRole];
3085
+
3086
+
3087
+ /**
3088
+ *
3089
+ * @export
3090
+ * @interface FinishGoogleLoginResponse
3091
+ */
3092
+ export interface FinishGoogleLoginResponse {
3093
+ /**
3094
+ *
3095
+ * @type {string}
3096
+ * @memberof FinishGoogleLoginResponse
3097
+ */
3098
+ 'access_token': string;
3099
+ }
3100
+ /**
3101
+ *
3102
+ * @export
3103
+ * @interface HelmChart
3104
+ */
3105
+ export interface HelmChart {
3106
+ /**
3107
+ *
3108
+ * @type {string}
3109
+ * @memberof HelmChart
3110
+ */
3111
+ 'id': string;
3112
+ /**
3113
+ *
3114
+ * @type {string}
3115
+ * @memberof HelmChart
3116
+ */
3117
+ 'created_at': string;
3118
+ /**
3119
+ *
3120
+ * @type {string}
3121
+ * @memberof HelmChart
3122
+ */
3123
+ 'helm_registry_id': string;
3124
+ /**
3125
+ *
3126
+ * @type {string}
3127
+ * @memberof HelmChart
3128
+ */
3129
+ 'image_digest': string;
3130
+ /**
3131
+ *
3132
+ * @type {string}
3133
+ * @memberof HelmChart
3134
+ */
3135
+ 'image_tag': string;
3136
+ /**
3137
+ *
3138
+ * @type {boolean}
3139
+ * @memberof HelmChart
3140
+ */
3141
+ 'available': boolean;
3142
+ /**
3143
+ *
3144
+ * @type {UiSchema}
3145
+ * @memberof HelmChart
3146
+ */
3147
+ 'values_ui'?: UiSchema | null;
3148
+ /**
3149
+ *
3150
+ * @type {ChartExtActions}
3151
+ * @memberof HelmChart
3152
+ */
3153
+ 'actions_schema'?: ChartExtActions | null;
3154
+ /**
3155
+ *
3156
+ * @type {ChartExtFeatures}
3157
+ * @memberof HelmChart
3158
+ */
3159
+ 'features'?: ChartExtFeatures | null;
3160
+ /**
3161
+ *
3162
+ * @type {Array<ChartExtResourceType>}
3163
+ * @memberof HelmChart
3164
+ */
3165
+ 'resource_types'?: Array<ChartExtResourceType> | null;
3166
+ /**
3167
+ *
3168
+ * @type {string}
3169
+ * @memberof HelmChart
3170
+ */
3171
+ 'error'?: string | null;
3172
+ /**
3173
+ *
3174
+ * @type {string}
3175
+ * @memberof HelmChart
3176
+ */
3177
+ 'tag_format_id'?: string | null;
3178
+ /**
3179
+ *
3180
+ * @type {string}
3181
+ * @memberof HelmChart
3182
+ */
3183
+ 'parsed_version'?: string | null;
3184
+ /**
3185
+ *
3186
+ * @type {string}
3187
+ * @memberof HelmChart
3188
+ */
3189
+ 'parsed_revision'?: string | null;
2129
3190
  /**
2130
3191
  *
2131
3192
  * @type {string}
2132
3193
  * @memberof HelmChart
2133
3194
  */
2134
- 'image_digest': string;
3195
+ 'parsed_branch'?: string | null;
3196
+ /**
3197
+ *
3198
+ * @type {string}
3199
+ * @memberof HelmChart
3200
+ */
3201
+ 'parsed_commit'?: string | null;
3202
+ }
3203
+ /**
3204
+ *
3205
+ * @export
3206
+ * @interface HelmRegistry
3207
+ */
3208
+ export interface HelmRegistry {
3209
+ /**
3210
+ *
3211
+ * @type {string}
3212
+ * @memberof HelmRegistry
3213
+ */
3214
+ 'id': string;
3215
+ /**
3216
+ *
3217
+ * @type {string}
3218
+ * @memberof HelmRegistry
3219
+ */
3220
+ 'created_at': string;
3221
+ /**
3222
+ *
3223
+ * @type {string}
3224
+ * @memberof HelmRegistry
3225
+ */
3226
+ 'domain_name': string;
3227
+ /**
3228
+ *
3229
+ * @type {string}
3230
+ * @memberof HelmRegistry
3231
+ */
3232
+ 'repo_name': string;
3233
+ /**
3234
+ *
3235
+ * @type {string}
3236
+ * @memberof HelmRegistry
3237
+ */
3238
+ 'kind': string;
3239
+ /**
3240
+ *
3241
+ * @type {boolean}
3242
+ * @memberof HelmRegistry
3243
+ */
3244
+ 'available': boolean;
3245
+ /**
3246
+ *
3247
+ * @type {string}
3248
+ * @memberof HelmRegistry
3249
+ */
3250
+ 'fa_icon': string;
3251
+ }
3252
+ /**
3253
+ *
3254
+ * @export
3255
+ * @interface HelmTagFormat
3256
+ */
3257
+ export interface HelmTagFormat {
3258
+ /**
3259
+ *
3260
+ * @type {string}
3261
+ * @memberof HelmTagFormat
3262
+ */
3263
+ 'id': string;
3264
+ /**
3265
+ *
3266
+ * @type {string}
3267
+ * @memberof HelmTagFormat
3268
+ */
3269
+ 'created_at': string;
3270
+ /**
3271
+ *
3272
+ * @type {string}
3273
+ * @memberof HelmTagFormat
3274
+ */
3275
+ 'pattern': string;
3276
+ }
3277
+ /**
3278
+ *
3279
+ * @export
3280
+ * @interface K8sCluster
3281
+ */
3282
+ export interface K8sCluster {
2135
3283
  /**
2136
3284
  *
2137
3285
  * @type {string}
2138
- * @memberof HelmChart
3286
+ * @memberof K8sCluster
2139
3287
  */
2140
- 'image_tag': string;
3288
+ 'id': string;
3289
+ /**
3290
+ *
3291
+ * @type {string}
3292
+ * @memberof K8sCluster
3293
+ */
3294
+ 'env_id'?: string | null;
3295
+ /**
3296
+ *
3297
+ * @type {string}
3298
+ * @memberof K8sCluster
3299
+ */
3300
+ 'provider_id': string;
3301
+ /**
3302
+ *
3303
+ * @type {string}
3304
+ * @memberof K8sCluster
3305
+ */
3306
+ 'created_at': string;
3307
+ /**
3308
+ *
3309
+ * @type {string}
3310
+ * @memberof K8sCluster
3311
+ */
3312
+ 'last_seen_at': string;
3313
+ /**
3314
+ *
3315
+ * @type {string}
3316
+ * @memberof K8sCluster
3317
+ */
3318
+ 'name': string;
3319
+ /**
3320
+ *
3321
+ * @type {string}
3322
+ * @memberof K8sCluster
3323
+ */
3324
+ 'region_name': string;
3325
+ /**
3326
+ *
3327
+ * @type {boolean}
3328
+ * @memberof K8sCluster
3329
+ */
3330
+ 'is_ok': boolean;
3331
+ /**
3332
+ *
3333
+ * @type {string}
3334
+ * @memberof K8sCluster
3335
+ */
3336
+ 'not_ok_reason'?: string | null;
3337
+ /**
3338
+ *
3339
+ * @type {boolean}
3340
+ * @memberof K8sCluster
3341
+ */
3342
+ 'ignore': boolean;
3343
+ /**
3344
+ *
3345
+ * @type {string}
3346
+ * @memberof K8sCluster
3347
+ */
3348
+ 'ingress_domain'?: string | null;
3349
+ /**
3350
+ *
3351
+ * @type {string}
3352
+ * @memberof K8sCluster
3353
+ */
3354
+ 'ingress_class'?: string | null;
3355
+ /**
3356
+ *
3357
+ * @type {string}
3358
+ * @memberof K8sCluster
3359
+ */
3360
+ 'ingress_tls_secret_name'?: string | null;
3361
+ /**
3362
+ *
3363
+ * @type {string}
3364
+ * @memberof K8sCluster
3365
+ */
3366
+ 'grafana_url'?: string | null;
3367
+ /**
3368
+ *
3369
+ * @type {string}
3370
+ * @memberof K8sCluster
3371
+ */
3372
+ 'grafana_datasource_name'?: string | null;
3373
+ }
3374
+ /**
3375
+ *
3376
+ * @export
3377
+ * @interface K8sResource
3378
+ */
3379
+ export interface K8sResource {
3380
+ /**
3381
+ *
3382
+ * @type {string}
3383
+ * @memberof K8sResource
3384
+ */
3385
+ 'id': string;
3386
+ /**
3387
+ *
3388
+ * @type {string}
3389
+ * @memberof K8sResource
3390
+ */
3391
+ 'last_updated_at': string;
3392
+ /**
3393
+ *
3394
+ * @type {string}
3395
+ * @memberof K8sResource
3396
+ */
3397
+ 'cluster_id': string;
3398
+ /**
3399
+ *
3400
+ * @type {string}
3401
+ * @memberof K8sResource
3402
+ */
3403
+ 'deployment_id': string;
3404
+ /**
3405
+ *
3406
+ * @type {string}
3407
+ * @memberof K8sResource
3408
+ */
3409
+ 'kind': string;
3410
+ /**
3411
+ *
3412
+ * @type {string}
3413
+ * @memberof K8sResource
3414
+ */
3415
+ 'api_version': string;
3416
+ /**
3417
+ *
3418
+ * @type {string}
3419
+ * @memberof K8sResource
3420
+ */
3421
+ 'name': string;
3422
+ /**
3423
+ *
3424
+ * @type {Array<string>}
3425
+ * @memberof K8sResource
3426
+ */
3427
+ 'status_color': Array<string>;
3428
+ /**
3429
+ *
3430
+ * @type {any}
3431
+ * @memberof K8sResource
3432
+ */
3433
+ 'metadata': any;
3434
+ }
3435
+ /**
3436
+ * @type MeResponse
3437
+ * @export
3438
+ */
3439
+ export type MeResponse = MeResponseOneOf | MeResponseOneOf1;
3440
+
3441
+ /**
3442
+ *
3443
+ * @export
3444
+ * @interface MeResponseOneOf
3445
+ */
3446
+ export interface MeResponseOneOf {
3447
+ /**
3448
+ *
3449
+ * @type {User}
3450
+ * @memberof MeResponseOneOf
3451
+ */
3452
+ 'User': User;
3453
+ }
3454
+ /**
3455
+ *
3456
+ * @export
3457
+ * @interface MeResponseOneOf1
3458
+ */
3459
+ export interface MeResponseOneOf1 {
3460
+ /**
3461
+ *
3462
+ * @type {MeResponseOneOf1Deployment}
3463
+ * @memberof MeResponseOneOf1
3464
+ */
3465
+ 'Deployment': MeResponseOneOf1Deployment;
3466
+ }
3467
+ /**
3468
+ *
3469
+ * @export
3470
+ * @interface MeResponseOneOf1Deployment
3471
+ */
3472
+ export interface MeResponseOneOf1Deployment {
3473
+ /**
3474
+ *
3475
+ * @type {string}
3476
+ * @memberof MeResponseOneOf1Deployment
3477
+ */
3478
+ 'id': string;
3479
+ /**
3480
+ *
3481
+ * @type {string}
3482
+ * @memberof MeResponseOneOf1Deployment
3483
+ */
3484
+ 'name': string;
3485
+ }
3486
+ /**
3487
+ *
3488
+ * @export
3489
+ * @interface NewDeployment
3490
+ */
3491
+ export interface NewDeployment {
3492
+ /**
3493
+ *
3494
+ * @type {string}
3495
+ * @memberof NewDeployment
3496
+ */
3497
+ 'name'?: string;
3498
+ /**
3499
+ *
3500
+ * @type {string}
3501
+ * @memberof NewDeployment
3502
+ */
3503
+ 'kind': string;
3504
+ /**
3505
+ *
3506
+ * @type {string}
3507
+ * @memberof NewDeployment
3508
+ */
3509
+ 'cluster_id': string;
3510
+ /**
3511
+ *
3512
+ * @type {string}
3513
+ * @memberof NewDeployment
3514
+ */
3515
+ 'helm_chart_id': string;
3516
+ /**
3517
+ *
3518
+ * @type {any}
3519
+ * @memberof NewDeployment
3520
+ */
3521
+ 'config'?: any | null;
3522
+ /**
3523
+ *
3524
+ * @type {any}
3525
+ * @memberof NewDeployment
3526
+ */
3527
+ 'values_override'?: any | null;
3528
+ }
3529
+ /**
3530
+ *
3531
+ * @export
3532
+ * @interface NewDeploymentPermission
3533
+ */
3534
+ export interface NewDeploymentPermission {
2141
3535
  /**
2142
3536
  *
2143
- * @type {boolean}
2144
- * @memberof HelmChart
3537
+ * @type {string}
3538
+ * @memberof NewDeploymentPermission
2145
3539
  */
2146
- 'available': boolean;
3540
+ 'env_id': string;
2147
3541
  /**
2148
3542
  *
2149
- * @type {any}
2150
- * @memberof HelmChart
3543
+ * @type {string}
3544
+ * @memberof NewDeploymentPermission
2151
3545
  */
2152
- 'values_ui'?: any | null;
3546
+ 'user_id': string;
2153
3547
  /**
2154
3548
  *
2155
- * @type {any}
2156
- * @memberof HelmChart
3549
+ * @type {string}
3550
+ * @memberof NewDeploymentPermission
2157
3551
  */
2158
- 'actions_schema'?: any | null;
3552
+ 'kind': string;
2159
3553
  /**
2160
3554
  *
2161
- * @type {any}
2162
- * @memberof HelmChart
3555
+ * @type {UserDeploymentRole}
3556
+ * @memberof NewDeploymentPermission
2163
3557
  */
2164
- 'features'?: any | null;
3558
+ 'role': UserDeploymentRole;
3559
+ }
3560
+
3561
+
3562
+ /**
3563
+ *
3564
+ * @export
3565
+ * @interface NewDeploymentResource
3566
+ */
3567
+ export interface NewDeploymentResource {
2165
3568
  /**
2166
3569
  *
2167
- * @type {any}
2168
- * @memberof HelmChart
3570
+ * @type {string}
3571
+ * @memberof NewDeploymentResource
2169
3572
  */
2170
- 'resource_types'?: any | null;
3573
+ 'id'?: string | null;
2171
3574
  /**
2172
3575
  *
2173
3576
  * @type {string}
2174
- * @memberof HelmChart
3577
+ * @memberof NewDeploymentResource
2175
3578
  */
2176
- 'error'?: string | null;
3579
+ 'created_at'?: string | null;
2177
3580
  /**
2178
3581
  *
2179
3582
  * @type {string}
2180
- * @memberof HelmChart
3583
+ * @memberof NewDeploymentResource
2181
3584
  */
2182
- 'tag_format_id'?: string | null;
3585
+ 'type_id': string;
2183
3586
  /**
2184
3587
  *
2185
3588
  * @type {string}
2186
- * @memberof HelmChart
3589
+ * @memberof NewDeploymentResource
2187
3590
  */
2188
- 'parsed_version'?: string | null;
3591
+ 'deployment_id': string;
2189
3592
  /**
2190
3593
  *
2191
3594
  * @type {string}
2192
- * @memberof HelmChart
3595
+ * @memberof NewDeploymentResource
2193
3596
  */
2194
- 'parsed_revision'?: string | null;
3597
+ 'name': string;
2195
3598
  /**
2196
3599
  *
2197
- * @type {string}
2198
- * @memberof HelmChart
3600
+ * @type {any}
3601
+ * @memberof NewDeploymentResource
2199
3602
  */
2200
- 'parsed_branch'?: string | null;
3603
+ 'props': any;
2201
3604
  /**
2202
3605
  *
2203
- * @type {string}
2204
- * @memberof HelmChart
3606
+ * @type {DeploymentResourceSyncStatus}
3607
+ * @memberof NewDeploymentResource
2205
3608
  */
2206
- 'parsed_commit'?: string | null;
3609
+ 'sync_status'?: DeploymentResourceSyncStatus | null;
2207
3610
  }
3611
+
3612
+
2208
3613
  /**
2209
3614
  *
2210
3615
  * @export
2211
- * @interface HelmRegistry
3616
+ * @interface NewEnv
2212
3617
  */
2213
- export interface HelmRegistry {
2214
- /**
2215
- *
2216
- * @type {string}
2217
- * @memberof HelmRegistry
2218
- */
2219
- 'id': string;
3618
+ export interface NewEnv {
2220
3619
  /**
2221
3620
  *
2222
3621
  * @type {string}
2223
- * @memberof HelmRegistry
3622
+ * @memberof NewEnv
2224
3623
  */
2225
- 'created_at': string;
3624
+ 'name': string;
2226
3625
  /**
2227
3626
  *
2228
- * @type {string}
2229
- * @memberof HelmRegistry
3627
+ * @type {boolean}
3628
+ * @memberof NewEnv
2230
3629
  */
2231
- 'domain_name': string;
3630
+ 'auto_add_new_users'?: boolean | null;
3631
+ }
3632
+ /**
3633
+ *
3634
+ * @export
3635
+ * @interface NewEnvUserPermission
3636
+ */
3637
+ export interface NewEnvUserPermission {
2232
3638
  /**
2233
3639
  *
2234
3640
  * @type {string}
2235
- * @memberof HelmRegistry
3641
+ * @memberof NewEnvUserPermission
2236
3642
  */
2237
- 'repo_name': string;
3643
+ 'env_id': string;
2238
3644
  /**
2239
3645
  *
2240
3646
  * @type {string}
2241
- * @memberof HelmRegistry
3647
+ * @memberof NewEnvUserPermission
2242
3648
  */
2243
- 'kind': string;
3649
+ 'user_id': string;
2244
3650
  /**
2245
3651
  *
2246
- * @type {boolean}
2247
- * @memberof HelmRegistry
3652
+ * @type {EnvUserRole}
3653
+ * @memberof NewEnvUserPermission
2248
3654
  */
2249
- 'available': boolean;
3655
+ 'role': EnvUserRole;
3656
+ }
3657
+
3658
+
3659
+ /**
3660
+ *
3661
+ * @export
3662
+ * @interface NewHelmTagFormat
3663
+ */
3664
+ export interface NewHelmTagFormat {
2250
3665
  /**
2251
3666
  *
2252
3667
  * @type {string}
2253
- * @memberof HelmRegistry
3668
+ * @memberof NewHelmTagFormat
2254
3669
  */
2255
- 'fa_icon': string;
3670
+ 'pattern': string;
2256
3671
  }
2257
3672
  /**
2258
3673
  *
2259
3674
  * @export
2260
- * @interface HelmTagFormat
3675
+ * @interface NewSecret
2261
3676
  */
2262
- export interface HelmTagFormat {
3677
+ export interface NewSecret {
2263
3678
  /**
2264
3679
  *
2265
3680
  * @type {string}
2266
- * @memberof HelmTagFormat
3681
+ * @memberof NewSecret
2267
3682
  */
2268
- 'id': string;
3683
+ 'env_id': string;
2269
3684
  /**
2270
3685
  *
2271
3686
  * @type {string}
2272
- * @memberof HelmTagFormat
3687
+ * @memberof NewSecret
2273
3688
  */
2274
- 'created_at': string;
3689
+ 'collection': string;
2275
3690
  /**
2276
3691
  *
2277
3692
  * @type {string}
2278
- * @memberof HelmTagFormat
3693
+ * @memberof NewSecret
2279
3694
  */
2280
- 'pattern': string;
3695
+ 'name': string;
3696
+ /**
3697
+ *
3698
+ * @type {string}
3699
+ * @memberof NewSecret
3700
+ */
3701
+ 'contents': string;
2281
3702
  }
2282
3703
  /**
2283
3704
  *
2284
3705
  * @export
2285
- * @interface K8sCluster
3706
+ * @interface OAuth2Response
2286
3707
  */
2287
- export interface K8sCluster {
2288
- /**
2289
- *
2290
- * @type {string}
2291
- * @memberof K8sCluster
2292
- */
2293
- 'id': string;
3708
+ export interface OAuth2Response {
2294
3709
  /**
2295
3710
  *
2296
3711
  * @type {string}
2297
- * @memberof K8sCluster
3712
+ * @memberof OAuth2Response
2298
3713
  */
2299
- 'env_id'?: string | null;
3714
+ 'auth_code': string;
3715
+ }
3716
+ /**
3717
+ *
3718
+ * @export
3719
+ * @interface Secret
3720
+ */
3721
+ export interface Secret {
2300
3722
  /**
2301
3723
  *
2302
3724
  * @type {string}
2303
- * @memberof K8sCluster
3725
+ * @memberof Secret
2304
3726
  */
2305
- 'provider_id': string;
3727
+ 'id': string;
2306
3728
  /**
2307
3729
  *
2308
3730
  * @type {string}
2309
- * @memberof K8sCluster
3731
+ * @memberof Secret
2310
3732
  */
2311
3733
  'created_at': string;
2312
3734
  /**
2313
3735
  *
2314
3736
  * @type {string}
2315
- * @memberof K8sCluster
3737
+ * @memberof Secret
2316
3738
  */
2317
- 'last_seen_at': string;
3739
+ 'updated_at': string;
2318
3740
  /**
2319
3741
  *
2320
3742
  * @type {string}
2321
- * @memberof K8sCluster
3743
+ * @memberof Secret
2322
3744
  */
2323
- 'name': string;
3745
+ 'env_id': string;
2324
3746
  /**
2325
3747
  *
2326
3748
  * @type {string}
2327
- * @memberof K8sCluster
3749
+ * @memberof Secret
2328
3750
  */
2329
- 'region_name': string;
3751
+ 'collection': string;
2330
3752
  /**
2331
3753
  *
2332
- * @type {boolean}
2333
- * @memberof K8sCluster
3754
+ * @type {string}
3755
+ * @memberof Secret
2334
3756
  */
2335
- 'is_ok': boolean;
3757
+ 'name': string;
3758
+ }
3759
+ /**
3760
+ *
3761
+ * @export
3762
+ * @interface SerializedUiSchemaInputType
3763
+ */
3764
+ export interface SerializedUiSchemaInputType {
2336
3765
  /**
2337
3766
  *
2338
3767
  * @type {string}
2339
- * @memberof K8sCluster
3768
+ * @memberof SerializedUiSchemaInputType
2340
3769
  */
2341
- 'not_ok_reason'?: string | null;
3770
+ 'type': string;
2342
3771
  /**
2343
3772
  *
2344
- * @type {boolean}
2345
- * @memberof K8sCluster
3773
+ * @type {string}
3774
+ * @memberof SerializedUiSchemaInputType
2346
3775
  */
2347
- 'ignore': boolean;
3776
+ 'itemType'?: string | null;
2348
3777
  /**
2349
3778
  *
2350
- * @type {string}
2351
- * @memberof K8sCluster
3779
+ * @type {any}
3780
+ * @memberof SerializedUiSchemaInputType
2352
3781
  */
2353
- 'ingress_domain'?: string | null;
3782
+ 'collection'?: any | null;
3783
+ }
3784
+ /**
3785
+ *
3786
+ * @export
3787
+ * @interface ServerInfo
3788
+ */
3789
+ export interface ServerInfo {
2354
3790
  /**
2355
3791
  *
2356
3792
  * @type {string}
2357
- * @memberof K8sCluster
3793
+ * @memberof ServerInfo
2358
3794
  */
2359
- 'ingress_class'?: string | null;
3795
+ 'version': string;
3796
+ }
3797
+ /**
3798
+ *
3799
+ * @export
3800
+ * @interface StartGoogleLoginResponse
3801
+ */
3802
+ export interface StartGoogleLoginResponse {
2360
3803
  /**
2361
3804
  *
2362
3805
  * @type {string}
2363
- * @memberof K8sCluster
3806
+ * @memberof StartGoogleLoginResponse
2364
3807
  */
2365
- 'ingress_tls_secret_name'?: string | null;
3808
+ 'redirect_url': string;
3809
+ }
3810
+ /**
3811
+ * @type UiSchema
3812
+ * @export
3813
+ */
3814
+ export type UiSchema = UiSchemaV0 | UiSchemaV1Beta1;
3815
+
3816
+ /**
3817
+ *
3818
+ * @export
3819
+ * @interface UiSchemaFieldValuePair
3820
+ */
3821
+ export interface UiSchemaFieldValuePair {
2366
3822
  /**
2367
3823
  *
2368
3824
  * @type {string}
2369
- * @memberof K8sCluster
3825
+ * @memberof UiSchemaFieldValuePair
2370
3826
  */
2371
- 'grafana_url'?: string | null;
3827
+ 'field': string;
2372
3828
  /**
2373
3829
  *
2374
- * @type {string}
2375
- * @memberof K8sCluster
3830
+ * @type {any}
3831
+ * @memberof UiSchemaFieldValuePair
2376
3832
  */
2377
- 'grafana_datasource_name'?: string | null;
3833
+ 'value': any;
2378
3834
  }
2379
3835
  /**
2380
3836
  *
2381
3837
  * @export
2382
- * @interface K8sResource
3838
+ * @interface UiSchemaInput
2383
3839
  */
2384
- export interface K8sResource {
3840
+ export interface UiSchemaInput {
3841
+ /**
3842
+ *
3843
+ * @type {UiSchemaInputSingleType}
3844
+ * @memberof UiSchemaInput
3845
+ */
3846
+ 'single_type': UiSchemaInputSingleType;
3847
+ /**
3848
+ *
3849
+ * @type {boolean}
3850
+ * @memberof UiSchemaInput
3851
+ */
3852
+ 'is_array': boolean;
2385
3853
  /**
2386
3854
  *
2387
3855
  * @type {string}
2388
- * @memberof K8sResource
3856
+ * @memberof UiSchemaInput
2389
3857
  */
2390
3858
  'id': string;
2391
3859
  /**
2392
3860
  *
2393
3861
  * @type {string}
2394
- * @memberof K8sResource
3862
+ * @memberof UiSchemaInput
3863
+ */
3864
+ 'label': string;
3865
+ /**
3866
+ *
3867
+ * @type {any}
3868
+ * @memberof UiSchemaInput
2395
3869
  */
2396
- 'last_updated_at': string;
3870
+ 'initialValue'?: any | null;
2397
3871
  /**
2398
3872
  *
2399
3873
  * @type {string}
2400
- * @memberof K8sResource
3874
+ * @memberof UiSchemaInput
2401
3875
  */
2402
- 'cluster_id': string;
3876
+ 'helpText'?: string | null;
2403
3877
  /**
2404
3878
  *
2405
- * @type {string}
2406
- * @memberof K8sResource
3879
+ * @type {boolean}
3880
+ * @memberof UiSchemaInput
2407
3881
  */
2408
- 'deployment_id': string;
3882
+ 'required'?: boolean;
2409
3883
  /**
2410
3884
  *
2411
- * @type {string}
2412
- * @memberof K8sResource
3885
+ * @type {boolean}
3886
+ * @memberof UiSchemaInput
2413
3887
  */
2414
- 'kind': string;
3888
+ 'sensitive'?: boolean;
2415
3889
  /**
2416
3890
  *
2417
- * @type {string}
2418
- * @memberof K8sResource
3891
+ * @type {Array<UiSchemaInputFieldOption>}
3892
+ * @memberof UiSchemaInput
2419
3893
  */
2420
- 'api_version': string;
3894
+ 'options'?: Array<UiSchemaInputFieldOption> | null;
2421
3895
  /**
2422
3896
  *
2423
- * @type {string}
2424
- * @memberof K8sResource
3897
+ * @type {Array<UiSchemaFieldValuePair>}
3898
+ * @memberof UiSchemaInput
2425
3899
  */
2426
- 'name': string;
3900
+ 'showIfAll'?: Array<UiSchemaFieldValuePair> | null;
2427
3901
  /**
2428
3902
  *
2429
- * @type {Array<string>}
2430
- * @memberof K8sResource
3903
+ * @type {Array<UiSchemaInputFieldValue>}
3904
+ * @memberof UiSchemaInput
2431
3905
  */
2432
- 'status_color': Array<string>;
3906
+ 'filters'?: Array<UiSchemaInputFieldValue> | null;
2433
3907
  /**
2434
3908
  *
2435
- * @type {any}
2436
- * @memberof K8sResource
3909
+ * @type {string}
3910
+ * @memberof UiSchemaInput
2437
3911
  */
2438
- 'metadata': any;
2439
- }
2440
- /**
2441
- * @type MeResponse
2442
- * @export
2443
- */
2444
- export type MeResponse = MeResponseOneOf | MeResponseOneOf1;
2445
-
2446
- /**
2447
- *
2448
- * @export
2449
- * @interface MeResponseOneOf
2450
- */
2451
- export interface MeResponseOneOf {
3912
+ 'minimum'?: string | null;
2452
3913
  /**
2453
3914
  *
2454
- * @type {User}
2455
- * @memberof MeResponseOneOf
3915
+ * @type {string}
3916
+ * @memberof UiSchemaInput
2456
3917
  */
2457
- 'User': User;
2458
- }
2459
- /**
2460
- *
2461
- * @export
2462
- * @interface MeResponseOneOf1
2463
- */
2464
- export interface MeResponseOneOf1 {
3918
+ 'maximum'?: string | null;
2465
3919
  /**
2466
3920
  *
2467
- * @type {MeResponseOneOf1Deployment}
2468
- * @memberof MeResponseOneOf1
3921
+ * @type {string}
3922
+ * @memberof UiSchemaInput
2469
3923
  */
2470
- 'Deployment': MeResponseOneOf1Deployment;
3924
+ 'step'?: string | null;
2471
3925
  }
2472
3926
  /**
2473
3927
  *
2474
3928
  * @export
2475
- * @interface MeResponseOneOf1Deployment
3929
+ * @interface UiSchemaInputAllOf
2476
3930
  */
2477
- export interface MeResponseOneOf1Deployment {
3931
+ export interface UiSchemaInputAllOf {
2478
3932
  /**
2479
3933
  *
2480
3934
  * @type {string}
2481
- * @memberof MeResponseOneOf1Deployment
3935
+ * @memberof UiSchemaInputAllOf
2482
3936
  */
2483
3937
  'id': string;
2484
3938
  /**
2485
3939
  *
2486
3940
  * @type {string}
2487
- * @memberof MeResponseOneOf1Deployment
3941
+ * @memberof UiSchemaInputAllOf
2488
3942
  */
2489
- 'name': string;
2490
- }
2491
- /**
2492
- *
2493
- * @export
2494
- * @interface NewDeployment
2495
- */
2496
- export interface NewDeployment {
3943
+ 'label': string;
2497
3944
  /**
2498
3945
  *
2499
- * @type {string}
2500
- * @memberof NewDeployment
3946
+ * @type {any}
3947
+ * @memberof UiSchemaInputAllOf
2501
3948
  */
2502
- 'name'?: string;
3949
+ 'initialValue'?: any | null;
2503
3950
  /**
2504
3951
  *
2505
3952
  * @type {string}
2506
- * @memberof NewDeployment
3953
+ * @memberof UiSchemaInputAllOf
2507
3954
  */
2508
- 'kind': string;
3955
+ 'helpText'?: string | null;
2509
3956
  /**
2510
3957
  *
2511
- * @type {string}
2512
- * @memberof NewDeployment
3958
+ * @type {boolean}
3959
+ * @memberof UiSchemaInputAllOf
2513
3960
  */
2514
- 'cluster_id': string;
3961
+ 'required'?: boolean;
2515
3962
  /**
2516
3963
  *
2517
- * @type {string}
2518
- * @memberof NewDeployment
3964
+ * @type {boolean}
3965
+ * @memberof UiSchemaInputAllOf
2519
3966
  */
2520
- 'helm_chart_id': string;
3967
+ 'sensitive'?: boolean;
2521
3968
  /**
2522
3969
  *
2523
- * @type {any}
2524
- * @memberof NewDeployment
3970
+ * @type {Array<UiSchemaInputFieldOption>}
3971
+ * @memberof UiSchemaInputAllOf
2525
3972
  */
2526
- 'config'?: any | null;
3973
+ 'options'?: Array<UiSchemaInputFieldOption> | null;
2527
3974
  /**
2528
3975
  *
2529
- * @type {any}
2530
- * @memberof NewDeployment
3976
+ * @type {Array<UiSchemaFieldValuePair>}
3977
+ * @memberof UiSchemaInputAllOf
2531
3978
  */
2532
- 'values_override'?: any | null;
2533
- }
2534
- /**
2535
- *
2536
- * @export
2537
- * @interface NewDeploymentPermission
2538
- */
2539
- export interface NewDeploymentPermission {
3979
+ 'showIfAll'?: Array<UiSchemaFieldValuePair> | null;
2540
3980
  /**
2541
3981
  *
2542
- * @type {string}
2543
- * @memberof NewDeploymentPermission
3982
+ * @type {Array<UiSchemaInputFieldValue>}
3983
+ * @memberof UiSchemaInputAllOf
2544
3984
  */
2545
- 'env_id': string;
3985
+ 'filters'?: Array<UiSchemaInputFieldValue> | null;
2546
3986
  /**
2547
3987
  *
2548
3988
  * @type {string}
2549
- * @memberof NewDeploymentPermission
3989
+ * @memberof UiSchemaInputAllOf
2550
3990
  */
2551
- 'user_id': string;
3991
+ 'minimum'?: string | null;
2552
3992
  /**
2553
3993
  *
2554
3994
  * @type {string}
2555
- * @memberof NewDeploymentPermission
3995
+ * @memberof UiSchemaInputAllOf
2556
3996
  */
2557
- 'kind': string;
3997
+ 'maximum'?: string | null;
2558
3998
  /**
2559
3999
  *
2560
- * @type {UserDeploymentRole}
2561
- * @memberof NewDeploymentPermission
4000
+ * @type {string}
4001
+ * @memberof UiSchemaInputAllOf
2562
4002
  */
2563
- 'role': UserDeploymentRole;
4003
+ 'step'?: string | null;
2564
4004
  }
2565
-
2566
-
2567
4005
  /**
2568
4006
  *
2569
4007
  * @export
2570
- * @interface NewDeploymentResource
4008
+ * @interface UiSchemaInputFieldOption
2571
4009
  */
2572
- export interface NewDeploymentResource {
2573
- /**
2574
- *
2575
- * @type {string}
2576
- * @memberof NewDeploymentResource
2577
- */
2578
- 'id'?: string | null;
4010
+ export interface UiSchemaInputFieldOption {
2579
4011
  /**
2580
4012
  *
2581
- * @type {string}
2582
- * @memberof NewDeploymentResource
4013
+ * @type {any}
4014
+ * @memberof UiSchemaInputFieldOption
2583
4015
  */
2584
- 'created_at'?: string | null;
4016
+ 'value': any;
2585
4017
  /**
2586
4018
  *
2587
4019
  * @type {string}
2588
- * @memberof NewDeploymentResource
4020
+ * @memberof UiSchemaInputFieldOption
2589
4021
  */
2590
- 'type_id': string;
4022
+ 'label'?: string | null;
2591
4023
  /**
2592
4024
  *
2593
4025
  * @type {string}
2594
- * @memberof NewDeploymentResource
4026
+ * @memberof UiSchemaInputFieldOption
2595
4027
  */
2596
- 'deployment_id': string;
4028
+ 'helpText'?: string | null;
4029
+ }
4030
+ /**
4031
+ *
4032
+ * @export
4033
+ * @interface UiSchemaInputFieldValue
4034
+ */
4035
+ export interface UiSchemaInputFieldValue {
2597
4036
  /**
2598
4037
  *
2599
4038
  * @type {string}
2600
- * @memberof NewDeploymentResource
4039
+ * @memberof UiSchemaInputFieldValue
2601
4040
  */
2602
- 'name': string;
4041
+ 'field': string;
2603
4042
  /**
2604
4043
  *
2605
4044
  * @type {any}
2606
- * @memberof NewDeploymentResource
4045
+ * @memberof UiSchemaInputFieldValue
2607
4046
  */
2608
- 'props': any;
4047
+ 'value': any;
4048
+ }
4049
+ /**
4050
+ * @type UiSchemaInputRef
4051
+ * @export
4052
+ */
4053
+ export type UiSchemaInputRef = UiSchemaInputRefOneOf | UiSchemaInputRefOneOf1;
4054
+
4055
+ /**
4056
+ *
4057
+ * @export
4058
+ * @interface UiSchemaInputRefField
4059
+ */
4060
+ export interface UiSchemaInputRefField {
2609
4061
  /**
2610
4062
  *
2611
- * @type {DeploymentResourceSyncStatus}
2612
- * @memberof NewDeploymentResource
4063
+ * @type {string}
4064
+ * @memberof UiSchemaInputRefField
2613
4065
  */
2614
- 'sync_status'?: DeploymentResourceSyncStatus | null;
4066
+ 'input': string;
2615
4067
  }
2616
-
2617
-
2618
4068
  /**
2619
4069
  *
2620
4070
  * @export
2621
- * @interface NewEnv
4071
+ * @interface UiSchemaInputRefOneOf
2622
4072
  */
2623
- export interface NewEnv {
4073
+ export interface UiSchemaInputRefOneOf {
2624
4074
  /**
2625
4075
  *
2626
- * @type {string}
2627
- * @memberof NewEnv
4076
+ * @type {UiSchemaInputRefField}
4077
+ * @memberof UiSchemaInputRefOneOf
2628
4078
  */
2629
- 'name': string;
4079
+ 'FieldValue': UiSchemaInputRefField;
4080
+ }
4081
+ /**
4082
+ *
4083
+ * @export
4084
+ * @interface UiSchemaInputRefOneOf1
4085
+ */
4086
+ export interface UiSchemaInputRefOneOf1 {
2630
4087
  /**
2631
4088
  *
2632
- * @type {boolean}
2633
- * @memberof NewEnv
4089
+ * @type {UiSchemaInputRefProperty}
4090
+ * @memberof UiSchemaInputRefOneOf1
2634
4091
  */
2635
- 'auto_add_new_users'?: boolean | null;
4092
+ 'FieldProperty': UiSchemaInputRefProperty;
2636
4093
  }
2637
4094
  /**
2638
4095
  *
2639
4096
  * @export
2640
- * @interface NewEnvUserPermission
4097
+ * @interface UiSchemaInputRefProperty
2641
4098
  */
2642
- export interface NewEnvUserPermission {
4099
+ export interface UiSchemaInputRefProperty {
2643
4100
  /**
2644
4101
  *
2645
4102
  * @type {string}
2646
- * @memberof NewEnvUserPermission
4103
+ * @memberof UiSchemaInputRefProperty
2647
4104
  */
2648
- 'env_id': string;
4105
+ 'input': string;
2649
4106
  /**
2650
4107
  *
2651
4108
  * @type {string}
2652
- * @memberof NewEnvUserPermission
4109
+ * @memberof UiSchemaInputRefProperty
2653
4110
  */
2654
- 'user_id': string;
4111
+ 'property': string;
4112
+ }
4113
+ /**
4114
+ * @type UiSchemaInputSingleType
4115
+ * @export
4116
+ */
4117
+ export type UiSchemaInputSingleType = UiSchemaInputSingleTypeOneOf | string;
4118
+
4119
+ /**
4120
+ *
4121
+ * @export
4122
+ * @interface UiSchemaInputSingleTypeOneOf
4123
+ */
4124
+ export interface UiSchemaInputSingleTypeOneOf {
2655
4125
  /**
2656
4126
  *
2657
- * @type {EnvUserRole}
2658
- * @memberof NewEnvUserPermission
4127
+ * @type {UiSchemaInputSingleTypeOneOfCollectionSelect}
4128
+ * @memberof UiSchemaInputSingleTypeOneOf
2659
4129
  */
2660
- 'role': EnvUserRole;
4130
+ 'CollectionSelect': UiSchemaInputSingleTypeOneOfCollectionSelect;
2661
4131
  }
2662
-
2663
-
2664
4132
  /**
2665
4133
  *
2666
4134
  * @export
2667
- * @interface NewHelmTagFormat
4135
+ * @interface UiSchemaInputSingleTypeOneOfCollectionSelect
2668
4136
  */
2669
- export interface NewHelmTagFormat {
4137
+ export interface UiSchemaInputSingleTypeOneOfCollectionSelect {
2670
4138
  /**
2671
4139
  *
2672
- * @type {string}
2673
- * @memberof NewHelmTagFormat
4140
+ * @type {any}
4141
+ * @memberof UiSchemaInputSingleTypeOneOfCollectionSelect
2674
4142
  */
2675
- 'pattern': string;
4143
+ 'collection': any;
2676
4144
  }
2677
4145
  /**
2678
4146
  *
2679
4147
  * @export
2680
- * @interface NewSecret
4148
+ * @interface UiSchemaInputType
2681
4149
  */
2682
- export interface NewSecret {
4150
+ export interface UiSchemaInputType {
2683
4151
  /**
2684
4152
  *
2685
- * @type {string}
2686
- * @memberof NewSecret
4153
+ * @type {UiSchemaInputSingleType}
4154
+ * @memberof UiSchemaInputType
2687
4155
  */
2688
- 'env_id': string;
4156
+ 'single_type': UiSchemaInputSingleType;
2689
4157
  /**
2690
4158
  *
2691
- * @type {string}
2692
- * @memberof NewSecret
4159
+ * @type {boolean}
4160
+ * @memberof UiSchemaInputType
2693
4161
  */
2694
- 'collection': string;
4162
+ 'is_array': boolean;
4163
+ }
4164
+ /**
4165
+ *
4166
+ * @export
4167
+ * @interface UiSchemaOutputValue
4168
+ */
4169
+ export interface UiSchemaOutputValue {
2695
4170
  /**
2696
4171
  *
2697
- * @type {string}
2698
- * @memberof NewSecret
4172
+ * @type {Array<string>}
4173
+ * @memberof UiSchemaOutputValue
2699
4174
  */
2700
- 'name': string;
4175
+ 'path': Array<string>;
2701
4176
  /**
2702
4177
  *
2703
- * @type {string}
2704
- * @memberof NewSecret
4178
+ * @type {UiSchemaInputRef}
4179
+ * @memberof UiSchemaOutputValue
2705
4180
  */
2706
- 'contents': string;
4181
+ 'value': UiSchemaInputRef;
2707
4182
  }
2708
4183
  /**
2709
4184
  *
2710
4185
  * @export
2711
- * @interface OAuth2Response
4186
+ * @interface UiSchemaOutputs
2712
4187
  */
2713
- export interface OAuth2Response {
4188
+ export interface UiSchemaOutputs {
2714
4189
  /**
2715
4190
  *
2716
- * @type {string}
2717
- * @memberof OAuth2Response
4191
+ * @type {Array<UiSchemaOutputValue>}
4192
+ * @memberof UiSchemaOutputs
2718
4193
  */
2719
- 'auth_code': string;
4194
+ 'values': Array<UiSchemaOutputValue>;
4195
+ /**
4196
+ *
4197
+ * @type {{ [key: string]: { [key: string]: UiSchemaInputRef; }; }}
4198
+ * @memberof UiSchemaOutputs
4199
+ */
4200
+ 'secrets'?: { [key: string]: { [key: string]: UiSchemaInputRef; }; };
2720
4201
  }
2721
4202
  /**
2722
4203
  *
2723
4204
  * @export
2724
- * @interface Secret
4205
+ * @interface UiSchemaV0
2725
4206
  */
2726
- export interface Secret {
4207
+ export interface UiSchemaV0 {
2727
4208
  /**
2728
4209
  *
2729
- * @type {string}
2730
- * @memberof Secret
4210
+ * @type {Array<UiSchemaInput>}
4211
+ * @memberof UiSchemaV0
2731
4212
  */
2732
- 'id': string;
4213
+ 'inputs': Array<UiSchemaInput>;
2733
4214
  /**
2734
4215
  *
2735
- * @type {string}
2736
- * @memberof Secret
4216
+ * @type {UiSchemaOutputs}
4217
+ * @memberof UiSchemaV0
2737
4218
  */
2738
- 'created_at': string;
4219
+ 'outputs'?: UiSchemaOutputs;
4220
+ }
4221
+ /**
4222
+ *
4223
+ * @export
4224
+ * @interface UiSchemaV1Beta1
4225
+ */
4226
+ export interface UiSchemaV1Beta1 {
2739
4227
  /**
2740
4228
  *
2741
- * @type {string}
2742
- * @memberof Secret
4229
+ * @type {Array<UiSchemaInput>}
4230
+ * @memberof UiSchemaV1Beta1
2743
4231
  */
2744
- 'updated_at': string;
4232
+ 'inputs': Array<UiSchemaInput>;
2745
4233
  /**
2746
4234
  *
2747
- * @type {string}
2748
- * @memberof Secret
4235
+ * @type {UiSchemaOutputs}
4236
+ * @memberof UiSchemaV1Beta1
2749
4237
  */
2750
- 'env_id': string;
4238
+ 'outputs'?: UiSchemaOutputs;
2751
4239
  /**
2752
4240
  *
2753
- * @type {string}
2754
- * @memberof Secret
4241
+ * @type {ChartExtVersionV1Beta1}
4242
+ * @memberof UiSchemaV1Beta1
2755
4243
  */
2756
- 'collection': string;
4244
+ 'apiVersion': ChartExtVersionV1Beta1;
2757
4245
  /**
2758
4246
  *
2759
- * @type {string}
2760
- * @memberof Secret
4247
+ * @type {ChartExtKindValuesUi}
4248
+ * @memberof UiSchemaV1Beta1
2761
4249
  */
2762
- 'name': string;
4250
+ 'kind': ChartExtKindValuesUi;
2763
4251
  }
4252
+
4253
+
2764
4254
  /**
2765
4255
  *
2766
4256
  * @export
2767
- * @interface ServerInfo
4257
+ * @interface UiSchemaV1Beta1AllOf
2768
4258
  */
2769
- export interface ServerInfo {
4259
+ export interface UiSchemaV1Beta1AllOf {
2770
4260
  /**
2771
4261
  *
2772
- * @type {string}
2773
- * @memberof ServerInfo
4262
+ * @type {ChartExtVersionV1Beta1}
4263
+ * @memberof UiSchemaV1Beta1AllOf
2774
4264
  */
2775
- 'version': string;
2776
- }
2777
- /**
2778
- *
2779
- * @export
2780
- * @interface StartGoogleLoginResponse
2781
- */
2782
- export interface StartGoogleLoginResponse {
4265
+ 'apiVersion': ChartExtVersionV1Beta1;
2783
4266
  /**
2784
4267
  *
2785
- * @type {string}
2786
- * @memberof StartGoogleLoginResponse
4268
+ * @type {ChartExtKindValuesUi}
4269
+ * @memberof UiSchemaV1Beta1AllOf
2787
4270
  */
2788
- 'redirect_url': string;
4271
+ 'kind': ChartExtKindValuesUi;
2789
4272
  }
4273
+
4274
+
2790
4275
  /**
2791
4276
  *
2792
4277
  * @export