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

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