@northflank/js-client 0.7.27 → 0.8.1

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.
@@ -1,6 +1,5 @@
1
1
  /// <reference types="node" />
2
2
  import { EventEmitter } from 'events';
3
- import { Response } from 'node-fetch';
4
3
  import * as stream from 'stream';
5
4
 
6
5
  type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
@@ -388,6 +387,7 @@ declare class NorthflankPortForwarder extends EventEmitter {
388
387
  }
389
388
 
390
389
  interface ExecCommand extends EventEmitter {
390
+ on(event: 'auth-success', listener: () => any): any;
391
391
  on(event: 'command-started', listener: () => any): any;
392
392
  on(event: 'command-completed', listener: () => any): any;
393
393
  on(event: 'command-result', listener: (result: {
@@ -408,6 +408,8 @@ type ExecConfig = {
408
408
  shell?: string;
409
409
  user?: string | number;
410
410
  group?: string | number;
411
+ encoding?: string;
412
+ tty?: boolean;
411
413
  ttyRows?: number;
412
414
  ttyColumns?: number;
413
415
  };
@@ -433,6 +435,7 @@ declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
433
435
  }) => Promise<void>;
434
436
  start(): Promise<CommandResult>;
435
437
  private constructPayloadPacket;
438
+ private stdInEndPacket;
436
439
  private initialAuth;
437
440
  private reset;
438
441
  }
@@ -451,6 +454,8 @@ type ExecCommandData = {
451
454
  };
452
455
  type ExecSessionData = Omit<ExecCommandData, 'command'> & {
453
456
  command?: string | string[];
457
+ encoding?: string;
458
+ tty?: boolean;
454
459
  ttyRows?: number;
455
460
  ttyColumns?: number;
456
461
  };
@@ -506,6 +511,71 @@ declare class NorthflankExecCommand {
506
511
  private assertStartedWithNodejs;
507
512
  }
508
513
 
514
+ declare enum CopyType {
515
+ DIRECTORY_UPLOAD = "directory-upload",
516
+ FILE_UPLOAD = "file-upload",
517
+ DIRECTORY_DOWNLOAD = "directory-download",
518
+ FILE_DOWNLOAD = "file-download"
519
+ }
520
+ type DownloadOptions = {
521
+ localPath: string;
522
+ remotePath?: string;
523
+ containerName?: string;
524
+ ignoreList?: string[];
525
+ };
526
+ type UploadOptions = {
527
+ localPath: string;
528
+ remotePath?: string;
529
+ containerName?: string;
530
+ ignoreList?: string[];
531
+ };
532
+ declare class NorthflankFileCopy {
533
+ private readonly exec;
534
+ private stdIgnoreList;
535
+ constructor(exec: NorthflankExecCommand, stdIgnoreListOverride?: string[]);
536
+ downloadServiceFiles(parameters: {
537
+ projectId: string;
538
+ serviceId: string;
539
+ }, options: DownloadOptions): Promise<{
540
+ type: CopyType;
541
+ sourceDirectory: string;
542
+ sourceFile?: string | undefined;
543
+ targetDirectory: string;
544
+ targetFile?: string | undefined;
545
+ }>;
546
+ uploadServiceFiles(parameters: {
547
+ projectId: string;
548
+ serviceId: string;
549
+ }, options: UploadOptions): Promise<{
550
+ type: CopyType;
551
+ sourceDirectory: string;
552
+ sourceFile?: string | undefined;
553
+ targetDirectory: string;
554
+ targetFile?: string | undefined;
555
+ }>;
556
+ downloadJobFiles(parameters: {
557
+ projectId: string;
558
+ jobId: string;
559
+ }, options: DownloadOptions): Promise<{
560
+ type: CopyType;
561
+ sourceDirectory: string;
562
+ sourceFile?: string | undefined;
563
+ targetDirectory: string;
564
+ targetFile?: string | undefined;
565
+ }>;
566
+ uploadJobFiles(parameters: {
567
+ projectId: string;
568
+ jobId: string;
569
+ }, options: UploadOptions): Promise<{
570
+ type: CopyType;
571
+ sourceDirectory: string;
572
+ sourceFile?: string | undefined;
573
+ targetDirectory: string;
574
+ targetFile?: string | undefined;
575
+ }>;
576
+ private copy;
577
+ }
578
+
509
579
  type LogsRequestCommon = LogRequestTextFilters & {
510
580
  lineLimit?: number;
511
581
  startTime?: Date;
@@ -1695,7 +1765,7 @@ type ListCloudClustersResult = {
1695
1765
  /** The description of the cluster. Example: "This is a new cluster." */
1696
1766
  'description'?: string;
1697
1767
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1698
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
1768
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
1699
1769
  /** Region of the cluster. Example: "europe-west2" */
1700
1770
  'region': string;
1701
1771
  'status'?: {
@@ -1782,6 +1852,15 @@ type ListCloudClustersResult = {
1782
1852
  'ocpu': number;
1783
1853
  'memory': number;
1784
1854
  };
1855
+ /** GCP specific settings. */
1856
+ 'gcp'?: {
1857
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
1858
+ 'enablePrivateNodes'?: boolean;
1859
+ };
1860
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1861
+ 'systemPool'?: boolean;
1862
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
1863
+ 'enablePublicNodeIp'?: boolean;
1785
1864
  /** AWS specific node pool settings. */
1786
1865
  'aws'?: {
1787
1866
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -1800,6 +1879,9 @@ type ListCloudClustersResult = {
1800
1879
  'min'?: number;
1801
1880
  'max'?: number;
1802
1881
  };
1882
+ 'platform'?: {
1883
+ 'architecture'?: 'amd64' | 'arm64';
1884
+ };
1803
1885
  'computeResources'?: {
1804
1886
  'gpu'?: {
1805
1887
  /** GPU type associated with the node pool. Example: "h100" */
@@ -1834,10 +1916,6 @@ type ListCloudClustersResult = {
1834
1916
  'diskType'?: string;
1835
1917
  /** Disk size in GB Example: 100 */
1836
1918
  'diskSize': number;
1837
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1838
- 'systemPool'?: boolean;
1839
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
1840
- 'enablePublicNodeIp'?: boolean;
1841
1919
  /** Zones in which the node pool should be provisioned. */
1842
1920
  'availabilityZones': string[];
1843
1921
  /** Subnets ids in which the node pool should be provisioned. */
@@ -1915,6 +1993,11 @@ type ListCloudClustersResult = {
1915
1993
  /** Configure the data disk size per Ceph replica */
1916
1994
  'storage'?: number;
1917
1995
  };
1996
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
1997
+ 'enableMultiReadWriteStorage'?: boolean;
1998
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
1999
+ 'enableSingleReadWriteStorage'?: boolean;
2000
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
1918
2001
  'enableErasureCoding'?: boolean;
1919
2002
  };
1920
2003
  };
@@ -2025,7 +2108,7 @@ type CreateCloudClusterResult = {
2025
2108
  /** The description of the cluster. Example: "This is a new cluster." */
2026
2109
  'description'?: string;
2027
2110
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2028
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2111
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2029
2112
  /** Region of the cluster. Example: "europe-west2" */
2030
2113
  'region': string;
2031
2114
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2102,6 +2185,15 @@ type CreateCloudClusterResult = {
2102
2185
  'ocpu': number;
2103
2186
  'memory': number;
2104
2187
  };
2188
+ /** GCP specific settings. */
2189
+ 'gcp'?: {
2190
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2191
+ 'enablePrivateNodes'?: boolean;
2192
+ };
2193
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2194
+ 'systemPool'?: boolean;
2195
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2196
+ 'enablePublicNodeIp'?: boolean;
2105
2197
  /** AWS specific node pool settings. */
2106
2198
  'aws'?: {
2107
2199
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -2120,6 +2212,9 @@ type CreateCloudClusterResult = {
2120
2212
  'min'?: number;
2121
2213
  'max'?: number;
2122
2214
  };
2215
+ 'platform'?: {
2216
+ 'architecture'?: 'amd64' | 'arm64';
2217
+ };
2123
2218
  'computeResources'?: {
2124
2219
  'gpu'?: {
2125
2220
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2144,10 +2239,6 @@ type CreateCloudClusterResult = {
2144
2239
  'diskType'?: string;
2145
2240
  /** Disk size in GB Example: 100 */
2146
2241
  'diskSize': number;
2147
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2148
- 'systemPool'?: boolean;
2149
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2150
- 'enablePublicNodeIp'?: boolean;
2151
2242
  /** Zones in which the node pool should be provisioned. */
2152
2243
  'availabilityZones': string[];
2153
2244
  'subnets'?: string[];
@@ -2231,7 +2322,13 @@ type CreateCloudClusterResult = {
2231
2322
  /** Configure the data disk size per Ceph replica */
2232
2323
  'storage'?: number;
2233
2324
  };
2325
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2326
+ 'enableMultiReadWriteStorage'?: boolean;
2327
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2328
+ 'enableSingleReadWriteStorage'?: boolean;
2329
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2234
2330
  'enableErasureCoding'?: boolean;
2331
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2235
2332
  'enableTopologyAwareScheduling'?: boolean;
2236
2333
  };
2237
2334
  };
@@ -2336,7 +2433,7 @@ type CreateCloudClusterData = {
2336
2433
  /** The description of the cluster. Example: "This is a new cluster." */
2337
2434
  'description'?: string;
2338
2435
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2339
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2436
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2340
2437
  /** Region of the cluster. Example: "europe-west2" */
2341
2438
  'region': string;
2342
2439
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2413,6 +2510,15 @@ type CreateCloudClusterData = {
2413
2510
  'ocpu': number;
2414
2511
  'memory': number;
2415
2512
  };
2513
+ /** GCP specific settings. */
2514
+ 'gcp'?: {
2515
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2516
+ 'enablePrivateNodes'?: boolean;
2517
+ };
2518
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2519
+ 'systemPool'?: boolean;
2520
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2521
+ 'enablePublicNodeIp'?: boolean;
2416
2522
  /** AWS specific node pool settings. */
2417
2523
  'aws'?: {
2418
2524
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -2431,6 +2537,9 @@ type CreateCloudClusterData = {
2431
2537
  'min'?: number;
2432
2538
  'max'?: number;
2433
2539
  };
2540
+ 'platform'?: {
2541
+ 'architecture'?: 'amd64' | 'arm64';
2542
+ };
2434
2543
  'computeResources'?: {
2435
2544
  'gpu'?: {
2436
2545
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2455,10 +2564,6 @@ type CreateCloudClusterData = {
2455
2564
  'diskType'?: string;
2456
2565
  /** Disk size in GB Example: 100 */
2457
2566
  'diskSize': number;
2458
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2459
- 'systemPool'?: boolean;
2460
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2461
- 'enablePublicNodeIp'?: boolean;
2462
2567
  /** Zones in which the node pool should be provisioned. */
2463
2568
  'availabilityZones': string[];
2464
2569
  'subnets'?: string[];
@@ -2542,7 +2647,13 @@ type CreateCloudClusterData = {
2542
2647
  /** Configure the data disk size per Ceph replica */
2543
2648
  'storage'?: number;
2544
2649
  };
2650
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2651
+ 'enableMultiReadWriteStorage'?: boolean;
2652
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2653
+ 'enableSingleReadWriteStorage'?: boolean;
2654
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2545
2655
  'enableErasureCoding'?: boolean;
2656
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2546
2657
  'enableTopologyAwareScheduling'?: boolean;
2547
2658
  };
2548
2659
  };
@@ -2635,7 +2746,7 @@ type PutCloudClusterResult = {
2635
2746
  /** The description of the cluster. Example: "This is a new cluster." */
2636
2747
  'description'?: string;
2637
2748
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2638
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2749
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2639
2750
  /** Region of the cluster. Example: "europe-west2" */
2640
2751
  'region': string;
2641
2752
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2712,6 +2823,15 @@ type PutCloudClusterResult = {
2712
2823
  'ocpu': number;
2713
2824
  'memory': number;
2714
2825
  };
2826
+ /** GCP specific settings. */
2827
+ 'gcp'?: {
2828
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2829
+ 'enablePrivateNodes'?: boolean;
2830
+ };
2831
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2832
+ 'systemPool'?: boolean;
2833
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2834
+ 'enablePublicNodeIp'?: boolean;
2715
2835
  /** AWS specific node pool settings. */
2716
2836
  'aws'?: {
2717
2837
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -2730,6 +2850,9 @@ type PutCloudClusterResult = {
2730
2850
  'min'?: number;
2731
2851
  'max'?: number;
2732
2852
  };
2853
+ 'platform'?: {
2854
+ 'architecture'?: 'amd64' | 'arm64';
2855
+ };
2733
2856
  'computeResources'?: {
2734
2857
  'gpu'?: {
2735
2858
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2754,10 +2877,6 @@ type PutCloudClusterResult = {
2754
2877
  'diskType'?: string;
2755
2878
  /** Disk size in GB Example: 100 */
2756
2879
  'diskSize': number;
2757
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2758
- 'systemPool'?: boolean;
2759
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
2760
- 'enablePublicNodeIp'?: boolean;
2761
2880
  /** Zones in which the node pool should be provisioned. */
2762
2881
  'availabilityZones': string[];
2763
2882
  'subnets'?: string[];
@@ -2841,7 +2960,13 @@ type PutCloudClusterResult = {
2841
2960
  /** Configure the data disk size per Ceph replica */
2842
2961
  'storage'?: number;
2843
2962
  };
2963
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2964
+ 'enableMultiReadWriteStorage'?: boolean;
2965
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2966
+ 'enableSingleReadWriteStorage'?: boolean;
2967
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2844
2968
  'enableErasureCoding'?: boolean;
2969
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2845
2970
  'enableTopologyAwareScheduling'?: boolean;
2846
2971
  };
2847
2972
  };
@@ -2946,7 +3071,7 @@ type PutCloudClusterData = {
2946
3071
  /** The description of the cluster. Example: "This is a new cluster." */
2947
3072
  'description'?: string;
2948
3073
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2949
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3074
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2950
3075
  /** Region of the cluster. Example: "europe-west2" */
2951
3076
  'region': string;
2952
3077
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3023,6 +3148,15 @@ type PutCloudClusterData = {
3023
3148
  'ocpu': number;
3024
3149
  'memory': number;
3025
3150
  };
3151
+ /** GCP specific settings. */
3152
+ 'gcp'?: {
3153
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3154
+ 'enablePrivateNodes'?: boolean;
3155
+ };
3156
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3157
+ 'systemPool'?: boolean;
3158
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3159
+ 'enablePublicNodeIp'?: boolean;
3026
3160
  /** AWS specific node pool settings. */
3027
3161
  'aws'?: {
3028
3162
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -3041,6 +3175,9 @@ type PutCloudClusterData = {
3041
3175
  'min'?: number;
3042
3176
  'max'?: number;
3043
3177
  };
3178
+ 'platform'?: {
3179
+ 'architecture'?: 'amd64' | 'arm64';
3180
+ };
3044
3181
  'computeResources'?: {
3045
3182
  'gpu'?: {
3046
3183
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3065,10 +3202,6 @@ type PutCloudClusterData = {
3065
3202
  'diskType'?: string;
3066
3203
  /** Disk size in GB Example: 100 */
3067
3204
  'diskSize': number;
3068
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3069
- 'systemPool'?: boolean;
3070
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3071
- 'enablePublicNodeIp'?: boolean;
3072
3205
  /** Zones in which the node pool should be provisioned. */
3073
3206
  'availabilityZones': string[];
3074
3207
  'subnets'?: string[];
@@ -3152,7 +3285,13 @@ type PutCloudClusterData = {
3152
3285
  /** Configure the data disk size per Ceph replica */
3153
3286
  'storage'?: number;
3154
3287
  };
3288
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3289
+ 'enableMultiReadWriteStorage'?: boolean;
3290
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3291
+ 'enableSingleReadWriteStorage'?: boolean;
3292
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3155
3293
  'enableErasureCoding'?: boolean;
3294
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3156
3295
  'enableTopologyAwareScheduling'?: boolean;
3157
3296
  };
3158
3297
  };
@@ -3245,7 +3384,7 @@ type GetCloudClusterResult = {
3245
3384
  /** The description of the cluster. Example: "This is a new cluster." */
3246
3385
  'description'?: string;
3247
3386
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3248
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3387
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3249
3388
  /** Region of the cluster. Example: "europe-west2" */
3250
3389
  'region': string;
3251
3390
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3322,6 +3461,15 @@ type GetCloudClusterResult = {
3322
3461
  'ocpu': number;
3323
3462
  'memory': number;
3324
3463
  };
3464
+ /** GCP specific settings. */
3465
+ 'gcp'?: {
3466
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3467
+ 'enablePrivateNodes'?: boolean;
3468
+ };
3469
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3470
+ 'systemPool'?: boolean;
3471
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3472
+ 'enablePublicNodeIp'?: boolean;
3325
3473
  /** AWS specific node pool settings. */
3326
3474
  'aws'?: {
3327
3475
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -3340,6 +3488,9 @@ type GetCloudClusterResult = {
3340
3488
  'min'?: number;
3341
3489
  'max'?: number;
3342
3490
  };
3491
+ 'platform'?: {
3492
+ 'architecture'?: 'amd64' | 'arm64';
3493
+ };
3343
3494
  'computeResources'?: {
3344
3495
  'gpu'?: {
3345
3496
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3364,10 +3515,6 @@ type GetCloudClusterResult = {
3364
3515
  'diskType'?: string;
3365
3516
  /** Disk size in GB Example: 100 */
3366
3517
  'diskSize': number;
3367
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3368
- 'systemPool'?: boolean;
3369
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3370
- 'enablePublicNodeIp'?: boolean;
3371
3518
  /** Zones in which the node pool should be provisioned. */
3372
3519
  'availabilityZones': string[];
3373
3520
  'subnets'?: string[];
@@ -3451,7 +3598,13 @@ type GetCloudClusterResult = {
3451
3598
  /** Configure the data disk size per Ceph replica */
3452
3599
  'storage'?: number;
3453
3600
  };
3601
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3602
+ 'enableMultiReadWriteStorage'?: boolean;
3603
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3604
+ 'enableSingleReadWriteStorage'?: boolean;
3605
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3454
3606
  'enableErasureCoding'?: boolean;
3607
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3455
3608
  'enableTopologyAwareScheduling'?: boolean;
3456
3609
  };
3457
3610
  };
@@ -3568,7 +3721,7 @@ type PatchCloudClusterResult = {
3568
3721
  /** The description of the cluster. Example: "This is a new cluster." */
3569
3722
  'description'?: string;
3570
3723
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3571
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3724
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3572
3725
  /** Region of the cluster. Example: "europe-west2" */
3573
3726
  'region': string;
3574
3727
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3645,6 +3798,15 @@ type PatchCloudClusterResult = {
3645
3798
  'ocpu': number;
3646
3799
  'memory': number;
3647
3800
  };
3801
+ /** GCP specific settings. */
3802
+ 'gcp'?: {
3803
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3804
+ 'enablePrivateNodes'?: boolean;
3805
+ };
3806
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3807
+ 'systemPool'?: boolean;
3808
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3809
+ 'enablePublicNodeIp'?: boolean;
3648
3810
  /** AWS specific node pool settings. */
3649
3811
  'aws'?: {
3650
3812
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -3663,6 +3825,9 @@ type PatchCloudClusterResult = {
3663
3825
  'min'?: number;
3664
3826
  'max'?: number;
3665
3827
  };
3828
+ 'platform'?: {
3829
+ 'architecture'?: 'amd64' | 'arm64';
3830
+ };
3666
3831
  'computeResources'?: {
3667
3832
  'gpu'?: {
3668
3833
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3687,10 +3852,6 @@ type PatchCloudClusterResult = {
3687
3852
  'diskType'?: string;
3688
3853
  /** Disk size in GB Example: 100 */
3689
3854
  'diskSize': number;
3690
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3691
- 'systemPool'?: boolean;
3692
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3693
- 'enablePublicNodeIp'?: boolean;
3694
3855
  /** Zones in which the node pool should be provisioned. */
3695
3856
  'availabilityZones': string[];
3696
3857
  'subnets'?: string[];
@@ -3774,7 +3935,13 @@ type PatchCloudClusterResult = {
3774
3935
  /** Configure the data disk size per Ceph replica */
3775
3936
  'storage'?: number;
3776
3937
  };
3938
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3939
+ 'enableMultiReadWriteStorage'?: boolean;
3940
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3941
+ 'enableSingleReadWriteStorage'?: boolean;
3942
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3777
3943
  'enableErasureCoding'?: boolean;
3944
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3778
3945
  'enableTopologyAwareScheduling'?: boolean;
3779
3946
  };
3780
3947
  };
@@ -3936,6 +4103,15 @@ type PatchCloudClusterData = {
3936
4103
  'ocpu': number;
3937
4104
  'memory': number;
3938
4105
  };
4106
+ /** GCP specific settings. */
4107
+ 'gcp'?: {
4108
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
4109
+ 'enablePrivateNodes'?: boolean;
4110
+ };
4111
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
4112
+ 'systemPool'?: boolean;
4113
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
4114
+ 'enablePublicNodeIp'?: boolean;
3939
4115
  /** AWS specific node pool settings. */
3940
4116
  'aws'?: {
3941
4117
  /** Specify a launch template to use for this node pool. When using a launch template, the disk size selection on the node pool level will be ignored. */
@@ -3954,6 +4130,9 @@ type PatchCloudClusterData = {
3954
4130
  'min'?: number;
3955
4131
  'max'?: number;
3956
4132
  };
4133
+ 'platform'?: {
4134
+ 'architecture'?: 'amd64' | 'arm64';
4135
+ };
3957
4136
  'computeResources'?: {
3958
4137
  'gpu'?: {
3959
4138
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3978,10 +4157,6 @@ type PatchCloudClusterData = {
3978
4157
  'diskType'?: string;
3979
4158
  /** Disk size in GB Example: 100 */
3980
4159
  'diskSize': number;
3981
- /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3982
- 'systemPool'?: boolean;
3983
- /** When 'provider' is 'azure', set this flag to use public node IPs. */
3984
- 'enablePublicNodeIp'?: boolean;
3985
4160
  /** Zones in which the node pool should be provisioned. */
3986
4161
  'availabilityZones': string[];
3987
4162
  'subnets'?: string[];
@@ -4059,7 +4234,13 @@ type PatchCloudClusterData = {
4059
4234
  /** Configure the data disk size per Ceph replica */
4060
4235
  'storage'?: number;
4061
4236
  };
4237
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
4238
+ 'enableMultiReadWriteStorage'?: boolean;
4239
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
4240
+ 'enableSingleReadWriteStorage'?: boolean;
4241
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
4062
4242
  'enableErasureCoding'?: boolean;
4243
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
4063
4244
  'enableTopologyAwareScheduling'?: boolean;
4064
4245
  };
4065
4246
  };
@@ -4271,7 +4452,7 @@ type ListCloudDockerregistryResult = {
4271
4452
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4272
4453
  'uid'?: string;
4273
4454
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4274
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4455
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4275
4456
  'region': string;
4276
4457
  /** BYOC restrictions configuration for controlling team access */
4277
4458
  'restrictions'?: {
@@ -4319,7 +4500,7 @@ type CreateCloudDockerregistryResult = {
4319
4500
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4320
4501
  'uid'?: string;
4321
4502
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4322
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4503
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4323
4504
  'region': string;
4324
4505
  /** Integration to use for this registry. Example: "gcp-integration" */
4325
4506
  'integrationId'?: string;
@@ -4350,7 +4531,7 @@ type CreateCloudDockerregistryData = {
4350
4531
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4351
4532
  'uid'?: string;
4352
4533
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4353
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4534
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4354
4535
  'region': string;
4355
4536
  /** Integration to use for this registry. Example: "gcp-integration" */
4356
4537
  'integrationId'?: string;
@@ -4388,7 +4569,7 @@ type PutCloudDockerregistryResult = {
4388
4569
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4389
4570
  'uid'?: string;
4390
4571
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4391
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4572
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4392
4573
  'region': string;
4393
4574
  /** Integration to use for this registry. Example: "gcp-integration" */
4394
4575
  'integrationId'?: string;
@@ -4423,7 +4604,7 @@ type PutCloudDockerregistryData = {
4423
4604
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4424
4605
  'uid'?: string;
4425
4606
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4426
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4607
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4427
4608
  'region': string;
4428
4609
  /** Integration to use for this registry. Example: "gcp-integration" */
4429
4610
  'integrationId'?: string;
@@ -4461,7 +4642,7 @@ type GetCloudDockerregistryResult = {
4461
4642
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4462
4643
  'uid'?: string;
4463
4644
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4464
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4645
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4465
4646
  'region': string;
4466
4647
  /** Integration to use for this registry. Example: "gcp-integration" */
4467
4648
  'integrationId'?: string;
@@ -4506,7 +4687,7 @@ type PatchCloudDockerregistryResult = {
4506
4687
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4507
4688
  'uid'?: string;
4508
4689
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4509
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4690
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4510
4691
  'region': string;
4511
4692
  /** Integration to use for this registry. Example: "gcp-integration" */
4512
4693
  'integrationId'?: string;
@@ -4585,8 +4766,8 @@ type ListCloudIntegrationsResult = {
4585
4766
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4586
4767
  'description'?: string;
4587
4768
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4588
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4589
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
4769
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4770
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4590
4771
  /** BYOC restrictions configuration for controlling team access */
4591
4772
  'restrictions'?: {
4592
4773
  /** Enable or disable BYOC restrictions for this entity */
@@ -4609,6 +4790,11 @@ type ListCloudIntegrationsResult = {
4609
4790
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4610
4791
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4611
4792
  };
4793
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
4794
+ 'cloudflare'?: {
4795
+ /** The type of api key Example: "apiToken" */
4796
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
4797
+ };
4612
4798
  /** ID of the integration Example: "example-integration" */
4613
4799
  'id': string;
4614
4800
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -4646,8 +4832,8 @@ type CreateCloudIntegrationResult = {
4646
4832
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4647
4833
  'description'?: string;
4648
4834
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4649
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4650
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
4835
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4836
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4651
4837
  /** BYOC restrictions configuration for controlling team access */
4652
4838
  'restrictions'?: {
4653
4839
  /** Enable or disable BYOC restrictions for this entity */
@@ -4670,8 +4856,10 @@ type CreateCloudIntegrationResult = {
4670
4856
  'roleArn'?: string;
4671
4857
  /** AWS shared secret (external id). */
4672
4858
  'externalId'?: string;
4673
- /** Civo API key. */
4859
+ /** API key. */
4674
4860
  'apiKey'?: string;
4861
+ /** Email address for Cloudflare global API key. */
4862
+ 'email'?: string;
4675
4863
  /** Directory (tenant) ID */
4676
4864
  'tenantId'?: string;
4677
4865
  /** Application (client) ID */
@@ -4713,6 +4901,11 @@ type CreateCloudIntegrationResult = {
4713
4901
  /** Service account email that will be used for cross account access. */
4714
4902
  'serviceAccountEmail'?: string;
4715
4903
  };
4904
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
4905
+ 'cloudflare'?: {
4906
+ /** The type of api key Example: "apiToken" */
4907
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
4908
+ };
4716
4909
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
4717
4910
  'createdAt': string;
4718
4911
  };
@@ -4726,8 +4919,8 @@ type CreateCloudIntegrationData = {
4726
4919
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4727
4920
  'description'?: string;
4728
4921
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4729
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4730
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
4922
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4923
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4731
4924
  /** BYOC restrictions configuration for controlling team access */
4732
4925
  'restrictions'?: {
4733
4926
  /** Enable or disable BYOC restrictions for this entity */
@@ -4750,8 +4943,10 @@ type CreateCloudIntegrationData = {
4750
4943
  'roleArn'?: string;
4751
4944
  /** AWS shared secret (external id). */
4752
4945
  'externalId'?: string;
4753
- /** Civo API key. */
4946
+ /** API key. */
4754
4947
  'apiKey'?: string;
4948
+ /** Email address for Cloudflare global API key. */
4949
+ 'email'?: string;
4755
4950
  /** Directory (tenant) ID */
4756
4951
  'tenantId'?: string;
4757
4952
  /** Application (client) ID */
@@ -4791,6 +4986,11 @@ type CreateCloudIntegrationData = {
4791
4986
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4792
4987
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4793
4988
  };
4989
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
4990
+ 'cloudflare'?: {
4991
+ /** The type of api key Example: "apiToken" */
4992
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
4993
+ };
4794
4994
  };
4795
4995
  /** Creates a new integration. */
4796
4996
  declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloudIntegrationRequest, CreateCloudIntegrationResult> {
@@ -4809,8 +5009,8 @@ type PutCloudIntegrationResult = {
4809
5009
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4810
5010
  'description'?: string;
4811
5011
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4812
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4813
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
5012
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5013
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4814
5014
  /** BYOC restrictions configuration for controlling team access */
4815
5015
  'restrictions'?: {
4816
5016
  /** Enable or disable BYOC restrictions for this entity */
@@ -4833,8 +5033,10 @@ type PutCloudIntegrationResult = {
4833
5033
  'roleArn'?: string;
4834
5034
  /** AWS shared secret (external id). */
4835
5035
  'externalId'?: string;
4836
- /** Civo API key. */
5036
+ /** API key. */
4837
5037
  'apiKey'?: string;
5038
+ /** Email address for Cloudflare global API key. */
5039
+ 'email'?: string;
4838
5040
  /** Directory (tenant) ID */
4839
5041
  'tenantId'?: string;
4840
5042
  /** Application (client) ID */
@@ -4876,6 +5078,11 @@ type PutCloudIntegrationResult = {
4876
5078
  /** Service account email that will be used for cross account access. */
4877
5079
  'serviceAccountEmail'?: string;
4878
5080
  };
5081
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5082
+ 'cloudflare'?: {
5083
+ /** The type of api key Example: "apiToken" */
5084
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5085
+ };
4879
5086
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
4880
5087
  'createdAt': string;
4881
5088
  };
@@ -4893,8 +5100,8 @@ type PutCloudIntegrationData = {
4893
5100
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4894
5101
  'description'?: string;
4895
5102
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4896
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4897
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
5103
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5104
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4898
5105
  /** BYOC restrictions configuration for controlling team access */
4899
5106
  'restrictions'?: {
4900
5107
  /** Enable or disable BYOC restrictions for this entity */
@@ -4917,8 +5124,10 @@ type PutCloudIntegrationData = {
4917
5124
  'roleArn'?: string;
4918
5125
  /** AWS shared secret (external id). */
4919
5126
  'externalId'?: string;
4920
- /** Civo API key. */
5127
+ /** API key. */
4921
5128
  'apiKey'?: string;
5129
+ /** Email address for Cloudflare global API key. */
5130
+ 'email'?: string;
4922
5131
  /** Directory (tenant) ID */
4923
5132
  'tenantId'?: string;
4924
5133
  /** Application (client) ID */
@@ -4958,6 +5167,11 @@ type PutCloudIntegrationData = {
4958
5167
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4959
5168
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4960
5169
  };
5170
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5171
+ 'cloudflare'?: {
5172
+ /** The type of api key Example: "apiToken" */
5173
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5174
+ };
4961
5175
  };
4962
5176
  /** Creates or updates a integration. */
4963
5177
  declare class PutCloudIntegrationEndpoint extends PutApiEndpoint<PutCloudIntegrationRequest, PutCloudIntegrationResult> {
@@ -4976,8 +5190,8 @@ type GetCloudIntegrationResult = {
4976
5190
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4977
5191
  'description'?: string;
4978
5192
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4979
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4980
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
5193
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5194
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4981
5195
  /** BYOC restrictions configuration for controlling team access */
4982
5196
  'restrictions'?: {
4983
5197
  /** Enable or disable BYOC restrictions for this entity */
@@ -5000,8 +5214,10 @@ type GetCloudIntegrationResult = {
5000
5214
  'roleArn'?: string;
5001
5215
  /** AWS shared secret (external id). */
5002
5216
  'externalId'?: string;
5003
- /** Civo API key. */
5217
+ /** API key. */
5004
5218
  'apiKey'?: string;
5219
+ /** Email address for Cloudflare global API key. */
5220
+ 'email'?: string;
5005
5221
  /** Directory (tenant) ID */
5006
5222
  'tenantId'?: string;
5007
5223
  /** Application (client) ID */
@@ -5043,6 +5259,11 @@ type GetCloudIntegrationResult = {
5043
5259
  /** Service account email that will be used for cross account access. */
5044
5260
  'serviceAccountEmail'?: string;
5045
5261
  };
5262
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5263
+ 'cloudflare'?: {
5264
+ /** The type of api key Example: "apiToken" */
5265
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5266
+ };
5046
5267
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
5047
5268
  'createdAt': string;
5048
5269
  };
@@ -5070,8 +5291,8 @@ type PatchCloudIntegrationResult = {
5070
5291
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5071
5292
  'description'?: string;
5072
5293
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5073
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
5074
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
5294
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5295
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
5075
5296
  /** BYOC restrictions configuration for controlling team access */
5076
5297
  'restrictions'?: {
5077
5298
  /** Enable or disable BYOC restrictions for this entity */
@@ -5094,8 +5315,10 @@ type PatchCloudIntegrationResult = {
5094
5315
  'roleArn'?: string;
5095
5316
  /** AWS shared secret (external id). */
5096
5317
  'externalId'?: string;
5097
- /** Civo API key. */
5318
+ /** API key. */
5098
5319
  'apiKey'?: string;
5320
+ /** Email address for Cloudflare global API key. */
5321
+ 'email'?: string;
5099
5322
  /** Directory (tenant) ID */
5100
5323
  'tenantId'?: string;
5101
5324
  /** Application (client) ID */
@@ -5137,6 +5360,11 @@ type PatchCloudIntegrationResult = {
5137
5360
  /** Service account email that will be used for cross account access. */
5138
5361
  'serviceAccountEmail'?: string;
5139
5362
  };
5363
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5364
+ 'cloudflare'?: {
5365
+ /** The type of api key Example: "apiToken" */
5366
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5367
+ };
5140
5368
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
5141
5369
  'createdAt': string;
5142
5370
  };
@@ -5151,7 +5379,7 @@ type PatchCloudIntegrationParameters = {
5151
5379
  type PatchCloudIntegrationData = {
5152
5380
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5153
5381
  'description'?: string;
5154
- 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'self-hosted-logs-metrics' | 'docker-registry-credential'[];
5382
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
5155
5383
  /** BYOC restrictions configuration for controlling team access */
5156
5384
  'restrictions'?: {
5157
5385
  /** Enable or disable BYOC restrictions for this entity */
@@ -5174,8 +5402,10 @@ type PatchCloudIntegrationData = {
5174
5402
  'roleArn'?: string;
5175
5403
  /** AWS shared secret (external id). */
5176
5404
  'externalId'?: string;
5177
- /** Civo API key. */
5405
+ /** API key. */
5178
5406
  'apiKey'?: string;
5407
+ /** Email address for Cloudflare global API key. */
5408
+ 'email'?: string;
5179
5409
  /** Directory (tenant) ID */
5180
5410
  'tenantId'?: string;
5181
5411
  /** Application (client) ID */
@@ -5612,6 +5842,11 @@ type AddDomainSubdomainData = {
5612
5842
  'enabled': boolean;
5613
5843
  };
5614
5844
  };
5845
+ /** Optional advanced configuration for the subdomain */
5846
+ 'options'?: {
5847
+ /** Desired TLS mode for the subdomain. */
5848
+ 'tlsMode'?: 'default' | 'passthrough';
5849
+ };
5615
5850
  };
5616
5851
  /** Adds a new subdomain to the domain. */
5617
5852
  declare class AddDomainSubdomainEndpoint extends PostApiEndpoint<AddDomainSubdomainRequest, AddDomainSubdomainResult> {
@@ -9077,6 +9312,9 @@ type CreateAddonResult = {
9077
9312
  'tags'?: string[];
9078
9313
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9079
9314
  'type': string;
9315
+ 'infrastructure'?: {
9316
+ 'architecture'?: 'x86' | 'arm';
9317
+ };
9080
9318
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
9081
9319
  'version': string;
9082
9320
  'billing': {
@@ -9128,6 +9366,8 @@ type CreateAddonResult = {
9128
9366
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9129
9367
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9130
9368
  'postgresqlReadConnectionPoolerReplicas'?: number;
9369
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9370
+ 'mysqlHaModeEnabled'?: boolean;
9131
9371
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9132
9372
  'mysqlRouterReplicas'?: number;
9133
9373
  };
@@ -9198,6 +9438,9 @@ type CreateAddonResult = {
9198
9438
  'tags'?: string[];
9199
9439
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9200
9440
  'type': string;
9441
+ 'infrastructure'?: {
9442
+ 'architecture'?: 'x86' | 'arm';
9443
+ };
9201
9444
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9202
9445
  'templateValues'?: any;
9203
9446
  /** Identifier for the addon. Example: "example-addon" */
@@ -9241,6 +9484,9 @@ type CreateAddonData = {
9241
9484
  'tags'?: string[];
9242
9485
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9243
9486
  'type': string;
9487
+ 'infrastructure'?: {
9488
+ 'architecture'?: 'x86' | 'arm';
9489
+ };
9244
9490
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
9245
9491
  'version': string;
9246
9492
  'billing': {
@@ -9292,6 +9538,8 @@ type CreateAddonData = {
9292
9538
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9293
9539
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9294
9540
  'postgresqlReadConnectionPoolerReplicas'?: number;
9541
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9542
+ 'mysqlHaModeEnabled'?: boolean;
9295
9543
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9296
9544
  'mysqlRouterReplicas'?: number;
9297
9545
  };
@@ -9343,6 +9591,9 @@ type CreateAddonData = {
9343
9591
  'tags'?: string[];
9344
9592
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9345
9593
  'type': string;
9594
+ 'infrastructure'?: {
9595
+ 'architecture'?: 'x86' | 'arm';
9596
+ };
9346
9597
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9347
9598
  'templateValues'?: any;
9348
9599
  };
@@ -9364,6 +9615,9 @@ type PutAddonResult = {
9364
9615
  'tags'?: string[];
9365
9616
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9366
9617
  'type': string;
9618
+ 'infrastructure'?: {
9619
+ 'architecture'?: 'x86' | 'arm';
9620
+ };
9367
9621
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
9368
9622
  'version': string;
9369
9623
  'billing': {
@@ -9415,6 +9669,8 @@ type PutAddonResult = {
9415
9669
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9416
9670
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9417
9671
  'postgresqlReadConnectionPoolerReplicas'?: number;
9672
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9673
+ 'mysqlHaModeEnabled'?: boolean;
9418
9674
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9419
9675
  'mysqlRouterReplicas'?: number;
9420
9676
  };
@@ -9485,6 +9741,9 @@ type PutAddonResult = {
9485
9741
  'tags'?: string[];
9486
9742
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9487
9743
  'type': string;
9744
+ 'infrastructure'?: {
9745
+ 'architecture'?: 'x86' | 'arm';
9746
+ };
9488
9747
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9489
9748
  'templateValues'?: any;
9490
9749
  /** Identifier for the addon. Example: "example-addon" */
@@ -9528,6 +9787,9 @@ type PutAddonData = {
9528
9787
  'tags'?: string[];
9529
9788
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9530
9789
  'type': string;
9790
+ 'infrastructure'?: {
9791
+ 'architecture'?: 'x86' | 'arm';
9792
+ };
9531
9793
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
9532
9794
  'version': string;
9533
9795
  'billing': {
@@ -9579,6 +9841,8 @@ type PutAddonData = {
9579
9841
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9580
9842
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9581
9843
  'postgresqlReadConnectionPoolerReplicas'?: number;
9844
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9845
+ 'mysqlHaModeEnabled'?: boolean;
9582
9846
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9583
9847
  'mysqlRouterReplicas'?: number;
9584
9848
  };
@@ -9630,6 +9894,9 @@ type PutAddonData = {
9630
9894
  'tags'?: string[];
9631
9895
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9632
9896
  'type': string;
9897
+ 'infrastructure'?: {
9898
+ 'architecture'?: 'x86' | 'arm';
9899
+ };
9633
9900
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9634
9901
  'templateValues'?: any;
9635
9902
  };
@@ -9738,6 +10005,9 @@ type PatchAddonResult = {
9738
10005
  'tags'?: string[];
9739
10006
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9740
10007
  'type': string;
10008
+ 'infrastructure'?: {
10009
+ 'architecture'?: 'x86' | 'arm';
10010
+ };
9741
10011
  /** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
9742
10012
  'version': string;
9743
10013
  'billing': {
@@ -9789,6 +10059,8 @@ type PatchAddonResult = {
9789
10059
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9790
10060
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9791
10061
  'postgresqlReadConnectionPoolerReplicas'?: number;
10062
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
10063
+ 'mysqlHaModeEnabled'?: boolean;
9792
10064
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9793
10065
  'mysqlRouterReplicas'?: number;
9794
10066
  };
@@ -9859,6 +10131,9 @@ type PatchAddonResult = {
9859
10131
  'tags'?: string[];
9860
10132
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9861
10133
  'type': string;
10134
+ 'infrastructure'?: {
10135
+ 'architecture'?: 'x86' | 'arm';
10136
+ };
9862
10137
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9863
10138
  'templateValues'?: any;
9864
10139
  /** Identifier for the addon. Example: "example-addon" */
@@ -9936,6 +10211,8 @@ type PatchAddonData = {
9936
10211
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9937
10212
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9938
10213
  'postgresqlReadConnectionPoolerReplicas'?: number;
10214
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
10215
+ 'mysqlHaModeEnabled'?: boolean;
9939
10216
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9940
10217
  'mysqlRouterReplicas'?: number;
9941
10218
  };
@@ -10950,6 +11227,9 @@ type CreateJobCronResult = {
10950
11227
  'name': string;
10951
11228
  /** A description of the job. Example: "A job description" */
10952
11229
  'description'?: string;
11230
+ 'infrastructure'?: {
11231
+ 'architecture'?: 'x86' | 'arm';
11232
+ };
10953
11233
  /** An array of previously defined tags to help identify and group the resource. */
10954
11234
  'tags'?: string[];
10955
11235
  'billing': {
@@ -11150,7 +11430,7 @@ type CreateJobCronResult = {
11150
11430
  };
11151
11431
  'buildpack': {
11152
11432
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
11153
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11433
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11154
11434
  /** Array of custom Buildpacks to use. */
11155
11435
  'buildpackLocators'?: string[];
11156
11436
  /** The working directory to build in. Example: "/" */
@@ -11198,6 +11478,9 @@ type CreateJobCronData = {
11198
11478
  'name': string;
11199
11479
  /** A description of the job. Example: "A job description" */
11200
11480
  'description'?: string;
11481
+ 'infrastructure'?: {
11482
+ 'architecture'?: 'x86' | 'arm';
11483
+ };
11201
11484
  /** An array of previously defined tags to help identify and group the resource. */
11202
11485
  'tags'?: string[];
11203
11486
  'billing': {
@@ -11446,7 +11729,7 @@ type CreateJobCronData = {
11446
11729
  };
11447
11730
  'buildpack': {
11448
11731
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
11449
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11732
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11450
11733
  /** Array of custom Buildpacks to use. */
11451
11734
  'buildpackLocators'?: string[];
11452
11735
  /** The working directory to build in. Example: "/" */
@@ -11507,6 +11790,9 @@ type PutJobCronResult = {
11507
11790
  'name': string;
11508
11791
  /** A description of the job. Example: "A job description" */
11509
11792
  'description'?: string;
11793
+ 'infrastructure'?: {
11794
+ 'architecture'?: 'x86' | 'arm';
11795
+ };
11510
11796
  /** An array of previously defined tags to help identify and group the resource. */
11511
11797
  'tags'?: string[];
11512
11798
  'billing': {
@@ -11707,7 +11993,7 @@ type PutJobCronResult = {
11707
11993
  };
11708
11994
  'buildpack': {
11709
11995
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
11710
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11996
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
11711
11997
  /** Array of custom Buildpacks to use. */
11712
11998
  'buildpackLocators'?: string[];
11713
11999
  /** The working directory to build in. Example: "/" */
@@ -11755,6 +12041,9 @@ type PutJobCronData = {
11755
12041
  'name': string;
11756
12042
  /** A description of the job. Example: "A job description" */
11757
12043
  'description'?: string;
12044
+ 'infrastructure'?: {
12045
+ 'architecture'?: 'x86' | 'arm';
12046
+ };
11758
12047
  /** An array of previously defined tags to help identify and group the resource. */
11759
12048
  'tags'?: string[];
11760
12049
  'billing': {
@@ -12003,7 +12292,7 @@ type PutJobCronData = {
12003
12292
  };
12004
12293
  'buildpack': {
12005
12294
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
12006
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12295
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12007
12296
  /** Array of custom Buildpacks to use. */
12008
12297
  'buildpackLocators'?: string[];
12009
12298
  /** The working directory to build in. Example: "/" */
@@ -12064,6 +12353,9 @@ type PatchJobCronResult = {
12064
12353
  'name': string;
12065
12354
  /** A description of the job. Example: "A job description" */
12066
12355
  'description'?: string;
12356
+ 'infrastructure'?: {
12357
+ 'architecture'?: 'x86' | 'arm';
12358
+ };
12067
12359
  /** An array of previously defined tags to help identify and group the resource. */
12068
12360
  'tags'?: string[];
12069
12361
  'billing': {
@@ -12264,7 +12556,7 @@ type PatchJobCronResult = {
12264
12556
  };
12265
12557
  'buildpack': {
12266
12558
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
12267
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12559
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12268
12560
  /** Array of custom Buildpacks to use. */
12269
12561
  'buildpackLocators'?: string[];
12270
12562
  /** The working directory to build in. Example: "/" */
@@ -12411,6 +12703,9 @@ type CreateJobManualResult = {
12411
12703
  'name': string;
12412
12704
  /** A description of the job. Example: "A job description" */
12413
12705
  'description'?: string;
12706
+ 'infrastructure'?: {
12707
+ 'architecture'?: 'x86' | 'arm';
12708
+ };
12414
12709
  /** An array of previously defined tags to help identify and group the resource. */
12415
12710
  'tags'?: string[];
12416
12711
  'billing': {
@@ -12605,7 +12900,7 @@ type CreateJobManualResult = {
12605
12900
  };
12606
12901
  'buildpack': {
12607
12902
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
12608
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12903
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12609
12904
  /** Array of custom Buildpacks to use. */
12610
12905
  'buildpackLocators'?: string[];
12611
12906
  /** The working directory to build in. Example: "/" */
@@ -12653,6 +12948,9 @@ type CreateJobManualData = {
12653
12948
  'name': string;
12654
12949
  /** A description of the job. Example: "A job description" */
12655
12950
  'description'?: string;
12951
+ 'infrastructure'?: {
12952
+ 'architecture'?: 'x86' | 'arm';
12953
+ };
12656
12954
  /** An array of previously defined tags to help identify and group the resource. */
12657
12955
  'tags'?: string[];
12658
12956
  'billing': {
@@ -12901,7 +13199,7 @@ type CreateJobManualData = {
12901
13199
  };
12902
13200
  'buildpack': {
12903
13201
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
12904
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13202
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
12905
13203
  /** Array of custom Buildpacks to use. */
12906
13204
  'buildpackLocators'?: string[];
12907
13205
  /** The working directory to build in. Example: "/" */
@@ -12956,6 +13254,9 @@ type PutJobManualResult = {
12956
13254
  'name': string;
12957
13255
  /** A description of the job. Example: "A job description" */
12958
13256
  'description'?: string;
13257
+ 'infrastructure'?: {
13258
+ 'architecture'?: 'x86' | 'arm';
13259
+ };
12959
13260
  /** An array of previously defined tags to help identify and group the resource. */
12960
13261
  'tags'?: string[];
12961
13262
  'billing': {
@@ -13150,7 +13451,7 @@ type PutJobManualResult = {
13150
13451
  };
13151
13452
  'buildpack': {
13152
13453
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
13153
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13454
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13154
13455
  /** Array of custom Buildpacks to use. */
13155
13456
  'buildpackLocators'?: string[];
13156
13457
  /** The working directory to build in. Example: "/" */
@@ -13198,6 +13499,9 @@ type PutJobManualData = {
13198
13499
  'name': string;
13199
13500
  /** A description of the job. Example: "A job description" */
13200
13501
  'description'?: string;
13502
+ 'infrastructure'?: {
13503
+ 'architecture'?: 'x86' | 'arm';
13504
+ };
13201
13505
  /** An array of previously defined tags to help identify and group the resource. */
13202
13506
  'tags'?: string[];
13203
13507
  'billing': {
@@ -13446,7 +13750,7 @@ type PutJobManualData = {
13446
13750
  };
13447
13751
  'buildpack': {
13448
13752
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
13449
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13753
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13450
13754
  /** Array of custom Buildpacks to use. */
13451
13755
  'buildpackLocators'?: string[];
13452
13756
  /** The working directory to build in. Example: "/" */
@@ -13501,6 +13805,9 @@ type PatchJobManualResult = {
13501
13805
  'name': string;
13502
13806
  /** A description of the job. Example: "A job description" */
13503
13807
  'description'?: string;
13808
+ 'infrastructure'?: {
13809
+ 'architecture'?: 'x86' | 'arm';
13810
+ };
13504
13811
  /** An array of previously defined tags to help identify and group the resource. */
13505
13812
  'tags'?: string[];
13506
13813
  'billing': {
@@ -13695,7 +14002,7 @@ type PatchJobManualResult = {
13695
14002
  };
13696
14003
  'buildpack': {
13697
14004
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
13698
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
14005
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13699
14006
  /** Array of custom Buildpacks to use. */
13700
14007
  'buildpackLocators'?: string[];
13701
14008
  /** The working directory to build in. Example: "/" */
@@ -13893,7 +14200,7 @@ type GetJobResult = {
13893
14200
  /** Details about Buildpack settings. */
13894
14201
  'buildpack'?: {
13895
14202
  /** The Buildpack stack used. Example: "HEROKU_24" */
13896
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
14203
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
13897
14204
  /** Array of custom Buildpacks used. */
13898
14205
  'buildpackLocators'?: string[];
13899
14206
  /** Should build dependencies be cached? */
@@ -14372,7 +14679,7 @@ type UpdateJobBuildoptionsData = {
14372
14679
  } | {
14373
14680
  'buildpack': {
14374
14681
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
14375
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
14682
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
14376
14683
  /** Array of custom buildpacks to use. */
14377
14684
  'buildpackLocators'?: string[];
14378
14685
  /** The working directory to build in. Example: "/" */
@@ -17202,6 +17509,9 @@ type CreateServiceBuildResult = {
17202
17509
  };
17203
17510
  };
17204
17511
  };
17512
+ 'infrastructure'?: {
17513
+ 'architecture'?: 'x86' | 'arm';
17514
+ };
17205
17515
  /** Whether CI (continuous integration) should be disabled. */
17206
17516
  'disabledCI'?: boolean;
17207
17517
  /** Defines the build source for this resource Example: "git" */
@@ -17249,7 +17559,7 @@ type CreateServiceBuildResult = {
17249
17559
  };
17250
17560
  'buildpack': {
17251
17561
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17252
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17562
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17253
17563
  /** Array of custom Buildpacks to use. */
17254
17564
  'buildpackLocators'?: string[];
17255
17565
  /** The working directory to build in. Example: "/" */
@@ -17350,6 +17660,9 @@ type CreateServiceBuildData = {
17350
17660
  };
17351
17661
  };
17352
17662
  };
17663
+ 'infrastructure'?: {
17664
+ 'architecture'?: 'x86' | 'arm';
17665
+ };
17353
17666
  /** Whether CI (continuous integration) should be disabled. */
17354
17667
  'disabledCI'?: boolean;
17355
17668
  /** Defines the build source for this resource Example: "git" */
@@ -17397,7 +17710,7 @@ type CreateServiceBuildData = {
17397
17710
  };
17398
17711
  'buildpack': {
17399
17712
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17400
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17713
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17401
17714
  /** Array of custom Buildpacks to use. */
17402
17715
  'buildpackLocators'?: string[];
17403
17716
  /** The working directory to build in. Example: "/" */
@@ -17468,6 +17781,9 @@ type PutServiceBuildResult = {
17468
17781
  };
17469
17782
  };
17470
17783
  };
17784
+ 'infrastructure'?: {
17785
+ 'architecture'?: 'x86' | 'arm';
17786
+ };
17471
17787
  /** Whether CI (continuous integration) should be disabled. */
17472
17788
  'disabledCI'?: boolean;
17473
17789
  /** Defines the build source for this resource Example: "git" */
@@ -17515,7 +17831,7 @@ type PutServiceBuildResult = {
17515
17831
  };
17516
17832
  'buildpack': {
17517
17833
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17518
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17834
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17519
17835
  /** Array of custom Buildpacks to use. */
17520
17836
  'buildpackLocators'?: string[];
17521
17837
  /** The working directory to build in. Example: "/" */
@@ -17616,6 +17932,9 @@ type PutServiceBuildData = {
17616
17932
  };
17617
17933
  };
17618
17934
  };
17935
+ 'infrastructure'?: {
17936
+ 'architecture'?: 'x86' | 'arm';
17937
+ };
17619
17938
  /** Whether CI (continuous integration) should be disabled. */
17620
17939
  'disabledCI'?: boolean;
17621
17940
  /** Defines the build source for this resource Example: "git" */
@@ -17663,7 +17982,7 @@ type PutServiceBuildData = {
17663
17982
  };
17664
17983
  'buildpack': {
17665
17984
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17666
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17985
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17667
17986
  /** Array of custom Buildpacks to use. */
17668
17987
  'buildpackLocators'?: string[];
17669
17988
  /** The working directory to build in. Example: "/" */
@@ -17734,6 +18053,9 @@ type PatchServiceBuildResult = {
17734
18053
  };
17735
18054
  };
17736
18055
  };
18056
+ 'infrastructure'?: {
18057
+ 'architecture'?: 'x86' | 'arm';
18058
+ };
17737
18059
  /** Whether CI (continuous integration) should be disabled. */
17738
18060
  'disabledCI'?: boolean;
17739
18061
  /** Defines the build source for this resource Example: "git" */
@@ -17781,7 +18103,7 @@ type PatchServiceBuildResult = {
17781
18103
  };
17782
18104
  'buildpack': {
17783
18105
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17784
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
18106
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17785
18107
  /** Array of custom Buildpacks to use. */
17786
18108
  'buildpackLocators'?: string[];
17787
18109
  /** The working directory to build in. Example: "/" */
@@ -17921,7 +18243,7 @@ type PatchServiceBuildData = {
17921
18243
  };
17922
18244
  'buildpack'?: {
17923
18245
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
17924
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
18246
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
17925
18247
  /** Array of custom Buildpacks to use. */
17926
18248
  'buildpackLocators'?: string[];
17927
18249
  /** The working directory to build in. Example: "/" */
@@ -17992,6 +18314,9 @@ type CreateServiceCombinedResult = {
17992
18314
  };
17993
18315
  };
17994
18316
  };
18317
+ 'infrastructure'?: {
18318
+ 'architecture'?: 'x86' | 'arm';
18319
+ };
17995
18320
  'ports'?: {
17996
18321
  /** The name used to identify the port. Example: "p01" */
17997
18322
  'name': string;
@@ -18139,6 +18464,10 @@ type CreateServiceCombinedResult = {
18139
18464
  'domains'?: string[];
18140
18465
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
18141
18466
  'disableNfDomain'?: boolean;
18467
+ 'advancedOptions'?: {
18468
+ /** Whether this port should use pass through mode for TLS */
18469
+ 'enableTlsPassthrough'?: boolean;
18470
+ };
18142
18471
  /** The protocol to use for the port. Example: "HTTP" */
18143
18472
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
18144
18473
  }[];
@@ -18197,7 +18526,7 @@ type CreateServiceCombinedResult = {
18197
18526
  };
18198
18527
  'buildpack': {
18199
18528
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
18200
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
18529
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
18201
18530
  /** Array of custom Buildpacks to use. */
18202
18531
  'buildpackLocators'?: string[];
18203
18532
  /** The working directory to build in. Example: "/" */
@@ -18454,6 +18783,9 @@ type CreateServiceCombinedData = {
18454
18783
  };
18455
18784
  };
18456
18785
  };
18786
+ 'infrastructure'?: {
18787
+ 'architecture'?: 'x86' | 'arm';
18788
+ };
18457
18789
  'deployment': {
18458
18790
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
18459
18791
  'type'?: 'deployment' | 'statefulSet';
@@ -18663,6 +18995,10 @@ type CreateServiceCombinedData = {
18663
18995
  'domains'?: string[];
18664
18996
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
18665
18997
  'disableNfDomain'?: boolean;
18998
+ 'advancedOptions'?: {
18999
+ /** Whether this port should use pass through mode for TLS */
19000
+ 'enableTlsPassthrough'?: boolean;
19001
+ };
18666
19002
  /** The protocol to use for the port. Example: "HTTP" */
18667
19003
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
18668
19004
  }[];
@@ -18721,7 +19057,7 @@ type CreateServiceCombinedData = {
18721
19057
  };
18722
19058
  'buildpack': {
18723
19059
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
18724
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19060
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
18725
19061
  /** Array of custom Buildpacks to use. */
18726
19062
  'buildpackLocators'?: string[];
18727
19063
  /** The working directory to build in. Example: "/" */
@@ -18872,6 +19208,9 @@ type PutServiceCombinedResult = {
18872
19208
  };
18873
19209
  };
18874
19210
  };
19211
+ 'infrastructure'?: {
19212
+ 'architecture'?: 'x86' | 'arm';
19213
+ };
18875
19214
  'ports'?: {
18876
19215
  /** The name used to identify the port. Example: "p01" */
18877
19216
  'name': string;
@@ -19019,6 +19358,10 @@ type PutServiceCombinedResult = {
19019
19358
  'domains'?: string[];
19020
19359
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19021
19360
  'disableNfDomain'?: boolean;
19361
+ 'advancedOptions'?: {
19362
+ /** Whether this port should use pass through mode for TLS */
19363
+ 'enableTlsPassthrough'?: boolean;
19364
+ };
19022
19365
  /** The protocol to use for the port. Example: "HTTP" */
19023
19366
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19024
19367
  }[];
@@ -19077,7 +19420,7 @@ type PutServiceCombinedResult = {
19077
19420
  };
19078
19421
  'buildpack': {
19079
19422
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
19080
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19423
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19081
19424
  /** Array of custom Buildpacks to use. */
19082
19425
  'buildpackLocators'?: string[];
19083
19426
  /** The working directory to build in. Example: "/" */
@@ -19334,6 +19677,9 @@ type PutServiceCombinedData = {
19334
19677
  };
19335
19678
  };
19336
19679
  };
19680
+ 'infrastructure'?: {
19681
+ 'architecture'?: 'x86' | 'arm';
19682
+ };
19337
19683
  'deployment': {
19338
19684
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
19339
19685
  'type'?: 'deployment' | 'statefulSet';
@@ -19543,6 +19889,10 @@ type PutServiceCombinedData = {
19543
19889
  'domains'?: string[];
19544
19890
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19545
19891
  'disableNfDomain'?: boolean;
19892
+ 'advancedOptions'?: {
19893
+ /** Whether this port should use pass through mode for TLS */
19894
+ 'enableTlsPassthrough'?: boolean;
19895
+ };
19546
19896
  /** The protocol to use for the port. Example: "HTTP" */
19547
19897
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19548
19898
  }[];
@@ -19601,7 +19951,7 @@ type PutServiceCombinedData = {
19601
19951
  };
19602
19952
  'buildpack': {
19603
19953
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
19604
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19954
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19605
19955
  /** Array of custom Buildpacks to use. */
19606
19956
  'buildpackLocators'?: string[];
19607
19957
  /** The working directory to build in. Example: "/" */
@@ -19752,6 +20102,9 @@ type PatchServiceCombinedResult = {
19752
20102
  };
19753
20103
  };
19754
20104
  };
20105
+ 'infrastructure'?: {
20106
+ 'architecture'?: 'x86' | 'arm';
20107
+ };
19755
20108
  'ports'?: {
19756
20109
  /** The name used to identify the port. Example: "p01" */
19757
20110
  'name': string;
@@ -19899,6 +20252,10 @@ type PatchServiceCombinedResult = {
19899
20252
  'domains'?: string[];
19900
20253
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19901
20254
  'disableNfDomain'?: boolean;
20255
+ 'advancedOptions'?: {
20256
+ /** Whether this port should use pass through mode for TLS */
20257
+ 'enableTlsPassthrough'?: boolean;
20258
+ };
19902
20259
  /** The protocol to use for the port. Example: "HTTP" */
19903
20260
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19904
20261
  }[];
@@ -19957,7 +20314,7 @@ type PatchServiceCombinedResult = {
19957
20314
  };
19958
20315
  'buildpack': {
19959
20316
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
19960
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
20317
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
19961
20318
  /** Array of custom Buildpacks to use. */
19962
20319
  'buildpackLocators'?: string[];
19963
20320
  /** The working directory to build in. Example: "/" */
@@ -20419,6 +20776,10 @@ type PatchServiceCombinedData = {
20419
20776
  'domains'?: string[];
20420
20777
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
20421
20778
  'disableNfDomain'?: boolean;
20779
+ 'advancedOptions'?: {
20780
+ /** Whether this port should use pass through mode for TLS */
20781
+ 'enableTlsPassthrough'?: boolean;
20782
+ };
20422
20783
  /** The protocol to use for the port. Example: "HTTP" */
20423
20784
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
20424
20785
  }[];
@@ -20469,7 +20830,7 @@ type PatchServiceCombinedData = {
20469
20830
  };
20470
20831
  'buildpack'?: {
20471
20832
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
20472
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
20833
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
20473
20834
  /** Array of custom Buildpacks to use. */
20474
20835
  'buildpackLocators'?: string[];
20475
20836
  /** The working directory to build in. Example: "/" */
@@ -20616,6 +20977,9 @@ type CreateServiceDeploymentResult = {
20616
20977
  };
20617
20978
  };
20618
20979
  };
20980
+ 'infrastructure'?: {
20981
+ 'architecture'?: 'x86' | 'arm';
20982
+ };
20619
20983
  'ports'?: {
20620
20984
  /** The name used to identify the port. Example: "p01" */
20621
20985
  'name': string;
@@ -20763,6 +21127,10 @@ type CreateServiceDeploymentResult = {
20763
21127
  'domains'?: string[];
20764
21128
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
20765
21129
  'disableNfDomain'?: boolean;
21130
+ 'advancedOptions'?: {
21131
+ /** Whether this port should use pass through mode for TLS */
21132
+ 'enableTlsPassthrough'?: boolean;
21133
+ };
20766
21134
  /** The protocol to use for the port. Example: "HTTP" */
20767
21135
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
20768
21136
  }[];
@@ -20994,6 +21362,9 @@ type CreateServiceDeploymentData = {
20994
21362
  };
20995
21363
  };
20996
21364
  };
21365
+ 'infrastructure'?: {
21366
+ 'architecture'?: 'x86' | 'arm';
21367
+ };
20997
21368
  /** Deployment type */
20998
21369
  'deployment': {
20999
21370
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
@@ -21342,6 +21713,10 @@ type CreateServiceDeploymentData = {
21342
21713
  'domains'?: string[];
21343
21714
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
21344
21715
  'disableNfDomain'?: boolean;
21716
+ 'advancedOptions'?: {
21717
+ /** Whether this port should use pass through mode for TLS */
21718
+ 'enableTlsPassthrough'?: boolean;
21719
+ };
21345
21720
  /** The protocol to use for the port. Example: "HTTP" */
21346
21721
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
21347
21722
  }[];
@@ -21458,6 +21833,9 @@ type PutServiceDeploymentResult = {
21458
21833
  };
21459
21834
  };
21460
21835
  };
21836
+ 'infrastructure'?: {
21837
+ 'architecture'?: 'x86' | 'arm';
21838
+ };
21461
21839
  'ports'?: {
21462
21840
  /** The name used to identify the port. Example: "p01" */
21463
21841
  'name': string;
@@ -21605,6 +21983,10 @@ type PutServiceDeploymentResult = {
21605
21983
  'domains'?: string[];
21606
21984
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
21607
21985
  'disableNfDomain'?: boolean;
21986
+ 'advancedOptions'?: {
21987
+ /** Whether this port should use pass through mode for TLS */
21988
+ 'enableTlsPassthrough'?: boolean;
21989
+ };
21608
21990
  /** The protocol to use for the port. Example: "HTTP" */
21609
21991
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
21610
21992
  }[];
@@ -21836,6 +22218,9 @@ type PutServiceDeploymentData = {
21836
22218
  };
21837
22219
  };
21838
22220
  };
22221
+ 'infrastructure'?: {
22222
+ 'architecture'?: 'x86' | 'arm';
22223
+ };
21839
22224
  /** Deployment type */
21840
22225
  'deployment': {
21841
22226
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
@@ -22184,6 +22569,10 @@ type PutServiceDeploymentData = {
22184
22569
  'domains'?: string[];
22185
22570
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22186
22571
  'disableNfDomain'?: boolean;
22572
+ 'advancedOptions'?: {
22573
+ /** Whether this port should use pass through mode for TLS */
22574
+ 'enableTlsPassthrough'?: boolean;
22575
+ };
22187
22576
  /** The protocol to use for the port. Example: "HTTP" */
22188
22577
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
22189
22578
  }[];
@@ -22300,6 +22689,9 @@ type PatchServiceDeploymentResult = {
22300
22689
  };
22301
22690
  };
22302
22691
  };
22692
+ 'infrastructure'?: {
22693
+ 'architecture'?: 'x86' | 'arm';
22694
+ };
22303
22695
  'ports'?: {
22304
22696
  /** The name used to identify the port. Example: "p01" */
22305
22697
  'name': string;
@@ -22447,6 +22839,10 @@ type PatchServiceDeploymentResult = {
22447
22839
  'domains'?: string[];
22448
22840
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22449
22841
  'disableNfDomain'?: boolean;
22842
+ 'advancedOptions'?: {
22843
+ /** Whether this port should use pass through mode for TLS */
22844
+ 'enableTlsPassthrough'?: boolean;
22845
+ };
22450
22846
  /** The protocol to use for the port. Example: "HTTP" */
22451
22847
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
22452
22848
  }[];
@@ -23026,6 +23422,10 @@ type PatchServiceDeploymentData = {
23026
23422
  'domains'?: string[];
23027
23423
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
23028
23424
  'disableNfDomain'?: boolean;
23425
+ 'advancedOptions'?: {
23426
+ /** Whether this port should use pass through mode for TLS */
23427
+ 'enableTlsPassthrough'?: boolean;
23428
+ };
23029
23429
  /** The protocol to use for the port. Example: "HTTP" */
23030
23430
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
23031
23431
  }[];
@@ -23327,7 +23727,7 @@ type GetServiceResult = {
23327
23727
  /** Details about Buildpack settings. */
23328
23728
  'buildpack'?: {
23329
23729
  /** The Buildpack stack used. Example: "HEROKU_24" */
23330
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
23730
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
23331
23731
  /** Array of custom Buildpacks used. */
23332
23732
  'buildpackLocators'?: string[];
23333
23733
  /** Should build dependencies be cached? */
@@ -23881,7 +24281,7 @@ type UpdateServiceBuildoptionsData = {
23881
24281
  } | {
23882
24282
  'buildpack': {
23883
24283
  /** Buildpack stack to use. Defaults to recommended stack `HEROKU_24`. Example: "HEROKU_24" */
23884
- 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
24284
+ 'builder'?: 'HEROKU_24' | 'HEROKU_22' | 'HEROKU_22_CLASSIC' | 'HEROKU_20' | 'HEROKU_18' | 'GOOGLE_22' | 'GOOGLE_V1' | 'CNB_ALPINE' | 'CNB_BIONIC' | 'PAKETO_JAMMY_TINY' | 'PAKETO_JAMMY_BASE' | 'PAKETO_JAMMY_FULL' | 'PAKETO_TINY' | 'PAKETO_BASE' | 'PAKETO_FULL';
23885
24285
  /** Array of custom buildpacks to use. */
23886
24286
  'buildpackLocators'?: string[];
23887
24287
  /** The working directory to build in. Example: "/" */
@@ -26259,6 +26659,23 @@ declare class ApiClient {
26259
26659
  exec: NorthflankExecCommand;
26260
26660
  logs: NorthflankLogFetch;
26261
26661
  metrics: NorthflankMetricFetch;
26662
+ fileCopy: NorthflankFileCopy;
26663
+ download: {
26664
+ service: {
26665
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
26666
+ };
26667
+ job: {
26668
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
26669
+ };
26670
+ };
26671
+ upload: {
26672
+ service: {
26673
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
26674
+ };
26675
+ job: {
26676
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
26677
+ };
26678
+ };
26262
26679
  get: {
26263
26680
  addon: GetAddonCall & {
26264
26681
  types: GetAddonTypesCall;
@@ -26673,6 +27090,22 @@ declare class ApiClient {
26673
27090
  volume: DetachVolumeCall;
26674
27091
  };
26675
27092
  endpoints: {
27093
+ download: {
27094
+ service: {
27095
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
27096
+ };
27097
+ job: {
27098
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
27099
+ };
27100
+ };
27101
+ upload: {
27102
+ service: {
27103
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
27104
+ };
27105
+ job: {
27106
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
27107
+ };
27108
+ };
26676
27109
  get: {
26677
27110
  addon: GetAddonEndpoint & {
26678
27111
  types: GetAddonTypesEndpoint;
@@ -27071,4 +27504,4 @@ type ApiClientOpts = {
27071
27504
  agent?: any;
27072
27505
  };
27073
27506
 
27074
- 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, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, 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, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, 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, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, 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, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, 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, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudDockerregistryCall, PatchCloudDockerregistryData, PatchCloudDockerregistryEndpoint, PatchCloudDockerregistryParameters, PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, 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, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudDockerregistryCall, PutCloudDockerregistryData, PutCloudDockerregistryEndpoint, PutCloudDockerregistryParameters, PutCloudDockerregistryRequest, PutCloudDockerregistryResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, 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, 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, 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 };
27507
+ 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, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationEndpoint, AddBackupdestinationRequest, AddBackupdestinationResult, 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, CopyType, 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, DeleteBackupdestinationCall, DeleteBackupdestinationEndpoint, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, 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, DownloadOptions, 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, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationCall, GetBackupdestinationEndpoint, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, 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, ListBackupdestinationsCall, ListBackupdestinationsEndpoint, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsEndpoint, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, 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, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationEndpoint, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterEndpoint, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudDockerregistryCall, PatchCloudDockerregistryData, PatchCloudDockerregistryEndpoint, PatchCloudDockerregistryParameters, PatchCloudDockerregistryRequest, PatchCloudDockerregistryResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationEndpoint, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, 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, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterEndpoint, PutCloudClusterRequest, PutCloudClusterResult, PutCloudDockerregistryCall, PutCloudDockerregistryData, PutCloudDockerregistryEndpoint, PutCloudDockerregistryParameters, PutCloudDockerregistryRequest, PutCloudDockerregistryResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationEndpoint, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, 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, 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, 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, UploadOptions, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };