@northflank/js-client 0.7.21 → 0.7.23

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.
@@ -133,6 +133,7 @@ interface ApiCallResponse<R> {
133
133
  'cursor'?: string;
134
134
  /** The number of results returned by this request. Example: 1 */
135
135
  'count': number;
136
+ getNextPage: () => Promise<ApiCallResponse<R>>;
136
137
  };
137
138
  }
138
139
  interface ApiEndpoint<T, R> {
@@ -149,6 +150,7 @@ declare abstract class ApiEndpoint<T, R> {
149
150
  constructor(contextProvider: ApiClientContextProvider, opts: ApiClientOpts);
150
151
  private getDefaultHeaders;
151
152
  call: (opts: T) => Promise<ApiCallResponse<R>>;
153
+ protected executeCall(opts: T): Promise<ApiCallResponse<R>>;
152
154
  }
153
155
  declare abstract class GetApiEndpoint<T, R> extends ApiEndpoint<T, R> {
154
156
  method: string;
@@ -156,6 +158,10 @@ declare abstract class GetApiEndpoint<T, R> extends ApiEndpoint<T, R> {
156
158
  abstract endpointUrl(opts: T): string;
157
159
  abstract withAuth: boolean;
158
160
  }
161
+ declare abstract class GetApiEndpointPaginated<T, R> extends GetApiEndpoint<T, R> {
162
+ all: (opts: T) => Promise<ApiCallResponse<R>>;
163
+ call: (opts: T) => Promise<ApiCallResponse<R>>;
164
+ }
159
165
  declare abstract class PostApiEndpoint<T, R> extends ApiEndpoint<T, R> {
160
166
  method: string;
161
167
  abstract body(opts: T): any;
@@ -223,7 +229,9 @@ type ListServicesResult = {
223
229
  };
224
230
  }[];
225
231
  };
226
- type ListServicesCall = (opts: ListServicesRequest) => Promise<ApiCallResponse<ListServicesResult>>;
232
+ type ListServicesCall = ((opts: ListServicesRequest) => Promise<ApiCallResponse<ListServicesResult>>) & {
233
+ all: (opts: ListServicesRequest) => Promise<ApiCallResponse<ListServicesResult>>;
234
+ };
227
235
  type ListServicesRequest = {
228
236
  parameters: ListServicesParameters;
229
237
  options?: ListServicesOptions;
@@ -240,7 +248,7 @@ type ListServicesOptions = {
240
248
  'cursor'?: string;
241
249
  };
242
250
  /** Gets a list of services belonging to the project */
243
- declare class ListServicesEndpoint extends GetApiEndpoint<ListServicesRequest, ListServicesResult> {
251
+ declare class ListServicesEndpoint extends GetApiEndpointPaginated<ListServicesRequest, ListServicesResult> {
244
252
  description: string;
245
253
  withAuth: boolean;
246
254
  requiredPermissions: string;
@@ -270,7 +278,9 @@ type ListAddonsResult = {
270
278
  'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
271
279
  }[];
272
280
  };
273
- type ListAddonsCall = (opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>;
281
+ type ListAddonsCall = ((opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>) & {
282
+ all: (opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>;
283
+ };
274
284
  type ListAddonsRequest = {
275
285
  parameters: ListAddonsParameters;
276
286
  options?: ListAddonsOptions;
@@ -287,7 +297,7 @@ type ListAddonsOptions = {
287
297
  'cursor'?: string;
288
298
  };
289
299
  /** Gets a list of addons belonging to the project */
290
- declare class ListAddonsEndpoint extends GetApiEndpoint<ListAddonsRequest, ListAddonsResult> {
300
+ declare class ListAddonsEndpoint extends GetApiEndpointPaginated<ListAddonsRequest, ListAddonsResult> {
291
301
  description: string;
292
302
  withAuth: boolean;
293
303
  requiredPermissions: string;
@@ -320,7 +330,7 @@ declare class NorthflankPortForwarder extends EventEmitter {
320
330
  private proxyApiClient;
321
331
  private hostsFileMutex;
322
332
  private ipAllocationMutex;
323
- constructor(contextProvider: ApiClientContextProvider, listServices: ListServicesCall, listAddons: ListAddonsCall);
333
+ constructor(contextProvider: ApiClientContextProvider, listServices: ListServicesEndpoint, listAddons: ListAddonsEndpoint);
324
334
  withProjectForwarding<T = any>(parameters: {
325
335
  projectId: string;
326
336
  }, func: (p: {
@@ -1277,7 +1287,9 @@ type ListInvoicesResult = {
1277
1287
  'paid'?: boolean;
1278
1288
  };
1279
1289
  };
1280
- type ListInvoicesCall = (opts: ListInvoicesRequest) => Promise<ApiCallResponse<ListInvoicesResult>>;
1290
+ type ListInvoicesCall = ((opts: ListInvoicesRequest) => Promise<ApiCallResponse<ListInvoicesResult>>) & {
1291
+ all: (opts: ListInvoicesRequest) => Promise<ApiCallResponse<ListInvoicesResult>>;
1292
+ };
1281
1293
  type ListInvoicesRequest = {
1282
1294
  options?: ListInvoicesOptions;
1283
1295
  };
@@ -1290,7 +1302,7 @@ type ListInvoicesOptions = {
1290
1302
  'cursor'?: string;
1291
1303
  };
1292
1304
  /** Get a list of past invoices */
1293
- declare class ListInvoicesEndpoint extends GetApiEndpoint<ListInvoicesRequest, ListInvoicesResult> {
1305
+ declare class ListInvoicesEndpoint extends GetApiEndpointPaginated<ListInvoicesRequest, ListInvoicesResult> {
1294
1306
  description: string;
1295
1307
  withAuth: boolean;
1296
1308
  requiredPermissions: string;
@@ -1474,7 +1486,7 @@ type ListCloudClustersResult = {
1474
1486
  /** The description of the cluster. Example: "This is a new cluster." */
1475
1487
  'description'?: string;
1476
1488
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1477
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1489
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
1478
1490
  /** Region of the cluster. Example: "europe-west2" */
1479
1491
  'region': string;
1480
1492
  /** Kubernetes version of the cluster. Example: "1.26" */
@@ -1485,6 +1497,11 @@ type ListCloudClustersResult = {
1485
1497
  'nodePools': {
1486
1498
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1487
1499
  'nodeType': string;
1500
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
1501
+ 'oci'?: {
1502
+ 'ocpu': number;
1503
+ 'memory': number;
1504
+ };
1488
1505
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1489
1506
  'nodeCount': number;
1490
1507
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -1515,6 +1532,7 @@ type ListCloudClustersResult = {
1515
1532
  'systemPool'?: boolean;
1516
1533
  /** Zones in which the node pool should be provisioned. */
1517
1534
  'availabilityZones': string[];
1535
+ 'subnets'?: string[];
1518
1536
  /** Define basic workload scheduling restrictions for this node pool */
1519
1537
  'scheduling'?: {
1520
1538
  /** Allow jobs to schedule to this node pool */
@@ -1552,13 +1570,6 @@ type ListCloudClustersResult = {
1552
1570
  };
1553
1571
  'logging'?: {
1554
1572
  'mode'?: 'paas' | 'loki';
1555
- /** Required data for the loki mode setting. */
1556
- 'loki'?: {
1557
- 's3BucketName': string;
1558
- 's3AccessKey': string;
1559
- 's3SecretKey': string;
1560
- 's3Region': string;
1561
- };
1562
1573
  };
1563
1574
  'vanityDomains'?: {
1564
1575
  'apps'?: {
@@ -1595,10 +1606,10 @@ type ListCloudClustersResult = {
1595
1606
  /** Configure the data disk size per Ceph replica */
1596
1607
  'storage'?: number;
1597
1608
  };
1609
+ 'enableErasureCoding'?: boolean;
1598
1610
  };
1599
- 'disableCorednsNameserverOverride'?: boolean;
1600
1611
  };
1601
- /** Request modifiers to use for different resources. */
1612
+ /** Allows customising request modifier values. */
1602
1613
  'requestModifiers'?: {
1603
1614
  /** Request modifiers for services */
1604
1615
  'services'?: {
@@ -1621,6 +1632,7 @@ type ListCloudClustersResult = {
1621
1632
  'memory': number;
1622
1633
  };
1623
1634
  };
1635
+ 'skipInstall'?: boolean;
1624
1636
  };
1625
1637
  /** GCP specific data. Required when `provider` is `gcp`. */
1626
1638
  'gcp'?: {
@@ -1632,9 +1644,21 @@ type ListCloudClustersResult = {
1632
1644
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
1633
1645
  'subnets': string;
1634
1646
  };
1647
+ 'oci'?: {
1648
+ 'vcnConfiguration': {
1649
+ 'vcnId': string;
1650
+ 'subnetIdForKubernetesApi': string;
1651
+ 'subnetIdsForServiceLBs': string[];
1652
+ };
1653
+ };
1654
+ 'azure'?: {
1655
+ 'enableAuthorizedIpRanges'?: boolean;
1656
+ };
1635
1657
  }[];
1636
1658
  };
1637
- type ListCloudClustersCall = (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
1659
+ type ListCloudClustersCall = ((opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>) & {
1660
+ all: (opts: ListCloudClustersRequest) => Promise<ApiCallResponse<ListCloudClustersResult>>;
1661
+ };
1638
1662
  type ListCloudClustersRequest = {
1639
1663
  options?: ListCloudClustersOptions;
1640
1664
  };
@@ -1647,7 +1671,7 @@ type ListCloudClustersOptions = {
1647
1671
  'cursor'?: string;
1648
1672
  };
1649
1673
  /** Lists clusters for the authenticated user or team. */
1650
- declare class ListCloudClustersEndpoint extends GetApiEndpoint<ListCloudClustersRequest, ListCloudClustersResult> {
1674
+ declare class ListCloudClustersEndpoint extends GetApiEndpointPaginated<ListCloudClustersRequest, ListCloudClustersResult> {
1651
1675
  description: string;
1652
1676
  withAuth: boolean;
1653
1677
  requiredPermissions: string;
@@ -1661,7 +1685,7 @@ type CreateCloudClusterResult = {
1661
1685
  /** The description of the cluster. Example: "This is a new cluster." */
1662
1686
  'description'?: string;
1663
1687
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1664
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1688
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
1665
1689
  /** Region of the cluster. Example: "europe-west2" */
1666
1690
  'region': string;
1667
1691
  /** Kubernetes version of the cluster. Example: "1.26" */
@@ -1672,6 +1696,11 @@ type CreateCloudClusterResult = {
1672
1696
  'nodePools': {
1673
1697
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1674
1698
  'nodeType': string;
1699
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
1700
+ 'oci'?: {
1701
+ 'ocpu': number;
1702
+ 'memory': number;
1703
+ };
1675
1704
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1676
1705
  'nodeCount': number;
1677
1706
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -1702,6 +1731,7 @@ type CreateCloudClusterResult = {
1702
1731
  'systemPool'?: boolean;
1703
1732
  /** Zones in which the node pool should be provisioned. */
1704
1733
  'availabilityZones': string[];
1734
+ 'subnets'?: string[];
1705
1735
  /** Define basic workload scheduling restrictions for this node pool */
1706
1736
  'scheduling'?: {
1707
1737
  /** Allow jobs to schedule to this node pool */
@@ -1782,10 +1812,11 @@ type CreateCloudClusterResult = {
1782
1812
  /** Configure the data disk size per Ceph replica */
1783
1813
  'storage'?: number;
1784
1814
  };
1815
+ 'enableErasureCoding'?: boolean;
1816
+ 'enableTopologyAwareScheduling'?: boolean;
1785
1817
  };
1786
- 'disableCorednsNameserverOverride'?: boolean;
1787
1818
  };
1788
- /** Request modifiers to use for different resources. */
1819
+ /** Allows customising request modifier values. */
1789
1820
  'requestModifiers'?: {
1790
1821
  /** Request modifiers for services */
1791
1822
  'services'?: {
@@ -1819,6 +1850,16 @@ type CreateCloudClusterResult = {
1819
1850
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
1820
1851
  'subnets': string;
1821
1852
  };
1853
+ 'oci'?: {
1854
+ 'vcnConfiguration': {
1855
+ 'vcnId': string;
1856
+ 'subnetIdForKubernetesApi': string;
1857
+ 'subnetIdsForServiceLBs': string[];
1858
+ };
1859
+ };
1860
+ 'azure'?: {
1861
+ 'enableAuthorizedIpRanges'?: boolean;
1862
+ };
1822
1863
  /** The ID of cluster Example: "gcp-cluster-1" */
1823
1864
  'id': string;
1824
1865
  'status'?: {
@@ -1845,7 +1886,7 @@ type CreateCloudClusterData = {
1845
1886
  /** The description of the cluster. Example: "This is a new cluster." */
1846
1887
  'description'?: string;
1847
1888
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1848
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
1889
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
1849
1890
  /** Region of the cluster. Example: "europe-west2" */
1850
1891
  'region': string;
1851
1892
  /** Kubernetes version of the cluster. Example: "1.26" */
@@ -1856,6 +1897,11 @@ type CreateCloudClusterData = {
1856
1897
  'nodePools': {
1857
1898
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
1858
1899
  'nodeType': string;
1900
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
1901
+ 'oci'?: {
1902
+ 'ocpu': number;
1903
+ 'memory': number;
1904
+ };
1859
1905
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
1860
1906
  'nodeCount': number;
1861
1907
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -1886,6 +1932,7 @@ type CreateCloudClusterData = {
1886
1932
  'systemPool'?: boolean;
1887
1933
  /** Zones in which the node pool should be provisioned. */
1888
1934
  'availabilityZones': string[];
1935
+ 'subnets'?: string[];
1889
1936
  /** Define basic workload scheduling restrictions for this node pool */
1890
1937
  'scheduling'?: {
1891
1938
  /** Allow jobs to schedule to this node pool */
@@ -1966,10 +2013,11 @@ type CreateCloudClusterData = {
1966
2013
  /** Configure the data disk size per Ceph replica */
1967
2014
  'storage'?: number;
1968
2015
  };
2016
+ 'enableErasureCoding'?: boolean;
2017
+ 'enableTopologyAwareScheduling'?: boolean;
1969
2018
  };
1970
- 'disableCorednsNameserverOverride'?: boolean;
1971
2019
  };
1972
- /** Request modifiers to use for different resources. */
2020
+ /** Allows customising request modifier values. */
1973
2021
  'requestModifiers'?: {
1974
2022
  /** Request modifiers for services */
1975
2023
  'services'?: {
@@ -2003,6 +2051,16 @@ type CreateCloudClusterData = {
2003
2051
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
2004
2052
  'subnets': string;
2005
2053
  };
2054
+ 'oci'?: {
2055
+ 'vcnConfiguration': {
2056
+ 'vcnId': string;
2057
+ 'subnetIdForKubernetesApi': string;
2058
+ 'subnetIdsForServiceLBs': string[];
2059
+ };
2060
+ };
2061
+ 'azure'?: {
2062
+ 'enableAuthorizedIpRanges'?: boolean;
2063
+ };
2006
2064
  };
2007
2065
  /** Creates a new cluster. */
2008
2066
  declare class CreateCloudClusterEndpoint extends PostApiEndpoint<CreateCloudClusterRequest, CreateCloudClusterResult> {
@@ -2019,7 +2077,7 @@ type GetCloudClusterResult = {
2019
2077
  /** The description of the cluster. Example: "This is a new cluster." */
2020
2078
  'description'?: string;
2021
2079
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2022
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2080
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2023
2081
  /** Region of the cluster. Example: "europe-west2" */
2024
2082
  'region': string;
2025
2083
  /** Kubernetes version of the cluster. Example: "1.26" */
@@ -2030,6 +2088,11 @@ type GetCloudClusterResult = {
2030
2088
  'nodePools': {
2031
2089
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2032
2090
  'nodeType': string;
2091
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2092
+ 'oci'?: {
2093
+ 'ocpu': number;
2094
+ 'memory': number;
2095
+ };
2033
2096
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2034
2097
  'nodeCount': number;
2035
2098
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -2060,6 +2123,7 @@ type GetCloudClusterResult = {
2060
2123
  'systemPool'?: boolean;
2061
2124
  /** Zones in which the node pool should be provisioned. */
2062
2125
  'availabilityZones': string[];
2126
+ 'subnets'?: string[];
2063
2127
  /** Define basic workload scheduling restrictions for this node pool */
2064
2128
  'scheduling'?: {
2065
2129
  /** Allow jobs to schedule to this node pool */
@@ -2140,10 +2204,11 @@ type GetCloudClusterResult = {
2140
2204
  /** Configure the data disk size per Ceph replica */
2141
2205
  'storage'?: number;
2142
2206
  };
2207
+ 'enableErasureCoding'?: boolean;
2208
+ 'enableTopologyAwareScheduling'?: boolean;
2143
2209
  };
2144
- 'disableCorednsNameserverOverride'?: boolean;
2145
2210
  };
2146
- /** Request modifiers to use for different resources. */
2211
+ /** Allows customising request modifier values. */
2147
2212
  'requestModifiers'?: {
2148
2213
  /** Request modifiers for services */
2149
2214
  'services'?: {
@@ -2177,6 +2242,16 @@ type GetCloudClusterResult = {
2177
2242
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
2178
2243
  'subnets': string;
2179
2244
  };
2245
+ 'oci'?: {
2246
+ 'vcnConfiguration': {
2247
+ 'vcnId': string;
2248
+ 'subnetIdForKubernetesApi': string;
2249
+ 'subnetIdsForServiceLBs': string[];
2250
+ };
2251
+ };
2252
+ 'azure'?: {
2253
+ 'enableAuthorizedIpRanges'?: boolean;
2254
+ };
2180
2255
  /** The ID of cluster Example: "gcp-cluster-1" */
2181
2256
  'id': string;
2182
2257
  'status'?: {
@@ -2215,7 +2290,7 @@ type UpdateCloudClusterResult = {
2215
2290
  /** The description of the cluster. Example: "This is a new cluster." */
2216
2291
  'description'?: string;
2217
2292
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2218
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2293
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2219
2294
  /** Region of the cluster. Example: "europe-west2" */
2220
2295
  'region': string;
2221
2296
  /** Kubernetes version of the cluster. Example: "1.26" */
@@ -2226,6 +2301,11 @@ type UpdateCloudClusterResult = {
2226
2301
  'nodePools': {
2227
2302
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2228
2303
  'nodeType': string;
2304
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2305
+ 'oci'?: {
2306
+ 'ocpu': number;
2307
+ 'memory': number;
2308
+ };
2229
2309
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2230
2310
  'nodeCount': number;
2231
2311
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -2256,6 +2336,7 @@ type UpdateCloudClusterResult = {
2256
2336
  'systemPool'?: boolean;
2257
2337
  /** Zones in which the node pool should be provisioned. */
2258
2338
  'availabilityZones': string[];
2339
+ 'subnets'?: string[];
2259
2340
  /** Define basic workload scheduling restrictions for this node pool */
2260
2341
  'scheduling'?: {
2261
2342
  /** Allow jobs to schedule to this node pool */
@@ -2336,10 +2417,11 @@ type UpdateCloudClusterResult = {
2336
2417
  /** Configure the data disk size per Ceph replica */
2337
2418
  'storage'?: number;
2338
2419
  };
2420
+ 'enableErasureCoding'?: boolean;
2421
+ 'enableTopologyAwareScheduling'?: boolean;
2339
2422
  };
2340
- 'disableCorednsNameserverOverride'?: boolean;
2341
2423
  };
2342
- /** Request modifiers to use for different resources. */
2424
+ /** Allows customising request modifier values. */
2343
2425
  'requestModifiers'?: {
2344
2426
  /** Request modifiers for services */
2345
2427
  'services'?: {
@@ -2373,6 +2455,16 @@ type UpdateCloudClusterResult = {
2373
2455
  /** List of subnets the cluster should be created for. At least 2 must be specified. */
2374
2456
  'subnets': string;
2375
2457
  };
2458
+ 'oci'?: {
2459
+ 'vcnConfiguration': {
2460
+ 'vcnId': string;
2461
+ 'subnetIdForKubernetesApi': string;
2462
+ 'subnetIdsForServiceLBs': string[];
2463
+ };
2464
+ };
2465
+ 'azure'?: {
2466
+ 'enableAuthorizedIpRanges'?: boolean;
2467
+ };
2376
2468
  /** The ID of cluster Example: "gcp-cluster-1" */
2377
2469
  'id': string;
2378
2470
  'status'?: {
@@ -2403,6 +2495,11 @@ type UpdateCloudClusterData = {
2403
2495
  'nodePools'?: {
2404
2496
  /** Machine type to be used by the node pool. Example: "n2-standard-8" */
2405
2497
  'nodeType': string;
2498
+ /** OCI instance specific settings. Must respect ratios as determined by the selected node type. */
2499
+ 'oci'?: {
2500
+ 'ocpu': number;
2501
+ 'memory': number;
2502
+ };
2406
2503
  /** Number of nodes to the node pool should be provisioned with. Example: 3 */
2407
2504
  'nodeCount': number;
2408
2505
  /** Auto scaling settings to use for the node pool. Requires that the cloud provider supports this feature. */
@@ -2433,6 +2530,7 @@ type UpdateCloudClusterData = {
2433
2530
  'systemPool'?: boolean;
2434
2531
  /** Zones in which the node pool should be provisioned. */
2435
2532
  'availabilityZones': string[];
2533
+ 'subnets'?: string[];
2436
2534
  /** Define basic workload scheduling restrictions for this node pool */
2437
2535
  'scheduling'?: {
2438
2536
  /** Allow jobs to schedule to this node pool */
@@ -2515,10 +2613,11 @@ type UpdateCloudClusterData = {
2515
2613
  /** Configure the data disk size per Ceph replica */
2516
2614
  'storage'?: number;
2517
2615
  };
2616
+ 'enableErasureCoding'?: boolean;
2617
+ 'enableTopologyAwareScheduling'?: boolean;
2518
2618
  };
2519
- 'disableCorednsNameserverOverride'?: boolean;
2520
2619
  };
2521
- /** Request modifiers to use for different resources. */
2620
+ /** Allows customising request modifier values. */
2522
2621
  'requestModifiers'?: {
2523
2622
  /** Request modifiers for services */
2524
2623
  'services'?: {
@@ -2589,7 +2688,9 @@ type ListCloudClusterNodesResult = {
2589
2688
  'createdAt'?: string;
2590
2689
  }[];
2591
2690
  };
2592
- type ListCloudClusterNodesCall = (opts: ListCloudClusterNodesRequest) => Promise<ApiCallResponse<ListCloudClusterNodesResult>>;
2691
+ type ListCloudClusterNodesCall = ((opts: ListCloudClusterNodesRequest) => Promise<ApiCallResponse<ListCloudClusterNodesResult>>) & {
2692
+ all: (opts: ListCloudClusterNodesRequest) => Promise<ApiCallResponse<ListCloudClusterNodesResult>>;
2693
+ };
2593
2694
  type ListCloudClusterNodesRequest = {
2594
2695
  parameters: ListCloudClusterNodesParameters;
2595
2696
  options?: ListCloudClusterNodesOptions;
@@ -2608,7 +2709,7 @@ type ListCloudClusterNodesOptions = {
2608
2709
  'status'?: string;
2609
2710
  };
2610
2711
  /** Get a list of nodes for the given cluster */
2611
- declare class ListCloudClusterNodesEndpoint extends GetApiEndpoint<ListCloudClusterNodesRequest, ListCloudClusterNodesResult> {
2712
+ declare class ListCloudClusterNodesEndpoint extends GetApiEndpointPaginated<ListCloudClusterNodesRequest, ListCloudClusterNodesResult> {
2612
2713
  description: string;
2613
2714
  withAuth: boolean;
2614
2715
  requiredPermissions: string;
@@ -2690,7 +2791,9 @@ type ListCloudDockerregistryResult = {
2690
2791
  'createdAt': string;
2691
2792
  }[];
2692
2793
  };
2693
- type ListCloudDockerregistryCall = (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
2794
+ type ListCloudDockerregistryCall = ((opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>) & {
2795
+ all: (opts: ListCloudDockerregistryRequest) => Promise<ApiCallResponse<ListCloudDockerregistryResult>>;
2796
+ };
2694
2797
  type ListCloudDockerregistryRequest = {
2695
2798
  options?: ListCloudDockerregistryOptions;
2696
2799
  };
@@ -2703,7 +2806,7 @@ type ListCloudDockerregistryOptions = {
2703
2806
  'cursor'?: string;
2704
2807
  };
2705
2808
  /** Lists docker registries for the authenticated user or team. */
2706
- declare class ListCloudDockerregistryEndpoint extends GetApiEndpoint<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
2809
+ declare class ListCloudDockerregistryEndpoint extends GetApiEndpointPaginated<ListCloudDockerregistryRequest, ListCloudDockerregistryResult> {
2707
2810
  description: string;
2708
2811
  withAuth: boolean;
2709
2812
  requiredPermissions: string;
@@ -2735,7 +2838,7 @@ type CreateCloudDockerregistryData = {
2735
2838
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2736
2839
  'description'?: string;
2737
2840
  /** Cloud provider to be used for the selected resource */
2738
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2841
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2739
2842
  'region': string;
2740
2843
  /** Existing integration to use for this registry. Example: "gcp-integration" */
2741
2844
  'integrationId'?: string;
@@ -2806,7 +2909,7 @@ type ListCloudIntegrationsResult = {
2806
2909
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2807
2910
  'description'?: string;
2808
2911
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2809
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2912
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2810
2913
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2811
2914
  /** AWS specific data. Required when `provider` is `aws`. */
2812
2915
  'aws'?: {
@@ -2830,7 +2933,9 @@ type ListCloudIntegrationsResult = {
2830
2933
  'createdAt': string;
2831
2934
  }[];
2832
2935
  };
2833
- type ListCloudIntegrationsCall = (opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>;
2936
+ type ListCloudIntegrationsCall = ((opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>) & {
2937
+ all: (opts: ListCloudIntegrationsRequest) => Promise<ApiCallResponse<ListCloudIntegrationsResult>>;
2938
+ };
2834
2939
  type ListCloudIntegrationsRequest = {
2835
2940
  options?: ListCloudIntegrationsOptions;
2836
2941
  };
@@ -2843,7 +2948,7 @@ type ListCloudIntegrationsOptions = {
2843
2948
  'cursor'?: string;
2844
2949
  };
2845
2950
  /** Lists integrations for the authenticated user or team. */
2846
- declare class ListCloudIntegrationsEndpoint extends GetApiEndpoint<ListCloudIntegrationsRequest, ListCloudIntegrationsResult> {
2951
+ declare class ListCloudIntegrationsEndpoint extends GetApiEndpointPaginated<ListCloudIntegrationsRequest, ListCloudIntegrationsResult> {
2847
2952
  description: string;
2848
2953
  withAuth: boolean;
2849
2954
  requiredPermissions: string;
@@ -2859,7 +2964,7 @@ type CreateCloudIntegrationResult = {
2859
2964
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2860
2965
  'description'?: string;
2861
2966
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2862
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
2967
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2863
2968
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2864
2969
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2865
2970
  'credentials': {
@@ -2885,6 +2990,20 @@ type CreateCloudIntegrationResult = {
2885
2990
  'secret'?: string;
2886
2991
  /** Azure Subscription ID */
2887
2992
  'subscriptionId'?: string;
2993
+ /** OCI Authentication Region */
2994
+ 'region'?: string;
2995
+ /** OCI Tenancy ID */
2996
+ 'tenancyId'?: string;
2997
+ /** User ID */
2998
+ 'userId'?: string;
2999
+ /** Fingerprint */
3000
+ 'fingerprint'?: string;
3001
+ /** OCI Private Key */
3002
+ 'privateKey'?: string;
3003
+ /** Passphrase */
3004
+ 'passphrase'?: string;
3005
+ /** OCI Compartment ID */
3006
+ 'compartmentId'?: string;
2888
3007
  };
2889
3008
  /** AWS specific data. Required when `provider` is `aws`. */
2890
3009
  'aws'?: {
@@ -2917,7 +3036,7 @@ type CreateCloudIntegrationData = {
2917
3036
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2918
3037
  'description'?: string;
2919
3038
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2920
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
3039
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2921
3040
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2922
3041
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2923
3042
  'credentials': {
@@ -2943,6 +3062,20 @@ type CreateCloudIntegrationData = {
2943
3062
  'secret'?: string;
2944
3063
  /** Azure Subscription ID */
2945
3064
  'subscriptionId'?: string;
3065
+ /** OCI Authentication Region */
3066
+ 'region'?: string;
3067
+ /** OCI Tenancy ID */
3068
+ 'tenancyId'?: string;
3069
+ /** User ID */
3070
+ 'userId'?: string;
3071
+ /** Fingerprint */
3072
+ 'fingerprint'?: string;
3073
+ /** OCI Private Key */
3074
+ 'privateKey'?: string;
3075
+ /** Passphrase */
3076
+ 'passphrase'?: string;
3077
+ /** OCI Compartment ID */
3078
+ 'compartmentId'?: string;
2946
3079
  };
2947
3080
  /** AWS specific data. Required when `provider` is `aws`. */
2948
3081
  'aws'?: {
@@ -2978,7 +3111,7 @@ type GetCloudIntegrationResult = {
2978
3111
  /** The description of the integration. Example: "This is a new cloud provider integration." */
2979
3112
  'description'?: string;
2980
3113
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2981
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
3114
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2982
3115
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
2983
3116
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
2984
3117
  'credentials': {
@@ -3004,6 +3137,20 @@ type GetCloudIntegrationResult = {
3004
3137
  'secret'?: string;
3005
3138
  /** Azure Subscription ID */
3006
3139
  'subscriptionId'?: string;
3140
+ /** OCI Authentication Region */
3141
+ 'region'?: string;
3142
+ /** OCI Tenancy ID */
3143
+ 'tenancyId'?: string;
3144
+ /** User ID */
3145
+ 'userId'?: string;
3146
+ /** Fingerprint */
3147
+ 'fingerprint'?: string;
3148
+ /** OCI Private Key */
3149
+ 'privateKey'?: string;
3150
+ /** Passphrase */
3151
+ 'passphrase'?: string;
3152
+ /** OCI Compartment ID */
3153
+ 'compartmentId'?: string;
3007
3154
  };
3008
3155
  /** AWS specific data. Required when `provider` is `aws`. */
3009
3156
  'aws'?: {
@@ -3050,7 +3197,7 @@ type UpdateCloudIntegrationResult = {
3050
3197
  /** The description of the integration. Example: "This is a new cloud provider integration." */
3051
3198
  'description'?: string;
3052
3199
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3053
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'byok';
3200
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3054
3201
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
3055
3202
  /** Cloud provider credential input, required fields dependent on which provider is chosen. */
3056
3203
  'credentials': {
@@ -3076,6 +3223,20 @@ type UpdateCloudIntegrationResult = {
3076
3223
  'secret'?: string;
3077
3224
  /** Azure Subscription ID */
3078
3225
  'subscriptionId'?: string;
3226
+ /** OCI Authentication Region */
3227
+ 'region'?: string;
3228
+ /** OCI Tenancy ID */
3229
+ 'tenancyId'?: string;
3230
+ /** User ID */
3231
+ 'userId'?: string;
3232
+ /** Fingerprint */
3233
+ 'fingerprint'?: string;
3234
+ /** OCI Private Key */
3235
+ 'privateKey'?: string;
3236
+ /** Passphrase */
3237
+ 'passphrase'?: string;
3238
+ /** OCI Compartment ID */
3239
+ 'compartmentId'?: string;
3079
3240
  };
3080
3241
  /** AWS specific data. Required when `provider` is `aws`. */
3081
3242
  'aws'?: {
@@ -3133,6 +3294,20 @@ type UpdateCloudIntegrationData = {
3133
3294
  'secret'?: string;
3134
3295
  /** Azure Subscription ID */
3135
3296
  'subscriptionId'?: string;
3297
+ /** OCI Authentication Region */
3298
+ 'region'?: string;
3299
+ /** OCI Tenancy ID */
3300
+ 'tenancyId'?: string;
3301
+ /** User ID */
3302
+ 'userId'?: string;
3303
+ /** Fingerprint */
3304
+ 'fingerprint'?: string;
3305
+ /** OCI Private Key */
3306
+ 'privateKey'?: string;
3307
+ /** Passphrase */
3308
+ 'passphrase'?: string;
3309
+ /** OCI Compartment ID */
3310
+ 'compartmentId'?: string;
3136
3311
  };
3137
3312
  };
3138
3313
  /** Update information about the given integration */
@@ -3183,7 +3358,9 @@ type ListCloudNodetypesResult = {
3183
3358
  'workloadType': string;
3184
3359
  }[];
3185
3360
  };
3186
- type ListCloudNodetypesCall = (opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>;
3361
+ type ListCloudNodetypesCall = ((opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>) & {
3362
+ all: (opts: ListCloudNodetypesRequest) => Promise<ApiCallResponse<ListCloudNodetypesResult>>;
3363
+ };
3187
3364
  type ListCloudNodetypesRequest = {
3188
3365
  options?: ListCloudNodetypesOptions;
3189
3366
  };
@@ -3206,7 +3383,7 @@ type ListCloudNodetypesOptions = {
3206
3383
  'hasGpu'?: boolean;
3207
3384
  };
3208
3385
  /** Lists supported cloud provider node types */
3209
- declare class ListCloudNodetypesEndpoint extends GetApiEndpoint<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
3386
+ declare class ListCloudNodetypesEndpoint extends GetApiEndpointPaginated<ListCloudNodetypesRequest, ListCloudNodetypesResult> {
3210
3387
  description: string;
3211
3388
  withAuth: boolean;
3212
3389
  requiredPermissions: string;
@@ -3230,7 +3407,9 @@ type ListCloudRegionsResult = {
3230
3407
  }[];
3231
3408
  }[];
3232
3409
  };
3233
- type ListCloudRegionsCall = (opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>;
3410
+ type ListCloudRegionsCall = ((opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>) & {
3411
+ all: (opts: ListCloudRegionsRequest) => Promise<ApiCallResponse<ListCloudRegionsResult>>;
3412
+ };
3234
3413
  type ListCloudRegionsRequest = {
3235
3414
  options?: ListCloudRegionsOptions;
3236
3415
  };
@@ -3245,7 +3424,7 @@ type ListCloudRegionsOptions = {
3245
3424
  'provider'?: string;
3246
3425
  };
3247
3426
  /** Lists supported cloud provider regions */
3248
- declare class ListCloudRegionsEndpoint extends GetApiEndpoint<ListCloudRegionsRequest, ListCloudRegionsResult> {
3427
+ declare class ListCloudRegionsEndpoint extends GetApiEndpointPaginated<ListCloudRegionsRequest, ListCloudRegionsResult> {
3249
3428
  description: string;
3250
3429
  withAuth: boolean;
3251
3430
  requiredPermissions: string;
@@ -3281,7 +3460,9 @@ type ListDomainsResult = {
3281
3460
  'token': string;
3282
3461
  }[];
3283
3462
  };
3284
- type ListDomainsCall = (opts: ListDomainsRequest) => Promise<ApiCallResponse<ListDomainsResult>>;
3463
+ type ListDomainsCall = ((opts: ListDomainsRequest) => Promise<ApiCallResponse<ListDomainsResult>>) & {
3464
+ all: (opts: ListDomainsRequest) => Promise<ApiCallResponse<ListDomainsResult>>;
3465
+ };
3285
3466
  type ListDomainsRequest = {
3286
3467
  options?: ListDomainsOptions;
3287
3468
  };
@@ -3294,7 +3475,7 @@ type ListDomainsOptions = {
3294
3475
  'cursor'?: string;
3295
3476
  };
3296
3477
  /** Lists available domains */
3297
- declare class ListDomainsEndpoint extends GetApiEndpoint<ListDomainsRequest, ListDomainsResult> {
3478
+ declare class ListDomainsEndpoint extends GetApiEndpointPaginated<ListDomainsRequest, ListDomainsResult> {
3298
3479
  description: string;
3299
3480
  withAuth: boolean;
3300
3481
  requiredPermissions: string;
@@ -3821,7 +4002,7 @@ type AddSubdomainPathResult = {
3821
4002
  'rewrite': string;
3822
4003
  };
3823
4004
  };
3824
- /** Customised request timeout for the given path. */
4005
+ /** Customised request timeout for the given path. By default no timeout is set. */
3825
4006
  'timeout'?: string;
3826
4007
  /** Settings allowing addition, re-write and removal of request as well as response headers. */
3827
4008
  'headers'?: {
@@ -3854,7 +4035,10 @@ type AddSubdomainPathResult = {
3854
4035
  'retries'?: {
3855
4036
  'enabled': boolean;
3856
4037
  'attempts': number;
4038
+ /** Timeout per attempt. By default uses the path level timeout. */
3857
4039
  'perTryTimeout'?: string;
4040
+ /** Configure the cases in which the retry should be triggered. */
4041
+ 'retryOn'?: '5xx' | 'gateway-error' | 'reset' | 'connect-failure' | 'envoy-ratelimited' | 'retriable-4xx' | 'refused-stream' | 'retriable-status-codes' | 'retriable-headers' | 'cancelled' | 'deadline-exceeded' | 'internal' | 'resource-exhausted' | 'unavailable'[];
3858
4042
  };
3859
4043
  };
3860
4044
  /** The full URL including subdomain and path URI. */
@@ -3893,7 +4077,7 @@ type AddSubdomainPathData = {
3893
4077
  'rewrite': string;
3894
4078
  };
3895
4079
  };
3896
- /** Customised request timeout for the given path. */
4080
+ /** Customised request timeout for the given path. By default no timeout is set. */
3897
4081
  'timeout'?: string;
3898
4082
  /** Settings allowing addition, re-write and removal of request as well as response headers. */
3899
4083
  'headers'?: {
@@ -3926,7 +4110,10 @@ type AddSubdomainPathData = {
3926
4110
  'retries'?: {
3927
4111
  'enabled': boolean;
3928
4112
  'attempts': number;
4113
+ /** Timeout per attempt. By default uses the path level timeout. */
3929
4114
  'perTryTimeout'?: string;
4115
+ /** Configure the cases in which the retry should be triggered. */
4116
+ 'retryOn'?: '5xx' | 'gateway-error' | 'reset' | 'connect-failure' | 'envoy-ratelimited' | 'retriable-4xx' | 'refused-stream' | 'retriable-status-codes' | 'retriable-headers' | 'cancelled' | 'deadline-exceeded' | 'internal' | 'resource-exhausted' | 'unavailable'[];
3930
4117
  };
3931
4118
  };
3932
4119
  };
@@ -3964,7 +4151,7 @@ type ListSubdomainPathResult = {
3964
4151
  'rewrite': string;
3965
4152
  };
3966
4153
  };
3967
- /** Customised request timeout for the given path. */
4154
+ /** Customised request timeout for the given path. By default no timeout is set. */
3968
4155
  'timeout'?: string;
3969
4156
  /** Settings allowing addition, re-write and removal of request as well as response headers. */
3970
4157
  'headers'?: {
@@ -3997,7 +4184,10 @@ type ListSubdomainPathResult = {
3997
4184
  'retries'?: {
3998
4185
  'enabled': boolean;
3999
4186
  'attempts': number;
4187
+ /** Timeout per attempt. By default uses the path level timeout. */
4000
4188
  'perTryTimeout'?: string;
4189
+ /** Configure the cases in which the retry should be triggered. */
4190
+ 'retryOn'?: '5xx' | 'gateway-error' | 'reset' | 'connect-failure' | 'envoy-ratelimited' | 'retriable-4xx' | 'refused-stream' | 'retriable-status-codes' | 'retriable-headers' | 'cancelled' | 'deadline-exceeded' | 'internal' | 'resource-exhausted' | 'unavailable'[];
4001
4191
  };
4002
4192
  };
4003
4193
  /** The full URL including subdomain and path URI. */
@@ -4045,7 +4235,7 @@ type GetSubdomainPathResult = {
4045
4235
  'rewrite': string;
4046
4236
  };
4047
4237
  };
4048
- /** Customised request timeout for the given path. */
4238
+ /** Customised request timeout for the given path. By default no timeout is set. */
4049
4239
  'timeout'?: string;
4050
4240
  /** Settings allowing addition, re-write and removal of request as well as response headers. */
4051
4241
  'headers'?: {
@@ -4078,7 +4268,10 @@ type GetSubdomainPathResult = {
4078
4268
  'retries'?: {
4079
4269
  'enabled': boolean;
4080
4270
  'attempts': number;
4271
+ /** Timeout per attempt. By default uses the path level timeout. */
4081
4272
  'perTryTimeout'?: string;
4273
+ /** Configure the cases in which the retry should be triggered. */
4274
+ 'retryOn'?: '5xx' | 'gateway-error' | 'reset' | 'connect-failure' | 'envoy-ratelimited' | 'retriable-4xx' | 'refused-stream' | 'retriable-status-codes' | 'retriable-headers' | 'cancelled' | 'deadline-exceeded' | 'internal' | 'resource-exhausted' | 'unavailable'[];
4082
4275
  };
4083
4276
  };
4084
4277
  /** The full URL including subdomain and path URI. */
@@ -4166,7 +4359,7 @@ type UpdateSubdomainPathData = {
4166
4359
  'rewrite': string;
4167
4360
  };
4168
4361
  };
4169
- /** Customised request timeout for the given path. */
4362
+ /** Customised request timeout for the given path. By default no timeout is set. */
4170
4363
  'timeout'?: string;
4171
4364
  /** Settings allowing addition, re-write and removal of request as well as response headers. */
4172
4365
  'headers'?: {
@@ -4199,7 +4392,10 @@ type UpdateSubdomainPathData = {
4199
4392
  'retries'?: {
4200
4393
  'enabled': boolean;
4201
4394
  'attempts': number;
4395
+ /** Timeout per attempt. By default uses the path level timeout. */
4202
4396
  'perTryTimeout'?: string;
4397
+ /** Configure the cases in which the retry should be triggered. */
4398
+ 'retryOn'?: '5xx' | 'gateway-error' | 'reset' | 'connect-failure' | 'envoy-ratelimited' | 'retriable-4xx' | 'refused-stream' | 'retriable-status-codes' | 'retriable-headers' | 'cancelled' | 'deadline-exceeded' | 'internal' | 'resource-exhausted' | 'unavailable'[];
4203
4399
  };
4204
4400
  };
4205
4401
  };
@@ -4335,7 +4531,9 @@ type ListLogsinksResult = {
4335
4531
  'updatedAt': string;
4336
4532
  }[];
4337
4533
  };
4338
- type ListLogsinksCall = (opts: ListLogsinksRequest) => Promise<ApiCallResponse<ListLogsinksResult>>;
4534
+ type ListLogsinksCall = ((opts: ListLogsinksRequest) => Promise<ApiCallResponse<ListLogsinksResult>>) & {
4535
+ all: (opts: ListLogsinksRequest) => Promise<ApiCallResponse<ListLogsinksResult>>;
4536
+ };
4339
4537
  type ListLogsinksRequest = {
4340
4538
  options?: ListLogsinksOptions;
4341
4539
  };
@@ -4348,7 +4546,7 @@ type ListLogsinksOptions = {
4348
4546
  'cursor'?: string;
4349
4547
  };
4350
4548
  /** Gets a list of log sinks added to this account. */
4351
- declare class ListLogsinksEndpoint extends GetApiEndpoint<ListLogsinksRequest, ListLogsinksResult> {
4549
+ declare class ListLogsinksEndpoint extends GetApiEndpointPaginated<ListLogsinksRequest, ListLogsinksResult> {
4352
4550
  description: string;
4353
4551
  withAuth: boolean;
4354
4552
  requiredPermissions: string;
@@ -5090,7 +5288,9 @@ type ListNotificationsResult = {
5090
5288
  'updatedAt': string;
5091
5289
  }[];
5092
5290
  };
5093
- type ListNotificationsCall = (opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>;
5291
+ type ListNotificationsCall = ((opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>) & {
5292
+ all: (opts: ListNotificationsRequest) => Promise<ApiCallResponse<ListNotificationsResult>>;
5293
+ };
5094
5294
  type ListNotificationsRequest = {
5095
5295
  options?: ListNotificationsOptions;
5096
5296
  };
@@ -5103,7 +5303,7 @@ type ListNotificationsOptions = {
5103
5303
  'cursor'?: string;
5104
5304
  };
5105
5305
  /** Lists notification integrations for the authenticated user or team. */
5106
- declare class ListNotificationsEndpoint extends GetApiEndpoint<ListNotificationsRequest, ListNotificationsResult> {
5306
+ declare class ListNotificationsEndpoint extends GetApiEndpointPaginated<ListNotificationsRequest, ListNotificationsResult> {
5107
5307
  description: string;
5108
5308
  withAuth: boolean;
5109
5309
  requiredPermissions: string;
@@ -5529,7 +5729,9 @@ type ListRegistrycredentialsResult = {
5529
5729
  'provider': 'dockerhub' | 'gcr' | 'gcr-eu' | 'gcr-us' | 'gitlab' | 'github' | 'custom';
5530
5730
  }[];
5531
5731
  };
5532
- type ListRegistrycredentialsCall = (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
5732
+ type ListRegistrycredentialsCall = ((opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>) & {
5733
+ all: (opts: ListRegistrycredentialsRequest) => Promise<ApiCallResponse<ListRegistrycredentialsResult>>;
5734
+ };
5533
5735
  type ListRegistrycredentialsRequest = {
5534
5736
  options?: ListRegistrycredentialsOptions;
5535
5737
  };
@@ -5542,7 +5744,7 @@ type ListRegistrycredentialsOptions = {
5542
5744
  'cursor'?: string;
5543
5745
  };
5544
5746
  /** Lists the container registry credentials saved to this account. Does not display secrets. */
5545
- declare class ListRegistrycredentialsEndpoint extends GetApiEndpoint<ListRegistrycredentialsRequest, ListRegistrycredentialsResult> {
5747
+ declare class ListRegistrycredentialsEndpoint extends GetApiEndpointPaginated<ListRegistrycredentialsRequest, ListRegistrycredentialsResult> {
5546
5748
  description: string;
5547
5749
  withAuth: boolean;
5548
5750
  requiredPermissions: string;
@@ -5846,7 +6048,9 @@ type ListReposResult = {
5846
6048
  'accountLogin': string;
5847
6049
  }[];
5848
6050
  };
5849
- type ListReposCall = (opts: ListReposRequest) => Promise<ApiCallResponse<ListReposResult>>;
6051
+ type ListReposCall = ((opts: ListReposRequest) => Promise<ApiCallResponse<ListReposResult>>) & {
6052
+ all: (opts: ListReposRequest) => Promise<ApiCallResponse<ListReposResult>>;
6053
+ };
5850
6054
  type ListReposRequest = {
5851
6055
  options?: ListReposOptions;
5852
6056
  };
@@ -5867,7 +6071,7 @@ type ListReposOptions = {
5867
6071
  'vcs_link_id'?: string;
5868
6072
  };
5869
6073
  /** Gets a list of repositories accessible to this account */
5870
- declare class ListReposEndpoint extends GetApiEndpoint<ListReposRequest, ListReposResult> {
6074
+ declare class ListReposEndpoint extends GetApiEndpointPaginated<ListReposRequest, ListReposResult> {
5871
6075
  description: string;
5872
6076
  withAuth: boolean;
5873
6077
  requiredPermissions: string;
@@ -5885,7 +6089,9 @@ type ListBranchesResult = {
5885
6089
  /** If provided, uses the given VCS link to access the repository's data. */
5886
6090
  'vcs_link_id'?: string;
5887
6091
  };
5888
- type ListBranchesCall = (opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>;
6092
+ type ListBranchesCall = ((opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>) & {
6093
+ all: (opts: ListBranchesRequest) => Promise<ApiCallResponse<ListBranchesResult>>;
6094
+ };
5889
6095
  type ListBranchesRequest = {
5890
6096
  parameters: ListBranchesParameters;
5891
6097
  options?: ListBranchesOptions;
@@ -5906,7 +6112,7 @@ type ListBranchesOptions = {
5906
6112
  'cursor'?: string;
5907
6113
  };
5908
6114
  /** Gets a list of branches for the repo */
5909
- declare class ListBranchesEndpoint extends GetApiEndpoint<ListBranchesRequest, ListBranchesResult> {
6115
+ declare class ListBranchesEndpoint extends GetApiEndpointPaginated<ListBranchesRequest, ListBranchesResult> {
5910
6116
  description: string;
5911
6117
  withAuth: boolean;
5912
6118
  requiredPermissions: string;
@@ -5955,7 +6161,9 @@ type ListProjectsResult = {
5955
6161
  'description'?: string;
5956
6162
  }[];
5957
6163
  };
5958
- type ListProjectsCall = (opts: ListProjectsRequest) => Promise<ApiCallResponse<ListProjectsResult>>;
6164
+ type ListProjectsCall = ((opts: ListProjectsRequest) => Promise<ApiCallResponse<ListProjectsResult>>) & {
6165
+ all: (opts: ListProjectsRequest) => Promise<ApiCallResponse<ListProjectsResult>>;
6166
+ };
5959
6167
  type ListProjectsRequest = {
5960
6168
  options?: ListProjectsOptions;
5961
6169
  };
@@ -5968,7 +6176,7 @@ type ListProjectsOptions = {
5968
6176
  'cursor'?: string;
5969
6177
  };
5970
6178
  /** Lists projects for the authenticated user or team. */
5971
- declare class ListProjectsEndpoint extends GetApiEndpoint<ListProjectsRequest, ListProjectsResult> {
6179
+ declare class ListProjectsEndpoint extends GetApiEndpointPaginated<ListProjectsRequest, ListProjectsResult> {
5972
6180
  description: string;
5973
6181
  withAuth: boolean;
5974
6182
  requiredPermissions: string;
@@ -7523,7 +7731,9 @@ type GetAddonBackupschedulesResult = {
7523
7731
  'updatedAt': string;
7524
7732
  }[];
7525
7733
  };
7526
- type GetAddonBackupschedulesCall = (opts: GetAddonBackupschedulesRequest) => Promise<ApiCallResponse<GetAddonBackupschedulesResult>>;
7734
+ type GetAddonBackupschedulesCall = ((opts: GetAddonBackupschedulesRequest) => Promise<ApiCallResponse<GetAddonBackupschedulesResult>>) & {
7735
+ all: (opts: GetAddonBackupschedulesRequest) => Promise<ApiCallResponse<GetAddonBackupschedulesResult>>;
7736
+ };
7527
7737
  type GetAddonBackupschedulesRequest = {
7528
7738
  parameters: GetAddonBackupschedulesParameters;
7529
7739
  options?: GetAddonBackupschedulesOptions;
@@ -7542,7 +7752,7 @@ type GetAddonBackupschedulesOptions = {
7542
7752
  'cursor'?: string;
7543
7753
  };
7544
7754
  /** Gets details about an addon's backup schedules */
7545
- declare class GetAddonBackupschedulesEndpoint extends GetApiEndpoint<GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult> {
7755
+ declare class GetAddonBackupschedulesEndpoint extends GetApiEndpointPaginated<GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult> {
7546
7756
  description: string;
7547
7757
  withAuth: boolean;
7548
7758
  requiredPermissions: string;
@@ -7645,7 +7855,9 @@ type GetAddonBackupsResult = {
7645
7855
  };
7646
7856
  }[];
7647
7857
  };
7648
- type GetAddonBackupsCall = (opts: GetAddonBackupsRequest) => Promise<ApiCallResponse<GetAddonBackupsResult>>;
7858
+ type GetAddonBackupsCall = ((opts: GetAddonBackupsRequest) => Promise<ApiCallResponse<GetAddonBackupsResult>>) & {
7859
+ all: (opts: GetAddonBackupsRequest) => Promise<ApiCallResponse<GetAddonBackupsResult>>;
7860
+ };
7649
7861
  type GetAddonBackupsRequest = {
7650
7862
  parameters: GetAddonBackupsParameters;
7651
7863
  options?: GetAddonBackupsOptions;
@@ -7664,7 +7876,7 @@ type GetAddonBackupsOptions = {
7664
7876
  'cursor'?: string;
7665
7877
  };
7666
7878
  /** Returns a list of backups for the given addon. */
7667
- declare class GetAddonBackupsEndpoint extends GetApiEndpoint<GetAddonBackupsRequest, GetAddonBackupsResult> {
7879
+ declare class GetAddonBackupsEndpoint extends GetApiEndpointPaginated<GetAddonBackupsRequest, GetAddonBackupsResult> {
7668
7880
  description: string;
7669
7881
  withAuth: boolean;
7670
7882
  requiredPermissions: string;
@@ -7722,10 +7934,10 @@ type BackupAddonData = {
7722
7934
  'backupType'?: 'dump' | 'snapshot';
7723
7935
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
7724
7936
  'compressionType'?: 'gz' | 'zstd';
7725
- /** A list of destinations to which the backup should be copied to. Example: "my-custom-backup-destination" */
7937
+ /** List of destinations for which a backup should additionally be created. Only applicable for snapshot backups. */
7726
7938
  'additionalDestinations'?: {
7727
- /** The id of the destination Example: "my-custom-backup-destination" */
7728
7939
  'destinationId': string;
7940
+ 'type': 'custom';
7729
7941
  }[];
7730
7942
  };
7731
7943
  /** Initiates a backup for the given addon */
@@ -7931,7 +8143,9 @@ type GetAddonBackupRestoresResult = {
7931
8143
  'completedAt'?: string;
7932
8144
  }[];
7933
8145
  };
7934
- type GetAddonBackupRestoresCall = (opts: GetAddonBackupRestoresRequest) => Promise<ApiCallResponse<GetAddonBackupRestoresResult>>;
8146
+ type GetAddonBackupRestoresCall = ((opts: GetAddonBackupRestoresRequest) => Promise<ApiCallResponse<GetAddonBackupRestoresResult>>) & {
8147
+ all: (opts: GetAddonBackupRestoresRequest) => Promise<ApiCallResponse<GetAddonBackupRestoresResult>>;
8148
+ };
7935
8149
  type GetAddonBackupRestoresRequest = {
7936
8150
  parameters: GetAddonBackupRestoresParameters;
7937
8151
  options?: GetAddonBackupRestoresOptions;
@@ -7956,7 +8170,7 @@ type GetAddonBackupRestoresOptions = {
7956
8170
  'sourceAddonId'?: string;
7957
8171
  };
7958
8172
  /** Gets a list of restores for the given backup. */
7959
- declare class GetAddonBackupRestoresEndpoint extends GetApiEndpoint<GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult> {
8173
+ declare class GetAddonBackupRestoresEndpoint extends GetApiEndpointPaginated<GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult> {
7960
8174
  description: string;
7961
8175
  withAuth: boolean;
7962
8176
  requiredPermissions: string;
@@ -7997,7 +8211,9 @@ type GetAddonContainersResult = {
7997
8211
  'updatedAt': number;
7998
8212
  }[];
7999
8213
  };
8000
- type GetAddonContainersCall = (opts: GetAddonContainersRequest) => Promise<ApiCallResponse<GetAddonContainersResult>>;
8214
+ type GetAddonContainersCall = ((opts: GetAddonContainersRequest) => Promise<ApiCallResponse<GetAddonContainersResult>>) & {
8215
+ all: (opts: GetAddonContainersRequest) => Promise<ApiCallResponse<GetAddonContainersResult>>;
8216
+ };
8001
8217
  type GetAddonContainersRequest = {
8002
8218
  parameters: GetAddonContainersParameters;
8003
8219
  options?: GetAddonContainersOptions;
@@ -8016,7 +8232,7 @@ type GetAddonContainersOptions = {
8016
8232
  'cursor'?: string;
8017
8233
  };
8018
8234
  /** Gets a list of containers for the given addon. */
8019
- declare class GetAddonContainersEndpoint extends GetApiEndpoint<GetAddonContainersRequest, GetAddonContainersResult> {
8235
+ declare class GetAddonContainersEndpoint extends GetApiEndpointPaginated<GetAddonContainersRequest, GetAddonContainersResult> {
8020
8236
  description: string;
8021
8237
  withAuth: boolean;
8022
8238
  requiredPermissions: string;
@@ -8259,7 +8475,9 @@ type GetAddonRestoresResult = {
8259
8475
  'backupId': string;
8260
8476
  }[];
8261
8477
  };
8262
- type GetAddonRestoresCall = (opts: GetAddonRestoresRequest) => Promise<ApiCallResponse<GetAddonRestoresResult>>;
8478
+ type GetAddonRestoresCall = ((opts: GetAddonRestoresRequest) => Promise<ApiCallResponse<GetAddonRestoresResult>>) & {
8479
+ all: (opts: GetAddonRestoresRequest) => Promise<ApiCallResponse<GetAddonRestoresResult>>;
8480
+ };
8263
8481
  type GetAddonRestoresRequest = {
8264
8482
  parameters: GetAddonRestoresParameters;
8265
8483
  options?: GetAddonRestoresOptions;
@@ -8278,7 +8496,7 @@ type GetAddonRestoresOptions = {
8278
8496
  'cursor'?: string;
8279
8497
  };
8280
8498
  /** Returns a list of restores for the given addon. */
8281
- declare class GetAddonRestoresEndpoint extends GetApiEndpoint<GetAddonRestoresRequest, GetAddonRestoresResult> {
8499
+ declare class GetAddonRestoresEndpoint extends GetApiEndpointPaginated<GetAddonRestoresRequest, GetAddonRestoresResult> {
8282
8500
  description: string;
8283
8501
  withAuth: boolean;
8284
8502
  requiredPermissions: string;
@@ -8464,7 +8682,9 @@ type ListJobsResult = {
8464
8682
  'suspended'?: boolean;
8465
8683
  }[];
8466
8684
  };
8467
- type ListJobsCall = (opts: ListJobsRequest) => Promise<ApiCallResponse<ListJobsResult>>;
8685
+ type ListJobsCall = ((opts: ListJobsRequest) => Promise<ApiCallResponse<ListJobsResult>>) & {
8686
+ all: (opts: ListJobsRequest) => Promise<ApiCallResponse<ListJobsResult>>;
8687
+ };
8468
8688
  type ListJobsRequest = {
8469
8689
  parameters: ListJobsParameters;
8470
8690
  options?: ListJobsOptions;
@@ -8481,7 +8701,7 @@ type ListJobsOptions = {
8481
8701
  'cursor'?: string;
8482
8702
  };
8483
8703
  /** Gets a list of jobs belonging to the project */
8484
- declare class ListJobsEndpoint extends GetApiEndpoint<ListJobsRequest, ListJobsResult> {
8704
+ declare class ListJobsEndpoint extends GetApiEndpointPaginated<ListJobsRequest, ListJobsResult> {
8485
8705
  description: string;
8486
8706
  withAuth: boolean;
8487
8707
  requiredPermissions: string;
@@ -11509,7 +11729,9 @@ type GetJobBranchesResult = {
11509
11729
  };
11510
11730
  }[];
11511
11731
  };
11512
- type GetJobBranchesCall = (opts: GetJobBranchesRequest) => Promise<ApiCallResponse<GetJobBranchesResult>>;
11732
+ type GetJobBranchesCall = ((opts: GetJobBranchesRequest) => Promise<ApiCallResponse<GetJobBranchesResult>>) & {
11733
+ all: (opts: GetJobBranchesRequest) => Promise<ApiCallResponse<GetJobBranchesResult>>;
11734
+ };
11513
11735
  type GetJobBranchesRequest = {
11514
11736
  parameters: GetJobBranchesParameters;
11515
11737
  options?: GetJobBranchesOptions;
@@ -11528,7 +11750,7 @@ type GetJobBranchesOptions = {
11528
11750
  'cursor'?: string;
11529
11751
  };
11530
11752
  /** Gets information about the branches of the given job. */
11531
- declare class GetJobBranchesEndpoint extends GetApiEndpoint<GetJobBranchesRequest, GetJobBranchesResult> {
11753
+ declare class GetJobBranchesEndpoint extends GetApiEndpointPaginated<GetJobBranchesRequest, GetJobBranchesResult> {
11532
11754
  description: string;
11533
11755
  withAuth: boolean;
11534
11756
  requiredPermissions: string;
@@ -11561,7 +11783,9 @@ type GetJobBuildsResult = {
11561
11783
  'buildConcludedAt'?: number;
11562
11784
  }[];
11563
11785
  };
11564
- type GetJobBuildsCall = (opts: GetJobBuildsRequest) => Promise<ApiCallResponse<GetJobBuildsResult>>;
11786
+ type GetJobBuildsCall = ((opts: GetJobBuildsRequest) => Promise<ApiCallResponse<GetJobBuildsResult>>) & {
11787
+ all: (opts: GetJobBuildsRequest) => Promise<ApiCallResponse<GetJobBuildsResult>>;
11788
+ };
11565
11789
  type GetJobBuildsRequest = {
11566
11790
  parameters: GetJobBuildsParameters;
11567
11791
  options?: GetJobBuildsOptions;
@@ -11580,7 +11804,7 @@ type GetJobBuildsOptions = {
11580
11804
  'cursor'?: string;
11581
11805
  };
11582
11806
  /** Lists builds for the given job. */
11583
- declare class GetJobBuildsEndpoint extends GetApiEndpoint<GetJobBuildsRequest, GetJobBuildsResult> {
11807
+ declare class GetJobBuildsEndpoint extends GetApiEndpointPaginated<GetJobBuildsRequest, GetJobBuildsResult> {
11584
11808
  description: string;
11585
11809
  withAuth: boolean;
11586
11810
  requiredPermissions: string;
@@ -11975,7 +12199,9 @@ type GetJobContainersResult = {
11975
12199
  /** The id of the associated job run. Example: "00000676-9be8-41dd-b0f7-ba7df935cf27" */
11976
12200
  'runId': string;
11977
12201
  };
11978
- type GetJobContainersCall = (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
12202
+ type GetJobContainersCall = ((opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>) & {
12203
+ all: (opts: GetJobContainersRequest) => Promise<ApiCallResponse<GetJobContainersResult>>;
12204
+ };
11979
12205
  type GetJobContainersRequest = {
11980
12206
  parameters: GetJobContainersParameters;
11981
12207
  options?: GetJobContainersOptions;
@@ -11996,7 +12222,7 @@ type GetJobContainersOptions = {
11996
12222
  'runId'?: string;
11997
12223
  };
11998
12224
  /** Gets a list of containers for the given job. */
11999
- declare class GetJobContainersEndpoint extends GetApiEndpoint<GetJobContainersRequest, GetJobContainersResult> {
12225
+ declare class GetJobContainersEndpoint extends GetApiEndpointPaginated<GetJobContainersRequest, GetJobContainersResult> {
12000
12226
  description: string;
12001
12227
  withAuth: boolean;
12002
12228
  requiredPermissions: string;
@@ -12335,7 +12561,9 @@ type GetJobPullrequestsResult = {
12335
12561
  'html_url': string;
12336
12562
  }[];
12337
12563
  };
12338
- type GetJobPullrequestsCall = (opts: GetJobPullrequestsRequest) => Promise<ApiCallResponse<GetJobPullrequestsResult>>;
12564
+ type GetJobPullrequestsCall = ((opts: GetJobPullrequestsRequest) => Promise<ApiCallResponse<GetJobPullrequestsResult>>) & {
12565
+ all: (opts: GetJobPullrequestsRequest) => Promise<ApiCallResponse<GetJobPullrequestsResult>>;
12566
+ };
12339
12567
  type GetJobPullrequestsRequest = {
12340
12568
  parameters: GetJobPullrequestsParameters;
12341
12569
  options?: GetJobPullrequestsOptions;
@@ -12354,7 +12582,7 @@ type GetJobPullrequestsOptions = {
12354
12582
  'cursor'?: string;
12355
12583
  };
12356
12584
  /** Gets information about the pull-requests of the given job. */
12357
- declare class GetJobPullrequestsEndpoint extends GetApiEndpoint<GetJobPullrequestsRequest, GetJobPullrequestsResult> {
12585
+ declare class GetJobPullrequestsEndpoint extends GetApiEndpointPaginated<GetJobPullrequestsRequest, GetJobPullrequestsResult> {
12358
12586
  description: string;
12359
12587
  withAuth: boolean;
12360
12588
  requiredPermissions: string;
@@ -12417,7 +12645,9 @@ type GetJobRunsResult = {
12417
12645
  'concludedAt': string;
12418
12646
  }[];
12419
12647
  };
12420
- type GetJobRunsCall = (opts: GetJobRunsRequest) => Promise<ApiCallResponse<GetJobRunsResult>>;
12648
+ type GetJobRunsCall = ((opts: GetJobRunsRequest) => Promise<ApiCallResponse<GetJobRunsResult>>) & {
12649
+ all: (opts: GetJobRunsRequest) => Promise<ApiCallResponse<GetJobRunsResult>>;
12650
+ };
12421
12651
  type GetJobRunsRequest = {
12422
12652
  parameters: GetJobRunsParameters;
12423
12653
  options?: GetJobRunsOptions;
@@ -12436,7 +12666,7 @@ type GetJobRunsOptions = {
12436
12666
  'cursor'?: string;
12437
12667
  };
12438
12668
  /** Fetches run history for the given job */
12439
- declare class GetJobRunsEndpoint extends GetApiEndpoint<GetJobRunsRequest, GetJobRunsResult> {
12669
+ declare class GetJobRunsEndpoint extends GetApiEndpointPaginated<GetJobRunsRequest, GetJobRunsResult> {
12440
12670
  description: string;
12441
12671
  withAuth: boolean;
12442
12672
  requiredPermissions: string;
@@ -12853,7 +13083,9 @@ type ListPipelinesResult = {
12853
13083
  'updatedAt'?: string;
12854
13084
  }[];
12855
13085
  };
12856
- type ListPipelinesCall = (opts: ListPipelinesRequest) => Promise<ApiCallResponse<ListPipelinesResult>>;
13086
+ type ListPipelinesCall = ((opts: ListPipelinesRequest) => Promise<ApiCallResponse<ListPipelinesResult>>) & {
13087
+ all: (opts: ListPipelinesRequest) => Promise<ApiCallResponse<ListPipelinesResult>>;
13088
+ };
12857
13089
  type ListPipelinesRequest = {
12858
13090
  parameters: ListPipelinesParameters;
12859
13091
  options?: ListPipelinesOptions;
@@ -12870,7 +13102,7 @@ type ListPipelinesOptions = {
12870
13102
  'cursor'?: string;
12871
13103
  };
12872
13104
  /** Lists all pipelines for a project */
12873
- declare class ListPipelinesEndpoint extends GetApiEndpoint<ListPipelinesRequest, ListPipelinesResult> {
13105
+ declare class ListPipelinesEndpoint extends GetApiEndpointPaginated<ListPipelinesRequest, ListPipelinesResult> {
12874
13106
  description: string;
12875
13107
  withAuth: boolean;
12876
13108
  requiredPermissions: string;
@@ -12938,6 +13170,8 @@ type GetPreviewtemplateResult = {
12938
13170
  'ciIgnoreFlags'?: string[];
12939
13171
  'ciIgnoreFlagsEnabled'?: boolean;
12940
13172
  'isAllowList'?: boolean;
13173
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13174
+ 'ignoreDrafts'?: boolean;
12941
13175
  /** Type of trigger */
12942
13176
  'type'?: 'git';
12943
13177
  /** Should the git trigger only be triggered manually? */
@@ -12971,7 +13205,9 @@ type GetPreviewtemplateResult = {
12971
13205
  /** time of update */
12972
13206
  'updatedAt'?: string;
12973
13207
  };
12974
- type GetPreviewtemplateCall = (opts: GetPreviewtemplateRequest) => Promise<ApiCallResponse<GetPreviewtemplateResult>>;
13208
+ type GetPreviewtemplateCall = ((opts: GetPreviewtemplateRequest) => Promise<ApiCallResponse<GetPreviewtemplateResult>>) & {
13209
+ all: (opts: GetPreviewtemplateRequest) => Promise<ApiCallResponse<GetPreviewtemplateResult>>;
13210
+ };
12975
13211
  type GetPreviewtemplateRequest = {
12976
13212
  parameters: GetPreviewtemplateParameters;
12977
13213
  options?: GetPreviewtemplateOptions;
@@ -12990,7 +13226,7 @@ type GetPreviewtemplateOptions = {
12990
13226
  'cursor'?: string;
12991
13227
  };
12992
13228
  /** Get information about the given preview template. */
12993
- declare class GetPreviewtemplateEndpoint extends GetApiEndpoint<GetPreviewtemplateRequest, GetPreviewtemplateResult> {
13229
+ declare class GetPreviewtemplateEndpoint extends GetApiEndpointPaginated<GetPreviewtemplateRequest, GetPreviewtemplateResult> {
12994
13230
  description: string;
12995
13231
  withAuth: boolean;
12996
13232
  requiredPermissions: string;
@@ -13016,8 +13252,48 @@ type UpdatePreviewtemplateData = {
13016
13252
  'options'?: {
13017
13253
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13018
13254
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13255
+ /** The format of the automatically generated preview name. This is a parsed ref string. */
13019
13256
  'nameFormat'?: string;
13257
+ /** If true, the preview name will default to the front of the resource name. */
13020
13258
  'prefixName'?: boolean;
13259
+ /** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
13260
+ 'schedule'?: {
13261
+ 'mon'?: {
13262
+ 'startTime'?: number;
13263
+ 'endTime'?: number;
13264
+ };
13265
+ 'tue'?: {
13266
+ 'startTime'?: number;
13267
+ 'endTime'?: number;
13268
+ };
13269
+ 'wed'?: {
13270
+ 'startTime'?: number;
13271
+ 'endTime'?: number;
13272
+ };
13273
+ 'thu'?: {
13274
+ 'startTime'?: number;
13275
+ 'endTime'?: number;
13276
+ };
13277
+ 'fri'?: {
13278
+ 'startTime'?: number;
13279
+ 'endTime'?: number;
13280
+ };
13281
+ 'sat'?: {
13282
+ 'startTime'?: number;
13283
+ 'endTime'?: number;
13284
+ };
13285
+ 'sun'?: {
13286
+ 'startTime'?: number;
13287
+ 'endTime'?: number;
13288
+ };
13289
+ };
13290
+ /** Settings regarding the automatic deletion of previews. */
13291
+ 'expiry'?: {
13292
+ /** If set, preview environments will be automatically deleted after this many minutes since their last update. */
13293
+ 'previewLifetime'?: number;
13294
+ /** If `true`, the expiry time for an existing preview will be reset when it is ran again. */
13295
+ 'resetOnUpdate'?: boolean;
13296
+ };
13021
13297
  };
13022
13298
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
13023
13299
  'arguments'?: any;
@@ -13061,6 +13337,8 @@ type UpdatePreviewtemplateData = {
13061
13337
  'ciIgnoreFlags'?: string[];
13062
13338
  'ciIgnoreFlagsEnabled'?: boolean;
13063
13339
  'isAllowList'?: boolean;
13340
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13341
+ 'ignoreDrafts'?: boolean;
13064
13342
  /** Type of trigger */
13065
13343
  'type'?: 'git';
13066
13344
  /** Should the git trigger only be triggered manually? */
@@ -13097,7 +13375,9 @@ type ListPreviewtemplatepreviewsResult = {
13097
13375
  'updatedAt'?: string;
13098
13376
  }[];
13099
13377
  };
13100
- type ListPreviewtemplatepreviewsCall = (opts: ListPreviewtemplatepreviewsRequest) => Promise<ApiCallResponse<ListPreviewtemplatepreviewsResult>>;
13378
+ type ListPreviewtemplatepreviewsCall = ((opts: ListPreviewtemplatepreviewsRequest) => Promise<ApiCallResponse<ListPreviewtemplatepreviewsResult>>) & {
13379
+ all: (opts: ListPreviewtemplatepreviewsRequest) => Promise<ApiCallResponse<ListPreviewtemplatepreviewsResult>>;
13380
+ };
13101
13381
  type ListPreviewtemplatepreviewsRequest = {
13102
13382
  parameters: ListPreviewtemplatepreviewsParameters;
13103
13383
  options?: ListPreviewtemplatepreviewsOptions;
@@ -13116,7 +13396,7 @@ type ListPreviewtemplatepreviewsOptions = {
13116
13396
  'cursor'?: string;
13117
13397
  };
13118
13398
  /** Get a list of active preview environments for a template */
13119
- declare class ListPreviewtemplatepreviewsEndpoint extends GetApiEndpoint<ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult> {
13399
+ declare class ListPreviewtemplatepreviewsEndpoint extends GetApiEndpointPaginated<ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult> {
13120
13400
  description: string;
13121
13401
  withAuth: boolean;
13122
13402
  requiredPermissions: string;
@@ -13154,8 +13434,48 @@ type ListPreviewtemplaterunsResult = {
13154
13434
  'options'?: {
13155
13435
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13156
13436
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13437
+ /** The format of the automatically generated preview name. This is a parsed ref string. */
13157
13438
  'nameFormat'?: string;
13439
+ /** If true, the preview name will default to the front of the resource name. */
13158
13440
  'prefixName'?: boolean;
13441
+ /** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
13442
+ 'schedule'?: {
13443
+ 'mon'?: {
13444
+ 'startTime'?: number;
13445
+ 'endTime'?: number;
13446
+ };
13447
+ 'tue'?: {
13448
+ 'startTime'?: number;
13449
+ 'endTime'?: number;
13450
+ };
13451
+ 'wed'?: {
13452
+ 'startTime'?: number;
13453
+ 'endTime'?: number;
13454
+ };
13455
+ 'thu'?: {
13456
+ 'startTime'?: number;
13457
+ 'endTime'?: number;
13458
+ };
13459
+ 'fri'?: {
13460
+ 'startTime'?: number;
13461
+ 'endTime'?: number;
13462
+ };
13463
+ 'sat'?: {
13464
+ 'startTime'?: number;
13465
+ 'endTime'?: number;
13466
+ };
13467
+ 'sun'?: {
13468
+ 'startTime'?: number;
13469
+ 'endTime'?: number;
13470
+ };
13471
+ };
13472
+ /** Settings regarding the automatic deletion of previews. */
13473
+ 'expiry'?: {
13474
+ /** If set, preview environments will be automatically deleted after this many minutes since their last update. */
13475
+ 'previewLifetime'?: number;
13476
+ /** If `true`, the expiry time for an existing preview will be reset when it is ran again. */
13477
+ 'resetOnUpdate'?: boolean;
13478
+ };
13159
13479
  };
13160
13480
  /** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
13161
13481
  'id': string;
@@ -13169,7 +13489,9 @@ type ListPreviewtemplaterunsResult = {
13169
13489
  'updatedAt'?: string;
13170
13490
  }[];
13171
13491
  };
13172
- type ListPreviewtemplaterunsCall = (opts: ListPreviewtemplaterunsRequest) => Promise<ApiCallResponse<ListPreviewtemplaterunsResult>>;
13492
+ type ListPreviewtemplaterunsCall = ((opts: ListPreviewtemplaterunsRequest) => Promise<ApiCallResponse<ListPreviewtemplaterunsResult>>) & {
13493
+ all: (opts: ListPreviewtemplaterunsRequest) => Promise<ApiCallResponse<ListPreviewtemplaterunsResult>>;
13494
+ };
13173
13495
  type ListPreviewtemplaterunsRequest = {
13174
13496
  parameters: ListPreviewtemplaterunsParameters;
13175
13497
  options?: ListPreviewtemplaterunsOptions;
@@ -13188,7 +13510,7 @@ type ListPreviewtemplaterunsOptions = {
13188
13510
  'cursor'?: string;
13189
13511
  };
13190
13512
  /** Get a list of preview template runs */
13191
- declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpoint<ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult> {
13513
+ declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpointPaginated<ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult> {
13192
13514
  description: string;
13193
13515
  withAuth: boolean;
13194
13516
  requiredPermissions: string;
@@ -13203,8 +13525,48 @@ type GetPreviewtemplaterunResult = {
13203
13525
  'options'?: {
13204
13526
  /** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
13205
13527
  'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
13528
+ /** The format of the automatically generated preview name. This is a parsed ref string. */
13206
13529
  'nameFormat'?: string;
13530
+ /** If true, the preview name will default to the front of the resource name. */
13207
13531
  'prefixName'?: boolean;
13532
+ /** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
13533
+ 'schedule'?: {
13534
+ 'mon'?: {
13535
+ 'startTime'?: number;
13536
+ 'endTime'?: number;
13537
+ };
13538
+ 'tue'?: {
13539
+ 'startTime'?: number;
13540
+ 'endTime'?: number;
13541
+ };
13542
+ 'wed'?: {
13543
+ 'startTime'?: number;
13544
+ 'endTime'?: number;
13545
+ };
13546
+ 'thu'?: {
13547
+ 'startTime'?: number;
13548
+ 'endTime'?: number;
13549
+ };
13550
+ 'fri'?: {
13551
+ 'startTime'?: number;
13552
+ 'endTime'?: number;
13553
+ };
13554
+ 'sat'?: {
13555
+ 'startTime'?: number;
13556
+ 'endTime'?: number;
13557
+ };
13558
+ 'sun'?: {
13559
+ 'startTime'?: number;
13560
+ 'endTime'?: number;
13561
+ };
13562
+ };
13563
+ /** Settings regarding the automatic deletion of previews. */
13564
+ 'expiry'?: {
13565
+ /** If set, preview environments will be automatically deleted after this many minutes since their last update. */
13566
+ 'previewLifetime'?: number;
13567
+ /** If `true`, the expiry time for an existing preview will be reset when it is ran again. */
13568
+ 'resetOnUpdate'?: boolean;
13569
+ };
13208
13570
  };
13209
13571
  /** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
13210
13572
  'arguments'?: any;
@@ -13228,6 +13590,8 @@ type GetPreviewtemplaterunResult = {
13228
13590
  'ciIgnoreFlags'?: string[];
13229
13591
  'ciIgnoreFlagsEnabled'?: boolean;
13230
13592
  'isAllowList'?: boolean;
13593
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13594
+ 'ignoreDrafts'?: boolean;
13231
13595
  /** Type of trigger */
13232
13596
  'type'?: 'git';
13233
13597
  /** Should the git trigger only be triggered manually? */
@@ -13308,6 +13672,8 @@ type GetReleaseflowResult = {
13308
13672
  'ciIgnoreFlags'?: string[];
13309
13673
  'ciIgnoreFlagsEnabled'?: boolean;
13310
13674
  'isAllowList'?: boolean;
13675
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13676
+ 'ignoreDrafts'?: boolean;
13311
13677
  }[];
13312
13678
  /** Options regarding how the template is run. */
13313
13679
  'options'?: {
@@ -13405,6 +13771,8 @@ type UpdateReleaseflowData = {
13405
13771
  'ciIgnoreFlags'?: string[];
13406
13772
  'ciIgnoreFlagsEnabled'?: boolean;
13407
13773
  'isAllowList'?: boolean;
13774
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13775
+ 'ignoreDrafts'?: boolean;
13408
13776
  }[];
13409
13777
  /** Options regarding how the template is run. */
13410
13778
  'options'?: {
@@ -13502,7 +13870,9 @@ type ListReleaseflowrunsResult = {
13502
13870
  'updatedAt': string;
13503
13871
  }[];
13504
13872
  };
13505
- type ListReleaseflowrunsCall = (opts: ListReleaseflowrunsRequest) => Promise<ApiCallResponse<ListReleaseflowrunsResult>>;
13873
+ type ListReleaseflowrunsCall = ((opts: ListReleaseflowrunsRequest) => Promise<ApiCallResponse<ListReleaseflowrunsResult>>) & {
13874
+ all: (opts: ListReleaseflowrunsRequest) => Promise<ApiCallResponse<ListReleaseflowrunsResult>>;
13875
+ };
13506
13876
  type ListReleaseflowrunsRequest = {
13507
13877
  parameters: ListReleaseflowrunsParameters;
13508
13878
  options?: ListReleaseflowrunsOptions;
@@ -13523,7 +13893,7 @@ type ListReleaseflowrunsOptions = {
13523
13893
  'cursor'?: string;
13524
13894
  };
13525
13895
  /** Lists runs of a release flow */
13526
- declare class ListReleaseflowrunsEndpoint extends GetApiEndpoint<ListReleaseflowrunsRequest, ListReleaseflowrunsResult> {
13896
+ declare class ListReleaseflowrunsEndpoint extends GetApiEndpointPaginated<ListReleaseflowrunsRequest, ListReleaseflowrunsResult> {
13527
13897
  description: string;
13528
13898
  withAuth: boolean;
13529
13899
  requiredPermissions: string;
@@ -13556,6 +13926,8 @@ type GetReleaseflowrunResult = {
13556
13926
  'ciIgnoreFlags'?: string[];
13557
13927
  'ciIgnoreFlagsEnabled'?: boolean;
13558
13928
  'isAllowList'?: boolean;
13929
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
13930
+ 'ignoreDrafts'?: boolean;
13559
13931
  }[];
13560
13932
  /** Options regarding how the template is run. */
13561
13933
  'options'?: {
@@ -13649,6 +14021,8 @@ type AbortReleaseflowrunResult = {
13649
14021
  'ciIgnoreFlags'?: string[];
13650
14022
  'ciIgnoreFlagsEnabled'?: boolean;
13651
14023
  'isAllowList'?: boolean;
14024
+ /** If `true`, draft pull requests from this repo will not trigger the template. */
14025
+ 'ignoreDrafts'?: boolean;
13652
14026
  }[];
13653
14027
  /** Options regarding how the template is run. */
13654
14028
  'options'?: {
@@ -13754,7 +14128,9 @@ type ListSecretsResult = {
13754
14128
  };
13755
14129
  }[];
13756
14130
  };
13757
- type ListSecretsCall = (opts: ListSecretsRequest) => Promise<ApiCallResponse<ListSecretsResult>>;
14131
+ type ListSecretsCall = ((opts: ListSecretsRequest) => Promise<ApiCallResponse<ListSecretsResult>>) & {
14132
+ all: (opts: ListSecretsRequest) => Promise<ApiCallResponse<ListSecretsResult>>;
14133
+ };
13758
14134
  type ListSecretsRequest = {
13759
14135
  parameters: ListSecretsParameters;
13760
14136
  options?: ListSecretsOptions;
@@ -13771,7 +14147,7 @@ type ListSecretsOptions = {
13771
14147
  'cursor'?: string;
13772
14148
  };
13773
14149
  /** Gets a list of secrets belonging to the project */
13774
- declare class ListSecretsEndpoint extends GetApiEndpoint<ListSecretsRequest, ListSecretsResult> {
14150
+ declare class ListSecretsEndpoint extends GetApiEndpointPaginated<ListSecretsRequest, ListSecretsResult> {
13775
14151
  description: string;
13776
14152
  withAuth: boolean;
13777
14153
  requiredPermissions: string;
@@ -20073,14 +20449,62 @@ type GetServiceResult = {
20073
20449
  'storageSize': number;
20074
20450
  };
20075
20451
  };
20452
+ /** Roll out strategy of the service */
20453
+ 'strategy'?: {
20454
+ /** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
20455
+ 'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
20456
+ };
20457
+ 'zonalRedundancy'?: {
20458
+ /** Defines scheduling behaviour across different zones within the same region. */
20459
+ 'type'?: 'disabled' | 'preferred' | 'required';
20460
+ /** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
20461
+ 'minZones'?: number;
20462
+ };
20463
+ 'gpu'?: {
20464
+ 'enabled'?: boolean;
20465
+ 'configuration'?: {
20466
+ 'gpuType': string;
20467
+ 'timesliced'?: boolean;
20468
+ };
20469
+ };
20470
+ /** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
20471
+ 'gracePeriodSeconds'?: number;
20472
+ /** Allow setting custom labels and annotations for workloads. */
20473
+ 'metadata'?: {
20474
+ /** Specify custom labels for the workload. */
20475
+ 'labels'?: any;
20476
+ /** Specify custom annotations for the workload as string or object. */
20477
+ 'annotations'?: any;
20478
+ };
20076
20479
  /** URL at which the service's deployed image is located */
20077
20480
  'imageUrl'?: string;
20078
20481
  };
20079
20482
  'buildConfiguration'?: {
20080
- 'branchRestrictions'?: string[];
20483
+ /** An array of pull request build rules. Only supported for build services. Each commit belonging to a pull request on a branch that matches one of the provided build rules will be built automatically. */
20081
20484
  'prRestrictions'?: string[];
20082
- 'pathIgnoreRules': string[];
20485
+ /** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
20486
+ 'branchRestrictions'?: string[];
20487
+ /** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
20488
+ 'pathIgnoreRules'?: string[];
20489
+ /** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
20490
+ 'isAllowList'?: boolean;
20491
+ /** If `true`, enables commit ignore flags. If a commit message contains one or more of the flags in `ciIgnoreFlags`, that commit will not be built. */
20492
+ 'ciIgnoreFlagsEnabled'?: boolean;
20493
+ /** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
20494
+ 'ciIgnoreFlags'?: string[];
20495
+ /** If your Dockerfile contains multiple build stages, you can specify the target stage by entering its name here. */
20496
+ 'dockerfileTarget'?: string;
20083
20497
  'dockerCredentials'?: string[];
20498
+ /** Include .git folder inside the build context */
20499
+ 'includeGitFolder'?: boolean;
20500
+ /** Include the entire git history as part of the .git folder. Only relevant if "includeGitFolder" is set. */
20501
+ 'fullGitClone'?: boolean;
20502
+ 'storage'?: {
20503
+ 'ephemeralStorage'?: {
20504
+ /** Ephemeral storage per build in MB Example: 16384 */
20505
+ 'storageSize'?: number;
20506
+ };
20507
+ };
20084
20508
  };
20085
20509
  'buildEngineConfiguration'?: {
20086
20510
  /** The build engine used. Example: "buildpack" */
@@ -20282,7 +20706,9 @@ type GetServiceBranchesResult = {
20282
20706
  };
20283
20707
  }[];
20284
20708
  };
20285
- type GetServiceBranchesCall = (opts: GetServiceBranchesRequest) => Promise<ApiCallResponse<GetServiceBranchesResult>>;
20709
+ type GetServiceBranchesCall = ((opts: GetServiceBranchesRequest) => Promise<ApiCallResponse<GetServiceBranchesResult>>) & {
20710
+ all: (opts: GetServiceBranchesRequest) => Promise<ApiCallResponse<GetServiceBranchesResult>>;
20711
+ };
20286
20712
  type GetServiceBranchesRequest = {
20287
20713
  parameters: GetServiceBranchesParameters;
20288
20714
  options?: GetServiceBranchesOptions;
@@ -20301,7 +20727,7 @@ type GetServiceBranchesOptions = {
20301
20727
  'cursor'?: string;
20302
20728
  };
20303
20729
  /** Gets information about the branches of the given service. */
20304
- declare class GetServiceBranchesEndpoint extends GetApiEndpoint<GetServiceBranchesRequest, GetServiceBranchesResult> {
20730
+ declare class GetServiceBranchesEndpoint extends GetApiEndpointPaginated<GetServiceBranchesRequest, GetServiceBranchesResult> {
20305
20731
  description: string;
20306
20732
  withAuth: boolean;
20307
20733
  requiredPermissions: string;
@@ -20334,7 +20760,9 @@ type GetServiceBuildsResult = {
20334
20760
  'buildConcludedAt'?: number;
20335
20761
  }[];
20336
20762
  };
20337
- type GetServiceBuildsCall = (opts: GetServiceBuildsRequest) => Promise<ApiCallResponse<GetServiceBuildsResult>>;
20763
+ type GetServiceBuildsCall = ((opts: GetServiceBuildsRequest) => Promise<ApiCallResponse<GetServiceBuildsResult>>) & {
20764
+ all: (opts: GetServiceBuildsRequest) => Promise<ApiCallResponse<GetServiceBuildsResult>>;
20765
+ };
20338
20766
  type GetServiceBuildsRequest = {
20339
20767
  parameters: GetServiceBuildsParameters;
20340
20768
  options?: GetServiceBuildsOptions;
@@ -20353,7 +20781,7 @@ type GetServiceBuildsOptions = {
20353
20781
  'cursor'?: string;
20354
20782
  };
20355
20783
  /** Lists the builds for the service */
20356
- declare class GetServiceBuildsEndpoint extends GetApiEndpoint<GetServiceBuildsRequest, GetServiceBuildsResult> {
20784
+ declare class GetServiceBuildsEndpoint extends GetApiEndpointPaginated<GetServiceBuildsRequest, GetServiceBuildsResult> {
20357
20785
  description: string;
20358
20786
  withAuth: boolean;
20359
20787
  requiredPermissions: string;
@@ -20760,7 +21188,9 @@ type GetServiceContainersResult = {
20760
21188
  'updatedAt': number;
20761
21189
  }[];
20762
21190
  };
20763
- type GetServiceContainersCall = (opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>;
21191
+ type GetServiceContainersCall = ((opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>) & {
21192
+ all: (opts: GetServiceContainersRequest) => Promise<ApiCallResponse<GetServiceContainersResult>>;
21193
+ };
20764
21194
  type GetServiceContainersRequest = {
20765
21195
  parameters: GetServiceContainersParameters;
20766
21196
  options?: GetServiceContainersOptions;
@@ -20779,7 +21209,7 @@ type GetServiceContainersOptions = {
20779
21209
  'cursor'?: string;
20780
21210
  };
20781
21211
  /** Gets a list of containers for the given service. */
20782
- declare class GetServiceContainersEndpoint extends GetApiEndpoint<GetServiceContainersRequest, GetServiceContainersResult> {
21212
+ declare class GetServiceContainersEndpoint extends GetApiEndpointPaginated<GetServiceContainersRequest, GetServiceContainersResult> {
20783
21213
  description: string;
20784
21214
  withAuth: boolean;
20785
21215
  requiredPermissions: string;
@@ -21384,7 +21814,9 @@ type GetServicePullrequestsResult = {
21384
21814
  'html_url': string;
21385
21815
  }[];
21386
21816
  };
21387
- type GetServicePullrequestsCall = (opts: GetServicePullrequestsRequest) => Promise<ApiCallResponse<GetServicePullrequestsResult>>;
21817
+ type GetServicePullrequestsCall = ((opts: GetServicePullrequestsRequest) => Promise<ApiCallResponse<GetServicePullrequestsResult>>) & {
21818
+ all: (opts: GetServicePullrequestsRequest) => Promise<ApiCallResponse<GetServicePullrequestsResult>>;
21819
+ };
21388
21820
  type GetServicePullrequestsRequest = {
21389
21821
  parameters: GetServicePullrequestsParameters;
21390
21822
  options?: GetServicePullrequestsOptions;
@@ -21403,7 +21835,7 @@ type GetServicePullrequestsOptions = {
21403
21835
  'cursor'?: string;
21404
21836
  };
21405
21837
  /** Gets information about the pull-requests of the given service. */
21406
- declare class GetServicePullrequestsEndpoint extends GetApiEndpoint<GetServicePullrequestsRequest, GetServicePullrequestsResult> {
21838
+ declare class GetServicePullrequestsEndpoint extends GetApiEndpointPaginated<GetServicePullrequestsRequest, GetServicePullrequestsResult> {
21407
21839
  description: string;
21408
21840
  withAuth: boolean;
21409
21841
  requiredPermissions: string;
@@ -21992,7 +22424,9 @@ type ListTagsResult = {
21992
22424
  'createdAt'?: string;
21993
22425
  }[];
21994
22426
  };
21995
- type ListTagsCall = (opts: ListTagsRequest) => Promise<ApiCallResponse<ListTagsResult>>;
22427
+ type ListTagsCall = ((opts: ListTagsRequest) => Promise<ApiCallResponse<ListTagsResult>>) & {
22428
+ all: (opts: ListTagsRequest) => Promise<ApiCallResponse<ListTagsResult>>;
22429
+ };
21996
22430
  type ListTagsRequest = {
21997
22431
  options?: ListTagsOptions;
21998
22432
  };
@@ -22005,7 +22439,7 @@ type ListTagsOptions = {
22005
22439
  'cursor'?: string;
22006
22440
  };
22007
22441
  /** List the resource tags for this entity. */
22008
- declare class ListTagsEndpoint extends GetApiEndpoint<ListTagsRequest, ListTagsResult> {
22442
+ declare class ListTagsEndpoint extends GetApiEndpointPaginated<ListTagsRequest, ListTagsResult> {
22009
22443
  description: string;
22010
22444
  withAuth: boolean;
22011
22445
  requiredPermissions: string;
@@ -22221,7 +22655,9 @@ type ListTemplatesResult = {
22221
22655
  'updatedAt'?: string;
22222
22656
  }[];
22223
22657
  };
22224
- type ListTemplatesCall = (opts: ListTemplatesRequest) => Promise<ApiCallResponse<ListTemplatesResult>>;
22658
+ type ListTemplatesCall = ((opts: ListTemplatesRequest) => Promise<ApiCallResponse<ListTemplatesResult>>) & {
22659
+ all: (opts: ListTemplatesRequest) => Promise<ApiCallResponse<ListTemplatesResult>>;
22660
+ };
22225
22661
  type ListTemplatesRequest = {
22226
22662
  options?: ListTemplatesOptions;
22227
22663
  };
@@ -22234,7 +22670,7 @@ type ListTemplatesOptions = {
22234
22670
  'cursor'?: string;
22235
22671
  };
22236
22672
  /** Get a list of templates */
22237
- declare class ListTemplatesEndpoint extends GetApiEndpoint<ListTemplatesRequest, ListTemplatesResult> {
22673
+ declare class ListTemplatesEndpoint extends GetApiEndpointPaginated<ListTemplatesRequest, ListTemplatesResult> {
22238
22674
  description: string;
22239
22675
  withAuth: boolean;
22240
22676
  requiredPermissions: string;
@@ -22470,7 +22906,9 @@ type GetTemplateResult = {
22470
22906
  /** time of update */
22471
22907
  'updatedAt'?: string;
22472
22908
  };
22473
- type GetTemplateCall = (opts: GetTemplateRequest) => Promise<ApiCallResponse<GetTemplateResult>>;
22909
+ type GetTemplateCall = ((opts: GetTemplateRequest) => Promise<ApiCallResponse<GetTemplateResult>>) & {
22910
+ all: (opts: GetTemplateRequest) => Promise<ApiCallResponse<GetTemplateResult>>;
22911
+ };
22474
22912
  type GetTemplateRequest = {
22475
22913
  parameters: GetTemplateParameters;
22476
22914
  options?: GetTemplateOptions;
@@ -22487,7 +22925,7 @@ type GetTemplateOptions = {
22487
22925
  'cursor'?: string;
22488
22926
  };
22489
22927
  /** Get information about the given template. */
22490
- declare class GetTemplateEndpoint extends GetApiEndpoint<GetTemplateRequest, GetTemplateResult> {
22928
+ declare class GetTemplateEndpoint extends GetApiEndpointPaginated<GetTemplateRequest, GetTemplateResult> {
22491
22929
  description: string;
22492
22930
  withAuth: boolean;
22493
22931
  requiredPermissions: string;
@@ -22786,7 +23224,9 @@ type ListTemplaterunsResult = {
22786
23224
  'updatedAt': string;
22787
23225
  }[];
22788
23226
  };
22789
- type ListTemplaterunsCall = (opts: ListTemplaterunsRequest) => Promise<ApiCallResponse<ListTemplaterunsResult>>;
23227
+ type ListTemplaterunsCall = ((opts: ListTemplaterunsRequest) => Promise<ApiCallResponse<ListTemplaterunsResult>>) & {
23228
+ all: (opts: ListTemplaterunsRequest) => Promise<ApiCallResponse<ListTemplaterunsResult>>;
23229
+ };
22790
23230
  type ListTemplaterunsRequest = {
22791
23231
  parameters: ListTemplaterunsParameters;
22792
23232
  options?: ListTemplaterunsOptions;
@@ -22803,7 +23243,7 @@ type ListTemplaterunsOptions = {
22803
23243
  'cursor'?: string;
22804
23244
  };
22805
23245
  /** Get a list of template runs */
22806
- declare class ListTemplaterunsEndpoint extends GetApiEndpoint<ListTemplaterunsRequest, ListTemplaterunsResult> {
23246
+ declare class ListTemplaterunsEndpoint extends GetApiEndpointPaginated<ListTemplaterunsRequest, ListTemplaterunsResult> {
22807
23247
  description: string;
22808
23248
  withAuth: boolean;
22809
23249
  requiredPermissions: string;
@@ -23746,4 +24186,4 @@ type ApiClientOpts = {
23746
24186
  customUserAgent?: string;
23747
24187
  };
23748
24188
 
23749
- export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, 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, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, 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, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, 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, RestoreAddonBackupOptions, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, 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 };
24189
+ export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreOptions, 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, CordonCloudClusterNodeCall, CordonCloudClusterNodeEndpoint, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, 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, DrainCloudClusterNodeCall, DrainCloudClusterNodeEndpoint, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresEndpoint, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, 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, GetApiEndpointPaginated, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateEndpoint, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, 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, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, 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, RestoreAddonBackupOptions, 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, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeEndpoint, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, 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 };