@northflank/js-client 0.7.16 → 0.7.17

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.
@@ -1423,17 +1423,20 @@ declare class ListCloudProvidersEndpoint extends GetApiEndpoint<ListCloudProvide
1423
1423
  type ListCloudClustersResult = {
1424
1424
  /** An array of clusters. */
1425
1425
  'clusters': {
1426
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1427
- 'id': string;
1428
1426
  /** The name of the cluster. Example: "GCP Cluster 1" */
1429
1427
  'name': string;
1430
- /** A short description of the cluster. Example: "The cluster description" */
1428
+ /** The description of the cluster. Example: "This is a new cluster." */
1431
1429
  'description'?: string;
1432
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1433
- 'provider'?: string;
1434
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1435
- 'integrationId': string;
1436
- 'nodePools'?: {
1430
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1431
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1432
+ /** Region of the cluster. Example: "europe-west2" */
1433
+ 'region': string;
1434
+ /** Kubernetes version of the cluster. Example: "1.26" */
1435
+ 'kubernetesVersion': string;
1436
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1437
+ 'integrationId'?: string;
1438
+ /** An array of node pools. */
1439
+ 'nodePools': {
1437
1440
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1438
1441
  'nodeType': string;
1439
1442
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
@@ -1485,20 +1488,91 @@ type ListCloudClustersResult = {
1485
1488
  };
1486
1489
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1487
1490
  'labels'?: any;
1488
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1489
- 'id'?: string;
1490
1491
  }[];
1491
- 'status'?: {
1492
- 'state'?: {
1493
- 'state'?: string;
1494
- 'transitionTime'?: string;
1492
+ 'settings'?: {
1493
+ 'builds'?: {
1494
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1495
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1496
+ 'plan'?: string;
1497
+ /** Cluster to use for scheduling builds */
1498
+ 'clusterId'?: string;
1499
+ };
1500
+ 'registry'?: {
1501
+ 'mode'?: 'paas' | 'self-hosted';
1502
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1503
+ 'registryId'?: string;
1504
+ };
1505
+ 'logging'?: {
1506
+ 'mode'?: 'paas' | 'loki';
1507
+ /** Required data for the loki mode setting. */
1508
+ 'loki'?: {
1509
+ 's3BucketName': string;
1510
+ 's3AccessKey': string;
1511
+ 's3SecretKey': string;
1512
+ 's3Region': string;
1513
+ };
1495
1514
  };
1496
- 'nextUpdateAfter'?: string;
1515
+ 'vanityDomains'?: {
1516
+ 'apps'?: {
1517
+ 'zoneName': string;
1518
+ 'integrationId': string;
1519
+ };
1520
+ 'customDomains'?: {
1521
+ 'zoneName': string;
1522
+ 'integrationId': string;
1523
+ };
1524
+ 'loadBalancers'?: {
1525
+ 'zoneName': string;
1526
+ 'integrationId': string;
1527
+ };
1528
+ };
1529
+ 'infrastructure'?: {
1530
+ 'workloads'?: {
1531
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1532
+ };
1533
+ 'builds'?: {
1534
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1535
+ };
1536
+ 'installKata'?: boolean;
1537
+ 'installGvisor'?: boolean;
1538
+ 'cleanupVolumes'?: boolean;
1539
+ 'cleanupSnapshots'?: boolean;
1540
+ };
1541
+ /** Request modifiers to use for different resources. */
1542
+ 'requestModifiers'?: {
1543
+ /** Request modifiers for services */
1544
+ 'services'?: {
1545
+ 'cpu': number;
1546
+ 'memory': number;
1547
+ };
1548
+ /** Request modifiers for jobs */
1549
+ 'jobs'?: {
1550
+ 'cpu': number;
1551
+ 'memory': number;
1552
+ };
1553
+ /** Request modifiers for builds */
1554
+ 'builds'?: {
1555
+ 'cpu': number;
1556
+ 'memory': number;
1557
+ };
1558
+ /** Request modifiers for addons */
1559
+ 'addons'?: {
1560
+ 'cpu': number;
1561
+ 'memory': number;
1562
+ };
1563
+ };
1564
+ 'skipInstall'?: boolean;
1565
+ };
1566
+ /** GCP specific data. Required when `provider` is `gcp`. */
1567
+ 'gcp'?: {
1568
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1569
+ 'projectId': string;
1570
+ };
1571
+ /** AWS specific data. Required when `provider` is `aws`. */
1572
+ 'aws'?: {
1573
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1574
+ 'subnets': string;
1497
1575
  };
1498
- /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1499
- 'createdAt': string;
1500
- /** Indicates if provider resource deletion has been requested by the user. */
1501
- 'deletionRequested': boolean;
1502
1576
  }[];
1503
1577
  };
1504
1578
  type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
@@ -1523,17 +1597,20 @@ declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClusters
1523
1597
  }
1524
1598
 
1525
1599
  type CreateCloudClusterResult = {
1526
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1527
- 'id': string;
1528
1600
  /** The name of the cluster. Example: "GCP Cluster 1" */
1529
1601
  'name': string;
1530
- /** A short description of the cluster. Example: "The cluster description" */
1602
+ /** The description of the cluster. Example: "This is a new cluster." */
1531
1603
  'description'?: string;
1532
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1533
- 'provider'?: string;
1534
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1535
- 'integrationId': string;
1536
- 'nodePools'?: {
1604
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1605
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1606
+ /** Region of the cluster. Example: "europe-west2" */
1607
+ 'region': string;
1608
+ /** Kubernetes version of the cluster. Example: "1.26" */
1609
+ 'kubernetesVersion': string;
1610
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1611
+ 'integrationId'?: string;
1612
+ /** An array of node pools. */
1613
+ 'nodePools': {
1537
1614
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1538
1615
  'nodeType': string;
1539
1616
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
@@ -1585,9 +1662,91 @@ type CreateCloudClusterResult = {
1585
1662
  };
1586
1663
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1587
1664
  'labels'?: any;
1588
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1589
- 'id'?: string;
1590
1665
  }[];
1666
+ 'settings'?: {
1667
+ 'builds'?: {
1668
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1669
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1670
+ 'plan'?: string;
1671
+ /** Cluster to use for scheduling builds */
1672
+ 'clusterId'?: string;
1673
+ };
1674
+ 'registry'?: {
1675
+ 'mode'?: 'paas' | 'self-hosted';
1676
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
1677
+ 'registryId'?: string;
1678
+ };
1679
+ 'logging'?: {
1680
+ 'mode'?: 'paas' | 'loki';
1681
+ /** Required data for the loki mode setting. */
1682
+ 'loki'?: {
1683
+ 's3BucketName': string;
1684
+ 's3AccessKey': string;
1685
+ 's3SecretKey': string;
1686
+ 's3Region': string;
1687
+ };
1688
+ };
1689
+ 'vanityDomains'?: {
1690
+ 'apps'?: {
1691
+ 'zoneName': string;
1692
+ 'integrationId': string;
1693
+ };
1694
+ 'customDomains'?: {
1695
+ 'zoneName': string;
1696
+ 'integrationId': string;
1697
+ };
1698
+ 'loadBalancers'?: {
1699
+ 'zoneName': string;
1700
+ 'integrationId': string;
1701
+ };
1702
+ };
1703
+ 'infrastructure'?: {
1704
+ 'workloads'?: {
1705
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1706
+ };
1707
+ 'builds'?: {
1708
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1709
+ };
1710
+ 'installKata'?: boolean;
1711
+ 'installGvisor'?: boolean;
1712
+ 'cleanupVolumes'?: boolean;
1713
+ 'cleanupSnapshots'?: boolean;
1714
+ };
1715
+ /** Request modifiers to use for different resources. */
1716
+ 'requestModifiers'?: {
1717
+ /** Request modifiers for services */
1718
+ 'services'?: {
1719
+ 'cpu': number;
1720
+ 'memory': number;
1721
+ };
1722
+ /** Request modifiers for jobs */
1723
+ 'jobs'?: {
1724
+ 'cpu': number;
1725
+ 'memory': number;
1726
+ };
1727
+ /** Request modifiers for builds */
1728
+ 'builds'?: {
1729
+ 'cpu': number;
1730
+ 'memory': number;
1731
+ };
1732
+ /** Request modifiers for addons */
1733
+ 'addons'?: {
1734
+ 'cpu': number;
1735
+ 'memory': number;
1736
+ };
1737
+ };
1738
+ 'skipInstall'?: boolean;
1739
+ };
1740
+ /** GCP specific data. Required when `provider` is `gcp`. */
1741
+ 'gcp'?: {
1742
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
1743
+ 'projectId': string;
1744
+ };
1745
+ /** AWS specific data. Required when `provider` is `aws`. */
1746
+ 'aws'?: {
1747
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
1748
+ 'subnets': string;
1749
+ };
1591
1750
  'status'?: {
1592
1751
  'state'?: {
1593
1752
  'state'?: string;
@@ -1597,7 +1756,7 @@ type CreateCloudClusterResult = {
1597
1756
  };
1598
1757
  /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1599
1758
  'createdAt': string;
1600
- /** Indicates if provider resource deletion has been requested by the user. */
1759
+ /** Indicates if provider resource deletion has been requested. */
1601
1760
  'deletionRequested': boolean;
1602
1761
  };
1603
1762
  type CreateCloudClusterCall = (opts: CreateCloudClusterRequest) => Promise<ApiCallResponse<CreateCloudClusterResult>>;
@@ -1617,7 +1776,6 @@ type CreateCloudClusterData = {
1617
1776
  'kubernetesVersion': string;
1618
1777
  /** Existing integration to use for this cluster. Example: "gcp-integration" */
1619
1778
  'integrationId'?: string;
1620
- 'integration'?: any;
1621
1779
  /** An array of node pools. */
1622
1780
  'nodePools': {
1623
1781
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
@@ -1711,10 +1869,10 @@ type CreateCloudClusterData = {
1711
1869
  };
1712
1870
  'infrastructure'?: {
1713
1871
  'workloads'?: {
1714
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
1872
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1715
1873
  };
1716
1874
  'builds'?: {
1717
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
1875
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1718
1876
  };
1719
1877
  'installKata'?: boolean;
1720
1878
  'installGvisor'?: boolean;
@@ -1766,7 +1924,169 @@ declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClus
1766
1924
  body: (payload: CreateCloudClusterRequest) => string;
1767
1925
  }
1768
1926
 
1769
- type GetCloudClusterResult = any;
1927
+ type GetCloudClusterResult = {
1928
+ /** The name of the cluster. Example: "GCP Cluster 1" */
1929
+ 'name': string;
1930
+ /** The description of the cluster. Example: "This is a new cluster." */
1931
+ 'description'?: string;
1932
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
1933
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1934
+ /** Region of the cluster. Example: "europe-west2" */
1935
+ 'region': string;
1936
+ /** Kubernetes version of the cluster. Example: "1.26" */
1937
+ 'kubernetesVersion': string;
1938
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
1939
+ 'integrationId'?: string;
1940
+ /** An array of node pools. */
1941
+ 'nodePools': {
1942
+ /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1943
+ 'nodeType': string;
1944
+ /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1945
+ 'nodeCount': number;
1946
+ /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
1947
+ 'autoscaling'?: {
1948
+ 'enabled'?: boolean;
1949
+ 'min'?: number;
1950
+ 'max'?: number;
1951
+ };
1952
+ 'computeResources'?: {
1953
+ 'gpu'?: {
1954
+ 'mig'?: {
1955
+ 'enabled'?: boolean;
1956
+ 'partitions'?: string[];
1957
+ };
1958
+ 'timeslicing'?: {
1959
+ 'enabled'?: boolean;
1960
+ 'numSlices'?: number;
1961
+ };
1962
+ };
1963
+ };
1964
+ /** Configures node pool with preemptible / spot instances if enabled. */
1965
+ 'preemptible'?: boolean;
1966
+ /** The disk type to use. */
1967
+ 'diskType'?: string;
1968
+ /** Disk size in GB Example: 100 */
1969
+ 'diskSize': number;
1970
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1971
+ 'systemPool'?: boolean;
1972
+ /** Zones in which the node pool should be provisioned. */
1973
+ 'availabilityZones': string[];
1974
+ /** Define basic workload scheduling restrictions for this node pool */
1975
+ 'scheduling'?: {
1976
+ /** Allow jobs to schedule to this node pool */
1977
+ 'allowJobs'?: boolean;
1978
+ /** Restrict job scheduling to jobs which have GPU resources configured. Only relevant for GPU node pools. */
1979
+ 'onlyGpuJobs'?: boolean;
1980
+ /** Allow services to schedule to this node pool */
1981
+ 'allowServices'?: boolean;
1982
+ /** Restrict service scheduling to services which have GPU resources configured. Only relevant for GPU node pools. */
1983
+ 'onlyGpuServices'?: boolean;
1984
+ /** Allow addons to schedule to this node pool */
1985
+ 'allowAddons'?: boolean;
1986
+ /** Allow builds to schedule to this node pool */
1987
+ 'allowBuilds'?: boolean;
1988
+ /** Restrict build scheduling to builds which have GPU resources configured. Only relevant for GPU node pools. */
1989
+ 'onlyGpuBuilds'?: boolean;
1990
+ };
1991
+ /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1992
+ 'labels'?: any;
1993
+ }[];
1994
+ 'settings'?: {
1995
+ 'builds'?: {
1996
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
1997
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
1998
+ 'plan'?: string;
1999
+ /** Cluster to use for scheduling builds */
2000
+ 'clusterId'?: string;
2001
+ };
2002
+ 'registry'?: {
2003
+ 'mode'?: 'paas' | 'self-hosted';
2004
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2005
+ 'registryId'?: string;
2006
+ };
2007
+ 'logging'?: {
2008
+ 'mode'?: 'paas' | 'loki';
2009
+ /** Required data for the loki mode setting. */
2010
+ 'loki'?: {
2011
+ 's3BucketName': string;
2012
+ 's3AccessKey': string;
2013
+ 's3SecretKey': string;
2014
+ 's3Region': string;
2015
+ };
2016
+ };
2017
+ 'vanityDomains'?: {
2018
+ 'apps'?: {
2019
+ 'zoneName': string;
2020
+ 'integrationId': string;
2021
+ };
2022
+ 'customDomains'?: {
2023
+ 'zoneName': string;
2024
+ 'integrationId': string;
2025
+ };
2026
+ 'loadBalancers'?: {
2027
+ 'zoneName': string;
2028
+ 'integrationId': string;
2029
+ };
2030
+ };
2031
+ 'infrastructure'?: {
2032
+ 'workloads'?: {
2033
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2034
+ };
2035
+ 'builds'?: {
2036
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2037
+ };
2038
+ 'installKata'?: boolean;
2039
+ 'installGvisor'?: boolean;
2040
+ 'cleanupVolumes'?: boolean;
2041
+ 'cleanupSnapshots'?: boolean;
2042
+ };
2043
+ /** Request modifiers to use for different resources. */
2044
+ 'requestModifiers'?: {
2045
+ /** Request modifiers for services */
2046
+ 'services'?: {
2047
+ 'cpu': number;
2048
+ 'memory': number;
2049
+ };
2050
+ /** Request modifiers for jobs */
2051
+ 'jobs'?: {
2052
+ 'cpu': number;
2053
+ 'memory': number;
2054
+ };
2055
+ /** Request modifiers for builds */
2056
+ 'builds'?: {
2057
+ 'cpu': number;
2058
+ 'memory': number;
2059
+ };
2060
+ /** Request modifiers for addons */
2061
+ 'addons'?: {
2062
+ 'cpu': number;
2063
+ 'memory': number;
2064
+ };
2065
+ };
2066
+ 'skipInstall'?: boolean;
2067
+ };
2068
+ /** GCP specific data. Required when `provider` is `gcp`. */
2069
+ 'gcp'?: {
2070
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
2071
+ 'projectId': string;
2072
+ };
2073
+ /** AWS specific data. Required when `provider` is `aws`. */
2074
+ 'aws'?: {
2075
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
2076
+ 'subnets': string;
2077
+ };
2078
+ 'status'?: {
2079
+ 'state'?: {
2080
+ 'state'?: string;
2081
+ 'transitionTime'?: string;
2082
+ };
2083
+ 'nextUpdateAfter'?: string;
2084
+ };
2085
+ /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
2086
+ 'createdAt': string;
2087
+ /** Indicates if provider resource deletion has been requested. */
2088
+ 'deletionRequested': boolean;
2089
+ };
1770
2090
  type GetCloudClusterCall = (opts: GetCloudClusterRequest) => Promise<ApiCallResponse<GetCloudClusterResult>>;
1771
2091
  type GetCloudClusterRequest = {
1772
2092
  parameters: GetCloudClusterParameters;
@@ -1784,17 +2104,20 @@ declare class GetCloudClusterEndpoint extends GetApiEndpoint<GetCloudClusterRequ
1784
2104
  }
1785
2105
 
1786
2106
  type UpdateCloudClusterResult = {
1787
- /** Identifier for the cluster. Example: "gcp-cluster-1" */
1788
- 'id': string;
1789
2107
  /** The name of the cluster. Example: "GCP Cluster 1" */
1790
2108
  'name': string;
1791
- /** A short description of the cluster. Example: "The cluster description" */
2109
+ /** The description of the cluster. Example: "This is a new cluster." */
1792
2110
  'description'?: string;
1793
- /** The cloud provider to which this cluster belongs to. Example: "gcp" */
1794
- 'provider'?: string;
1795
- /** ID of the provider integration used by this cluster. Example: "gcp-integration" */
1796
- 'integrationId': string;
1797
- 'nodePools'?: {
2111
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2112
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2113
+ /** Region of the cluster. Example: "europe-west2" */
2114
+ 'region': string;
2115
+ /** Kubernetes version of the cluster. Example: "1.26" */
2116
+ 'kubernetesVersion': string;
2117
+ /** Existing integration to use for this cluster. Example: "gcp-integration" */
2118
+ 'integrationId'?: string;
2119
+ /** An array of node pools. */
2120
+ 'nodePools': {
1798
2121
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1799
2122
  'nodeType': string;
1800
2123
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
@@ -1846,9 +2169,91 @@ type UpdateCloudClusterResult = {
1846
2169
  };
1847
2170
  /** Set of label keys and values that can be used for advanced scheduling in combination with resource tag scheduling rules. */
1848
2171
  'labels'?: any;
1849
- /** ID of existing node pool. Must be passed when modifying existing node pools. Not relevant for new node pools Example: "6aa96121-0345-43ad-bade-af36d540c222" */
1850
- 'id'?: string;
1851
2172
  }[];
2173
+ 'settings'?: {
2174
+ 'builds'?: {
2175
+ 'mode'?: 'paas' | 'internal' | 'build-cluster';
2176
+ /** Plan to use for builds if they are run on the cluster Example: "nf-compute-200" */
2177
+ 'plan'?: string;
2178
+ /** Cluster to use for scheduling builds */
2179
+ 'clusterId'?: string;
2180
+ };
2181
+ 'registry'?: {
2182
+ 'mode'?: 'paas' | 'self-hosted';
2183
+ /** Credentials to use for storing of images. Example: "my-registry-credentials" */
2184
+ 'registryId'?: string;
2185
+ };
2186
+ 'logging'?: {
2187
+ 'mode'?: 'paas' | 'loki';
2188
+ /** Required data for the loki mode setting. */
2189
+ 'loki'?: {
2190
+ 's3BucketName': string;
2191
+ 's3AccessKey': string;
2192
+ 's3SecretKey': string;
2193
+ 's3Region': string;
2194
+ };
2195
+ };
2196
+ 'vanityDomains'?: {
2197
+ 'apps'?: {
2198
+ 'zoneName': string;
2199
+ 'integrationId': string;
2200
+ };
2201
+ 'customDomains'?: {
2202
+ 'zoneName': string;
2203
+ 'integrationId': string;
2204
+ };
2205
+ 'loadBalancers'?: {
2206
+ 'zoneName': string;
2207
+ 'integrationId': string;
2208
+ };
2209
+ };
2210
+ 'infrastructure'?: {
2211
+ 'workloads'?: {
2212
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2213
+ };
2214
+ 'builds'?: {
2215
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2216
+ };
2217
+ 'installKata'?: boolean;
2218
+ 'installGvisor'?: boolean;
2219
+ 'cleanupVolumes'?: boolean;
2220
+ 'cleanupSnapshots'?: boolean;
2221
+ };
2222
+ /** Request modifiers to use for different resources. */
2223
+ 'requestModifiers'?: {
2224
+ /** Request modifiers for services */
2225
+ 'services'?: {
2226
+ 'cpu': number;
2227
+ 'memory': number;
2228
+ };
2229
+ /** Request modifiers for jobs */
2230
+ 'jobs'?: {
2231
+ 'cpu': number;
2232
+ 'memory': number;
2233
+ };
2234
+ /** Request modifiers for builds */
2235
+ 'builds'?: {
2236
+ 'cpu': number;
2237
+ 'memory': number;
2238
+ };
2239
+ /** Request modifiers for addons */
2240
+ 'addons'?: {
2241
+ 'cpu': number;
2242
+ 'memory': number;
2243
+ };
2244
+ };
2245
+ 'skipInstall'?: boolean;
2246
+ };
2247
+ /** GCP specific data. Required when `provider` is `gcp`. */
2248
+ 'gcp'?: {
2249
+ /** ID of the GCP project the cluster will be provisioned in. Example: "example-project-id" */
2250
+ 'projectId': string;
2251
+ };
2252
+ /** AWS specific data. Required when `provider` is `aws`. */
2253
+ 'aws'?: {
2254
+ /** List of subnets the cluster should be created for. At least 2 must be specified. */
2255
+ 'subnets': string;
2256
+ };
1852
2257
  'status'?: {
1853
2258
  'state'?: {
1854
2259
  'state'?: string;
@@ -1858,7 +2263,7 @@ type UpdateCloudClusterResult = {
1858
2263
  };
1859
2264
  /** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
1860
2265
  'createdAt': string;
1861
- /** Indicates if provider resource deletion has been requested by the user. */
2266
+ /** Indicates if provider resource deletion has been requested. */
1862
2267
  'deletionRequested': boolean;
1863
2268
  };
1864
2269
  type UpdateCloudClusterCall = (opts: UpdateCloudClusterRequest) => Promise<ApiCallResponse<UpdateCloudClusterResult>>;
@@ -1966,10 +2371,10 @@ type UpdateCloudClusterData = {
1966
2371
  };
1967
2372
  'infrastructure'?: {
1968
2373
  'workloads'?: {
1969
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2374
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1970
2375
  };
1971
2376
  'builds'?: {
1972
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2377
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
1973
2378
  };
1974
2379
  'installKata'?: boolean;
1975
2380
  'installGvisor'?: boolean;
@@ -2085,7 +2490,7 @@ type CreateCloudDockerregistryRequest = {
2085
2490
  data: CreateCloudDockerregistryData;
2086
2491
  };
2087
2492
  type CreateCloudDockerregistryData = {
2088
- /** The name of the cloud provider integration. Example: "New Integration" */
2493
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2089
2494
  'name': string;
2090
2495
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2091
2496
  'description'?: string;
@@ -2156,14 +2561,23 @@ declare class DeleteCloudDockerregistryEndpoint extends DeleteApiEndpoint<Delete
2156
2561
  type ListCloudIntegrationsResult = {
2157
2562
  /** An array of integrations. */
2158
2563
  'integrations': {
2159
- /** Identifier for the integration. Example: "gcp-integration" */
2160
- 'id': string;
2161
- /** The name of the integration. Example: "GCP integration" */
2564
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2162
2565
  'name': string;
2163
- /** A short description of the integration. Example: "The integration description" */
2566
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2164
2567
  'description'?: string;
2165
- /** The cloud provider to which this integration belongs to. Example: "gcp" */
2166
- 'provider'?: string;
2568
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2569
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2570
+ /** The type of provider integration. Example: "cluster" */
2571
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2572
+ /** GCP specific data. Required when `provider` is `gcp`. */
2573
+ 'gcp'?: {
2574
+ 'gcp'?: {
2575
+ /** Project ID */
2576
+ 'projectId': string;
2577
+ };
2578
+ };
2579
+ /** ID of the integration Example: "example-integration" */
2580
+ 'id': string;
2167
2581
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2168
2582
  'createdAt': string;
2169
2583
  }[];
@@ -2190,12 +2604,16 @@ declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudInte
2190
2604
  }
2191
2605
 
2192
2606
  type CreateCloudIntegrationResult = {
2193
- /** Identifier for the integration. Example: "gcp-integration" */
2607
+ /** ID of the integration Example: "example-integration" */
2194
2608
  'id': string;
2195
- /** The name of the integration. Example: "GCP integration" */
2609
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2196
2610
  'name': string;
2197
- /** A short description of the integration. Example: "The integration description" */
2611
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2198
2612
  'description'?: string;
2613
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2614
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2615
+ /** The type of provider integration. Example: "cluster" */
2616
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2199
2617
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2200
2618
  'credentials': {
2201
2619
  /** Contents of a GCP key file. */
@@ -2204,8 +2622,25 @@ type CreateCloudIntegrationResult = {
2204
2622
  'accessKey'?: string;
2205
2623
  /** AWS secret key. */
2206
2624
  'secretKey'?: string;
2207
- /** DO API key. */
2625
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2208
2626
  'apiKey'?: string;
2627
+ /** Directory (tenant) ID */
2628
+ 'tenantId'?: string;
2629
+ /** Application (client) ID */
2630
+ 'clientId'?: string;
2631
+ /** Object ID */
2632
+ 'objectId'?: string;
2633
+ /** Secret */
2634
+ 'secret'?: string;
2635
+ /** Azure Subscription ID */
2636
+ 'subscriptionId'?: string;
2637
+ };
2638
+ /** GCP specific data. Required when `provider` is `gcp`. */
2639
+ 'gcp'?: {
2640
+ 'gcp'?: {
2641
+ /** Project ID */
2642
+ 'projectId': string;
2643
+ };
2209
2644
  };
2210
2645
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2211
2646
  'createdAt': string;
@@ -2215,7 +2650,7 @@ type CreateCloudIntegrationRequest = {
2215
2650
  data: CreateCloudIntegrationData;
2216
2651
  };
2217
2652
  type CreateCloudIntegrationData = {
2218
- /** The name of the cloud provider integration. Example: "New Integration" */
2653
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2219
2654
  'name': string;
2220
2655
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2221
2656
  'description'?: string;
@@ -2231,8 +2666,18 @@ type CreateCloudIntegrationData = {
2231
2666
  'accessKey'?: string;
2232
2667
  /** AWS secret key. */
2233
2668
  'secretKey'?: string;
2234
- /** DO API key. */
2669
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2235
2670
  'apiKey'?: string;
2671
+ /** Directory (tenant) ID */
2672
+ 'tenantId'?: string;
2673
+ /** Application (client) ID */
2674
+ 'clientId'?: string;
2675
+ /** Object ID */
2676
+ 'objectId'?: string;
2677
+ /** Secret */
2678
+ 'secret'?: string;
2679
+ /** Azure Subscription ID */
2680
+ 'subscriptionId'?: string;
2236
2681
  };
2237
2682
  /** GCP specific data. Required when `provider` is `gcp`. */
2238
2683
  'gcp'?: {
@@ -2251,7 +2696,48 @@ declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloud
2251
2696
  body: (payload: CreateCloudIntegrationRequest) => string;
2252
2697
  }
2253
2698
 
2254
- type GetCloudIntegrationResult = any;
2699
+ type GetCloudIntegrationResult = {
2700
+ /** ID of the integration Example: "example-integration" */
2701
+ 'id': string;
2702
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2703
+ 'name': string;
2704
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2705
+ 'description'?: string;
2706
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2707
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2708
+ /** The type of provider integration. Example: "cluster" */
2709
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2710
+ /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2711
+ 'credentials': {
2712
+ /** Contents of a GCP key file. */
2713
+ 'keyfileJson'?: string;
2714
+ /** AWS access key. */
2715
+ 'accessKey'?: string;
2716
+ /** AWS secret key. */
2717
+ 'secretKey'?: string;
2718
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2719
+ 'apiKey'?: string;
2720
+ /** Directory (tenant) ID */
2721
+ 'tenantId'?: string;
2722
+ /** Application (client) ID */
2723
+ 'clientId'?: string;
2724
+ /** Object ID */
2725
+ 'objectId'?: string;
2726
+ /** Secret */
2727
+ 'secret'?: string;
2728
+ /** Azure Subscription ID */
2729
+ 'subscriptionId'?: string;
2730
+ };
2731
+ /** GCP specific data. Required when `provider` is `gcp`. */
2732
+ 'gcp'?: {
2733
+ 'gcp'?: {
2734
+ /** Project ID */
2735
+ 'projectId': string;
2736
+ };
2737
+ };
2738
+ /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2739
+ 'createdAt': string;
2740
+ };
2255
2741
  type GetCloudIntegrationCall = (opts: GetCloudIntegrationRequest) => Promise<ApiCallResponse<GetCloudIntegrationResult>>;
2256
2742
  type GetCloudIntegrationRequest = {
2257
2743
  parameters: GetCloudIntegrationParameters;
@@ -2268,7 +2754,48 @@ declare class GetCloudIntegrationEndpoint extends GetApiEndpoint<GetCloudIntegra
2268
2754
  body: () => undefined;
2269
2755
  }
2270
2756
 
2271
- type UpdateCloudIntegrationResult = any;
2757
+ type UpdateCloudIntegrationResult = {
2758
+ /** ID of the integration Example: "example-integration" */
2759
+ 'id': string;
2760
+ /** The name of the cloud provider integration. Example: "Example Integration" */
2761
+ 'name': string;
2762
+ /** The description of the integration. Example: "This is a new cloud provider integration." */
2763
+ 'description'?: string;
2764
+ /** Cloud provider to be used for the selected resource Example: "gcp" */
2765
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2766
+ /** The type of provider integration. Example: "cluster" */
2767
+ 'type': 'cluster' | 'domain' | 'registry' | 'cdn';
2768
+ /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2769
+ 'credentials': {
2770
+ /** Contents of a GCP key file. */
2771
+ 'keyfileJson'?: string;
2772
+ /** AWS access key. */
2773
+ 'accessKey'?: string;
2774
+ /** AWS secret key. */
2775
+ 'secretKey'?: string;
2776
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2777
+ 'apiKey'?: string;
2778
+ /** Directory (tenant) ID */
2779
+ 'tenantId'?: string;
2780
+ /** Application (client) ID */
2781
+ 'clientId'?: string;
2782
+ /** Object ID */
2783
+ 'objectId'?: string;
2784
+ /** Secret */
2785
+ 'secret'?: string;
2786
+ /** Azure Subscription ID */
2787
+ 'subscriptionId'?: string;
2788
+ };
2789
+ /** GCP specific data. Required when `provider` is `gcp`. */
2790
+ 'gcp'?: {
2791
+ 'gcp'?: {
2792
+ /** Project ID */
2793
+ 'projectId': string;
2794
+ };
2795
+ };
2796
+ /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
2797
+ 'createdAt': string;
2798
+ };
2272
2799
  type UpdateCloudIntegrationCall = (opts: UpdateCloudIntegrationRequest) => Promise<ApiCallResponse<UpdateCloudIntegrationResult>>;
2273
2800
  type UpdateCloudIntegrationRequest = {
2274
2801
  parameters: UpdateCloudIntegrationParameters;
@@ -2288,8 +2815,18 @@ type UpdateCloudIntegrationData = {
2288
2815
  'accessKey'?: string;
2289
2816
  /** AWS secret key. */
2290
2817
  'secretKey'?: string;
2291
- /** DO API key. */
2818
+ /** DO API key. Example: "xxxxxxxxxxxxxxxxxxxxxxxxxx" */
2292
2819
  'apiKey'?: string;
2820
+ /** Directory (tenant) ID */
2821
+ 'tenantId'?: string;
2822
+ /** Application (client) ID */
2823
+ 'clientId'?: string;
2824
+ /** Object ID */
2825
+ 'objectId'?: string;
2826
+ /** Secret */
2827
+ 'secret'?: string;
2828
+ /** Azure Subscription ID */
2829
+ 'subscriptionId'?: string;
2293
2830
  };
2294
2831
  };
2295
2832
  /** Update information about the given integration */
@@ -2805,6 +3342,7 @@ type EnableSubdomainCdnData = {
2805
3342
  'options'?: {
2806
3343
  'service'?: {
2807
3344
  'forceTlsEnableHsts'?: boolean;
3345
+ /** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
2808
3346
  'hstsDuration'?: number;
2809
3347
  'staleIfError'?: boolean;
2810
3348
  'staleIfErrorTtl'?: number;
@@ -2821,6 +3359,7 @@ type EnableSubdomainCdnData = {
2821
3359
  };
2822
3360
  'compression'?: {
2823
3361
  'enabled'?: boolean;
3362
+ /** Compression options. Required when `enabled` is `true`. */
2824
3363
  'mode'?: 'gzip' | 'brotli';
2825
3364
  };
2826
3365
  'vclSnippets'?: {
@@ -2839,7 +3378,11 @@ type EnableSubdomainCdnData = {
2839
3378
  'staleTtl': number;
2840
3379
  'ttl': number;
2841
3380
  }[];
2842
- } | any;
3381
+ };
3382
+ } | {
3383
+ /** Provider for which a CDN on the subdomain should be enabled. Example: "cloudfront" */
3384
+ 'provider': string;
3385
+ 'options'?: any;
2843
3386
  };
2844
3387
  /** Enables a CDN integration on the given subdomain */
2845
3388
  declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomainCdnRequest, EnableSubdomainCdnResult> {
@@ -2851,8 +3394,6 @@ declare class EnableSubdomainCdnEndpoint extends PostApiEndpoint<EnableSubdomain
2851
3394
  }
2852
3395
 
2853
3396
  type AddSubdomainPathResult = {
2854
- /** The domain the path should be created for. Example: "site.example.com" */
2855
- 'subdomain': string;
2856
3397
  /** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
2857
3398
  'mode': 'prefix' | 'exact' | 'regex';
2858
3399
  /** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
@@ -2864,7 +3405,7 @@ type AddSubdomainPathResult = {
2864
3405
  'ignoreUriCase'?: boolean;
2865
3406
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
2866
3407
  'rewrite'?: {
2867
- 'uri'?: string;
3408
+ 'uri': string;
2868
3409
  } | {
2869
3410
  'regex'?: {
2870
3411
  /** Regex match for the given path */
@@ -2908,6 +3449,8 @@ type AddSubdomainPathResult = {
2908
3449
  'perTryTimeout'?: string;
2909
3450
  };
2910
3451
  };
3452
+ /** The full URL including subdomain and path URI. */
3453
+ 'name'?: string;
2911
3454
  /** time of creation */
2912
3455
  'createdAt'?: string;
2913
3456
  } | any;
@@ -2933,7 +3476,7 @@ type AddSubdomainPathData = {
2933
3476
  'ignoreUriCase'?: boolean;
2934
3477
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
2935
3478
  'rewrite'?: {
2936
- 'uri'?: string;
3479
+ 'uri': string;
2937
3480
  } | {
2938
3481
  'regex'?: {
2939
3482
  /** Regex match for the given path */
@@ -2990,20 +3533,20 @@ declare class AddSubdomainPathEndpoint extends PostApiEndpoint<AddSubdomainPathR
2990
3533
  type ListSubdomainPathResult = {
2991
3534
  /** A list of paths created for the given subdomain. */
2992
3535
  'paths': {
2993
- /** The domain the path should be created for. Example: "site.example.com" */
3536
+ /** The domain the path should be created for. */
2994
3537
  'subdomain': string;
2995
- /** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
2996
- 'mode': 'prefix' | 'exact' | 'regex';
2997
- /** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
3538
+ /** Mode of the path, determining how the URI will be interpreted. */
3539
+ 'mode': 'prefix' | 'exact' | 'regex' | string;
3540
+ /** URI of the subdomain path. Interpreted according to the selected path mode */
2998
3541
  'uri': string;
2999
3542
  'options'?: {
3000
3543
  /** In case of uri conflicts, the route with the higher priority will take precedence */
3001
- 'priority'?: number;
3544
+ 'priority'?: number | string;
3002
3545
  /** Allows case insensitive matching for 'prefix' and 'exact' modes */
3003
- 'ignoreUriCase'?: boolean;
3546
+ 'ignoreUriCase'?: boolean | string;
3004
3547
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3005
3548
  'rewrite'?: {
3006
- 'uri'?: string;
3549
+ 'uri': string;
3007
3550
  } | {
3008
3551
  'regex'?: {
3009
3552
  /** Regex match for the given path */
@@ -3047,6 +3590,8 @@ type ListSubdomainPathResult = {
3047
3590
  'perTryTimeout'?: string;
3048
3591
  };
3049
3592
  };
3593
+ /** The full URL including subdomain and path URI. */
3594
+ 'name'?: string;
3050
3595
  /** time of creation */
3051
3596
  'createdAt'?: string;
3052
3597
  }[];
@@ -3070,8 +3615,6 @@ declare class ListSubdomainPathEndpoint extends GetApiEndpoint<ListSubdomainPath
3070
3615
  }
3071
3616
 
3072
3617
  type GetSubdomainPathResult = {
3073
- /** The domain the path should be created for. Example: "site.example.com" */
3074
- 'subdomain': string;
3075
3618
  /** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
3076
3619
  'mode': 'prefix' | 'exact' | 'regex';
3077
3620
  /** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
@@ -3083,7 +3626,7 @@ type GetSubdomainPathResult = {
3083
3626
  'ignoreUriCase'?: boolean;
3084
3627
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3085
3628
  'rewrite'?: {
3086
- 'uri'?: string;
3629
+ 'uri': string;
3087
3630
  } | {
3088
3631
  'regex'?: {
3089
3632
  /** Regex match for the given path */
@@ -3127,6 +3670,8 @@ type GetSubdomainPathResult = {
3127
3670
  'perTryTimeout'?: string;
3128
3671
  };
3129
3672
  };
3673
+ /** The full URL including subdomain and path URI. */
3674
+ 'name'?: string;
3130
3675
  /** time of creation */
3131
3676
  'createdAt'?: string;
3132
3677
  /** Data about the subdomain path assignment. */
@@ -3201,7 +3746,7 @@ type UpdateSubdomainPathData = {
3201
3746
  'ignoreUriCase'?: boolean;
3202
3747
  /** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
3203
3748
  'rewrite'?: {
3204
- 'uri'?: string;
3749
+ 'uri': string;
3205
3750
  } | {
3206
3751
  'regex'?: {
3207
3752
  /** Regex match for the given path */
@@ -3416,6 +3961,16 @@ type CreateLogsinkData = {
3416
3961
  'restricted'?: boolean;
3417
3962
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3418
3963
  'projects'?: string[];
3964
+ 'options'?: {
3965
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
3966
+ 'useCustomLabels'?: boolean;
3967
+ /** Forward CDN logs from your workloads Example: true */
3968
+ 'forwardCdnLogs'?: boolean;
3969
+ /** Forward ingress logs from your workloads Example: true */
3970
+ 'forwardIngressLogs'?: boolean;
3971
+ /** Forward mesh logs from your workloads Example: true */
3972
+ 'forwardMeshLogs'?: boolean;
3973
+ };
3419
3974
  /** The type of the log sink. Example: "loki" */
3420
3975
  'sinkType': 'loki';
3421
3976
  /** Details about the Loki log sink. */
@@ -3446,6 +4001,16 @@ type CreateLogsinkData = {
3446
4001
  'restricted'?: boolean;
3447
4002
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3448
4003
  'projects'?: string[];
4004
+ 'options'?: {
4005
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4006
+ 'useCustomLabels'?: boolean;
4007
+ /** Forward CDN logs from your workloads Example: true */
4008
+ 'forwardCdnLogs'?: boolean;
4009
+ /** Forward ingress logs from your workloads Example: true */
4010
+ 'forwardIngressLogs'?: boolean;
4011
+ /** Forward mesh logs from your workloads Example: true */
4012
+ 'forwardMeshLogs'?: boolean;
4013
+ };
3449
4014
  /** The type of the log sink. Example: "datadog_logs" */
3450
4015
  'sinkType': 'datadog_logs';
3451
4016
  /** Details about the Datadog log sink. */
@@ -3464,6 +4029,16 @@ type CreateLogsinkData = {
3464
4029
  'restricted'?: boolean;
3465
4030
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3466
4031
  'projects'?: string[];
4032
+ 'options'?: {
4033
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4034
+ 'useCustomLabels'?: boolean;
4035
+ /** Forward CDN logs from your workloads Example: true */
4036
+ 'forwardCdnLogs'?: boolean;
4037
+ /** Forward ingress logs from your workloads Example: true */
4038
+ 'forwardIngressLogs'?: boolean;
4039
+ /** Forward mesh logs from your workloads Example: true */
4040
+ 'forwardMeshLogs'?: boolean;
4041
+ };
3467
4042
  /** The type of the log sink. Example: "papertrail" */
3468
4043
  'sinkType': 'papertrail';
3469
4044
  /** Papertrail Sink Schema. */
@@ -3491,6 +4066,16 @@ type CreateLogsinkData = {
3491
4066
  'restricted'?: boolean;
3492
4067
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3493
4068
  'projects'?: string[];
4069
+ 'options'?: {
4070
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4071
+ 'useCustomLabels'?: boolean;
4072
+ /** Forward CDN logs from your workloads Example: true */
4073
+ 'forwardCdnLogs'?: boolean;
4074
+ /** Forward ingress logs from your workloads Example: true */
4075
+ 'forwardIngressLogs'?: boolean;
4076
+ /** Forward mesh logs from your workloads Example: true */
4077
+ 'forwardMeshLogs'?: boolean;
4078
+ };
3494
4079
  /** The type of the log sink. Example: "aws_s3" */
3495
4080
  'sinkType': 'aws_s3';
3496
4081
  /** Details about the AWS S3 log sink. */
@@ -3520,6 +4105,16 @@ type CreateLogsinkData = {
3520
4105
  'restricted'?: boolean;
3521
4106
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3522
4107
  'projects'?: string[];
4108
+ 'options'?: {
4109
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4110
+ 'useCustomLabels'?: boolean;
4111
+ /** Forward CDN logs from your workloads Example: true */
4112
+ 'forwardCdnLogs'?: boolean;
4113
+ /** Forward ingress logs from your workloads Example: true */
4114
+ 'forwardIngressLogs'?: boolean;
4115
+ /** Forward mesh logs from your workloads Example: true */
4116
+ 'forwardMeshLogs'?: boolean;
4117
+ };
3523
4118
  /** The type of the log sink. Example: "http" */
3524
4119
  'sinkType': 'http';
3525
4120
  /** Details about the HTTP log sink. */
@@ -3542,6 +4137,16 @@ type CreateLogsinkData = {
3542
4137
  'restricted'?: boolean;
3543
4138
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3544
4139
  'projects'?: string[];
4140
+ 'options'?: {
4141
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4142
+ 'useCustomLabels'?: boolean;
4143
+ /** Forward CDN logs from your workloads Example: true */
4144
+ 'forwardCdnLogs'?: boolean;
4145
+ /** Forward ingress logs from your workloads Example: true */
4146
+ 'forwardIngressLogs'?: boolean;
4147
+ /** Forward mesh logs from your workloads Example: true */
4148
+ 'forwardMeshLogs'?: boolean;
4149
+ };
3545
4150
  /** The type of the log sink. Example: "logdna" */
3546
4151
  'sinkType': 'logdna';
3547
4152
  /** Details about the LogDNA log sink. */
@@ -3558,6 +4163,16 @@ type CreateLogsinkData = {
3558
4163
  'restricted'?: boolean;
3559
4164
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3560
4165
  'projects'?: string[];
4166
+ 'options'?: {
4167
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4168
+ 'useCustomLabels'?: boolean;
4169
+ /** Forward CDN logs from your workloads Example: true */
4170
+ 'forwardCdnLogs'?: boolean;
4171
+ /** Forward ingress logs from your workloads Example: true */
4172
+ 'forwardIngressLogs'?: boolean;
4173
+ /** Forward mesh logs from your workloads Example: true */
4174
+ 'forwardMeshLogs'?: boolean;
4175
+ };
3561
4176
  /** The type of the log sink. Example: "betterStack" */
3562
4177
  'sinkType': 'betterStack';
3563
4178
  /** Details about the Better Stack log sink. */
@@ -3574,6 +4189,16 @@ type CreateLogsinkData = {
3574
4189
  'restricted'?: boolean;
3575
4190
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3576
4191
  'projects'?: string[];
4192
+ 'options'?: {
4193
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4194
+ 'useCustomLabels'?: boolean;
4195
+ /** Forward CDN logs from your workloads Example: true */
4196
+ 'forwardCdnLogs'?: boolean;
4197
+ /** Forward ingress logs from your workloads Example: true */
4198
+ 'forwardIngressLogs'?: boolean;
4199
+ /** Forward mesh logs from your workloads Example: true */
4200
+ 'forwardMeshLogs'?: boolean;
4201
+ };
3577
4202
  /** The type of the log sink. Example: "honeycomb" */
3578
4203
  'sinkType': 'honeycomb';
3579
4204
  /** Details about the Honeycomb log sink. */
@@ -3592,6 +4217,16 @@ type CreateLogsinkData = {
3592
4217
  'restricted'?: boolean;
3593
4218
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3594
4219
  'projects'?: string[];
4220
+ 'options'?: {
4221
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4222
+ 'useCustomLabels'?: boolean;
4223
+ /** Forward CDN logs from your workloads Example: true */
4224
+ 'forwardCdnLogs'?: boolean;
4225
+ /** Forward ingress logs from your workloads Example: true */
4226
+ 'forwardIngressLogs'?: boolean;
4227
+ /** Forward mesh logs from your workloads Example: true */
4228
+ 'forwardMeshLogs'?: boolean;
4229
+ };
3595
4230
  /** The type of the log sink. Example: "logzio" */
3596
4231
  'sinkType': 'logzio';
3597
4232
  /** Details about the Logz.io log sink. */
@@ -3610,6 +4245,16 @@ type CreateLogsinkData = {
3610
4245
  'restricted'?: boolean;
3611
4246
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3612
4247
  'projects'?: string[];
4248
+ 'options'?: {
4249
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4250
+ 'useCustomLabels'?: boolean;
4251
+ /** Forward CDN logs from your workloads Example: true */
4252
+ 'forwardCdnLogs'?: boolean;
4253
+ /** Forward ingress logs from your workloads Example: true */
4254
+ 'forwardIngressLogs'?: boolean;
4255
+ /** Forward mesh logs from your workloads Example: true */
4256
+ 'forwardMeshLogs'?: boolean;
4257
+ };
3613
4258
  /** The type of the log sink. Example: "axiom" */
3614
4259
  'sinkType': 'axiom';
3615
4260
  /** Details about the Axiom log sink. */
@@ -3634,6 +4279,16 @@ type CreateLogsinkData = {
3634
4279
  'restricted'?: boolean;
3635
4280
  /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
3636
4281
  'projects'?: string[];
4282
+ 'options'?: {
4283
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
4284
+ 'useCustomLabels'?: boolean;
4285
+ /** Forward CDN logs from your workloads Example: true */
4286
+ 'forwardCdnLogs'?: boolean;
4287
+ /** Forward ingress logs from your workloads Example: true */
4288
+ 'forwardIngressLogs'?: boolean;
4289
+ /** Forward mesh logs from your workloads Example: true */
4290
+ 'forwardMeshLogs'?: boolean;
4291
+ };
3637
4292
  /** The type of the log sink. Example: "newRelic" */
3638
4293
  'sinkType': 'newRelic';
3639
4294
  /** Details about the New Relic log sink. */
@@ -4846,23 +5501,23 @@ type CreateProjectResult = {
4846
5501
  'networking'?: {
4847
5502
  /** Projects from which ingress request should be permitted. */
4848
5503
  'allowedIngressProjects'?: string[];
4849
- /** Defines this project's tailscale sidecar settings */
5504
+ /** Defines this project's Tailscale sidecar settings */
4850
5505
  'tailscale'?: {
4851
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5506
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
4852
5507
  'enabled'?: boolean;
4853
5508
  'restrictions'?: {
4854
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5509
+ /** Whether or not to restrict the Tailscale sidecar to run only on resources with specific tags */
4855
5510
  'enabled': boolean;
4856
- /** The tags which determine whether tailscale sidecar should be added */
5511
+ /** The tags which determine whether Tailscale sidecar should be added */
4857
5512
  'tags'?: string[];
4858
5513
  };
4859
5514
  'options'?: {
4860
5515
  'cpuLimit'?: string;
4861
5516
  'memoryLimit'?: string;
4862
5517
  };
4863
- /** Relevant tailscale secrets */
5518
+ /** Relevant Tailscale secrets */
4864
5519
  'secrets'?: {
4865
- /** tailscale auth key which is required for enabling tailscale */
5520
+ /** Tailscale auth key (required for enabling Tailscale) */
4866
5521
  'authKey'?: string;
4867
5522
  };
4868
5523
  };
@@ -4921,23 +5576,23 @@ type PutProjectResult = {
4921
5576
  'networking'?: {
4922
5577
  /** Projects from which ingress request should be permitted. */
4923
5578
  'allowedIngressProjects'?: string[];
4924
- /** Defines this project's tailscale sidecar settings */
5579
+ /** Defines this project's Tailscale sidecar settings */
4925
5580
  'tailscale'?: {
4926
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5581
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
4927
5582
  'enabled'?: boolean;
4928
5583
  'restrictions'?: {
4929
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5584
+ /** Whether or not to restrict the Tailscale sidecar to run only on resources with specific tags */
4930
5585
  'enabled': boolean;
4931
- /** The tags which determine whether tailscale sidecar should be added */
5586
+ /** The tags which determine whether Tailscale sidecar should be added */
4932
5587
  'tags'?: string[];
4933
5588
  };
4934
5589
  'options'?: {
4935
5590
  'cpuLimit'?: string;
4936
5591
  'memoryLimit'?: string;
4937
5592
  };
4938
- /** Relevant tailscale secrets */
5593
+ /** Relevant Tailscale secrets */
4939
5594
  'secrets'?: {
4940
- /** tailscale auth key which is required for enabling tailscale */
5595
+ /** Tailscale auth key (required for enabling Tailscale) */
4941
5596
  'authKey'?: string;
4942
5597
  };
4943
5598
  };
@@ -4996,23 +5651,23 @@ type PatchProjectResult = {
4996
5651
  'networking'?: {
4997
5652
  /** Projects from which ingress request should be permitted. */
4998
5653
  'allowedIngressProjects'?: string[];
4999
- /** Defines this project's tailscale sidecar settings */
5654
+ /** Defines this project's Tailscale sidecar settings */
5000
5655
  'tailscale'?: {
5001
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5656
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5002
5657
  'enabled'?: boolean;
5003
5658
  'restrictions'?: {
5004
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5659
+ /** Whether or not to restrict the Tailscale sidecar to run only on resources with specific tags */
5005
5660
  'enabled': boolean;
5006
- /** The tags which determine whether tailscale sidecar should be added */
5661
+ /** The tags which determine whether Tailscale sidecar should be added */
5007
5662
  'tags'?: string[];
5008
5663
  };
5009
5664
  'options'?: {
5010
5665
  'cpuLimit'?: string;
5011
5666
  'memoryLimit'?: string;
5012
5667
  };
5013
- /** Relevant tailscale secrets */
5668
+ /** Relevant Tailscale secrets */
5014
5669
  'secrets'?: {
5015
- /** tailscale auth key which is required for enabling tailscale */
5670
+ /** Tailscale auth key (required for enabling Tailscale) */
5016
5671
  'authKey'?: string;
5017
5672
  };
5018
5673
  };
@@ -5039,16 +5694,16 @@ type PatchProjectData = {
5039
5694
  /** Projects from which ingress request should be permitted. */
5040
5695
  'allowedIngressProjects'?: string[];
5041
5696
  'tailscale'?: {
5042
- /** Whether or not to inject a tailscale sidecar for this project's resources */
5697
+ /** Whether or not to inject a Tailscale sidecar for this project's resources */
5043
5698
  'enabled'?: boolean;
5044
5699
  'restrictions'?: {
5045
- /** Whether or not to restrict the tailscale sidecar to run only on resources with specific tags */
5700
+ /** Whether or not to restrict the Tailscale sidecar to run only on resources with specific tags */
5046
5701
  'enabled'?: boolean;
5047
- /** The tags which determine whether tailscale sidecar should be added */
5702
+ /** The tags which determine whether Tailscale sidecar should be added */
5048
5703
  'tags'?: string[];
5049
5704
  };
5050
5705
  'secrets'?: {
5051
- /** tailscale auth key which is required for enabling tailscale */
5706
+ /** Tailscale auth key (required for enabling Tailscale) */
5052
5707
  'authKey'?: string;
5053
5708
  };
5054
5709
  };
@@ -6935,6 +7590,7 @@ type CreateJobCronResult = {
6935
7590
  /** Image registry url of the deployed image. */
6936
7591
  'imageUrl'?: string;
6937
7592
  };
7593
+ /** Build engine */
6938
7594
  'buildSettings'?: {
6939
7595
  'storage'?: {
6940
7596
  'ephemeralStorage'?: {
@@ -7199,6 +7855,7 @@ type CreateJobCronData = {
7199
7855
  };
7200
7856
  };
7201
7857
  };
7858
+ /** Build engine */
7202
7859
  'buildSettings'?: {
7203
7860
  'storage'?: {
7204
7861
  'ephemeralStorage'?: {
@@ -7446,6 +8103,7 @@ type PutJobCronResult = {
7446
8103
  /** Image registry url of the deployed image. */
7447
8104
  'imageUrl'?: string;
7448
8105
  };
8106
+ /** Build engine */
7449
8107
  'buildSettings'?: {
7450
8108
  'storage'?: {
7451
8109
  'ephemeralStorage'?: {
@@ -7710,6 +8368,7 @@ type PutJobCronData = {
7710
8368
  };
7711
8369
  };
7712
8370
  };
8371
+ /** Build engine */
7713
8372
  'buildSettings'?: {
7714
8373
  'storage'?: {
7715
8374
  'ephemeralStorage'?: {
@@ -7957,6 +8616,7 @@ type PatchJobCronResult = {
7957
8616
  /** Image registry url of the deployed image. */
7958
8617
  'imageUrl'?: string;
7959
8618
  };
8619
+ /** Build engine */
7960
8620
  'buildSettings'?: {
7961
8621
  'storage'?: {
7962
8622
  'ephemeralStorage'?: {
@@ -8279,6 +8939,7 @@ type CreateJobManualResult = {
8279
8939
  /** Image registry url of the deployed image. */
8280
8940
  'imageUrl'?: string;
8281
8941
  };
8942
+ /** Build engine */
8282
8943
  'buildSettings'?: {
8283
8944
  'storage'?: {
8284
8945
  'ephemeralStorage'?: {
@@ -8543,6 +9204,7 @@ type CreateJobManualData = {
8543
9204
  };
8544
9205
  };
8545
9206
  };
9207
+ /** Build engine */
8546
9208
  'buildSettings'?: {
8547
9209
  'storage'?: {
8548
9210
  'ephemeralStorage'?: {
@@ -8778,6 +9440,7 @@ type PutJobManualResult = {
8778
9440
  /** Image registry url of the deployed image. */
8779
9441
  'imageUrl'?: string;
8780
9442
  };
9443
+ /** Build engine */
8781
9444
  'buildSettings'?: {
8782
9445
  'storage'?: {
8783
9446
  'ephemeralStorage'?: {
@@ -9042,6 +9705,7 @@ type PutJobManualData = {
9042
9705
  };
9043
9706
  };
9044
9707
  };
9708
+ /** Build engine */
9045
9709
  'buildSettings'?: {
9046
9710
  'storage'?: {
9047
9711
  'ephemeralStorage'?: {
@@ -9277,6 +9941,7 @@ type PatchJobManualResult = {
9277
9941
  /** Image registry url of the deployed image. */
9278
9942
  'imageUrl'?: string;
9279
9943
  };
9944
+ /** Build engine */
9280
9945
  'buildSettings'?: {
9281
9946
  'storage'?: {
9282
9947
  'ephemeralStorage'?: {
@@ -12409,6 +13074,7 @@ type CreateServiceBuildResult = {
12409
13074
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12410
13075
  'vcsLinkId'?: string;
12411
13076
  };
13077
+ /** Build engine */
12412
13078
  'buildSettings': {
12413
13079
  'storage'?: {
12414
13080
  'ephemeralStorage'?: {
@@ -12547,6 +13213,7 @@ type CreateServiceBuildData = {
12547
13213
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12548
13214
  'vcsLinkId'?: string;
12549
13215
  };
13216
+ /** Build engine */
12550
13217
  'buildSettings': {
12551
13218
  'storage'?: {
12552
13219
  'ephemeralStorage'?: {
@@ -12657,6 +13324,7 @@ type PutServiceBuildResult = {
12657
13324
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12658
13325
  'vcsLinkId'?: string;
12659
13326
  };
13327
+ /** Build engine */
12660
13328
  'buildSettings': {
12661
13329
  'storage'?: {
12662
13330
  'ephemeralStorage'?: {
@@ -12795,6 +13463,7 @@ type PutServiceBuildData = {
12795
13463
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12796
13464
  'vcsLinkId'?: string;
12797
13465
  };
13466
+ /** Build engine */
12798
13467
  'buildSettings': {
12799
13468
  'storage'?: {
12800
13469
  'ephemeralStorage'?: {
@@ -12905,6 +13574,7 @@ type PatchServiceBuildResult = {
12905
13574
  /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `vcsLinkId` is provided, Northflank will instead use your linked account with that ID. */
12906
13575
  'vcsLinkId'?: string;
12907
13576
  };
13577
+ /** Build engine */
12908
13578
  'buildSettings': {
12909
13579
  'storage'?: {
12910
13580
  'ephemeralStorage'?: {
@@ -13156,6 +13826,13 @@ type CreateServiceCombinedResult = {
13156
13826
  /** The action for this rule. Example: "DENY" */
13157
13827
  'action': 'ALLOW' | 'DENY';
13158
13828
  }[];
13829
+ /** Configure port authentication via SSO */
13830
+ 'sso'?: {
13831
+ /** ID of the SSO organization that the user will have to be a member of */
13832
+ 'organizationId'?: string;
13833
+ /** Array of directory groups that will have access */
13834
+ 'directoryGroupIds'?: string[];
13835
+ };
13159
13836
  };
13160
13837
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13161
13838
  'domains'?: string[];
@@ -13188,6 +13865,7 @@ type CreateServiceCombinedResult = {
13188
13865
  /** Branch identifier for the bundle. */
13189
13866
  'branch': string;
13190
13867
  };
13868
+ /** Build engine */
13191
13869
  'buildSettings': {
13192
13870
  'storage'?: {
13193
13871
  'ephemeralStorage'?: {
@@ -13343,6 +14021,7 @@ type CreateServiceCombinedResult = {
13343
14021
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13344
14022
  'shmSize'?: number;
13345
14023
  };
14024
+ /** Roll out strategy of the service */
13346
14025
  'strategy'?: {
13347
14026
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13348
14027
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -13457,6 +14136,7 @@ type CreateServiceCombinedData = {
13457
14136
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13458
14137
  'shmSize'?: number;
13459
14138
  };
14139
+ /** Roll out strategy of the service */
13460
14140
  'strategy'?: {
13461
14141
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13462
14142
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -13497,6 +14177,13 @@ type CreateServiceCombinedData = {
13497
14177
  /** The action for this rule. Example: "DENY" */
13498
14178
  'action': 'ALLOW' | 'DENY';
13499
14179
  }[];
14180
+ /** Configure port authentication via SSO */
14181
+ 'sso'?: {
14182
+ /** ID of the SSO organization that the user will have to be a member of */
14183
+ 'organizationId'?: string;
14184
+ /** Array of directory groups that will have access */
14185
+ 'directoryGroupIds'?: string[];
14186
+ };
13500
14187
  };
13501
14188
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13502
14189
  'domains'?: string[];
@@ -13529,6 +14216,7 @@ type CreateServiceCombinedData = {
13529
14216
  /** Branch identifier for the bundle. */
13530
14217
  'branch': string;
13531
14218
  };
14219
+ /** Build engine */
13532
14220
  'buildSettings': {
13533
14221
  'storage'?: {
13534
14222
  'ephemeralStorage'?: {
@@ -13702,6 +14390,13 @@ type PutServiceCombinedResult = {
13702
14390
  /** The action for this rule. Example: "DENY" */
13703
14391
  'action': 'ALLOW' | 'DENY';
13704
14392
  }[];
14393
+ /** Configure port authentication via SSO */
14394
+ 'sso'?: {
14395
+ /** ID of the SSO organization that the user will have to be a member of */
14396
+ 'organizationId'?: string;
14397
+ /** Array of directory groups that will have access */
14398
+ 'directoryGroupIds'?: string[];
14399
+ };
13705
14400
  };
13706
14401
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
13707
14402
  'domains'?: string[];
@@ -13734,6 +14429,7 @@ type PutServiceCombinedResult = {
13734
14429
  /** Branch identifier for the bundle. */
13735
14430
  'branch': string;
13736
14431
  };
14432
+ /** Build engine */
13737
14433
  'buildSettings': {
13738
14434
  'storage'?: {
13739
14435
  'ephemeralStorage'?: {
@@ -13889,6 +14585,7 @@ type PutServiceCombinedResult = {
13889
14585
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
13890
14586
  'shmSize'?: number;
13891
14587
  };
14588
+ /** Roll out strategy of the service */
13892
14589
  'strategy'?: {
13893
14590
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
13894
14591
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -14003,6 +14700,7 @@ type PutServiceCombinedData = {
14003
14700
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14004
14701
  'shmSize'?: number;
14005
14702
  };
14703
+ /** Roll out strategy of the service */
14006
14704
  'strategy'?: {
14007
14705
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14008
14706
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -14043,6 +14741,13 @@ type PutServiceCombinedData = {
14043
14741
  /** The action for this rule. Example: "DENY" */
14044
14742
  'action': 'ALLOW' | 'DENY';
14045
14743
  }[];
14744
+ /** Configure port authentication via SSO */
14745
+ 'sso'?: {
14746
+ /** ID of the SSO organization that the user will have to be a member of */
14747
+ 'organizationId'?: string;
14748
+ /** Array of directory groups that will have access */
14749
+ 'directoryGroupIds'?: string[];
14750
+ };
14046
14751
  };
14047
14752
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14048
14753
  'domains'?: string[];
@@ -14075,6 +14780,7 @@ type PutServiceCombinedData = {
14075
14780
  /** Branch identifier for the bundle. */
14076
14781
  'branch': string;
14077
14782
  };
14783
+ /** Build engine */
14078
14784
  'buildSettings': {
14079
14785
  'storage'?: {
14080
14786
  'ephemeralStorage'?: {
@@ -14248,6 +14954,13 @@ type PatchServiceCombinedResult = {
14248
14954
  /** The action for this rule. Example: "DENY" */
14249
14955
  'action': 'ALLOW' | 'DENY';
14250
14956
  }[];
14957
+ /** Configure port authentication via SSO */
14958
+ 'sso'?: {
14959
+ /** ID of the SSO organization that the user will have to be a member of */
14960
+ 'organizationId'?: string;
14961
+ /** Array of directory groups that will have access */
14962
+ 'directoryGroupIds'?: string[];
14963
+ };
14251
14964
  };
14252
14965
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14253
14966
  'domains'?: string[];
@@ -14280,6 +14993,7 @@ type PatchServiceCombinedResult = {
14280
14993
  /** Branch identifier for the bundle. */
14281
14994
  'branch': string;
14282
14995
  };
14996
+ /** Build engine */
14283
14997
  'buildSettings': {
14284
14998
  'storage'?: {
14285
14999
  'ephemeralStorage'?: {
@@ -14435,6 +15149,7 @@ type PatchServiceCombinedResult = {
14435
15149
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14436
15150
  'shmSize'?: number;
14437
15151
  };
15152
+ /** Roll out strategy of the service */
14438
15153
  'strategy'?: {
14439
15154
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14440
15155
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -14540,6 +15255,7 @@ type PatchServiceCombinedData = {
14540
15255
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14541
15256
  'shmSize'?: number;
14542
15257
  };
15258
+ /** Roll out strategy of the service */
14543
15259
  'strategy'?: {
14544
15260
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14545
15261
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -14580,6 +15296,13 @@ type PatchServiceCombinedData = {
14580
15296
  /** The action for this rule. Example: "DENY" */
14581
15297
  'action': 'ALLOW' | 'DENY';
14582
15298
  }[];
15299
+ /** Configure port authentication via SSO */
15300
+ 'sso'?: {
15301
+ /** ID of the SSO organization that the user will have to be a member of */
15302
+ 'organizationId'?: string;
15303
+ /** Array of directory groups that will have access */
15304
+ 'directoryGroupIds'?: string[];
15305
+ };
14583
15306
  };
14584
15307
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14585
15308
  'domains'?: string[];
@@ -14774,6 +15497,13 @@ type CreateServiceDeploymentResult = {
14774
15497
  /** The action for this rule. Example: "DENY" */
14775
15498
  'action': 'ALLOW' | 'DENY';
14776
15499
  }[];
15500
+ /** Configure port authentication via SSO */
15501
+ 'sso'?: {
15502
+ /** ID of the SSO organization that the user will have to be a member of */
15503
+ 'organizationId'?: string;
15504
+ /** Array of directory groups that will have access */
15505
+ 'directoryGroupIds'?: string[];
15506
+ };
14777
15507
  };
14778
15508
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
14779
15509
  'domains'?: string[];
@@ -14875,6 +15605,7 @@ type CreateServiceDeploymentResult = {
14875
15605
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14876
15606
  'shmSize'?: number;
14877
15607
  };
15608
+ /** Roll out strategy of the service */
14878
15609
  'strategy'?: {
14879
15610
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
14880
15611
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -14997,6 +15728,7 @@ type CreateServiceDeploymentData = {
14997
15728
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
14998
15729
  'shmSize'?: number;
14999
15730
  };
15731
+ /** Roll out strategy of the service */
15000
15732
  'strategy'?: {
15001
15733
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15002
15734
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15053,6 +15785,7 @@ type CreateServiceDeploymentData = {
15053
15785
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15054
15786
  'shmSize'?: number;
15055
15787
  };
15788
+ /** Roll out strategy of the service */
15056
15789
  'strategy'?: {
15057
15790
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15058
15791
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15105,6 +15838,7 @@ type CreateServiceDeploymentData = {
15105
15838
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15106
15839
  'shmSize'?: number;
15107
15840
  };
15841
+ /** Roll out strategy of the service */
15108
15842
  'strategy'?: {
15109
15843
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15110
15844
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15145,6 +15879,13 @@ type CreateServiceDeploymentData = {
15145
15879
  /** The action for this rule. Example: "DENY" */
15146
15880
  'action': 'ALLOW' | 'DENY';
15147
15881
  }[];
15882
+ /** Configure port authentication via SSO */
15883
+ 'sso'?: {
15884
+ /** ID of the SSO organization that the user will have to be a member of */
15885
+ 'organizationId'?: string;
15886
+ /** Array of directory groups that will have access */
15887
+ 'directoryGroupIds'?: string[];
15888
+ };
15148
15889
  };
15149
15890
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15150
15891
  'domains'?: string[];
@@ -15262,6 +16003,13 @@ type PutServiceDeploymentResult = {
15262
16003
  /** The action for this rule. Example: "DENY" */
15263
16004
  'action': 'ALLOW' | 'DENY';
15264
16005
  }[];
16006
+ /** Configure port authentication via SSO */
16007
+ 'sso'?: {
16008
+ /** ID of the SSO organization that the user will have to be a member of */
16009
+ 'organizationId'?: string;
16010
+ /** Array of directory groups that will have access */
16011
+ 'directoryGroupIds'?: string[];
16012
+ };
15265
16013
  };
15266
16014
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15267
16015
  'domains'?: string[];
@@ -15363,6 +16111,7 @@ type PutServiceDeploymentResult = {
15363
16111
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15364
16112
  'shmSize'?: number;
15365
16113
  };
16114
+ /** Roll out strategy of the service */
15366
16115
  'strategy'?: {
15367
16116
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15368
16117
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15485,6 +16234,7 @@ type PutServiceDeploymentData = {
15485
16234
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15486
16235
  'shmSize'?: number;
15487
16236
  };
16237
+ /** Roll out strategy of the service */
15488
16238
  'strategy'?: {
15489
16239
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15490
16240
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15541,6 +16291,7 @@ type PutServiceDeploymentData = {
15541
16291
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15542
16292
  'shmSize'?: number;
15543
16293
  };
16294
+ /** Roll out strategy of the service */
15544
16295
  'strategy'?: {
15545
16296
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15546
16297
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15593,6 +16344,7 @@ type PutServiceDeploymentData = {
15593
16344
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15594
16345
  'shmSize'?: number;
15595
16346
  };
16347
+ /** Roll out strategy of the service */
15596
16348
  'strategy'?: {
15597
16349
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15598
16350
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15633,6 +16385,13 @@ type PutServiceDeploymentData = {
15633
16385
  /** The action for this rule. Example: "DENY" */
15634
16386
  'action': 'ALLOW' | 'DENY';
15635
16387
  }[];
16388
+ /** Configure port authentication via SSO */
16389
+ 'sso'?: {
16390
+ /** ID of the SSO organization that the user will have to be a member of */
16391
+ 'organizationId'?: string;
16392
+ /** Array of directory groups that will have access */
16393
+ 'directoryGroupIds'?: string[];
16394
+ };
15636
16395
  };
15637
16396
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15638
16397
  'domains'?: string[];
@@ -15750,6 +16509,13 @@ type PatchServiceDeploymentResult = {
15750
16509
  /** The action for this rule. Example: "DENY" */
15751
16510
  'action': 'ALLOW' | 'DENY';
15752
16511
  }[];
16512
+ /** Configure port authentication via SSO */
16513
+ 'sso'?: {
16514
+ /** ID of the SSO organization that the user will have to be a member of */
16515
+ 'organizationId'?: string;
16516
+ /** Array of directory groups that will have access */
16517
+ 'directoryGroupIds'?: string[];
16518
+ };
15753
16519
  };
15754
16520
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
15755
16521
  'domains'?: string[];
@@ -15851,6 +16617,7 @@ type PatchServiceDeploymentResult = {
15851
16617
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15852
16618
  'shmSize'?: number;
15853
16619
  };
16620
+ /** Roll out strategy of the service */
15854
16621
  'strategy'?: {
15855
16622
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15856
16623
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -15973,6 +16740,7 @@ type PatchServiceDeploymentData = {
15973
16740
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
15974
16741
  'shmSize'?: number;
15975
16742
  };
16743
+ /** Roll out strategy of the service */
15976
16744
  'strategy'?: {
15977
16745
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
15978
16746
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -16029,6 +16797,7 @@ type PatchServiceDeploymentData = {
16029
16797
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
16030
16798
  'shmSize'?: number;
16031
16799
  };
16800
+ /** Roll out strategy of the service */
16032
16801
  'strategy'?: {
16033
16802
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
16034
16803
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -16081,6 +16850,7 @@ type PatchServiceDeploymentData = {
16081
16850
  /** Configures the amount of available memory-backed disk space available to /dev/shm */
16082
16851
  'shmSize'?: number;
16083
16852
  };
16853
+ /** Roll out strategy of the service */
16084
16854
  'strategy'?: {
16085
16855
  /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
16086
16856
  'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
@@ -16121,6 +16891,13 @@ type PatchServiceDeploymentData = {
16121
16891
  /** The action for this rule. Example: "DENY" */
16122
16892
  'action': 'ALLOW' | 'DENY';
16123
16893
  }[];
16894
+ /** Configure port authentication via SSO */
16895
+ 'sso'?: {
16896
+ /** ID of the SSO organization that the user will have to be a member of */
16897
+ 'organizationId'?: string;
16898
+ /** Array of directory groups that will have access */
16899
+ 'directoryGroupIds'?: string[];
16900
+ };
16124
16901
  };
16125
16902
  /** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
16126
16903
  'domains'?: string[];
@@ -16432,6 +17209,13 @@ type GetServiceResult = {
16432
17209
  /** The action for this rule. Example: "DENY" */
16433
17210
  'action': 'ALLOW' | 'DENY';
16434
17211
  }[];
17212
+ /** Configure SSO access control for this port. */
17213
+ 'sso'?: {
17214
+ /** Organization ID of the work OS organization that should be validated. Example: "org_uniquestringidentifier" */
17215
+ 'organizationId'?: string;
17216
+ /** List of directory groupIds, one of which the user has to be a member of. */
17217
+ 'directoryGroupIds'?: string[];
17218
+ };
16435
17219
  };
16436
17220
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
16437
17221
  'disableNfDomain'?: boolean;
@@ -17362,6 +18146,13 @@ type GetServicePortsResult = {
17362
18146
  /** The action for this rule. Example: "DENY" */
17363
18147
  'action': 'ALLOW' | 'DENY';
17364
18148
  }[];
18149
+ /** Configure SSO access control for this port. */
18150
+ 'sso'?: {
18151
+ /** Organization ID of the work OS organization that should be validated. Example: "org_uniquestringidentifier" */
18152
+ 'organizationId'?: string;
18153
+ /** List of directory groupIds, one of which the user has to be a member of. */
18154
+ 'directoryGroupIds'?: string[];
18155
+ };
17365
18156
  };
17366
18157
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
17367
18158
  'disableNfDomain'?: boolean;
@@ -17428,6 +18219,13 @@ type UpdateServicePortsData = {
17428
18219
  /** The action for this rule. Example: "DENY" */
17429
18220
  'action': 'ALLOW' | 'DENY';
17430
18221
  }[];
18222
+ /** Configure port authentication via SSO */
18223
+ 'sso'?: {
18224
+ /** ID of the SSO organization that the user will have to be a member of */
18225
+ 'organizationId'?: string;
18226
+ /** Array of directory groups that will have access */
18227
+ 'directoryGroupIds'?: string[];
18228
+ };
17431
18229
  };
17432
18230
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
17433
18231
  'disableNfDomain'?: boolean;
@@ -18047,6 +18845,234 @@ declare class ListRegionsEndpoint extends GetApiEndpoint<ListRegionsRequest, Lis
18047
18845
  body: () => undefined;
18048
18846
  }
18049
18847
 
18848
+ type ListTagsResult = {
18849
+ /** A list of available resource tags. */
18850
+ 'tags': {
18851
+ /** Schedule workloads to spot nodes */
18852
+ 'useSpotNodes'?: boolean;
18853
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
18854
+ 'useOnDemandNodes'?: boolean;
18855
+ 'nodeAffinities'?: {
18856
+ 'preference'?: boolean;
18857
+ /** The node affinity weight. Required when `preference` is `true`. */
18858
+ 'weight'?: number;
18859
+ 'matchExpressions': {
18860
+ 'key': string;
18861
+ 'operator': 'In' | 'NotIn';
18862
+ 'values': string[];
18863
+ }[];
18864
+ }[];
18865
+ 'color'?: string;
18866
+ 'description'?: string;
18867
+ 'name': string;
18868
+ 'id': string;
18869
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
18870
+ 'createdAt'?: string;
18871
+ }[];
18872
+ };
18873
+ type ListTagsCall = (opts: ListTagsRequest) => Promise<ApiCallResponse<ListTagsResult>>;
18874
+ type ListTagsRequest = {
18875
+ options?: ListTagsOptions;
18876
+ };
18877
+ type ListTagsOptions = {
18878
+ /** The number of results to display per request. Maximum of 100 results per page. */
18879
+ 'per_page'?: number;
18880
+ /** The page number to access. */
18881
+ 'page'?: number;
18882
+ /** The cursor returned from the previous page of results, used to request the next page. */
18883
+ 'cursor'?: string;
18884
+ };
18885
+ /** List the resource tags for this entity. */
18886
+ declare class ListTagsEndpoint extends GetApiEndpoint<ListTagsRequest, ListTagsResult> {
18887
+ description: string;
18888
+ withAuth: boolean;
18889
+ requiredPermissions: string;
18890
+ endpointUrl: (opts: ListTagsRequest) => string;
18891
+ body: () => undefined;
18892
+ }
18893
+
18894
+ type AddTagResult = {
18895
+ /** Schedule workloads to spot nodes */
18896
+ 'useSpotNodes'?: boolean;
18897
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
18898
+ 'useOnDemandNodes'?: boolean;
18899
+ 'nodeAffinities'?: {
18900
+ 'preference'?: boolean;
18901
+ /** The node affinity weight. Required when `preference` is `true`. */
18902
+ 'weight'?: number;
18903
+ 'matchExpressions': {
18904
+ 'key': string;
18905
+ 'operator': 'In' | 'NotIn';
18906
+ 'values': string[];
18907
+ }[];
18908
+ }[];
18909
+ 'color'?: string;
18910
+ 'description'?: string;
18911
+ 'name': string;
18912
+ 'id': string;
18913
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
18914
+ 'createdAt'?: string;
18915
+ };
18916
+ type AddTagCall = (opts: AddTagRequest) => Promise<ApiCallResponse<AddTagResult>>;
18917
+ type AddTagRequest = {
18918
+ data: AddTagData;
18919
+ };
18920
+ type AddTagData = {
18921
+ /** Schedule workloads to spot nodes */
18922
+ 'useSpotNodes'?: boolean;
18923
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
18924
+ 'useOnDemandNodes'?: boolean;
18925
+ 'nodeAffinities'?: {
18926
+ 'preference'?: boolean;
18927
+ /** The node affinity weight. Required when `preference` is `true`. */
18928
+ 'weight'?: number;
18929
+ 'matchExpressions': {
18930
+ 'key': string;
18931
+ 'operator': 'In' | 'NotIn';
18932
+ 'values': string[];
18933
+ }[];
18934
+ }[];
18935
+ 'color'?: string;
18936
+ 'description'?: string;
18937
+ 'name': string;
18938
+ };
18939
+ /** Add a new resource tag for this entity. */
18940
+ declare class AddTagEndpoint extends PostApiEndpoint<AddTagRequest, AddTagResult> {
18941
+ description: string;
18942
+ withAuth: boolean;
18943
+ requiredPermissions: string;
18944
+ endpointUrl: (opts: AddTagRequest) => string;
18945
+ body: (payload: AddTagRequest) => string;
18946
+ }
18947
+
18948
+ type PutTagResult = any;
18949
+ type PutTagCall = (opts: PutTagRequest) => Promise<ApiCallResponse<PutTagResult>>;
18950
+ type PutTagRequest = {
18951
+ parameters: PutTagParameters;
18952
+ data: PutTagData;
18953
+ };
18954
+ type PutTagParameters = {
18955
+ /** ID of the tag */ 'resourceTagId': string;
18956
+ };
18957
+ type PutTagData = {
18958
+ /** Schedule workloads to spot nodes */
18959
+ 'useSpotNodes'?: boolean;
18960
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
18961
+ 'useOnDemandNodes'?: boolean;
18962
+ 'nodeAffinities'?: {
18963
+ 'preference'?: boolean;
18964
+ /** The node affinity weight. Required when `preference` is `true`. */
18965
+ 'weight'?: number;
18966
+ 'matchExpressions': {
18967
+ 'key': string;
18968
+ 'operator': 'In' | 'NotIn';
18969
+ 'values': string[];
18970
+ }[];
18971
+ }[];
18972
+ 'color'?: string;
18973
+ 'description'?: string;
18974
+ 'name': string;
18975
+ };
18976
+ /** Update or create a resource tag. */
18977
+ declare class PutTagEndpoint extends PutApiEndpoint<PutTagRequest, PutTagResult> {
18978
+ description: string;
18979
+ withAuth: boolean;
18980
+ requiredPermissions: string;
18981
+ endpointUrl: (opts: PutTagRequest) => string;
18982
+ body: (payload: PutTagRequest) => string;
18983
+ }
18984
+
18985
+ type GetTagResult = {
18986
+ /** Schedule workloads to spot nodes */
18987
+ 'useSpotNodes'?: boolean;
18988
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
18989
+ 'useOnDemandNodes'?: boolean;
18990
+ 'nodeAffinities'?: {
18991
+ 'preference'?: boolean;
18992
+ /** The node affinity weight. Required when `preference` is `true`. */
18993
+ 'weight'?: number;
18994
+ 'matchExpressions': {
18995
+ 'key': string;
18996
+ 'operator': 'In' | 'NotIn';
18997
+ 'values': string[];
18998
+ }[];
18999
+ }[];
19000
+ 'color'?: string;
19001
+ 'description'?: string;
19002
+ 'name': string;
19003
+ 'id': string;
19004
+ /** time of creation Example: "2000-01-01T12:00:00.000Z" */
19005
+ 'createdAt'?: string;
19006
+ };
19007
+ type GetTagCall = (opts: GetTagRequest) => Promise<ApiCallResponse<GetTagResult>>;
19008
+ type GetTagRequest = {
19009
+ parameters: GetTagParameters;
19010
+ };
19011
+ type GetTagParameters = {
19012
+ /** ID of the tag */ 'resourceTagId': string;
19013
+ };
19014
+ /** View details for a given resource tag. */
19015
+ declare class GetTagEndpoint extends GetApiEndpoint<GetTagRequest, GetTagResult> {
19016
+ description: string;
19017
+ withAuth: boolean;
19018
+ requiredPermissions: string;
19019
+ endpointUrl: (opts: GetTagRequest) => string;
19020
+ body: () => undefined;
19021
+ }
19022
+
19023
+ type PatchTagResult = any;
19024
+ type PatchTagCall = (opts: PatchTagRequest) => Promise<ApiCallResponse<PatchTagResult>>;
19025
+ type PatchTagRequest = {
19026
+ parameters: PatchTagParameters;
19027
+ data: PatchTagData;
19028
+ };
19029
+ type PatchTagParameters = {
19030
+ /** ID of the tag */ 'resourceTagId': string;
19031
+ };
19032
+ type PatchTagData = {
19033
+ /** Schedule workloads to spot nodes */
19034
+ 'useSpotNodes'?: boolean;
19035
+ /** Also allow workloads to schedule to on demand nodes. Only relevant if you want workloads to schedule across both spot and on demand nodes */
19036
+ 'useOnDemandNodes'?: boolean;
19037
+ 'nodeAffinities'?: {
19038
+ 'preference'?: boolean;
19039
+ /** The node affinity weight. Required when `preference` is `true`. */
19040
+ 'weight'?: number;
19041
+ 'matchExpressions': {
19042
+ 'key': string;
19043
+ 'operator': 'In' | 'NotIn';
19044
+ 'values': string[];
19045
+ }[];
19046
+ }[];
19047
+ 'color'?: string;
19048
+ 'description'?: string;
19049
+ };
19050
+ /** Patch a resource tag. */
19051
+ declare class PatchTagEndpoint extends PatchApiEndpoint<PatchTagRequest, PatchTagResult> {
19052
+ description: string;
19053
+ withAuth: boolean;
19054
+ requiredPermissions: string;
19055
+ endpointUrl: (opts: PatchTagRequest) => string;
19056
+ body: (payload: PatchTagRequest) => string;
19057
+ }
19058
+
19059
+ type DeleteTagResult = any;
19060
+ type DeleteTagCall = (opts: DeleteTagRequest) => Promise<ApiCallResponse<DeleteTagResult>>;
19061
+ type DeleteTagRequest = {
19062
+ parameters: DeleteTagParameters;
19063
+ };
19064
+ type DeleteTagParameters = {
19065
+ /** ID of the tag */ 'resourceTagId': string;
19066
+ };
19067
+ /** Delete a resource tag. */
19068
+ declare class DeleteTagEndpoint extends DeleteApiEndpoint<DeleteTagRequest, DeleteTagResult> {
19069
+ description: string;
19070
+ withAuth: boolean;
19071
+ requiredPermissions: string;
19072
+ endpointUrl: (opts: DeleteTagRequest) => string;
19073
+ body: () => undefined;
19074
+ }
19075
+
18050
19076
  type ListTemplatesResult = {
18051
19077
  /** An array of template objects. */
18052
19078
  'templates': {
@@ -18218,6 +19244,42 @@ type CreateTemplateData = {
18218
19244
  /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
18219
19245
  'filePath': string;
18220
19246
  };
19247
+ } | {
19248
+ /** Name of the template. Example: "Example Template" */
19249
+ 'name': string;
19250
+ /** Description of the template. Example: "This is a sample template." */
19251
+ 'description'?: string;
19252
+ /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
19253
+ 'arguments'?: any;
19254
+ /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
19255
+ 'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
19256
+ /** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
19257
+ 'argumentOverrides'?: any;
19258
+ /** Additional options for the template creation. */
19259
+ 'options'?: {
19260
+ /** If true, the template will be ran immediately after creation. Example: true */
19261
+ 'runOnCreation'?: boolean;
19262
+ /** Argument overrides for the initial run. Valid only if `runOnCreation` is `true`. */
19263
+ 'runOnCreationArgumentOverrides'?: any;
19264
+ /** If true, the template will run automatically whenever it is updated. */
19265
+ 'autorun'?: boolean;
19266
+ };
19267
+ /** GitOps data for syncing this template with a file in version control. */
19268
+ 'gitops': {
19269
+ /** The VCS provider to use. Example: "github" */
19270
+ 'vcsService': 'bitbucket' | 'gitlab' | 'github' | 'self-hosted' | 'azure';
19271
+ /** If projectType is self-hosted, the ID of the self-hosted vcs to use. */
19272
+ 'selfHostedVcsId'?: string;
19273
+ /** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
19274
+ 'accountLogin'?: string;
19275
+ /** URL of the Git repo to sync the template with. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
19276
+ 'repoUrl': string;
19277
+ /** The name of the branch to use. Example: "main" */
19278
+ 'branch': string;
19279
+ /** The file path to the template in the repository. If using an existing template, it should be in JSON format. Example: "northflank.json" */
19280
+ 'filePath': string;
19281
+ };
19282
+ 'project'?: any;
18221
19283
  };
18222
19284
  /** Create a template */
18223
19285
  declare class CreateTemplateEndpoint extends PostApiEndpoint<CreateTemplateRequest, CreateTemplateResult> {
@@ -18758,6 +19820,7 @@ declare class ApiClient {
18758
19820
  buildMetricsRange: GetServiceBuildMetricsRangeCall;
18759
19821
  };
18760
19822
  volume: GetVolumeCall;
19823
+ tag: GetTagCall;
18761
19824
  template: GetTemplateCall;
18762
19825
  templateRun: GetTemplaterunCall;
18763
19826
  };
@@ -18793,6 +19856,7 @@ declare class ApiClient {
18793
19856
  services: ListServicesCall;
18794
19857
  volumes: ListVolumesCall;
18795
19858
  regions: ListRegionsCall;
19859
+ tags: ListTagsCall;
18796
19860
  templates: ListTemplatesCall;
18797
19861
  templateRuns: ListTemplaterunsCall;
18798
19862
  };
@@ -18890,6 +19954,7 @@ declare class ApiClient {
18890
19954
  secretLink: DeleteSecretlinkCall;
18891
19955
  service: DeleteServiceCall;
18892
19956
  volume: DeleteVolumeCall;
19957
+ tag: DeleteTagCall;
18893
19958
  template: DeleteTemplateCall;
18894
19959
  };
18895
19960
  import: {
@@ -18906,6 +19971,7 @@ declare class ApiClient {
18906
19971
  path: AddSubdomainPathCall;
18907
19972
  };
18908
19973
  registryCredentials: AddRegistrycredentialsCall;
19974
+ tag: AddTagCall;
18909
19975
  };
18910
19976
  assign: {
18911
19977
  subdomain: {
@@ -18957,6 +20023,7 @@ declare class ApiClient {
18957
20023
  combined: PutServiceCombinedCall;
18958
20024
  deployment: PutServiceDeploymentCall;
18959
20025
  };
20026
+ tag: PutTagCall;
18960
20027
  };
18961
20028
  patch: {
18962
20029
  project: PatchProjectCall;
@@ -18971,6 +20038,7 @@ declare class ApiClient {
18971
20038
  combined: PatchServiceCombinedCall;
18972
20039
  deployment: PatchServiceDeploymentCall;
18973
20040
  };
20041
+ tag: PatchTagCall;
18974
20042
  };
18975
20043
  backup: {
18976
20044
  addon: BackupAddonCall;
@@ -19107,6 +20175,7 @@ declare class ApiClient {
19107
20175
  runtimeEnvironmentDetails: GetServiceRuntimeenvironmentdetailsEndpoint;
19108
20176
  };
19109
20177
  volume: GetVolumeEndpoint;
20178
+ tag: GetTagEndpoint;
19110
20179
  template: GetTemplateEndpoint;
19111
20180
  templateRun: GetTemplaterunEndpoint;
19112
20181
  };
@@ -19142,6 +20211,7 @@ declare class ApiClient {
19142
20211
  services: ListServicesEndpoint;
19143
20212
  volumes: ListVolumesEndpoint;
19144
20213
  regions: ListRegionsEndpoint;
20214
+ tags: ListTagsEndpoint;
19145
20215
  templates: ListTemplatesEndpoint;
19146
20216
  templateRuns: ListTemplaterunsEndpoint;
19147
20217
  };
@@ -19239,6 +20309,7 @@ declare class ApiClient {
19239
20309
  secretLink: DeleteSecretlinkEndpoint;
19240
20310
  service: DeleteServiceEndpoint;
19241
20311
  volume: DeleteVolumeEndpoint;
20312
+ tag: DeleteTagEndpoint;
19242
20313
  template: DeleteTemplateEndpoint;
19243
20314
  };
19244
20315
  import: {
@@ -19255,6 +20326,7 @@ declare class ApiClient {
19255
20326
  path: AddSubdomainPathEndpoint;
19256
20327
  };
19257
20328
  registryCredentials: AddRegistrycredentialsEndpoint;
20329
+ tag: AddTagEndpoint;
19258
20330
  };
19259
20331
  assign: {
19260
20332
  subdomain: {
@@ -19306,6 +20378,7 @@ declare class ApiClient {
19306
20378
  combined: PutServiceCombinedEndpoint;
19307
20379
  deployment: PutServiceDeploymentEndpoint;
19308
20380
  };
20381
+ tag: PutTagEndpoint;
19309
20382
  };
19310
20383
  patch: {
19311
20384
  project: PatchProjectEndpoint;
@@ -19320,6 +20393,7 @@ declare class ApiClient {
19320
20393
  combined: PatchServiceCombinedEndpoint;
19321
20394
  deployment: PatchServiceDeploymentEndpoint;
19322
20395
  };
20396
+ tag: PatchTagEndpoint;
19323
20397
  };
19324
20398
  backup: {
19325
20399
  addon: BackupAddonEndpoint;
@@ -19395,4 +20469,4 @@ type ApiClientOpts = {
19395
20469
  customUserAgent?: string;
19396
20470
  };
19397
20471
 
19398
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
20472
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };