@northflank/js-client 0.9.4 → 0.9.5
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 +426 -56
- package/dist/cjs/api-client.js +638 -625
- package/dist/esm/api-client.d.ts +426 -56
- package/dist/esm/api-client.js +619 -605
- package/package.json +2 -2
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 {
|
|
@@ -419,6 +420,9 @@ declare class NorthflankPortForwarder extends EventEmitter {
|
|
|
419
420
|
}
|
|
420
421
|
|
|
421
422
|
interface ExecCommand extends EventEmitter {
|
|
423
|
+
readonly stdOut: stream.PassThrough;
|
|
424
|
+
readonly stdErr: stream.PassThrough;
|
|
425
|
+
readonly stdIn: stream.PassThrough;
|
|
422
426
|
on(event: 'auth-success', listener: () => any): any;
|
|
423
427
|
on(event: 'command-started', listener: () => any): any;
|
|
424
428
|
on(event: 'command-completed', listener: () => any): any;
|
|
@@ -429,8 +433,16 @@ interface ExecCommand extends EventEmitter {
|
|
|
429
433
|
on(event: 'error', listener: (error: any) => any): any;
|
|
430
434
|
on(event: 'std-out-data', listener: (data: any) => any): any;
|
|
431
435
|
on(event: 'std-err-data', listener: (data: any) => any): any;
|
|
436
|
+
waitForCommandResult: () => Promise<CommandResult>;
|
|
437
|
+
start: () => Promise<CommandResult>;
|
|
438
|
+
sendInputToCurrentCommand: (input: string) => Promise<void>;
|
|
439
|
+
resizeTerminal: (size: {
|
|
440
|
+
rows?: number;
|
|
441
|
+
columns?: number;
|
|
442
|
+
}) => Promise<void>;
|
|
432
443
|
}
|
|
433
|
-
|
|
444
|
+
declare const VALID_EXEC_LOCATIONS: readonly ["us", "eu", "asia"];
|
|
445
|
+
type ValidExecLocations = (typeof VALID_EXEC_LOCATIONS)[number];
|
|
434
446
|
type ExecConfig = {
|
|
435
447
|
teamId?: string;
|
|
436
448
|
projectId: string;
|
|
@@ -446,7 +458,10 @@ type ExecConfig = {
|
|
|
446
458
|
tty?: boolean;
|
|
447
459
|
ttyRows?: number;
|
|
448
460
|
ttyColumns?: number;
|
|
461
|
+
execLocationHint?: ValidExecLocations | undefined;
|
|
462
|
+
execLocationOverride?: string | undefined;
|
|
449
463
|
};
|
|
464
|
+
|
|
450
465
|
declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
|
|
451
466
|
private readonly baseUrl;
|
|
452
467
|
readonly execConfig: ExecConfig;
|
|
@@ -456,7 +471,7 @@ declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
|
|
|
456
471
|
readonly stdErr: stream.PassThrough;
|
|
457
472
|
readonly stdIn: stream.PassThrough;
|
|
458
473
|
private remote;
|
|
459
|
-
|
|
474
|
+
protected currentCommand: Promise<CommandResult> | undefined;
|
|
460
475
|
private duplex;
|
|
461
476
|
constructor(baseUrl: string, execConfig: ExecConfig, token: string, // readonly timeout: number = 120 // Timeout in seconds
|
|
462
477
|
agent: any, stdOut?: stream.PassThrough, stdErr?: stream.PassThrough, stdIn?: stream.PassThrough);
|
|
@@ -486,6 +501,8 @@ type ExecCommandData = {
|
|
|
486
501
|
shell?: string;
|
|
487
502
|
user?: string | number;
|
|
488
503
|
group?: string | number;
|
|
504
|
+
execLocationHint?: ValidExecLocations | undefined;
|
|
505
|
+
execLocationOverride?: string | undefined;
|
|
489
506
|
};
|
|
490
507
|
type ExecCommandDataAddon = ExecCommandData & {
|
|
491
508
|
instanceName: string;
|
|
@@ -505,7 +522,15 @@ type CommandInfo = {
|
|
|
505
522
|
declare class NorthflankExecCommand {
|
|
506
523
|
private readonly contextProvider;
|
|
507
524
|
private readonly agent?;
|
|
508
|
-
|
|
525
|
+
protected sessionRegistry: Map<string, ClientHttp2Session>;
|
|
526
|
+
constructor(contextProvider: ApiClientContextProvider, agent?: any | undefined, prewarmExecLocations?: ValidExecLocations[]);
|
|
527
|
+
protected http2Session(opts: {
|
|
528
|
+
execLocationHint: ValidExecLocations;
|
|
529
|
+
execLocationOverride?: never;
|
|
530
|
+
} | {
|
|
531
|
+
execLocationOverride: string;
|
|
532
|
+
execLocationHint?: never;
|
|
533
|
+
}): ClientHttp2Session;
|
|
509
534
|
/**
|
|
510
535
|
* Runs command on a Northflank service and waits for completion returning command result and
|
|
511
536
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -528,7 +553,7 @@ declare class NorthflankExecCommand {
|
|
|
528
553
|
teamId?: string;
|
|
529
554
|
projectId: string;
|
|
530
555
|
serviceId: string;
|
|
531
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
556
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
532
557
|
/**
|
|
533
558
|
* Runs command on a Northflank job and waits for completion returning command result and
|
|
534
559
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -551,7 +576,7 @@ declare class NorthflankExecCommand {
|
|
|
551
576
|
teamId?: string;
|
|
552
577
|
projectId: string;
|
|
553
578
|
jobId: string;
|
|
554
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
579
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
555
580
|
/**
|
|
556
581
|
* Runs command on a Northflank job and waits for completion returning command result and
|
|
557
582
|
* standard output and standard error emitted during commmand execution.
|
|
@@ -574,7 +599,7 @@ declare class NorthflankExecCommand {
|
|
|
574
599
|
teamId?: string;
|
|
575
600
|
projectId: string;
|
|
576
601
|
addonId: string;
|
|
577
|
-
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<
|
|
602
|
+
}, data?: ExecSessionData, commandInitCompletedCallback?: (commandInfo: CommandInfo) => void): Promise<ExecCommand>;
|
|
578
603
|
private execCommand;
|
|
579
604
|
private shellSession;
|
|
580
605
|
private getCommandRunner;
|
|
@@ -594,6 +619,7 @@ type DownloadOptions = {
|
|
|
594
619
|
containerName?: string;
|
|
595
620
|
instanceName?: string;
|
|
596
621
|
ignoreList?: string[];
|
|
622
|
+
execLocationHint?: ValidExecLocations;
|
|
597
623
|
};
|
|
598
624
|
type UploadOptions = {
|
|
599
625
|
localPath: string;
|
|
@@ -601,6 +627,7 @@ type UploadOptions = {
|
|
|
601
627
|
containerName?: string;
|
|
602
628
|
instanceName?: string;
|
|
603
629
|
ignoreList?: string[];
|
|
630
|
+
execLocationHint?: ValidExecLocations;
|
|
604
631
|
};
|
|
605
632
|
declare class NorthflankFileCopy {
|
|
606
633
|
private readonly exec;
|
|
@@ -6482,6 +6509,45 @@ declare class GetOrgdirectorygroupsEndpoint extends GetApiEndpoint<GetOrgdirecto
|
|
|
6482
6509
|
body: () => undefined;
|
|
6483
6510
|
}
|
|
6484
6511
|
|
|
6512
|
+
type ListOrgdirectorygroupmembersResult = {
|
|
6513
|
+
/** An array of members in the directory group. */
|
|
6514
|
+
'members': {
|
|
6515
|
+
/** ID (username) of the directory member. Example: "john-doe" */
|
|
6516
|
+
'id': string | null;
|
|
6517
|
+
/** Display name from the member profile. Example: "John Doe" */
|
|
6518
|
+
'name'?: string;
|
|
6519
|
+
/** Email addresses of the member. Example: ["john@example.com"] */
|
|
6520
|
+
'emails'?: string[];
|
|
6521
|
+
}[];
|
|
6522
|
+
};
|
|
6523
|
+
type ListOrgdirectorygroupmembersCall = ((opts: ListOrgdirectorygroupmembersRequest) => Promise<ApiCallResponse<ListOrgdirectorygroupmembersResult>>) & {
|
|
6524
|
+
all: (opts: ListOrgdirectorygroupmembersRequest) => Promise<ApiCallResponse<ListOrgdirectorygroupmembersResult>>;
|
|
6525
|
+
};
|
|
6526
|
+
type ListOrgdirectorygroupmembersRequest = {
|
|
6527
|
+
parameters: ListOrgdirectorygroupmembersParameters;
|
|
6528
|
+
options?: ListOrgdirectorygroupmembersOptions;
|
|
6529
|
+
};
|
|
6530
|
+
type ListOrgdirectorygroupmembersParameters = {
|
|
6531
|
+
/** ID of the directory group */
|
|
6532
|
+
'groupId': string;
|
|
6533
|
+
};
|
|
6534
|
+
type ListOrgdirectorygroupmembersOptions = {
|
|
6535
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
6536
|
+
'per_page'?: number;
|
|
6537
|
+
/** The page number to access. */
|
|
6538
|
+
'page'?: number;
|
|
6539
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
6540
|
+
'cursor'?: string;
|
|
6541
|
+
};
|
|
6542
|
+
/** Lists the users who are members of the org via a specific Directory Sync group. */
|
|
6543
|
+
declare class ListOrgdirectorygroupmembersEndpoint extends GetApiEndpointPaginated<ListOrgdirectorygroupmembersRequest, ListOrgdirectorygroupmembersResult> {
|
|
6544
|
+
description: string;
|
|
6545
|
+
withAuth: boolean;
|
|
6546
|
+
requiredPermissions: string;
|
|
6547
|
+
endpointUrl: (opts: ListOrgdirectorygroupmembersRequest) => string;
|
|
6548
|
+
body: () => undefined;
|
|
6549
|
+
}
|
|
6550
|
+
|
|
6485
6551
|
type GetDnsidResult = {
|
|
6486
6552
|
/** The partially random string associated with the authenticated account, used for generating DNS entries. Example: "exam-1234" */
|
|
6487
6553
|
'dns': string;
|
|
@@ -8348,10 +8414,20 @@ type CreateGradualrolloutstrategyData = {
|
|
|
8348
8414
|
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8349
8415
|
'stablePercentage': number;
|
|
8350
8416
|
} | {
|
|
8351
|
-
/**
|
|
8352
|
-
'
|
|
8353
|
-
|
|
8354
|
-
|
|
8417
|
+
/** Header configuration that will route traffic to the canary deployment */
|
|
8418
|
+
'canaryHeader': {
|
|
8419
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8420
|
+
'headerName': string;
|
|
8421
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8422
|
+
'headerValue': string;
|
|
8423
|
+
};
|
|
8424
|
+
/** Header configuration that will route traffic to the stable deployment */
|
|
8425
|
+
'stableHeader': {
|
|
8426
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8427
|
+
'headerName': string;
|
|
8428
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8429
|
+
'headerValue': string;
|
|
8430
|
+
};
|
|
8355
8431
|
};
|
|
8356
8432
|
};
|
|
8357
8433
|
};
|
|
@@ -8434,10 +8510,20 @@ type PutGradualrolloutstrategyData = {
|
|
|
8434
8510
|
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8435
8511
|
'stablePercentage': number;
|
|
8436
8512
|
} | {
|
|
8437
|
-
/**
|
|
8438
|
-
'
|
|
8439
|
-
|
|
8440
|
-
|
|
8513
|
+
/** Header configuration that will route traffic to the canary deployment */
|
|
8514
|
+
'canaryHeader': {
|
|
8515
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8516
|
+
'headerName': string;
|
|
8517
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8518
|
+
'headerValue': string;
|
|
8519
|
+
};
|
|
8520
|
+
/** Header configuration that will route traffic to the stable deployment */
|
|
8521
|
+
'stableHeader': {
|
|
8522
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8523
|
+
'headerName': string;
|
|
8524
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8525
|
+
'headerValue': string;
|
|
8526
|
+
};
|
|
8441
8527
|
};
|
|
8442
8528
|
};
|
|
8443
8529
|
};
|
|
@@ -8525,10 +8611,20 @@ type PatchGradualrolloutstrategyData = {
|
|
|
8525
8611
|
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8526
8612
|
'stablePercentage': number;
|
|
8527
8613
|
} | {
|
|
8528
|
-
/**
|
|
8529
|
-
'
|
|
8530
|
-
|
|
8531
|
-
|
|
8614
|
+
/** Header configuration that will route traffic to the canary deployment */
|
|
8615
|
+
'canaryHeader': {
|
|
8616
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8617
|
+
'headerName': string;
|
|
8618
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8619
|
+
'headerValue': string;
|
|
8620
|
+
};
|
|
8621
|
+
/** Header configuration that will route traffic to the stable deployment */
|
|
8622
|
+
'stableHeader': {
|
|
8623
|
+
/** HTTP header name used to identify requests that should be routed to the target deployment Example: "x-canary" */
|
|
8624
|
+
'headerName': string;
|
|
8625
|
+
/** HTTP header value that routes matching requests to the target deployment Example: "true" */
|
|
8626
|
+
'headerValue': string;
|
|
8627
|
+
};
|
|
8532
8628
|
};
|
|
8533
8629
|
};
|
|
8534
8630
|
};
|
|
@@ -11764,6 +11860,47 @@ declare class DeleteLoadbalancerEndpoint extends DeleteApiEndpoint<DeleteLoadbal
|
|
|
11764
11860
|
body: () => undefined;
|
|
11765
11861
|
}
|
|
11766
11862
|
|
|
11863
|
+
type ListOrgmembersResult = {
|
|
11864
|
+
/** An array of org members. */
|
|
11865
|
+
'members': {
|
|
11866
|
+
/** ID (username) of the org member. For users who are not finalized this ID may change on finalisation. Example: "john-doe" */
|
|
11867
|
+
'id': string;
|
|
11868
|
+
/** Display name from the member profile. Example: "John Doe" */
|
|
11869
|
+
'name'?: string;
|
|
11870
|
+
/** Email addresses of the member. */
|
|
11871
|
+
'emails'?: {
|
|
11872
|
+
'address'?: string;
|
|
11873
|
+
'verified'?: boolean;
|
|
11874
|
+
}[];
|
|
11875
|
+
/** The time the member joined the org. Example: "2021-01-20T11:19:53.175Z" */
|
|
11876
|
+
'joinedAt'?: string;
|
|
11877
|
+
/** Whether the account has been fully set up by the user. */
|
|
11878
|
+
'finalized': boolean;
|
|
11879
|
+
}[];
|
|
11880
|
+
};
|
|
11881
|
+
type ListOrgmembersCall = ((opts: ListOrgmembersRequest) => Promise<ApiCallResponse<ListOrgmembersResult>>) & {
|
|
11882
|
+
all: (opts: ListOrgmembersRequest) => Promise<ApiCallResponse<ListOrgmembersResult>>;
|
|
11883
|
+
};
|
|
11884
|
+
type ListOrgmembersRequest = {
|
|
11885
|
+
options?: ListOrgmembersOptions;
|
|
11886
|
+
};
|
|
11887
|
+
type ListOrgmembersOptions = {
|
|
11888
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
11889
|
+
'per_page'?: number;
|
|
11890
|
+
/** The page number to access. */
|
|
11891
|
+
'page'?: number;
|
|
11892
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
11893
|
+
'cursor'?: string;
|
|
11894
|
+
};
|
|
11895
|
+
/** Gets a list of members belonging to the authenticated org. */
|
|
11896
|
+
declare class ListOrgmembersEndpoint extends GetApiEndpointPaginated<ListOrgmembersRequest, ListOrgmembersResult> {
|
|
11897
|
+
description: string;
|
|
11898
|
+
withAuth: boolean;
|
|
11899
|
+
requiredPermissions: string;
|
|
11900
|
+
endpointUrl: (opts: ListOrgmembersRequest) => string;
|
|
11901
|
+
body: () => undefined;
|
|
11902
|
+
}
|
|
11903
|
+
|
|
11767
11904
|
type ListOrgrolesResult = {
|
|
11768
11905
|
/** An array of org roles. */
|
|
11769
11906
|
'roles': {
|
|
@@ -12111,6 +12248,58 @@ declare class DeleteOrgroleEndpoint extends DeleteApiEndpoint<DeleteOrgroleReque
|
|
|
12111
12248
|
body: () => undefined;
|
|
12112
12249
|
}
|
|
12113
12250
|
|
|
12251
|
+
type ListOrgrolemembersResult = {
|
|
12252
|
+
/** An array of members in the org role. */
|
|
12253
|
+
'members': {
|
|
12254
|
+
/** ID (username) of the org member. For users who are not finalized this ID may change on finalisation. Example: "john-doe" */
|
|
12255
|
+
'id': string;
|
|
12256
|
+
/** Display name from the member profile. Example: "John Doe" */
|
|
12257
|
+
'name'?: string;
|
|
12258
|
+
/** Email addresses of the member. */
|
|
12259
|
+
'emails'?: {
|
|
12260
|
+
'address'?: string;
|
|
12261
|
+
'verified'?: boolean;
|
|
12262
|
+
}[];
|
|
12263
|
+
/** The time the member joined the org. Example: "2021-01-20T11:19:53.175Z" */
|
|
12264
|
+
'joinedAt'?: string;
|
|
12265
|
+
/** Whether the account has been fully set up by the user. */
|
|
12266
|
+
'finalized': boolean;
|
|
12267
|
+
/** How the member was added to the role. `explicit` means manually added; `implicit` means provisioned via Directory Sync. Example: "explicit" */
|
|
12268
|
+
'type': 'explicit' | 'implicit';
|
|
12269
|
+
}[];
|
|
12270
|
+
};
|
|
12271
|
+
type ListOrgrolemembersCall = ((opts: ListOrgrolemembersRequest) => Promise<ApiCallResponse<ListOrgrolemembersResult>>) & {
|
|
12272
|
+
all: (opts: ListOrgrolemembersRequest) => Promise<ApiCallResponse<ListOrgrolemembersResult>>;
|
|
12273
|
+
};
|
|
12274
|
+
type ListOrgrolemembersRequest = {
|
|
12275
|
+
parameters: ListOrgrolemembersParameters;
|
|
12276
|
+
options?: ListOrgrolemembersOptions;
|
|
12277
|
+
};
|
|
12278
|
+
type ListOrgrolemembersParameters = {
|
|
12279
|
+
/** ID of the org role */
|
|
12280
|
+
'roleId': string;
|
|
12281
|
+
};
|
|
12282
|
+
type ListOrgrolemembersOptions = {
|
|
12283
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
12284
|
+
'per_page'?: number;
|
|
12285
|
+
/** The page number to access. */
|
|
12286
|
+
'page'?: number;
|
|
12287
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
12288
|
+
'cursor'?: string;
|
|
12289
|
+
/** Filter members by how they were added, directly or implicitly via directory group membership. */
|
|
12290
|
+
'type'?: string;
|
|
12291
|
+
/** Filter members by user ID. Specify the parameter multiple times to filter by multiple user IDs. */
|
|
12292
|
+
'userIds'?: undefined;
|
|
12293
|
+
};
|
|
12294
|
+
/** Gets a list of members assigned to a platform role in the authenticated org. */
|
|
12295
|
+
declare class ListOrgrolemembersEndpoint extends GetApiEndpointPaginated<ListOrgrolemembersRequest, ListOrgrolemembersResult> {
|
|
12296
|
+
description: string;
|
|
12297
|
+
withAuth: boolean;
|
|
12298
|
+
requiredPermissions: string;
|
|
12299
|
+
endpointUrl: (opts: ListOrgrolemembersRequest) => string;
|
|
12300
|
+
body: () => undefined;
|
|
12301
|
+
}
|
|
12302
|
+
|
|
12114
12303
|
type CreateOrgrolememberResult = any;
|
|
12115
12304
|
type CreateOrgrolememberCall = (opts: CreateOrgrolememberRequest) => Promise<ApiCallResponse<CreateOrgrolememberResult>>;
|
|
12116
12305
|
type CreateOrgrolememberRequest = {
|
|
@@ -12122,7 +12311,7 @@ type CreateOrgrolememberParameters = {
|
|
|
12122
12311
|
'roleId': string;
|
|
12123
12312
|
};
|
|
12124
12313
|
type CreateOrgrolememberData = {
|
|
12125
|
-
/** ID of the user to add to this role. Example: "
|
|
12314
|
+
/** ID of the user to add to this role. Example: "john-doe" */
|
|
12126
12315
|
'userId': string;
|
|
12127
12316
|
};
|
|
12128
12317
|
/** Adds a user to a platform role in the authenticated org. */
|
|
@@ -12142,7 +12331,7 @@ type DeleteOrgrolememberRequest = {
|
|
|
12142
12331
|
type DeleteOrgrolememberParameters = {
|
|
12143
12332
|
/** ID of the org role */
|
|
12144
12333
|
'roleId': string;
|
|
12145
|
-
/** ID of the org member
|
|
12334
|
+
/** ID of the org member. */
|
|
12146
12335
|
'memberId': string;
|
|
12147
12336
|
};
|
|
12148
12337
|
/** Removes a user from a platform role in the authenticated org. */
|
|
@@ -15269,6 +15458,7 @@ type ListExternaladdonsResult = {
|
|
|
15269
15458
|
};
|
|
15270
15459
|
};
|
|
15271
15460
|
'config': any;
|
|
15461
|
+
'outputs'?: any;
|
|
15272
15462
|
};
|
|
15273
15463
|
'name': string;
|
|
15274
15464
|
}[];
|
|
@@ -15362,6 +15552,7 @@ type CreateExternaladdonResult = {
|
|
|
15362
15552
|
};
|
|
15363
15553
|
};
|
|
15364
15554
|
'config': any;
|
|
15555
|
+
'outputs'?: any;
|
|
15365
15556
|
};
|
|
15366
15557
|
'name': string;
|
|
15367
15558
|
};
|
|
@@ -15421,6 +15612,7 @@ type CreateExternaladdonData = {
|
|
|
15421
15612
|
};
|
|
15422
15613
|
};
|
|
15423
15614
|
'config': any;
|
|
15615
|
+
'outputs'?: any;
|
|
15424
15616
|
};
|
|
15425
15617
|
'name': string;
|
|
15426
15618
|
};
|
|
@@ -15475,6 +15667,7 @@ type GetExternaladdonResult = {
|
|
|
15475
15667
|
};
|
|
15476
15668
|
};
|
|
15477
15669
|
'config': any;
|
|
15670
|
+
'outputs'?: any;
|
|
15478
15671
|
};
|
|
15479
15672
|
'name': string;
|
|
15480
15673
|
};
|
|
@@ -15546,6 +15739,7 @@ type UpdateExternaladdonResult = {
|
|
|
15546
15739
|
};
|
|
15547
15740
|
};
|
|
15548
15741
|
'config': any;
|
|
15742
|
+
'outputs'?: any;
|
|
15549
15743
|
};
|
|
15550
15744
|
'name': string;
|
|
15551
15745
|
};
|
|
@@ -15609,6 +15803,7 @@ type UpdateExternaladdonData = {
|
|
|
15609
15803
|
};
|
|
15610
15804
|
};
|
|
15611
15805
|
'config': any;
|
|
15806
|
+
'outputs'?: any;
|
|
15612
15807
|
};
|
|
15613
15808
|
};
|
|
15614
15809
|
/** Updates configuration for an external addon */
|
|
@@ -15927,7 +16122,7 @@ type CreateJobResult = {
|
|
|
15927
16122
|
'credentials'?: string;
|
|
15928
16123
|
};
|
|
15929
16124
|
'internal'?: {
|
|
15930
|
-
/** ID of the build service to deploy
|
|
16125
|
+
/** ID of the build service to deploy */
|
|
15931
16126
|
'id'?: string;
|
|
15932
16127
|
/** Branch to deploy Example: "master" */
|
|
15933
16128
|
'branch'?: string;
|
|
@@ -16170,7 +16365,7 @@ type CreateJobData = {
|
|
|
16170
16365
|
'annotations'?: any;
|
|
16171
16366
|
};
|
|
16172
16367
|
'internal': {
|
|
16173
|
-
/** ID of the build service to deploy
|
|
16368
|
+
/** ID of the build service to deploy */
|
|
16174
16369
|
'id'?: string;
|
|
16175
16370
|
/** Branch to deploy Example: "master" */
|
|
16176
16371
|
'branch'?: string;
|
|
@@ -16534,7 +16729,7 @@ type PutJobResult = {
|
|
|
16534
16729
|
'credentials'?: string;
|
|
16535
16730
|
};
|
|
16536
16731
|
'internal'?: {
|
|
16537
|
-
/** ID of the build service to deploy
|
|
16732
|
+
/** ID of the build service to deploy */
|
|
16538
16733
|
'id'?: string;
|
|
16539
16734
|
/** Branch to deploy Example: "master" */
|
|
16540
16735
|
'branch'?: string;
|
|
@@ -16777,7 +16972,7 @@ type PutJobData = {
|
|
|
16777
16972
|
'annotations'?: any;
|
|
16778
16973
|
};
|
|
16779
16974
|
'internal': {
|
|
16780
|
-
/** ID of the build service to deploy
|
|
16975
|
+
/** ID of the build service to deploy */
|
|
16781
16976
|
'id'?: string;
|
|
16782
16977
|
/** Branch to deploy Example: "master" */
|
|
16783
16978
|
'branch'?: string;
|
|
@@ -17137,7 +17332,7 @@ type CreateJobCronResult = {
|
|
|
17137
17332
|
'credentials'?: string;
|
|
17138
17333
|
};
|
|
17139
17334
|
'internal'?: {
|
|
17140
|
-
/** ID of the build service to deploy
|
|
17335
|
+
/** ID of the build service to deploy */
|
|
17141
17336
|
'id'?: string;
|
|
17142
17337
|
/** Branch to deploy Example: "master" */
|
|
17143
17338
|
'branch'?: string;
|
|
@@ -17380,7 +17575,7 @@ type CreateJobCronData = {
|
|
|
17380
17575
|
'annotations'?: any;
|
|
17381
17576
|
};
|
|
17382
17577
|
'internal': {
|
|
17383
|
-
/** ID of the build service to deploy
|
|
17578
|
+
/** ID of the build service to deploy */
|
|
17384
17579
|
'id'?: string;
|
|
17385
17580
|
/** Branch to deploy Example: "master" */
|
|
17386
17581
|
'branch'?: string;
|
|
@@ -17736,7 +17931,7 @@ type PutJobCronResult = {
|
|
|
17736
17931
|
'credentials'?: string;
|
|
17737
17932
|
};
|
|
17738
17933
|
'internal'?: {
|
|
17739
|
-
/** ID of the build service to deploy
|
|
17934
|
+
/** ID of the build service to deploy */
|
|
17740
17935
|
'id'?: string;
|
|
17741
17936
|
/** Branch to deploy Example: "master" */
|
|
17742
17937
|
'branch'?: string;
|
|
@@ -17979,7 +18174,7 @@ type PutJobCronData = {
|
|
|
17979
18174
|
'annotations'?: any;
|
|
17980
18175
|
};
|
|
17981
18176
|
'internal': {
|
|
17982
|
-
/** ID of the build service to deploy
|
|
18177
|
+
/** ID of the build service to deploy */
|
|
17983
18178
|
'id'?: string;
|
|
17984
18179
|
/** Branch to deploy Example: "master" */
|
|
17985
18180
|
'branch'?: string;
|
|
@@ -18335,7 +18530,7 @@ type PatchJobCronResult = {
|
|
|
18335
18530
|
'credentials'?: string;
|
|
18336
18531
|
};
|
|
18337
18532
|
'internal'?: {
|
|
18338
|
-
/** ID of the build service to deploy
|
|
18533
|
+
/** ID of the build service to deploy */
|
|
18339
18534
|
'id'?: string;
|
|
18340
18535
|
/** Branch to deploy Example: "master" */
|
|
18341
18536
|
'branch'?: string;
|
|
@@ -18743,7 +18938,7 @@ type CreateJobManualResult = {
|
|
|
18743
18938
|
'credentials'?: string;
|
|
18744
18939
|
};
|
|
18745
18940
|
'internal'?: {
|
|
18746
|
-
/** ID of the build service to deploy
|
|
18941
|
+
/** ID of the build service to deploy */
|
|
18747
18942
|
'id'?: string;
|
|
18748
18943
|
/** Branch to deploy Example: "master" */
|
|
18749
18944
|
'branch'?: string;
|
|
@@ -18986,7 +19181,7 @@ type CreateJobManualData = {
|
|
|
18986
19181
|
'annotations'?: any;
|
|
18987
19182
|
};
|
|
18988
19183
|
'internal': {
|
|
18989
|
-
/** ID of the build service to deploy
|
|
19184
|
+
/** ID of the build service to deploy */
|
|
18990
19185
|
'id'?: string;
|
|
18991
19186
|
/** Branch to deploy Example: "master" */
|
|
18992
19187
|
'branch'?: string;
|
|
@@ -19330,7 +19525,7 @@ type PutJobManualResult = {
|
|
|
19330
19525
|
'credentials'?: string;
|
|
19331
19526
|
};
|
|
19332
19527
|
'internal'?: {
|
|
19333
|
-
/** ID of the build service to deploy
|
|
19528
|
+
/** ID of the build service to deploy */
|
|
19334
19529
|
'id'?: string;
|
|
19335
19530
|
/** Branch to deploy Example: "master" */
|
|
19336
19531
|
'branch'?: string;
|
|
@@ -19573,7 +19768,7 @@ type PutJobManualData = {
|
|
|
19573
19768
|
'annotations'?: any;
|
|
19574
19769
|
};
|
|
19575
19770
|
'internal': {
|
|
19576
|
-
/** ID of the build service to deploy
|
|
19771
|
+
/** ID of the build service to deploy */
|
|
19577
19772
|
'id'?: string;
|
|
19578
19773
|
/** Branch to deploy Example: "master" */
|
|
19579
19774
|
'branch'?: string;
|
|
@@ -19917,7 +20112,7 @@ type PatchJobManualResult = {
|
|
|
19917
20112
|
'credentials'?: string;
|
|
19918
20113
|
};
|
|
19919
20114
|
'internal'?: {
|
|
19920
|
-
/** ID of the build service to deploy
|
|
20115
|
+
/** ID of the build service to deploy */
|
|
19921
20116
|
'id'?: string;
|
|
19922
20117
|
/** Branch to deploy Example: "master" */
|
|
19923
20118
|
'branch'?: string;
|
|
@@ -20510,7 +20705,7 @@ type PatchJobResult = {
|
|
|
20510
20705
|
'credentials'?: string;
|
|
20511
20706
|
};
|
|
20512
20707
|
'internal'?: {
|
|
20513
|
-
/** ID of the build service to deploy
|
|
20708
|
+
/** ID of the build service to deploy */
|
|
20514
20709
|
'id'?: string;
|
|
20515
20710
|
/** Branch to deploy Example: "master" */
|
|
20516
20711
|
'branch'?: string;
|
|
@@ -21552,7 +21747,7 @@ type UpdateJobDeploymentData = {
|
|
|
21552
21747
|
};
|
|
21553
21748
|
} | {
|
|
21554
21749
|
'internal': {
|
|
21555
|
-
/** ID of the build service to deploy
|
|
21750
|
+
/** ID of the build service to deploy */
|
|
21556
21751
|
'id'?: string;
|
|
21557
21752
|
/** Branch to deploy Example: "master" */
|
|
21558
21753
|
'branch'?: string;
|
|
@@ -21973,7 +22168,7 @@ type StartJobRunData = {
|
|
|
21973
22168
|
};
|
|
21974
22169
|
/** Optional: Specify the commit to run */
|
|
21975
22170
|
'internal'?: {
|
|
21976
|
-
/** ID of the build service to deploy
|
|
22171
|
+
/** ID of the build service to deploy */
|
|
21977
22172
|
'id'?: string;
|
|
21978
22173
|
/** Branch to deploy Example: "master" */
|
|
21979
22174
|
'branch'?: string;
|
|
@@ -26135,6 +26330,15 @@ type CreateServiceBuildResult = {
|
|
|
26135
26330
|
'prRestrictions'?: string[];
|
|
26136
26331
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26137
26332
|
'branchRestrictions'?: string[];
|
|
26333
|
+
/** Controls which projects can use this build service. */
|
|
26334
|
+
'crossProjectAccess'?: {
|
|
26335
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
26336
|
+
'enabled': boolean;
|
|
26337
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
26338
|
+
'projects': string[];
|
|
26339
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
26340
|
+
'isAllowList': boolean;
|
|
26341
|
+
};
|
|
26138
26342
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26139
26343
|
'pathIgnoreRules'?: string[];
|
|
26140
26344
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -26303,6 +26507,15 @@ type CreateServiceBuildData = {
|
|
|
26303
26507
|
'prRestrictions'?: string[];
|
|
26304
26508
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26305
26509
|
'branchRestrictions'?: string[];
|
|
26510
|
+
/** Controls which projects can use this build service. */
|
|
26511
|
+
'crossProjectAccess'?: {
|
|
26512
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
26513
|
+
'enabled': boolean;
|
|
26514
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
26515
|
+
'projects': string[];
|
|
26516
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
26517
|
+
'isAllowList': boolean;
|
|
26518
|
+
};
|
|
26306
26519
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26307
26520
|
'pathIgnoreRules'?: string[];
|
|
26308
26521
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -26435,6 +26648,15 @@ type PutServiceBuildResult = {
|
|
|
26435
26648
|
'prRestrictions'?: string[];
|
|
26436
26649
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26437
26650
|
'branchRestrictions'?: string[];
|
|
26651
|
+
/** Controls which projects can use this build service. */
|
|
26652
|
+
'crossProjectAccess'?: {
|
|
26653
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
26654
|
+
'enabled': boolean;
|
|
26655
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
26656
|
+
'projects': string[];
|
|
26657
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
26658
|
+
'isAllowList': boolean;
|
|
26659
|
+
};
|
|
26438
26660
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26439
26661
|
'pathIgnoreRules'?: string[];
|
|
26440
26662
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -26603,6 +26825,15 @@ type PutServiceBuildData = {
|
|
|
26603
26825
|
'prRestrictions'?: string[];
|
|
26604
26826
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26605
26827
|
'branchRestrictions'?: string[];
|
|
26828
|
+
/** Controls which projects can use this build service. */
|
|
26829
|
+
'crossProjectAccess'?: {
|
|
26830
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
26831
|
+
'enabled': boolean;
|
|
26832
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
26833
|
+
'projects': string[];
|
|
26834
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
26835
|
+
'isAllowList': boolean;
|
|
26836
|
+
};
|
|
26606
26837
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26607
26838
|
'pathIgnoreRules'?: string[];
|
|
26608
26839
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -26735,6 +26966,15 @@ type PatchServiceBuildResult = {
|
|
|
26735
26966
|
'prRestrictions'?: string[];
|
|
26736
26967
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26737
26968
|
'branchRestrictions'?: string[];
|
|
26969
|
+
/** Controls which projects can use this build service. */
|
|
26970
|
+
'crossProjectAccess'?: {
|
|
26971
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
26972
|
+
'enabled': boolean;
|
|
26973
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
26974
|
+
'projects': string[];
|
|
26975
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
26976
|
+
'isAllowList': boolean;
|
|
26977
|
+
};
|
|
26738
26978
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26739
26979
|
'pathIgnoreRules'?: string[];
|
|
26740
26980
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -26894,6 +27134,15 @@ type PatchServiceBuildData = {
|
|
|
26894
27134
|
'prRestrictions'?: string[];
|
|
26895
27135
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
26896
27136
|
'branchRestrictions'?: string[];
|
|
27137
|
+
/** Controls which projects can use this build service. */
|
|
27138
|
+
'crossProjectAccess'?: {
|
|
27139
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
27140
|
+
'enabled': boolean;
|
|
27141
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
27142
|
+
'projects': string[];
|
|
27143
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
27144
|
+
'isAllowList': boolean;
|
|
27145
|
+
};
|
|
26897
27146
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
26898
27147
|
'pathIgnoreRules'?: string[];
|
|
26899
27148
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -30163,7 +30412,7 @@ type CreateServiceDeploymentResult = {
|
|
|
30163
30412
|
'annotations'?: any;
|
|
30164
30413
|
};
|
|
30165
30414
|
'internal'?: {
|
|
30166
|
-
/** ID of the build service to deploy
|
|
30415
|
+
/** ID of the build service to deploy */
|
|
30167
30416
|
'id'?: string;
|
|
30168
30417
|
/** Branch to deploy Example: "master" */
|
|
30169
30418
|
'branch'?: string;
|
|
@@ -30328,7 +30577,7 @@ type CreateServiceDeploymentData = {
|
|
|
30328
30577
|
'annotations'?: any;
|
|
30329
30578
|
};
|
|
30330
30579
|
'internal': {
|
|
30331
|
-
/** ID of the build service to deploy
|
|
30580
|
+
/** ID of the build service to deploy */
|
|
30332
30581
|
'id'?: string;
|
|
30333
30582
|
/** Branch to deploy Example: "master" */
|
|
30334
30583
|
'branch'?: string;
|
|
@@ -31102,7 +31351,7 @@ type PutServiceDeploymentResult = {
|
|
|
31102
31351
|
'annotations'?: any;
|
|
31103
31352
|
};
|
|
31104
31353
|
'internal'?: {
|
|
31105
|
-
/** ID of the build service to deploy
|
|
31354
|
+
/** ID of the build service to deploy */
|
|
31106
31355
|
'id'?: string;
|
|
31107
31356
|
/** Branch to deploy Example: "master" */
|
|
31108
31357
|
'branch'?: string;
|
|
@@ -31267,7 +31516,7 @@ type PutServiceDeploymentData = {
|
|
|
31267
31516
|
'annotations'?: any;
|
|
31268
31517
|
};
|
|
31269
31518
|
'internal': {
|
|
31270
|
-
/** ID of the build service to deploy
|
|
31519
|
+
/** ID of the build service to deploy */
|
|
31271
31520
|
'id'?: string;
|
|
31272
31521
|
/** Branch to deploy Example: "master" */
|
|
31273
31522
|
'branch'?: string;
|
|
@@ -32041,7 +32290,7 @@ type PatchServiceDeploymentResult = {
|
|
|
32041
32290
|
'annotations'?: any;
|
|
32042
32291
|
};
|
|
32043
32292
|
'internal'?: {
|
|
32044
|
-
/** ID of the build service to deploy
|
|
32293
|
+
/** ID of the build service to deploy */
|
|
32045
32294
|
'id'?: string;
|
|
32046
32295
|
/** Branch to deploy Example: "master" */
|
|
32047
32296
|
'branch'?: string;
|
|
@@ -32205,7 +32454,7 @@ type PatchServiceDeploymentData = {
|
|
|
32205
32454
|
'annotations'?: any;
|
|
32206
32455
|
};
|
|
32207
32456
|
'internal': {
|
|
32208
|
-
/** ID of the build service to deploy
|
|
32457
|
+
/** ID of the build service to deploy */
|
|
32209
32458
|
'id'?: string;
|
|
32210
32459
|
/** Branch to deploy Example: "master" */
|
|
32211
32460
|
'branch'?: string;
|
|
@@ -32809,6 +33058,15 @@ type GetServiceResult = {
|
|
|
32809
33058
|
'prRestrictions'?: string[];
|
|
32810
33059
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
32811
33060
|
'branchRestrictions'?: string[];
|
|
33061
|
+
/** Controls which projects can use this build service. */
|
|
33062
|
+
'crossProjectAccess'?: {
|
|
33063
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
33064
|
+
'enabled': boolean;
|
|
33065
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
33066
|
+
'projects': string[];
|
|
33067
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
33068
|
+
'isAllowList': boolean;
|
|
33069
|
+
};
|
|
32812
33070
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
32813
33071
|
'pathIgnoreRules'?: string[];
|
|
32814
33072
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -33407,6 +33665,33 @@ declare class GetServiceBuildargumentdetailsEndpoint extends GetApiEndpoint<GetS
|
|
|
33407
33665
|
body: () => undefined;
|
|
33408
33666
|
}
|
|
33409
33667
|
|
|
33668
|
+
type ResetServiceBuildcacheResult = any;
|
|
33669
|
+
type ResetServiceBuildcacheCall = (opts: ResetServiceBuildcacheRequest) => Promise<ApiCallResponse<ResetServiceBuildcacheResult>>;
|
|
33670
|
+
type ResetServiceBuildcacheRequest = {
|
|
33671
|
+
parameters: ResetServiceBuildcacheParameters;
|
|
33672
|
+
};
|
|
33673
|
+
type ResetServiceBuildcacheParameters = {
|
|
33674
|
+
/** ID of the project */
|
|
33675
|
+
'projectId': string;
|
|
33676
|
+
/** ID of the service */
|
|
33677
|
+
'serviceId': string;
|
|
33678
|
+
} | {
|
|
33679
|
+
/** ID of the team */
|
|
33680
|
+
'teamId': string;
|
|
33681
|
+
/** ID of the project */
|
|
33682
|
+
'projectId': string;
|
|
33683
|
+
/** ID of the service */
|
|
33684
|
+
'serviceId': string;
|
|
33685
|
+
};
|
|
33686
|
+
/** Clears the build cache of a given combined or build service. */
|
|
33687
|
+
declare class ResetServiceBuildcacheEndpoint extends DeleteApiEndpoint<ResetServiceBuildcacheRequest, ResetServiceBuildcacheResult> {
|
|
33688
|
+
description: string;
|
|
33689
|
+
withAuth: boolean;
|
|
33690
|
+
requiredPermissions: string;
|
|
33691
|
+
endpointUrl: (opts: ResetServiceBuildcacheRequest) => string;
|
|
33692
|
+
body: () => undefined;
|
|
33693
|
+
}
|
|
33694
|
+
|
|
33410
33695
|
type UpdateServiceBuildoptionsResult = any;
|
|
33411
33696
|
type UpdateServiceBuildoptionsCall = (opts: UpdateServiceBuildoptionsRequest) => Promise<ApiCallResponse<UpdateServiceBuildoptionsResult>>;
|
|
33412
33697
|
type UpdateServiceBuildoptionsRequest = {
|
|
@@ -33449,6 +33734,15 @@ type UpdateServiceBuildoptionsData = {
|
|
|
33449
33734
|
'prRestrictions'?: string[];
|
|
33450
33735
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
33451
33736
|
'branchRestrictions'?: string[];
|
|
33737
|
+
/** Controls which projects can use this build service. */
|
|
33738
|
+
'crossProjectAccess'?: {
|
|
33739
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
33740
|
+
'enabled': boolean;
|
|
33741
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
33742
|
+
'projects': string[];
|
|
33743
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
33744
|
+
'isAllowList': boolean;
|
|
33745
|
+
};
|
|
33452
33746
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
33453
33747
|
'pathIgnoreRules'?: string[];
|
|
33454
33748
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -33496,6 +33790,15 @@ type UpdateServiceBuildoptionsData = {
|
|
|
33496
33790
|
'prRestrictions'?: string[];
|
|
33497
33791
|
/** An array of branch build rules. Only supported for build services. Each commit belonging to a branch that matches one of the provided build rules will be built automatically. */
|
|
33498
33792
|
'branchRestrictions'?: string[];
|
|
33793
|
+
/** Controls which projects can use this build service. */
|
|
33794
|
+
'crossProjectAccess'?: {
|
|
33795
|
+
/** Allow this build service to be referenced by resources in other projects. Example: true */
|
|
33796
|
+
'enabled': boolean;
|
|
33797
|
+
/** A list of project IDs used as an allow list or deny list. */
|
|
33798
|
+
'projects': string[];
|
|
33799
|
+
/** If true, only the listed projects can use this build service. If false, all projects except the listed ones can use this build service. */
|
|
33800
|
+
'isAllowList': boolean;
|
|
33801
|
+
};
|
|
33499
33802
|
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
33500
33803
|
'pathIgnoreRules'?: string[];
|
|
33501
33804
|
/** If `true`, the functionality of `pathIgnoreRules` will be inverted. A commit will only be built if a file has been changed that matches one or more of the rules in `pathIgnoreRules`. */
|
|
@@ -33875,7 +34178,7 @@ type UpdateServiceDeploymentData = {
|
|
|
33875
34178
|
};
|
|
33876
34179
|
} | {
|
|
33877
34180
|
'internal': {
|
|
33878
|
-
/** ID of the build service to deploy
|
|
34181
|
+
/** ID of the build service to deploy */
|
|
33879
34182
|
'id'?: string;
|
|
33880
34183
|
/** Branch to deploy Example: "master" */
|
|
33881
34184
|
'branch'?: string;
|
|
@@ -36632,16 +36935,19 @@ declare class PatchTeamEndpoint extends PatchApiEndpoint<PatchTeamRequest, Patch
|
|
|
36632
36935
|
type ListTeammembersResult = {
|
|
36633
36936
|
/** An array of team members. */
|
|
36634
36937
|
'members': {
|
|
36635
|
-
/**
|
|
36636
|
-
'id': string;
|
|
36637
|
-
/** Username of the member. Example: "john-doe" */
|
|
36638
|
-
'username'?: string;
|
|
36938
|
+
/** ID (username) of the team member. For users who are not finalized this ID may change on finalisation. Example: "john-doe" */
|
|
36939
|
+
'id': string | null;
|
|
36639
36940
|
/** Display name from the member profile. Example: "John Doe" */
|
|
36640
36941
|
'name'?: string;
|
|
36641
|
-
/** Email addresses of the member.
|
|
36642
|
-
'emails'?:
|
|
36942
|
+
/** Email addresses of the member. */
|
|
36943
|
+
'emails'?: {
|
|
36944
|
+
'address': string;
|
|
36945
|
+
'verified': boolean;
|
|
36946
|
+
}[];
|
|
36643
36947
|
/** The time the member joined the team. Example: "2021-01-20T11:19:53.175Z" */
|
|
36644
36948
|
'joinedAt'?: string;
|
|
36949
|
+
/** Whether the account has been fully set up by the user. */
|
|
36950
|
+
'finalized'?: boolean;
|
|
36645
36951
|
}[];
|
|
36646
36952
|
};
|
|
36647
36953
|
type ListTeammembersCall = ((opts: ListTeammembersRequest) => Promise<ApiCallResponse<ListTeammembersResult>>) & {
|
|
@@ -36688,7 +36994,7 @@ type CreateTeammemberinviteData = {
|
|
|
36688
36994
|
/** Role IDs to assign to the invited member. */
|
|
36689
36995
|
'roles'?: string[];
|
|
36690
36996
|
};
|
|
36691
|
-
/**
|
|
36997
|
+
/** Invites a user to a team. */
|
|
36692
36998
|
declare class CreateTeammemberinviteEndpoint extends PostApiEndpoint<CreateTeammemberinviteRequest, CreateTeammemberinviteResult> {
|
|
36693
36999
|
description: string;
|
|
36694
37000
|
withAuth: boolean;
|
|
@@ -36705,7 +37011,7 @@ type DeleteTeammemberRequest = {
|
|
|
36705
37011
|
type DeleteTeammemberParameters = {
|
|
36706
37012
|
/** ID of the team */
|
|
36707
37013
|
'teamId': string;
|
|
36708
|
-
/** ID of the team member
|
|
37014
|
+
/** ID of the team member. */
|
|
36709
37015
|
'memberId': string;
|
|
36710
37016
|
};
|
|
36711
37017
|
/** Removes a member from a team. */
|
|
@@ -37007,6 +37313,56 @@ declare class DeleteTeamroleEndpoint extends DeleteApiEndpoint<DeleteTeamroleReq
|
|
|
37007
37313
|
body: () => undefined;
|
|
37008
37314
|
}
|
|
37009
37315
|
|
|
37316
|
+
type ListTeamrolemembersResult = {
|
|
37317
|
+
/** An array of members in the team role. */
|
|
37318
|
+
'members': {
|
|
37319
|
+
/** ID (username) of the team member. For users who are not finalized this ID may change on finalisation. Example: "john-doe" */
|
|
37320
|
+
'id': string | null;
|
|
37321
|
+
/** Display name from the member profile. Example: "John Doe" */
|
|
37322
|
+
'name'?: string;
|
|
37323
|
+
/** Email addresses of the member. */
|
|
37324
|
+
'emails'?: {
|
|
37325
|
+
'address': string;
|
|
37326
|
+
'verified': boolean;
|
|
37327
|
+
}[];
|
|
37328
|
+
/** The time the member joined the team. Example: "2021-01-20T11:19:53.175Z" */
|
|
37329
|
+
'joinedAt'?: string;
|
|
37330
|
+
/** Whether the account has been fully set up by the user. */
|
|
37331
|
+
'finalized'?: boolean;
|
|
37332
|
+
}[];
|
|
37333
|
+
};
|
|
37334
|
+
type ListTeamrolemembersCall = ((opts: ListTeamrolemembersRequest) => Promise<ApiCallResponse<ListTeamrolemembersResult>>) & {
|
|
37335
|
+
all: (opts: ListTeamrolemembersRequest) => Promise<ApiCallResponse<ListTeamrolemembersResult>>;
|
|
37336
|
+
};
|
|
37337
|
+
type ListTeamrolemembersRequest = {
|
|
37338
|
+
parameters: ListTeamrolemembersParameters;
|
|
37339
|
+
options?: ListTeamrolemembersOptions;
|
|
37340
|
+
};
|
|
37341
|
+
type ListTeamrolemembersParameters = {
|
|
37342
|
+
/** ID of the team */
|
|
37343
|
+
'teamId': string;
|
|
37344
|
+
/** ID of the team role */
|
|
37345
|
+
'roleId': string;
|
|
37346
|
+
};
|
|
37347
|
+
type ListTeamrolemembersOptions = {
|
|
37348
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
37349
|
+
'per_page'?: number;
|
|
37350
|
+
/** The page number to access. */
|
|
37351
|
+
'page'?: number;
|
|
37352
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
37353
|
+
'cursor'?: string;
|
|
37354
|
+
/** Filter members by user ID. Specify the parameter multiple times to filter by multiple user IDs. */
|
|
37355
|
+
'userIds'?: undefined;
|
|
37356
|
+
};
|
|
37357
|
+
/** Gets a list of members assigned to a platform role in a team. */
|
|
37358
|
+
declare class ListTeamrolemembersEndpoint extends GetApiEndpointPaginated<ListTeamrolemembersRequest, ListTeamrolemembersResult> {
|
|
37359
|
+
description: string;
|
|
37360
|
+
withAuth: boolean;
|
|
37361
|
+
requiredPermissions: string;
|
|
37362
|
+
endpointUrl: (opts: ListTeamrolemembersRequest) => string;
|
|
37363
|
+
body: () => undefined;
|
|
37364
|
+
}
|
|
37365
|
+
|
|
37010
37366
|
type CreateTeamrolememberResult = any;
|
|
37011
37367
|
type CreateTeamrolememberCall = (opts: CreateTeamrolememberRequest) => Promise<ApiCallResponse<CreateTeamrolememberResult>>;
|
|
37012
37368
|
type CreateTeamrolememberRequest = {
|
|
@@ -37020,7 +37376,7 @@ type CreateTeamrolememberParameters = {
|
|
|
37020
37376
|
'roleId': string;
|
|
37021
37377
|
};
|
|
37022
37378
|
type CreateTeamrolememberData = {
|
|
37023
|
-
/** ID of the user to add to this role. Example: "
|
|
37379
|
+
/** ID of the user to add to this role. Example: "john-doe" */
|
|
37024
37380
|
'userId': string;
|
|
37025
37381
|
};
|
|
37026
37382
|
/** Adds a user to a platform role in a team. */
|
|
@@ -37042,7 +37398,7 @@ type DeleteTeamrolememberParameters = {
|
|
|
37042
37398
|
'teamId': string;
|
|
37043
37399
|
/** ID of the team role */
|
|
37044
37400
|
'roleId': string;
|
|
37045
|
-
/** ID of the team member
|
|
37401
|
+
/** ID of the team member. */
|
|
37046
37402
|
'memberId': string;
|
|
37047
37403
|
};
|
|
37048
37404
|
/** Removes a user from a platform role in a team. */
|
|
@@ -38069,6 +38425,7 @@ declare class ApiClient {
|
|
|
38069
38425
|
nodeTypes: ListCloudNodetypesCall;
|
|
38070
38426
|
regions: ListCloudRegionsCall;
|
|
38071
38427
|
};
|
|
38428
|
+
orgDirectoryGroupMembers: ListOrgdirectorygroupmembersCall;
|
|
38072
38429
|
domains: ListDomainsCall;
|
|
38073
38430
|
subdomain: {
|
|
38074
38431
|
path: ListSubdomainPathCall;
|
|
@@ -38082,7 +38439,9 @@ declare class ApiClient {
|
|
|
38082
38439
|
repos: ListReposCall;
|
|
38083
38440
|
branches: ListBranchesCall;
|
|
38084
38441
|
loadBalancers: ListLoadbalancersCall;
|
|
38442
|
+
orgMembers: ListOrgmembersCall;
|
|
38085
38443
|
orgRoles: ListOrgrolesCall;
|
|
38444
|
+
orgRoleMembers: ListOrgrolemembersCall;
|
|
38086
38445
|
plans: ListPlansCall;
|
|
38087
38446
|
projects: ListProjectsCall;
|
|
38088
38447
|
addons: ListAddonsCall;
|
|
@@ -38107,6 +38466,7 @@ declare class ApiClient {
|
|
|
38107
38466
|
teams: ListTeamsCall;
|
|
38108
38467
|
teamMembers: ListTeammembersCall;
|
|
38109
38468
|
teamRoles: ListTeamrolesCall;
|
|
38469
|
+
teamRoleMembers: ListTeamrolemembersCall;
|
|
38110
38470
|
templates: ListTemplatesCall;
|
|
38111
38471
|
templateRuns: ListTemplaterunsCall;
|
|
38112
38472
|
};
|
|
@@ -38405,6 +38765,9 @@ declare class ApiClient {
|
|
|
38405
38765
|
reset: {
|
|
38406
38766
|
addon: ResetAddonCall;
|
|
38407
38767
|
blueprintTemplatePreview: ResetBlueprinttemplatepreviewCall;
|
|
38768
|
+
service: {
|
|
38769
|
+
buildCache: ResetServiceBuildcacheCall;
|
|
38770
|
+
};
|
|
38408
38771
|
};
|
|
38409
38772
|
restart: {
|
|
38410
38773
|
addon: RestartAddonCall;
|
|
@@ -38574,6 +38937,7 @@ declare class ApiClient {
|
|
|
38574
38937
|
nodeTypes: ListCloudNodetypesEndpoint;
|
|
38575
38938
|
regions: ListCloudRegionsEndpoint;
|
|
38576
38939
|
};
|
|
38940
|
+
orgDirectoryGroupMembers: ListOrgdirectorygroupmembersEndpoint;
|
|
38577
38941
|
domains: ListDomainsEndpoint;
|
|
38578
38942
|
subdomain: {
|
|
38579
38943
|
path: ListSubdomainPathEndpoint;
|
|
@@ -38587,7 +38951,9 @@ declare class ApiClient {
|
|
|
38587
38951
|
repos: ListReposEndpoint;
|
|
38588
38952
|
branches: ListBranchesEndpoint;
|
|
38589
38953
|
loadBalancers: ListLoadbalancersEndpoint;
|
|
38954
|
+
orgMembers: ListOrgmembersEndpoint;
|
|
38590
38955
|
orgRoles: ListOrgrolesEndpoint;
|
|
38956
|
+
orgRoleMembers: ListOrgrolemembersEndpoint;
|
|
38591
38957
|
plans: ListPlansEndpoint;
|
|
38592
38958
|
projects: ListProjectsEndpoint;
|
|
38593
38959
|
addons: ListAddonsEndpoint;
|
|
@@ -38612,6 +38978,7 @@ declare class ApiClient {
|
|
|
38612
38978
|
teams: ListTeamsEndpoint;
|
|
38613
38979
|
teamMembers: ListTeammembersEndpoint;
|
|
38614
38980
|
teamRoles: ListTeamrolesEndpoint;
|
|
38981
|
+
teamRoleMembers: ListTeamrolemembersEndpoint;
|
|
38615
38982
|
templates: ListTemplatesEndpoint;
|
|
38616
38983
|
templateRuns: ListTemplaterunsEndpoint;
|
|
38617
38984
|
};
|
|
@@ -38910,6 +39277,9 @@ declare class ApiClient {
|
|
|
38910
39277
|
reset: {
|
|
38911
39278
|
addon: ResetAddonEndpoint;
|
|
38912
39279
|
blueprintTemplatePreview: ResetBlueprinttemplatepreviewEndpoint;
|
|
39280
|
+
service: {
|
|
39281
|
+
buildCache: ResetServiceBuildcacheEndpoint;
|
|
39282
|
+
};
|
|
38913
39283
|
};
|
|
38914
39284
|
restart: {
|
|
38915
39285
|
addon: RestartAddonEndpoint;
|
|
@@ -38950,5 +39320,5 @@ declare class ApiClient {
|
|
|
38950
39320
|
protected baseUrl: () => string | undefined;
|
|
38951
39321
|
}
|
|
38952
39322
|
|
|
38953
|
-
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSshidentitiesEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateEgressipEndpoint, CreateExternaladdonEndpoint, CreateGlobalsecretEndpoint, CreateGradualrolloutstrategyEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLlmmodeldeploymentEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreateOrgroleEndpoint, CreateOrgrolememberEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTeamEndpoint, CreateTeammemberinviteEndpoint, CreateTeamroleEndpoint, CreateTeamrolememberEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteEgressipEndpoint, DeleteExternaladdonEndpoint, DeleteGlobalsecretEndpoint, DeleteGradualrolloutstrategyEndpoint, DeleteJobEndpoint, DeleteLlmmodeldeploymentEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeleteOrgroleEndpoint, DeleteOrgrolememberEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSshidentitiesEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTeammemberEndpoint, DeleteTeamroleEndpoint, DeleteTeamrolememberEndpoint, 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, GetExternaladdonEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLlmmodeldeploymentEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetOrgdirectorygroupsEndpoint, GetOrgroleEndpoint, 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, GetSshidentitiesEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTeamEndpoint, GetTeamroleEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListEgressipsEndpoint, ListExternaladdonsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLlmmodeldeploymentsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListOrgrolesEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSshidentitiesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTeammembersEndpoint, ListTeamrolesEndpoint, ListTeamsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchEgressipEndpoint, PatchGlobalsecretEndpoint, PatchGradualrolloutstrategyEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchOrgroleEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PatchTeamEndpoint, PatchTeamroleEndpoint, PauseAddonEndpoint, PauseBlueprinttemplatepreviewEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutDomainSubdomainEndpoint, PutEgressipEndpoint, PutGlobalsecretEndpoint, PutGradualrolloutstrategyEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutOrgroleEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutSshidentitiesEndpoint, PutTagEndpoint, PutTeamroleEndpoint, ResetAddonEndpoint, ResetBlueprinttemplatepreviewEndpoint, 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, UpdateExternaladdonEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLlmmodeldeploymentEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSshidentitiesEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
|
|
38954
|
-
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, AddBackupdestinationParameters, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsParameters, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSshidentitiesCall, AddSshidentitiesData, AddSshidentitiesParameters, AddSshidentitiesRequest, AddSshidentitiesResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagParameters, 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, CreateCloudClusterParameters, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationParameters, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainParameters, CreateDomainRequest, CreateDomainResult, CreateEgressipCall, CreateEgressipData, CreateEgressipParameters, CreateEgressipRequest, CreateEgressipResult, CreateExternaladdonCall, CreateExternaladdonData, CreateExternaladdonParameters, CreateExternaladdonRequest, CreateExternaladdonResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretParameters, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateGradualrolloutstrategyCall, CreateGradualrolloutstrategyData, CreateGradualrolloutstrategyParameters, CreateGradualrolloutstrategyRequest, CreateGradualrolloutstrategyResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLlmmodeldeploymentCall, CreateLlmmodeldeploymentData, CreateLlmmodeldeploymentParameters, CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerParameters, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkParameters, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateOrgroleCall, CreateOrgroleData, CreateOrgroleRequest, CreateOrgroleResult, CreateOrgrolememberCall, CreateOrgrolememberData, CreateOrgrolememberParameters, CreateOrgrolememberRequest, CreateOrgrolememberResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectParameters, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTeamCall, CreateTeamData, CreateTeamRequest, CreateTeamResult, CreateTeammemberinviteCall, CreateTeammemberinviteData, CreateTeammemberinviteParameters, CreateTeammemberinviteRequest, CreateTeammemberinviteResult, CreateTeamroleCall, CreateTeamroleData, CreateTeamroleParameters, CreateTeamroleRequest, CreateTeamroleResult, CreateTeamrolememberCall, CreateTeamrolememberData, CreateTeamrolememberParameters, CreateTeamrolememberRequest, CreateTeamrolememberResult, CreateTemplateCall, CreateTemplateData, CreateTemplateParameters, 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, DeleteBlueprinttemplatepreviewData, DeleteBlueprinttemplatepreviewOptions, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteEgressipCall, DeleteEgressipParameters, DeleteEgressipRequest, DeleteEgressipResult, DeleteExternaladdonCall, DeleteExternaladdonParameters, DeleteExternaladdonRequest, DeleteExternaladdonResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteGradualrolloutstrategyCall, DeleteGradualrolloutstrategyParameters, DeleteGradualrolloutstrategyRequest, DeleteGradualrolloutstrategyResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLlmmodeldeploymentCall, DeleteLlmmodeldeploymentParameters, DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeleteOrgroleCall, DeleteOrgroleParameters, DeleteOrgroleRequest, DeleteOrgroleResult, DeleteOrgrolememberCall, DeleteOrgrolememberParameters, DeleteOrgrolememberRequest, DeleteOrgrolememberResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewData, DeletePipelinetemplatepreviewOptions, 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, DeleteSshidentitiesCall, DeleteSshidentitiesParameters, DeleteSshidentitiesRequest, DeleteSshidentitiesResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTeammemberCall, DeleteTeammemberParameters, DeleteTeammemberRequest, DeleteTeammemberResult, DeleteTeamroleCall, DeleteTeamroleParameters, DeleteTeamroleRequest, DeleteTeamroleResult, DeleteTeamrolememberCall, DeleteTeamrolememberParameters, DeleteTeamrolememberRequest, DeleteTeamrolememberResult, 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, GetDnsidParameters, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetEgressipCall, GetEgressipParameters, GetEgressipRequest, GetEgressipResult, GetExternaladdonCall, GetExternaladdonParameters, GetExternaladdonRequest, GetExternaladdonResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsParameters, 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, GetOrgdirectorygroupsCall, GetOrgdirectorygroupsRequest, GetOrgdirectorygroupsResult, GetOrgroleCall, GetOrgroleParameters, GetOrgroleRequest, GetOrgroleResult, 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, GetSshidentitiesCall, GetSshidentitiesParameters, GetSshidentitiesRequest, GetSshidentitiesResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTeamCall, GetTeamParameters, GetTeamRequest, GetTeamResult, GetTeamroleCall, GetTeamroleParameters, GetTeamroleRequest, GetTeamroleResult, 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, ListBackupdestinationsParameters, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersParameters, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsParameters, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsParameters, ListDomainsRequest, ListDomainsResult, ListEgressipsCall, ListEgressipsOptions, ListEgressipsParameters, ListEgressipsRequest, ListEgressipsResult, ListExternaladdonsCall, ListExternaladdonsOptions, ListExternaladdonsParameters, ListExternaladdonsRequest, ListExternaladdonsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsParameters, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesParameters, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLlmmodeldeploymentsCall, ListLlmmodeldeploymentsOptions, ListLlmmodeldeploymentsParameters, ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersParameters, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksParameters, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsParameters, ListNotificationsRequest, ListNotificationsResult, ListOrgrolesCall, ListOrgrolesOptions, ListOrgrolesRequest, ListOrgrolesResult, 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, ListProjectsParameters, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsParameters, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposParameters, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSshidentitiesCall, ListSshidentitiesOptions, ListSshidentitiesParameters, ListSshidentitiesRequest, ListSshidentitiesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsParameters, ListTagsRequest, ListTagsResult, ListTeammembersCall, ListTeammembersOptions, ListTeammembersParameters, ListTeammembersRequest, ListTeammembersResult, ListTeamrolesCall, ListTeamrolesOptions, ListTeamrolesParameters, ListTeamrolesRequest, ListTeamrolesResult, ListTeamsCall, ListTeamsOptions, ListTeamsRequest, ListTeamsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesParameters, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsParameters, 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, PatchGradualrolloutstrategyCall, PatchGradualrolloutstrategyData, PatchGradualrolloutstrategyParameters, PatchGradualrolloutstrategyRequest, PatchGradualrolloutstrategyResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchOrgroleCall, PatchOrgroleData, PatchOrgroleParameters, PatchOrgroleRequest, PatchOrgroleResult, 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, PatchTeamCall, PatchTeamData, PatchTeamParameters, PatchTeamRequest, PatchTeamResult, PatchTeamroleCall, PatchTeamroleData, PatchTeamroleParameters, PatchTeamroleRequest, PatchTeamroleResult, 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, PutCloudClusterParameters, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutDomainSubdomainCall, PutDomainSubdomainData, PutDomainSubdomainParameters, PutDomainSubdomainRequest, PutDomainSubdomainResult, PutEgressipCall, PutEgressipData, PutEgressipParameters, PutEgressipRequest, PutEgressipResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretParameters, PutGlobalsecretRequest, PutGlobalsecretResult, PutGradualrolloutstrategyCall, PutGradualrolloutstrategyData, PutGradualrolloutstrategyParameters, PutGradualrolloutstrategyRequest, PutGradualrolloutstrategyResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerParameters, PutLoadbalancerRequest, PutLoadbalancerResult, PutOrgroleCall, PutOrgroleData, PutOrgroleRequest, PutOrgroleResult, PutProjectCall, PutProjectData, PutProjectParameters, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutSshidentitiesCall, PutSshidentitiesData, PutSshidentitiesParameters, PutSshidentitiesRequest, PutSshidentitiesResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, PutTeamroleCall, PutTeamroleData, PutTeamroleParameters, PutTeamroleRequest, PutTeamroleResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, ResetBlueprinttemplatepreviewCall, ResetBlueprinttemplatepreviewData, ResetBlueprinttemplatepreviewParameters, ResetBlueprinttemplatepreviewRequest, ResetBlueprinttemplatepreviewResult, 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, UpdateExternaladdonCall, UpdateExternaladdonData, UpdateExternaladdonParameters, UpdateExternaladdonRequest, UpdateExternaladdonResult, 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, UpdateSshidentitiesCall, UpdateSshidentitiesData, UpdateSshidentitiesParameters, UpdateSshidentitiesRequest, UpdateSshidentitiesResult, 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 };
|
|
39323
|
+
export { AbortAddonBackupEndpoint, AbortAddonRestoreEndpoint, AbortJobBuildEndpoint, AbortJobRunEndpoint, AbortPreviewblueprintrunEndpoint, AbortReleaseflowrunEndpoint, AbortServiceBuildEndpoint, AbortTemplaterunEndpoint, AbortWorkflowrunEndpoint, AddBackupdestinationEndpoint, AddDomainSubdomainEndpoint, AddRegistrycredentialsEndpoint, AddSshidentitiesEndpoint, AddSubdomainPathEndpoint, AddTagEndpoint, ApiClient, ApiClientContextProvider, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiEndpoint, AssignSubdomainPathEndpoint, AssignSubdomainServiceEndpoint, AttachVolumeEndpoint, BackupAddonEndpoint, BackupVolumeEndpoint, CopyType, CordonCloudClusterNodeEndpoint, CreateAddonBackupscheduleEndpoint, CreateAddonEndpoint, CreateCloudClusterEndpoint, CreateCloudIntegrationEndpoint, CreateCustomvcsTokenEndpoint, CreateDomainEndpoint, CreateEgressipEndpoint, CreateExternaladdonEndpoint, CreateGlobalsecretEndpoint, CreateGradualrolloutstrategyEndpoint, CreateJobCronEndpoint, CreateJobEndpoint, CreateJobManualEndpoint, CreateLlmmodeldeploymentEndpoint, CreateLoadbalancerEndpoint, CreateLogsinkEndpoint, CreateNotificationEndpoint, CreateOrgroleEndpoint, CreateOrgrolememberEndpoint, CreatePreviewblueprintEndpoint, CreateProjectEndpoint, CreateSecretEndpoint, CreateServiceBuildEndpoint, CreateServiceCombinedEndpoint, CreateServiceDeploymentEndpoint, CreateTeamEndpoint, CreateTeammemberinviteEndpoint, CreateTeamroleEndpoint, CreateTeamrolememberEndpoint, CreateTemplateEndpoint, CreateVolumeEndpoint, CreateWorkflowEndpoint, DeleteAddonBackupscheduleEndpoint, DeleteAddonEndpoint, DeleteApiEndpoint, DeleteBackupEndpoint, DeleteBackupdestinationEndpoint, DeleteBlueprinttemplatepreviewEndpoint, DeleteCloudClusterEndpoint, DeleteCloudIntegrationEndpoint, DeleteDomainEndpoint, DeleteEgressipEndpoint, DeleteExternaladdonEndpoint, DeleteGlobalsecretEndpoint, DeleteGradualrolloutstrategyEndpoint, DeleteJobEndpoint, DeleteLlmmodeldeploymentEndpoint, DeleteLoadbalancerEndpoint, DeleteLogsinkEndpoint, DeleteNotificationEndpoint, DeleteOrgroleEndpoint, DeleteOrgrolememberEndpoint, DeletePipelinetemplatepreviewEndpoint, DeletePreviewblueprintEndpoint, DeleteProjectEndpoint, DeleteRegistrycredentialsEndpoint, DeleteSecretEndpoint, DeleteSecretlinkEndpoint, DeleteServiceEndpoint, DeleteSshidentitiesEndpoint, DeleteSubdomainEndpoint, DeleteSubdomainPathEndpoint, DeleteTagEndpoint, DeleteTeammemberEndpoint, DeleteTeamroleEndpoint, DeleteTeamrolememberEndpoint, 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, GetExternaladdonEndpoint, GetGlobalsecretEndpoint, GetInvoiceDetailsEndpoint, GetJobBranchesEndpoint, GetJobBuildEndpoint, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentsEndpoint, GetJobBuildsEndpoint, GetJobContainersEndpoint, GetJobDeploymentEndpoint, GetJobEndpoint, GetJobHealthchecksEndpoint, GetJobPullrequestsEndpoint, GetJobRunEndpoint, GetJobRunsEndpoint, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentdetailsEndpoint, GetLlmmodeldeploymentEndpoint, GetLoadbalancerEndpoint, GetLogsinkEndpoint, GetNotificationEndpoint, GetOrgdirectorygroupsEndpoint, GetOrgroleEndpoint, 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, GetSshidentitiesEndpoint, GetSubdomainEndpoint, GetSubdomainPathEndpoint, GetTagEndpoint, GetTeamEndpoint, GetTeamroleEndpoint, GetTemplateEndpoint, GetTemplaterunEndpoint, GetVolumeBackupEndpoint, GetVolumeBackupsEndpoint, GetVolumeEndpoint, GetWorkflowEndpoint, GetWorkflowrunEndpoint, ImportAddonBackupEndpoint, ImportDomaincertificateEndpoint, ListAddonsEndpoint, ListBackupdestinationsEndpoint, ListBackupdestinationsbackupsEndpoint, ListBlueprinttemplatepreviewsEndpoint, ListBranchesEndpoint, ListCloudClusterNodesEndpoint, ListCloudClustersEndpoint, ListCloudIntegrationsEndpoint, ListCloudNodetypesEndpoint, ListCloudProvidersEndpoint, ListCloudRegionsEndpoint, ListDomainsEndpoint, ListEgressipsEndpoint, ListExternaladdonsEndpoint, ListGlobalsecretsEndpoint, ListInvoicesEndpoint, ListJobsEndpoint, ListLlmmodeldeploymentsEndpoint, ListLoadbalancersEndpoint, ListLogsinksEndpoint, ListNotificationsEndpoint, ListOrgdirectorygroupmembersEndpoint, ListOrgmembersEndpoint, ListOrgrolemembersEndpoint, ListOrgrolesEndpoint, ListPipelinesEndpoint, ListPipelinetemplatepreviewsEndpoint, ListPlansEndpoint, ListPreviewblueprintrunsEndpoint, ListPreviewblueprintsEndpoint, ListPreviewtemplaterunsEndpoint, ListProjectsEndpoint, ListRegionsEndpoint, ListRegistrycredentialsEndpoint, ListReleaseflowrunsEndpoint, ListReposEndpoint, ListSecretsEndpoint, ListServicesEndpoint, ListSshidentitiesEndpoint, ListSubdomainPathEndpoint, ListTagsEndpoint, ListTeammembersEndpoint, ListTeamrolemembersEndpoint, ListTeamrolesEndpoint, ListTeamsEndpoint, ListTemplaterunsEndpoint, ListTemplatesEndpoint, ListVcsEndpoint, ListVolumesEndpoint, ListWorkflowrunsEndpoint, ListWorkflowsEndpoint, LogType, MetricType, NorthflankApiCallError, NorthflankExecCommand, NorthflankFileCopy, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonEndpoint, PatchApiEndpoint, PatchBackupdestinationEndpoint, PatchCloudClusterEndpoint, PatchCloudIntegrationEndpoint, PatchEgressipEndpoint, PatchGlobalsecretEndpoint, PatchGradualrolloutstrategyEndpoint, PatchJobCronEndpoint, PatchJobEndpoint, PatchJobManualEndpoint, PatchLoadbalancerEndpoint, PatchOrgroleEndpoint, PatchProjectEndpoint, PatchSecretEndpoint, PatchServiceBuildEndpoint, PatchServiceCombinedEndpoint, PatchServiceDeploymentEndpoint, PatchTagEndpoint, PatchTeamEndpoint, PatchTeamroleEndpoint, PauseAddonEndpoint, PauseBlueprinttemplatepreviewEndpoint, PauseJobEndpoint, PauseLogsinkEndpoint, PauseServiceEndpoint, PostApiEndpoint, PutAddonEndpoint, PutApiEndpoint, PutCloudClusterEndpoint, PutCloudIntegrationEndpoint, PutDomainSubdomainEndpoint, PutEgressipEndpoint, PutGlobalsecretEndpoint, PutGradualrolloutstrategyEndpoint, PutJobCronEndpoint, PutJobEndpoint, PutJobManualEndpoint, PutLoadbalancerEndpoint, PutOrgroleEndpoint, PutProjectEndpoint, PutSecretEndpoint, PutServiceBuildEndpoint, PutServiceCombinedEndpoint, PutServiceDeploymentEndpoint, PutSshidentitiesEndpoint, PutTagEndpoint, PutTeamroleEndpoint, ResetAddonEndpoint, ResetBlueprinttemplatepreviewEndpoint, ResetServiceBuildcacheEndpoint, 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, UpdateExternaladdonEndpoint, UpdateJobBuildargumentsEndpoint, UpdateJobBuildoptionsEndpoint, UpdateJobBuildsourceEndpoint, UpdateJobDeploymentEndpoint, UpdateJobHealthchecksEndpoint, UpdateJobRuntimeenvironmentEndpoint, UpdateJobSettingsEndpoint, UpdateLlmmodeldeploymentEndpoint, UpdateLogsinkEndpoint, UpdateNotificationEndpoint, UpdatePreviewblueprintEndpoint, UpdatePreviewtemplateEndpoint, UpdateRegistrycredentialsEndpoint, UpdateReleaseflowEndpoint, UpdateSecretEndpoint, UpdateSecretlinkEndpoint, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildsourceEndpoint, UpdateServiceDeploymentEndpoint, UpdateServiceHealthchecksEndpoint, UpdateServicePortsEndpoint, UpdateServiceRuntimeenvironmentEndpoint, UpdateSshidentitiesEndpoint, UpdateSubdomainPathEndpoint, UpdateTemplateEndpoint, UpdateVolumeEndpoint, UpdateWorkflowEndpoint, VerifyDomainEndpoint, VerifySubdomainEndpoint };
|
|
39324
|
+
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, AddBackupdestinationParameters, AddBackupdestinationRequest, AddBackupdestinationResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsParameters, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSshidentitiesCall, AddSshidentitiesData, AddSshidentitiesParameters, AddSshidentitiesRequest, AddSshidentitiesResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagParameters, 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, CreateCloudClusterParameters, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationParameters, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainParameters, CreateDomainRequest, CreateDomainResult, CreateEgressipCall, CreateEgressipData, CreateEgressipParameters, CreateEgressipRequest, CreateEgressipResult, CreateExternaladdonCall, CreateExternaladdonData, CreateExternaladdonParameters, CreateExternaladdonRequest, CreateExternaladdonResult, CreateGlobalsecretCall, CreateGlobalsecretData, CreateGlobalsecretParameters, CreateGlobalsecretRequest, CreateGlobalsecretResult, CreateGradualrolloutstrategyCall, CreateGradualrolloutstrategyData, CreateGradualrolloutstrategyParameters, CreateGradualrolloutstrategyRequest, CreateGradualrolloutstrategyResult, CreateJobCall, CreateJobCronCall, CreateJobCronData, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobData, CreateJobManualCall, CreateJobManualData, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateJobParameters, CreateJobRequest, CreateJobResult, CreateLlmmodeldeploymentCall, CreateLlmmodeldeploymentData, CreateLlmmodeldeploymentParameters, CreateLlmmodeldeploymentRequest, CreateLlmmodeldeploymentResult, CreateLoadbalancerCall, CreateLoadbalancerData, CreateLoadbalancerParameters, CreateLoadbalancerRequest, CreateLoadbalancerResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkParameters, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateOrgroleCall, CreateOrgroleData, CreateOrgroleRequest, CreateOrgroleResult, CreateOrgrolememberCall, CreateOrgrolememberData, CreateOrgrolememberParameters, CreateOrgrolememberRequest, CreateOrgrolememberResult, CreatePreviewblueprintCall, CreatePreviewblueprintData, CreatePreviewblueprintParameters, CreatePreviewblueprintRequest, CreatePreviewblueprintResult, CreateProjectCall, CreateProjectData, CreateProjectParameters, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTeamCall, CreateTeamData, CreateTeamRequest, CreateTeamResult, CreateTeammemberinviteCall, CreateTeammemberinviteData, CreateTeammemberinviteParameters, CreateTeammemberinviteRequest, CreateTeammemberinviteResult, CreateTeamroleCall, CreateTeamroleData, CreateTeamroleParameters, CreateTeamroleRequest, CreateTeamroleResult, CreateTeamrolememberCall, CreateTeamrolememberData, CreateTeamrolememberParameters, CreateTeamrolememberRequest, CreateTeamrolememberResult, CreateTemplateCall, CreateTemplateData, CreateTemplateParameters, 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, DeleteBlueprinttemplatepreviewData, DeleteBlueprinttemplatepreviewOptions, DeleteBlueprinttemplatepreviewParameters, DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult, DeleteCloudClusterCall, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteEgressipCall, DeleteEgressipParameters, DeleteEgressipRequest, DeleteEgressipResult, DeleteExternaladdonCall, DeleteExternaladdonParameters, DeleteExternaladdonRequest, DeleteExternaladdonResult, DeleteGlobalsecretCall, DeleteGlobalsecretParameters, DeleteGlobalsecretRequest, DeleteGlobalsecretResult, DeleteGradualrolloutstrategyCall, DeleteGradualrolloutstrategyParameters, DeleteGradualrolloutstrategyRequest, DeleteGradualrolloutstrategyResult, DeleteJobCall, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLlmmodeldeploymentCall, DeleteLlmmodeldeploymentParameters, DeleteLlmmodeldeploymentRequest, DeleteLlmmodeldeploymentResult, DeleteLoadbalancerCall, DeleteLoadbalancerParameters, DeleteLoadbalancerRequest, DeleteLoadbalancerResult, DeleteLogsinkCall, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeleteOrgroleCall, DeleteOrgroleParameters, DeleteOrgroleRequest, DeleteOrgroleResult, DeleteOrgrolememberCall, DeleteOrgrolememberParameters, DeleteOrgrolememberRequest, DeleteOrgrolememberResult, DeletePipelinetemplatepreviewCall, DeletePipelinetemplatepreviewData, DeletePipelinetemplatepreviewOptions, 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, DeleteSshidentitiesCall, DeleteSshidentitiesParameters, DeleteSshidentitiesRequest, DeleteSshidentitiesResult, DeleteSubdomainCall, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTeammemberCall, DeleteTeammemberParameters, DeleteTeammemberRequest, DeleteTeammemberResult, DeleteTeamroleCall, DeleteTeamroleParameters, DeleteTeamroleRequest, DeleteTeamroleResult, DeleteTeamrolememberCall, DeleteTeamrolememberParameters, DeleteTeamrolememberRequest, DeleteTeamrolememberResult, 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, GetDnsidParameters, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainParameters, GetDomainRequest, GetDomainResult, GetDomaincertificateCall, GetDomaincertificateParameters, GetDomaincertificateRequest, GetDomaincertificateResult, GetEgressipCall, GetEgressipParameters, GetEgressipRequest, GetEgressipResult, GetExternaladdonCall, GetExternaladdonParameters, GetExternaladdonRequest, GetExternaladdonResult, GetGlobalsecretCall, GetGlobalsecretParameters, GetGlobalsecretRequest, GetGlobalsecretResult, GetInvoiceDetailsCall, GetInvoiceDetailsOptions, GetInvoiceDetailsParameters, 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, GetOrgdirectorygroupsCall, GetOrgdirectorygroupsRequest, GetOrgdirectorygroupsResult, GetOrgroleCall, GetOrgroleParameters, GetOrgroleRequest, GetOrgroleResult, 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, GetSshidentitiesCall, GetSshidentitiesParameters, GetSshidentitiesRequest, GetSshidentitiesResult, GetSubdomainCall, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagParameters, GetTagRequest, GetTagResult, GetTeamCall, GetTeamParameters, GetTeamRequest, GetTeamResult, GetTeamroleCall, GetTeamroleParameters, GetTeamroleRequest, GetTeamroleResult, 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, ListBackupdestinationsParameters, ListBackupdestinationsRequest, ListBackupdestinationsResult, ListBackupdestinationsbackupsCall, ListBackupdestinationsbackupsOptions, ListBackupdestinationsbackupsParameters, ListBackupdestinationsbackupsRequest, ListBackupdestinationsbackupsResult, ListBlueprinttemplatepreviewsCall, ListBlueprinttemplatepreviewsOptions, ListBlueprinttemplatepreviewsParameters, ListBlueprinttemplatepreviewsRequest, ListBlueprinttemplatepreviewsResult, ListBranchesCall, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersOptions, ListCloudClustersParameters, ListCloudClustersRequest, ListCloudClustersResult, ListCloudIntegrationsCall, ListCloudIntegrationsOptions, ListCloudIntegrationsParameters, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsOptions, ListDomainsParameters, ListDomainsRequest, ListDomainsResult, ListEgressipsCall, ListEgressipsOptions, ListEgressipsParameters, ListEgressipsRequest, ListEgressipsResult, ListExternaladdonsCall, ListExternaladdonsOptions, ListExternaladdonsParameters, ListExternaladdonsRequest, ListExternaladdonsResult, ListGlobalsecretsCall, ListGlobalsecretsOptions, ListGlobalsecretsParameters, ListGlobalsecretsRequest, ListGlobalsecretsResult, ListInvoicesCall, ListInvoicesOptions, ListInvoicesParameters, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLlmmodeldeploymentsCall, ListLlmmodeldeploymentsOptions, ListLlmmodeldeploymentsParameters, ListLlmmodeldeploymentsRequest, ListLlmmodeldeploymentsResult, ListLoadbalancersCall, ListLoadbalancersOptions, ListLoadbalancersParameters, ListLoadbalancersRequest, ListLoadbalancersResult, ListLogsinksCall, ListLogsinksOptions, ListLogsinksParameters, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsOptions, ListNotificationsParameters, ListNotificationsRequest, ListNotificationsResult, ListOrgdirectorygroupmembersCall, ListOrgdirectorygroupmembersOptions, ListOrgdirectorygroupmembersParameters, ListOrgdirectorygroupmembersRequest, ListOrgdirectorygroupmembersResult, ListOrgmembersCall, ListOrgmembersOptions, ListOrgmembersRequest, ListOrgmembersResult, ListOrgrolemembersCall, ListOrgrolemembersOptions, ListOrgrolemembersParameters, ListOrgrolemembersRequest, ListOrgrolemembersResult, ListOrgrolesCall, ListOrgrolesOptions, ListOrgrolesRequest, ListOrgrolesResult, 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, ListProjectsParameters, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsOptions, ListRegistrycredentialsParameters, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposOptions, ListReposParameters, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSshidentitiesCall, ListSshidentitiesOptions, ListSshidentitiesParameters, ListSshidentitiesRequest, ListSshidentitiesResult, ListSubdomainPathCall, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsOptions, ListTagsParameters, ListTagsRequest, ListTagsResult, ListTeammembersCall, ListTeammembersOptions, ListTeammembersParameters, ListTeammembersRequest, ListTeammembersResult, ListTeamrolemembersCall, ListTeamrolemembersOptions, ListTeamrolemembersParameters, ListTeamrolemembersRequest, ListTeamrolemembersResult, ListTeamrolesCall, ListTeamrolesOptions, ListTeamrolesParameters, ListTeamrolesRequest, ListTeamrolesResult, ListTeamsCall, ListTeamsOptions, ListTeamsRequest, ListTeamsResult, ListTemplaterunsCall, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesOptions, ListTemplatesParameters, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsParameters, 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, PatchGradualrolloutstrategyCall, PatchGradualrolloutstrategyData, PatchGradualrolloutstrategyParameters, PatchGradualrolloutstrategyRequest, PatchGradualrolloutstrategyResult, PatchJobCall, PatchJobCronCall, PatchJobCronData, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobData, PatchJobManualCall, PatchJobManualData, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchJobParameters, PatchJobRequest, PatchJobResult, PatchLoadbalancerCall, PatchLoadbalancerData, PatchLoadbalancerParameters, PatchLoadbalancerRequest, PatchLoadbalancerResult, PatchOrgroleCall, PatchOrgroleData, PatchOrgroleParameters, PatchOrgroleRequest, PatchOrgroleResult, 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, PatchTeamCall, PatchTeamData, PatchTeamParameters, PatchTeamRequest, PatchTeamResult, PatchTeamroleCall, PatchTeamroleData, PatchTeamroleParameters, PatchTeamroleRequest, PatchTeamroleResult, 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, PutCloudClusterParameters, PutCloudClusterRequest, PutCloudClusterResult, PutCloudIntegrationCall, PutCloudIntegrationData, PutCloudIntegrationParameters, PutCloudIntegrationRequest, PutCloudIntegrationResult, PutDomainSubdomainCall, PutDomainSubdomainData, PutDomainSubdomainParameters, PutDomainSubdomainRequest, PutDomainSubdomainResult, PutEgressipCall, PutEgressipData, PutEgressipParameters, PutEgressipRequest, PutEgressipResult, PutGlobalsecretCall, PutGlobalsecretData, PutGlobalsecretParameters, PutGlobalsecretRequest, PutGlobalsecretResult, PutGradualrolloutstrategyCall, PutGradualrolloutstrategyData, PutGradualrolloutstrategyParameters, PutGradualrolloutstrategyRequest, PutGradualrolloutstrategyResult, PutJobCall, PutJobCronCall, PutJobCronData, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobData, PutJobManualCall, PutJobManualData, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutJobParameters, PutJobRequest, PutJobResult, PutLoadbalancerCall, PutLoadbalancerData, PutLoadbalancerParameters, PutLoadbalancerRequest, PutLoadbalancerResult, PutOrgroleCall, PutOrgroleData, PutOrgroleRequest, PutOrgroleResult, PutProjectCall, PutProjectData, PutProjectParameters, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutSshidentitiesCall, PutSshidentitiesData, PutSshidentitiesParameters, PutSshidentitiesRequest, PutSshidentitiesResult, PutTagCall, PutTagData, PutTagParameters, PutTagRequest, PutTagResult, PutTeamroleCall, PutTeamroleData, PutTeamroleParameters, PutTeamroleRequest, PutTeamroleResult, ResetAddonCall, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, ResetBlueprinttemplatepreviewCall, ResetBlueprinttemplatepreviewData, ResetBlueprinttemplatepreviewParameters, ResetBlueprinttemplatepreviewRequest, ResetBlueprinttemplatepreviewResult, ResetServiceBuildcacheCall, ResetServiceBuildcacheParameters, ResetServiceBuildcacheRequest, ResetServiceBuildcacheResult, 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, UpdateExternaladdonCall, UpdateExternaladdonData, UpdateExternaladdonParameters, UpdateExternaladdonRequest, UpdateExternaladdonResult, 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, UpdateSshidentitiesCall, UpdateSshidentitiesData, UpdateSshidentitiesParameters, UpdateSshidentitiesRequest, UpdateSshidentitiesResult, 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 };
|