@northflank/js-client 0.8.11 → 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 +1230 -78
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +1230 -78
- 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,8 +5286,8 @@ 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';
|
|
5280
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5289
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5283
5293
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -5342,8 +5352,8 @@ 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';
|
|
5346
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5355
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5349
5359
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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,8 +5451,8 @@ 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';
|
|
5437
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5454
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5440
5458
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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,8 +5553,8 @@ 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';
|
|
5531
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5556
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5534
5560
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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,8 +5657,8 @@ 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';
|
|
5627
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5660
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5630
5664
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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,8 +5759,8 @@ 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';
|
|
5721
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5762
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5724
5766
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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,8 +5873,8 @@ 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';
|
|
5827
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5876
|
+
'provider': 'aws' | 'azure' | 'civo' | 'gcp' | 'oci' | 'cloudflare' | 'coreweave' | 'aiven' | 'backblaze' | 'akamai' | 'byok';
|
|
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'?: {
|
|
5830
5880
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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'?: {
|
|
@@ -5916,7 +5974,7 @@ type PatchCloudIntegrationParameters = {
|
|
|
5916
5974
|
type PatchCloudIntegrationData = {
|
|
5917
5975
|
/** The description of the integration. Example: "This is a new cloud provider integration." */
|
|
5918
5976
|
'description'?: string;
|
|
5919
|
-
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu'[];
|
|
5977
|
+
'features'?: 'byoc' | 'byoc-static-egress' | 'byoc-custom-launch-templates' | 'byoc-custom-vpc' | 'byoc-logs' | 'cloudfront' | 'route53' | 'registry-pull' | 'registry-push' | 'opentofu' | 'workload-identity'[];
|
|
5920
5978
|
/** BYOC restrictions configuration for controlling team access */
|
|
5921
5979
|
'restrictions'?: {
|
|
5922
5980
|
/** Enable or disable BYOC restrictions for this entity */
|
|
@@ -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. */
|
|
@@ -10677,12 +11166,17 @@ type CreateAddonResult = {
|
|
|
10677
11166
|
'minZones'?: number;
|
|
10678
11167
|
};
|
|
10679
11168
|
};
|
|
10680
|
-
/**
|
|
11169
|
+
/** Fork source backup for the addon */
|
|
10681
11170
|
'source'?: {
|
|
11171
|
+
/** ID of the project of the source addon. Only required if not the same as target addon Example: "existing-project" */
|
|
11172
|
+
'projectId'?: string;
|
|
10682
11173
|
/** ID of the addon to fork. Example: "existing-addon" */
|
|
10683
11174
|
'addonId': string;
|
|
10684
11175
|
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
10685
11176
|
'backupId': string;
|
|
11177
|
+
} | {
|
|
11178
|
+
/** Uid of the backup Example: "6d542e24-5d9f-4ecf-80a5-e80724b9133e" */
|
|
11179
|
+
'backupUid': string;
|
|
10686
11180
|
};
|
|
10687
11181
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
10688
11182
|
'tlsEnabled'?: boolean;
|
|
@@ -10855,12 +11349,17 @@ type CreateAddonData = {
|
|
|
10855
11349
|
'minZones'?: number;
|
|
10856
11350
|
};
|
|
10857
11351
|
};
|
|
10858
|
-
/**
|
|
11352
|
+
/** Fork source backup for the addon */
|
|
10859
11353
|
'source'?: {
|
|
11354
|
+
/** ID of the project of the source addon. Only required if not the same as target addon Example: "existing-project" */
|
|
11355
|
+
'projectId'?: string;
|
|
10860
11356
|
/** ID of the addon to fork. Example: "existing-addon" */
|
|
10861
11357
|
'addonId': string;
|
|
10862
11358
|
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
10863
11359
|
'backupId': string;
|
|
11360
|
+
} | {
|
|
11361
|
+
/** Uid of the backup Example: "6d542e24-5d9f-4ecf-80a5-e80724b9133e" */
|
|
11362
|
+
'backupUid': string;
|
|
10864
11363
|
};
|
|
10865
11364
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
10866
11365
|
'tlsEnabled'?: boolean;
|
|
@@ -10991,12 +11490,17 @@ type PutAddonResult = {
|
|
|
10991
11490
|
'minZones'?: number;
|
|
10992
11491
|
};
|
|
10993
11492
|
};
|
|
10994
|
-
/**
|
|
11493
|
+
/** Fork source backup for the addon */
|
|
10995
11494
|
'source'?: {
|
|
11495
|
+
/** ID of the project of the source addon. Only required if not the same as target addon Example: "existing-project" */
|
|
11496
|
+
'projectId'?: string;
|
|
10996
11497
|
/** ID of the addon to fork. Example: "existing-addon" */
|
|
10997
11498
|
'addonId': string;
|
|
10998
11499
|
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
10999
11500
|
'backupId': string;
|
|
11501
|
+
} | {
|
|
11502
|
+
/** Uid of the backup Example: "6d542e24-5d9f-4ecf-80a5-e80724b9133e" */
|
|
11503
|
+
'backupUid': string;
|
|
11000
11504
|
};
|
|
11001
11505
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
11002
11506
|
'tlsEnabled'?: boolean;
|
|
@@ -11169,12 +11673,17 @@ type PutAddonData = {
|
|
|
11169
11673
|
'minZones'?: number;
|
|
11170
11674
|
};
|
|
11171
11675
|
};
|
|
11172
|
-
/**
|
|
11676
|
+
/** Fork source backup for the addon */
|
|
11173
11677
|
'source'?: {
|
|
11678
|
+
/** ID of the project of the source addon. Only required if not the same as target addon Example: "existing-project" */
|
|
11679
|
+
'projectId'?: string;
|
|
11174
11680
|
/** ID of the addon to fork. Example: "existing-addon" */
|
|
11175
11681
|
'addonId': string;
|
|
11176
11682
|
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
11177
11683
|
'backupId': string;
|
|
11684
|
+
} | {
|
|
11685
|
+
/** Uid of the backup Example: "6d542e24-5d9f-4ecf-80a5-e80724b9133e" */
|
|
11686
|
+
'backupUid': string;
|
|
11178
11687
|
};
|
|
11179
11688
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
11180
11689
|
'tlsEnabled'?: boolean;
|
|
@@ -11393,12 +11902,17 @@ type PatchAddonResult = {
|
|
|
11393
11902
|
'minZones'?: number;
|
|
11394
11903
|
};
|
|
11395
11904
|
};
|
|
11396
|
-
/**
|
|
11905
|
+
/** Fork source backup for the addon */
|
|
11397
11906
|
'source'?: {
|
|
11907
|
+
/** ID of the project of the source addon. Only required if not the same as target addon Example: "existing-project" */
|
|
11908
|
+
'projectId'?: string;
|
|
11398
11909
|
/** ID of the addon to fork. Example: "existing-addon" */
|
|
11399
11910
|
'addonId': string;
|
|
11400
11911
|
/** ID of a backup belonging to that addon to use for the fork. Example: "existing-backup" */
|
|
11401
11912
|
'backupId': string;
|
|
11913
|
+
} | {
|
|
11914
|
+
/** Uid of the backup Example: "6d542e24-5d9f-4ecf-80a5-e80724b9133e" */
|
|
11915
|
+
'backupUid': string;
|
|
11402
11916
|
};
|
|
11403
11917
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
11404
11918
|
'tlsEnabled'?: boolean;
|
|
@@ -18245,7 +18759,7 @@ type GetJobDeploymentResult = {
|
|
|
18245
18759
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
18246
18760
|
'imagePath': string;
|
|
18247
18761
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
18248
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
18762
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
18249
18763
|
/** Does the image require authentication */
|
|
18250
18764
|
'privateImage': boolean;
|
|
18251
18765
|
};
|
|
@@ -19014,6 +19528,471 @@ declare class SuspendJobEndpoint extends PostApiEndpoint<SuspendJobRequest, Susp
|
|
|
19014
19528
|
body: (payload: SuspendJobRequest) => string;
|
|
19015
19529
|
}
|
|
19016
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
|
+
|
|
19017
19996
|
type ListPipelinesResult = {
|
|
19018
19997
|
/** An array of pipelines in this project. */
|
|
19019
19998
|
'pipelines': {
|
|
@@ -19310,7 +20289,7 @@ declare class UpdatePreviewtemplateEndpoint extends PostApiEndpoint<UpdatePrevie
|
|
|
19310
20289
|
body: (payload: UpdatePreviewtemplateRequest) => string;
|
|
19311
20290
|
}
|
|
19312
20291
|
|
|
19313
|
-
type
|
|
20292
|
+
type ListPipelinetemplatepreviewsResult = {
|
|
19314
20293
|
/** A list of currently available preview environments for the template. */
|
|
19315
20294
|
'previewEnvironments': {
|
|
19316
20295
|
/** Identifier for the preview template environment Example: "clean-step" */
|
|
@@ -19325,20 +20304,20 @@ type ListPreviewtemplatepreviewsResult = {
|
|
|
19325
20304
|
'updatedAt'?: string;
|
|
19326
20305
|
}[];
|
|
19327
20306
|
};
|
|
19328
|
-
type
|
|
19329
|
-
all: (opts:
|
|
20307
|
+
type ListPipelinetemplatepreviewsCall = ((opts: ListPipelinetemplatepreviewsRequest) => Promise<ApiCallResponse<ListPipelinetemplatepreviewsResult>>) & {
|
|
20308
|
+
all: (opts: ListPipelinetemplatepreviewsRequest) => Promise<ApiCallResponse<ListPipelinetemplatepreviewsResult>>;
|
|
19330
20309
|
};
|
|
19331
|
-
type
|
|
19332
|
-
parameters:
|
|
19333
|
-
options?:
|
|
20310
|
+
type ListPipelinetemplatepreviewsRequest = {
|
|
20311
|
+
parameters: ListPipelinetemplatepreviewsParameters;
|
|
20312
|
+
options?: ListPipelinetemplatepreviewsOptions;
|
|
19334
20313
|
};
|
|
19335
|
-
type
|
|
20314
|
+
type ListPipelinetemplatepreviewsParameters = {
|
|
19336
20315
|
/** ID of the project */
|
|
19337
20316
|
'projectId': string;
|
|
19338
20317
|
/** ID of the pipeline */
|
|
19339
20318
|
'pipelineId': string;
|
|
19340
20319
|
};
|
|
19341
|
-
type
|
|
20320
|
+
type ListPipelinetemplatepreviewsOptions = {
|
|
19342
20321
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
19343
20322
|
'per_page'?: number;
|
|
19344
20323
|
/** The page number to access. */
|
|
@@ -19347,20 +20326,20 @@ type ListPreviewtemplatepreviewsOptions = {
|
|
|
19347
20326
|
'cursor'?: string;
|
|
19348
20327
|
};
|
|
19349
20328
|
/** Get a list of active preview environments for a template */
|
|
19350
|
-
declare class
|
|
20329
|
+
declare class ListPipelinetemplatepreviewsEndpoint extends GetApiEndpointPaginated<ListPipelinetemplatepreviewsRequest, ListPipelinetemplatepreviewsResult> {
|
|
19351
20330
|
description: string;
|
|
19352
20331
|
withAuth: boolean;
|
|
19353
20332
|
requiredPermissions: string;
|
|
19354
|
-
endpointUrl: (opts:
|
|
20333
|
+
endpointUrl: (opts: ListPipelinetemplatepreviewsRequest) => string;
|
|
19355
20334
|
body: () => undefined;
|
|
19356
20335
|
}
|
|
19357
20336
|
|
|
19358
|
-
type
|
|
19359
|
-
type
|
|
19360
|
-
type
|
|
19361
|
-
parameters:
|
|
20337
|
+
type DeletePipelinetemplatepreviewResult = any;
|
|
20338
|
+
type DeletePipelinetemplatepreviewCall = (opts: DeletePipelinetemplatepreviewRequest) => Promise<ApiCallResponse<DeletePipelinetemplatepreviewResult>>;
|
|
20339
|
+
type DeletePipelinetemplatepreviewRequest = {
|
|
20340
|
+
parameters: DeletePipelinetemplatepreviewParameters;
|
|
19362
20341
|
};
|
|
19363
|
-
type
|
|
20342
|
+
type DeletePipelinetemplatepreviewParameters = {
|
|
19364
20343
|
/** ID of the project */
|
|
19365
20344
|
'projectId': string;
|
|
19366
20345
|
/** ID of the pipeline */
|
|
@@ -19369,11 +20348,11 @@ type DeletePreviewtemplatepreviewParameters = {
|
|
|
19369
20348
|
'previewId': string;
|
|
19370
20349
|
};
|
|
19371
20350
|
/** Delete a preview environment generated by a preview template. */
|
|
19372
|
-
declare class
|
|
20351
|
+
declare class DeletePipelinetemplatepreviewEndpoint extends DeleteApiEndpoint<DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult> {
|
|
19373
20352
|
description: string;
|
|
19374
20353
|
withAuth: boolean;
|
|
19375
20354
|
requiredPermissions: string;
|
|
19376
|
-
endpointUrl: (opts:
|
|
20355
|
+
endpointUrl: (opts: DeletePipelinetemplatepreviewRequest) => string;
|
|
19377
20356
|
body: () => undefined;
|
|
19378
20357
|
}
|
|
19379
20358
|
|
|
@@ -19529,6 +20508,10 @@ type ListPreviewtemplaterunsOptions = {
|
|
|
19529
20508
|
'page'?: number;
|
|
19530
20509
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
19531
20510
|
'cursor'?: string;
|
|
20511
|
+
/** Filter by template status. */
|
|
20512
|
+
'status'?: string;
|
|
20513
|
+
/** Filter by whether the template is concluded. */
|
|
20514
|
+
'concluded'?: boolean;
|
|
19532
20515
|
};
|
|
19533
20516
|
/** Get a list of preview template runs */
|
|
19534
20517
|
declare class ListPreviewtemplaterunsEndpoint extends GetApiEndpointPaginated<ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult> {
|
|
@@ -19917,6 +20900,10 @@ type ListReleaseflowrunsOptions = {
|
|
|
19917
20900
|
'page'?: number;
|
|
19918
20901
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
19919
20902
|
'cursor'?: string;
|
|
20903
|
+
/** Filter by template status. */
|
|
20904
|
+
'status'?: string;
|
|
20905
|
+
/** Filter by whether the template is concluded. */
|
|
20906
|
+
'concluded'?: boolean;
|
|
19920
20907
|
};
|
|
19921
20908
|
/** Lists runs of a release flow */
|
|
19922
20909
|
declare class ListReleaseflowrunsEndpoint extends GetApiEndpointPaginated<ListReleaseflowrunsRequest, ListReleaseflowrunsResult> {
|
|
@@ -20496,6 +21483,117 @@ declare class DeletePreviewblueprintEndpoint extends DeleteApiEndpoint<DeletePre
|
|
|
20496
21483
|
body: () => undefined;
|
|
20497
21484
|
}
|
|
20498
21485
|
|
|
21486
|
+
type ListBlueprinttemplatepreviewsResult = {
|
|
21487
|
+
/** A list of currently available preview environments for the template. */
|
|
21488
|
+
'previewEnvironments': {
|
|
21489
|
+
/** Identifier for the preview template environment Example: "clean-step" */
|
|
21490
|
+
'id': string;
|
|
21491
|
+
/** Data about the version control action that triggered environment creation */
|
|
21492
|
+
'vcsData': {
|
|
21493
|
+
'repoUrl': string;
|
|
21494
|
+
};
|
|
21495
|
+
/** time of creation */
|
|
21496
|
+
'createdAt'?: string;
|
|
21497
|
+
/** time of update */
|
|
21498
|
+
'updatedAt'?: string;
|
|
21499
|
+
}[];
|
|
21500
|
+
};
|
|
21501
|
+
type ListBlueprinttemplatepreviewsCall = ((opts: ListBlueprinttemplatepreviewsRequest) => Promise<ApiCallResponse<ListBlueprinttemplatepreviewsResult>>) & {
|
|
21502
|
+
all: (opts: ListBlueprinttemplatepreviewsRequest) => Promise<ApiCallResponse<ListBlueprinttemplatepreviewsResult>>;
|
|
21503
|
+
};
|
|
21504
|
+
type ListBlueprinttemplatepreviewsRequest = {
|
|
21505
|
+
parameters: ListBlueprinttemplatepreviewsParameters;
|
|
21506
|
+
options?: ListBlueprinttemplatepreviewsOptions;
|
|
21507
|
+
};
|
|
21508
|
+
type ListBlueprinttemplatepreviewsParameters = {
|
|
21509
|
+
/** ID of the project */
|
|
21510
|
+
'projectId': string;
|
|
21511
|
+
/** ID of the preview blueprint */
|
|
21512
|
+
'previewBlueprintId': string;
|
|
21513
|
+
};
|
|
21514
|
+
type ListBlueprinttemplatepreviewsOptions = {
|
|
21515
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
21516
|
+
'per_page'?: number;
|
|
21517
|
+
/** The page number to access. */
|
|
21518
|
+
'page'?: number;
|
|
21519
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
21520
|
+
'cursor'?: string;
|
|
21521
|
+
};
|
|
21522
|
+
/** Get a list of active previews for a preview blueprint. */
|
|
21523
|
+
declare class ListBlueprinttemplatepreviewsEndpoint extends GetApiEndpointPaginated<ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult> {
|
|
21524
|
+
description: string;
|
|
21525
|
+
withAuth: boolean;
|
|
21526
|
+
requiredPermissions: string;
|
|
21527
|
+
endpointUrl: (opts: ListBlueprinttemplatepreviewsRequest) => string;
|
|
21528
|
+
body: () => undefined;
|
|
21529
|
+
}
|
|
21530
|
+
|
|
21531
|
+
type DeleteBlueprinttemplatepreviewResult = any;
|
|
21532
|
+
type DeleteBlueprinttemplatepreviewCall = (opts: DeleteBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<DeleteBlueprinttemplatepreviewResult>>;
|
|
21533
|
+
type DeleteBlueprinttemplatepreviewRequest = {
|
|
21534
|
+
parameters: DeleteBlueprinttemplatepreviewParameters;
|
|
21535
|
+
};
|
|
21536
|
+
type DeleteBlueprinttemplatepreviewParameters = {
|
|
21537
|
+
/** ID of the project */
|
|
21538
|
+
'projectId': string;
|
|
21539
|
+
/** ID of the preview blueprint */
|
|
21540
|
+
'previewBlueprintId': string;
|
|
21541
|
+
/** ID of the preview */
|
|
21542
|
+
'previewId': string;
|
|
21543
|
+
};
|
|
21544
|
+
/** Delete a preview environment generated by a preview blueprint. */
|
|
21545
|
+
declare class DeleteBlueprinttemplatepreviewEndpoint extends DeleteApiEndpoint<DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult> {
|
|
21546
|
+
description: string;
|
|
21547
|
+
withAuth: boolean;
|
|
21548
|
+
requiredPermissions: string;
|
|
21549
|
+
endpointUrl: (opts: DeleteBlueprinttemplatepreviewRequest) => string;
|
|
21550
|
+
body: () => undefined;
|
|
21551
|
+
}
|
|
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
|
+
|
|
20499
21597
|
type RunPreviewblueprintResult = any;
|
|
20500
21598
|
type RunPreviewblueprintCall = (opts: RunPreviewblueprintRequest) => Promise<ApiCallResponse<RunPreviewblueprintResult>>;
|
|
20501
21599
|
type RunPreviewblueprintRequest = {
|
|
@@ -20570,6 +21668,10 @@ type ListPreviewblueprintrunsOptions = {
|
|
|
20570
21668
|
'page'?: number;
|
|
20571
21669
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
20572
21670
|
'cursor'?: string;
|
|
21671
|
+
/** Filter by template status. */
|
|
21672
|
+
'status'?: string;
|
|
21673
|
+
/** Filter by whether the template is concluded. */
|
|
21674
|
+
'concluded'?: boolean;
|
|
20573
21675
|
};
|
|
20574
21676
|
/** Lists runs of a previewBlueprint */
|
|
20575
21677
|
declare class ListPreviewblueprintrunsEndpoint extends GetApiEndpointPaginated<ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult> {
|
|
@@ -22785,8 +23887,8 @@ type CreateServiceCombinedResult = {
|
|
|
22785
23887
|
};
|
|
22786
23888
|
};
|
|
22787
23889
|
};
|
|
22788
|
-
'
|
|
22789
|
-
'
|
|
23890
|
+
'createOptions'?: {
|
|
23891
|
+
'volumesToAttach'?: string[];
|
|
22790
23892
|
};
|
|
22791
23893
|
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
22792
23894
|
'serviceType': 'combined';
|
|
@@ -23346,6 +24448,9 @@ type CreateServiceCombinedData = {
|
|
|
23346
24448
|
};
|
|
23347
24449
|
};
|
|
23348
24450
|
};
|
|
24451
|
+
'createOptions'?: {
|
|
24452
|
+
'volumesToAttach'?: string[];
|
|
24453
|
+
};
|
|
23349
24454
|
};
|
|
23350
24455
|
/** Creates a new combined service. */
|
|
23351
24456
|
declare class CreateServiceCombinedEndpoint extends PostApiEndpoint<CreateServiceCombinedRequest, CreateServiceCombinedResult> {
|
|
@@ -23726,8 +24831,8 @@ type PutServiceCombinedResult = {
|
|
|
23726
24831
|
};
|
|
23727
24832
|
};
|
|
23728
24833
|
};
|
|
23729
|
-
'
|
|
23730
|
-
'
|
|
24834
|
+
'createOptions'?: {
|
|
24835
|
+
'volumesToAttach'?: string[];
|
|
23731
24836
|
};
|
|
23732
24837
|
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
23733
24838
|
'serviceType': 'combined';
|
|
@@ -24287,6 +25392,9 @@ type PutServiceCombinedData = {
|
|
|
24287
25392
|
};
|
|
24288
25393
|
};
|
|
24289
25394
|
};
|
|
25395
|
+
'createOptions'?: {
|
|
25396
|
+
'volumesToAttach'?: string[];
|
|
25397
|
+
};
|
|
24290
25398
|
};
|
|
24291
25399
|
/** Creates or updates a combined service. */
|
|
24292
25400
|
declare class PutServiceCombinedEndpoint extends PutApiEndpoint<PutServiceCombinedRequest, PutServiceCombinedResult> {
|
|
@@ -24667,8 +25775,8 @@ type PatchServiceCombinedResult = {
|
|
|
24667
25775
|
};
|
|
24668
25776
|
};
|
|
24669
25777
|
};
|
|
24670
|
-
'
|
|
24671
|
-
'
|
|
25778
|
+
'createOptions'?: {
|
|
25779
|
+
'volumesToAttach'?: string[];
|
|
24672
25780
|
};
|
|
24673
25781
|
/** Type of the service (combined, build or deployment) Example: "combined" */
|
|
24674
25782
|
'serviceType': 'combined';
|
|
@@ -25488,8 +26596,8 @@ type CreateServiceDeploymentResult = {
|
|
|
25488
26596
|
};
|
|
25489
26597
|
};
|
|
25490
26598
|
};
|
|
25491
|
-
'
|
|
25492
|
-
'
|
|
26599
|
+
'createOptions'?: {
|
|
26600
|
+
'volumesToAttach'?: string[];
|
|
25493
26601
|
};
|
|
25494
26602
|
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
25495
26603
|
'serviceType': 'deployment';
|
|
@@ -26106,6 +27214,9 @@ type CreateServiceDeploymentData = {
|
|
|
26106
27214
|
};
|
|
26107
27215
|
};
|
|
26108
27216
|
};
|
|
27217
|
+
'createOptions'?: {
|
|
27218
|
+
'volumesToAttach'?: string[];
|
|
27219
|
+
};
|
|
26109
27220
|
};
|
|
26110
27221
|
/** Creates a new deployment service. */
|
|
26111
27222
|
declare class CreateServiceDeploymentEndpoint extends PostApiEndpoint<CreateServiceDeploymentRequest, CreateServiceDeploymentResult> {
|
|
@@ -26383,8 +27494,8 @@ type PutServiceDeploymentResult = {
|
|
|
26383
27494
|
};
|
|
26384
27495
|
};
|
|
26385
27496
|
};
|
|
26386
|
-
'
|
|
26387
|
-
'
|
|
27497
|
+
'createOptions'?: {
|
|
27498
|
+
'volumesToAttach'?: string[];
|
|
26388
27499
|
};
|
|
26389
27500
|
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
26390
27501
|
'serviceType': 'deployment';
|
|
@@ -27001,6 +28112,9 @@ type PutServiceDeploymentData = {
|
|
|
27001
28112
|
};
|
|
27002
28113
|
};
|
|
27003
28114
|
};
|
|
28115
|
+
'createOptions'?: {
|
|
28116
|
+
'volumesToAttach'?: string[];
|
|
28117
|
+
};
|
|
27004
28118
|
};
|
|
27005
28119
|
/** Creates or updates a deployment service. */
|
|
27006
28120
|
declare class PutServiceDeploymentEndpoint extends PutApiEndpoint<PutServiceDeploymentRequest, PutServiceDeploymentResult> {
|
|
@@ -27278,8 +28392,8 @@ type PatchServiceDeploymentResult = {
|
|
|
27278
28392
|
};
|
|
27279
28393
|
};
|
|
27280
28394
|
};
|
|
27281
|
-
'
|
|
27282
|
-
'
|
|
28395
|
+
'createOptions'?: {
|
|
28396
|
+
'volumesToAttach'?: string[];
|
|
27283
28397
|
};
|
|
27284
28398
|
/** Type of the service (combined, build or deployment) Example: "deployment" */
|
|
27285
28399
|
'serviceType': 'deployment';
|
|
@@ -27985,7 +29099,7 @@ type GetServiceResult = {
|
|
|
27985
29099
|
/** Path of the external image excluding the hostname */
|
|
27986
29100
|
'imagePath': string;
|
|
27987
29101
|
/** Registry provider hosting the external image */
|
|
27988
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
29102
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
27989
29103
|
/** Does the image require authentication */
|
|
27990
29104
|
'privateImage': boolean;
|
|
27991
29105
|
};
|
|
@@ -28988,7 +30102,7 @@ type GetServiceDeploymentResult = {
|
|
|
28988
30102
|
/** Path of the external image excluding the hostname Example: "nginx:latest" */
|
|
28989
30103
|
'imagePath': string;
|
|
28990
30104
|
/** Registry provider hosting the external image Example: "dockerhub" */
|
|
28991
|
-
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
30105
|
+
'registryProvider': 'acr' | 'ecr' | 'gar' | 'dockerhub' | 'dhi' | 'github' | 'gitlab' | 'custom' | 'legacy';
|
|
28992
30106
|
/** Does the image require authentication */
|
|
28993
30107
|
'privateImage': boolean;
|
|
28994
30108
|
};
|
|
@@ -30780,6 +31894,10 @@ type ListRegionsResult = {
|
|
|
30780
31894
|
'name': string;
|
|
30781
31895
|
/** The name of the group this region belongs to. Example: "EMEA" */
|
|
30782
31896
|
'regionName': string;
|
|
31897
|
+
'provider'?: {
|
|
31898
|
+
'id': string;
|
|
31899
|
+
'region': string;
|
|
31900
|
+
};
|
|
30783
31901
|
/** The list of GPUs available in this region. */
|
|
30784
31902
|
'gpuDevices': {
|
|
30785
31903
|
/** The ID of the GPU device. Example: "h100-80" */
|
|
@@ -31975,6 +33093,10 @@ type ListTemplaterunsOptions = {
|
|
|
31975
33093
|
'page'?: number;
|
|
31976
33094
|
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
31977
33095
|
'cursor'?: string;
|
|
33096
|
+
/** Filter by template status. */
|
|
33097
|
+
'status'?: string;
|
|
33098
|
+
/** Filter by whether the template is concluded. */
|
|
33099
|
+
'concluded'?: boolean;
|
|
31978
33100
|
};
|
|
31979
33101
|
/** Get a list of template runs */
|
|
31980
33102
|
declare class ListTemplaterunsEndpoint extends GetApiEndpointPaginated<ListTemplaterunsRequest, ListTemplaterunsResult> {
|
|
@@ -32193,6 +33315,7 @@ declare class ApiClient {
|
|
|
32193
33315
|
subdomain: GetSubdomainCall & {
|
|
32194
33316
|
path: GetSubdomainPathCall;
|
|
32195
33317
|
};
|
|
33318
|
+
egressIp: GetEgressipCall;
|
|
32196
33319
|
logSink: GetLogsinkCall;
|
|
32197
33320
|
notification: GetNotificationCall;
|
|
32198
33321
|
registryCredentials: GetRegistrycredentialsCall;
|
|
@@ -32221,6 +33344,7 @@ declare class ApiClient {
|
|
|
32221
33344
|
metricsRange: GetJobMetricsRangeCall;
|
|
32222
33345
|
buildMetricsRange: GetJobBuildMetricsRangeCall;
|
|
32223
33346
|
};
|
|
33347
|
+
llmModelDeployment: GetLlmmodeldeploymentCall;
|
|
32224
33348
|
pipeline: GetPipelineCall;
|
|
32225
33349
|
previewTemplate: GetPreviewtemplateCall;
|
|
32226
33350
|
previewTemplateRun: GetPreviewtemplaterunCall;
|
|
@@ -32282,6 +33406,7 @@ declare class ApiClient {
|
|
|
32282
33406
|
subdomain: {
|
|
32283
33407
|
path: ListSubdomainPathCall;
|
|
32284
33408
|
};
|
|
33409
|
+
egressIps: ListEgressipsCall;
|
|
32285
33410
|
logSinks: ListLogsinksCall;
|
|
32286
33411
|
notifications: ListNotificationsCall;
|
|
32287
33412
|
registryCredentials: ListRegistrycredentialsCall;
|
|
@@ -32293,11 +33418,13 @@ declare class ApiClient {
|
|
|
32293
33418
|
projects: ListProjectsCall;
|
|
32294
33419
|
addons: ListAddonsCall;
|
|
32295
33420
|
jobs: ListJobsCall;
|
|
33421
|
+
llmModelDeployments: ListLlmmodeldeploymentsCall;
|
|
32296
33422
|
pipelines: ListPipelinesCall;
|
|
32297
|
-
|
|
33423
|
+
pipelineTemplatePreviews: ListPipelinetemplatepreviewsCall;
|
|
32298
33424
|
previewTemplateRuns: ListPreviewtemplaterunsCall;
|
|
32299
33425
|
releaseFlowRuns: ListReleaseflowrunsCall;
|
|
32300
33426
|
previewBlueprints: ListPreviewblueprintsCall;
|
|
33427
|
+
blueprintTemplatePreviews: ListBlueprinttemplatepreviewsCall;
|
|
32301
33428
|
previewBlueprintRuns: ListPreviewblueprintrunsCall;
|
|
32302
33429
|
secrets: ListSecretsCall;
|
|
32303
33430
|
services: ListServicesCall;
|
|
@@ -32327,6 +33454,7 @@ declare class ApiClient {
|
|
|
32327
33454
|
cluster: PatchCloudClusterCall;
|
|
32328
33455
|
integration: PatchCloudIntegrationCall;
|
|
32329
33456
|
};
|
|
33457
|
+
egressIp: PatchEgressipCall;
|
|
32330
33458
|
loadBalancer: PatchLoadbalancerCall;
|
|
32331
33459
|
project: PatchProjectCall;
|
|
32332
33460
|
addon: PatchAddonCall;
|
|
@@ -32353,6 +33481,7 @@ declare class ApiClient {
|
|
|
32353
33481
|
subdomain: DeleteSubdomainCall & {
|
|
32354
33482
|
path: DeleteSubdomainPathCall;
|
|
32355
33483
|
};
|
|
33484
|
+
egressIp: DeleteEgressipCall;
|
|
32356
33485
|
logSink: DeleteLogsinkCall;
|
|
32357
33486
|
notification: DeleteNotificationCall;
|
|
32358
33487
|
registryCredentials: DeleteRegistrycredentialsCall;
|
|
@@ -32363,8 +33492,10 @@ declare class ApiClient {
|
|
|
32363
33492
|
};
|
|
32364
33493
|
backup: DeleteBackupCall;
|
|
32365
33494
|
job: DeleteJobCall;
|
|
32366
|
-
|
|
33495
|
+
llmModelDeployment: DeleteLlmmodeldeploymentCall;
|
|
33496
|
+
pipelineTemplatePreview: DeletePipelinetemplatepreviewCall;
|
|
32367
33497
|
previewBlueprint: DeletePreviewblueprintCall;
|
|
33498
|
+
blueprintTemplatePreview: DeleteBlueprinttemplatepreviewCall;
|
|
32368
33499
|
secret: DeleteSecretCall;
|
|
32369
33500
|
secretLink: DeleteSecretlinkCall;
|
|
32370
33501
|
service: DeleteServiceCall;
|
|
@@ -32381,6 +33512,7 @@ declare class ApiClient {
|
|
|
32381
33512
|
integration: CreateCloudIntegrationCall;
|
|
32382
33513
|
};
|
|
32383
33514
|
domain: CreateDomainCall;
|
|
33515
|
+
egressIp: CreateEgressipCall;
|
|
32384
33516
|
logSink: CreateLogsinkCall;
|
|
32385
33517
|
notification: CreateNotificationCall;
|
|
32386
33518
|
customVcs: {
|
|
@@ -32395,6 +33527,7 @@ declare class ApiClient {
|
|
|
32395
33527
|
cron: CreateJobCronCall;
|
|
32396
33528
|
manual: CreateJobManualCall;
|
|
32397
33529
|
};
|
|
33530
|
+
llmModelDeployment: CreateLlmmodeldeploymentCall;
|
|
32398
33531
|
previewBlueprint: CreatePreviewblueprintCall;
|
|
32399
33532
|
secret: CreateSecretCall;
|
|
32400
33533
|
service: {
|
|
@@ -32412,6 +33545,7 @@ declare class ApiClient {
|
|
|
32412
33545
|
cluster: PutCloudClusterCall;
|
|
32413
33546
|
integration: PutCloudIntegrationCall;
|
|
32414
33547
|
};
|
|
33548
|
+
egressIp: PutEgressipCall;
|
|
32415
33549
|
loadBalancer: PutLoadbalancerCall;
|
|
32416
33550
|
project: PutProjectCall;
|
|
32417
33551
|
addon: PutAddonCall;
|
|
@@ -32497,6 +33631,7 @@ declare class ApiClient {
|
|
|
32497
33631
|
runtimeEnvironment: UpdateJobRuntimeenvironmentCall;
|
|
32498
33632
|
settings: UpdateJobSettingsCall;
|
|
32499
33633
|
};
|
|
33634
|
+
llmModelDeployment: UpdateLlmmodeldeploymentCall;
|
|
32500
33635
|
previewTemplate: UpdatePreviewtemplateCall;
|
|
32501
33636
|
releaseFlow: UpdateReleaseflowCall;
|
|
32502
33637
|
previewBlueprint: UpdatePreviewblueprintCall;
|
|
@@ -32523,12 +33658,14 @@ declare class ApiClient {
|
|
|
32523
33658
|
logSink: PauseLogsinkCall;
|
|
32524
33659
|
addon: PauseAddonCall;
|
|
32525
33660
|
job: PauseJobCall;
|
|
33661
|
+
blueprintTemplatePreview: PauseBlueprinttemplatepreviewCall;
|
|
32526
33662
|
service: PauseServiceCall;
|
|
32527
33663
|
};
|
|
32528
33664
|
resume: {
|
|
32529
33665
|
logSink: ResumeLogsinkCall;
|
|
32530
33666
|
addon: ResumeAddonCall;
|
|
32531
33667
|
job: ResumeJobCall;
|
|
33668
|
+
blueprintTemplatePreview: ResumeBlueprinttemplatepreviewCall;
|
|
32532
33669
|
service: ResumeServiceCall;
|
|
32533
33670
|
};
|
|
32534
33671
|
backup: {
|
|
@@ -32656,6 +33793,7 @@ declare class ApiClient {
|
|
|
32656
33793
|
subdomain: GetSubdomainEndpoint & {
|
|
32657
33794
|
path: GetSubdomainPathEndpoint;
|
|
32658
33795
|
};
|
|
33796
|
+
egressIp: GetEgressipEndpoint;
|
|
32659
33797
|
logSink: GetLogsinkEndpoint;
|
|
32660
33798
|
notification: GetNotificationEndpoint;
|
|
32661
33799
|
registryCredentials: GetRegistrycredentialsEndpoint;
|
|
@@ -32676,6 +33814,7 @@ declare class ApiClient {
|
|
|
32676
33814
|
runtimeEnvironment: GetJobRuntimeenvironmentEndpoint;
|
|
32677
33815
|
runtimeEnvironmentDetails: GetJobRuntimeenvironmentdetailsEndpoint;
|
|
32678
33816
|
};
|
|
33817
|
+
llmModelDeployment: GetLlmmodeldeploymentEndpoint;
|
|
32679
33818
|
pipeline: GetPipelineEndpoint;
|
|
32680
33819
|
previewTemplate: GetPreviewtemplateEndpoint;
|
|
32681
33820
|
previewTemplateRun: GetPreviewtemplaterunEndpoint;
|
|
@@ -32729,6 +33868,7 @@ declare class ApiClient {
|
|
|
32729
33868
|
subdomain: {
|
|
32730
33869
|
path: ListSubdomainPathEndpoint;
|
|
32731
33870
|
};
|
|
33871
|
+
egressIps: ListEgressipsEndpoint;
|
|
32732
33872
|
logSinks: ListLogsinksEndpoint;
|
|
32733
33873
|
notifications: ListNotificationsEndpoint;
|
|
32734
33874
|
registryCredentials: ListRegistrycredentialsEndpoint;
|
|
@@ -32740,11 +33880,13 @@ declare class ApiClient {
|
|
|
32740
33880
|
projects: ListProjectsEndpoint;
|
|
32741
33881
|
addons: ListAddonsEndpoint;
|
|
32742
33882
|
jobs: ListJobsEndpoint;
|
|
33883
|
+
llmModelDeployments: ListLlmmodeldeploymentsEndpoint;
|
|
32743
33884
|
pipelines: ListPipelinesEndpoint;
|
|
32744
|
-
|
|
33885
|
+
pipelineTemplatePreviews: ListPipelinetemplatepreviewsEndpoint;
|
|
32745
33886
|
previewTemplateRuns: ListPreviewtemplaterunsEndpoint;
|
|
32746
33887
|
releaseFlowRuns: ListReleaseflowrunsEndpoint;
|
|
32747
33888
|
previewBlueprints: ListPreviewblueprintsEndpoint;
|
|
33889
|
+
blueprintTemplatePreviews: ListBlueprinttemplatepreviewsEndpoint;
|
|
32748
33890
|
previewBlueprintRuns: ListPreviewblueprintrunsEndpoint;
|
|
32749
33891
|
secrets: ListSecretsEndpoint;
|
|
32750
33892
|
services: ListServicesEndpoint;
|
|
@@ -32774,6 +33916,7 @@ declare class ApiClient {
|
|
|
32774
33916
|
cluster: PatchCloudClusterEndpoint;
|
|
32775
33917
|
integration: PatchCloudIntegrationEndpoint;
|
|
32776
33918
|
};
|
|
33919
|
+
egressIp: PatchEgressipEndpoint;
|
|
32777
33920
|
loadBalancer: PatchLoadbalancerEndpoint;
|
|
32778
33921
|
project: PatchProjectEndpoint;
|
|
32779
33922
|
addon: PatchAddonEndpoint;
|
|
@@ -32800,6 +33943,7 @@ declare class ApiClient {
|
|
|
32800
33943
|
subdomain: DeleteSubdomainEndpoint & {
|
|
32801
33944
|
path: DeleteSubdomainPathEndpoint;
|
|
32802
33945
|
};
|
|
33946
|
+
egressIp: DeleteEgressipEndpoint;
|
|
32803
33947
|
logSink: DeleteLogsinkEndpoint;
|
|
32804
33948
|
notification: DeleteNotificationEndpoint;
|
|
32805
33949
|
registryCredentials: DeleteRegistrycredentialsEndpoint;
|
|
@@ -32810,8 +33954,10 @@ declare class ApiClient {
|
|
|
32810
33954
|
};
|
|
32811
33955
|
backup: DeleteBackupEndpoint;
|
|
32812
33956
|
job: DeleteJobEndpoint;
|
|
32813
|
-
|
|
33957
|
+
llmModelDeployment: DeleteLlmmodeldeploymentEndpoint;
|
|
33958
|
+
pipelineTemplatePreview: DeletePipelinetemplatepreviewEndpoint;
|
|
32814
33959
|
previewBlueprint: DeletePreviewblueprintEndpoint;
|
|
33960
|
+
blueprintTemplatePreview: DeleteBlueprinttemplatepreviewEndpoint;
|
|
32815
33961
|
secret: DeleteSecretEndpoint;
|
|
32816
33962
|
secretLink: DeleteSecretlinkEndpoint;
|
|
32817
33963
|
service: DeleteServiceEndpoint;
|
|
@@ -32828,6 +33974,7 @@ declare class ApiClient {
|
|
|
32828
33974
|
integration: CreateCloudIntegrationEndpoint;
|
|
32829
33975
|
};
|
|
32830
33976
|
domain: CreateDomainEndpoint;
|
|
33977
|
+
egressIp: CreateEgressipEndpoint;
|
|
32831
33978
|
logSink: CreateLogsinkEndpoint;
|
|
32832
33979
|
notification: CreateNotificationEndpoint;
|
|
32833
33980
|
customVcs: {
|
|
@@ -32842,6 +33989,7 @@ declare class ApiClient {
|
|
|
32842
33989
|
cron: CreateJobCronEndpoint;
|
|
32843
33990
|
manual: CreateJobManualEndpoint;
|
|
32844
33991
|
};
|
|
33992
|
+
llmModelDeployment: CreateLlmmodeldeploymentEndpoint;
|
|
32845
33993
|
previewBlueprint: CreatePreviewblueprintEndpoint;
|
|
32846
33994
|
secret: CreateSecretEndpoint;
|
|
32847
33995
|
service: {
|
|
@@ -32859,6 +34007,7 @@ declare class ApiClient {
|
|
|
32859
34007
|
cluster: PutCloudClusterEndpoint;
|
|
32860
34008
|
integration: PutCloudIntegrationEndpoint;
|
|
32861
34009
|
};
|
|
34010
|
+
egressIp: PutEgressipEndpoint;
|
|
32862
34011
|
loadBalancer: PutLoadbalancerEndpoint;
|
|
32863
34012
|
project: PutProjectEndpoint;
|
|
32864
34013
|
addon: PutAddonEndpoint;
|
|
@@ -32944,6 +34093,7 @@ declare class ApiClient {
|
|
|
32944
34093
|
runtimeEnvironment: UpdateJobRuntimeenvironmentEndpoint;
|
|
32945
34094
|
settings: UpdateJobSettingsEndpoint;
|
|
32946
34095
|
};
|
|
34096
|
+
llmModelDeployment: UpdateLlmmodeldeploymentEndpoint;
|
|
32947
34097
|
previewTemplate: UpdatePreviewtemplateEndpoint;
|
|
32948
34098
|
releaseFlow: UpdateReleaseflowEndpoint;
|
|
32949
34099
|
previewBlueprint: UpdatePreviewblueprintEndpoint;
|
|
@@ -32970,12 +34120,14 @@ declare class ApiClient {
|
|
|
32970
34120
|
logSink: PauseLogsinkEndpoint;
|
|
32971
34121
|
addon: PauseAddonEndpoint;
|
|
32972
34122
|
job: PauseJobEndpoint;
|
|
34123
|
+
blueprintTemplatePreview: PauseBlueprinttemplatepreviewEndpoint;
|
|
32973
34124
|
service: PauseServiceEndpoint;
|
|
32974
34125
|
};
|
|
32975
34126
|
resume: {
|
|
32976
34127
|
logSink: ResumeLogsinkEndpoint;
|
|
32977
34128
|
addon: ResumeAddonEndpoint;
|
|
32978
34129
|
job: ResumeJobEndpoint;
|
|
34130
|
+
blueprintTemplatePreview: ResumeBlueprinttemplatepreviewEndpoint;
|
|
32979
34131
|
service: ResumeServiceEndpoint;
|
|
32980
34132
|
};
|
|
32981
34133
|
backup: {
|
|
@@ -33051,5 +34203,5 @@ declare class ApiClient {
|
|
|
33051
34203
|
protected baseUrl: () => string | undefined;
|
|
33052
34204
|
}
|
|
33053
34205
|
|
|
33054
|
-
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, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteGlobalsecretEndpoint, DeleteJobEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint,
|
|
33055
|
-
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, 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, DeletePreviewblueprintCall, DeletePreviewblueprintParameters, DeletePreviewblueprintRequest, DeletePreviewblueprintResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, 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, 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, ListPlansCall, ListPlansRequest, ListPlansResult, ListPreviewblueprintrunsCall, ListPreviewblueprintrunsOptions, ListPreviewblueprintrunsParameters, ListPreviewblueprintrunsRequest, ListPreviewblueprintrunsResult, ListPreviewblueprintsCall, ListPreviewblueprintsOptions, ListPreviewblueprintsParameters, ListPreviewblueprintsRequest, ListPreviewblueprintsResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, 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 };
|