@northflank/js-client 0.8.12 → 0.8.13-beta.0
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.
- package/dist/cjs/api-client.d.ts +1060 -50
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1060 -50
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { EventEmitter } from 'events';
|
|
2
2
|
import * as stream from 'node:stream';
|
|
3
3
|
import { Stream } from 'node:stream';
|
|
4
|
+
import { ClientHttp2Session } from 'node:http2';
|
|
4
5
|
|
|
5
6
|
type Optional<T, K extends keyof T> = Omit<T, K> & Partial<T>;
|
|
6
7
|
declare abstract class ApiClientContextProvider {
|
|
@@ -395,6 +396,9 @@ declare class NorthflankPortForwarder extends EventEmitter {
|
|
|
395
396
|
}
|
|
396
397
|
|
|
397
398
|
interface ExecCommand extends EventEmitter {
|
|
399
|
+
readonly stdOut: stream.PassThrough;
|
|
400
|
+
readonly stdErr: stream.PassThrough;
|
|
401
|
+
readonly stdIn: stream.PassThrough;
|
|
398
402
|
on(event: 'auth-success', listener: () => any): any;
|
|
399
403
|
on(event: 'command-started', listener: () => any): any;
|
|
400
404
|
on(event: 'command-completed', listener: () => any): any;
|
|
@@ -405,6 +409,8 @@ interface ExecCommand extends EventEmitter {
|
|
|
405
409
|
on(event: 'error', listener: (error: any) => any): any;
|
|
406
410
|
on(event: 'std-out-data', listener: (data: any) => any): any;
|
|
407
411
|
on(event: 'std-err-data', listener: (data: any) => any): any;
|
|
412
|
+
waitForCommandResult: () => Promise<CommandResult>;
|
|
413
|
+
start: () => Promise<CommandResult>;
|
|
408
414
|
}
|
|
409
415
|
|
|
410
416
|
type ExecConfig = {
|
|
@@ -421,6 +427,7 @@ type ExecConfig = {
|
|
|
421
427
|
tty?: boolean;
|
|
422
428
|
ttyRows?: number;
|
|
423
429
|
ttyColumns?: number;
|
|
430
|
+
execV2?: boolean;
|
|
424
431
|
};
|
|
425
432
|
declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
|
|
426
433
|
private readonly baseUrl;
|
|
@@ -431,7 +438,7 @@ declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
|
|
|
431
438
|
readonly stdErr: stream.PassThrough;
|
|
432
439
|
readonly stdIn: stream.PassThrough;
|
|
433
440
|
private remote;
|
|
434
|
-
|
|
441
|
+
protected currentCommand: Promise<CommandResult> | undefined;
|
|
435
442
|
private duplex;
|
|
436
443
|
constructor(baseUrl: string, execConfig: ExecConfig, token: string, // readonly timeout: number = 120 // Timeout in seconds
|
|
437
444
|
agent: any, stdOut?: stream.PassThrough, stdErr?: stream.PassThrough, stdIn?: stream.PassThrough);
|
|
@@ -461,6 +468,7 @@ type ExecCommandData = {
|
|
|
461
468
|
shell?: string;
|
|
462
469
|
user?: string | number;
|
|
463
470
|
group?: string | number;
|
|
471
|
+
execV2?: boolean;
|
|
464
472
|
};
|
|
465
473
|
type ExecCommandDataAddon = ExecCommandData & {
|
|
466
474
|
instanceName: string;
|
|
@@ -480,7 +488,9 @@ type CommandInfo = {
|
|
|
480
488
|
declare class NorthflankExecCommand {
|
|
481
489
|
private readonly contextProvider;
|
|
482
490
|
private readonly agent?;
|
|
483
|
-
|
|
491
|
+
private session?;
|
|
492
|
+
constructor(contextProvider: ApiClientContextProvider, agent?: any | undefined, session?: ClientHttp2Session | undefined);
|
|
493
|
+
get http2Session(): ClientHttp2Session;
|
|
484
494
|
/**
|
|
485
495
|
* Runs command on a Northflank service and waits for completion returning command result and
|
|
486
496
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -501,7 +511,7 @@ declare class NorthflankExecCommand {
|
|
|
501
511
|
execServiceSession(parameters: {
|
|
502
512
|
projectId: string;
|
|
503
513
|
serviceId: string;
|
|
504
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
514
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
505
515
|
/**
|
|
506
516
|
* Runs command on a Northflank job and waits for completion returning command result and
|
|
507
517
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -522,7 +532,7 @@ declare class NorthflankExecCommand {
|
|
|
522
532
|
execJobSession(parameters: {
|
|
523
533
|
projectId: string;
|
|
524
534
|
jobId: string;
|
|
525
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
535
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
526
536
|
/**
|
|
527
537
|
* Runs command on a Northflank job and waits for completion returning command result and
|
|
528
538
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -543,7 +553,7 @@ declare class NorthflankExecCommand {
|
|
|
543
553
|
execAddonSession(parameters: {
|
|
544
554
|
projectId: string;
|
|
545
555
|
addonId: string;
|
|
546
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
556
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
547
557
|
private execCommand;
|
|
548
558
|
private shellSession;
|
|
549
559
|
private getCommandRunner;
|
|
@@ -1846,7 +1856,7 @@ type ListCloudClustersResult = {
|
|
|
1846
1856
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
1847
1857
|
'description'?: string;
|
|
1848
1858
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
1849
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
1859
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
1850
1860
|
/** Region of the cluster. Example: "europe-west2" */
|
|
1851
1861
|
'region': string;
|
|
1852
1862
|
'status'?: {
|
|
@@ -2290,7 +2300,7 @@ type CreateCloudClusterResult = {
|
|
|
2290
2300
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
2291
2301
|
'description'?: string;
|
|
2292
2302
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
2293
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
2303
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
2294
2304
|
/** Region of the cluster. Example: "europe-west2" */
|
|
2295
2305
|
'region': string;
|
|
2296
2306
|
'status'?: {
|
|
@@ -2714,7 +2724,7 @@ type CreateCloudClusterData = {
|
|
|
2714
2724
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
2715
2725
|
'description'?: string;
|
|
2716
2726
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
2717
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
2727
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
2718
2728
|
/** Region of the cluster. Example: "europe-west2" */
|
|
2719
2729
|
'region': string;
|
|
2720
2730
|
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
@@ -3118,7 +3128,7 @@ type PutCloudClusterResult = {
|
|
|
3118
3128
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
3119
3129
|
'description'?: string;
|
|
3120
3130
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
3121
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
3131
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
3122
3132
|
/** Region of the cluster. Example: "europe-west2" */
|
|
3123
3133
|
'region': string;
|
|
3124
3134
|
'status'?: {
|
|
@@ -3542,7 +3552,7 @@ type PutCloudClusterData = {
|
|
|
3542
3552
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
3543
3553
|
'description'?: string;
|
|
3544
3554
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
3545
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
3555
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
3546
3556
|
/** Region of the cluster. Example: "europe-west2" */
|
|
3547
3557
|
'region': string;
|
|
3548
3558
|
/** Deprecated: This field is no longer used, the version is now set by the platform. Example: "1.30" */
|
|
@@ -3946,7 +3956,7 @@ type GetCloudClusterResult = {
|
|
|
3946
3956
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
3947
3957
|
'description'?: string;
|
|
3948
3958
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
3949
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
3959
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
3950
3960
|
/** Region of the cluster. Example: "europe-west2" */
|
|
3951
3961
|
'region': string;
|
|
3952
3962
|
'status'?: {
|
|
@@ -4386,7 +4396,7 @@ type PatchCloudClusterResult = {
|
|
|
4386
4396
|
/** The description of the cluster. Example: "This is a new cluster." */
|
|
4387
4397
|
'description'?: string;
|
|
4388
4398
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
4389
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
4399
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
4390
4400
|
/** Region of the cluster. Example: "europe-west2" */
|
|
4391
4401
|
'region': string;
|
|
4392
4402
|
'status'?: {
|
|
@@ -5276,7 +5286,7 @@ type ListCloudIntegrationsResult = {
|
|
|
5276
5286
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5277
5287
|
'description'?: string;
|
|
5278
5288
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5279
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5289
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5280
5290
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5281
5291
|
/** BYOC restrictions configuration for controlling team access */
|
|
5282
5292
|
'restrictions'?: {
|
|
@@ -5342,7 +5352,7 @@ type CreateCloudIntegrationResult = {
|
|
|
5342
5352
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5343
5353
|
'description'?: string;
|
|
5344
5354
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5345
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5355
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5346
5356
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5347
5357
|
/** BYOC restrictions configuration for controlling team access */
|
|
5348
5358
|
'restrictions'?: {
|
|
@@ -5400,6 +5410,14 @@ type CreateCloudIntegrationResult = {
|
|
|
5400
5410
|
'applicationKeyId'?: string;
|
|
5401
5411
|
/** Backblaze Application Key */
|
|
5402
5412
|
'applicationKey'?: string;
|
|
5413
|
+
/** Akamai Host */
|
|
5414
|
+
'host'?: string;
|
|
5415
|
+
/** Akamai Access Token */
|
|
5416
|
+
'accessToken'?: string;
|
|
5417
|
+
/** Akamai Client Token */
|
|
5418
|
+
'clientToken'?: string;
|
|
5419
|
+
/** Akamai Client Secret */
|
|
5420
|
+
'clientSecret'?: string;
|
|
5403
5421
|
};
|
|
5404
5422
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5405
5423
|
'aws'?: {
|
|
@@ -5433,7 +5451,7 @@ type CreateCloudIntegrationData = {
|
|
|
5433
5451
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5434
5452
|
'description'?: string;
|
|
5435
5453
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5436
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5454
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5437
5455
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5438
5456
|
/** BYOC restrictions configuration for controlling team access */
|
|
5439
5457
|
'restrictions'?: {
|
|
@@ -5491,6 +5509,14 @@ type CreateCloudIntegrationData = {
|
|
|
5491
5509
|
'applicationKeyId'?: string;
|
|
5492
5510
|
/** Backblaze Application Key */
|
|
5493
5511
|
'applicationKey'?: string;
|
|
5512
|
+
/** Akamai Host */
|
|
5513
|
+
'host'?: string;
|
|
5514
|
+
/** Akamai Access Token */
|
|
5515
|
+
'accessToken'?: string;
|
|
5516
|
+
/** Akamai Client Token */
|
|
5517
|
+
'clientToken'?: string;
|
|
5518
|
+
/** Akamai Client Secret */
|
|
5519
|
+
'clientSecret'?: string;
|
|
5494
5520
|
};
|
|
5495
5521
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5496
5522
|
'aws'?: {
|
|
@@ -5527,7 +5553,7 @@ type PutCloudIntegrationResult = {
|
|
|
5527
5553
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5528
5554
|
'description'?: string;
|
|
5529
5555
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5530
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5556
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5531
5557
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5532
5558
|
/** BYOC restrictions configuration for controlling team access */
|
|
5533
5559
|
'restrictions'?: {
|
|
@@ -5585,6 +5611,14 @@ type PutCloudIntegrationResult = {
|
|
|
5585
5611
|
'applicationKeyId'?: string;
|
|
5586
5612
|
/** Backblaze Application Key */
|
|
5587
5613
|
'applicationKey'?: string;
|
|
5614
|
+
/** Akamai Host */
|
|
5615
|
+
'host'?: string;
|
|
5616
|
+
/** Akamai Access Token */
|
|
5617
|
+
'accessToken'?: string;
|
|
5618
|
+
/** Akamai Client Token */
|
|
5619
|
+
'clientToken'?: string;
|
|
5620
|
+
/** Akamai Client Secret */
|
|
5621
|
+
'clientSecret'?: string;
|
|
5588
5622
|
};
|
|
5589
5623
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5590
5624
|
'aws'?: {
|
|
@@ -5623,7 +5657,7 @@ type PutCloudIntegrationData = {
|
|
|
5623
5657
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5624
5658
|
'description'?: string;
|
|
5625
5659
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5626
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5660
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5627
5661
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5628
5662
|
/** BYOC restrictions configuration for controlling team access */
|
|
5629
5663
|
'restrictions'?: {
|
|
@@ -5681,6 +5715,14 @@ type PutCloudIntegrationData = {
|
|
|
5681
5715
|
'applicationKeyId'?: string;
|
|
5682
5716
|
/** Backblaze Application Key */
|
|
5683
5717
|
'applicationKey'?: string;
|
|
5718
|
+
/** Akamai Host */
|
|
5719
|
+
'host'?: string;
|
|
5720
|
+
/** Akamai Access Token */
|
|
5721
|
+
'accessToken'?: string;
|
|
5722
|
+
/** Akamai Client Token */
|
|
5723
|
+
'clientToken'?: string;
|
|
5724
|
+
/** Akamai Client Secret */
|
|
5725
|
+
'clientSecret'?: string;
|
|
5684
5726
|
};
|
|
5685
5727
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5686
5728
|
'aws'?: {
|
|
@@ -5717,7 +5759,7 @@ type GetCloudIntegrationResult = {
|
|
|
5717
5759
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5718
5760
|
'description'?: string;
|
|
5719
5761
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5720
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5762
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5721
5763
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5722
5764
|
/** BYOC restrictions configuration for controlling team access */
|
|
5723
5765
|
'restrictions'?: {
|
|
@@ -5775,6 +5817,14 @@ type GetCloudIntegrationResult = {
|
|
|
5775
5817
|
'applicationKeyId'?: string;
|
|
5776
5818
|
/** Backblaze Application Key */
|
|
5777
5819
|
'applicationKey'?: string;
|
|
5820
|
+
/** Akamai Host */
|
|
5821
|
+
'host'?: string;
|
|
5822
|
+
/** Akamai Access Token */
|
|
5823
|
+
'accessToken'?: string;
|
|
5824
|
+
/** Akamai Client Token */
|
|
5825
|
+
'clientToken'?: string;
|
|
5826
|
+
/** Akamai Client Secret */
|
|
5827
|
+
'clientSecret'?: string;
|
|
5778
5828
|
};
|
|
5779
5829
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5780
5830
|
'aws'?: {
|
|
@@ -5823,7 +5873,7 @@ type PatchCloudIntegrationResult = {
|
|
|
5823
5873
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5824
5874
|
'description'?: string;
|
|
5825
5875
|
/** Cloud provider to be used for the selected resource Example: "gcp" */
|
|
5826
|
-
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'byok';
|
|
5876
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
5827
5877
|
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5828
5878
|
/** BYOC restrictions configuration for controlling team access */
|
|
5829
5879
|
'restrictions'?: {
|
|
@@ -5881,6 +5931,14 @@ type PatchCloudIntegrationResult = {
|
|
|
5881
5931
|
'applicationKeyId'?: string;
|
|
5882
5932
|
/** Backblaze Application Key */
|
|
5883
5933
|
'applicationKey'?: string;
|
|
5934
|
+
/** Akamai Host */
|
|
5935
|
+
'host'?: string;
|
|
5936
|
+
/** Akamai Access Token */
|
|
5937
|
+
'accessToken'?: string;
|
|
5938
|
+
/** Akamai Client Token */
|
|
5939
|
+
'clientToken'?: string;
|
|
5940
|
+
/** Akamai Client Secret */
|
|
5941
|
+
'clientSecret'?: string;
|
|
5884
5942
|
};
|
|
5885
5943
|
/** AWS specific data. Required when `provider` is `aws`. */
|
|
5886
5944
|
'aws'?: {
|
|
@@ -5973,6 +6031,14 @@ type PatchCloudIntegrationData = {
|
|
|
5973
6031
|
'applicationKeyId'?: string;
|
|
5974
6032
|
/** Backblaze Application Key */
|
|
5975
6033
|
'applicationKey'?: string;
|
|
6034
|
+
/** Akamai Host */
|
|
6035
|
+
'host'?: string;
|
|
6036
|
+
/** Akamai Access Token */
|
|
6037
|
+
'accessToken'?: string;
|
|
6038
|
+
/** Akamai Client Token */
|
|
6039
|
+
'clientToken'?: string;
|
|
6040
|
+
/** Akamai Client Secret */
|
|
6041
|
+
'clientSecret'?: string;
|
|
5976
6042
|
};
|
|
5977
6043
|
};
|
|
5978
6044
|
/** Updates a integration. */
|
|
@@ -7199,6 +7265,429 @@ declare class VerifyDomainEndpoint extends PostApiEndpoint<VerifyDomainRequest,
|
|
|
7199
7265
|
body: () => undefined;
|
|
7200
7266
|
}
|
|
7201
7267
|
|
|
7268
|
+
type ListEgressipsResult = {
|
|
7269
|
+
/** An array of egress IPs. */
|
|
7270
|
+
'egressIps': {
|
|
7271
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7272
|
+
'name': string;
|
|
7273
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7274
|
+
'description'?: string;
|
|
7275
|
+
/** Egress IP specification */
|
|
7276
|
+
'spec': {
|
|
7277
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7278
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7279
|
+
/** Target region name Example: "europe-west" */
|
|
7280
|
+
'region': string;
|
|
7281
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7282
|
+
'mode'?: 'include' | 'exclude';
|
|
7283
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7284
|
+
'rules'?: {
|
|
7285
|
+
/** Project internal ID */
|
|
7286
|
+
'id': string;
|
|
7287
|
+
/** Rule restrictions */
|
|
7288
|
+
'restrictions': {
|
|
7289
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7290
|
+
'enabled': boolean;
|
|
7291
|
+
/** Resources the rule should be restricted to */
|
|
7292
|
+
'resources': {
|
|
7293
|
+
/** Resource type */
|
|
7294
|
+
'type': 'service' | 'job';
|
|
7295
|
+
/** Resource internal ID */
|
|
7296
|
+
'id': string;
|
|
7297
|
+
}[];
|
|
7298
|
+
};
|
|
7299
|
+
}[];
|
|
7300
|
+
};
|
|
7301
|
+
/** ID of the egress IP Example: "my-egress-ip" */
|
|
7302
|
+
'id': string;
|
|
7303
|
+
/** The time the egress IP was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
7304
|
+
'createdAt': string;
|
|
7305
|
+
/** The time the egress IP was last updated. Example: "2021-01-20T11:19:53.175Z" */
|
|
7306
|
+
'updatedAt': string;
|
|
7307
|
+
}[];
|
|
7308
|
+
};
|
|
7309
|
+
type ListEgressipsCall = ((opts: ListEgressipsRequest) => Promise<ApiCallResponse<ListEgressipsResult>>) & {
|
|
7310
|
+
all: (opts: ListEgressipsRequest) => Promise<ApiCallResponse<ListEgressipsResult>>;
|
|
7311
|
+
};
|
|
7312
|
+
type ListEgressipsRequest = {
|
|
7313
|
+
options?: ListEgressipsOptions;
|
|
7314
|
+
};
|
|
7315
|
+
type ListEgressipsOptions = {
|
|
7316
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
7317
|
+
'per_page'?: number;
|
|
7318
|
+
/** The page number to access. */
|
|
7319
|
+
'page'?: number;
|
|
7320
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
7321
|
+
'cursor'?: string;
|
|
7322
|
+
};
|
|
7323
|
+
/** Gets a list of egress IPs belonging to the team */
|
|
7324
|
+
declare class ListEgressipsEndpoint extends GetApiEndpointPaginated<ListEgressipsRequest, ListEgressipsResult> {
|
|
7325
|
+
description: string;
|
|
7326
|
+
withAuth: boolean;
|
|
7327
|
+
requiredPermissions: string;
|
|
7328
|
+
endpointUrl: (opts: ListEgressipsRequest) => string;
|
|
7329
|
+
body: () => undefined;
|
|
7330
|
+
}
|
|
7331
|
+
|
|
7332
|
+
type CreateEgressipResult = {
|
|
7333
|
+
/** ID of the egress IP Example: "my-egress-ip" */
|
|
7334
|
+
'id': string;
|
|
7335
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7336
|
+
'name': string;
|
|
7337
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7338
|
+
'description'?: string;
|
|
7339
|
+
/** Egress IP specification */
|
|
7340
|
+
'spec': {
|
|
7341
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7342
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7343
|
+
/** Target region name Example: "europe-west" */
|
|
7344
|
+
'region': string;
|
|
7345
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7346
|
+
'mode'?: 'include' | 'exclude';
|
|
7347
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7348
|
+
'rules'?: {
|
|
7349
|
+
/** Project internal ID */
|
|
7350
|
+
'id': string;
|
|
7351
|
+
/** Rule restrictions */
|
|
7352
|
+
'restrictions': {
|
|
7353
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7354
|
+
'enabled': boolean;
|
|
7355
|
+
/** Resources the rule should be restricted to */
|
|
7356
|
+
'resources': {
|
|
7357
|
+
/** Resource type */
|
|
7358
|
+
'type': 'service' | 'job';
|
|
7359
|
+
/** Resource internal ID */
|
|
7360
|
+
'id': string;
|
|
7361
|
+
}[];
|
|
7362
|
+
};
|
|
7363
|
+
}[];
|
|
7364
|
+
};
|
|
7365
|
+
'state'?: {
|
|
7366
|
+
/** Assigned public IP address Example: "34.105.225.71" */
|
|
7367
|
+
'ipAddress'?: string;
|
|
7368
|
+
/** Current status of the egress IP Example: "active" */
|
|
7369
|
+
'status': 'staging' | 'loading' | 'active' | 'error' | 'deleting' | 'deleted';
|
|
7370
|
+
/** Time of the last status transition */
|
|
7371
|
+
'lastTransitionTime': string;
|
|
7372
|
+
};
|
|
7373
|
+
/** The time the egress IP was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
7374
|
+
'createdAt': string;
|
|
7375
|
+
/** The time the egress IP was last updated. Example: "2021-01-20T11:19:53.175Z" */
|
|
7376
|
+
'updatedAt': string;
|
|
7377
|
+
};
|
|
7378
|
+
type CreateEgressipCall = (opts: CreateEgressipRequest) => Promise<ApiCallResponse<CreateEgressipResult>>;
|
|
7379
|
+
type CreateEgressipRequest = {
|
|
7380
|
+
data: CreateEgressipData;
|
|
7381
|
+
};
|
|
7382
|
+
type CreateEgressipData = {
|
|
7383
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7384
|
+
'name': string;
|
|
7385
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7386
|
+
'description'?: string;
|
|
7387
|
+
/** Egress IP specification */
|
|
7388
|
+
'spec': {
|
|
7389
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7390
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7391
|
+
/** Target region name Example: "europe-west" */
|
|
7392
|
+
'region': string;
|
|
7393
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7394
|
+
'mode'?: 'include' | 'exclude';
|
|
7395
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7396
|
+
'rules'?: {
|
|
7397
|
+
/** Project internal ID */
|
|
7398
|
+
'id': string;
|
|
7399
|
+
/** Rule restrictions */
|
|
7400
|
+
'restrictions': {
|
|
7401
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7402
|
+
'enabled': boolean;
|
|
7403
|
+
/** Resources the rule should be restricted to */
|
|
7404
|
+
'resources': {
|
|
7405
|
+
/** Resource type */
|
|
7406
|
+
'type': 'service' | 'job';
|
|
7407
|
+
/** Resource internal ID */
|
|
7408
|
+
'id': string;
|
|
7409
|
+
}[];
|
|
7410
|
+
};
|
|
7411
|
+
}[];
|
|
7412
|
+
};
|
|
7413
|
+
};
|
|
7414
|
+
/** Creates a new egress IP */
|
|
7415
|
+
declare class CreateEgressipEndpoint extends PostApiEndpoint<CreateEgressipRequest, CreateEgressipResult> {
|
|
7416
|
+
description: string;
|
|
7417
|
+
withAuth: boolean;
|
|
7418
|
+
requiredPermissions: string;
|
|
7419
|
+
endpointUrl: (opts: CreateEgressipRequest) => string;
|
|
7420
|
+
body: (payload: CreateEgressipRequest) => string;
|
|
7421
|
+
}
|
|
7422
|
+
|
|
7423
|
+
type PutEgressipResult = {
|
|
7424
|
+
/** ID of the egress IP Example: "my-egress-ip" */
|
|
7425
|
+
'id': string;
|
|
7426
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7427
|
+
'name': string;
|
|
7428
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7429
|
+
'description'?: string;
|
|
7430
|
+
/** Egress IP specification */
|
|
7431
|
+
'spec': {
|
|
7432
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7433
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7434
|
+
/** Target region name Example: "europe-west" */
|
|
7435
|
+
'region': string;
|
|
7436
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7437
|
+
'mode'?: 'include' | 'exclude';
|
|
7438
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7439
|
+
'rules'?: {
|
|
7440
|
+
/** Project internal ID */
|
|
7441
|
+
'id': string;
|
|
7442
|
+
/** Rule restrictions */
|
|
7443
|
+
'restrictions': {
|
|
7444
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7445
|
+
'enabled': boolean;
|
|
7446
|
+
/** Resources the rule should be restricted to */
|
|
7447
|
+
'resources': {
|
|
7448
|
+
/** Resource type */
|
|
7449
|
+
'type': 'service' | 'job';
|
|
7450
|
+
/** Resource internal ID */
|
|
7451
|
+
'id': string;
|
|
7452
|
+
}[];
|
|
7453
|
+
};
|
|
7454
|
+
}[];
|
|
7455
|
+
};
|
|
7456
|
+
'state'?: {
|
|
7457
|
+
/** Assigned public IP address Example: "34.105.225.71" */
|
|
7458
|
+
'ipAddress'?: string;
|
|
7459
|
+
/** Current status of the egress IP Example: "active" */
|
|
7460
|
+
'status': 'staging' | 'loading' | 'active' | 'error' | 'deleting' | 'deleted';
|
|
7461
|
+
/** Time of the last status transition */
|
|
7462
|
+
'lastTransitionTime': string;
|
|
7463
|
+
};
|
|
7464
|
+
/** The time the egress IP was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
7465
|
+
'createdAt': string;
|
|
7466
|
+
/** The time the egress IP was last updated. Example: "2021-01-20T11:19:53.175Z" */
|
|
7467
|
+
'updatedAt': string;
|
|
7468
|
+
};
|
|
7469
|
+
type PutEgressipCall = (opts: PutEgressipRequest) => Promise<ApiCallResponse<PutEgressipResult>>;
|
|
7470
|
+
type PutEgressipRequest = {
|
|
7471
|
+
data: PutEgressipData;
|
|
7472
|
+
};
|
|
7473
|
+
type PutEgressipData = {
|
|
7474
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7475
|
+
'name': string;
|
|
7476
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7477
|
+
'description'?: string;
|
|
7478
|
+
/** Egress IP specification */
|
|
7479
|
+
'spec': {
|
|
7480
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7481
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7482
|
+
/** Target region name Example: "europe-west" */
|
|
7483
|
+
'region': string;
|
|
7484
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7485
|
+
'mode'?: 'include' | 'exclude';
|
|
7486
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7487
|
+
'rules'?: {
|
|
7488
|
+
/** Project internal ID */
|
|
7489
|
+
'id': string;
|
|
7490
|
+
/** Rule restrictions */
|
|
7491
|
+
'restrictions': {
|
|
7492
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7493
|
+
'enabled': boolean;
|
|
7494
|
+
/** Resources the rule should be restricted to */
|
|
7495
|
+
'resources': {
|
|
7496
|
+
/** Resource type */
|
|
7497
|
+
'type': 'service' | 'job';
|
|
7498
|
+
/** Resource internal ID */
|
|
7499
|
+
'id': string;
|
|
7500
|
+
}[];
|
|
7501
|
+
};
|
|
7502
|
+
}[];
|
|
7503
|
+
};
|
|
7504
|
+
};
|
|
7505
|
+
/** Creates or updates an egress IP */
|
|
7506
|
+
declare class PutEgressipEndpoint extends PutApiEndpoint<PutEgressipRequest, PutEgressipResult> {
|
|
7507
|
+
description: string;
|
|
7508
|
+
withAuth: boolean;
|
|
7509
|
+
requiredPermissions: string;
|
|
7510
|
+
endpointUrl: (opts: PutEgressipRequest) => string;
|
|
7511
|
+
body: (payload: PutEgressipRequest) => string;
|
|
7512
|
+
}
|
|
7513
|
+
|
|
7514
|
+
type GetEgressipResult = {
|
|
7515
|
+
/** ID of the egress IP Example: "my-egress-ip" */
|
|
7516
|
+
'id': string;
|
|
7517
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7518
|
+
'name': string;
|
|
7519
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7520
|
+
'description'?: string;
|
|
7521
|
+
/** Egress IP specification */
|
|
7522
|
+
'spec': {
|
|
7523
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7524
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7525
|
+
/** Target region name Example: "europe-west" */
|
|
7526
|
+
'region': string;
|
|
7527
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7528
|
+
'mode'?: 'include' | 'exclude';
|
|
7529
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7530
|
+
'rules'?: {
|
|
7531
|
+
/** Project internal ID */
|
|
7532
|
+
'id': string;
|
|
7533
|
+
/** Rule restrictions */
|
|
7534
|
+
'restrictions': {
|
|
7535
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7536
|
+
'enabled': boolean;
|
|
7537
|
+
/** Resources the rule should be restricted to */
|
|
7538
|
+
'resources': {
|
|
7539
|
+
/** Resource type */
|
|
7540
|
+
'type': 'service' | 'job';
|
|
7541
|
+
/** Resource internal ID */
|
|
7542
|
+
'id': string;
|
|
7543
|
+
}[];
|
|
7544
|
+
};
|
|
7545
|
+
}[];
|
|
7546
|
+
};
|
|
7547
|
+
'state'?: {
|
|
7548
|
+
/** Assigned public IP address Example: "34.105.225.71" */
|
|
7549
|
+
'ipAddress'?: string;
|
|
7550
|
+
/** Current status of the egress IP Example: "active" */
|
|
7551
|
+
'status': 'staging' | 'loading' | 'active' | 'error' | 'deleting' | 'deleted';
|
|
7552
|
+
/** Time of the last status transition */
|
|
7553
|
+
'lastTransitionTime': string;
|
|
7554
|
+
};
|
|
7555
|
+
/** The time the egress IP was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
7556
|
+
'createdAt': string;
|
|
7557
|
+
/** The time the egress IP was last updated. Example: "2021-01-20T11:19:53.175Z" */
|
|
7558
|
+
'updatedAt': string;
|
|
7559
|
+
};
|
|
7560
|
+
type GetEgressipCall = (opts: GetEgressipRequest) => Promise<ApiCallResponse<GetEgressipResult>>;
|
|
7561
|
+
type GetEgressipRequest = {
|
|
7562
|
+
parameters: GetEgressipParameters;
|
|
7563
|
+
};
|
|
7564
|
+
type GetEgressipParameters = {
|
|
7565
|
+
/** ID of the egress IP */
|
|
7566
|
+
'egressIpId': string;
|
|
7567
|
+
};
|
|
7568
|
+
/** Gets information about the given egress IP */
|
|
7569
|
+
declare class GetEgressipEndpoint extends GetApiEndpoint<GetEgressipRequest, GetEgressipResult> {
|
|
7570
|
+
description: string;
|
|
7571
|
+
withAuth: boolean;
|
|
7572
|
+
requiredPermissions: string;
|
|
7573
|
+
endpointUrl: (opts: GetEgressipRequest) => string;
|
|
7574
|
+
body: () => undefined;
|
|
7575
|
+
}
|
|
7576
|
+
|
|
7577
|
+
type PatchEgressipResult = {
|
|
7578
|
+
/** ID of the egress IP Example: "my-egress-ip" */
|
|
7579
|
+
'id': string;
|
|
7580
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7581
|
+
'name': string;
|
|
7582
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7583
|
+
'description'?: string;
|
|
7584
|
+
/** Egress IP specification */
|
|
7585
|
+
'spec': {
|
|
7586
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7587
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7588
|
+
/** Target region name Example: "europe-west" */
|
|
7589
|
+
'region': string;
|
|
7590
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7591
|
+
'mode'?: 'include' | 'exclude';
|
|
7592
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7593
|
+
'rules'?: {
|
|
7594
|
+
/** Project internal ID */
|
|
7595
|
+
'id': string;
|
|
7596
|
+
/** Rule restrictions */
|
|
7597
|
+
'restrictions': {
|
|
7598
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7599
|
+
'enabled': boolean;
|
|
7600
|
+
/** Resources the rule should be restricted to */
|
|
7601
|
+
'resources': {
|
|
7602
|
+
/** Resource type */
|
|
7603
|
+
'type': 'service' | 'job';
|
|
7604
|
+
/** Resource internal ID */
|
|
7605
|
+
'id': string;
|
|
7606
|
+
}[];
|
|
7607
|
+
};
|
|
7608
|
+
}[];
|
|
7609
|
+
};
|
|
7610
|
+
'state'?: {
|
|
7611
|
+
/** Assigned public IP address Example: "34.105.225.71" */
|
|
7612
|
+
'ipAddress'?: string;
|
|
7613
|
+
/** Current status of the egress IP Example: "active" */
|
|
7614
|
+
'status': 'staging' | 'loading' | 'active' | 'error' | 'deleting' | 'deleted';
|
|
7615
|
+
/** Time of the last status transition */
|
|
7616
|
+
'lastTransitionTime': string;
|
|
7617
|
+
};
|
|
7618
|
+
/** The time the egress IP was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
7619
|
+
'createdAt': string;
|
|
7620
|
+
/** The time the egress IP was last updated. Example: "2021-01-20T11:19:53.175Z" */
|
|
7621
|
+
'updatedAt': string;
|
|
7622
|
+
};
|
|
7623
|
+
type PatchEgressipCall = (opts: PatchEgressipRequest) => Promise<ApiCallResponse<PatchEgressipResult>>;
|
|
7624
|
+
type PatchEgressipRequest = {
|
|
7625
|
+
parameters: PatchEgressipParameters;
|
|
7626
|
+
data: PatchEgressipData;
|
|
7627
|
+
};
|
|
7628
|
+
type PatchEgressipParameters = {
|
|
7629
|
+
/** ID of the egress IP */
|
|
7630
|
+
'egressIpId': string;
|
|
7631
|
+
};
|
|
7632
|
+
type PatchEgressipData = {
|
|
7633
|
+
/** The name of the egress IP. Example: "my-egress-ip" */
|
|
7634
|
+
'name'?: string;
|
|
7635
|
+
/** The description of the egress IP. Example: "This is a new egress IP." */
|
|
7636
|
+
'description'?: string;
|
|
7637
|
+
/** Egress IP specification */
|
|
7638
|
+
'spec'?: {
|
|
7639
|
+
/** Provisioning mode for the egress IP: shared (uses pre-provisioned infrastructure) or dedicated Example: "shared" */
|
|
7640
|
+
'provisioningMode': 'shared' | 'dedicated';
|
|
7641
|
+
/** Target region name Example: "europe-west" */
|
|
7642
|
+
'region': string;
|
|
7643
|
+
/** Mode: include (only these projects/resources use this egress IP) or exclude (all except these use this egress IP) Example: "include" */
|
|
7644
|
+
'mode'?: 'include' | 'exclude';
|
|
7645
|
+
/** Egress IP rules - array of projects the rule applies to */
|
|
7646
|
+
'rules'?: {
|
|
7647
|
+
/** Project internal ID */
|
|
7648
|
+
'id': string;
|
|
7649
|
+
/** Rule restrictions */
|
|
7650
|
+
'restrictions': {
|
|
7651
|
+
/** Whether restrictions scoping the rule to specific resources should be applied. */
|
|
7652
|
+
'enabled': boolean;
|
|
7653
|
+
/** Resources the rule should be restricted to */
|
|
7654
|
+
'resources': {
|
|
7655
|
+
/** Resource type */
|
|
7656
|
+
'type': 'service' | 'job';
|
|
7657
|
+
/** Resource internal ID */
|
|
7658
|
+
'id': string;
|
|
7659
|
+
}[];
|
|
7660
|
+
};
|
|
7661
|
+
}[];
|
|
7662
|
+
};
|
|
7663
|
+
};
|
|
7664
|
+
/** Updates an egress IP */
|
|
7665
|
+
declare class PatchEgressipEndpoint extends PatchApiEndpoint<PatchEgressipRequest, PatchEgressipResult> {
|
|
7666
|
+
description: string;
|
|
7667
|
+
withAuth: boolean;
|
|
7668
|
+
requiredPermissions: string;
|
|
7669
|
+
endpointUrl: (opts: PatchEgressipRequest) => string;
|
|
7670
|
+
body: (payload: PatchEgressipRequest) => string;
|
|
7671
|
+
}
|
|
7672
|
+
|
|
7673
|
+
type DeleteEgressipResult = any;
|
|
7674
|
+
type DeleteEgressipCall = (opts: DeleteEgressipRequest) => Promise<ApiCallResponse<DeleteEgressipResult>>;
|
|
7675
|
+
type DeleteEgressipRequest = {
|
|
7676
|
+
parameters: DeleteEgressipParameters;
|
|
7677
|
+
};
|
|
7678
|
+
type DeleteEgressipParameters = {
|
|
7679
|
+
/** ID of the egress IP */
|
|
7680
|
+
'egressIpId': string;
|
|
7681
|
+
};
|
|
7682
|
+
/** Deletes the given egress IP. */
|
|
7683
|
+
declare class DeleteEgressipEndpoint extends DeleteApiEndpoint<DeleteEgressipRequest, DeleteEgressipResult> {
|
|
7684
|
+
description: string;
|
|
7685
|
+
withAuth: boolean;
|
|
7686
|
+
requiredPermissions: string;
|
|
7687
|
+
endpointUrl: (opts: DeleteEgressipRequest) => string;
|
|
7688
|
+
body: () => undefined;
|
|
7689
|
+
}
|
|
7690
|
+
|
|
7202
7691
|
type ListLogsinksResult = {
|
|
7203
7692
|
/** An array of log sinks added to this account. */
|
|
7204
7693
|
'logSinks': {
|
|
@@ -8944,7 +9433,7 @@ type ListRegistrycredentialsResult = {
|
|
|
8944
9433
|
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
8945
9434
|
'name': string;
|
|
8946
9435
|
/** The provider of the docker registry. */
|
|
8947
|
-
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9436
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
8948
9437
|
/** The URL of the docker registry. */
|
|
8949
9438
|
'registryUrl'?: string;
|
|
8950
9439
|
'aws'?: {
|
|
@@ -9004,7 +9493,7 @@ type AddRegistrycredentialsResult = {
|
|
|
9004
9493
|
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
9005
9494
|
'name': string;
|
|
9006
9495
|
/** The provider of the docker registry. */
|
|
9007
|
-
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9496
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9008
9497
|
/** The URL of the docker registry. */
|
|
9009
9498
|
'registryUrl'?: string;
|
|
9010
9499
|
'aws'?: {
|
|
@@ -9052,7 +9541,7 @@ type AddRegistrycredentialsData = {
|
|
|
9052
9541
|
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
9053
9542
|
'name': string;
|
|
9054
9543
|
/** The provider of the docker registry. */
|
|
9055
|
-
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9544
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9056
9545
|
/** The URL of the docker registry. */
|
|
9057
9546
|
'registryUrl'?: string;
|
|
9058
9547
|
'aws'?: {
|
|
@@ -9107,7 +9596,7 @@ type GetRegistrycredentialsResult = {
|
|
|
9107
9596
|
/** The name of the docker credentials. Example: "Example Docker Credentials" */
|
|
9108
9597
|
'name': string;
|
|
9109
9598
|
/** The provider of the docker registry. */
|
|
9110
|
-
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9599
|
+
'provider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9111
9600
|
/** The URL of the docker registry. */
|
|
9112
9601
|
'registryUrl'?: string;
|
|
9113
9602
|
'aws'?: {
|
|
@@ -9930,7 +10419,7 @@ type CreateProjectResult = {
|
|
|
9930
10419
|
'enabled'?: boolean;
|
|
9931
10420
|
'configuration'?: {
|
|
9932
10421
|
'credentialId': string;
|
|
9933
|
-
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10422
|
+
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
9934
10423
|
};
|
|
9935
10424
|
};
|
|
9936
10425
|
/** Advanced project networking settings. */
|
|
@@ -10159,7 +10648,7 @@ type PutProjectResult = {
|
|
|
10159
10648
|
'enabled'?: boolean;
|
|
10160
10649
|
'configuration'?: {
|
|
10161
10650
|
'credentialId': string;
|
|
10162
|
-
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10651
|
+
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10163
10652
|
};
|
|
10164
10653
|
};
|
|
10165
10654
|
/** Advanced project networking settings. */
|
|
@@ -10388,7 +10877,7 @@ type PatchProjectResult = {
|
|
|
10388
10877
|
'enabled'?: boolean;
|
|
10389
10878
|
'configuration'?: {
|
|
10390
10879
|
'credentialId': string;
|
|
10391
|
-
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10880
|
+
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10392
10881
|
};
|
|
10393
10882
|
};
|
|
10394
10883
|
/** Advanced project networking settings. */
|
|
@@ -10562,7 +11051,7 @@ type GetProjectResult = {
|
|
|
10562
11051
|
/** The configuration of the custom registry. */
|
|
10563
11052
|
'configuration'?: {
|
|
10564
11053
|
'credentialId'?: string;
|
|
10565
|
-
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
11054
|
+
'provider'?: 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
10566
11055
|
};
|
|
10567
11056
|
};
|
|
10568
11057
|
/** An array of jobs belonging to the project. */
|
|
@@ -18270,7 +18759,7 @@ type GetJobDeploymentResult = {
|
|
|
18270
18759
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
18271
18760
|
'imagePath': string;
|
|
18272
18761
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
18273
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
18762
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
18274
18763
|
/** Does the image require authentication */
|
|
18275
18764
|
'privateImage': boolean;
|
|
18276
18765
|
};
|
|
@@ -19039,6 +19528,471 @@ declare class SuspendJobEndpoint extends PostApiEndpoint<SuspendJobRequest, Susp
|
|
|
19039
19528
|
body: (payload: SuspendJobRequest) => string;
|
|
19040
19529
|
}
|
|
19041
19530
|
|
|
19531
|
+
type ListLlmmodeldeploymentsResult = {
|
|
19532
|
+
/** An array of LLM model deployments in this project. */
|
|
19533
|
+
'llmModelDeployments': {
|
|
19534
|
+
/** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
|
|
19535
|
+
'name': string;
|
|
19536
|
+
/** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
|
|
19537
|
+
'description'?: string;
|
|
19538
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
19539
|
+
'tags'?: string[];
|
|
19540
|
+
'spec': {
|
|
19541
|
+
/** Type of model spec - custom for user-defined configuration */
|
|
19542
|
+
'type': 'custom';
|
|
19543
|
+
/** LLM model configuration including engine, architecture, and compute settings */
|
|
19544
|
+
'configuration': {
|
|
19545
|
+
'name'?: string;
|
|
19546
|
+
'engine'?: 'vllm';
|
|
19547
|
+
'revision'?: string;
|
|
19548
|
+
'nodeConfiguration'?: {
|
|
19549
|
+
'gpu'?: {
|
|
19550
|
+
'enabled'?: boolean;
|
|
19551
|
+
'configuration'?: {
|
|
19552
|
+
'gpuType'?: string;
|
|
19553
|
+
'gpuCount'?: number;
|
|
19554
|
+
};
|
|
19555
|
+
};
|
|
19556
|
+
'storage'?: {
|
|
19557
|
+
'accessMode'?: 'ReadWriteMany';
|
|
19558
|
+
/** The type of the storage. Example: "nvme" */
|
|
19559
|
+
'storageClass'?: string;
|
|
19560
|
+
/** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 6144 */
|
|
19561
|
+
'storageSize': number;
|
|
19562
|
+
'shmSize'?: number;
|
|
19563
|
+
};
|
|
19564
|
+
};
|
|
19565
|
+
'architecture'?: {
|
|
19566
|
+
'type'?: 'aggregated';
|
|
19567
|
+
'workerConfig'?: {
|
|
19568
|
+
'replicas'?: number;
|
|
19569
|
+
'parallelismConfig'?: {
|
|
19570
|
+
'tensorParallelism'?: number;
|
|
19571
|
+
'pipelineParallelism'?: number;
|
|
19572
|
+
'expertParallelism'?: number;
|
|
19573
|
+
};
|
|
19574
|
+
'sequenceLengthConfig'?: {
|
|
19575
|
+
'maxModelLength'?: number | 'auto';
|
|
19576
|
+
'maxInputLength'?: number;
|
|
19577
|
+
'maxOutputLength'?: number;
|
|
19578
|
+
};
|
|
19579
|
+
'batchingConfig'?: {
|
|
19580
|
+
'maxNumSeqs'?: number;
|
|
19581
|
+
'maxNumBatchedTokens'?: number;
|
|
19582
|
+
};
|
|
19583
|
+
'enableChunkedPrefill'?: boolean;
|
|
19584
|
+
'enablePrefixCaching'?: boolean;
|
|
19585
|
+
'enforceEager'?: boolean;
|
|
19586
|
+
'enableAsyncScheduling'?: boolean;
|
|
19587
|
+
'gpuMemoryUtilization'?: number;
|
|
19588
|
+
'trustRemoteCode'?: boolean;
|
|
19589
|
+
'dataType'?: 'auto' | 'half' | 'float16' | 'bfloat16';
|
|
19590
|
+
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
19591
|
+
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
19592
|
+
};
|
|
19593
|
+
};
|
|
19594
|
+
};
|
|
19595
|
+
};
|
|
19596
|
+
/** The unique identifier of the LLM model deployment. */
|
|
19597
|
+
'id': string;
|
|
19598
|
+
/** ID of the project that the LLM model deployment belongs to Example: "default-project" */
|
|
19599
|
+
'projectId': string;
|
|
19600
|
+
/** The entity ID (team) this deployment belongs to. */
|
|
19601
|
+
'entityId': string;
|
|
19602
|
+
'entityType': 'user' | 'team' | 'org';
|
|
19603
|
+
/** The user who created this deployment. */
|
|
19604
|
+
'creatorId': string;
|
|
19605
|
+
/** DNS configuration for the LLM model deployment. */
|
|
19606
|
+
'dns': {
|
|
19607
|
+
'base': string;
|
|
19608
|
+
'zone': string;
|
|
19609
|
+
};
|
|
19610
|
+
/** An array of ports for the LLM model deployment. */
|
|
19611
|
+
'ports': {
|
|
19612
|
+
/** The id used to identify the port across requests. */
|
|
19613
|
+
'id': string;
|
|
19614
|
+
/** The name of the port used in the public url and UI. */
|
|
19615
|
+
'name': string;
|
|
19616
|
+
/** The port number. */
|
|
19617
|
+
'internalPort': number;
|
|
19618
|
+
/** The protocol used by the port. */
|
|
19619
|
+
'protocol': string;
|
|
19620
|
+
/** If true, the port is exposed publicly. */
|
|
19621
|
+
'public': boolean;
|
|
19622
|
+
/** DNS entry for this port. */
|
|
19623
|
+
'dns'?: string;
|
|
19624
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
19625
|
+
'disableNfDomain'?: boolean;
|
|
19626
|
+
}[];
|
|
19627
|
+
/** The current status of the LLM model deployment. */
|
|
19628
|
+
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
19629
|
+
/** time of creation */
|
|
19630
|
+
'createdAt'?: string;
|
|
19631
|
+
/** time of update */
|
|
19632
|
+
'updatedAt'?: string;
|
|
19633
|
+
}[];
|
|
19634
|
+
};
|
|
19635
|
+
type ListLlmmodeldeploymentsCall = ((opts: ListLlmmodeldeploymentsRequest) => Promise<ApiCallResponse<ListLlmmodeldeploymentsResult>>) & {
|
|
19636
|
+
all: (opts: ListLlmmodeldeploymentsRequest) => Promise<ApiCallResponse<ListLlmmodeldeploymentsResult>>;
|
|
19637
|
+
};
|
|
19638
|
+
type ListLlmmodeldeploymentsRequest = {
|
|
19639
|
+
parameters: ListLlmmodeldeploymentsParameters;
|
|
19640
|
+
options?: ListLlmmodeldeploymentsOptions;
|
|
19641
|
+
};
|
|
19642
|
+
type ListLlmmodeldeploymentsParameters = {
|
|
19643
|
+
/** ID of the project */
|
|
19644
|
+
'projectId': string;
|
|
19645
|
+
};
|
|
19646
|
+
type ListLlmmodeldeploymentsOptions = {
|
|
19647
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
19648
|
+
'per_page'?: number;
|
|
19649
|
+
/** The page number to access. */
|
|
19650
|
+
'page'?: number;
|
|
19651
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
19652
|
+
'cursor'?: string;
|
|
19653
|
+
};
|
|
19654
|
+
/** Lists all LLM model deployments for a project */
|
|
19655
|
+
declare class ListLlmmodeldeploymentsEndpoint extends GetApiEndpointPaginated<ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult> {
|
|
19656
|
+
description: string;
|
|
19657
|
+
withAuth: boolean;
|
|
19658
|
+
requiredPermissions: string;
|
|
19659
|
+
endpointUrl: (opts: ListLlmmodeldeploymentsRequest) => string;
|
|
19660
|
+
body: () => undefined;
|
|
19661
|
+
}
|
|
19662
|
+
|
|
19663
|
+
type CreateLlmmodeldeploymentResult = any;
|
|
19664
|
+
type CreateLlmmodeldeploymentCall = (opts: CreateLlmmodeldeploymentRequest) => Promise<ApiCallResponse<CreateLlmmodeldeploymentResult>>;
|
|
19665
|
+
type CreateLlmmodeldeploymentRequest = {
|
|
19666
|
+
parameters: CreateLlmmodeldeploymentParameters;
|
|
19667
|
+
data: CreateLlmmodeldeploymentData;
|
|
19668
|
+
};
|
|
19669
|
+
type CreateLlmmodeldeploymentParameters = {
|
|
19670
|
+
/** ID of the project */
|
|
19671
|
+
'projectId': string;
|
|
19672
|
+
};
|
|
19673
|
+
type CreateLlmmodeldeploymentData = {
|
|
19674
|
+
/** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
|
|
19675
|
+
'name': string;
|
|
19676
|
+
/** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
|
|
19677
|
+
'description'?: string;
|
|
19678
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
19679
|
+
'tags'?: string[];
|
|
19680
|
+
'ports'?: {
|
|
19681
|
+
/** The name used to identify the port. */
|
|
19682
|
+
'name': string;
|
|
19683
|
+
/** The port number. */
|
|
19684
|
+
'internalPort': number;
|
|
19685
|
+
/** If true, the port will be exposed publicly. */
|
|
19686
|
+
'public'?: boolean;
|
|
19687
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
19688
|
+
'domains'?: string[];
|
|
19689
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
19690
|
+
'disableNfDomain'?: boolean;
|
|
19691
|
+
/** The protocol to use for the port. */
|
|
19692
|
+
'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
19693
|
+
}[];
|
|
19694
|
+
'spec': {
|
|
19695
|
+
/** Type of model spec - custom for user-defined configuration */
|
|
19696
|
+
'type': 'custom';
|
|
19697
|
+
/** LLM model configuration including engine, architecture, and compute settings */
|
|
19698
|
+
'configuration': {
|
|
19699
|
+
'name'?: string;
|
|
19700
|
+
'engine'?: 'vllm';
|
|
19701
|
+
'revision'?: string;
|
|
19702
|
+
'nodeConfiguration'?: {
|
|
19703
|
+
'gpu'?: {
|
|
19704
|
+
'enabled'?: boolean;
|
|
19705
|
+
'configuration'?: {
|
|
19706
|
+
'gpuType'?: string;
|
|
19707
|
+
'gpuCount'?: number;
|
|
19708
|
+
};
|
|
19709
|
+
};
|
|
19710
|
+
'storage'?: {
|
|
19711
|
+
'accessMode'?: 'ReadWriteMany';
|
|
19712
|
+
/** The type of the storage. Example: "nvme" */
|
|
19713
|
+
'storageClass'?: string;
|
|
19714
|
+
/** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 6144 */
|
|
19715
|
+
'storageSize': number;
|
|
19716
|
+
'shmSize'?: number;
|
|
19717
|
+
};
|
|
19718
|
+
};
|
|
19719
|
+
'architecture'?: {
|
|
19720
|
+
'type'?: 'aggregated';
|
|
19721
|
+
'workerConfig'?: {
|
|
19722
|
+
'replicas'?: number;
|
|
19723
|
+
'parallelismConfig'?: {
|
|
19724
|
+
'tensorParallelism'?: number;
|
|
19725
|
+
'pipelineParallelism'?: number;
|
|
19726
|
+
'expertParallelism'?: number;
|
|
19727
|
+
};
|
|
19728
|
+
'sequenceLengthConfig'?: {
|
|
19729
|
+
'maxModelLength'?: number | 'auto';
|
|
19730
|
+
'maxInputLength'?: number;
|
|
19731
|
+
'maxOutputLength'?: number;
|
|
19732
|
+
};
|
|
19733
|
+
'batchingConfig'?: {
|
|
19734
|
+
'maxNumSeqs'?: number;
|
|
19735
|
+
'maxNumBatchedTokens'?: number;
|
|
19736
|
+
};
|
|
19737
|
+
'enableChunkedPrefill'?: boolean;
|
|
19738
|
+
'enablePrefixCaching'?: boolean;
|
|
19739
|
+
'enforceEager'?: boolean;
|
|
19740
|
+
'enableAsyncScheduling'?: boolean;
|
|
19741
|
+
'gpuMemoryUtilization'?: number;
|
|
19742
|
+
'trustRemoteCode'?: boolean;
|
|
19743
|
+
'dataType'?: 'auto' | 'half' | 'float16' | 'bfloat16';
|
|
19744
|
+
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
19745
|
+
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
19746
|
+
};
|
|
19747
|
+
};
|
|
19748
|
+
};
|
|
19749
|
+
};
|
|
19750
|
+
};
|
|
19751
|
+
/** Create an LLM model deployment */
|
|
19752
|
+
declare class CreateLlmmodeldeploymentEndpoint extends PostApiEndpoint<CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult> {
|
|
19753
|
+
description: string;
|
|
19754
|
+
withAuth: boolean;
|
|
19755
|
+
requiredPermissions: string;
|
|
19756
|
+
endpointUrl: (opts: CreateLlmmodeldeploymentRequest) => string;
|
|
19757
|
+
body: (payload: CreateLlmmodeldeploymentRequest) => string;
|
|
19758
|
+
}
|
|
19759
|
+
|
|
19760
|
+
type GetLlmmodeldeploymentResult = {
|
|
19761
|
+
/** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
|
|
19762
|
+
'name': string;
|
|
19763
|
+
/** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
|
|
19764
|
+
'description'?: string;
|
|
19765
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
19766
|
+
'tags'?: string[];
|
|
19767
|
+
'spec': {
|
|
19768
|
+
/** Type of model spec - custom for user-defined configuration */
|
|
19769
|
+
'type': 'custom';
|
|
19770
|
+
/** LLM model configuration including engine, architecture, and compute settings */
|
|
19771
|
+
'configuration': {
|
|
19772
|
+
'name'?: string;
|
|
19773
|
+
'engine'?: 'vllm';
|
|
19774
|
+
'revision'?: string;
|
|
19775
|
+
'nodeConfiguration'?: {
|
|
19776
|
+
'gpu'?: {
|
|
19777
|
+
'enabled'?: boolean;
|
|
19778
|
+
'configuration'?: {
|
|
19779
|
+
'gpuType'?: string;
|
|
19780
|
+
'gpuCount'?: number;
|
|
19781
|
+
};
|
|
19782
|
+
};
|
|
19783
|
+
'storage'?: {
|
|
19784
|
+
'accessMode'?: 'ReadWriteMany';
|
|
19785
|
+
/** The type of the storage. Example: "nvme" */
|
|
19786
|
+
'storageClass'?: string;
|
|
19787
|
+
/** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 6144 */
|
|
19788
|
+
'storageSize': number;
|
|
19789
|
+
'shmSize'?: number;
|
|
19790
|
+
};
|
|
19791
|
+
};
|
|
19792
|
+
'architecture'?: {
|
|
19793
|
+
'type'?: 'aggregated';
|
|
19794
|
+
'workerConfig'?: {
|
|
19795
|
+
'replicas'?: number;
|
|
19796
|
+
'parallelismConfig'?: {
|
|
19797
|
+
'tensorParallelism'?: number;
|
|
19798
|
+
'pipelineParallelism'?: number;
|
|
19799
|
+
'expertParallelism'?: number;
|
|
19800
|
+
};
|
|
19801
|
+
'sequenceLengthConfig'?: {
|
|
19802
|
+
'maxModelLength'?: number | 'auto';
|
|
19803
|
+
'maxInputLength'?: number;
|
|
19804
|
+
'maxOutputLength'?: number;
|
|
19805
|
+
};
|
|
19806
|
+
'batchingConfig'?: {
|
|
19807
|
+
'maxNumSeqs'?: number;
|
|
19808
|
+
'maxNumBatchedTokens'?: number;
|
|
19809
|
+
};
|
|
19810
|
+
'enableChunkedPrefill'?: boolean;
|
|
19811
|
+
'enablePrefixCaching'?: boolean;
|
|
19812
|
+
'enforceEager'?: boolean;
|
|
19813
|
+
'enableAsyncScheduling'?: boolean;
|
|
19814
|
+
'gpuMemoryUtilization'?: number;
|
|
19815
|
+
'trustRemoteCode'?: boolean;
|
|
19816
|
+
'dataType'?: 'auto' | 'half' | 'float16' | 'bfloat16';
|
|
19817
|
+
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
19818
|
+
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
19819
|
+
};
|
|
19820
|
+
};
|
|
19821
|
+
};
|
|
19822
|
+
};
|
|
19823
|
+
/** The unique identifier of the LLM model deployment. */
|
|
19824
|
+
'id': string;
|
|
19825
|
+
/** ID of the project that the LLM model deployment belongs to Example: "default-project" */
|
|
19826
|
+
'projectId': string;
|
|
19827
|
+
/** The entity ID (team) this deployment belongs to. */
|
|
19828
|
+
'entityId': string;
|
|
19829
|
+
'entityType': 'user' | 'team' | 'org';
|
|
19830
|
+
/** The user who created this deployment. */
|
|
19831
|
+
'creatorId': string;
|
|
19832
|
+
/** DNS configuration for the LLM model deployment. */
|
|
19833
|
+
'dns': {
|
|
19834
|
+
'base': string;
|
|
19835
|
+
'zone': string;
|
|
19836
|
+
};
|
|
19837
|
+
/** An array of ports for the LLM model deployment. */
|
|
19838
|
+
'ports': {
|
|
19839
|
+
/** The id used to identify the port across requests. */
|
|
19840
|
+
'id': string;
|
|
19841
|
+
/** The name of the port used in the public url and UI. */
|
|
19842
|
+
'name': string;
|
|
19843
|
+
/** The port number. */
|
|
19844
|
+
'internalPort': number;
|
|
19845
|
+
/** The protocol used by the port. */
|
|
19846
|
+
'protocol': string;
|
|
19847
|
+
/** If true, the port is exposed publicly. */
|
|
19848
|
+
'public': boolean;
|
|
19849
|
+
/** DNS entry for this port. */
|
|
19850
|
+
'dns'?: string;
|
|
19851
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
19852
|
+
'disableNfDomain'?: boolean;
|
|
19853
|
+
}[];
|
|
19854
|
+
/** The current status of the LLM model deployment. */
|
|
19855
|
+
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
19856
|
+
/** time of creation */
|
|
19857
|
+
'createdAt'?: string;
|
|
19858
|
+
/** time of update */
|
|
19859
|
+
'updatedAt'?: string;
|
|
19860
|
+
};
|
|
19861
|
+
type GetLlmmodeldeploymentCall = (opts: GetLlmmodeldeploymentRequest) => Promise<ApiCallResponse<GetLlmmodeldeploymentResult>>;
|
|
19862
|
+
type GetLlmmodeldeploymentRequest = {
|
|
19863
|
+
parameters: GetLlmmodeldeploymentParameters;
|
|
19864
|
+
};
|
|
19865
|
+
type GetLlmmodeldeploymentParameters = {
|
|
19866
|
+
/** ID of the project */
|
|
19867
|
+
'projectId': string;
|
|
19868
|
+
/** ID of the LLM model deployment */
|
|
19869
|
+
'llmModelDeploymentId': string;
|
|
19870
|
+
};
|
|
19871
|
+
/** Gets details about an LLM model deployment */
|
|
19872
|
+
declare class GetLlmmodeldeploymentEndpoint extends GetApiEndpoint<GetLlmmodeldeploymentRequest, GetLlmmodeldeploymentResult> {
|
|
19873
|
+
description: string;
|
|
19874
|
+
withAuth: boolean;
|
|
19875
|
+
requiredPermissions: string;
|
|
19876
|
+
endpointUrl: (opts: GetLlmmodeldeploymentRequest) => string;
|
|
19877
|
+
body: () => undefined;
|
|
19878
|
+
}
|
|
19879
|
+
|
|
19880
|
+
type UpdateLlmmodeldeploymentResult = any;
|
|
19881
|
+
type UpdateLlmmodeldeploymentCall = (opts: UpdateLlmmodeldeploymentRequest) => Promise<ApiCallResponse<UpdateLlmmodeldeploymentResult>>;
|
|
19882
|
+
type UpdateLlmmodeldeploymentRequest = {
|
|
19883
|
+
parameters: UpdateLlmmodeldeploymentParameters;
|
|
19884
|
+
data: UpdateLlmmodeldeploymentData;
|
|
19885
|
+
};
|
|
19886
|
+
type UpdateLlmmodeldeploymentParameters = {
|
|
19887
|
+
/** ID of the project */
|
|
19888
|
+
'projectId': string;
|
|
19889
|
+
/** ID of the LLM model deployment */
|
|
19890
|
+
'llmModelDeploymentId': string;
|
|
19891
|
+
};
|
|
19892
|
+
type UpdateLlmmodeldeploymentData = {
|
|
19893
|
+
/** The name of the LLM model deployment. Example: "deepseek-v3-deployment" */
|
|
19894
|
+
'name'?: string;
|
|
19895
|
+
/** A description of the LLM model deployment. Example: "A deployment for DeepSeek V3 model" */
|
|
19896
|
+
'description'?: string;
|
|
19897
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
19898
|
+
'tags'?: string[];
|
|
19899
|
+
'ports'?: {
|
|
19900
|
+
/** The name used to identify the port. */
|
|
19901
|
+
'name': string;
|
|
19902
|
+
/** The port number. */
|
|
19903
|
+
'internalPort': number;
|
|
19904
|
+
/** If true, the port will be exposed publicly. */
|
|
19905
|
+
'public'?: boolean;
|
|
19906
|
+
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
19907
|
+
'domains'?: string[];
|
|
19908
|
+
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
19909
|
+
'disableNfDomain'?: boolean;
|
|
19910
|
+
/** The protocol to use for the port. */
|
|
19911
|
+
'protocol': 'HTTP' | 'HTTP/2' | 'TCP' | 'UDP';
|
|
19912
|
+
}[];
|
|
19913
|
+
'spec'?: {
|
|
19914
|
+
'configuration'?: {
|
|
19915
|
+
'name'?: string;
|
|
19916
|
+
'engine'?: 'vllm';
|
|
19917
|
+
'revision'?: string;
|
|
19918
|
+
'nodeConfiguration'?: {
|
|
19919
|
+
'gpu'?: {
|
|
19920
|
+
'enabled'?: boolean;
|
|
19921
|
+
'configuration'?: {
|
|
19922
|
+
'gpuType'?: string;
|
|
19923
|
+
'gpuCount'?: number;
|
|
19924
|
+
};
|
|
19925
|
+
};
|
|
19926
|
+
'storage'?: {
|
|
19927
|
+
'accessMode'?: 'ReadWriteMany';
|
|
19928
|
+
/** The type of the storage. Example: "nvme" */
|
|
19929
|
+
'storageClass'?: string;
|
|
19930
|
+
/** The size of the storage, in megabytes. Configurable sizes depend on the storage class. Example: 6144 */
|
|
19931
|
+
'storageSize'?: number;
|
|
19932
|
+
'shmSize'?: number;
|
|
19933
|
+
};
|
|
19934
|
+
};
|
|
19935
|
+
'architecture'?: {
|
|
19936
|
+
'type'?: 'aggregated';
|
|
19937
|
+
'workerConfig'?: {
|
|
19938
|
+
'replicas'?: number;
|
|
19939
|
+
'parallelismConfig'?: {
|
|
19940
|
+
'tensorParallelism'?: number;
|
|
19941
|
+
'pipelineParallelism'?: number;
|
|
19942
|
+
'expertParallelism'?: number;
|
|
19943
|
+
};
|
|
19944
|
+
'sequenceLengthConfig'?: {
|
|
19945
|
+
'maxModelLength'?: number | 'auto';
|
|
19946
|
+
'maxInputLength'?: number;
|
|
19947
|
+
'maxOutputLength'?: number;
|
|
19948
|
+
};
|
|
19949
|
+
'batchingConfig'?: {
|
|
19950
|
+
'maxNumSeqs'?: number;
|
|
19951
|
+
'maxNumBatchedTokens'?: number;
|
|
19952
|
+
};
|
|
19953
|
+
'enableChunkedPrefill'?: boolean;
|
|
19954
|
+
'enablePrefixCaching'?: boolean;
|
|
19955
|
+
'enforceEager'?: boolean;
|
|
19956
|
+
'enableAsyncScheduling'?: boolean;
|
|
19957
|
+
'gpuMemoryUtilization'?: number;
|
|
19958
|
+
'trustRemoteCode'?: boolean;
|
|
19959
|
+
'dataType'?: 'auto' | 'half' | 'float16' | 'bfloat16';
|
|
19960
|
+
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
19961
|
+
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
19962
|
+
};
|
|
19963
|
+
};
|
|
19964
|
+
};
|
|
19965
|
+
};
|
|
19966
|
+
};
|
|
19967
|
+
/** Updates an LLM model deployment */
|
|
19968
|
+
declare class UpdateLlmmodeldeploymentEndpoint extends PostApiEndpoint<UpdateLlmmodeldeploymentRequest, UpdateLlmmodeldeploymentResult> {
|
|
19969
|
+
description: string;
|
|
19970
|
+
withAuth: boolean;
|
|
19971
|
+
requiredPermissions: string;
|
|
19972
|
+
endpointUrl: (opts: UpdateLlmmodeldeploymentRequest) => string;
|
|
19973
|
+
body: (payload: UpdateLlmmodeldeploymentRequest) => string;
|
|
19974
|
+
}
|
|
19975
|
+
|
|
19976
|
+
type DeleteLlmmodeldeploymentResult = any;
|
|
19977
|
+
type DeleteLlmmodeldeploymentCall = (opts: DeleteLlmmodeldeploymentRequest) => Promise<ApiCallResponse<DeleteLlmmodeldeploymentResult>>;
|
|
19978
|
+
type DeleteLlmmodeldeploymentRequest = {
|
|
19979
|
+
parameters: DeleteLlmmodeldeploymentParameters;
|
|
19980
|
+
};
|
|
19981
|
+
type DeleteLlmmodeldeploymentParameters = {
|
|
19982
|
+
/** ID of the project */
|
|
19983
|
+
'projectId': string;
|
|
19984
|
+
/** ID of the LLM model deployment */
|
|
19985
|
+
'llmModelDeploymentId': string;
|
|
19986
|
+
};
|
|
19987
|
+
/** Delete an LLM model deployment */
|
|
19988
|
+
declare class DeleteLlmmodeldeploymentEndpoint extends DeleteApiEndpoint<DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult> {
|
|
19989
|
+
description: string;
|
|
19990
|
+
withAuth: boolean;
|
|
19991
|
+
requiredPermissions: string;
|
|
19992
|
+
endpointUrl: (opts: DeleteLlmmodeldeploymentRequest) => string;
|
|
19993
|
+
body: () => undefined;
|
|
19994
|
+
}
|
|
19995
|
+
|
|
19042
19996
|
type ListPipelinesResult = {
|
|
19043
19997
|
/** An array of pipelines in this project. */
|
|
19044
19998
|
'pipelines': {
|
|
@@ -20596,6 +21550,50 @@ declare class DeleteBlueprinttemplatepreviewEndpoint extends DeleteApiEndpoint<D
|
|
|
20596
21550
|
body: () => undefined;
|
|
20597
21551
|
}
|
|
20598
21552
|
|
|
21553
|
+
type PauseBlueprinttemplatepreviewResult = any;
|
|
21554
|
+
type PauseBlueprinttemplatepreviewCall = (opts: PauseBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<PauseBlueprinttemplatepreviewResult>>;
|
|
21555
|
+
type PauseBlueprinttemplatepreviewRequest = {
|
|
21556
|
+
parameters: PauseBlueprinttemplatepreviewParameters;
|
|
21557
|
+
};
|
|
21558
|
+
type PauseBlueprinttemplatepreviewParameters = {
|
|
21559
|
+
/** ID of the project */
|
|
21560
|
+
'projectId': string;
|
|
21561
|
+
/** ID of the preview blueprint */
|
|
21562
|
+
'previewBlueprintId': string;
|
|
21563
|
+
/** ID of the preview */
|
|
21564
|
+
'previewId': string;
|
|
21565
|
+
};
|
|
21566
|
+
/** Pause a preview environment generated by a preview blueprint. */
|
|
21567
|
+
declare class PauseBlueprinttemplatepreviewEndpoint extends PostApiEndpoint<PauseBlueprinttemplatepreviewRequest, PauseBlueprinttemplatepreviewResult> {
|
|
21568
|
+
description: string;
|
|
21569
|
+
withAuth: boolean;
|
|
21570
|
+
requiredPermissions: string;
|
|
21571
|
+
endpointUrl: (opts: PauseBlueprinttemplatepreviewRequest) => string;
|
|
21572
|
+
body: () => undefined;
|
|
21573
|
+
}
|
|
21574
|
+
|
|
21575
|
+
type ResumeBlueprinttemplatepreviewResult = any;
|
|
21576
|
+
type ResumeBlueprinttemplatepreviewCall = (opts: ResumeBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<ResumeBlueprinttemplatepreviewResult>>;
|
|
21577
|
+
type ResumeBlueprinttemplatepreviewRequest = {
|
|
21578
|
+
parameters: ResumeBlueprinttemplatepreviewParameters;
|
|
21579
|
+
};
|
|
21580
|
+
type ResumeBlueprinttemplatepreviewParameters = {
|
|
21581
|
+
/** ID of the project */
|
|
21582
|
+
'projectId': string;
|
|
21583
|
+
/** ID of the preview blueprint */
|
|
21584
|
+
'previewBlueprintId': string;
|
|
21585
|
+
/** ID of the preview */
|
|
21586
|
+
'previewId': string;
|
|
21587
|
+
};
|
|
21588
|
+
/** Resume a preview environment generated by a preview blueprint. */
|
|
21589
|
+
declare class ResumeBlueprinttemplatepreviewEndpoint extends PostApiEndpoint<ResumeBlueprinttemplatepreviewRequest, ResumeBlueprinttemplatepreviewResult> {
|
|
21590
|
+
description: string;
|
|
21591
|
+
withAuth: boolean;
|
|
21592
|
+
requiredPermissions: string;
|
|
21593
|
+
endpointUrl: (opts: ResumeBlueprinttemplatepreviewRequest) => string;
|
|
21594
|
+
body: () => undefined;
|
|
21595
|
+
}
|
|
21596
|
+
|
|
20599
21597
|
type RunPreviewblueprintResult = any;
|
|
20600
21598
|
type RunPreviewblueprintCall = (opts: RunPreviewblueprintRequest) => Promise<ApiCallResponse<RunPreviewblueprintResult>>;
|
|
20601
21599
|
type RunPreviewblueprintRequest = {
|
|
@@ -22889,9 +23887,6 @@ type CreateServiceCombinedResult = {
|
|
|
22889
23887
|
};
|
|
22890
23888
|
};
|
|
22891
23889
|
};
|
|
22892
|
-
'deploymentSysctlSettings'?: {
|
|
22893
|
-
'vm.max_map_count'?: number;
|
|
22894
|
-
};
|
|
22895
23890
|
'createOptions'?: {
|
|
22896
23891
|
'volumesToAttach'?: string[];
|
|
22897
23892
|
};
|
|
@@ -23836,9 +24831,6 @@ type PutServiceCombinedResult = {
|
|
|
23836
24831
|
};
|
|
23837
24832
|
};
|
|
23838
24833
|
};
|
|
23839
|
-
'deploymentSysctlSettings'?: {
|
|
23840
|
-
'vm.max_map_count'?: number;
|
|
23841
|
-
};
|
|
23842
24834
|
'createOptions'?: {
|
|
23843
24835
|
'volumesToAttach'?: string[];
|
|
23844
24836
|
};
|
|
@@ -24783,9 +25775,6 @@ type PatchServiceCombinedResult = {
|
|
|
24783
25775
|
};
|
|
24784
25776
|
};
|
|
24785
25777
|
};
|
|
24786
|
-
'deploymentSysctlSettings'?: {
|
|
24787
|
-
'vm.max_map_count'?: number;
|
|
24788
|
-
};
|
|
24789
25778
|
'createOptions'?: {
|
|
24790
25779
|
'volumesToAttach'?: string[];
|
|
24791
25780
|
};
|
|
@@ -25607,9 +26596,6 @@ type CreateServiceDeploymentResult = {
|
|
|
25607
26596
|
};
|
|
25608
26597
|
};
|
|
25609
26598
|
};
|
|
25610
|
-
'deploymentSysctlSettings'?: {
|
|
25611
|
-
'vm.max_map_count'?: number;
|
|
25612
|
-
};
|
|
25613
26599
|
'createOptions'?: {
|
|
25614
26600
|
'volumesToAttach'?: string[];
|
|
25615
26601
|
};
|
|
@@ -26508,9 +27494,6 @@ type PutServiceDeploymentResult = {
|
|
|
26508
27494
|
};
|
|
26509
27495
|
};
|
|
26510
27496
|
};
|
|
26511
|
-
'deploymentSysctlSettings'?: {
|
|
26512
|
-
'vm.max_map_count'?: number;
|
|
26513
|
-
};
|
|
26514
27497
|
'createOptions'?: {
|
|
26515
27498
|
'volumesToAttach'?: string[];
|
|
26516
27499
|
};
|
|
@@ -27409,9 +28392,6 @@ type PatchServiceDeploymentResult = {
|
|
|
27409
28392
|
};
|
|
27410
28393
|
};
|
|
27411
28394
|
};
|
|
27412
|
-
'deploymentSysctlSettings'?: {
|
|
27413
|
-
'vm.max_map_count'?: number;
|
|
27414
|
-
};
|
|
27415
28395
|
'createOptions'?: {
|
|
27416
28396
|
'volumesToAttach'?: string[];
|
|
27417
28397
|
};
|
|
@@ -28119,7 +29099,7 @@ type GetServiceResult = {
|
|
|
28119
29099
|
/** Path of the external image excluding the hostname */
|
|
28120
29100
|
'imagePath': string;
|
|
28121
29101
|
/** Registry provider hosting the external image */
|
|
28122
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
29102
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
28123
29103
|
/** Does the image require authentication */
|
|
28124
29104
|
'privateImage': boolean;
|
|
28125
29105
|
};
|
|
@@ -29122,7 +30102,7 @@ type GetServiceDeploymentResult = {
|
|
|
29122
30102
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
29123
30103
|
'imagePath': string;
|
|
29124
30104
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
29125
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
30105
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
29126
30106
|
/** Does the image require authentication */
|
|
29127
30107
|
'privateImage': boolean;
|
|
29128
30108
|
};
|
|
@@ -30914,6 +31894,10 @@ type ListRegionsResult = {
|
|
|
30914
31894
|
'name': string;
|
|
30915
31895
|
/** The name of the group this region belongs to. Example: "EMEA" */
|
|
30916
31896
|
'regionName': string;
|
|
31897
|
+
'provider'?: {
|
|
31898
|
+
'id': string;
|
|
31899
|
+
'region': string;
|
|
31900
|
+
};
|
|
30917
31901
|
/** The list of GPUs available in this region. */
|
|
30918
31902
|
'gpuDevices': {
|
|
30919
31903
|
/** The ID of the GPU device. Example: "h100-80" */
|
|
@@ -32331,6 +33315,7 @@ declare class ApiClient {
|
|
|
32331
33315
|
subdomain: GetSubdomainCall & {
|
|
32332
33316
|
path: GetSubdomainPathCall;
|
|
32333
33317
|
};
|
|
33318
|
+
egressIp: GetEgressipCall;
|
|
32334
33319
|
logSink: GetLogsinkCall;
|
|
32335
33320
|
notification: GetNotificationCall;
|
|
32336
33321
|
registryCredentials: GetRegistrycredentialsCall;
|
|
@@ -32359,6 +33344,7 @@ declare class ApiClient {
|
|
|
32359
33344
|
metricsRange: GetJobMetricsRangeCall;
|
|
32360
33345
|
buildMetricsRange: GetJobBuildMetricsRangeCall;
|
|
32361
33346
|
};
|
|
33347
|
+
llmModelDeployment: GetLlmmodeldeploymentCall;
|
|
32362
33348
|
pipeline: GetPipelineCall;
|
|
32363
33349
|
previewTemplate: GetPreviewtemplateCall;
|
|
32364
33350
|
previewTemplateRun: GetPreviewtemplaterunCall;
|
|
@@ -32420,6 +33406,7 @@ declare class ApiClient {
|
|
|
32420
33406
|
subdomain: {
|
|
32421
33407
|
path: ListSubdomainPathCall;
|
|
32422
33408
|
};
|
|
33409
|
+
egressIps: ListEgressipsCall;
|
|
32423
33410
|
logSinks: ListLogsinksCall;
|
|
32424
33411
|
notifications: ListNotificationsCall;
|
|
32425
33412
|
registryCredentials: ListRegistrycredentialsCall;
|
|
@@ -32431,6 +33418,7 @@ declare class ApiClient {
|
|
|
32431
33418
|
projects: ListProjectsCall;
|
|
32432
33419
|
addons: ListAddonsCall;
|
|
32433
33420
|
jobs: ListJobsCall;
|
|
33421
|
+
llmModelDeployments: ListLlmmodeldeploymentsCall;
|
|
32434
33422
|
pipelines: ListPipelinesCall;
|
|
32435
33423
|
pipelineTemplatePreviews: ListPipelinetemplatepreviewsCall;
|
|
32436
33424
|
previewTemplateRuns: ListPreviewtemplaterunsCall;
|
|
@@ -32466,6 +33454,7 @@ declare class ApiClient {
|
|
|
32466
33454
|
cluster: PatchCloudClusterCall;
|
|
32467
33455
|
integration: PatchCloudIntegrationCall;
|
|
32468
33456
|
};
|
|
33457
|
+
egressIp: PatchEgressipCall;
|
|
32469
33458
|
loadBalancer: PatchLoadbalancerCall;
|
|
32470
33459
|
project: PatchProjectCall;
|
|
32471
33460
|
addon: PatchAddonCall;
|
|
@@ -32492,6 +33481,7 @@ declare class ApiClient {
|
|
|
32492
33481
|
subdomain: DeleteSubdomainCall & {
|
|
32493
33482
|
path: DeleteSubdomainPathCall;
|
|
32494
33483
|
};
|
|
33484
|
+
egressIp: DeleteEgressipCall;
|
|
32495
33485
|
logSink: DeleteLogsinkCall;
|
|
32496
33486
|
notification: DeleteNotificationCall;
|
|
32497
33487
|
registryCredentials: DeleteRegistrycredentialsCall;
|
|
@@ -32502,6 +33492,7 @@ declare class ApiClient {
|
|
|
32502
33492
|
};
|
|
32503
33493
|
backup: DeleteBackupCall;
|
|
32504
33494
|
job: DeleteJobCall;
|
|
33495
|
+
llmModelDeployment: DeleteLlmmodeldeploymentCall;
|
|
32505
33496
|
pipelineTemplatePreview: DeletePipelinetemplatepreviewCall;
|
|
32506
33497
|
previewBlueprint: DeletePreviewblueprintCall;
|
|
32507
33498
|
blueprintTemplatePreview: DeleteBlueprinttemplatepreviewCall;
|
|
@@ -32521,6 +33512,7 @@ declare class ApiClient {
|
|
|
32521
33512
|
integration: CreateCloudIntegrationCall;
|
|
32522
33513
|
};
|
|
32523
33514
|
domain: CreateDomainCall;
|
|
33515
|
+
egressIp: CreateEgressipCall;
|
|
32524
33516
|
logSink: CreateLogsinkCall;
|
|
32525
33517
|
notification: CreateNotificationCall;
|
|
32526
33518
|
customVcs: {
|
|
@@ -32535,6 +33527,7 @@ declare class ApiClient {
|
|
|
32535
33527
|
cron: CreateJobCronCall;
|
|
32536
33528
|
manual: CreateJobManualCall;
|
|
32537
33529
|
};
|
|
33530
|
+
llmModelDeployment: CreateLlmmodeldeploymentCall;
|
|
32538
33531
|
previewBlueprint: CreatePreviewblueprintCall;
|
|
32539
33532
|
secret: CreateSecretCall;
|
|
32540
33533
|
service: {
|
|
@@ -32552,6 +33545,7 @@ declare class ApiClient {
|
|
|
32552
33545
|
cluster: PutCloudClusterCall;
|
|
32553
33546
|
integration: PutCloudIntegrationCall;
|
|
32554
33547
|
};
|
|
33548
|
+
egressIp: PutEgressipCall;
|
|
32555
33549
|
loadBalancer: PutLoadbalancerCall;
|
|
32556
33550
|
project: PutProjectCall;
|
|
32557
33551
|
addon: PutAddonCall;
|
|
@@ -32637,6 +33631,7 @@ declare class ApiClient {
|
|
|
32637
33631
|
runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
|
|
32638
33632
|
settings: UpdateJobSettingsCall;
|
|
32639
33633
|
};
|
|
33634
|
+
llmModelDeployment: UpdateLlmmodeldeploymentCall;
|
|
32640
33635
|
previewTemplate: UpdatePreviewtemplateCall;
|
|
32641
33636
|
releaseFlow: UpdateReleaseflowCall;
|
|
32642
33637
|
previewBlueprint: UpdatePreviewblueprintCall;
|
|
@@ -32663,12 +33658,14 @@ declare class ApiClient {
|
|
|
32663
33658
|
logSink: PauseLogsinkCall;
|
|
32664
33659
|
addon: PauseAddonCall;
|
|
32665
33660
|
job: PauseJobCall;
|
|
33661
|
+
blueprintTemplatePreview: PauseBlueprinttemplatepreviewCall;
|
|
32666
33662
|
service: PauseServiceCall;
|
|
32667
33663
|
};
|
|
32668
33664
|
resume: {
|
|
32669
33665
|
logSink: ResumeLogsinkCall;
|
|
32670
33666
|
addon: ResumeAddonCall;
|
|
32671
33667
|
job: ResumeJobCall;
|
|
33668
|
+
blueprintTemplatePreview: ResumeBlueprinttemplatepreviewCall;
|
|
32672
33669
|
service: ResumeServiceCall;
|
|
32673
33670
|
};
|
|
32674
33671
|
backup: {
|
|
@@ -32796,6 +33793,7 @@ declare class ApiClient {
|
|
|
32796
33793
|
subdomain: GetSubdomainEndpoint & {
|
|
32797
33794
|
path: GetSubdomainPathEndpoint;
|
|
32798
33795
|
};
|
|
33796
|
+
egressIp: GetEgressipEndpoint;
|
|
32799
33797
|
logSink: GetLogsinkEndpoint;
|
|
32800
33798
|
notification: GetNotificationEndpoint;
|
|
32801
33799
|
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
@@ -32816,6 +33814,7 @@ declare class ApiClient {
|
|
|
32816
33814
|
runtimeEnvironment: GetJobRuntimeenvironmentEndpoint;
|
|
32817
33815
|
runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
|
|
32818
33816
|
};
|
|
33817
|
+
llmModelDeployment: GetLlmmodeldeploymentEndpoint;
|
|
32819
33818
|
pipeline: GetPipelineEndpoint;
|
|
32820
33819
|
previewTemplate: GetPreviewtemplateEndpoint;
|
|
32821
33820
|
previewTemplateRun: GetPreviewtemplaterunEndpoint;
|
|
@@ -32869,6 +33868,7 @@ declare class ApiClient {
|
|
|
32869
33868
|
subdomain: {
|
|
32870
33869
|
path: ListSubdomainPathEndpoint;
|
|
32871
33870
|
};
|
|
33871
|
+
egressIps: ListEgressipsEndpoint;
|
|
32872
33872
|
logSinks: ListLogsinksEndpoint;
|
|
32873
33873
|
notifications: ListNotificationsEndpoint;
|
|
32874
33874
|
registryCredentials: ListRegistrycredentialsEndpoint;
|
|
@@ -32880,6 +33880,7 @@ declare class ApiClient {
|
|
|
32880
33880
|
projects: ListProjectsEndpoint;
|
|
32881
33881
|
addons: ListAddonsEndpoint;
|
|
32882
33882
|
jobs: ListJobsEndpoint;
|
|
33883
|
+
llmModelDeployments: ListLlmmodeldeploymentsEndpoint;
|
|
32883
33884
|
pipelines: ListPipelinesEndpoint;
|
|
32884
33885
|
pipelineTemplatePreviews: ListPipelinetemplatepreviewsEndpoint;
|
|
32885
33886
|
previewTemplateRuns: ListPreviewtemplaterunsEndpoint;
|
|
@@ -32915,6 +33916,7 @@ declare class ApiClient {
|
|
|
32915
33916
|
cluster: PatchCloudClusterEndpoint;
|
|
32916
33917
|
integration: PatchCloudIntegrationEndpoint;
|
|
32917
33918
|
};
|
|
33919
|
+
egressIp: PatchEgressipEndpoint;
|
|
32918
33920
|
loadBalancer: PatchLoadbalancerEndpoint;
|
|
32919
33921
|
project: PatchProjectEndpoint;
|
|
32920
33922
|
addon: PatchAddonEndpoint;
|
|
@@ -32941,6 +33943,7 @@ declare class ApiClient {
|
|
|
32941
33943
|
subdomain: DeleteSubdomainEndpoint & {
|
|
32942
33944
|
path: DeleteSubdomainPathEndpoint;
|
|
32943
33945
|
};
|
|
33946
|
+
egressIp: DeleteEgressipEndpoint;
|
|
32944
33947
|
logSink: DeleteLogsinkEndpoint;
|
|
32945
33948
|
notification: DeleteNotificationEndpoint;
|
|
32946
33949
|
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
@@ -32951,6 +33954,7 @@ declare class ApiClient {
|
|
|
32951
33954
|
};
|
|
32952
33955
|
backup: DeleteBackupEndpoint;
|
|
32953
33956
|
job: DeleteJobEndpoint;
|
|
33957
|
+
llmModelDeployment: DeleteLlmmodeldeploymentEndpoint;
|
|
32954
33958
|
pipelineTemplatePreview: DeletePipelinetemplatepreviewEndpoint;
|
|
32955
33959
|
previewBlueprint: DeletePreviewblueprintEndpoint;
|
|
32956
33960
|
blueprintTemplatePreview: DeleteBlueprinttemplatepreviewEndpoint;
|
|
@@ -32970,6 +33974,7 @@ declare class ApiClient {
|
|
|
32970
33974
|
integration: CreateCloudIntegrationEndpoint;
|
|
32971
33975
|
};
|
|
32972
33976
|
domain: CreateDomainEndpoint;
|
|
33977
|
+
egressIp: CreateEgressipEndpoint;
|
|
32973
33978
|
logSink: CreateLogsinkEndpoint;
|
|
32974
33979
|
notification: CreateNotificationEndpoint;
|
|
32975
33980
|
customVcs: {
|
|
@@ -32984,6 +33989,7 @@ declare class ApiClient {
|
|
|
32984
33989
|
cron: CreateJobCronEndpoint;
|
|
32985
33990
|
manual: CreateJobManualEndpoint;
|
|
32986
33991
|
};
|
|
33992
|
+
llmModelDeployment: CreateLlmmodeldeploymentEndpoint;
|
|
32987
33993
|
previewBlueprint: CreatePreviewblueprintEndpoint;
|
|
32988
33994
|
secret: CreateSecretEndpoint;
|
|
32989
33995
|
service: {
|
|
@@ -33001,6 +34007,7 @@ declare class ApiClient {
|
|
|
33001
34007
|
cluster: PutCloudClusterEndpoint;
|
|
33002
34008
|
integration: PutCloudIntegrationEndpoint;
|
|
33003
34009
|
};
|
|
34010
|
+
egressIp: PutEgressipEndpoint;
|
|
33004
34011
|
loadBalancer: PutLoadbalancerEndpoint;
|
|
33005
34012
|
project: PutProjectEndpoint;
|
|
33006
34013
|
addon: PutAddonEndpoint;
|
|
@@ -33086,6 +34093,7 @@ declare class ApiClient {
|
|
|
33086
34093
|
runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
|
|
33087
34094
|
settings: UpdateJobSettingsEndpoint;
|
|
33088
34095
|
};
|
|
34096
|
+
llmModelDeployment: UpdateLlmmodeldeploymentEndpoint;
|
|
33089
34097
|
previewTemplate: UpdatePreviewtemplateEndpoint;
|
|
33090
34098
|
releaseFlow: UpdateReleaseflowEndpoint;
|
|
33091
34099
|
previewBlueprint: UpdatePreviewblueprintEndpoint;
|
|
@@ -33112,12 +34120,14 @@ declare class ApiClient {
|
|
|
33112
34120
|
logSink: PauseLogsinkEndpoint;
|
|
33113
34121
|
addon: PauseAddonEndpoint;
|
|
33114
34122
|
job: PauseJobEndpoint;
|
|
34123
|
+
blueprintTemplatePreview: PauseBlueprinttemplatepreviewEndpoint;
|
|
33115
34124
|
service: PauseServiceEndpoint;
|
|
33116
34125
|
};
|
|
33117
34126
|
resume: {
|
|
33118
34127
|
logSink: ResumeLogsinkEndpoint;
|
|
33119
34128
|
addon: ResumeAddonEndpoint;
|
|
33120
34129
|
job: ResumeJobEndpoint;
|
|
34130
|
+
blueprintTemplatePreview: ResumeBlueprinttemplatepreviewEndpoint;
|
|
33121
34131
|
service: ResumeServiceEndpoint;
|
|
33122
34132
|
};
|
|
33123
34133
|
backup: {
|
|
@@ -33193,5 +34203,5 @@ declare class ApiClient {
|
|
|
33193
34203
|
protected baseUrl: () => string | undefined;
|
|
33194
34204
|
}
|
|
33195
34205
|
|
|
33196
|
-
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateGlobalsecretEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteGlobalsecretEndpoint, DeleteJobEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTemplateEndpoint, DeleteVolumeBackupEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, DisableSubdomainCdnEndpoint, DrainCloudClusterNodeEndpoint, EnableSubdomainCdnEndpoint, ExecCommandStandard, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupRestoresEndpoint, GetAddonBackupsEndpoint, GetAddonBackupschedulesEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonRestoresEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationEndpoint, GetCloudClusterEndpoint, GetCloudIntegrationEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetDomaincertificateEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetPipelineEndpoint, GetPreviewblueprintEndpoint, GetPreviewblueprintrunEndpoint, GetPreviewtemplateEndpoint, GetPreviewtemplaterunEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetReleaseflowEndpoint, GetReleaseflowrunEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBranchesEndpoint, GetServiceBuildEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetServicePullrequestsEndpoint, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentdetailsEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchGlobalsecretEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PauseAddonEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutGlobalsecretEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutTagEndpoint, ResetAddonEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeJobEndpoint, ResumeLogsinkEndpoint, ResumeServiceEndpoint, RetainAddonBackupEndpoint, RunPreviewblueprintEndpoint, RunPreviewtemplateEndpoint, RunReleaseflowEndpoint, RunTemplateEndpoint, RunWorkflowEndpoint, ScaleAddonEndpoint, ScaleJobEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, SuspendJobEndpoint, UnassignSubdomainEndpoint, UnassignSubdomainPathEndpoint, UncordonCloudClusterNodeEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
|
|
33197
|
-
export type { AbortAddonBackupCall, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortPreviewblueprintrunCall, AbortPreviewblueprintrunParameters, AbortPreviewblueprintrunRequest, AbortPreviewblueprintrunResult, AbortReleaseflowrunCall, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AbortWorkflowrunCall, AbortWorkflowrunParameters, AbortWorkflowrunRequest, AbortWorkflowrunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClientContext, ApiClientContextWrapper, ApiClientOpts, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, BackupVolumeCall, BackupVolumeData, BackupVolumeParameters, BackupVolumeRequest, BackupVolumeResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainRequest, CreateDomainResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, CreateWorkflowCall, CreateWorkflowData, CreateWorkflowParameters, CreateWorkflowRequest, CreateWorkflowResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteBackupCall, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteBlueprinttemplatepreviewCall, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewParameters, DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult, DeletePreviewblueprintCall, DeletePreviewblueprintParameters, DeletePreviewblueprintRequest, DeletePreviewblueprintResult, DeleteProjectCall, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeBackupCall, DeleteVolumeBackupParameters, DeleteVolumeBackupRequest, DeleteVolumeBackupResult, DeleteVolumeCall, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetBackupdestinationCall, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobHealthchecksCall, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLoadbalancerCall, GetLoadbalancerParameters, GetLoadbalancerRequest, GetLoadbalancerResult, GetLogsinkCall, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewblueprintCall, GetPreviewblueprintParameters, GetPreviewblueprintRequest, GetPreviewblueprintResult, GetPreviewblueprintrunCall, GetPreviewblueprintrunParameters, GetPreviewblueprintrunRequest, GetPreviewblueprintrunResult, GetPreviewtemplateCall, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceHealthchecksCall, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeBackupCall, GetVolumeBackupParameters, GetVolumeBackupRequest, GetVolumeBackupResult, GetVolumeBackupsCall, GetVolumeBackupsOptions, GetVolumeBackupsParameters, GetVolumeBackupsRequest, GetVolumeBackupsResult, GetVolumeCall, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, GetWorkflowCall, GetWorkflowParameters, GetWorkflowRequest, GetWorkflowResult, GetWorkflowrunCall, GetWorkflowrunParameters, GetWorkflowrunRequest, GetWorkflowrunResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPipelinetemplatepreviewsCall, ListPipelinetemplatepreviewsOptions, ListPipelinetemplatepreviewsParameters, ListPipelinetemplatepreviewsRequest, ListPipelinetemplatepreviewsResult, ListPlansCall, ListPlansRequest, ListPlansResult, ListPreviewblueprintrunsCall, ListPreviewblueprintrunsOptions, ListPreviewblueprintrunsParameters, ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult, ListPreviewblueprintsCall, ListPreviewblueprintsOptions, ListPreviewblueprintsParameters, ListPreviewblueprintsRequest, ListPreviewblueprintsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesOptions, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, ListWorkflowrunsCall, ListWorkflowrunsOptions, ListWorkflowrunsParameters, ListWorkflowrunsRequest, ListWorkflowrunsResult, ListWorkflowsCall, ListWorkflowsOptions, ListWorkflowsParameters, ListWorkflowsRequest, ListWorkflowsResult, LogLine, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, PatchAddonCall, PatchAddonData, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchGlobalsecretCall, PatchGlobalsecretData, PatchGlobalsecretParameters, PatchGlobalsecretRequest, PatchGlobalsecretResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchProjectCall, PatchProjectData, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PutAddonCall, PutAddonData, PutAddonParameters, PutAddonRequest, PutAddonResult, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretRequest, PutGlobalsecretResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerRequest, PutLoadbalancerResult, PutProjectCall, PutProjectData, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunPreviewblueprintCall, RunPreviewblueprintData, RunPreviewblueprintParameters, RunPreviewblueprintRequest, RunPreviewblueprintResult, RunPreviewtemplateCall, RunPreviewtemplateData, RunPreviewtemplateParameters, RunPreviewtemplateRequest, RunPreviewtemplateResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, RunWorkflowCall, RunWorkflowData, RunWorkflowParameters, RunWorkflowRequest, RunWorkflowResult, ScaleAddonCall, ScaleAddonData, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewblueprintCall, UpdatePreviewblueprintData, UpdatePreviewblueprintParameters, UpdatePreviewblueprintRequest, UpdatePreviewblueprintResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UpdateWorkflowCall, UpdateWorkflowData, UpdateWorkflowParameters, UpdateWorkflowRequest, UpdateWorkflowResult, UploadOptions, VerifyDomainCall, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
34206
|
+
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateEgressipEndpoint, CreateGlobalsecretEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLlmmodeldeploymentEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteEgressipEndpoint, DeleteGlobalsecretEndpoint, DeleteJobEndpoint, DeleteLlmmodeldeploymentEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTemplateEndpoint, DeleteVolumeBackupEndpoint, DeleteVolumeEndpoint, DetachVolumeEndpoint, DisableSubdomainCdnEndpoint, DrainCloudClusterNodeEndpoint, EnableSubdomainCdnEndpoint, ExecCommandStandard, GetAddonBackupDownloadEndpoint, GetAddonBackupEndpoint, GetAddonBackupRestoresEndpoint, GetAddonBackupsEndpoint, GetAddonBackupschedulesEndpoint, GetAddonContainersEndpoint, GetAddonCredentialsEndpoint, GetAddonEndpoint, GetAddonRestoresEndpoint, GetAddonTypesEndpoint, GetAddonVersionEndpoint, GetApiEndpoint, GetApiEndpointPaginated, GetBackupdestinationEndpoint, GetCloudClusterEndpoint, GetCloudIntegrationEndpoint, GetDnsidEndpoint, GetDomainEndpoint, GetDomaincertificateEndpoint, GetEgressipEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLlmmodeldeploymentEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetPipelineEndpoint, GetPreviewblueprintEndpoint, GetPreviewblueprintrunEndpoint, GetPreviewtemplateEndpoint, GetPreviewtemplaterunEndpoint, GetProjectEndpoint, GetRegistrycredentialsEndpoint, GetReleaseflowEndpoint, GetReleaseflowrunEndpoint, GetSecretEndpoint, GetSecretdetailsEndpoint, GetSecretlinkEndpoint, GetServiceBranchesEndpoint, GetServiceBuildEndpoint, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentsEndpoint, GetServiceBuildsEndpoint, GetServiceContainersEndpoint, GetServiceDeploymentEndpoint, GetServiceEndpoint, GetServiceHealthchecksEndpoint, GetServicePortsEndpoint, GetServicePullrequestsEndpoint, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentdetailsEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListEgressipsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLlmmodeldeploymentsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchEgressipEndpoint, PatchGlobalsecretEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PauseAddonEndpoint, PauseBlueprinttemplatepreviewEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutEgressipEndpoint, PutGlobalsecretEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutTagEndpoint, ResetAddonEndpoint, RestartAddonEndpoint, RestartServiceEndpoint, RestoreAddonBackupEndpoint, ResumeAddonEndpoint, ResumeBlueprinttemplatepreviewEndpoint, ResumeJobEndpoint, ResumeLogsinkEndpoint, ResumeServiceEndpoint, RetainAddonBackupEndpoint, RunPreviewblueprintEndpoint, RunPreviewtemplateEndpoint, RunReleaseflowEndpoint, RunTemplateEndpoint, RunWorkflowEndpoint, ScaleAddonEndpoint, ScaleJobEndpoint, ScaleServiceEndpoint, StartJobBuildEndpoint, StartJobRunEndpoint, StartServiceBuildEndpoint, SuspendJobEndpoint, UnassignSubdomainEndpoint, UnassignSubdomainPathEndpoint, UncordonCloudClusterNodeEndpoint, UpdateAddonNetworksettingsEndpoint, UpdateAddonSecurityEndpoint, UpdateAddonVersionEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLlmmodeldeploymentEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
|
|
34207
|
+
export type { AbortAddonBackupCall, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreOptions, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortPreviewblueprintrunCall, AbortPreviewblueprintrunParameters, AbortPreviewblueprintrunRequest, AbortPreviewblueprintrunResult, AbortReleaseflowrunCall, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AbortWorkflowrunCall, AbortWorkflowrunParameters, AbortWorkflowrunRequest, AbortWorkflowrunResult, AddBackupdestinationCall, AddBackupdestinationData, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClientContext, ApiClientContextWrapper, ApiClientOpts, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, BackupVolumeCall, BackupVolumeData, BackupVolumeParameters, BackupVolumeRequest, BackupVolumeResult, CommandResult, CordonCloudClusterNodeCall, CordonCloudClusterNodeParameters, CordonCloudClusterNodeRequest, CordonCloudClusterNodeResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainRequest, CreateDomainResult, CreateEgressipCall, CreateEgressipData, CreateEgressipRequest, CreateEgressipResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLlmmodeldeploymentCall, CreateLlmmodeldeploymentData, CreateLlmmodeldeploymentParameters, CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, CreateWorkflowCall, CreateWorkflowData, CreateWorkflowParameters, CreateWorkflowRequest, CreateWorkflowResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteBackupCall, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteBackupdestinationCall, DeleteBackupdestinationParameters, DeleteBackupdestinationRequest, DeleteBackupdestinationResult, DeleteBlueprinttemplatepreviewCall, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteEgressipCall, DeleteEgressipParameters, DeleteEgressipRequest, DeleteEgressipResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLlmmodeldeploymentCall, DeleteLlmmodeldeploymentParameters, DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewParameters, DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult, DeletePreviewblueprintCall, DeletePreviewblueprintParameters, DeletePreviewblueprintRequest, DeletePreviewblueprintResult, DeleteProjectCall, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeBackupCall, DeleteVolumeBackupParameters, DeleteVolumeBackupRequest, DeleteVolumeBackupResult, DeleteVolumeCall, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, DownloadOptions, DrainCloudClusterNodeCall, DrainCloudClusterNodeParameters, DrainCloudClusterNodeRequest, DrainCloudClusterNodeResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupRestoresCall, GetAddonBackupRestoresOptions, GetAddonBackupRestoresParameters, GetAddonBackupRestoresRequest, GetAddonBackupRestoresResult, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetBackupdestinationCall, GetBackupdestinationParameters, GetBackupdestinationRequest, GetBackupdestinationResult, GetCloudClusterCall, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudIntegrationCall, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetEgressipCall, GetEgressipParameters, GetEgressipRequest, GetEgressipResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobHealthchecksCall, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLlmmodeldeploymentCall, GetLlmmodeldeploymentParameters, GetLlmmodeldeploymentRequest, GetLlmmodeldeploymentResult, GetLoadbalancerCall, GetLoadbalancerParameters, GetLoadbalancerRequest, GetLoadbalancerResult, GetLogsinkCall, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewblueprintCall, GetPreviewblueprintParameters, GetPreviewblueprintRequest, GetPreviewblueprintResult, GetPreviewblueprintrunCall, GetPreviewblueprintrunParameters, GetPreviewblueprintrunRequest, GetPreviewblueprintrunResult, GetPreviewtemplateCall, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceHealthchecksCall, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeBackupCall, GetVolumeBackupParameters, GetVolumeBackupRequest, GetVolumeBackupResult, GetVolumeBackupsCall, GetVolumeBackupsOptions, GetVolumeBackupsParameters, GetVolumeBackupsRequest, GetVolumeBackupsResult, GetVolumeCall, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, GetWorkflowCall, GetWorkflowParameters, GetWorkflowRequest, GetWorkflowResult, GetWorkflowrunCall, GetWorkflowrunParameters, GetWorkflowrunRequest, GetWorkflowrunResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBackupdestinationsCall, ListBackupdestinationsOptions, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListEgressipsCall, ListEgressipsOptions, ListEgressipsRequest, ListEgressipsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLlmmodeldeploymentsCall, ListLlmmodeldeploymentsOptions, ListLlmmodeldeploymentsParameters, ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPipelinetemplatepreviewsCall, ListPipelinetemplatepreviewsOptions, ListPipelinetemplatepreviewsParameters, ListPipelinetemplatepreviewsRequest, ListPipelinetemplatepreviewsResult, ListPlansCall, ListPlansRequest, ListPlansResult, ListPreviewblueprintrunsCall, ListPreviewblueprintrunsOptions, ListPreviewblueprintrunsParameters, ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult, ListPreviewblueprintsCall, ListPreviewblueprintsOptions, ListPreviewblueprintsParameters, ListPreviewblueprintsRequest, ListPreviewblueprintsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesOptions, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, ListWorkflowrunsCall, ListWorkflowrunsOptions, ListWorkflowrunsParameters, ListWorkflowrunsRequest, ListWorkflowrunsResult, ListWorkflowsCall, ListWorkflowsOptions, ListWorkflowsParameters, ListWorkflowsRequest, ListWorkflowsResult, LogLine, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, PatchAddonCall, PatchAddonData, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchBackupdestinationCall, PatchBackupdestinationData, PatchBackupdestinationParameters, PatchBackupdestinationRequest, PatchBackupdestinationResult, PatchCloudClusterCall, PatchCloudClusterData, PatchCloudClusterParameters, PatchCloudClusterRequest, PatchCloudClusterResult, PatchCloudIntegrationCall, PatchCloudIntegrationData, PatchCloudIntegrationParameters, PatchCloudIntegrationRequest, PatchCloudIntegrationResult, PatchEgressipCall, PatchEgressipData, PatchEgressipParameters, PatchEgressipRequest, PatchEgressipResult, PatchGlobalsecretCall, PatchGlobalsecretData, PatchGlobalsecretParameters, PatchGlobalsecretRequest, PatchGlobalsecretResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchProjectCall, PatchProjectData, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseBlueprinttemplatepreviewCall, PauseBlueprinttemplatepreviewParameters, PauseBlueprinttemplatepreviewRequest, PauseBlueprinttemplatepreviewResult, PauseJobCall, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PutAddonCall, PutAddonData, PutAddonParameters, PutAddonRequest, PutAddonResult, PutCloudClusterCall, PutCloudClusterData, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutEgressipCall, PutEgressipData, PutEgressipRequest, PutEgressipResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretRequest, PutGlobalsecretResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerRequest, PutLoadbalancerResult, PutProjectCall, PutProjectData, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupOptions, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeBlueprinttemplatepreviewCall, ResumeBlueprinttemplatepreviewParameters, ResumeBlueprinttemplatepreviewRequest, ResumeBlueprinttemplatepreviewResult, ResumeJobCall, ResumeJobData, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunPreviewblueprintCall, RunPreviewblueprintData, RunPreviewblueprintParameters, RunPreviewblueprintRequest, RunPreviewblueprintResult, RunPreviewtemplateCall, RunPreviewtemplateData, RunPreviewtemplateParameters, RunPreviewtemplateRequest, RunPreviewtemplateResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, RunWorkflowCall, RunWorkflowData, RunWorkflowParameters, RunWorkflowRequest, RunWorkflowResult, ScaleAddonCall, ScaleAddonData, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartJobBuildCall, StartJobBuildData, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainOptions, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UncordonCloudClusterNodeCall, UncordonCloudClusterNodeParameters, UncordonCloudClusterNodeRequest, UncordonCloudClusterNodeResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLlmmodeldeploymentCall, UpdateLlmmodeldeploymentData, UpdateLlmmodeldeploymentParameters, UpdateLlmmodeldeploymentRequest, UpdateLlmmodeldeploymentResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewblueprintCall, UpdatePreviewblueprintData, UpdatePreviewblueprintParameters, UpdatePreviewblueprintRequest, UpdatePreviewblueprintResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, UpdateWorkflowCall, UpdateWorkflowData, UpdateWorkflowParameters, UpdateWorkflowRequest, UpdateWorkflowResult, UploadOptions, VerifyDomainCall, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|