@northflank/js-client 0.8.5 → 0.8.7

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,7 @@
1
1
  /// <reference types="node" />
2
2
  import { EventEmitter } from 'events';
3
- import * as stream from 'stream';
3
+ import * as stream from 'node:stream';
4
+ import { Stream } from 'node:stream';
4
5
 
5
6
  type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
6
7
  declare abstract class ApiClientContextProvider {
@@ -115,6 +116,11 @@ interface ApiCallError {
115
116
  details?: any;
116
117
  }
117
118
 
119
+ type ApiClientOpts = {
120
+ throwErrorOnHttpErrorCode?: boolean;
121
+ customUserAgent?: string;
122
+ agent?: any;
123
+ };
118
124
  interface ApiCallResponse<R> {
119
125
  data: R;
120
126
  rawResponse: Response;
@@ -548,6 +554,7 @@ declare enum CopyType {
548
554
  DIRECTORY_DOWNLOAD = "directory-download",
549
555
  FILE_DOWNLOAD = "file-download"
550
556
  }
557
+
551
558
  type DownloadOptions = {
552
559
  localPath: string;
553
560
  remotePath?: string;
@@ -574,6 +581,16 @@ declare class NorthflankFileCopy {
574
581
  targetDirectory: string;
575
582
  targetFile?: string | undefined;
576
583
  }>;
584
+ downloadServiceFileStream(parameters: {
585
+ projectId: string;
586
+ serviceId: string;
587
+ }, options: {
588
+ remotePath: string;
589
+ containerName?: string;
590
+ }): Promise<{
591
+ fileStream: Stream.PassThrough;
592
+ completionPromise: Promise<boolean>;
593
+ }>;
577
594
  uploadServiceFiles(parameters: {
578
595
  projectId: string;
579
596
  serviceId: string;
@@ -584,6 +601,14 @@ declare class NorthflankFileCopy {
584
601
  targetDirectory: string;
585
602
  targetFile?: string | undefined;
586
603
  }>;
604
+ uploadServiceFileStream(parameters: {
605
+ projectId: string;
606
+ serviceId: string;
607
+ }, options: {
608
+ source: string | Buffer | Stream;
609
+ remotePath: string;
610
+ containerName?: string;
611
+ }): Promise<void>;
587
612
  downloadJobFiles(parameters: {
588
613
  projectId: string;
589
614
  jobId: string;
@@ -594,6 +619,16 @@ declare class NorthflankFileCopy {
594
619
  targetDirectory: string;
595
620
  targetFile?: string | undefined;
596
621
  }>;
622
+ downloadJobFileStream(parameters: {
623
+ projectId: string;
624
+ jobId: string;
625
+ }, options: {
626
+ remotePath: string;
627
+ containerName?: string;
628
+ }): Promise<{
629
+ fileStream: Stream.PassThrough;
630
+ completionPromise: Promise<boolean>;
631
+ }>;
597
632
  uploadJobFiles(parameters: {
598
633
  projectId: string;
599
634
  jobId: string;
@@ -604,9 +639,23 @@ declare class NorthflankFileCopy {
604
639
  targetDirectory: string;
605
640
  targetFile?: string | undefined;
606
641
  }>;
642
+ uploadJobFileStream(parameters: {
643
+ projectId: string;
644
+ jobId: string;
645
+ }, options: {
646
+ source: string | Buffer | Stream;
647
+ remotePath: string;
648
+ containerName?: string;
649
+ }): Promise<void>;
607
650
  private copy;
608
651
  }
609
652
 
653
+ declare enum LogType {
654
+ CDN = "cdn",
655
+ Mesh = "mesh",
656
+ Ingress = "ingress",
657
+ Runtime = "runtime"
658
+ }
610
659
  type LogsRequestCommon = LogRequestTextFilters & {
611
660
  lineLimit?: number;
612
661
  startTime?: Date;
@@ -779,12 +828,6 @@ declare class LogsClient extends EventEmitter {
779
828
  }
780
829
 
781
830
  type ApiCallLogRangeResponse = ApiCallResponse<LogLine[]>;
782
- declare enum LogType {
783
- CDN = "cdn",
784
- Mesh = "mesh",
785
- Ingress = "ingress",
786
- Runtime = "runtime"
787
- }
788
831
  type GetServiceLogsCall = (opts: {
789
832
  parameters: {
790
833
  projectId: string;
@@ -1796,7 +1839,7 @@ type ListCloudClustersResult = {
1796
1839
  /** The description of the cluster. Example: "This is a new cluster." */
1797
1840
  'description'?: string;
1798
1841
  /** Cloud provider to be used for the selected resource Example: "gcp" */
1799
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
1842
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
1800
1843
  /** Region of the cluster. Example: "europe-west2" */
1801
1844
  'region': string;
1802
1845
  'status'?: {
@@ -2034,10 +2077,10 @@ type ListCloudClustersResult = {
2034
2077
  };
2035
2078
  'infrastructure'?: {
2036
2079
  'workloads'?: {
2037
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2080
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2038
2081
  };
2039
2082
  'builds'?: {
2040
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2083
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2041
2084
  };
2042
2085
  'installKata'?: boolean;
2043
2086
  'installGvisor'?: boolean;
@@ -2182,7 +2225,7 @@ type CreateCloudClusterResult = {
2182
2225
  /** The description of the cluster. Example: "This is a new cluster." */
2183
2226
  'description'?: string;
2184
2227
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2185
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2228
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
2186
2229
  /** Region of the cluster. Example: "europe-west2" */
2187
2230
  'region': string;
2188
2231
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2402,10 +2445,10 @@ type CreateCloudClusterResult = {
2402
2445
  };
2403
2446
  'infrastructure'?: {
2404
2447
  'workloads'?: {
2405
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2448
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2406
2449
  };
2407
2450
  'builds'?: {
2408
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2451
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2409
2452
  };
2410
2453
  'installKata'?: boolean;
2411
2454
  'installGvisor'?: boolean;
@@ -2546,7 +2589,7 @@ type CreateCloudClusterData = {
2546
2589
  /** The description of the cluster. Example: "This is a new cluster." */
2547
2590
  'description'?: string;
2548
2591
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2549
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2592
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
2550
2593
  /** Region of the cluster. Example: "europe-west2" */
2551
2594
  'region': string;
2552
2595
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -2766,10 +2809,10 @@ type CreateCloudClusterData = {
2766
2809
  };
2767
2810
  'infrastructure'?: {
2768
2811
  'workloads'?: {
2769
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2812
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2770
2813
  };
2771
2814
  'builds'?: {
2772
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
2815
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
2773
2816
  };
2774
2817
  'installKata'?: boolean;
2775
2818
  'installGvisor'?: boolean;
@@ -2898,7 +2941,7 @@ type PutCloudClusterResult = {
2898
2941
  /** The description of the cluster. Example: "This is a new cluster." */
2899
2942
  'description'?: string;
2900
2943
  /** Cloud provider to be used for the selected resource Example: "gcp" */
2901
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
2944
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
2902
2945
  /** Region of the cluster. Example: "europe-west2" */
2903
2946
  'region': string;
2904
2947
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3118,10 +3161,10 @@ type PutCloudClusterResult = {
3118
3161
  };
3119
3162
  'infrastructure'?: {
3120
3163
  'workloads'?: {
3121
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3164
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3122
3165
  };
3123
3166
  'builds'?: {
3124
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3167
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3125
3168
  };
3126
3169
  'installKata'?: boolean;
3127
3170
  'installGvisor'?: boolean;
@@ -3262,7 +3305,7 @@ type PutCloudClusterData = {
3262
3305
  /** The description of the cluster. Example: "This is a new cluster." */
3263
3306
  'description'?: string;
3264
3307
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3265
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3308
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
3266
3309
  /** Region of the cluster. Example: "europe-west2" */
3267
3310
  'region': string;
3268
3311
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3482,10 +3525,10 @@ type PutCloudClusterData = {
3482
3525
  };
3483
3526
  'infrastructure'?: {
3484
3527
  'workloads'?: {
3485
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3528
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3486
3529
  };
3487
3530
  'builds'?: {
3488
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3531
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3489
3532
  };
3490
3533
  'installKata'?: boolean;
3491
3534
  'installGvisor'?: boolean;
@@ -3614,7 +3657,7 @@ type GetCloudClusterResult = {
3614
3657
  /** The description of the cluster. Example: "This is a new cluster." */
3615
3658
  'description'?: string;
3616
3659
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3617
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
3660
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
3618
3661
  /** Region of the cluster. Example: "europe-west2" */
3619
3662
  'region': string;
3620
3663
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -3834,10 +3877,10 @@ type GetCloudClusterResult = {
3834
3877
  };
3835
3878
  'infrastructure'?: {
3836
3879
  'workloads'?: {
3837
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3880
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3838
3881
  };
3839
3882
  'builds'?: {
3840
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
3883
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
3841
3884
  };
3842
3885
  'installKata'?: boolean;
3843
3886
  'installGvisor'?: boolean;
@@ -3990,7 +4033,7 @@ type PatchCloudClusterResult = {
3990
4033
  /** The description of the cluster. Example: "This is a new cluster." */
3991
4034
  'description'?: string;
3992
4035
  /** Cloud provider to be used for the selected resource Example: "gcp" */
3993
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4036
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
3994
4037
  /** Region of the cluster. Example: "europe-west2" */
3995
4038
  'region': string;
3996
4039
  /** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
@@ -4210,10 +4253,10 @@ type PatchCloudClusterResult = {
4210
4253
  };
4211
4254
  'infrastructure'?: {
4212
4255
  'workloads'?: {
4213
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
4256
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
4214
4257
  };
4215
4258
  'builds'?: {
4216
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
4259
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
4217
4260
  };
4218
4261
  'installKata'?: boolean;
4219
4262
  'installGvisor'?: boolean;
@@ -4554,10 +4597,10 @@ type PatchCloudClusterData = {
4554
4597
  };
4555
4598
  'infrastructure'?: {
4556
4599
  'workloads'?: {
4557
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
4600
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
4558
4601
  };
4559
4602
  'builds'?: {
4560
- 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu' | 'katars-clh';
4603
+ 'runtimeClass'?: 'none' | 'gvisor' | 'kata-clh' | 'kata-qemu';
4561
4604
  };
4562
4605
  'installKata'?: boolean;
4563
4606
  'installGvisor'?: boolean;
@@ -4803,7 +4846,7 @@ type ListCloudIntegrationsResult = {
4803
4846
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4804
4847
  'description'?: string;
4805
4848
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4806
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4849
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
4807
4850
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
4808
4851
  /** BYOC restrictions configuration for controlling team access */
4809
4852
  'restrictions'?: {
@@ -4869,7 +4912,7 @@ type CreateCloudIntegrationResult = {
4869
4912
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4870
4913
  'description'?: string;
4871
4914
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4872
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
4915
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
4873
4916
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
4874
4917
  /** BYOC restrictions configuration for controlling team access */
4875
4918
  'restrictions'?: {
@@ -4956,7 +4999,7 @@ type CreateCloudIntegrationData = {
4956
4999
  /** The description of the integration. Example: "This is a new cloud provider integration." */
4957
5000
  'description'?: string;
4958
5001
  /** Cloud provider to be used for the selected resource Example: "gcp" */
4959
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5002
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
4960
5003
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
4961
5004
  /** BYOC restrictions configuration for controlling team access */
4962
5005
  'restrictions'?: {
@@ -5046,7 +5089,7 @@ type PutCloudIntegrationResult = {
5046
5089
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5047
5090
  'description'?: string;
5048
5091
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5049
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5092
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
5050
5093
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
5051
5094
  /** BYOC restrictions configuration for controlling team access */
5052
5095
  'restrictions'?: {
@@ -5137,7 +5180,7 @@ type PutCloudIntegrationData = {
5137
5180
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5138
5181
  'description'?: string;
5139
5182
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5140
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5183
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
5141
5184
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
5142
5185
  /** BYOC restrictions configuration for controlling team access */
5143
5186
  'restrictions'?: {
@@ -5227,7 +5270,7 @@ type GetCloudIntegrationResult = {
5227
5270
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5228
5271
  'description'?: string;
5229
5272
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5230
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5273
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
5231
5274
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
5232
5275
  /** BYOC restrictions configuration for controlling team access */
5233
5276
  'restrictions'?: {
@@ -5328,7 +5371,7 @@ type PatchCloudIntegrationResult = {
5328
5371
  /** The description of the integration. Example: "This is a new cloud provider integration." */
5329
5372
  'description'?: string;
5330
5373
  /** Cloud provider to be used for the selected resource Example: "gcp" */
5331
- 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'byok';
5374
+ 'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'aiven' | 'byok';
5332
5375
  'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
5333
5376
  /** BYOC restrictions configuration for controlling team access */
5334
5377
  'restrictions'?: {
@@ -6690,7 +6733,7 @@ type ListLogsinksResult = {
6690
6733
  'forwardMeshLogs'?: boolean;
6691
6734
  };
6692
6735
  /** The type of the log sink. */
6693
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
6736
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
6694
6737
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
6695
6738
  'createdAt': string;
6696
6739
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -6986,7 +7029,7 @@ type CreateLogsinkData = {
6986
7029
  'token'?: string;
6987
7030
  };
6988
7031
  'framing'?: {
6989
- 'method'?: 'none' | 'newline' | 'character' | 'length';
7032
+ 'method'?: 'none' | 'newline' | 'length';
6990
7033
  };
6991
7034
  };
6992
7035
  } | {
@@ -7147,6 +7190,50 @@ type CreateLogsinkData = {
7147
7190
  /** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
7148
7191
  'token': string;
7149
7192
  };
7193
+ } | {
7194
+ /** Name of the log sink. Example: "example-log-sink" */
7195
+ 'name': string;
7196
+ /** Description of the log sink. Example: "This is an example log sink." */
7197
+ 'description'?: string;
7198
+ /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
7199
+ 'restricted'?: boolean;
7200
+ /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
7201
+ 'projects'?: string[];
7202
+ /** Configuration of restrictions. */
7203
+ 'restrictions'?: {
7204
+ /** Configuration of tag restriction settings. */
7205
+ 'tags'?: {
7206
+ /** Whether restriction by tag should be enabled. */
7207
+ 'enabled'?: boolean;
7208
+ /** An array of previously defined tags to help identify and group the resource. */
7209
+ 'items'?: string[];
7210
+ /** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
7211
+ 'matchCondition'?: 'and' | 'or';
7212
+ };
7213
+ };
7214
+ 'options'?: {
7215
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
7216
+ 'useCustomLabels'?: boolean;
7217
+ /** Forward CDN logs from your workloads Example: true */
7218
+ 'forwardCdnLogs'?: boolean;
7219
+ /** Forward ingress logs from your workloads Example: true */
7220
+ 'forwardIngressLogs'?: boolean;
7221
+ /** Forward mesh logs from your workloads Example: true */
7222
+ 'forwardMeshLogs'?: boolean;
7223
+ };
7224
+ /** The type of the log sink. Example: "solarWinds" */
7225
+ 'sinkType': 'solarWinds';
7226
+ /** Details about the undefined log sink. */
7227
+ 'sinkData': {
7228
+ /** Solar Winds API Key Example: "Tr8BIEmYx1fuM3_XRMwU3xXEFnD20p9NFkRIu1COrDqMCM4g86qWZgVdgs1Y7mzWtFMI0Zc" */
7229
+ 'api_key': string;
7230
+ 'encoding'?: {
7231
+ /** Codec to encode logs in Example: "json" */
7232
+ 'codec': 'text' | 'json';
7233
+ };
7234
+ /** Solar Winds endpoint type */
7235
+ 'endpointType': 'unitary' | 'bulk';
7236
+ };
7150
7237
  } | {
7151
7238
  /** Name of the log sink. Example: "example-log-sink" */
7152
7239
  'name': string;
@@ -7268,7 +7355,7 @@ type GetLogsinkResult = {
7268
7355
  'forwardMeshLogs'?: boolean;
7269
7356
  };
7270
7357
  /** The type of the log sink. */
7271
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7358
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7272
7359
  /** Timestamp of when the log sink was created. Example: "2022-06-14 15:10:42.842Z" */
7273
7360
  'createdAt': string;
7274
7361
  /** Timestamp of when the log sink was last updated. Example: "2022-06-14 15:10:42.842Z" */
@@ -7344,7 +7431,7 @@ type GetLogsinkResult = {
7344
7431
  'token'?: string;
7345
7432
  };
7346
7433
  'framing'?: {
7347
- 'method'?: 'none' | 'newline' | 'character' | 'length';
7434
+ 'method'?: 'none' | 'newline' | 'length';
7348
7435
  };
7349
7436
  } | {
7350
7437
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -7364,6 +7451,15 @@ type GetLogsinkResult = {
7364
7451
  'region': 'eu' | 'uk' | 'us' | 'ca' | 'au' | 'nl' | 'wa';
7365
7452
  /** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
7366
7453
  'token': string;
7454
+ } | {
7455
+ /** Solar Winds API Key Example: "Tr8BIEmYx1fuM3_XRMwU3xXEFnD20p9NFkRIu1COrDqMCM4g86qWZgVdgs1Y7mzWtFMI0Zc" */
7456
+ 'api_key': string;
7457
+ 'encoding'?: {
7458
+ /** Codec to encode logs in Example: "json" */
7459
+ 'codec': 'text' | 'json';
7460
+ };
7461
+ /** Solar Winds endpoint type */
7462
+ 'endpointType': 'unitary' | 'bulk';
7367
7463
  } | {
7368
7464
  /** Name of the data Example: "staging" */
7369
7465
  'dataset': string;
@@ -7477,7 +7573,7 @@ type UpdateLogsinkData = {
7477
7573
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7478
7574
  'resumeLogSink'?: boolean;
7479
7575
  /** The type of log sink to target Example: "http" */
7480
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7576
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7481
7577
  /** Details about the Loki log sink. */
7482
7578
  'sinkData': {
7483
7579
  /** The endpoint of the Loki log sink. Example: "https://logs.example.com" */
@@ -7510,7 +7606,7 @@ type UpdateLogsinkData = {
7510
7606
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7511
7607
  'resumeLogSink'?: boolean;
7512
7608
  /** The type of log sink to target Example: "http" */
7513
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7609
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7514
7610
  /** Details about the Datadog log sink. */
7515
7611
  'sinkData': {
7516
7612
  /** The Datadog API key. Example: "abcdef12345678900000000000000000" */
@@ -7536,7 +7632,7 @@ type UpdateLogsinkData = {
7536
7632
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7537
7633
  'resumeLogSink'?: boolean;
7538
7634
  /** The type of log sink to target Example: "http" */
7539
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7635
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7540
7636
  /** Papertrail Sink Schema. */
7541
7637
  'sinkData': {
7542
7638
  /** The authentication strategy. Example: "port" */
@@ -7571,7 +7667,7 @@ type UpdateLogsinkData = {
7571
7667
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7572
7668
  'resumeLogSink'?: boolean;
7573
7669
  /** The type of log sink to target Example: "http" */
7574
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7670
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7575
7671
  /** Details about the HTTP log sink. */
7576
7672
  'sinkData': {
7577
7673
  /** Uri to send logs to. Example: "my.log-collector.com" */
@@ -7605,7 +7701,7 @@ type UpdateLogsinkData = {
7605
7701
  'token'?: string;
7606
7702
  };
7607
7703
  'framing'?: {
7608
- 'method'?: 'none' | 'newline' | 'character' | 'length';
7704
+ 'method'?: 'none' | 'newline' | 'length';
7609
7705
  };
7610
7706
  };
7611
7707
  } | {
@@ -7626,7 +7722,7 @@ type UpdateLogsinkData = {
7626
7722
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7627
7723
  'resumeLogSink'?: boolean;
7628
7724
  /** The type of log sink to target Example: "http" */
7629
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7725
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7630
7726
  /** Details about the AWS S3 log sink. */
7631
7727
  'sinkData': {
7632
7728
  /** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
@@ -7663,7 +7759,7 @@ type UpdateLogsinkData = {
7663
7759
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7664
7760
  'resumeLogSink'?: boolean;
7665
7761
  /** The type of log sink to target Example: "http" */
7666
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7762
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7667
7763
  /** Details about the Better Stack log sink. */
7668
7764
  'sinkData': {
7669
7765
  /** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
@@ -7689,7 +7785,7 @@ type UpdateLogsinkData = {
7689
7785
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7690
7786
  'resumeLogSink'?: boolean;
7691
7787
  /** The type of log sink to target Example: "http" */
7692
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7788
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7693
7789
  /** Details about the LogDNA log sink. */
7694
7790
  'sinkData': {
7695
7791
  /** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
@@ -7713,7 +7809,7 @@ type UpdateLogsinkData = {
7713
7809
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7714
7810
  'resumeLogSink'?: boolean;
7715
7811
  /** The type of log sink to target Example: "http" */
7716
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7812
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7717
7813
  /** Details about the Logz.io log sink. */
7718
7814
  'sinkData': {
7719
7815
  /** Your Logzio region code Example: "eu" */
@@ -7739,7 +7835,37 @@ type UpdateLogsinkData = {
7739
7835
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7740
7836
  'resumeLogSink'?: boolean;
7741
7837
  /** The type of log sink to target Example: "http" */
7742
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7838
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7839
+ /** Details about the undefined log sink. */
7840
+ 'sinkData': {
7841
+ /** Solar Winds API Key Example: "Tr8BIEmYx1fuM3_XRMwU3xXEFnD20p9NFkRIu1COrDqMCM4g86qWZgVdgs1Y7mzWtFMI0Zc" */
7842
+ 'api_key'?: string;
7843
+ 'encoding'?: {
7844
+ /** Codec to encode logs in Example: "json" */
7845
+ 'codec'?: 'text' | 'json';
7846
+ };
7847
+ /** Solar Winds endpoint type */
7848
+ 'endpointType'?: 'unitary' | 'bulk';
7849
+ };
7850
+ } | {
7851
+ /** If `true`, only logs from the projects in `projects` will be sent to the log sink. Example: true */
7852
+ 'restricted'?: boolean;
7853
+ /** If `restricted` is `true`, only logs from these projects will be sent to the log sink. */
7854
+ 'projects'?: string[];
7855
+ 'options'?: {
7856
+ /** If `true`, we will do additional parsing on your JSON formatted log lines and your extract custom labels Example: true */
7857
+ 'useCustomLabels'?: boolean;
7858
+ /** Forward CDN logs from your workloads Example: true */
7859
+ 'forwardCdnLogs'?: boolean;
7860
+ /** Forward ingress logs from your workloads Example: true */
7861
+ 'forwardIngressLogs'?: boolean;
7862
+ /** Forward mesh logs from your workloads Example: true */
7863
+ 'forwardMeshLogs'?: boolean;
7864
+ };
7865
+ /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7866
+ 'resumeLogSink'?: boolean;
7867
+ /** The type of log sink to target Example: "http" */
7868
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7743
7869
  /** Details about the Honeycomb log sink. */
7744
7870
  'sinkData': {
7745
7871
  /** Honeycomb API Key Example: "b1dd3feb585asd1a3e9" */
@@ -7765,7 +7891,7 @@ type UpdateLogsinkData = {
7765
7891
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7766
7892
  'resumeLogSink'?: boolean;
7767
7893
  /** The type of log sink to target Example: "http" */
7768
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7894
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7769
7895
  /** Details about the Axiom log sink. */
7770
7896
  'sinkData': {
7771
7897
  /** Name of the data Example: "staging" */
@@ -7797,7 +7923,7 @@ type UpdateLogsinkData = {
7797
7923
  /** If `true`, and the log sink is currently paused, the log sink will be resumed after updating. */
7798
7924
  'resumeLogSink'?: boolean;
7799
7925
  /** The type of log sink to target Example: "http" */
7800
- 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'axiom' | 'newRelic';
7926
+ 'sinkType': 'loki' | 'datadog_logs' | 'papertrail' | 'http' | 'aws_s3' | 'logdna' | 'coralogix' | 'betterStack' | 'honeycomb' | 'logzio' | 'solarWinds' | 'axiom' | 'newRelic';
7801
7927
  /** Details about the New Relic log sink. */
7802
7928
  'sinkData': {
7803
7929
  /** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
@@ -18690,6 +18816,8 @@ type PatchServiceBuildData = {
18690
18816
  };
18691
18817
  };
18692
18818
  'dockerfile'?: {
18819
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
18820
+ 'useCache'?: boolean;
18693
18821
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
18694
18822
  'buildEngine'?: 'buildkit' | 'kaniko';
18695
18823
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -19066,6 +19194,8 @@ type CreateServiceCombinedResult = {
19066
19194
  'successThreshold'?: number;
19067
19195
  }[];
19068
19196
  'loadBalancing'?: {
19197
+ /** Enable headless service networking. */
19198
+ 'enableHeadlessService'?: boolean;
19069
19199
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
19070
19200
  'consistentHash'?: {
19071
19201
  'mode': 'ip' | 'customHeader';
@@ -19605,6 +19735,8 @@ type CreateServiceCombinedData = {
19605
19735
  'successThreshold'?: number;
19606
19736
  }[];
19607
19737
  'loadBalancing'?: {
19738
+ /** Enable headless service networking. */
19739
+ 'enableHeadlessService'?: boolean;
19608
19740
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
19609
19741
  'consistentHash'?: {
19610
19742
  'mode': 'ip' | 'customHeader';
@@ -19976,6 +20108,8 @@ type PutServiceCombinedResult = {
19976
20108
  'successThreshold'?: number;
19977
20109
  }[];
19978
20110
  'loadBalancing'?: {
20111
+ /** Enable headless service networking. */
20112
+ 'enableHeadlessService'?: boolean;
19979
20113
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
19980
20114
  'consistentHash'?: {
19981
20115
  'mode': 'ip' | 'customHeader';
@@ -20515,6 +20649,8 @@ type PutServiceCombinedData = {
20515
20649
  'successThreshold'?: number;
20516
20650
  }[];
20517
20651
  'loadBalancing'?: {
20652
+ /** Enable headless service networking. */
20653
+ 'enableHeadlessService'?: boolean;
20518
20654
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
20519
20655
  'consistentHash'?: {
20520
20656
  'mode': 'ip' | 'customHeader';
@@ -20886,6 +21022,8 @@ type PatchServiceCombinedResult = {
20886
21022
  'successThreshold'?: number;
20887
21023
  }[];
20888
21024
  'loadBalancing'?: {
21025
+ /** Enable headless service networking. */
21026
+ 'enableHeadlessService'?: boolean;
20889
21027
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
20890
21028
  'consistentHash'?: {
20891
21029
  'mode': 'ip' | 'customHeader';
@@ -21323,6 +21461,8 @@ type PatchServiceCombinedData = {
21323
21461
  };
21324
21462
  };
21325
21463
  'dockerfile'?: {
21464
+ /** DEPRECATED: This field will be removed in the near future and currently has no effect. */
21465
+ 'useCache'?: boolean;
21326
21466
  /** Build engine to use. Defaults to recommended build engine `buildkit` Example: "buildkit" */
21327
21467
  'buildEngine'?: 'buildkit' | 'kaniko';
21328
21468
  /** The file path of the Dockerfile. Example: "/Dockerfile" */
@@ -21408,6 +21548,8 @@ type PatchServiceCombinedData = {
21408
21548
  'successThreshold'?: number;
21409
21549
  }[];
21410
21550
  'loadBalancing'?: {
21551
+ /** Enable headless service networking. */
21552
+ 'enableHeadlessService'?: boolean;
21411
21553
  'mode'?: 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
21412
21554
  'consistentHash'?: {
21413
21555
  'mode': 'ip' | 'customHeader';
@@ -21676,6 +21818,8 @@ type CreateServiceDeploymentResult = {
21676
21818
  'successThreshold'?: number;
21677
21819
  }[];
21678
21820
  'loadBalancing'?: {
21821
+ /** Enable headless service networking. */
21822
+ 'enableHeadlessService'?: boolean;
21679
21823
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
21680
21824
  'consistentHash'?: {
21681
21825
  'mode': 'ip' | 'customHeader';
@@ -22262,6 +22406,8 @@ type CreateServiceDeploymentData = {
22262
22406
  'successThreshold'?: number;
22263
22407
  }[];
22264
22408
  'loadBalancing'?: {
22409
+ /** Enable headless service networking. */
22410
+ 'enableHeadlessService'?: boolean;
22265
22411
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
22266
22412
  'consistentHash'?: {
22267
22413
  'mode': 'ip' | 'customHeader';
@@ -22532,6 +22678,8 @@ type PutServiceDeploymentResult = {
22532
22678
  'successThreshold'?: number;
22533
22679
  }[];
22534
22680
  'loadBalancing'?: {
22681
+ /** Enable headless service networking. */
22682
+ 'enableHeadlessService'?: boolean;
22535
22683
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
22536
22684
  'consistentHash'?: {
22537
22685
  'mode': 'ip' | 'customHeader';
@@ -23118,6 +23266,8 @@ type PutServiceDeploymentData = {
23118
23266
  'successThreshold'?: number;
23119
23267
  }[];
23120
23268
  'loadBalancing'?: {
23269
+ /** Enable headless service networking. */
23270
+ 'enableHeadlessService'?: boolean;
23121
23271
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
23122
23272
  'consistentHash'?: {
23123
23273
  'mode': 'ip' | 'customHeader';
@@ -23388,6 +23538,8 @@ type PatchServiceDeploymentResult = {
23388
23538
  'successThreshold'?: number;
23389
23539
  }[];
23390
23540
  'loadBalancing'?: {
23541
+ /** Enable headless service networking. */
23542
+ 'enableHeadlessService'?: boolean;
23391
23543
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
23392
23544
  'consistentHash'?: {
23393
23545
  'mode': 'ip' | 'customHeader';
@@ -23971,6 +24123,8 @@ type PatchServiceDeploymentData = {
23971
24123
  'successThreshold'?: number;
23972
24124
  }[];
23973
24125
  'loadBalancing'?: {
24126
+ /** Enable headless service networking. */
24127
+ 'enableHeadlessService'?: boolean;
23974
24128
  'mode'?: 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
23975
24129
  'consistentHash'?: {
23976
24130
  'mode': 'ip' | 'customHeader';
@@ -24199,6 +24353,8 @@ type GetServiceResult = {
24199
24353
  'imageUrl'?: string;
24200
24354
  };
24201
24355
  'loadBalancing'?: {
24356
+ /** Enable headless service networking. */
24357
+ 'enableHeadlessService'?: boolean;
24202
24358
  'mode': 'leastConnection' | 'consistentHash' | 'roundRobin' | 'consistentReplicaRouting';
24203
24359
  'consistentHash'?: {
24204
24360
  'mode': 'ip' | 'customHeader';
@@ -27184,17 +27340,29 @@ declare class ApiClient {
27184
27340
  service: {
27185
27341
  files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
27186
27342
  };
27343
+ serviceStream: {
27344
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFileStream'];
27345
+ };
27187
27346
  job: {
27188
27347
  files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
27189
27348
  };
27349
+ jobStream: {
27350
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFileStream'];
27351
+ };
27190
27352
  };
27191
27353
  upload: {
27192
27354
  service: {
27193
27355
  files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
27194
27356
  };
27357
+ serviceStream: {
27358
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFileStream'];
27359
+ };
27195
27360
  job: {
27196
27361
  files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
27197
27362
  };
27363
+ jobStream: {
27364
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFileStream'];
27365
+ };
27198
27366
  };
27199
27367
  get: {
27200
27368
  addon: GetAddonCall & {
@@ -27608,17 +27776,29 @@ declare class ApiClient {
27608
27776
  service: {
27609
27777
  files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFiles'];
27610
27778
  };
27779
+ serviceStream: {
27780
+ files: InstanceType<typeof NorthflankFileCopy>['downloadServiceFileStream'];
27781
+ };
27611
27782
  job: {
27612
27783
  files: InstanceType<typeof NorthflankFileCopy>['downloadJobFiles'];
27613
27784
  };
27785
+ jobStream: {
27786
+ files: InstanceType<typeof NorthflankFileCopy>['downloadJobFileStream'];
27787
+ };
27614
27788
  };
27615
27789
  upload: {
27616
27790
  service: {
27617
27791
  files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFiles'];
27618
27792
  };
27793
+ serviceStream: {
27794
+ files: InstanceType<typeof NorthflankFileCopy>['uploadServiceFileStream'];
27795
+ };
27619
27796
  job: {
27620
27797
  files: InstanceType<typeof NorthflankFileCopy>['uploadJobFiles'];
27621
27798
  };
27799
+ jobStream: {
27800
+ files: InstanceType<typeof NorthflankFileCopy>['uploadJobFileStream'];
27801
+ };
27622
27802
  };
27623
27803
  get: {
27624
27804
  addon: GetAddonEndpoint & {
@@ -28006,10 +28186,5 @@ declare class ApiClient {
28006
28186
  constructor(contextProvider: ApiClientContextProvider, apiClientOpts?: ApiClientOpts);
28007
28187
  protected baseUrl: () => string | undefined;
28008
28188
  }
28009
- type ApiClientOpts = {
28010
- throwErrorOnHttpErrorCode?: boolean;
28011
- customUserAgent?: string;
28012
- agent?: any;
28013
- };
28014
28189
 
28015
- 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, 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, 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, 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, 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, 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, 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 };
28190
+ 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, 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, 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, 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, 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, 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, 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 };