@northflank/js-client 0.7.27 → 0.8.2

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,18 @@ 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
+ /** Azure specific settings. */
1861
+ 'azure'?: {
1862
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
1863
+ 'systemPool'?: boolean;
1864
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
1865
+ 'enablePublicNodeIp'?: boolean;
1866
+ };
1785
1867
  /** AWS specific node pool settings. */
1786
1868
  'aws'?: {
1787
1869
  /** 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 +1882,9 @@ type ListCloudClustersResult = {
1800
1882
  'min'?: number;
1801
1883
  'max'?: number;
1802
1884
  };
1885
+ 'platform'?: {
1886
+ 'architecture'?: 'amd64' | 'arm64';
1887
+ };
1803
1888
  'computeResources'?: {
1804
1889
  'gpu'?: {
1805
1890
  /** GPU type associated with the node pool. Example: "h100" */
@@ -1834,10 +1919,6 @@ type ListCloudClustersResult = {
1834
1919
  'diskType'?: string;
1835
1920
  /** Disk size in GB Example: 100 */
1836
1921
  '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
1922
  /** Zones in which the node pool should be provisioned. */
1842
1923
  'availabilityZones': string[];
1843
1924
  /** Subnets ids in which the node pool should be provisioned. */
@@ -1915,6 +1996,11 @@ type ListCloudClustersResult = {
1915
1996
  /** Configure the data disk size per Ceph replica */
1916
1997
  'storage'?: number;
1917
1998
  };
1999
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2000
+ 'enableMultiReadWriteStorage'?: boolean;
2001
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2002
+ 'enableSingleReadWriteStorage'?: boolean;
2003
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
1918
2004
  'enableErasureCoding'?: boolean;
1919
2005
  };
1920
2006
  };
@@ -1953,8 +2039,12 @@ type ListCloudClustersResult = {
1953
2039
  'teamId': string;
1954
2040
  }[];
1955
2041
  };
1956
- /** GCP specific data. Required when `provider` is `gcp`. */
2042
+ /** GCP specific data. Required when `provider` is `gcp` */
1957
2043
  'gcp'?: {
2044
+ 'networking'?: {
2045
+ 'network'?: string;
2046
+ 'subnetwork'?: string;
2047
+ };
1958
2048
  'enableAuthorizedIpRanges'?: boolean;
1959
2049
  'authorizedIpRanges'?: string[];
1960
2050
  /** GCP Project ID */
@@ -1965,7 +2055,7 @@ type ListCloudClustersResult = {
1965
2055
  'enablePublicAccessCidrs'?: boolean;
1966
2056
  'publicAccessCidrs'?: string[];
1967
2057
  'subnetConfiguration'?: {
1968
- /** The mode of the AWS subnet */
2058
+ /** The mode of the AWS subnet configuration */
1969
2059
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
1970
2060
  /** Id of the VPC */
1971
2061
  'vpcId'?: string;
@@ -2025,7 +2115,7 @@ type CreateCloudClusterResult = {
2025
2115
  /** The description of the cluster. Example: "This is a new cluster." */
2026
2116
  'description'?: string;
2027
2117
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2028
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2118
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2029
2119
  /** Region of the cluster. Example: "europe-west2" */
2030
2120
  'region': string;
2031
2121
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2102,6 +2192,18 @@ type CreateCloudClusterResult = {
2102
2192
  'ocpu': number;
2103
2193
  'memory': number;
2104
2194
  };
2195
+ /** GCP specific settings. */
2196
+ 'gcp'?: {
2197
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2198
+ 'enablePrivateNodes'?: boolean;
2199
+ };
2200
+ /** Azure specific settings. */
2201
+ 'azure'?: {
2202
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2203
+ 'systemPool'?: boolean;
2204
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2205
+ 'enablePublicNodeIp'?: boolean;
2206
+ };
2105
2207
  /** AWS specific node pool settings. */
2106
2208
  'aws'?: {
2107
2209
  /** 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 +2222,9 @@ type CreateCloudClusterResult = {
2120
2222
  'min'?: number;
2121
2223
  'max'?: number;
2122
2224
  };
2225
+ 'platform'?: {
2226
+ 'architecture'?: 'amd64' | 'arm64';
2227
+ };
2123
2228
  'computeResources'?: {
2124
2229
  'gpu'?: {
2125
2230
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2144,10 +2249,6 @@ type CreateCloudClusterResult = {
2144
2249
  'diskType'?: string;
2145
2250
  /** Disk size in GB Example: 100 */
2146
2251
  '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
2252
  /** Zones in which the node pool should be provisioned. */
2152
2253
  'availabilityZones': string[];
2153
2254
  'subnets'?: string[];
@@ -2231,7 +2332,13 @@ type CreateCloudClusterResult = {
2231
2332
  /** Configure the data disk size per Ceph replica */
2232
2333
  'storage'?: number;
2233
2334
  };
2335
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2336
+ 'enableMultiReadWriteStorage'?: boolean;
2337
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2338
+ 'enableSingleReadWriteStorage'?: boolean;
2339
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2234
2340
  'enableErasureCoding'?: boolean;
2341
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2235
2342
  'enableTopologyAwareScheduling'?: boolean;
2236
2343
  };
2237
2344
  };
@@ -2269,8 +2376,12 @@ type CreateCloudClusterResult = {
2269
2376
  'teamId': string;
2270
2377
  }[];
2271
2378
  };
2272
- /** GCP specific data. Required when `provider` is `gcp`. */
2379
+ /** GCP specific data. Required when `provider` is `gcp` */
2273
2380
  'gcp'?: {
2381
+ 'networking'?: {
2382
+ 'network'?: string;
2383
+ 'subnetwork'?: string;
2384
+ };
2274
2385
  'enableAuthorizedIpRanges'?: boolean;
2275
2386
  'authorizedIpRanges'?: string[];
2276
2387
  /** GCP Project ID */
@@ -2281,7 +2392,7 @@ type CreateCloudClusterResult = {
2281
2392
  'enablePublicAccessCidrs'?: boolean;
2282
2393
  'publicAccessCidrs'?: string[];
2283
2394
  'subnetConfiguration'?: {
2284
- /** The mode of the AWS subnet */
2395
+ /** The mode of the AWS subnet configuration */
2285
2396
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2286
2397
  /** Id of the VPC */
2287
2398
  'vpcId'?: string;
@@ -2336,7 +2447,7 @@ type CreateCloudClusterData = {
2336
2447
  /** The description of the cluster. Example: "This is a new cluster." */
2337
2448
  'description'?: string;
2338
2449
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2339
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2450
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2340
2451
  /** Region of the cluster. Example: "europe-west2" */
2341
2452
  'region': string;
2342
2453
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2413,6 +2524,18 @@ type CreateCloudClusterData = {
2413
2524
  'ocpu': number;
2414
2525
  'memory': number;
2415
2526
  };
2527
+ /** GCP specific settings. */
2528
+ 'gcp'?: {
2529
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2530
+ 'enablePrivateNodes'?: boolean;
2531
+ };
2532
+ /** Azure specific settings. */
2533
+ 'azure'?: {
2534
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2535
+ 'systemPool'?: boolean;
2536
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2537
+ 'enablePublicNodeIp'?: boolean;
2538
+ };
2416
2539
  /** AWS specific node pool settings. */
2417
2540
  'aws'?: {
2418
2541
  /** 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 +2554,9 @@ type CreateCloudClusterData = {
2431
2554
  'min'?: number;
2432
2555
  'max'?: number;
2433
2556
  };
2557
+ 'platform'?: {
2558
+ 'architecture'?: 'amd64' | 'arm64';
2559
+ };
2434
2560
  'computeResources'?: {
2435
2561
  'gpu'?: {
2436
2562
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2455,10 +2581,6 @@ type CreateCloudClusterData = {
2455
2581
  'diskType'?: string;
2456
2582
  /** Disk size in GB Example: 100 */
2457
2583
  '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
2584
  /** Zones in which the node pool should be provisioned. */
2463
2585
  'availabilityZones': string[];
2464
2586
  'subnets'?: string[];
@@ -2542,7 +2664,13 @@ type CreateCloudClusterData = {
2542
2664
  /** Configure the data disk size per Ceph replica */
2543
2665
  'storage'?: number;
2544
2666
  };
2667
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2668
+ 'enableMultiReadWriteStorage'?: boolean;
2669
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2670
+ 'enableSingleReadWriteStorage'?: boolean;
2671
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2545
2672
  'enableErasureCoding'?: boolean;
2673
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2546
2674
  'enableTopologyAwareScheduling'?: boolean;
2547
2675
  };
2548
2676
  };
@@ -2580,8 +2708,12 @@ type CreateCloudClusterData = {
2580
2708
  'teamId': string;
2581
2709
  }[];
2582
2710
  };
2583
- /** GCP specific data. Required when `provider` is `gcp`. */
2711
+ /** GCP specific data. Required when `provider` is `gcp` */
2584
2712
  'gcp'?: {
2713
+ 'networking'?: {
2714
+ 'network'?: string;
2715
+ 'subnetwork'?: string;
2716
+ };
2585
2717
  'enableAuthorizedIpRanges'?: boolean;
2586
2718
  'authorizedIpRanges'?: string[];
2587
2719
  /** GCP Project ID */
@@ -2592,7 +2724,7 @@ type CreateCloudClusterData = {
2592
2724
  'enablePublicAccessCidrs'?: boolean;
2593
2725
  'publicAccessCidrs'?: string[];
2594
2726
  'subnetConfiguration'?: {
2595
- /** The mode of the AWS subnet */
2727
+ /** The mode of the AWS subnet configuration */
2596
2728
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2597
2729
  /** Id of the VPC */
2598
2730
  'vpcId'?: string;
@@ -2635,7 +2767,7 @@ type PutCloudClusterResult = {
2635
2767
  /** The description of the cluster. Example: "This is a new cluster." */
2636
2768
  'description'?: string;
2637
2769
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2638
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
2770
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2639
2771
  /** Region of the cluster. Example: "europe-west2" */
2640
2772
  'region': string;
2641
2773
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2712,6 +2844,18 @@ type PutCloudClusterResult = {
2712
2844
  'ocpu': number;
2713
2845
  'memory': number;
2714
2846
  };
2847
+ /** GCP specific settings. */
2848
+ 'gcp'?: {
2849
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
2850
+ 'enablePrivateNodes'?: boolean;
2851
+ };
2852
+ /** Azure specific settings. */
2853
+ 'azure'?: {
2854
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
2855
+ 'systemPool'?: boolean;
2856
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
2857
+ 'enablePublicNodeIp'?: boolean;
2858
+ };
2715
2859
  /** AWS specific node pool settings. */
2716
2860
  'aws'?: {
2717
2861
  /** 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 +2874,9 @@ type PutCloudClusterResult = {
2730
2874
  'min'?: number;
2731
2875
  'max'?: number;
2732
2876
  };
2877
+ 'platform'?: {
2878
+ 'architecture'?: 'amd64' | 'arm64';
2879
+ };
2733
2880
  'computeResources'?: {
2734
2881
  'gpu'?: {
2735
2882
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -2754,10 +2901,6 @@ type PutCloudClusterResult = {
2754
2901
  'diskType'?: string;
2755
2902
  /** Disk size in GB Example: 100 */
2756
2903
  '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
2904
  /** Zones in which the node pool should be provisioned. */
2762
2905
  'availabilityZones': string[];
2763
2906
  'subnets'?: string[];
@@ -2841,7 +2984,13 @@ type PutCloudClusterResult = {
2841
2984
  /** Configure the data disk size per Ceph replica */
2842
2985
  'storage'?: number;
2843
2986
  };
2987
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
2988
+ 'enableMultiReadWriteStorage'?: boolean;
2989
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
2990
+ 'enableSingleReadWriteStorage'?: boolean;
2991
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
2844
2992
  'enableErasureCoding'?: boolean;
2993
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
2845
2994
  'enableTopologyAwareScheduling'?: boolean;
2846
2995
  };
2847
2996
  };
@@ -2879,8 +3028,12 @@ type PutCloudClusterResult = {
2879
3028
  'teamId': string;
2880
3029
  }[];
2881
3030
  };
2882
- /** GCP specific data. Required when `provider` is `gcp`. */
3031
+ /** GCP specific data. Required when `provider` is `gcp` */
2883
3032
  'gcp'?: {
3033
+ 'networking'?: {
3034
+ 'network'?: string;
3035
+ 'subnetwork'?: string;
3036
+ };
2884
3037
  'enableAuthorizedIpRanges'?: boolean;
2885
3038
  'authorizedIpRanges'?: string[];
2886
3039
  /** GCP Project ID */
@@ -2891,7 +3044,7 @@ type PutCloudClusterResult = {
2891
3044
  'enablePublicAccessCidrs'?: boolean;
2892
3045
  'publicAccessCidrs'?: string[];
2893
3046
  'subnetConfiguration'?: {
2894
- /** The mode of the AWS subnet */
3047
+ /** The mode of the AWS subnet configuration */
2895
3048
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
2896
3049
  /** Id of the VPC */
2897
3050
  'vpcId'?: string;
@@ -2946,7 +3099,7 @@ type PutCloudClusterData = {
2946
3099
  /** The description of the cluster. Example: "This is a new cluster." */
2947
3100
  'description'?: string;
2948
3101
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2949
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3102
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2950
3103
  /** Region of the cluster. Example: "europe-west2" */
2951
3104
  'region': string;
2952
3105
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3023,6 +3176,18 @@ type PutCloudClusterData = {
3023
3176
  'ocpu': number;
3024
3177
  'memory': number;
3025
3178
  };
3179
+ /** GCP specific settings. */
3180
+ 'gcp'?: {
3181
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3182
+ 'enablePrivateNodes'?: boolean;
3183
+ };
3184
+ /** Azure specific settings. */
3185
+ 'azure'?: {
3186
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3187
+ 'systemPool'?: boolean;
3188
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3189
+ 'enablePublicNodeIp'?: boolean;
3190
+ };
3026
3191
  /** AWS specific node pool settings. */
3027
3192
  'aws'?: {
3028
3193
  /** 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 +3206,9 @@ type PutCloudClusterData = {
3041
3206
  'min'?: number;
3042
3207
  'max'?: number;
3043
3208
  };
3209
+ 'platform'?: {
3210
+ 'architecture'?: 'amd64' | 'arm64';
3211
+ };
3044
3212
  'computeResources'?: {
3045
3213
  'gpu'?: {
3046
3214
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3065,10 +3233,6 @@ type PutCloudClusterData = {
3065
3233
  'diskType'?: string;
3066
3234
  /** Disk size in GB Example: 100 */
3067
3235
  '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
3236
  /** Zones in which the node pool should be provisioned. */
3073
3237
  'availabilityZones': string[];
3074
3238
  'subnets'?: string[];
@@ -3152,7 +3316,13 @@ type PutCloudClusterData = {
3152
3316
  /** Configure the data disk size per Ceph replica */
3153
3317
  'storage'?: number;
3154
3318
  };
3319
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3320
+ 'enableMultiReadWriteStorage'?: boolean;
3321
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3322
+ 'enableSingleReadWriteStorage'?: boolean;
3323
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3155
3324
  'enableErasureCoding'?: boolean;
3325
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3156
3326
  'enableTopologyAwareScheduling'?: boolean;
3157
3327
  };
3158
3328
  };
@@ -3190,8 +3360,12 @@ type PutCloudClusterData = {
3190
3360
  'teamId': string;
3191
3361
  }[];
3192
3362
  };
3193
- /** GCP specific data. Required when `provider` is `gcp`. */
3363
+ /** GCP specific data. Required when `provider` is `gcp` */
3194
3364
  'gcp'?: {
3365
+ 'networking'?: {
3366
+ 'network'?: string;
3367
+ 'subnetwork'?: string;
3368
+ };
3195
3369
  'enableAuthorizedIpRanges'?: boolean;
3196
3370
  'authorizedIpRanges'?: string[];
3197
3371
  /** GCP Project ID */
@@ -3202,7 +3376,7 @@ type PutCloudClusterData = {
3202
3376
  'enablePublicAccessCidrs'?: boolean;
3203
3377
  'publicAccessCidrs'?: string[];
3204
3378
  'subnetConfiguration'?: {
3205
- /** The mode of the AWS subnet */
3379
+ /** The mode of the AWS subnet configuration */
3206
3380
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3207
3381
  /** Id of the VPC */
3208
3382
  'vpcId'?: string;
@@ -3245,7 +3419,7 @@ type GetCloudClusterResult = {
3245
3419
  /** The description of the cluster. Example: "This is a new cluster." */
3246
3420
  'description'?: string;
3247
3421
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3248
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3422
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3249
3423
  /** Region of the cluster. Example: "europe-west2" */
3250
3424
  'region': string;
3251
3425
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3322,6 +3496,18 @@ type GetCloudClusterResult = {
3322
3496
  'ocpu': number;
3323
3497
  'memory': number;
3324
3498
  };
3499
+ /** GCP specific settings. */
3500
+ 'gcp'?: {
3501
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3502
+ 'enablePrivateNodes'?: boolean;
3503
+ };
3504
+ /** Azure specific settings. */
3505
+ 'azure'?: {
3506
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3507
+ 'systemPool'?: boolean;
3508
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3509
+ 'enablePublicNodeIp'?: boolean;
3510
+ };
3325
3511
  /** AWS specific node pool settings. */
3326
3512
  'aws'?: {
3327
3513
  /** 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 +3526,9 @@ type GetCloudClusterResult = {
3340
3526
  'min'?: number;
3341
3527
  'max'?: number;
3342
3528
  };
3529
+ 'platform'?: {
3530
+ 'architecture'?: 'amd64' | 'arm64';
3531
+ };
3343
3532
  'computeResources'?: {
3344
3533
  'gpu'?: {
3345
3534
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3364,10 +3553,6 @@ type GetCloudClusterResult = {
3364
3553
  'diskType'?: string;
3365
3554
  /** Disk size in GB Example: 100 */
3366
3555
  '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
3556
  /** Zones in which the node pool should be provisioned. */
3372
3557
  'availabilityZones': string[];
3373
3558
  'subnets'?: string[];
@@ -3451,7 +3636,13 @@ type GetCloudClusterResult = {
3451
3636
  /** Configure the data disk size per Ceph replica */
3452
3637
  'storage'?: number;
3453
3638
  };
3639
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3640
+ 'enableMultiReadWriteStorage'?: boolean;
3641
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3642
+ 'enableSingleReadWriteStorage'?: boolean;
3643
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3454
3644
  'enableErasureCoding'?: boolean;
3645
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3455
3646
  'enableTopologyAwareScheduling'?: boolean;
3456
3647
  };
3457
3648
  };
@@ -3489,8 +3680,12 @@ type GetCloudClusterResult = {
3489
3680
  'teamId': string;
3490
3681
  }[];
3491
3682
  };
3492
- /** GCP specific data. Required when `provider` is `gcp`. */
3683
+ /** GCP specific data. Required when `provider` is `gcp` */
3493
3684
  'gcp'?: {
3685
+ 'networking'?: {
3686
+ 'network'?: string;
3687
+ 'subnetwork'?: string;
3688
+ };
3494
3689
  'enableAuthorizedIpRanges'?: boolean;
3495
3690
  'authorizedIpRanges'?: string[];
3496
3691
  /** GCP Project ID */
@@ -3501,7 +3696,7 @@ type GetCloudClusterResult = {
3501
3696
  'enablePublicAccessCidrs'?: boolean;
3502
3697
  'publicAccessCidrs'?: string[];
3503
3698
  'subnetConfiguration'?: {
3504
- /** The mode of the AWS subnet */
3699
+ /** The mode of the AWS subnet configuration */
3505
3700
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3506
3701
  /** Id of the VPC */
3507
3702
  'vpcId'?: string;
@@ -3568,7 +3763,7 @@ type PatchCloudClusterResult = {
3568
3763
  /** The description of the cluster. Example: "This is a new cluster." */
3569
3764
  'description'?: string;
3570
3765
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3571
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
3766
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3572
3767
  /** Region of the cluster. Example: "europe-west2" */
3573
3768
  'region': string;
3574
3769
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3645,6 +3840,18 @@ type PatchCloudClusterResult = {
3645
3840
  'ocpu': number;
3646
3841
  'memory': number;
3647
3842
  };
3843
+ /** GCP specific settings. */
3844
+ 'gcp'?: {
3845
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
3846
+ 'enablePrivateNodes'?: boolean;
3847
+ };
3848
+ /** Azure specific settings. */
3849
+ 'azure'?: {
3850
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
3851
+ 'systemPool'?: boolean;
3852
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
3853
+ 'enablePublicNodeIp'?: boolean;
3854
+ };
3648
3855
  /** AWS specific node pool settings. */
3649
3856
  'aws'?: {
3650
3857
  /** 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 +3870,9 @@ type PatchCloudClusterResult = {
3663
3870
  'min'?: number;
3664
3871
  'max'?: number;
3665
3872
  };
3873
+ 'platform'?: {
3874
+ 'architecture'?: 'amd64' | 'arm64';
3875
+ };
3666
3876
  'computeResources'?: {
3667
3877
  'gpu'?: {
3668
3878
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3687,10 +3897,6 @@ type PatchCloudClusterResult = {
3687
3897
  'diskType'?: string;
3688
3898
  /** Disk size in GB Example: 100 */
3689
3899
  '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
3900
  /** Zones in which the node pool should be provisioned. */
3695
3901
  'availabilityZones': string[];
3696
3902
  'subnets'?: string[];
@@ -3774,7 +3980,13 @@ type PatchCloudClusterResult = {
3774
3980
  /** Configure the data disk size per Ceph replica */
3775
3981
  'storage'?: number;
3776
3982
  };
3983
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
3984
+ 'enableMultiReadWriteStorage'?: boolean;
3985
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
3986
+ 'enableSingleReadWriteStorage'?: boolean;
3987
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
3777
3988
  'enableErasureCoding'?: boolean;
3989
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
3778
3990
  'enableTopologyAwareScheduling'?: boolean;
3779
3991
  };
3780
3992
  };
@@ -3812,8 +4024,12 @@ type PatchCloudClusterResult = {
3812
4024
  'teamId': string;
3813
4025
  }[];
3814
4026
  };
3815
- /** GCP specific data. Required when `provider` is `gcp`. */
4027
+ /** GCP specific data. Required when `provider` is `gcp` */
3816
4028
  'gcp'?: {
4029
+ 'networking'?: {
4030
+ 'network'?: string;
4031
+ 'subnetwork'?: string;
4032
+ };
3817
4033
  'enableAuthorizedIpRanges'?: boolean;
3818
4034
  'authorizedIpRanges'?: string[];
3819
4035
  /** GCP Project ID */
@@ -3824,7 +4040,7 @@ type PatchCloudClusterResult = {
3824
4040
  'enablePublicAccessCidrs'?: boolean;
3825
4041
  'publicAccessCidrs'?: string[];
3826
4042
  'subnetConfiguration'?: {
3827
- /** The mode of the AWS subnet */
4043
+ /** The mode of the AWS subnet configuration */
3828
4044
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
3829
4045
  /** Id of the VPC */
3830
4046
  'vpcId'?: string;
@@ -3936,6 +4152,18 @@ type PatchCloudClusterData = {
3936
4152
  'ocpu': number;
3937
4153
  'memory': number;
3938
4154
  };
4155
+ /** GCP specific settings. */
4156
+ 'gcp'?: {
4157
+ /** Set this flag to disable public IP assignment for nodes in this node pool. */
4158
+ 'enablePrivateNodes'?: boolean;
4159
+ };
4160
+ /** Azure specific settings. */
4161
+ 'azure'?: {
4162
+ /** When 'provider' is 'azure', at least one system node pool is required per cluster. */
4163
+ 'systemPool'?: boolean;
4164
+ /** When 'provider' is 'azure', set this flag to use public node IPs. */
4165
+ 'enablePublicNodeIp'?: boolean;
4166
+ };
3939
4167
  /** AWS specific node pool settings. */
3940
4168
  'aws'?: {
3941
4169
  /** 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 +4182,9 @@ type PatchCloudClusterData = {
3954
4182
  'min'?: number;
3955
4183
  'max'?: number;
3956
4184
  };
4185
+ 'platform'?: {
4186
+ 'architecture'?: 'amd64' | 'arm64';
4187
+ };
3957
4188
  'computeResources'?: {
3958
4189
  'gpu'?: {
3959
4190
  /** Multi-Instance GPU (MIG). configuration object. */
@@ -3978,10 +4209,6 @@ type PatchCloudClusterData = {
3978
4209
  'diskType'?: string;
3979
4210
  /** Disk size in GB Example: 100 */
3980
4211
  '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
4212
  /** Zones in which the node pool should be provisioned. */
3986
4213
  'availabilityZones': string[];
3987
4214
  'subnets'?: string[];
@@ -4059,7 +4286,13 @@ type PatchCloudClusterData = {
4059
4286
  /** Configure the data disk size per Ceph replica */
4060
4287
  'storage'?: number;
4061
4288
  };
4289
+ /** Configure Ceph to be enable use of multi read write storage for persistent volumes on the cluster. */
4290
+ 'enableMultiReadWriteStorage'?: boolean;
4291
+ /** Configure Ceph to be used as default storage class for single read write storage. This will replace the default storage of the cloud provider. */
4292
+ 'enableSingleReadWriteStorage'?: boolean;
4293
+ /** Configure Ceph to be set up with erasure coding. This will be less fault tolerant but more cost effective. */
4062
4294
  'enableErasureCoding'?: boolean;
4295
+ /** Configure Ceph to be set up with topology aware scheduling, enforcing deployment across multiple zones. */
4063
4296
  'enableTopologyAwareScheduling'?: boolean;
4064
4297
  };
4065
4298
  };
@@ -4097,8 +4330,12 @@ type PatchCloudClusterData = {
4097
4330
  'teamId': string;
4098
4331
  }[];
4099
4332
  };
4100
- /** GCP specific data. Required when `provider` is `gcp`. */
4333
+ /** GCP specific data. Required when `provider` is `gcp` */
4101
4334
  'gcp'?: {
4335
+ 'networking'?: {
4336
+ 'network'?: string;
4337
+ 'subnetwork'?: string;
4338
+ };
4102
4339
  'enableAuthorizedIpRanges'?: boolean;
4103
4340
  'authorizedIpRanges'?: string[];
4104
4341
  /** GCP Project ID */
@@ -4109,7 +4346,7 @@ type PatchCloudClusterData = {
4109
4346
  'enablePublicAccessCidrs'?: boolean;
4110
4347
  'publicAccessCidrs'?: string[];
4111
4348
  'subnetConfiguration'?: {
4112
- /** The mode of the AWS subnet */
4349
+ /** The mode of the AWS subnet configuration */
4113
4350
  'mode': 'default-subnets-for-azs' | 'explicit-subnets';
4114
4351
  /** Id of the VPC */
4115
4352
  'vpcId'?: string;
@@ -4271,7 +4508,7 @@ type ListCloudDockerregistryResult = {
4271
4508
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4272
4509
  'uid'?: string;
4273
4510
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4274
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4511
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4275
4512
  'region': string;
4276
4513
  /** BYOC restrictions configuration for controlling team access */
4277
4514
  'restrictions'?: {
@@ -4319,7 +4556,7 @@ type CreateCloudDockerregistryResult = {
4319
4556
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4320
4557
  'uid'?: string;
4321
4558
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4322
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4559
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4323
4560
  'region': string;
4324
4561
  /** Integration to use for this registry. Example: "gcp-integration" */
4325
4562
  'integrationId'?: string;
@@ -4350,7 +4587,7 @@ type CreateCloudDockerregistryData = {
4350
4587
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4351
4588
  'uid'?: string;
4352
4589
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4353
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4590
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4354
4591
  'region': string;
4355
4592
  /** Integration to use for this registry. Example: "gcp-integration" */
4356
4593
  'integrationId'?: string;
@@ -4388,7 +4625,7 @@ type PutCloudDockerregistryResult = {
4388
4625
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4389
4626
  'uid'?: string;
4390
4627
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4391
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4628
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4392
4629
  'region': string;
4393
4630
  /** Integration to use for this registry. Example: "gcp-integration" */
4394
4631
  'integrationId'?: string;
@@ -4423,7 +4660,7 @@ type PutCloudDockerregistryData = {
4423
4660
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4424
4661
  'uid'?: string;
4425
4662
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4426
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4663
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4427
4664
  'region': string;
4428
4665
  /** Integration to use for this registry. Example: "gcp-integration" */
4429
4666
  'integrationId'?: string;
@@ -4461,7 +4698,7 @@ type GetCloudDockerregistryResult = {
4461
4698
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4462
4699
  'uid'?: string;
4463
4700
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4464
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4701
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4465
4702
  'region': string;
4466
4703
  /** Integration to use for this registry. Example: "gcp-integration" */
4467
4704
  'integrationId'?: string;
@@ -4506,7 +4743,7 @@ type PatchCloudDockerregistryResult = {
4506
4743
  /** Unique id of the registry. Example: "nf-n7xyvdn4" */
4507
4744
  'uid'?: string;
4508
4745
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4509
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'byok';
4746
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4510
4747
  'region': string;
4511
4748
  /** Integration to use for this registry. Example: "gcp-integration" */
4512
4749
  'integrationId'?: string;
@@ -4585,8 +4822,8 @@ type ListCloudIntegrationsResult = {
4585
4822
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4586
4823
  'description'?: string;
4587
4824
  /** 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'[];
4825
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4826
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4590
4827
  /** BYOC restrictions configuration for controlling team access */
4591
4828
  'restrictions'?: {
4592
4829
  /** Enable or disable BYOC restrictions for this entity */
@@ -4609,6 +4846,11 @@ type ListCloudIntegrationsResult = {
4609
4846
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4610
4847
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4611
4848
  };
4849
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
4850
+ 'cloudflare'?: {
4851
+ /** The type of api key Example: "apiToken" */
4852
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
4853
+ };
4612
4854
  /** ID of the integration Example: "example-integration" */
4613
4855
  'id': string;
4614
4856
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
@@ -4646,8 +4888,8 @@ type CreateCloudIntegrationResult = {
4646
4888
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4647
4889
  'description'?: string;
4648
4890
  /** 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'[];
4891
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4892
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4651
4893
  /** BYOC restrictions configuration for controlling team access */
4652
4894
  'restrictions'?: {
4653
4895
  /** Enable or disable BYOC restrictions for this entity */
@@ -4670,8 +4912,10 @@ type CreateCloudIntegrationResult = {
4670
4912
  'roleArn'?: string;
4671
4913
  /** AWS shared secret (external id). */
4672
4914
  'externalId'?: string;
4673
- /** Civo API key. */
4915
+ /** API key. */
4674
4916
  'apiKey'?: string;
4917
+ /** Email address for Cloudflare global API key. */
4918
+ 'email'?: string;
4675
4919
  /** Directory (tenant) ID */
4676
4920
  'tenantId'?: string;
4677
4921
  /** Application (client) ID */
@@ -4713,6 +4957,11 @@ type CreateCloudIntegrationResult = {
4713
4957
  /** Service account email that will be used for cross account access. */
4714
4958
  'serviceAccountEmail'?: string;
4715
4959
  };
4960
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
4961
+ 'cloudflare'?: {
4962
+ /** The type of api key Example: "apiToken" */
4963
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
4964
+ };
4716
4965
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
4717
4966
  'createdAt': string;
4718
4967
  };
@@ -4726,8 +4975,8 @@ type CreateCloudIntegrationData = {
4726
4975
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4727
4976
  'description'?: string;
4728
4977
  /** 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'[];
4978
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4979
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4731
4980
  /** BYOC restrictions configuration for controlling team access */
4732
4981
  'restrictions'?: {
4733
4982
  /** Enable or disable BYOC restrictions for this entity */
@@ -4750,8 +4999,10 @@ type CreateCloudIntegrationData = {
4750
4999
  'roleArn'?: string;
4751
5000
  /** AWS shared secret (external id). */
4752
5001
  'externalId'?: string;
4753
- /** Civo API key. */
5002
+ /** API key. */
4754
5003
  'apiKey'?: string;
5004
+ /** Email address for Cloudflare global API key. */
5005
+ 'email'?: string;
4755
5006
  /** Directory (tenant) ID */
4756
5007
  'tenantId'?: string;
4757
5008
  /** Application (client) ID */
@@ -4791,6 +5042,11 @@ type CreateCloudIntegrationData = {
4791
5042
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4792
5043
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4793
5044
  };
5045
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5046
+ 'cloudflare'?: {
5047
+ /** The type of api key Example: "apiToken" */
5048
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5049
+ };
4794
5050
  };
4795
5051
  /** Creates a new integration. */
4796
5052
  declare class CreateCloudIntegrationEndpoint extends PostApiEndpoint<CreateCloudIntegrationRequest, CreateCloudIntegrationResult> {
@@ -4809,8 +5065,8 @@ type PutCloudIntegrationResult = {
4809
5065
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4810
5066
  'description'?: string;
4811
5067
  /** 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'[];
5068
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5069
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4814
5070
  /** BYOC restrictions configuration for controlling team access */
4815
5071
  'restrictions'?: {
4816
5072
  /** Enable or disable BYOC restrictions for this entity */
@@ -4833,8 +5089,10 @@ type PutCloudIntegrationResult = {
4833
5089
  'roleArn'?: string;
4834
5090
  /** AWS shared secret (external id). */
4835
5091
  'externalId'?: string;
4836
- /** Civo API key. */
5092
+ /** API key. */
4837
5093
  'apiKey'?: string;
5094
+ /** Email address for Cloudflare global API key. */
5095
+ 'email'?: string;
4838
5096
  /** Directory (tenant) ID */
4839
5097
  'tenantId'?: string;
4840
5098
  /** Application (client) ID */
@@ -4876,6 +5134,11 @@ type PutCloudIntegrationResult = {
4876
5134
  /** Service account email that will be used for cross account access. */
4877
5135
  'serviceAccountEmail'?: string;
4878
5136
  };
5137
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5138
+ 'cloudflare'?: {
5139
+ /** The type of api key Example: "apiToken" */
5140
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5141
+ };
4879
5142
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
4880
5143
  'createdAt': string;
4881
5144
  };
@@ -4893,8 +5156,8 @@ type PutCloudIntegrationData = {
4893
5156
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4894
5157
  'description'?: string;
4895
5158
  /** 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'[];
5159
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5160
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4898
5161
  /** BYOC restrictions configuration for controlling team access */
4899
5162
  'restrictions'?: {
4900
5163
  /** Enable or disable BYOC restrictions for this entity */
@@ -4917,8 +5180,10 @@ type PutCloudIntegrationData = {
4917
5180
  'roleArn'?: string;
4918
5181
  /** AWS shared secret (external id). */
4919
5182
  'externalId'?: string;
4920
- /** Civo API key. */
5183
+ /** API key. */
4921
5184
  'apiKey'?: string;
5185
+ /** Email address for Cloudflare global API key. */
5186
+ 'email'?: string;
4922
5187
  /** Directory (tenant) ID */
4923
5188
  'tenantId'?: string;
4924
5189
  /** Application (client) ID */
@@ -4958,6 +5223,11 @@ type PutCloudIntegrationData = {
4958
5223
  /** The provider authentication mode to use for this integration. Example: "accessKey" */
4959
5224
  'authenticationMode'?: 'accessKey' | 'crossAccountRole';
4960
5225
  };
5226
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5227
+ 'cloudflare'?: {
5228
+ /** The type of api key Example: "apiToken" */
5229
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5230
+ };
4961
5231
  };
4962
5232
  /** Creates or updates a integration. */
4963
5233
  declare class PutCloudIntegrationEndpoint extends PutApiEndpoint<PutCloudIntegrationRequest, PutCloudIntegrationResult> {
@@ -4976,8 +5246,8 @@ type GetCloudIntegrationResult = {
4976
5246
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4977
5247
  'description'?: string;
4978
5248
  /** 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'[];
5249
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5250
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
4981
5251
  /** BYOC restrictions configuration for controlling team access */
4982
5252
  'restrictions'?: {
4983
5253
  /** Enable or disable BYOC restrictions for this entity */
@@ -5000,8 +5270,10 @@ type GetCloudIntegrationResult = {
5000
5270
  'roleArn'?: string;
5001
5271
  /** AWS shared secret (external id). */
5002
5272
  'externalId'?: string;
5003
- /** Civo API key. */
5273
+ /** API key. */
5004
5274
  'apiKey'?: string;
5275
+ /** Email address for Cloudflare global API key. */
5276
+ 'email'?: string;
5005
5277
  /** Directory (tenant) ID */
5006
5278
  'tenantId'?: string;
5007
5279
  /** Application (client) ID */
@@ -5043,6 +5315,11 @@ type GetCloudIntegrationResult = {
5043
5315
  /** Service account email that will be used for cross account access. */
5044
5316
  'serviceAccountEmail'?: string;
5045
5317
  };
5318
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5319
+ 'cloudflare'?: {
5320
+ /** The type of api key Example: "apiToken" */
5321
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5322
+ };
5046
5323
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
5047
5324
  'createdAt': string;
5048
5325
  };
@@ -5070,8 +5347,8 @@ type PatchCloudIntegrationResult = {
5070
5347
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5071
5348
  'description'?: string;
5072
5349
  /** 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'[];
5350
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5351
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
5075
5352
  /** BYOC restrictions configuration for controlling team access */
5076
5353
  'restrictions'?: {
5077
5354
  /** Enable or disable BYOC restrictions for this entity */
@@ -5094,8 +5371,10 @@ type PatchCloudIntegrationResult = {
5094
5371
  'roleArn'?: string;
5095
5372
  /** AWS shared secret (external id). */
5096
5373
  'externalId'?: string;
5097
- /** Civo API key. */
5374
+ /** API key. */
5098
5375
  'apiKey'?: string;
5376
+ /** Email address for Cloudflare global API key. */
5377
+ 'email'?: string;
5099
5378
  /** Directory (tenant) ID */
5100
5379
  'tenantId'?: string;
5101
5380
  /** Application (client) ID */
@@ -5137,6 +5416,11 @@ type PatchCloudIntegrationResult = {
5137
5416
  /** Service account email that will be used for cross account access. */
5138
5417
  'serviceAccountEmail'?: string;
5139
5418
  };
5419
+ /** Cloudflare specific data. Required when `provider` is `cloudflare`. */
5420
+ 'cloudflare'?: {
5421
+ /** The type of api key Example: "apiToken" */
5422
+ 'credentialType'?: 'apiToken' | 'originCAKey' | 'globalApiKey';
5423
+ };
5140
5424
  /** The time the integration was created. Example: "2021-01-20T11:19:53.175Z" */
5141
5425
  'createdAt': string;
5142
5426
  };
@@ -5151,7 +5435,7 @@ type PatchCloudIntegrationParameters = {
5151
5435
  type PatchCloudIntegrationData = {
5152
5436
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5153
5437
  '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'[];
5438
+ 'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'cloudfront' | 'self-hosted-registry' | 'route53' | 'docker-registry-credential' | 'opentofu'[];
5155
5439
  /** BYOC restrictions configuration for controlling team access */
5156
5440
  'restrictions'?: {
5157
5441
  /** Enable or disable BYOC restrictions for this entity */
@@ -5174,8 +5458,10 @@ type PatchCloudIntegrationData = {
5174
5458
  'roleArn'?: string;
5175
5459
  /** AWS shared secret (external id). */
5176
5460
  'externalId'?: string;
5177
- /** Civo API key. */
5461
+ /** API key. */
5178
5462
  'apiKey'?: string;
5463
+ /** Email address for Cloudflare global API key. */
5464
+ 'email'?: string;
5179
5465
  /** Directory (tenant) ID */
5180
5466
  'tenantId'?: string;
5181
5467
  /** Application (client) ID */
@@ -5612,6 +5898,11 @@ type AddDomainSubdomainData = {
5612
5898
  'enabled': boolean;
5613
5899
  };
5614
5900
  };
5901
+ /** Optional advanced configuration for the subdomain */
5902
+ 'options'?: {
5903
+ /** Desired TLS mode for the subdomain. */
5904
+ 'tlsMode'?: 'default' | 'passthrough';
5905
+ };
5615
5906
  };
5616
5907
  /** Adds a new subdomain to the domain. */
5617
5908
  declare class AddDomainSubdomainEndpoint extends PostApiEndpoint<AddDomainSubdomainRequest, AddDomainSubdomainResult> {
@@ -9077,6 +9368,9 @@ type CreateAddonResult = {
9077
9368
  'tags'?: string[];
9078
9369
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9079
9370
  'type': string;
9371
+ 'infrastructure'?: {
9372
+ 'architecture'?: 'x86' | 'arm';
9373
+ };
9080
9374
  /** 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
9375
  'version': string;
9082
9376
  'billing': {
@@ -9128,6 +9422,8 @@ type CreateAddonResult = {
9128
9422
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9129
9423
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9130
9424
  'postgresqlReadConnectionPoolerReplicas'?: number;
9425
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9426
+ 'mysqlHaModeEnabled'?: boolean;
9131
9427
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9132
9428
  'mysqlRouterReplicas'?: number;
9133
9429
  };
@@ -9149,11 +9445,14 @@ type CreateAddonResult = {
9149
9445
  };
9150
9446
  /** The type of the backup to be performed. Example: "snapshot" */
9151
9447
  'backupType': 'dump' | 'snapshot';
9448
+ 'customDestinationId'?: string;
9152
9449
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9153
9450
  'additionalDestinations'?: {
9451
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9154
9452
  'destinationId': string;
9155
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9453
+ /** Retention time of the additional back up in days. */
9156
9454
  'retentionTime'?: number;
9455
+ /** The type of backup destination to use Example: "custom" */
9157
9456
  'type': 'custom';
9158
9457
  }[];
9159
9458
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9198,6 +9497,9 @@ type CreateAddonResult = {
9198
9497
  'tags'?: string[];
9199
9498
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9200
9499
  'type': string;
9500
+ 'infrastructure'?: {
9501
+ 'architecture'?: 'x86' | 'arm';
9502
+ };
9201
9503
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9202
9504
  'templateValues'?: any;
9203
9505
  /** Identifier for the addon. Example: "example-addon" */
@@ -9241,6 +9543,9 @@ type CreateAddonData = {
9241
9543
  'tags'?: string[];
9242
9544
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9243
9545
  'type': string;
9546
+ 'infrastructure'?: {
9547
+ 'architecture'?: 'x86' | 'arm';
9548
+ };
9244
9549
  /** 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
9550
  'version': string;
9246
9551
  'billing': {
@@ -9292,6 +9597,8 @@ type CreateAddonData = {
9292
9597
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9293
9598
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9294
9599
  'postgresqlReadConnectionPoolerReplicas'?: number;
9600
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9601
+ 'mysqlHaModeEnabled'?: boolean;
9295
9602
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9296
9603
  'mysqlRouterReplicas'?: number;
9297
9604
  };
@@ -9313,11 +9620,14 @@ type CreateAddonData = {
9313
9620
  };
9314
9621
  /** The type of the backup to be performed. Example: "snapshot" */
9315
9622
  'backupType': 'dump' | 'snapshot';
9623
+ 'customDestinationId'?: string;
9316
9624
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9317
9625
  'additionalDestinations'?: {
9626
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9318
9627
  'destinationId': string;
9319
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9628
+ /** Retention time of the additional back up in days. */
9320
9629
  'retentionTime'?: number;
9630
+ /** The type of backup destination to use Example: "custom" */
9321
9631
  'type': 'custom';
9322
9632
  }[];
9323
9633
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9343,6 +9653,9 @@ type CreateAddonData = {
9343
9653
  'tags'?: string[];
9344
9654
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9345
9655
  'type': string;
9656
+ 'infrastructure'?: {
9657
+ 'architecture'?: 'x86' | 'arm';
9658
+ };
9346
9659
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9347
9660
  'templateValues'?: any;
9348
9661
  };
@@ -9364,6 +9677,9 @@ type PutAddonResult = {
9364
9677
  'tags'?: string[];
9365
9678
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9366
9679
  'type': string;
9680
+ 'infrastructure'?: {
9681
+ 'architecture'?: 'x86' | 'arm';
9682
+ };
9367
9683
  /** 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
9684
  'version': string;
9369
9685
  'billing': {
@@ -9415,6 +9731,8 @@ type PutAddonResult = {
9415
9731
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9416
9732
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9417
9733
  'postgresqlReadConnectionPoolerReplicas'?: number;
9734
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9735
+ 'mysqlHaModeEnabled'?: boolean;
9418
9736
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9419
9737
  'mysqlRouterReplicas'?: number;
9420
9738
  };
@@ -9436,11 +9754,14 @@ type PutAddonResult = {
9436
9754
  };
9437
9755
  /** The type of the backup to be performed. Example: "snapshot" */
9438
9756
  'backupType': 'dump' | 'snapshot';
9757
+ 'customDestinationId'?: string;
9439
9758
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9440
9759
  'additionalDestinations'?: {
9760
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9441
9761
  'destinationId': string;
9442
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9762
+ /** Retention time of the additional back up in days. */
9443
9763
  'retentionTime'?: number;
9764
+ /** The type of backup destination to use Example: "custom" */
9444
9765
  'type': 'custom';
9445
9766
  }[];
9446
9767
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9485,6 +9806,9 @@ type PutAddonResult = {
9485
9806
  'tags'?: string[];
9486
9807
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9487
9808
  'type': string;
9809
+ 'infrastructure'?: {
9810
+ 'architecture'?: 'x86' | 'arm';
9811
+ };
9488
9812
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9489
9813
  'templateValues'?: any;
9490
9814
  /** Identifier for the addon. Example: "example-addon" */
@@ -9528,6 +9852,9 @@ type PutAddonData = {
9528
9852
  'tags'?: string[];
9529
9853
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9530
9854
  'type': string;
9855
+ 'infrastructure'?: {
9856
+ 'architecture'?: 'x86' | 'arm';
9857
+ };
9531
9858
  /** 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
9859
  'version': string;
9533
9860
  'billing': {
@@ -9579,6 +9906,8 @@ type PutAddonData = {
9579
9906
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9580
9907
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9581
9908
  'postgresqlReadConnectionPoolerReplicas'?: number;
9909
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
9910
+ 'mysqlHaModeEnabled'?: boolean;
9582
9911
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9583
9912
  'mysqlRouterReplicas'?: number;
9584
9913
  };
@@ -9600,11 +9929,14 @@ type PutAddonData = {
9600
9929
  };
9601
9930
  /** The type of the backup to be performed. Example: "snapshot" */
9602
9931
  'backupType': 'dump' | 'snapshot';
9932
+ 'customDestinationId'?: string;
9603
9933
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9604
9934
  'additionalDestinations'?: {
9935
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9605
9936
  'destinationId': string;
9606
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
9937
+ /** Retention time of the additional back up in days. */
9607
9938
  'retentionTime'?: number;
9939
+ /** The type of backup destination to use Example: "custom" */
9608
9940
  'type': 'custom';
9609
9941
  }[];
9610
9942
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9630,6 +9962,9 @@ type PutAddonData = {
9630
9962
  'tags'?: string[];
9631
9963
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9632
9964
  'type': string;
9965
+ 'infrastructure'?: {
9966
+ 'architecture'?: 'x86' | 'arm';
9967
+ };
9633
9968
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9634
9969
  'templateValues'?: any;
9635
9970
  };
@@ -9738,6 +10073,9 @@ type PatchAddonResult = {
9738
10073
  'tags'?: string[];
9739
10074
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9740
10075
  'type': string;
10076
+ 'infrastructure'?: {
10077
+ 'architecture'?: 'x86' | 'arm';
10078
+ };
9741
10079
  /** 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
10080
  'version': string;
9743
10081
  'billing': {
@@ -9789,6 +10127,8 @@ type PatchAddonResult = {
9789
10127
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9790
10128
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9791
10129
  'postgresqlReadConnectionPoolerReplicas'?: number;
10130
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
10131
+ 'mysqlHaModeEnabled'?: boolean;
9792
10132
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9793
10133
  'mysqlRouterReplicas'?: number;
9794
10134
  };
@@ -9810,11 +10150,14 @@ type PatchAddonResult = {
9810
10150
  };
9811
10151
  /** The type of the backup to be performed. Example: "snapshot" */
9812
10152
  'backupType': 'dump' | 'snapshot';
10153
+ 'customDestinationId'?: string;
9813
10154
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9814
10155
  'additionalDestinations'?: {
10156
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9815
10157
  'destinationId': string;
9816
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10158
+ /** Retention time of the additional back up in days. */
9817
10159
  'retentionTime'?: number;
10160
+ /** The type of backup destination to use Example: "custom" */
9818
10161
  'type': 'custom';
9819
10162
  }[];
9820
10163
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -9859,6 +10202,9 @@ type PatchAddonResult = {
9859
10202
  'tags'?: string[];
9860
10203
  /** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
9861
10204
  'type': string;
10205
+ 'infrastructure'?: {
10206
+ 'architecture'?: 'x86' | 'arm';
10207
+ };
9862
10208
  /** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
9863
10209
  'templateValues'?: any;
9864
10210
  /** Identifier for the addon. Example: "example-addon" */
@@ -9936,6 +10282,8 @@ type PatchAddonData = {
9936
10282
  'postgresqlReadConnectionPoolerEnabled'?: boolean;
9937
10283
  /** PostgreSQL only: Number of read-only connection pooler replicas in case read-only connection pooler is enabled. */
9938
10284
  'postgresqlReadConnectionPoolerReplicas'?: number;
10285
+ /** MySQL only: Run MySQL in HA configuration with auto-failover and connection poolers. */
10286
+ 'mysqlHaModeEnabled'?: boolean;
9939
10287
  /** MysqlHA only: Number of connection router replicas in case connection router is enabled. */
9940
10288
  'mysqlRouterReplicas'?: number;
9941
10289
  };
@@ -9953,11 +10301,14 @@ type PatchAddonData = {
9953
10301
  };
9954
10302
  /** The type of the backup to be performed. Example: "snapshot" */
9955
10303
  'backupType': 'dump' | 'snapshot';
10304
+ 'customDestinationId'?: string;
9956
10305
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
9957
10306
  'additionalDestinations'?: {
10307
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
9958
10308
  'destinationId': string;
9959
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10309
+ /** Retention time of the additional back up in days. */
9960
10310
  'retentionTime'?: number;
10311
+ /** The type of backup destination to use Example: "custom" */
9961
10312
  'type': 'custom';
9962
10313
  }[];
9963
10314
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10014,6 +10365,19 @@ type GetAddonBackupschedulesResult = {
10014
10365
  'id': string;
10015
10366
  /** The type of backup being performed. Example: "snapshot" */
10016
10367
  'backupType': 'dump' | 'snapshot';
10368
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10369
+ 'backupCompressionType'?: 'gz' | 'zstd';
10370
+ /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10371
+ 'additionalDestinations'?: {
10372
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10373
+ 'destinationId': string;
10374
+ /** Retention time of the additional back up in days. */
10375
+ 'retentionTime'?: number;
10376
+ /** The type of backup destination to use Example: "custom" */
10377
+ 'type': 'custom';
10378
+ }[];
10379
+ /** Custom backup destination in which the dump back up should be stored. Example: "example-backup-destination" */
10380
+ 'customDestinationId'?: string;
10017
10381
  /** Information about the scheduling for the backup schedule. */
10018
10382
  'scheduling': {
10019
10383
  /** The interval between backups. Each addon can only have one backup schedule of each interval for each backup type. Example: "weekly" */
@@ -10090,11 +10454,14 @@ type CreateAddonBackupscheduleData = {
10090
10454
  };
10091
10455
  /** The type of the backup to be performed. Example: "snapshot" */
10092
10456
  'backupType': 'dump' | 'snapshot';
10457
+ 'customDestinationId'?: string;
10093
10458
  /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10094
10459
  'additionalDestinations'?: {
10460
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10095
10461
  'destinationId': string;
10096
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10462
+ /** Retention time of the additional back up in days. */
10097
10463
  'retentionTime'?: number;
10464
+ /** The type of backup destination to use Example: "custom" */
10098
10465
  'type': 'custom';
10099
10466
  }[];
10100
10467
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
@@ -10154,9 +10521,22 @@ type GetAddonBackupsResult = {
10154
10521
  };
10155
10522
  /** The size of the backup, in bytes Example: "1234" */
10156
10523
  'size': string;
10524
+ /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10525
+ 'compressionType'?: 'gz' | 'zstd';
10526
+ /** List of destinations for which a backup should be created of this backup. Only applicable for snapshot backups. */
10527
+ 'additionalDestinations'?: {
10528
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10529
+ 'destinationId': string;
10530
+ /** Retention time of the additional back up in days. */
10531
+ 'retentionTime'?: number;
10532
+ /** The type of backup destination to use Example: "custom" */
10533
+ 'type': 'custom';
10534
+ }[];
10157
10535
  /** The version of the addon at the time of the backup. If the backup type is `snapshot`, the addon will be restored to this version when the backup is restored. Example: "4.4.8" */
10158
10536
  'addonVersion'?: string;
10159
10537
  };
10538
+ /** Custom backup destination in which the dump back up should be stored. Example: "example-backup-destination" */
10539
+ 'customDestinationId'?: string;
10160
10540
  }[];
10161
10541
  };
10162
10542
  type GetAddonBackupsCall = ((opts: GetAddonBackupsRequest) => Promise<ApiCallResponse<GetAddonBackupsResult>>) & {
@@ -10238,11 +10618,15 @@ type BackupAddonData = {
10238
10618
  'backupType'?: 'dump' | 'snapshot';
10239
10619
  /** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
10240
10620
  'compressionType'?: 'gz' | 'zstd';
10621
+ /** Custom destination to store the backup in. Only applicable for dump backups. If not specified, backup is stored in Northflank-managed destination. */
10622
+ 'customDestinationId'?: string;
10241
10623
  /** List of destinations for which a backup should additionally be created. Only applicable for snapshot backups. */
10242
10624
  'additionalDestinations'?: {
10625
+ /** Additional custom back up destination that should be used to store the snapshot. Example: "example-backup-destination" */
10243
10626
  'destinationId': string;
10244
- /** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
10627
+ /** Retention time of the additional back up in days. */
10245
10628
  'retentionTime'?: number;
10629
+ /** The type of backup destination to use Example: "custom" */
10246
10630
  'type': 'custom';
10247
10631
  }[];
10248
10632
  };
@@ -10598,11 +10982,15 @@ type ImportAddonBackupData = {
10598
10982
  'connectionString': string;
10599
10983
  /** The compression algorithm for storing the imported file. Defaults to `gz`. Example: "gz" */
10600
10984
  'compressionType'?: 'gz' | 'zstd';
10985
+ /** Custom destination to store the imported backup in. If not specified, backup is stored in Northflank-managed destination. */
10986
+ 'customDestinationId': string;
10601
10987
  } | {
10602
10988
  /** The name of the backup. If not provided, a default name will be generated containing the current date. Example: "Example Backup" */
10603
10989
  'name'?: string;
10604
10990
  /** A url pointing to an existing backup stored as a GNU zip (.gz) file. Example: "https://example.com/backup.db.gz" */
10605
10991
  'importUrl': string;
10992
+ /** Custom destination to store the imported backup in. If not specified, backup is stored in Northflank-managed destination. */
10993
+ 'customDestinationId': string;
10606
10994
  };
10607
10995
  /** Imports a database from an external archive or existing live database. */
10608
10996
  declare class ImportAddonBackupEndpoint extends PostApiEndpoint<ImportAddonBackupRequest, ImportAddonBackupResult> {
@@ -10950,6 +11338,9 @@ type CreateJobCronResult = {
10950
11338
  'name': string;
10951
11339
  /** A description of the job. Example: "A job description" */
10952
11340
  'description'?: string;
11341
+ 'infrastructure'?: {
11342
+ 'architecture'?: 'x86' | 'arm';
11343
+ };
10953
11344
  /** An array of previously defined tags to help identify and group the resource. */
10954
11345
  'tags'?: string[];
10955
11346
  'billing': {
@@ -11150,7 +11541,7 @@ type CreateJobCronResult = {
11150
11541
  };
11151
11542
  'buildpack': {
11152
11543
  /** 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';
11544
+ '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
11545
  /** Array of custom Buildpacks to use. */
11155
11546
  'buildpackLocators'?: string[];
11156
11547
  /** The working directory to build in. Example: "/" */
@@ -11198,6 +11589,9 @@ type CreateJobCronData = {
11198
11589
  'name': string;
11199
11590
  /** A description of the job. Example: "A job description" */
11200
11591
  'description'?: string;
11592
+ 'infrastructure'?: {
11593
+ 'architecture'?: 'x86' | 'arm';
11594
+ };
11201
11595
  /** An array of previously defined tags to help identify and group the resource. */
11202
11596
  'tags'?: string[];
11203
11597
  'billing': {
@@ -11446,7 +11840,7 @@ type CreateJobCronData = {
11446
11840
  };
11447
11841
  'buildpack': {
11448
11842
  /** 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';
11843
+ '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
11844
  /** Array of custom Buildpacks to use. */
11451
11845
  'buildpackLocators'?: string[];
11452
11846
  /** The working directory to build in. Example: "/" */
@@ -11507,6 +11901,9 @@ type PutJobCronResult = {
11507
11901
  'name': string;
11508
11902
  /** A description of the job. Example: "A job description" */
11509
11903
  'description'?: string;
11904
+ 'infrastructure'?: {
11905
+ 'architecture'?: 'x86' | 'arm';
11906
+ };
11510
11907
  /** An array of previously defined tags to help identify and group the resource. */
11511
11908
  'tags'?: string[];
11512
11909
  'billing': {
@@ -11707,7 +12104,7 @@ type PutJobCronResult = {
11707
12104
  };
11708
12105
  'buildpack': {
11709
12106
  /** 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';
12107
+ '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
12108
  /** Array of custom Buildpacks to use. */
11712
12109
  'buildpackLocators'?: string[];
11713
12110
  /** The working directory to build in. Example: "/" */
@@ -11755,6 +12152,9 @@ type PutJobCronData = {
11755
12152
  'name': string;
11756
12153
  /** A description of the job. Example: "A job description" */
11757
12154
  'description'?: string;
12155
+ 'infrastructure'?: {
12156
+ 'architecture'?: 'x86' | 'arm';
12157
+ };
11758
12158
  /** An array of previously defined tags to help identify and group the resource. */
11759
12159
  'tags'?: string[];
11760
12160
  'billing': {
@@ -12003,7 +12403,7 @@ type PutJobCronData = {
12003
12403
  };
12004
12404
  'buildpack': {
12005
12405
  /** 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';
12406
+ '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
12407
  /** Array of custom Buildpacks to use. */
12008
12408
  'buildpackLocators'?: string[];
12009
12409
  /** The working directory to build in. Example: "/" */
@@ -12064,6 +12464,9 @@ type PatchJobCronResult = {
12064
12464
  'name': string;
12065
12465
  /** A description of the job. Example: "A job description" */
12066
12466
  'description'?: string;
12467
+ 'infrastructure'?: {
12468
+ 'architecture'?: 'x86' | 'arm';
12469
+ };
12067
12470
  /** An array of previously defined tags to help identify and group the resource. */
12068
12471
  'tags'?: string[];
12069
12472
  'billing': {
@@ -12264,7 +12667,7 @@ type PatchJobCronResult = {
12264
12667
  };
12265
12668
  'buildpack': {
12266
12669
  /** 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';
12670
+ '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
12671
  /** Array of custom Buildpacks to use. */
12269
12672
  'buildpackLocators'?: string[];
12270
12673
  /** The working directory to build in. Example: "/" */
@@ -12411,6 +12814,9 @@ type CreateJobManualResult = {
12411
12814
  'name': string;
12412
12815
  /** A description of the job. Example: "A job description" */
12413
12816
  'description'?: string;
12817
+ 'infrastructure'?: {
12818
+ 'architecture'?: 'x86' | 'arm';
12819
+ };
12414
12820
  /** An array of previously defined tags to help identify and group the resource. */
12415
12821
  'tags'?: string[];
12416
12822
  'billing': {
@@ -12605,7 +13011,7 @@ type CreateJobManualResult = {
12605
13011
  };
12606
13012
  'buildpack': {
12607
13013
  /** 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';
13014
+ '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
13015
  /** Array of custom Buildpacks to use. */
12610
13016
  'buildpackLocators'?: string[];
12611
13017
  /** The working directory to build in. Example: "/" */
@@ -12653,6 +13059,9 @@ type CreateJobManualData = {
12653
13059
  'name': string;
12654
13060
  /** A description of the job. Example: "A job description" */
12655
13061
  'description'?: string;
13062
+ 'infrastructure'?: {
13063
+ 'architecture'?: 'x86' | 'arm';
13064
+ };
12656
13065
  /** An array of previously defined tags to help identify and group the resource. */
12657
13066
  'tags'?: string[];
12658
13067
  'billing': {
@@ -12901,7 +13310,7 @@ type CreateJobManualData = {
12901
13310
  };
12902
13311
  'buildpack': {
12903
13312
  /** 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';
13313
+ '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
13314
  /** Array of custom Buildpacks to use. */
12906
13315
  'buildpackLocators'?: string[];
12907
13316
  /** The working directory to build in. Example: "/" */
@@ -12956,6 +13365,9 @@ type PutJobManualResult = {
12956
13365
  'name': string;
12957
13366
  /** A description of the job. Example: "A job description" */
12958
13367
  'description'?: string;
13368
+ 'infrastructure'?: {
13369
+ 'architecture'?: 'x86' | 'arm';
13370
+ };
12959
13371
  /** An array of previously defined tags to help identify and group the resource. */
12960
13372
  'tags'?: string[];
12961
13373
  'billing': {
@@ -13150,7 +13562,7 @@ type PutJobManualResult = {
13150
13562
  };
13151
13563
  'buildpack': {
13152
13564
  /** 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';
13565
+ '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
13566
  /** Array of custom Buildpacks to use. */
13155
13567
  'buildpackLocators'?: string[];
13156
13568
  /** The working directory to build in. Example: "/" */
@@ -13198,6 +13610,9 @@ type PutJobManualData = {
13198
13610
  'name': string;
13199
13611
  /** A description of the job. Example: "A job description" */
13200
13612
  'description'?: string;
13613
+ 'infrastructure'?: {
13614
+ 'architecture'?: 'x86' | 'arm';
13615
+ };
13201
13616
  /** An array of previously defined tags to help identify and group the resource. */
13202
13617
  'tags'?: string[];
13203
13618
  'billing': {
@@ -13446,7 +13861,7 @@ type PutJobManualData = {
13446
13861
  };
13447
13862
  'buildpack': {
13448
13863
  /** 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';
13864
+ '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
13865
  /** Array of custom Buildpacks to use. */
13451
13866
  'buildpackLocators'?: string[];
13452
13867
  /** The working directory to build in. Example: "/" */
@@ -13501,6 +13916,9 @@ type PatchJobManualResult = {
13501
13916
  'name': string;
13502
13917
  /** A description of the job. Example: "A job description" */
13503
13918
  'description'?: string;
13919
+ 'infrastructure'?: {
13920
+ 'architecture'?: 'x86' | 'arm';
13921
+ };
13504
13922
  /** An array of previously defined tags to help identify and group the resource. */
13505
13923
  'tags'?: string[];
13506
13924
  'billing': {
@@ -13695,7 +14113,7 @@ type PatchJobManualResult = {
13695
14113
  };
13696
14114
  'buildpack': {
13697
14115
  /** 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';
14116
+ '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
14117
  /** Array of custom Buildpacks to use. */
13700
14118
  'buildpackLocators'?: string[];
13701
14119
  /** The working directory to build in. Example: "/" */
@@ -13893,7 +14311,7 @@ type GetJobResult = {
13893
14311
  /** Details about Buildpack settings. */
13894
14312
  'buildpack'?: {
13895
14313
  /** 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';
14314
+ '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
14315
  /** Array of custom Buildpacks used. */
13898
14316
  'buildpackLocators'?: string[];
13899
14317
  /** Should build dependencies be cached? */
@@ -14372,7 +14790,7 @@ type UpdateJobBuildoptionsData = {
14372
14790
  } | {
14373
14791
  'buildpack': {
14374
14792
  /** 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';
14793
+ '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
14794
  /** Array of custom buildpacks to use. */
14377
14795
  'buildpackLocators'?: string[];
14378
14796
  /** The working directory to build in. Example: "/" */
@@ -17202,6 +17620,9 @@ type CreateServiceBuildResult = {
17202
17620
  };
17203
17621
  };
17204
17622
  };
17623
+ 'infrastructure'?: {
17624
+ 'architecture'?: 'x86' | 'arm';
17625
+ };
17205
17626
  /** Whether CI (continuous integration) should be disabled. */
17206
17627
  'disabledCI'?: boolean;
17207
17628
  /** Defines the build source for this resource Example: "git" */
@@ -17249,7 +17670,7 @@ type CreateServiceBuildResult = {
17249
17670
  };
17250
17671
  'buildpack': {
17251
17672
  /** 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';
17673
+ '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
17674
  /** Array of custom Buildpacks to use. */
17254
17675
  'buildpackLocators'?: string[];
17255
17676
  /** The working directory to build in. Example: "/" */
@@ -17350,6 +17771,9 @@ type CreateServiceBuildData = {
17350
17771
  };
17351
17772
  };
17352
17773
  };
17774
+ 'infrastructure'?: {
17775
+ 'architecture'?: 'x86' | 'arm';
17776
+ };
17353
17777
  /** Whether CI (continuous integration) should be disabled. */
17354
17778
  'disabledCI'?: boolean;
17355
17779
  /** Defines the build source for this resource Example: "git" */
@@ -17397,7 +17821,7 @@ type CreateServiceBuildData = {
17397
17821
  };
17398
17822
  'buildpack': {
17399
17823
  /** 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';
17824
+ '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
17825
  /** Array of custom Buildpacks to use. */
17402
17826
  'buildpackLocators'?: string[];
17403
17827
  /** The working directory to build in. Example: "/" */
@@ -17468,6 +17892,9 @@ type PutServiceBuildResult = {
17468
17892
  };
17469
17893
  };
17470
17894
  };
17895
+ 'infrastructure'?: {
17896
+ 'architecture'?: 'x86' | 'arm';
17897
+ };
17471
17898
  /** Whether CI (continuous integration) should be disabled. */
17472
17899
  'disabledCI'?: boolean;
17473
17900
  /** Defines the build source for this resource Example: "git" */
@@ -17515,7 +17942,7 @@ type PutServiceBuildResult = {
17515
17942
  };
17516
17943
  'buildpack': {
17517
17944
  /** 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';
17945
+ '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
17946
  /** Array of custom Buildpacks to use. */
17520
17947
  'buildpackLocators'?: string[];
17521
17948
  /** The working directory to build in. Example: "/" */
@@ -17616,6 +18043,9 @@ type PutServiceBuildData = {
17616
18043
  };
17617
18044
  };
17618
18045
  };
18046
+ 'infrastructure'?: {
18047
+ 'architecture'?: 'x86' | 'arm';
18048
+ };
17619
18049
  /** Whether CI (continuous integration) should be disabled. */
17620
18050
  'disabledCI'?: boolean;
17621
18051
  /** Defines the build source for this resource Example: "git" */
@@ -17663,7 +18093,7 @@ type PutServiceBuildData = {
17663
18093
  };
17664
18094
  'buildpack': {
17665
18095
  /** 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';
18096
+ '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
18097
  /** Array of custom Buildpacks to use. */
17668
18098
  'buildpackLocators'?: string[];
17669
18099
  /** The working directory to build in. Example: "/" */
@@ -17734,6 +18164,9 @@ type PatchServiceBuildResult = {
17734
18164
  };
17735
18165
  };
17736
18166
  };
18167
+ 'infrastructure'?: {
18168
+ 'architecture'?: 'x86' | 'arm';
18169
+ };
17737
18170
  /** Whether CI (continuous integration) should be disabled. */
17738
18171
  'disabledCI'?: boolean;
17739
18172
  /** Defines the build source for this resource Example: "git" */
@@ -17781,7 +18214,7 @@ type PatchServiceBuildResult = {
17781
18214
  };
17782
18215
  'buildpack': {
17783
18216
  /** 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';
18217
+ '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
18218
  /** Array of custom Buildpacks to use. */
17786
18219
  'buildpackLocators'?: string[];
17787
18220
  /** The working directory to build in. Example: "/" */
@@ -17921,7 +18354,7 @@ type PatchServiceBuildData = {
17921
18354
  };
17922
18355
  'buildpack'?: {
17923
18356
  /** 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';
18357
+ '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
18358
  /** Array of custom Buildpacks to use. */
17926
18359
  'buildpackLocators'?: string[];
17927
18360
  /** The working directory to build in. Example: "/" */
@@ -17992,6 +18425,9 @@ type CreateServiceCombinedResult = {
17992
18425
  };
17993
18426
  };
17994
18427
  };
18428
+ 'infrastructure'?: {
18429
+ 'architecture'?: 'x86' | 'arm';
18430
+ };
17995
18431
  'ports'?: {
17996
18432
  /** The name used to identify the port. Example: "p01" */
17997
18433
  'name': string;
@@ -18139,6 +18575,10 @@ type CreateServiceCombinedResult = {
18139
18575
  'domains'?: string[];
18140
18576
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
18141
18577
  'disableNfDomain'?: boolean;
18578
+ 'advancedOptions'?: {
18579
+ /** Whether this port should use pass through mode for TLS */
18580
+ 'enableTlsPassthrough'?: boolean;
18581
+ };
18142
18582
  /** The protocol to use for the port. Example: "HTTP" */
18143
18583
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
18144
18584
  }[];
@@ -18197,7 +18637,7 @@ type CreateServiceCombinedResult = {
18197
18637
  };
18198
18638
  'buildpack': {
18199
18639
  /** 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';
18640
+ '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
18641
  /** Array of custom Buildpacks to use. */
18202
18642
  'buildpackLocators'?: string[];
18203
18643
  /** The working directory to build in. Example: "/" */
@@ -18454,6 +18894,9 @@ type CreateServiceCombinedData = {
18454
18894
  };
18455
18895
  };
18456
18896
  };
18897
+ 'infrastructure'?: {
18898
+ 'architecture'?: 'x86' | 'arm';
18899
+ };
18457
18900
  'deployment': {
18458
18901
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
18459
18902
  'type'?: 'deployment' | 'statefulSet';
@@ -18663,6 +19106,10 @@ type CreateServiceCombinedData = {
18663
19106
  'domains'?: string[];
18664
19107
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
18665
19108
  'disableNfDomain'?: boolean;
19109
+ 'advancedOptions'?: {
19110
+ /** Whether this port should use pass through mode for TLS */
19111
+ 'enableTlsPassthrough'?: boolean;
19112
+ };
18666
19113
  /** The protocol to use for the port. Example: "HTTP" */
18667
19114
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
18668
19115
  }[];
@@ -18721,7 +19168,7 @@ type CreateServiceCombinedData = {
18721
19168
  };
18722
19169
  'buildpack': {
18723
19170
  /** 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';
19171
+ '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
19172
  /** Array of custom Buildpacks to use. */
18726
19173
  'buildpackLocators'?: string[];
18727
19174
  /** The working directory to build in. Example: "/" */
@@ -18872,6 +19319,9 @@ type PutServiceCombinedResult = {
18872
19319
  };
18873
19320
  };
18874
19321
  };
19322
+ 'infrastructure'?: {
19323
+ 'architecture'?: 'x86' | 'arm';
19324
+ };
18875
19325
  'ports'?: {
18876
19326
  /** The name used to identify the port. Example: "p01" */
18877
19327
  'name': string;
@@ -19019,6 +19469,10 @@ type PutServiceCombinedResult = {
19019
19469
  'domains'?: string[];
19020
19470
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19021
19471
  'disableNfDomain'?: boolean;
19472
+ 'advancedOptions'?: {
19473
+ /** Whether this port should use pass through mode for TLS */
19474
+ 'enableTlsPassthrough'?: boolean;
19475
+ };
19022
19476
  /** The protocol to use for the port. Example: "HTTP" */
19023
19477
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19024
19478
  }[];
@@ -19077,7 +19531,7 @@ type PutServiceCombinedResult = {
19077
19531
  };
19078
19532
  'buildpack': {
19079
19533
  /** 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';
19534
+ '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
19535
  /** Array of custom Buildpacks to use. */
19082
19536
  'buildpackLocators'?: string[];
19083
19537
  /** The working directory to build in. Example: "/" */
@@ -19334,6 +19788,9 @@ type PutServiceCombinedData = {
19334
19788
  };
19335
19789
  };
19336
19790
  };
19791
+ 'infrastructure'?: {
19792
+ 'architecture'?: 'x86' | 'arm';
19793
+ };
19337
19794
  'deployment': {
19338
19795
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
19339
19796
  'type'?: 'deployment' | 'statefulSet';
@@ -19543,6 +20000,10 @@ type PutServiceCombinedData = {
19543
20000
  'domains'?: string[];
19544
20001
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19545
20002
  'disableNfDomain'?: boolean;
20003
+ 'advancedOptions'?: {
20004
+ /** Whether this port should use pass through mode for TLS */
20005
+ 'enableTlsPassthrough'?: boolean;
20006
+ };
19546
20007
  /** The protocol to use for the port. Example: "HTTP" */
19547
20008
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19548
20009
  }[];
@@ -19601,7 +20062,7 @@ type PutServiceCombinedData = {
19601
20062
  };
19602
20063
  'buildpack': {
19603
20064
  /** 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';
20065
+ '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
20066
  /** Array of custom Buildpacks to use. */
19606
20067
  'buildpackLocators'?: string[];
19607
20068
  /** The working directory to build in. Example: "/" */
@@ -19752,6 +20213,9 @@ type PatchServiceCombinedResult = {
19752
20213
  };
19753
20214
  };
19754
20215
  };
20216
+ 'infrastructure'?: {
20217
+ 'architecture'?: 'x86' | 'arm';
20218
+ };
19755
20219
  'ports'?: {
19756
20220
  /** The name used to identify the port. Example: "p01" */
19757
20221
  'name': string;
@@ -19899,6 +20363,10 @@ type PatchServiceCombinedResult = {
19899
20363
  'domains'?: string[];
19900
20364
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
19901
20365
  'disableNfDomain'?: boolean;
20366
+ 'advancedOptions'?: {
20367
+ /** Whether this port should use pass through mode for TLS */
20368
+ 'enableTlsPassthrough'?: boolean;
20369
+ };
19902
20370
  /** The protocol to use for the port. Example: "HTTP" */
19903
20371
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
19904
20372
  }[];
@@ -19957,7 +20425,7 @@ type PatchServiceCombinedResult = {
19957
20425
  };
19958
20426
  'buildpack': {
19959
20427
  /** 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';
20428
+ '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
20429
  /** Array of custom Buildpacks to use. */
19962
20430
  'buildpackLocators'?: string[];
19963
20431
  /** The working directory to build in. Example: "/" */
@@ -20419,6 +20887,10 @@ type PatchServiceCombinedData = {
20419
20887
  'domains'?: string[];
20420
20888
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
20421
20889
  'disableNfDomain'?: boolean;
20890
+ 'advancedOptions'?: {
20891
+ /** Whether this port should use pass through mode for TLS */
20892
+ 'enableTlsPassthrough'?: boolean;
20893
+ };
20422
20894
  /** The protocol to use for the port. Example: "HTTP" */
20423
20895
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
20424
20896
  }[];
@@ -20469,7 +20941,7 @@ type PatchServiceCombinedData = {
20469
20941
  };
20470
20942
  'buildpack'?: {
20471
20943
  /** 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';
20944
+ '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
20945
  /** Array of custom Buildpacks to use. */
20474
20946
  'buildpackLocators'?: string[];
20475
20947
  /** The working directory to build in. Example: "/" */
@@ -20616,6 +21088,9 @@ type CreateServiceDeploymentResult = {
20616
21088
  };
20617
21089
  };
20618
21090
  };
21091
+ 'infrastructure'?: {
21092
+ 'architecture'?: 'x86' | 'arm';
21093
+ };
20619
21094
  'ports'?: {
20620
21095
  /** The name used to identify the port. Example: "p01" */
20621
21096
  'name': string;
@@ -20763,6 +21238,10 @@ type CreateServiceDeploymentResult = {
20763
21238
  'domains'?: string[];
20764
21239
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
20765
21240
  'disableNfDomain'?: boolean;
21241
+ 'advancedOptions'?: {
21242
+ /** Whether this port should use pass through mode for TLS */
21243
+ 'enableTlsPassthrough'?: boolean;
21244
+ };
20766
21245
  /** The protocol to use for the port. Example: "HTTP" */
20767
21246
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
20768
21247
  }[];
@@ -20994,6 +21473,9 @@ type CreateServiceDeploymentData = {
20994
21473
  };
20995
21474
  };
20996
21475
  };
21476
+ 'infrastructure'?: {
21477
+ 'architecture'?: 'x86' | 'arm';
21478
+ };
20997
21479
  /** Deployment type */
20998
21480
  'deployment': {
20999
21481
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
@@ -21342,6 +21824,10 @@ type CreateServiceDeploymentData = {
21342
21824
  'domains'?: string[];
21343
21825
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
21344
21826
  'disableNfDomain'?: boolean;
21827
+ 'advancedOptions'?: {
21828
+ /** Whether this port should use pass through mode for TLS */
21829
+ 'enableTlsPassthrough'?: boolean;
21830
+ };
21345
21831
  /** The protocol to use for the port. Example: "HTTP" */
21346
21832
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
21347
21833
  }[];
@@ -21458,6 +21944,9 @@ type PutServiceDeploymentResult = {
21458
21944
  };
21459
21945
  };
21460
21946
  };
21947
+ 'infrastructure'?: {
21948
+ 'architecture'?: 'x86' | 'arm';
21949
+ };
21461
21950
  'ports'?: {
21462
21951
  /** The name used to identify the port. Example: "p01" */
21463
21952
  'name': string;
@@ -21605,6 +22094,10 @@ type PutServiceDeploymentResult = {
21605
22094
  'domains'?: string[];
21606
22095
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
21607
22096
  'disableNfDomain'?: boolean;
22097
+ 'advancedOptions'?: {
22098
+ /** Whether this port should use pass through mode for TLS */
22099
+ 'enableTlsPassthrough'?: boolean;
22100
+ };
21608
22101
  /** The protocol to use for the port. Example: "HTTP" */
21609
22102
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
21610
22103
  }[];
@@ -21836,6 +22329,9 @@ type PutServiceDeploymentData = {
21836
22329
  };
21837
22330
  };
21838
22331
  };
22332
+ 'infrastructure'?: {
22333
+ 'architecture'?: 'x86' | 'arm';
22334
+ };
21839
22335
  /** Deployment type */
21840
22336
  'deployment': {
21841
22337
  /** The way the service should be deployed. Either as a deployment (default), or as a stateful set. */
@@ -22184,6 +22680,10 @@ type PutServiceDeploymentData = {
22184
22680
  'domains'?: string[];
22185
22681
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22186
22682
  'disableNfDomain'?: boolean;
22683
+ 'advancedOptions'?: {
22684
+ /** Whether this port should use pass through mode for TLS */
22685
+ 'enableTlsPassthrough'?: boolean;
22686
+ };
22187
22687
  /** The protocol to use for the port. Example: "HTTP" */
22188
22688
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
22189
22689
  }[];
@@ -22300,6 +22800,9 @@ type PatchServiceDeploymentResult = {
22300
22800
  };
22301
22801
  };
22302
22802
  };
22803
+ 'infrastructure'?: {
22804
+ 'architecture'?: 'x86' | 'arm';
22805
+ };
22303
22806
  'ports'?: {
22304
22807
  /** The name used to identify the port. Example: "p01" */
22305
22808
  'name': string;
@@ -22447,6 +22950,10 @@ type PatchServiceDeploymentResult = {
22447
22950
  'domains'?: string[];
22448
22951
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
22449
22952
  'disableNfDomain'?: boolean;
22953
+ 'advancedOptions'?: {
22954
+ /** Whether this port should use pass through mode for TLS */
22955
+ 'enableTlsPassthrough'?: boolean;
22956
+ };
22450
22957
  /** The protocol to use for the port. Example: "HTTP" */
22451
22958
  'protocol': 'HTTP' | 'HTTP/2' | 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
22452
22959
  }[];
@@ -23026,6 +23533,10 @@ type PatchServiceDeploymentData = {
23026
23533
  'domains'?: string[];
23027
23534
  /** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
23028
23535
  'disableNfDomain'?: boolean;
23536
+ 'advancedOptions'?: {
23537
+ /** Whether this port should use pass through mode for TLS */
23538
+ 'enableTlsPassthrough'?: boolean;
23539
+ };
23029
23540
  /** The protocol to use for the port. Example: "HTTP" */
23030
23541
  'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
23031
23542
  }[];
@@ -23327,7 +23838,7 @@ type GetServiceResult = {
23327
23838
  /** Details about Buildpack settings. */
23328
23839
  'buildpack'?: {
23329
23840
  /** 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';
23841
+ '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
23842
  /** Array of custom Buildpacks used. */
23332
23843
  'buildpackLocators'?: string[];
23333
23844
  /** Should build dependencies be cached? */
@@ -23881,7 +24392,7 @@ type UpdateServiceBuildoptionsData = {
23881
24392
  } | {
23882
24393
  'buildpack': {
23883
24394
  /** 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';
24395
+ '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
24396
  /** Array of custom buildpacks to use. */
23886
24397
  'buildpackLocators'?: string[];
23887
24398
  /** The working directory to build in. Example: "/" */
@@ -26259,6 +26770,23 @@ declare class ApiClient {
26259
26770
  exec: NorthflankExecCommand;
26260
26771
  logs: NorthflankLogFetch;
26261
26772
  metrics: NorthflankMetricFetch;
26773
+ fileCopy: NorthflankFileCopy;
26774
+ download: {
26775
+ service: {
26776
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
26777
+ };
26778
+ job: {
26779
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
26780
+ };
26781
+ };
26782
+ upload: {
26783
+ service: {
26784
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
26785
+ };
26786
+ job: {
26787
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
26788
+ };
26789
+ };
26262
26790
  get: {
26263
26791
  addon: GetAddonCall & {
26264
26792
  types: GetAddonTypesCall;
@@ -26673,6 +27201,22 @@ declare class ApiClient {
26673
27201
  volume: DetachVolumeCall;
26674
27202
  };
26675
27203
  endpoints: {
27204
+ download: {
27205
+ service: {
27206
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
27207
+ };
27208
+ job: {
27209
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
27210
+ };
27211
+ };
27212
+ upload: {
27213
+ service: {
27214
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
27215
+ };
27216
+ job: {
27217
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
27218
+ };
27219
+ };
26676
27220
  get: {
26677
27221
  addon: GetAddonEndpoint & {
26678
27222
  types: GetAddonTypesEndpoint;
@@ -27071,4 +27615,4 @@ type ApiClientOpts = {
27071
27615
  agent?: any;
27072
27616
  };
27073
27617
 
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 };
27618
+ 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 };