@platzio/sdk 0.5.0-beta.12 → 0.5.0-beta.14

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