@northflank/js-client 0.9.3-buncompat.0 → 0.9.4
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 +511 -51
- package/dist/cjs/api-client.js +552 -533
- package/dist/esm/api-client.d.ts +511 -51
- package/dist/esm/api-client.js +530 -512
- package/package.json +1 -1
package/dist/cjs/api-client.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ declare abstract class PostApiEndpoint<T, R> extends ApiEndpoint<T, R> {
|
|
|
178
178
|
}
|
|
179
179
|
declare abstract class DeleteApiEndpoint<T, R> extends ApiEndpoint<T, R> {
|
|
180
180
|
method: string;
|
|
181
|
-
body:
|
|
181
|
+
abstract body(opts: T): any;
|
|
182
182
|
abstract endpointUrl(opts: T): string;
|
|
183
183
|
abstract withAuth: boolean;
|
|
184
184
|
}
|
|
@@ -457,6 +457,7 @@ declare class ExecCommandStandard extends EventEmitter implements ExecCommand {
|
|
|
457
457
|
readonly stdIn: stream.PassThrough;
|
|
458
458
|
private remote;
|
|
459
459
|
private currentCommand;
|
|
460
|
+
private duplex;
|
|
460
461
|
constructor(baseUrl: string, execConfig: ExecConfig, token: string, // readonly timeout: number = 120 // Timeout in seconds
|
|
461
462
|
agent: any, stdOut?: stream.PassThrough, stdErr?: stream.PassThrough, stdIn?: stream.PassThrough);
|
|
462
463
|
private get execEndpoint();
|
|
@@ -2229,6 +2230,12 @@ type ListCloudClustersResult = {
|
|
|
2229
2230
|
'gcpIntegrationId': string;
|
|
2230
2231
|
};
|
|
2231
2232
|
};
|
|
2233
|
+
'networking'?: {
|
|
2234
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
2235
|
+
'overlayNetwork'?: boolean;
|
|
2236
|
+
/** CIDR range for the overlay network. */
|
|
2237
|
+
'overlayCIDR'?: string;
|
|
2238
|
+
};
|
|
2232
2239
|
'vanityDomains'?: {
|
|
2233
2240
|
'apps'?: {
|
|
2234
2241
|
'zoneName': string;
|
|
@@ -2685,6 +2692,12 @@ type CreateCloudClusterResult = {
|
|
|
2685
2692
|
'gcpIntegrationId': string;
|
|
2686
2693
|
};
|
|
2687
2694
|
};
|
|
2695
|
+
'networking'?: {
|
|
2696
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
2697
|
+
'overlayNetwork'?: boolean;
|
|
2698
|
+
/** CIDR range for the overlay network. */
|
|
2699
|
+
'overlayCIDR'?: string;
|
|
2700
|
+
};
|
|
2688
2701
|
'vanityDomains'?: {
|
|
2689
2702
|
'apps'?: {
|
|
2690
2703
|
'zoneName': string;
|
|
@@ -3099,6 +3112,12 @@ type CreateCloudClusterData = {
|
|
|
3099
3112
|
'gcpIntegrationId': string;
|
|
3100
3113
|
};
|
|
3101
3114
|
};
|
|
3115
|
+
'networking'?: {
|
|
3116
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3117
|
+
'overlayNetwork'?: boolean;
|
|
3118
|
+
/** CIDR range for the overlay network. */
|
|
3119
|
+
'overlayCIDR'?: string;
|
|
3120
|
+
};
|
|
3102
3121
|
'vanityDomains'?: {
|
|
3103
3122
|
'apps'?: {
|
|
3104
3123
|
'zoneName': string;
|
|
@@ -3528,6 +3547,12 @@ type PutCloudClusterResult = {
|
|
|
3528
3547
|
'gcpIntegrationId': string;
|
|
3529
3548
|
};
|
|
3530
3549
|
};
|
|
3550
|
+
'networking'?: {
|
|
3551
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3552
|
+
'overlayNetwork'?: boolean;
|
|
3553
|
+
/** CIDR range for the overlay network. */
|
|
3554
|
+
'overlayCIDR'?: string;
|
|
3555
|
+
};
|
|
3531
3556
|
'vanityDomains'?: {
|
|
3532
3557
|
'apps'?: {
|
|
3533
3558
|
'zoneName': string;
|
|
@@ -3942,6 +3967,12 @@ type PutCloudClusterData = {
|
|
|
3942
3967
|
'gcpIntegrationId': string;
|
|
3943
3968
|
};
|
|
3944
3969
|
};
|
|
3970
|
+
'networking'?: {
|
|
3971
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3972
|
+
'overlayNetwork'?: boolean;
|
|
3973
|
+
/** CIDR range for the overlay network. */
|
|
3974
|
+
'overlayCIDR'?: string;
|
|
3975
|
+
};
|
|
3945
3976
|
'vanityDomains'?: {
|
|
3946
3977
|
'apps'?: {
|
|
3947
3978
|
'zoneName': string;
|
|
@@ -4371,6 +4402,12 @@ type GetCloudClusterResult = {
|
|
|
4371
4402
|
'gcpIntegrationId': string;
|
|
4372
4403
|
};
|
|
4373
4404
|
};
|
|
4405
|
+
'networking'?: {
|
|
4406
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
4407
|
+
'overlayNetwork'?: boolean;
|
|
4408
|
+
/** CIDR range for the overlay network. */
|
|
4409
|
+
'overlayCIDR'?: string;
|
|
4410
|
+
};
|
|
4374
4411
|
'vanityDomains'?: {
|
|
4375
4412
|
'apps'?: {
|
|
4376
4413
|
'zoneName': string;
|
|
@@ -4821,6 +4858,12 @@ type PatchCloudClusterResult = {
|
|
|
4821
4858
|
'gcpIntegrationId': string;
|
|
4822
4859
|
};
|
|
4823
4860
|
};
|
|
4861
|
+
'networking'?: {
|
|
4862
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
4863
|
+
'overlayNetwork'?: boolean;
|
|
4864
|
+
/** CIDR range for the overlay network. */
|
|
4865
|
+
'overlayCIDR'?: string;
|
|
4866
|
+
};
|
|
4824
4867
|
'vanityDomains'?: {
|
|
4825
4868
|
'apps'?: {
|
|
4826
4869
|
'zoneName': string;
|
|
@@ -5195,6 +5238,12 @@ type PatchCloudClusterData = {
|
|
|
5195
5238
|
'gcpIntegrationId': string;
|
|
5196
5239
|
};
|
|
5197
5240
|
};
|
|
5241
|
+
'networking'?: {
|
|
5242
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
5243
|
+
'overlayNetwork'?: boolean;
|
|
5244
|
+
/** CIDR range for the overlay network. */
|
|
5245
|
+
'overlayCIDR'?: string;
|
|
5246
|
+
};
|
|
5198
5247
|
'vanityDomains'?: {
|
|
5199
5248
|
'apps'?: {
|
|
5200
5249
|
'zoneName': string;
|
|
@@ -6832,6 +6881,51 @@ type PutDomainSubdomainData = {
|
|
|
6832
6881
|
/** Alias domains which should be routable. Only configurable if the relevant feature flag is enabled for you account. */
|
|
6833
6882
|
'aliasDomains'?: string[];
|
|
6834
6883
|
};
|
|
6884
|
+
'cdn'?: {
|
|
6885
|
+
'northflank'?: {
|
|
6886
|
+
'enabled'?: boolean;
|
|
6887
|
+
'options'?: {
|
|
6888
|
+
'service'?: {
|
|
6889
|
+
'forceTlsEnableHsts'?: boolean;
|
|
6890
|
+
/** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
|
|
6891
|
+
'hstsDuration'?: number;
|
|
6892
|
+
'staleIfError'?: boolean;
|
|
6893
|
+
'staleIfErrorTtl'?: number;
|
|
6894
|
+
'defaultTtl'?: number;
|
|
6895
|
+
};
|
|
6896
|
+
'logging'?: {
|
|
6897
|
+
'enabled'?: boolean;
|
|
6898
|
+
};
|
|
6899
|
+
'http3'?: {
|
|
6900
|
+
'enabled'?: boolean;
|
|
6901
|
+
};
|
|
6902
|
+
'websockets'?: {
|
|
6903
|
+
'enabled'?: boolean;
|
|
6904
|
+
};
|
|
6905
|
+
'compression'?: {
|
|
6906
|
+
'enabled'?: boolean;
|
|
6907
|
+
/** Compression options. Required when `enabled` is `true`. */
|
|
6908
|
+
'mode'?: 'gzip' | 'brotli';
|
|
6909
|
+
};
|
|
6910
|
+
'vclSnippets'?: {
|
|
6911
|
+
'id'?: string;
|
|
6912
|
+
'name': string;
|
|
6913
|
+
'type': 'init' | 'recv' | 'hash' | 'hit' | 'miss' | 'pass' | 'fetch' | 'error' | 'deliver' | 'log' | 'none';
|
|
6914
|
+
'dynamic': '0' | '1';
|
|
6915
|
+
'priority': number;
|
|
6916
|
+
'content': string;
|
|
6917
|
+
}[];
|
|
6918
|
+
'cacheSettings'?: {
|
|
6919
|
+
'id'?: string;
|
|
6920
|
+
'name': string;
|
|
6921
|
+
'action'?: 'pass' | 'cache' | 'restart';
|
|
6922
|
+
'cacheCondition'?: string;
|
|
6923
|
+
'staleTtl': number;
|
|
6924
|
+
'ttl': number;
|
|
6925
|
+
}[];
|
|
6926
|
+
};
|
|
6927
|
+
};
|
|
6928
|
+
};
|
|
6835
6929
|
};
|
|
6836
6930
|
/** Updates subdomain to the domain. */
|
|
6837
6931
|
declare class PutDomainSubdomainEndpoint extends PutApiEndpoint<PutDomainSubdomainRequest, PutDomainSubdomainResult> {
|
|
@@ -8222,25 +8316,41 @@ type CreateGradualrolloutstrategyParameters = {
|
|
|
8222
8316
|
'teamId': string;
|
|
8223
8317
|
};
|
|
8224
8318
|
type CreateGradualrolloutstrategyData = {
|
|
8319
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8225
8320
|
'name'?: string;
|
|
8321
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8226
8322
|
'type': 'canary';
|
|
8227
8323
|
'options'?: {
|
|
8324
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8228
8325
|
'triggers'?: {
|
|
8326
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8229
8327
|
'releaseFromTemplate'?: boolean | null;
|
|
8328
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8230
8329
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8330
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8231
8331
|
'releaseFromCD'?: boolean | null;
|
|
8332
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8232
8333
|
'releaseFromUI'?: boolean | null;
|
|
8334
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8233
8335
|
'releaseFromApi'?: boolean | null;
|
|
8234
8336
|
};
|
|
8337
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8235
8338
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8236
8339
|
};
|
|
8340
|
+
/** Strategy-specific configuration details */
|
|
8237
8341
|
'details': {
|
|
8342
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8238
8343
|
'canaryStrategy': 'percentage' | 'header';
|
|
8344
|
+
/** Configuration for the selected canary strategy */
|
|
8239
8345
|
'config': {
|
|
8346
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8240
8347
|
'canaryPercentage': number;
|
|
8348
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8241
8349
|
'stablePercentage': number;
|
|
8242
8350
|
} | {
|
|
8351
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8243
8352
|
'headerName': string;
|
|
8353
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8244
8354
|
'headerValue': string;
|
|
8245
8355
|
};
|
|
8246
8356
|
};
|
|
@@ -8292,25 +8402,41 @@ type PutGradualrolloutstrategyParameters = {
|
|
|
8292
8402
|
'teamId': string;
|
|
8293
8403
|
};
|
|
8294
8404
|
type PutGradualrolloutstrategyData = {
|
|
8405
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8295
8406
|
'name'?: string;
|
|
8407
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8296
8408
|
'type': 'canary';
|
|
8297
8409
|
'options'?: {
|
|
8410
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8298
8411
|
'triggers'?: {
|
|
8412
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8299
8413
|
'releaseFromTemplate'?: boolean | null;
|
|
8414
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8300
8415
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8416
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8301
8417
|
'releaseFromCD'?: boolean | null;
|
|
8418
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8302
8419
|
'releaseFromUI'?: boolean | null;
|
|
8420
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8303
8421
|
'releaseFromApi'?: boolean | null;
|
|
8304
8422
|
};
|
|
8423
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8305
8424
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8306
8425
|
};
|
|
8426
|
+
/** Strategy-specific configuration details */
|
|
8307
8427
|
'details': {
|
|
8428
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8308
8429
|
'canaryStrategy': 'percentage' | 'header';
|
|
8430
|
+
/** Configuration for the selected canary strategy */
|
|
8309
8431
|
'config': {
|
|
8432
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8310
8433
|
'canaryPercentage': number;
|
|
8434
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8311
8435
|
'stablePercentage': number;
|
|
8312
8436
|
} | {
|
|
8437
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8313
8438
|
'headerName': string;
|
|
8439
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8314
8440
|
'headerValue': string;
|
|
8315
8441
|
};
|
|
8316
8442
|
};
|
|
@@ -8367,25 +8493,41 @@ type PatchGradualrolloutstrategyParameters = {
|
|
|
8367
8493
|
'gradualRolloutStrategyId': string;
|
|
8368
8494
|
};
|
|
8369
8495
|
type PatchGradualrolloutstrategyData = {
|
|
8496
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8370
8497
|
'name'?: string;
|
|
8498
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8371
8499
|
'type': 'canary';
|
|
8372
8500
|
'options'?: {
|
|
8501
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8373
8502
|
'triggers'?: {
|
|
8503
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8374
8504
|
'releaseFromTemplate'?: boolean | null;
|
|
8505
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8375
8506
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8507
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8376
8508
|
'releaseFromCD'?: boolean | null;
|
|
8509
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8377
8510
|
'releaseFromUI'?: boolean | null;
|
|
8511
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8378
8512
|
'releaseFromApi'?: boolean | null;
|
|
8379
8513
|
};
|
|
8514
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8380
8515
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8381
8516
|
};
|
|
8517
|
+
/** Strategy-specific configuration details */
|
|
8382
8518
|
'details': {
|
|
8519
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8383
8520
|
'canaryStrategy': 'percentage' | 'header';
|
|
8521
|
+
/** Configuration for the selected canary strategy */
|
|
8384
8522
|
'config': {
|
|
8523
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8385
8524
|
'canaryPercentage': number;
|
|
8525
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8386
8526
|
'stablePercentage': number;
|
|
8387
8527
|
} | {
|
|
8528
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8388
8529
|
'headerName': string;
|
|
8530
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8389
8531
|
'headerValue': string;
|
|
8390
8532
|
};
|
|
8391
8533
|
};
|
|
@@ -9843,6 +9985,8 @@ type CreateNotificationResult = {
|
|
|
9843
9985
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
9844
9986
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
9845
9987
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
9988
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
9989
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
9846
9990
|
};
|
|
9847
9991
|
};
|
|
9848
9992
|
type CreateNotificationCall = (opts: CreateNotificationRequest) => Promise<ApiCallResponse<CreateNotificationResult>>;
|
|
@@ -9951,6 +10095,8 @@ type CreateNotificationData = {
|
|
|
9951
10095
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
9952
10096
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
9953
10097
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10098
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10099
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
9954
10100
|
};
|
|
9955
10101
|
};
|
|
9956
10102
|
/** Create a new notification integration. */
|
|
@@ -10056,6 +10202,8 @@ type GetNotificationResult = {
|
|
|
10056
10202
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
10057
10203
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
10058
10204
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10205
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10206
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
10059
10207
|
};
|
|
10060
10208
|
};
|
|
10061
10209
|
type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
|
|
@@ -10185,6 +10333,8 @@ type UpdateNotificationData = {
|
|
|
10185
10333
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
10186
10334
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
10187
10335
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10336
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10337
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
10188
10338
|
};
|
|
10189
10339
|
};
|
|
10190
10340
|
/** Updates a notification integration */
|
|
@@ -10535,7 +10685,7 @@ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<Delete
|
|
|
10535
10685
|
|
|
10536
10686
|
type ListSshidentitiesResult = {
|
|
10537
10687
|
'identities'?: {
|
|
10538
|
-
/** ID of the
|
|
10688
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10539
10689
|
'id': string;
|
|
10540
10690
|
'name': string;
|
|
10541
10691
|
'description'?: string;
|
|
@@ -10598,7 +10748,7 @@ declare class ListSshidentitiesEndpoint extends GetApiEndpointPaginated<ListSshi
|
|
|
10598
10748
|
}
|
|
10599
10749
|
|
|
10600
10750
|
type AddSshidentitiesResult = {
|
|
10601
|
-
/** ID of the
|
|
10751
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10602
10752
|
'id': string;
|
|
10603
10753
|
'name': string;
|
|
10604
10754
|
'description'?: string;
|
|
@@ -10682,7 +10832,7 @@ declare class AddSshidentitiesEndpoint extends PostApiEndpoint<AddSshidentitiesR
|
|
|
10682
10832
|
}
|
|
10683
10833
|
|
|
10684
10834
|
type GetSshidentitiesResult = {
|
|
10685
|
-
/** ID of the
|
|
10835
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10686
10836
|
'id': string;
|
|
10687
10837
|
'name': string;
|
|
10688
10838
|
'description'?: string;
|
|
@@ -10738,7 +10888,7 @@ declare class GetSshidentitiesEndpoint extends GetApiEndpoint<GetSshidentitiesRe
|
|
|
10738
10888
|
}
|
|
10739
10889
|
|
|
10740
10890
|
type PutSshidentitiesResult = {
|
|
10741
|
-
/** ID of the
|
|
10891
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10742
10892
|
'id': string;
|
|
10743
10893
|
'name': string;
|
|
10744
10894
|
'description'?: string;
|
|
@@ -10826,7 +10976,40 @@ declare class PutSshidentitiesEndpoint extends PutApiEndpoint<PutSshidentitiesRe
|
|
|
10826
10976
|
body: (payload: PutSshidentitiesRequest) => string;
|
|
10827
10977
|
}
|
|
10828
10978
|
|
|
10829
|
-
type UpdateSshidentitiesResult =
|
|
10979
|
+
type UpdateSshidentitiesResult = {
|
|
10980
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10981
|
+
'id': string;
|
|
10982
|
+
'name': string;
|
|
10983
|
+
'description'?: string;
|
|
10984
|
+
/** A list of SSH public keys. Example: [{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQ..."}] */
|
|
10985
|
+
'sshPublicKeys'?: {
|
|
10986
|
+
/** The SSH public key. Example: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQ..." */
|
|
10987
|
+
'key': string;
|
|
10988
|
+
}[];
|
|
10989
|
+
/** Configuration of restrictions. */
|
|
10990
|
+
'restrictions'?: {
|
|
10991
|
+
/** Configuration of project restriction settings. */
|
|
10992
|
+
'projects'?: {
|
|
10993
|
+
/** Whether restriction by project should be enabled. */
|
|
10994
|
+
'enabled'?: boolean;
|
|
10995
|
+
/** An array of previously defined projects. */
|
|
10996
|
+
'items'?: string[];
|
|
10997
|
+
};
|
|
10998
|
+
/** Configuration of tag restriction settings. */
|
|
10999
|
+
'tags'?: {
|
|
11000
|
+
/** Whether restriction by tag should be enabled. */
|
|
11001
|
+
'enabled'?: boolean;
|
|
11002
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
11003
|
+
'items'?: string[];
|
|
11004
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
11005
|
+
'matchCondition'?: 'and' | 'or';
|
|
11006
|
+
};
|
|
11007
|
+
};
|
|
11008
|
+
/** time of update */
|
|
11009
|
+
'updatedAt'?: string;
|
|
11010
|
+
/** time of creation */
|
|
11011
|
+
'createdAt'?: string;
|
|
11012
|
+
};
|
|
10830
11013
|
type UpdateSshidentitiesCall = (opts: UpdateSshidentitiesRequest) => Promise<ApiCallResponse<UpdateSshidentitiesResult>>;
|
|
10831
11014
|
type UpdateSshidentitiesRequest = {
|
|
10832
11015
|
parameters: UpdateSshidentitiesParameters;
|
|
@@ -12907,7 +13090,7 @@ type CreateAddonResult = {
|
|
|
12907
13090
|
}[];
|
|
12908
13091
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
12909
13092
|
'compressionType'?: 'gz' | 'zstd';
|
|
12910
|
-
/** The time the backup is retained for, in days.
|
|
13093
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
12911
13094
|
'retentionTime': number;
|
|
12912
13095
|
}[];
|
|
12913
13096
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13099,7 +13282,7 @@ type CreateAddonData = {
|
|
|
13099
13282
|
}[];
|
|
13100
13283
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13101
13284
|
'compressionType'?: 'gz' | 'zstd';
|
|
13102
|
-
/** The time the backup is retained for, in days.
|
|
13285
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13103
13286
|
'retentionTime': number;
|
|
13104
13287
|
}[];
|
|
13105
13288
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13244,7 +13427,7 @@ type PutAddonResult = {
|
|
|
13244
13427
|
}[];
|
|
13245
13428
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13246
13429
|
'compressionType'?: 'gz' | 'zstd';
|
|
13247
|
-
/** The time the backup is retained for, in days.
|
|
13430
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13248
13431
|
'retentionTime': number;
|
|
13249
13432
|
}[];
|
|
13250
13433
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13436,7 +13619,7 @@ type PutAddonData = {
|
|
|
13436
13619
|
}[];
|
|
13437
13620
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13438
13621
|
'compressionType'?: 'gz' | 'zstd';
|
|
13439
|
-
/** The time the backup is retained for, in days.
|
|
13622
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13440
13623
|
'retentionTime': number;
|
|
13441
13624
|
}[];
|
|
13442
13625
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13676,7 +13859,7 @@ type PatchAddonResult = {
|
|
|
13676
13859
|
}[];
|
|
13677
13860
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13678
13861
|
'compressionType'?: 'gz' | 'zstd';
|
|
13679
|
-
/** The time the backup is retained for, in days.
|
|
13862
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13680
13863
|
'retentionTime': number;
|
|
13681
13864
|
}[];
|
|
13682
13865
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13841,7 +14024,7 @@ type PatchAddonData = {
|
|
|
13841
14024
|
}[];
|
|
13842
14025
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13843
14026
|
'compressionType'?: 'gz' | 'zstd';
|
|
13844
|
-
/** The time the backup is retained for, in days.
|
|
14027
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13845
14028
|
'retentionTime': number;
|
|
13846
14029
|
}[];
|
|
13847
14030
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13926,7 +14109,7 @@ type GetAddonBackupschedulesResult = {
|
|
|
13926
14109
|
/** An array of days of the week when the backup should be performed, where `0` represents Monday and `6` represents Sunday. On these days, a backup will be performed at each of the minutes provided in the `minute` field whenever it is an hour from the `hour` field. Required for `weekly` intervals and unavailable for `hourly` and `daily` intervals. */
|
|
13927
14110
|
'day'?: number[];
|
|
13928
14111
|
};
|
|
13929
|
-
/** The time
|
|
14112
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13930
14113
|
'retentionTime': number;
|
|
13931
14114
|
/** The timestamp the backup schedule was created. Example: "2022-07-11T13:08:09.626Z" */
|
|
13932
14115
|
'createdAt': string;
|
|
@@ -14019,7 +14202,7 @@ type CreateAddonBackupscheduleData = {
|
|
|
14019
14202
|
}[];
|
|
14020
14203
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
14021
14204
|
'compressionType'?: 'gz' | 'zstd';
|
|
14022
|
-
/** The time the backup is retained for, in days.
|
|
14205
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
14023
14206
|
'retentionTime': number;
|
|
14024
14207
|
};
|
|
14025
14208
|
/** Create a new backup schedule for an addon. */
|
|
@@ -15698,6 +15881,7 @@ type CreateJobResult = {
|
|
|
15698
15881
|
};
|
|
15699
15882
|
'storage'?: {
|
|
15700
15883
|
'useHdbStorage'?: boolean;
|
|
15884
|
+
'usePdSsdStorage'?: boolean;
|
|
15701
15885
|
'ephemeralStorage'?: {
|
|
15702
15886
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15703
15887
|
'storageSize'?: number;
|
|
@@ -15844,6 +16028,7 @@ type CreateJobData = {
|
|
|
15844
16028
|
};
|
|
15845
16029
|
'storage'?: {
|
|
15846
16030
|
'useHdbStorage'?: boolean;
|
|
16031
|
+
'usePdSsdStorage'?: boolean;
|
|
15847
16032
|
'ephemeralStorage'?: {
|
|
15848
16033
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15849
16034
|
'storageSize'?: number;
|
|
@@ -15905,6 +16090,7 @@ type CreateJobData = {
|
|
|
15905
16090
|
};
|
|
15906
16091
|
'storage'?: {
|
|
15907
16092
|
'useHdbStorage'?: boolean;
|
|
16093
|
+
'usePdSsdStorage'?: boolean;
|
|
15908
16094
|
'ephemeralStorage'?: {
|
|
15909
16095
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15910
16096
|
'storageSize'?: number;
|
|
@@ -15958,6 +16144,7 @@ type CreateJobData = {
|
|
|
15958
16144
|
};
|
|
15959
16145
|
'storage'?: {
|
|
15960
16146
|
'useHdbStorage'?: boolean;
|
|
16147
|
+
'usePdSsdStorage'?: boolean;
|
|
15961
16148
|
'ephemeralStorage'?: {
|
|
15962
16149
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15963
16150
|
'storageSize'?: number;
|
|
@@ -16301,6 +16488,7 @@ type PutJobResult = {
|
|
|
16301
16488
|
};
|
|
16302
16489
|
'storage'?: {
|
|
16303
16490
|
'useHdbStorage'?: boolean;
|
|
16491
|
+
'usePdSsdStorage'?: boolean;
|
|
16304
16492
|
'ephemeralStorage'?: {
|
|
16305
16493
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16306
16494
|
'storageSize'?: number;
|
|
@@ -16447,6 +16635,7 @@ type PutJobData = {
|
|
|
16447
16635
|
};
|
|
16448
16636
|
'storage'?: {
|
|
16449
16637
|
'useHdbStorage'?: boolean;
|
|
16638
|
+
'usePdSsdStorage'?: boolean;
|
|
16450
16639
|
'ephemeralStorage'?: {
|
|
16451
16640
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16452
16641
|
'storageSize'?: number;
|
|
@@ -16508,6 +16697,7 @@ type PutJobData = {
|
|
|
16508
16697
|
};
|
|
16509
16698
|
'storage'?: {
|
|
16510
16699
|
'useHdbStorage'?: boolean;
|
|
16700
|
+
'usePdSsdStorage'?: boolean;
|
|
16511
16701
|
'ephemeralStorage'?: {
|
|
16512
16702
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16513
16703
|
'storageSize'?: number;
|
|
@@ -16561,6 +16751,7 @@ type PutJobData = {
|
|
|
16561
16751
|
};
|
|
16562
16752
|
'storage'?: {
|
|
16563
16753
|
'useHdbStorage'?: boolean;
|
|
16754
|
+
'usePdSsdStorage'?: boolean;
|
|
16564
16755
|
'ephemeralStorage'?: {
|
|
16565
16756
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16566
16757
|
'storageSize'?: number;
|
|
@@ -16900,6 +17091,7 @@ type CreateJobCronResult = {
|
|
|
16900
17091
|
};
|
|
16901
17092
|
'storage'?: {
|
|
16902
17093
|
'useHdbStorage'?: boolean;
|
|
17094
|
+
'usePdSsdStorage'?: boolean;
|
|
16903
17095
|
'ephemeralStorage'?: {
|
|
16904
17096
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16905
17097
|
'storageSize'?: number;
|
|
@@ -17046,6 +17238,7 @@ type CreateJobCronData = {
|
|
|
17046
17238
|
};
|
|
17047
17239
|
'storage'?: {
|
|
17048
17240
|
'useHdbStorage'?: boolean;
|
|
17241
|
+
'usePdSsdStorage'?: boolean;
|
|
17049
17242
|
'ephemeralStorage'?: {
|
|
17050
17243
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17051
17244
|
'storageSize'?: number;
|
|
@@ -17107,6 +17300,7 @@ type CreateJobCronData = {
|
|
|
17107
17300
|
};
|
|
17108
17301
|
'storage'?: {
|
|
17109
17302
|
'useHdbStorage'?: boolean;
|
|
17303
|
+
'usePdSsdStorage'?: boolean;
|
|
17110
17304
|
'ephemeralStorage'?: {
|
|
17111
17305
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17112
17306
|
'storageSize'?: number;
|
|
@@ -17160,6 +17354,7 @@ type CreateJobCronData = {
|
|
|
17160
17354
|
};
|
|
17161
17355
|
'storage'?: {
|
|
17162
17356
|
'useHdbStorage'?: boolean;
|
|
17357
|
+
'usePdSsdStorage'?: boolean;
|
|
17163
17358
|
'ephemeralStorage'?: {
|
|
17164
17359
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17165
17360
|
'storageSize'?: number;
|
|
@@ -17495,6 +17690,7 @@ type PutJobCronResult = {
|
|
|
17495
17690
|
};
|
|
17496
17691
|
'storage'?: {
|
|
17497
17692
|
'useHdbStorage'?: boolean;
|
|
17693
|
+
'usePdSsdStorage'?: boolean;
|
|
17498
17694
|
'ephemeralStorage'?: {
|
|
17499
17695
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17500
17696
|
'storageSize'?: number;
|
|
@@ -17641,6 +17837,7 @@ type PutJobCronData = {
|
|
|
17641
17837
|
};
|
|
17642
17838
|
'storage'?: {
|
|
17643
17839
|
'useHdbStorage'?: boolean;
|
|
17840
|
+
'usePdSsdStorage'?: boolean;
|
|
17644
17841
|
'ephemeralStorage'?: {
|
|
17645
17842
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17646
17843
|
'storageSize'?: number;
|
|
@@ -17702,6 +17899,7 @@ type PutJobCronData = {
|
|
|
17702
17899
|
};
|
|
17703
17900
|
'storage'?: {
|
|
17704
17901
|
'useHdbStorage'?: boolean;
|
|
17902
|
+
'usePdSsdStorage'?: boolean;
|
|
17705
17903
|
'ephemeralStorage'?: {
|
|
17706
17904
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17707
17905
|
'storageSize'?: number;
|
|
@@ -17755,6 +17953,7 @@ type PutJobCronData = {
|
|
|
17755
17953
|
};
|
|
17756
17954
|
'storage'?: {
|
|
17757
17955
|
'useHdbStorage'?: boolean;
|
|
17956
|
+
'usePdSsdStorage'?: boolean;
|
|
17758
17957
|
'ephemeralStorage'?: {
|
|
17759
17958
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17760
17959
|
'storageSize'?: number;
|
|
@@ -18090,6 +18289,7 @@ type PatchJobCronResult = {
|
|
|
18090
18289
|
};
|
|
18091
18290
|
'storage'?: {
|
|
18092
18291
|
'useHdbStorage'?: boolean;
|
|
18292
|
+
'usePdSsdStorage'?: boolean;
|
|
18093
18293
|
'ephemeralStorage'?: {
|
|
18094
18294
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18095
18295
|
'storageSize'?: number;
|
|
@@ -18497,6 +18697,7 @@ type CreateJobManualResult = {
|
|
|
18497
18697
|
};
|
|
18498
18698
|
'storage'?: {
|
|
18499
18699
|
'useHdbStorage'?: boolean;
|
|
18700
|
+
'usePdSsdStorage'?: boolean;
|
|
18500
18701
|
'ephemeralStorage'?: {
|
|
18501
18702
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18502
18703
|
'storageSize'?: number;
|
|
@@ -18643,6 +18844,7 @@ type CreateJobManualData = {
|
|
|
18643
18844
|
};
|
|
18644
18845
|
'storage'?: {
|
|
18645
18846
|
'useHdbStorage'?: boolean;
|
|
18847
|
+
'usePdSsdStorage'?: boolean;
|
|
18646
18848
|
'ephemeralStorage'?: {
|
|
18647
18849
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18648
18850
|
'storageSize'?: number;
|
|
@@ -18704,6 +18906,7 @@ type CreateJobManualData = {
|
|
|
18704
18906
|
};
|
|
18705
18907
|
'storage'?: {
|
|
18706
18908
|
'useHdbStorage'?: boolean;
|
|
18909
|
+
'usePdSsdStorage'?: boolean;
|
|
18707
18910
|
'ephemeralStorage'?: {
|
|
18708
18911
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18709
18912
|
'storageSize'?: number;
|
|
@@ -18757,6 +18960,7 @@ type CreateJobManualData = {
|
|
|
18757
18960
|
};
|
|
18758
18961
|
'storage'?: {
|
|
18759
18962
|
'useHdbStorage'?: boolean;
|
|
18963
|
+
'usePdSsdStorage'?: boolean;
|
|
18760
18964
|
'ephemeralStorage'?: {
|
|
18761
18965
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18762
18966
|
'storageSize'?: number;
|
|
@@ -19080,6 +19284,7 @@ type PutJobManualResult = {
|
|
|
19080
19284
|
};
|
|
19081
19285
|
'storage'?: {
|
|
19082
19286
|
'useHdbStorage'?: boolean;
|
|
19287
|
+
'usePdSsdStorage'?: boolean;
|
|
19083
19288
|
'ephemeralStorage'?: {
|
|
19084
19289
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19085
19290
|
'storageSize'?: number;
|
|
@@ -19226,6 +19431,7 @@ type PutJobManualData = {
|
|
|
19226
19431
|
};
|
|
19227
19432
|
'storage'?: {
|
|
19228
19433
|
'useHdbStorage'?: boolean;
|
|
19434
|
+
'usePdSsdStorage'?: boolean;
|
|
19229
19435
|
'ephemeralStorage'?: {
|
|
19230
19436
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19231
19437
|
'storageSize'?: number;
|
|
@@ -19287,6 +19493,7 @@ type PutJobManualData = {
|
|
|
19287
19493
|
};
|
|
19288
19494
|
'storage'?: {
|
|
19289
19495
|
'useHdbStorage'?: boolean;
|
|
19496
|
+
'usePdSsdStorage'?: boolean;
|
|
19290
19497
|
'ephemeralStorage'?: {
|
|
19291
19498
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19292
19499
|
'storageSize'?: number;
|
|
@@ -19340,6 +19547,7 @@ type PutJobManualData = {
|
|
|
19340
19547
|
};
|
|
19341
19548
|
'storage'?: {
|
|
19342
19549
|
'useHdbStorage'?: boolean;
|
|
19550
|
+
'usePdSsdStorage'?: boolean;
|
|
19343
19551
|
'ephemeralStorage'?: {
|
|
19344
19552
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19345
19553
|
'storageSize'?: number;
|
|
@@ -19663,6 +19871,7 @@ type PatchJobManualResult = {
|
|
|
19663
19871
|
};
|
|
19664
19872
|
'storage'?: {
|
|
19665
19873
|
'useHdbStorage'?: boolean;
|
|
19874
|
+
'usePdSsdStorage'?: boolean;
|
|
19666
19875
|
'ephemeralStorage'?: {
|
|
19667
19876
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19668
19877
|
'storageSize'?: number;
|
|
@@ -20255,6 +20464,7 @@ type PatchJobResult = {
|
|
|
20255
20464
|
};
|
|
20256
20465
|
'storage'?: {
|
|
20257
20466
|
'useHdbStorage'?: boolean;
|
|
20467
|
+
'usePdSsdStorage'?: boolean;
|
|
20258
20468
|
'ephemeralStorage'?: {
|
|
20259
20469
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
20260
20470
|
'storageSize'?: number;
|
|
@@ -21753,6 +21963,7 @@ type StartJobRunData = {
|
|
|
21753
21963
|
};
|
|
21754
21964
|
'storage'?: {
|
|
21755
21965
|
'useHdbStorage'?: boolean;
|
|
21966
|
+
'usePdSsdStorage'?: boolean;
|
|
21756
21967
|
'ephemeralStorage'?: {
|
|
21757
21968
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
21758
21969
|
'storageSize'?: number;
|
|
@@ -21794,6 +22005,7 @@ type StartJobRunData = {
|
|
|
21794
22005
|
};
|
|
21795
22006
|
'storage'?: {
|
|
21796
22007
|
'useHdbStorage'?: boolean;
|
|
22008
|
+
'usePdSsdStorage'?: boolean;
|
|
21797
22009
|
'ephemeralStorage'?: {
|
|
21798
22010
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
21799
22011
|
'storageSize'?: number;
|
|
@@ -22080,6 +22292,7 @@ type ScaleJobData = {
|
|
|
22080
22292
|
'deploymentPlan'?: string;
|
|
22081
22293
|
'storage'?: {
|
|
22082
22294
|
'useHdbStorage'?: boolean;
|
|
22295
|
+
'usePdSsdStorage'?: boolean;
|
|
22083
22296
|
'ephemeralStorage'?: {
|
|
22084
22297
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
22085
22298
|
'storageSize'?: number;
|
|
@@ -22192,6 +22405,7 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22192
22405
|
'configuration'?: {
|
|
22193
22406
|
'gpuType'?: string;
|
|
22194
22407
|
'gpuCount'?: number;
|
|
22408
|
+
'timesliced'?: boolean;
|
|
22195
22409
|
};
|
|
22196
22410
|
};
|
|
22197
22411
|
'storage'?: {
|
|
@@ -22227,7 +22441,7 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22227
22441
|
'enableAsyncScheduling'?: boolean;
|
|
22228
22442
|
'gpuMemoryUtilization'?: number;
|
|
22229
22443
|
'trustRemoteCode'?: boolean;
|
|
22230
|
-
'dataType'?: 'auto' | '
|
|
22444
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22231
22445
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22232
22446
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22233
22447
|
};
|
|
@@ -22267,6 +22481,13 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22267
22481
|
}[];
|
|
22268
22482
|
/** The current status of the AI model. */
|
|
22269
22483
|
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
22484
|
+
/** Details of the latest deployment configuration. */
|
|
22485
|
+
'deploymentConfiguration'?: {
|
|
22486
|
+
/** The deployment configuration identifier. */
|
|
22487
|
+
'id': string;
|
|
22488
|
+
/** time of creation */
|
|
22489
|
+
'createdAt'?: string;
|
|
22490
|
+
};
|
|
22270
22491
|
/** time of creation */
|
|
22271
22492
|
'createdAt'?: string;
|
|
22272
22493
|
/** time of update */
|
|
@@ -22356,6 +22577,7 @@ type CreateLlmmodeldeploymentData = {
|
|
|
22356
22577
|
'configuration'?: {
|
|
22357
22578
|
'gpuType'?: string;
|
|
22358
22579
|
'gpuCount'?: number;
|
|
22580
|
+
'timesliced'?: boolean;
|
|
22359
22581
|
};
|
|
22360
22582
|
};
|
|
22361
22583
|
'storage'?: {
|
|
@@ -22391,7 +22613,7 @@ type CreateLlmmodeldeploymentData = {
|
|
|
22391
22613
|
'enableAsyncScheduling'?: boolean;
|
|
22392
22614
|
'gpuMemoryUtilization'?: number;
|
|
22393
22615
|
'trustRemoteCode'?: boolean;
|
|
22394
|
-
'dataType'?: 'auto' | '
|
|
22616
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22395
22617
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22396
22618
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22397
22619
|
};
|
|
@@ -22429,6 +22651,7 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22429
22651
|
'configuration'?: {
|
|
22430
22652
|
'gpuType'?: string;
|
|
22431
22653
|
'gpuCount'?: number;
|
|
22654
|
+
'timesliced'?: boolean;
|
|
22432
22655
|
};
|
|
22433
22656
|
};
|
|
22434
22657
|
'storage'?: {
|
|
@@ -22464,7 +22687,7 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22464
22687
|
'enableAsyncScheduling'?: boolean;
|
|
22465
22688
|
'gpuMemoryUtilization'?: number;
|
|
22466
22689
|
'trustRemoteCode'?: boolean;
|
|
22467
|
-
'dataType'?: 'auto' | '
|
|
22690
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22468
22691
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22469
22692
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22470
22693
|
};
|
|
@@ -22504,6 +22727,13 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22504
22727
|
}[];
|
|
22505
22728
|
/** The current status of the AI model. */
|
|
22506
22729
|
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
22730
|
+
/** Details of the latest deployment configuration. */
|
|
22731
|
+
'deploymentConfiguration'?: {
|
|
22732
|
+
/** The deployment configuration identifier. */
|
|
22733
|
+
'id': string;
|
|
22734
|
+
/** time of creation */
|
|
22735
|
+
'createdAt'?: string;
|
|
22736
|
+
};
|
|
22507
22737
|
/** time of creation */
|
|
22508
22738
|
'createdAt'?: string;
|
|
22509
22739
|
/** time of update */
|
|
@@ -22586,6 +22816,7 @@ type UpdateLlmmodeldeploymentData = {
|
|
|
22586
22816
|
'configuration'?: {
|
|
22587
22817
|
'gpuType'?: string;
|
|
22588
22818
|
'gpuCount'?: number;
|
|
22819
|
+
'timesliced'?: boolean;
|
|
22589
22820
|
};
|
|
22590
22821
|
};
|
|
22591
22822
|
'storage'?: {
|
|
@@ -22621,7 +22852,7 @@ type UpdateLlmmodeldeploymentData = {
|
|
|
22621
22852
|
'enableAsyncScheduling'?: boolean;
|
|
22622
22853
|
'gpuMemoryUtilization'?: number;
|
|
22623
22854
|
'trustRemoteCode'?: boolean;
|
|
22624
|
-
'dataType'?: 'auto' | '
|
|
22855
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22625
22856
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22626
22857
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22627
22858
|
};
|
|
@@ -22883,6 +23114,8 @@ type UpdatePreviewtemplateData = {
|
|
|
22883
23114
|
'nameFormat'?: string;
|
|
22884
23115
|
/** If true, the preview name will default to the front of the resource name. */
|
|
22885
23116
|
'prefixName'?: boolean;
|
|
23117
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
23118
|
+
'useBranchContents'?: boolean;
|
|
22886
23119
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
22887
23120
|
'schedule'?: {
|
|
22888
23121
|
'mon'?: {
|
|
@@ -23045,6 +23278,8 @@ type DeletePipelinetemplatepreviewResult = any;
|
|
|
23045
23278
|
type DeletePipelinetemplatepreviewCall = (opts: DeletePipelinetemplatepreviewRequest) => Promise<ApiCallResponse<DeletePipelinetemplatepreviewResult>>;
|
|
23046
23279
|
type DeletePipelinetemplatepreviewRequest = {
|
|
23047
23280
|
parameters: DeletePipelinetemplatepreviewParameters;
|
|
23281
|
+
options?: DeletePipelinetemplatepreviewOptions;
|
|
23282
|
+
data: DeletePipelinetemplatepreviewData;
|
|
23048
23283
|
};
|
|
23049
23284
|
type DeletePipelinetemplatepreviewParameters = {
|
|
23050
23285
|
/** ID of the project */
|
|
@@ -23063,13 +23298,21 @@ type DeletePipelinetemplatepreviewParameters = {
|
|
|
23063
23298
|
/** ID of the preview environment */
|
|
23064
23299
|
'previewId': string;
|
|
23065
23300
|
};
|
|
23301
|
+
type DeletePipelinetemplatepreviewOptions = {
|
|
23302
|
+
/** If `true`, the teardown spec will not be run when deleting the preview environment. */
|
|
23303
|
+
'skipTeardown'?: boolean;
|
|
23304
|
+
};
|
|
23305
|
+
type DeletePipelinetemplatepreviewData = {
|
|
23306
|
+
/** Argument overrides to pass to the teardown spec when deleting the preview environment. */
|
|
23307
|
+
'teardownArgumentOverrides'?: any;
|
|
23308
|
+
};
|
|
23066
23309
|
/** Delete a preview environment generated by a preview template. */
|
|
23067
23310
|
declare class DeletePipelinetemplatepreviewEndpoint extends DeleteApiEndpoint<DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult> {
|
|
23068
23311
|
description: string;
|
|
23069
23312
|
withAuth: boolean;
|
|
23070
23313
|
requiredPermissions: string;
|
|
23071
23314
|
endpointUrl: (opts: DeletePipelinetemplatepreviewRequest) => string;
|
|
23072
|
-
body: () =>
|
|
23315
|
+
body: (payload: DeletePipelinetemplatepreviewRequest) => string;
|
|
23073
23316
|
}
|
|
23074
23317
|
|
|
23075
23318
|
type RunPreviewtemplateResult = {
|
|
@@ -23083,6 +23326,12 @@ type RunPreviewtemplateResult = {
|
|
|
23083
23326
|
'arguments'?: any;
|
|
23084
23327
|
'$schema'?: string;
|
|
23085
23328
|
'spec': any;
|
|
23329
|
+
/** Optional spec to run when the template is deleted. */
|
|
23330
|
+
'teardownSpec'?: {
|
|
23331
|
+
'spec': any;
|
|
23332
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
23333
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23334
|
+
} | null;
|
|
23086
23335
|
/** Identifier for the template Example: "example-template" */
|
|
23087
23336
|
'id': string;
|
|
23088
23337
|
'gitops'?: {
|
|
@@ -23160,6 +23409,8 @@ type ListPreviewtemplaterunsResult = {
|
|
|
23160
23409
|
'nameFormat'?: string;
|
|
23161
23410
|
/** If true, the preview name will default to the front of the resource name. */
|
|
23162
23411
|
'prefixName'?: boolean;
|
|
23412
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
23413
|
+
'useBranchContents'?: boolean;
|
|
23163
23414
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
23164
23415
|
'schedule'?: {
|
|
23165
23416
|
'mon'?: {
|
|
@@ -23263,6 +23514,8 @@ type GetPreviewtemplaterunResult = {
|
|
|
23263
23514
|
'nameFormat'?: string;
|
|
23264
23515
|
/** If true, the preview name will default to the front of the resource name. */
|
|
23265
23516
|
'prefixName'?: boolean;
|
|
23517
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
23518
|
+
'useBranchContents'?: boolean;
|
|
23266
23519
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
23267
23520
|
'schedule'?: {
|
|
23268
23521
|
'mon'?: {
|
|
@@ -23446,6 +23699,12 @@ type GetReleaseflowResult = {
|
|
|
23446
23699
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
23447
23700
|
'richInputs'?: any[];
|
|
23448
23701
|
'spec': any;
|
|
23702
|
+
/** Optional spec to run when the template is deleted. */
|
|
23703
|
+
'teardownSpec'?: {
|
|
23704
|
+
'spec': any;
|
|
23705
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
23706
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23707
|
+
} | null;
|
|
23449
23708
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
23450
23709
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
23451
23710
|
/** The stage of the pipeline this release flow belongs to. Example: "Development" */
|
|
@@ -23564,6 +23823,12 @@ type UpdateReleaseflowData = {
|
|
|
23564
23823
|
'$schema'?: string;
|
|
23565
23824
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
23566
23825
|
'richInputs'?: any[];
|
|
23826
|
+
/** Optional spec to run when the template is deleted. */
|
|
23827
|
+
'teardownSpec'?: {
|
|
23828
|
+
'spec': any;
|
|
23829
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
23830
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23831
|
+
} | null;
|
|
23567
23832
|
'apiVersion': string;
|
|
23568
23833
|
'project'?: any;
|
|
23569
23834
|
'spec': any;
|
|
@@ -24009,6 +24274,8 @@ type CreatePreviewblueprintData = {
|
|
|
24009
24274
|
'nameFormat'?: string;
|
|
24010
24275
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24011
24276
|
'prefixName'?: boolean;
|
|
24277
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
24278
|
+
'useBranchContents'?: boolean;
|
|
24012
24279
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24013
24280
|
'schedule'?: {
|
|
24014
24281
|
'mon'?: {
|
|
@@ -24052,6 +24319,13 @@ type CreatePreviewblueprintData = {
|
|
|
24052
24319
|
};
|
|
24053
24320
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24054
24321
|
'argumentOverrides'?: any;
|
|
24322
|
+
/** Optional spec to run when the template is deleted. */
|
|
24323
|
+
'teardownSpec'?: {
|
|
24324
|
+
/** The root node of the teardown workflow. */
|
|
24325
|
+
'spec': any;
|
|
24326
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
24327
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24328
|
+
} | null;
|
|
24055
24329
|
'triggers'?: any[];
|
|
24056
24330
|
'apiVersion': string;
|
|
24057
24331
|
'project'?: any;
|
|
@@ -24099,6 +24373,8 @@ type GetPreviewblueprintResult = {
|
|
|
24099
24373
|
'nameFormat'?: string;
|
|
24100
24374
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24101
24375
|
'prefixName'?: boolean;
|
|
24376
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
24377
|
+
'useBranchContents'?: boolean;
|
|
24102
24378
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24103
24379
|
'schedule'?: {
|
|
24104
24380
|
'mon'?: {
|
|
@@ -24142,6 +24418,13 @@ type GetPreviewblueprintResult = {
|
|
|
24142
24418
|
};
|
|
24143
24419
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24144
24420
|
'argumentOverrides'?: any;
|
|
24421
|
+
/** Optional spec to run when the template is deleted. */
|
|
24422
|
+
'teardownSpec'?: {
|
|
24423
|
+
/** The root node of the teardown workflow. */
|
|
24424
|
+
'spec': any;
|
|
24425
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
24426
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24427
|
+
} | null;
|
|
24145
24428
|
'triggers'?: any[];
|
|
24146
24429
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
24147
24430
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
@@ -24229,6 +24512,8 @@ type UpdatePreviewblueprintData = {
|
|
|
24229
24512
|
'nameFormat'?: string;
|
|
24230
24513
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24231
24514
|
'prefixName'?: boolean;
|
|
24515
|
+
/** If true, and gitops is enabled, the preview will run based on the contents of the branch that triggered it, rather than the set branch. */
|
|
24516
|
+
'useBranchContents'?: boolean;
|
|
24232
24517
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24233
24518
|
'schedule'?: {
|
|
24234
24519
|
'mon'?: {
|
|
@@ -24272,6 +24557,13 @@ type UpdatePreviewblueprintData = {
|
|
|
24272
24557
|
};
|
|
24273
24558
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24274
24559
|
'argumentOverrides'?: any;
|
|
24560
|
+
/** Optional spec to run when the template is deleted. */
|
|
24561
|
+
'teardownSpec'?: {
|
|
24562
|
+
/** The root node of the teardown workflow. */
|
|
24563
|
+
'spec': any;
|
|
24564
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
24565
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24566
|
+
} | null;
|
|
24275
24567
|
'triggers'?: any[];
|
|
24276
24568
|
'apiVersion': string;
|
|
24277
24569
|
'project'?: any;
|
|
@@ -24371,6 +24663,8 @@ type DeleteBlueprinttemplatepreviewResult = any;
|
|
|
24371
24663
|
type DeleteBlueprinttemplatepreviewCall = (opts: DeleteBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<DeleteBlueprinttemplatepreviewResult>>;
|
|
24372
24664
|
type DeleteBlueprinttemplatepreviewRequest = {
|
|
24373
24665
|
parameters: DeleteBlueprinttemplatepreviewParameters;
|
|
24666
|
+
options?: DeleteBlueprinttemplatepreviewOptions;
|
|
24667
|
+
data: DeleteBlueprinttemplatepreviewData;
|
|
24374
24668
|
};
|
|
24375
24669
|
type DeleteBlueprinttemplatepreviewParameters = {
|
|
24376
24670
|
/** ID of the project */
|
|
@@ -24389,13 +24683,21 @@ type DeleteBlueprinttemplatepreviewParameters = {
|
|
|
24389
24683
|
/** ID of the preview */
|
|
24390
24684
|
'previewId': string;
|
|
24391
24685
|
};
|
|
24686
|
+
type DeleteBlueprinttemplatepreviewOptions = {
|
|
24687
|
+
/** If `true`, the teardown spec will not be run when deleting the preview environment. */
|
|
24688
|
+
'skipTeardown'?: boolean;
|
|
24689
|
+
};
|
|
24690
|
+
type DeleteBlueprinttemplatepreviewData = {
|
|
24691
|
+
/** Argument overrides to pass to the teardown spec when deleting the preview environment. */
|
|
24692
|
+
'teardownArgumentOverrides'?: any;
|
|
24693
|
+
};
|
|
24392
24694
|
/** Delete a preview environment generated by a preview blueprint. */
|
|
24393
24695
|
declare class DeleteBlueprinttemplatepreviewEndpoint extends DeleteApiEndpoint<DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult> {
|
|
24394
24696
|
description: string;
|
|
24395
24697
|
withAuth: boolean;
|
|
24396
24698
|
requiredPermissions: string;
|
|
24397
24699
|
endpointUrl: (opts: DeleteBlueprinttemplatepreviewRequest) => string;
|
|
24398
|
-
body: () =>
|
|
24700
|
+
body: (payload: DeleteBlueprinttemplatepreviewRequest) => string;
|
|
24399
24701
|
}
|
|
24400
24702
|
|
|
24401
24703
|
type PauseBlueprinttemplatepreviewResult = any;
|
|
@@ -24854,6 +25156,11 @@ type ListSecretsRequest = {
|
|
|
24854
25156
|
type ListSecretsParameters = {
|
|
24855
25157
|
/** ID of the project */
|
|
24856
25158
|
'projectId': string;
|
|
25159
|
+
} | {
|
|
25160
|
+
/** ID of the team */
|
|
25161
|
+
'teamId': string;
|
|
25162
|
+
/** ID of the project */
|
|
25163
|
+
'projectId': string;
|
|
24857
25164
|
};
|
|
24858
25165
|
type ListSecretsOptions = {
|
|
24859
25166
|
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
@@ -24949,6 +25256,11 @@ type CreateSecretRequest = {
|
|
|
24949
25256
|
type CreateSecretParameters = {
|
|
24950
25257
|
/** ID of the project */
|
|
24951
25258
|
'projectId': string;
|
|
25259
|
+
} | {
|
|
25260
|
+
/** ID of the team */
|
|
25261
|
+
'teamId': string;
|
|
25262
|
+
/** ID of the project */
|
|
25263
|
+
'projectId': string;
|
|
24952
25264
|
};
|
|
24953
25265
|
type CreateSecretData = {
|
|
24954
25266
|
/** The name of the secret. Example: "Example Secret" */
|
|
@@ -25099,6 +25411,11 @@ type PutSecretRequest = {
|
|
|
25099
25411
|
type PutSecretParameters = {
|
|
25100
25412
|
/** ID of the project */
|
|
25101
25413
|
'projectId': string;
|
|
25414
|
+
} | {
|
|
25415
|
+
/** ID of the team */
|
|
25416
|
+
'teamId': string;
|
|
25417
|
+
/** ID of the project */
|
|
25418
|
+
'projectId': string;
|
|
25102
25419
|
};
|
|
25103
25420
|
type PutSecretData = {
|
|
25104
25421
|
/** The name of the secret. Example: "Example Secret" */
|
|
@@ -25251,6 +25568,13 @@ type PatchSecretParameters = {
|
|
|
25251
25568
|
'projectId': string;
|
|
25252
25569
|
/** ID of the project secret */
|
|
25253
25570
|
'secretId': string;
|
|
25571
|
+
} | {
|
|
25572
|
+
/** ID of the team */
|
|
25573
|
+
'teamId': string;
|
|
25574
|
+
/** ID of the project */
|
|
25575
|
+
'projectId': string;
|
|
25576
|
+
/** ID of the project secret */
|
|
25577
|
+
'secretId': string;
|
|
25254
25578
|
};
|
|
25255
25579
|
type PatchSecretData = {
|
|
25256
25580
|
/** A description of the secret. Example: "A description" */
|
|
@@ -25371,6 +25695,13 @@ type GetSecretParameters = {
|
|
|
25371
25695
|
'projectId': string;
|
|
25372
25696
|
/** ID of the project secret */
|
|
25373
25697
|
'secretId': string;
|
|
25698
|
+
} | {
|
|
25699
|
+
/** ID of the team */
|
|
25700
|
+
'teamId': string;
|
|
25701
|
+
/** ID of the project */
|
|
25702
|
+
'projectId': string;
|
|
25703
|
+
/** ID of the project secret */
|
|
25704
|
+
'secretId': string;
|
|
25374
25705
|
};
|
|
25375
25706
|
type GetSecretOptions = {
|
|
25376
25707
|
/** Which secrets to display - if set to `this` only the group's secrets are displayed, if set to `inherited` only secrets from linked addons are displayed, if set to `all` or not provided, both are displayed. */
|
|
@@ -25395,6 +25726,13 @@ type DeleteSecretParameters = {
|
|
|
25395
25726
|
'projectId': string;
|
|
25396
25727
|
/** ID of the project secret */
|
|
25397
25728
|
'secretId': string;
|
|
25729
|
+
} | {
|
|
25730
|
+
/** ID of the team */
|
|
25731
|
+
'teamId': string;
|
|
25732
|
+
/** ID of the project */
|
|
25733
|
+
'projectId': string;
|
|
25734
|
+
/** ID of the project secret */
|
|
25735
|
+
'secretId': string;
|
|
25398
25736
|
};
|
|
25399
25737
|
/** Delete a project secret */
|
|
25400
25738
|
declare class DeleteSecretEndpoint extends DeleteApiEndpoint<DeleteSecretRequest, DeleteSecretResult> {
|
|
@@ -25416,6 +25754,13 @@ type UpdateSecretParameters = {
|
|
|
25416
25754
|
'projectId': string;
|
|
25417
25755
|
/** ID of the project secret */
|
|
25418
25756
|
'secretId': string;
|
|
25757
|
+
} | {
|
|
25758
|
+
/** ID of the team */
|
|
25759
|
+
'teamId': string;
|
|
25760
|
+
/** ID of the project */
|
|
25761
|
+
'projectId': string;
|
|
25762
|
+
/** ID of the project secret */
|
|
25763
|
+
'secretId': string;
|
|
25419
25764
|
};
|
|
25420
25765
|
type UpdateSecretData = {
|
|
25421
25766
|
/** A description of the secret. Example: "A description" */
|
|
@@ -25506,6 +25851,15 @@ type UpdateSecretlinkParameters = {
|
|
|
25506
25851
|
'secretId': string;
|
|
25507
25852
|
/** ID of the addon */
|
|
25508
25853
|
'addonId': string;
|
|
25854
|
+
} | {
|
|
25855
|
+
/** ID of the team */
|
|
25856
|
+
'teamId': string;
|
|
25857
|
+
/** ID of the project */
|
|
25858
|
+
'projectId': string;
|
|
25859
|
+
/** ID of the project secret */
|
|
25860
|
+
'secretId': string;
|
|
25861
|
+
/** ID of the addon */
|
|
25862
|
+
'addonId': string;
|
|
25509
25863
|
};
|
|
25510
25864
|
type UpdateSecretlinkData = {
|
|
25511
25865
|
/** An array of objects containing details about the keys to link to this secret group. */
|
|
@@ -25560,6 +25914,15 @@ type GetSecretlinkParameters = {
|
|
|
25560
25914
|
'secretId': string;
|
|
25561
25915
|
/** ID of the addon */
|
|
25562
25916
|
'addonId': string;
|
|
25917
|
+
} | {
|
|
25918
|
+
/** ID of the team */
|
|
25919
|
+
'teamId': string;
|
|
25920
|
+
/** ID of the project */
|
|
25921
|
+
'projectId': string;
|
|
25922
|
+
/** ID of the project secret */
|
|
25923
|
+
'secretId': string;
|
|
25924
|
+
/** ID of the addon */
|
|
25925
|
+
'addonId': string;
|
|
25563
25926
|
};
|
|
25564
25927
|
/** Get details about a given addon link. */
|
|
25565
25928
|
declare class GetSecretlinkEndpoint extends GetApiEndpoint<GetSecretlinkRequest, GetSecretlinkResult> {
|
|
@@ -25582,6 +25945,15 @@ type DeleteSecretlinkParameters = {
|
|
|
25582
25945
|
'secretId': string;
|
|
25583
25946
|
/** ID of the addon */
|
|
25584
25947
|
'addonId': string;
|
|
25948
|
+
} | {
|
|
25949
|
+
/** ID of the team */
|
|
25950
|
+
'teamId': string;
|
|
25951
|
+
/** ID of the project */
|
|
25952
|
+
'projectId': string;
|
|
25953
|
+
/** ID of the project secret */
|
|
25954
|
+
'secretId': string;
|
|
25955
|
+
/** ID of the addon */
|
|
25956
|
+
'addonId': string;
|
|
25585
25957
|
};
|
|
25586
25958
|
/** Unlinks an addon from the project secret. */
|
|
25587
25959
|
declare class DeleteSecretlinkEndpoint extends DeleteApiEndpoint<DeleteSecretlinkRequest, DeleteSecretlinkResult> {
|
|
@@ -25654,6 +26026,13 @@ type GetSecretdetailsParameters = {
|
|
|
25654
26026
|
'projectId': string;
|
|
25655
26027
|
/** ID of the project secret */
|
|
25656
26028
|
'secretId': string;
|
|
26029
|
+
} | {
|
|
26030
|
+
/** ID of the team */
|
|
26031
|
+
'teamId': string;
|
|
26032
|
+
/** ID of the project */
|
|
26033
|
+
'projectId': string;
|
|
26034
|
+
/** ID of the project secret */
|
|
26035
|
+
'secretId': string;
|
|
25657
26036
|
};
|
|
25658
26037
|
/** View a project secret with details about its linked addons */
|
|
25659
26038
|
declare class GetSecretdetailsEndpoint extends GetApiEndpoint<GetSecretdetailsRequest, GetSecretdetailsResult> {
|
|
@@ -26878,7 +27257,6 @@ type CreateServiceCombinedResult = {
|
|
|
26878
27257
|
'mode': 'path' | 'header';
|
|
26879
27258
|
};
|
|
26880
27259
|
};
|
|
26881
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
26882
27260
|
/** Describes all autoscaling configurations */
|
|
26883
27261
|
'autoscaling'?: {
|
|
26884
27262
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -26958,6 +27336,7 @@ type CreateServiceCombinedResult = {
|
|
|
26958
27336
|
};
|
|
26959
27337
|
'storage'?: {
|
|
26960
27338
|
'useHdbStorage'?: boolean;
|
|
27339
|
+
'usePdSsdStorage'?: boolean;
|
|
26961
27340
|
'ephemeralStorage'?: {
|
|
26962
27341
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
26963
27342
|
'storageSize'?: number;
|
|
@@ -26992,12 +27371,13 @@ type CreateServiceCombinedResult = {
|
|
|
26992
27371
|
};
|
|
26993
27372
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
26994
27373
|
'gracePeriodSeconds'?: number;
|
|
27374
|
+
/** The id of the strategy to be attached to service. */
|
|
27375
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
26995
27376
|
/** Controls related to SSH access within the resource. */
|
|
26996
27377
|
'ssh'?: {
|
|
26997
27378
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
26998
27379
|
'enabled': boolean;
|
|
26999
27380
|
};
|
|
27000
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27001
27381
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27002
27382
|
'metadata'?: {
|
|
27003
27383
|
/** Specify custom labels for the workload. */
|
|
@@ -27113,6 +27493,7 @@ type CreateServiceCombinedData = {
|
|
|
27113
27493
|
};
|
|
27114
27494
|
'storage'?: {
|
|
27115
27495
|
'useHdbStorage'?: boolean;
|
|
27496
|
+
'usePdSsdStorage'?: boolean;
|
|
27116
27497
|
'ephemeralStorage'?: {
|
|
27117
27498
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
27118
27499
|
'storageSize'?: number;
|
|
@@ -27147,12 +27528,13 @@ type CreateServiceCombinedData = {
|
|
|
27147
27528
|
};
|
|
27148
27529
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
27149
27530
|
'gracePeriodSeconds'?: number;
|
|
27531
|
+
/** The id of the strategy to be attached to service. */
|
|
27532
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
27150
27533
|
/** Controls related to SSH access within the resource. */
|
|
27151
27534
|
'ssh'?: {
|
|
27152
27535
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
27153
27536
|
'enabled': boolean;
|
|
27154
27537
|
};
|
|
27155
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27156
27538
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27157
27539
|
'metadata'?: {
|
|
27158
27540
|
/** Specify custom labels for the workload. */
|
|
@@ -27459,7 +27841,6 @@ type CreateServiceCombinedData = {
|
|
|
27459
27841
|
'mode': 'path' | 'header';
|
|
27460
27842
|
};
|
|
27461
27843
|
};
|
|
27462
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27463
27844
|
/** Describes all autoscaling configurations */
|
|
27464
27845
|
'autoscaling'?: {
|
|
27465
27846
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -27843,7 +28224,6 @@ type PutServiceCombinedResult = {
|
|
|
27843
28224
|
'mode': 'path' | 'header';
|
|
27844
28225
|
};
|
|
27845
28226
|
};
|
|
27846
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27847
28227
|
/** Describes all autoscaling configurations */
|
|
27848
28228
|
'autoscaling'?: {
|
|
27849
28229
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -27923,6 +28303,7 @@ type PutServiceCombinedResult = {
|
|
|
27923
28303
|
};
|
|
27924
28304
|
'storage'?: {
|
|
27925
28305
|
'useHdbStorage'?: boolean;
|
|
28306
|
+
'usePdSsdStorage'?: boolean;
|
|
27926
28307
|
'ephemeralStorage'?: {
|
|
27927
28308
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
27928
28309
|
'storageSize'?: number;
|
|
@@ -27957,12 +28338,13 @@ type PutServiceCombinedResult = {
|
|
|
27957
28338
|
};
|
|
27958
28339
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
27959
28340
|
'gracePeriodSeconds'?: number;
|
|
28341
|
+
/** The id of the strategy to be attached to service. */
|
|
28342
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
27960
28343
|
/** Controls related to SSH access within the resource. */
|
|
27961
28344
|
'ssh'?: {
|
|
27962
28345
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
27963
28346
|
'enabled': boolean;
|
|
27964
28347
|
};
|
|
27965
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27966
28348
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27967
28349
|
'metadata'?: {
|
|
27968
28350
|
/** Specify custom labels for the workload. */
|
|
@@ -28078,6 +28460,7 @@ type PutServiceCombinedData = {
|
|
|
28078
28460
|
};
|
|
28079
28461
|
'storage'?: {
|
|
28080
28462
|
'useHdbStorage'?: boolean;
|
|
28463
|
+
'usePdSsdStorage'?: boolean;
|
|
28081
28464
|
'ephemeralStorage'?: {
|
|
28082
28465
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
28083
28466
|
'storageSize'?: number;
|
|
@@ -28112,12 +28495,13 @@ type PutServiceCombinedData = {
|
|
|
28112
28495
|
};
|
|
28113
28496
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
28114
28497
|
'gracePeriodSeconds'?: number;
|
|
28498
|
+
/** The id of the strategy to be attached to service. */
|
|
28499
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
28115
28500
|
/** Controls related to SSH access within the resource. */
|
|
28116
28501
|
'ssh'?: {
|
|
28117
28502
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
28118
28503
|
'enabled': boolean;
|
|
28119
28504
|
};
|
|
28120
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28121
28505
|
/** Allow setting custom labels and annotations for workloads. */
|
|
28122
28506
|
'metadata'?: {
|
|
28123
28507
|
/** Specify custom labels for the workload. */
|
|
@@ -28424,7 +28808,6 @@ type PutServiceCombinedData = {
|
|
|
28424
28808
|
'mode': 'path' | 'header';
|
|
28425
28809
|
};
|
|
28426
28810
|
};
|
|
28427
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28428
28811
|
/** Describes all autoscaling configurations */
|
|
28429
28812
|
'autoscaling'?: {
|
|
28430
28813
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -28808,7 +29191,6 @@ type PatchServiceCombinedResult = {
|
|
|
28808
29191
|
'mode': 'path' | 'header';
|
|
28809
29192
|
};
|
|
28810
29193
|
};
|
|
28811
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28812
29194
|
/** Describes all autoscaling configurations */
|
|
28813
29195
|
'autoscaling'?: {
|
|
28814
29196
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -28888,6 +29270,7 @@ type PatchServiceCombinedResult = {
|
|
|
28888
29270
|
};
|
|
28889
29271
|
'storage'?: {
|
|
28890
29272
|
'useHdbStorage'?: boolean;
|
|
29273
|
+
'usePdSsdStorage'?: boolean;
|
|
28891
29274
|
'ephemeralStorage'?: {
|
|
28892
29275
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
28893
29276
|
'storageSize'?: number;
|
|
@@ -28922,12 +29305,13 @@ type PatchServiceCombinedResult = {
|
|
|
28922
29305
|
};
|
|
28923
29306
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
28924
29307
|
'gracePeriodSeconds'?: number;
|
|
29308
|
+
/** The id of the strategy to be attached to service. */
|
|
29309
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
28925
29310
|
/** Controls related to SSH access within the resource. */
|
|
28926
29311
|
'ssh'?: {
|
|
28927
29312
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
28928
29313
|
'enabled': boolean;
|
|
28929
29314
|
};
|
|
28930
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28931
29315
|
/** Allow setting custom labels and annotations for workloads. */
|
|
28932
29316
|
'metadata'?: {
|
|
28933
29317
|
/** Specify custom labels for the workload. */
|
|
@@ -29071,11 +29455,12 @@ type PatchServiceCombinedData = {
|
|
|
29071
29455
|
};
|
|
29072
29456
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
29073
29457
|
'gracePeriodSeconds'?: number;
|
|
29458
|
+
/** The id of the strategy to be attached to service. */
|
|
29459
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29074
29460
|
'ssh'?: {
|
|
29075
29461
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29076
29462
|
'enabled'?: boolean;
|
|
29077
29463
|
};
|
|
29078
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29079
29464
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29080
29465
|
'metadata'?: {
|
|
29081
29466
|
/** Specify custom labels for the workload. */
|
|
@@ -29374,7 +29759,6 @@ type PatchServiceCombinedData = {
|
|
|
29374
29759
|
'mode': 'path' | 'header';
|
|
29375
29760
|
};
|
|
29376
29761
|
};
|
|
29377
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29378
29762
|
'autoscaling'?: {
|
|
29379
29763
|
'horizontal'?: {
|
|
29380
29764
|
/** Whether horizontal autoscaling should be enabled Example: true */
|
|
@@ -29650,7 +30034,6 @@ type CreateServiceDeploymentResult = {
|
|
|
29650
30034
|
'mode': 'path' | 'header';
|
|
29651
30035
|
};
|
|
29652
30036
|
};
|
|
29653
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29654
30037
|
/** Describes all autoscaling configurations */
|
|
29655
30038
|
'autoscaling'?: {
|
|
29656
30039
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -29730,6 +30113,7 @@ type CreateServiceDeploymentResult = {
|
|
|
29730
30113
|
};
|
|
29731
30114
|
'storage'?: {
|
|
29732
30115
|
'useHdbStorage'?: boolean;
|
|
30116
|
+
'usePdSsdStorage'?: boolean;
|
|
29733
30117
|
'ephemeralStorage'?: {
|
|
29734
30118
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
29735
30119
|
'storageSize'?: number;
|
|
@@ -29764,12 +30148,13 @@ type CreateServiceDeploymentResult = {
|
|
|
29764
30148
|
};
|
|
29765
30149
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
29766
30150
|
'gracePeriodSeconds'?: number;
|
|
30151
|
+
/** The id of the strategy to be attached to service. */
|
|
30152
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29767
30153
|
/** Controls related to SSH access within the resource. */
|
|
29768
30154
|
'ssh'?: {
|
|
29769
30155
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29770
30156
|
'enabled': boolean;
|
|
29771
30157
|
};
|
|
29772
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29773
30158
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29774
30159
|
'metadata'?: {
|
|
29775
30160
|
/** Specify custom labels for the workload. */
|
|
@@ -29893,6 +30278,7 @@ type CreateServiceDeploymentData = {
|
|
|
29893
30278
|
};
|
|
29894
30279
|
'storage'?: {
|
|
29895
30280
|
'useHdbStorage'?: boolean;
|
|
30281
|
+
'usePdSsdStorage'?: boolean;
|
|
29896
30282
|
'ephemeralStorage'?: {
|
|
29897
30283
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
29898
30284
|
'storageSize'?: number;
|
|
@@ -29927,12 +30313,13 @@ type CreateServiceDeploymentData = {
|
|
|
29927
30313
|
};
|
|
29928
30314
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
29929
30315
|
'gracePeriodSeconds'?: number;
|
|
30316
|
+
/** The id of the strategy to be attached to service. */
|
|
30317
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29930
30318
|
/** Controls related to SSH access within the resource. */
|
|
29931
30319
|
'ssh'?: {
|
|
29932
30320
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29933
30321
|
'enabled': boolean;
|
|
29934
30322
|
};
|
|
29935
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29936
30323
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29937
30324
|
'metadata'?: {
|
|
29938
30325
|
/** Specify custom labels for the workload. */
|
|
@@ -29977,6 +30364,7 @@ type CreateServiceDeploymentData = {
|
|
|
29977
30364
|
};
|
|
29978
30365
|
'storage'?: {
|
|
29979
30366
|
'useHdbStorage'?: boolean;
|
|
30367
|
+
'usePdSsdStorage'?: boolean;
|
|
29980
30368
|
'ephemeralStorage'?: {
|
|
29981
30369
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
29982
30370
|
'storageSize'?: number;
|
|
@@ -30011,12 +30399,13 @@ type CreateServiceDeploymentData = {
|
|
|
30011
30399
|
};
|
|
30012
30400
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
30013
30401
|
'gracePeriodSeconds'?: number;
|
|
30402
|
+
/** The id of the strategy to be attached to service. */
|
|
30403
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30014
30404
|
/** Controls related to SSH access within the resource. */
|
|
30015
30405
|
'ssh'?: {
|
|
30016
30406
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30017
30407
|
'enabled': boolean;
|
|
30018
30408
|
};
|
|
30019
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30020
30409
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30021
30410
|
'metadata'?: {
|
|
30022
30411
|
/** Specify custom labels for the workload. */
|
|
@@ -30057,6 +30446,7 @@ type CreateServiceDeploymentData = {
|
|
|
30057
30446
|
};
|
|
30058
30447
|
'storage'?: {
|
|
30059
30448
|
'useHdbStorage'?: boolean;
|
|
30449
|
+
'usePdSsdStorage'?: boolean;
|
|
30060
30450
|
'ephemeralStorage'?: {
|
|
30061
30451
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30062
30452
|
'storageSize'?: number;
|
|
@@ -30091,12 +30481,13 @@ type CreateServiceDeploymentData = {
|
|
|
30091
30481
|
};
|
|
30092
30482
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
30093
30483
|
'gracePeriodSeconds'?: number;
|
|
30484
|
+
/** The id of the strategy to be attached to service. */
|
|
30485
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30094
30486
|
/** Controls related to SSH access within the resource. */
|
|
30095
30487
|
'ssh'?: {
|
|
30096
30488
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30097
30489
|
'enabled': boolean;
|
|
30098
30490
|
};
|
|
30099
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30100
30491
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30101
30492
|
'metadata'?: {
|
|
30102
30493
|
/** Specify custom labels for the workload. */
|
|
@@ -30302,7 +30693,6 @@ type CreateServiceDeploymentData = {
|
|
|
30302
30693
|
'mode': 'path' | 'header';
|
|
30303
30694
|
};
|
|
30304
30695
|
};
|
|
30305
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30306
30696
|
/** Describes all autoscaling configurations */
|
|
30307
30697
|
'autoscaling'?: {
|
|
30308
30698
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -30583,7 +30973,6 @@ type PutServiceDeploymentResult = {
|
|
|
30583
30973
|
'mode': 'path' | 'header';
|
|
30584
30974
|
};
|
|
30585
30975
|
};
|
|
30586
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30587
30976
|
/** Describes all autoscaling configurations */
|
|
30588
30977
|
'autoscaling'?: {
|
|
30589
30978
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -30663,6 +31052,7 @@ type PutServiceDeploymentResult = {
|
|
|
30663
31052
|
};
|
|
30664
31053
|
'storage'?: {
|
|
30665
31054
|
'useHdbStorage'?: boolean;
|
|
31055
|
+
'usePdSsdStorage'?: boolean;
|
|
30666
31056
|
'ephemeralStorage'?: {
|
|
30667
31057
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30668
31058
|
'storageSize'?: number;
|
|
@@ -30697,12 +31087,13 @@ type PutServiceDeploymentResult = {
|
|
|
30697
31087
|
};
|
|
30698
31088
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
30699
31089
|
'gracePeriodSeconds'?: number;
|
|
31090
|
+
/** The id of the strategy to be attached to service. */
|
|
31091
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30700
31092
|
/** Controls related to SSH access within the resource. */
|
|
30701
31093
|
'ssh'?: {
|
|
30702
31094
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30703
31095
|
'enabled': boolean;
|
|
30704
31096
|
};
|
|
30705
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30706
31097
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30707
31098
|
'metadata'?: {
|
|
30708
31099
|
/** Specify custom labels for the workload. */
|
|
@@ -30826,6 +31217,7 @@ type PutServiceDeploymentData = {
|
|
|
30826
31217
|
};
|
|
30827
31218
|
'storage'?: {
|
|
30828
31219
|
'useHdbStorage'?: boolean;
|
|
31220
|
+
'usePdSsdStorage'?: boolean;
|
|
30829
31221
|
'ephemeralStorage'?: {
|
|
30830
31222
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30831
31223
|
'storageSize'?: number;
|
|
@@ -30860,12 +31252,13 @@ type PutServiceDeploymentData = {
|
|
|
30860
31252
|
};
|
|
30861
31253
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
30862
31254
|
'gracePeriodSeconds'?: number;
|
|
31255
|
+
/** The id of the strategy to be attached to service. */
|
|
31256
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30863
31257
|
/** Controls related to SSH access within the resource. */
|
|
30864
31258
|
'ssh'?: {
|
|
30865
31259
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30866
31260
|
'enabled': boolean;
|
|
30867
31261
|
};
|
|
30868
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30869
31262
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30870
31263
|
'metadata'?: {
|
|
30871
31264
|
/** Specify custom labels for the workload. */
|
|
@@ -30910,6 +31303,7 @@ type PutServiceDeploymentData = {
|
|
|
30910
31303
|
};
|
|
30911
31304
|
'storage'?: {
|
|
30912
31305
|
'useHdbStorage'?: boolean;
|
|
31306
|
+
'usePdSsdStorage'?: boolean;
|
|
30913
31307
|
'ephemeralStorage'?: {
|
|
30914
31308
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30915
31309
|
'storageSize'?: number;
|
|
@@ -30944,12 +31338,13 @@ type PutServiceDeploymentData = {
|
|
|
30944
31338
|
};
|
|
30945
31339
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
30946
31340
|
'gracePeriodSeconds'?: number;
|
|
31341
|
+
/** The id of the strategy to be attached to service. */
|
|
31342
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30947
31343
|
/** Controls related to SSH access within the resource. */
|
|
30948
31344
|
'ssh'?: {
|
|
30949
31345
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30950
31346
|
'enabled': boolean;
|
|
30951
31347
|
};
|
|
30952
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30953
31348
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30954
31349
|
'metadata'?: {
|
|
30955
31350
|
/** Specify custom labels for the workload. */
|
|
@@ -30990,6 +31385,7 @@ type PutServiceDeploymentData = {
|
|
|
30990
31385
|
};
|
|
30991
31386
|
'storage'?: {
|
|
30992
31387
|
'useHdbStorage'?: boolean;
|
|
31388
|
+
'usePdSsdStorage'?: boolean;
|
|
30993
31389
|
'ephemeralStorage'?: {
|
|
30994
31390
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30995
31391
|
'storageSize'?: number;
|
|
@@ -31024,12 +31420,13 @@ type PutServiceDeploymentData = {
|
|
|
31024
31420
|
};
|
|
31025
31421
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
31026
31422
|
'gracePeriodSeconds'?: number;
|
|
31423
|
+
/** The id of the strategy to be attached to service. */
|
|
31424
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31027
31425
|
/** Controls related to SSH access within the resource. */
|
|
31028
31426
|
'ssh'?: {
|
|
31029
31427
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31030
31428
|
'enabled': boolean;
|
|
31031
31429
|
};
|
|
31032
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31033
31430
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31034
31431
|
'metadata'?: {
|
|
31035
31432
|
/** Specify custom labels for the workload. */
|
|
@@ -31235,7 +31632,6 @@ type PutServiceDeploymentData = {
|
|
|
31235
31632
|
'mode': 'path' | 'header';
|
|
31236
31633
|
};
|
|
31237
31634
|
};
|
|
31238
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31239
31635
|
/** Describes all autoscaling configurations */
|
|
31240
31636
|
'autoscaling'?: {
|
|
31241
31637
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -31516,7 +31912,6 @@ type PatchServiceDeploymentResult = {
|
|
|
31516
31912
|
'mode': 'path' | 'header';
|
|
31517
31913
|
};
|
|
31518
31914
|
};
|
|
31519
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31520
31915
|
/** Describes all autoscaling configurations */
|
|
31521
31916
|
'autoscaling'?: {
|
|
31522
31917
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -31596,6 +31991,7 @@ type PatchServiceDeploymentResult = {
|
|
|
31596
31991
|
};
|
|
31597
31992
|
'storage'?: {
|
|
31598
31993
|
'useHdbStorage'?: boolean;
|
|
31994
|
+
'usePdSsdStorage'?: boolean;
|
|
31599
31995
|
'ephemeralStorage'?: {
|
|
31600
31996
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31601
31997
|
'storageSize'?: number;
|
|
@@ -31630,12 +32026,13 @@ type PatchServiceDeploymentResult = {
|
|
|
31630
32026
|
};
|
|
31631
32027
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
31632
32028
|
'gracePeriodSeconds'?: number;
|
|
32029
|
+
/** The id of the strategy to be attached to service. */
|
|
32030
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31633
32031
|
/** Controls related to SSH access within the resource. */
|
|
31634
32032
|
'ssh'?: {
|
|
31635
32033
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31636
32034
|
'enabled': boolean;
|
|
31637
32035
|
};
|
|
31638
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31639
32036
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31640
32037
|
'metadata'?: {
|
|
31641
32038
|
/** Specify custom labels for the workload. */
|
|
@@ -31758,6 +32155,7 @@ type PatchServiceDeploymentData = {
|
|
|
31758
32155
|
};
|
|
31759
32156
|
'storage'?: {
|
|
31760
32157
|
'useHdbStorage'?: boolean;
|
|
32158
|
+
'usePdSsdStorage'?: boolean;
|
|
31761
32159
|
'ephemeralStorage'?: {
|
|
31762
32160
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31763
32161
|
'storageSize'?: number;
|
|
@@ -31792,12 +32190,13 @@ type PatchServiceDeploymentData = {
|
|
|
31792
32190
|
};
|
|
31793
32191
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
31794
32192
|
'gracePeriodSeconds'?: number;
|
|
32193
|
+
/** The id of the strategy to be attached to service. */
|
|
32194
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31795
32195
|
/** Controls related to SSH access within the resource. */
|
|
31796
32196
|
'ssh'?: {
|
|
31797
32197
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31798
32198
|
'enabled': boolean;
|
|
31799
32199
|
};
|
|
31800
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31801
32200
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31802
32201
|
'metadata'?: {
|
|
31803
32202
|
/** Specify custom labels for the workload. */
|
|
@@ -31842,6 +32241,7 @@ type PatchServiceDeploymentData = {
|
|
|
31842
32241
|
};
|
|
31843
32242
|
'storage'?: {
|
|
31844
32243
|
'useHdbStorage'?: boolean;
|
|
32244
|
+
'usePdSsdStorage'?: boolean;
|
|
31845
32245
|
'ephemeralStorage'?: {
|
|
31846
32246
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31847
32247
|
'storageSize'?: number;
|
|
@@ -31876,12 +32276,13 @@ type PatchServiceDeploymentData = {
|
|
|
31876
32276
|
};
|
|
31877
32277
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
31878
32278
|
'gracePeriodSeconds'?: number;
|
|
32279
|
+
/** The id of the strategy to be attached to service. */
|
|
32280
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31879
32281
|
/** Controls related to SSH access within the resource. */
|
|
31880
32282
|
'ssh'?: {
|
|
31881
32283
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31882
32284
|
'enabled': boolean;
|
|
31883
32285
|
};
|
|
31884
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31885
32286
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31886
32287
|
'metadata'?: {
|
|
31887
32288
|
/** Specify custom labels for the workload. */
|
|
@@ -31922,6 +32323,7 @@ type PatchServiceDeploymentData = {
|
|
|
31922
32323
|
};
|
|
31923
32324
|
'storage'?: {
|
|
31924
32325
|
'useHdbStorage'?: boolean;
|
|
32326
|
+
'usePdSsdStorage'?: boolean;
|
|
31925
32327
|
'ephemeralStorage'?: {
|
|
31926
32328
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31927
32329
|
'storageSize'?: number;
|
|
@@ -31956,12 +32358,13 @@ type PatchServiceDeploymentData = {
|
|
|
31956
32358
|
};
|
|
31957
32359
|
/** The maximum amount of time the process has to shut down after receiving a SIGTERM signal before it is forcefully shut down SIGKILL by the system. */
|
|
31958
32360
|
'gracePeriodSeconds'?: number;
|
|
32361
|
+
/** The id of the strategy to be attached to service. */
|
|
32362
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31959
32363
|
/** Controls related to SSH access within the resource. */
|
|
31960
32364
|
'ssh'?: {
|
|
31961
32365
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31962
32366
|
'enabled': boolean;
|
|
31963
32367
|
};
|
|
31964
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31965
32368
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31966
32369
|
'metadata'?: {
|
|
31967
32370
|
/** Specify custom labels for the workload. */
|
|
@@ -32167,7 +32570,6 @@ type PatchServiceDeploymentData = {
|
|
|
32167
32570
|
'mode': 'path' | 'header';
|
|
32168
32571
|
};
|
|
32169
32572
|
};
|
|
32170
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
32171
32573
|
'autoscaling'?: {
|
|
32172
32574
|
'horizontal'?: {
|
|
32173
32575
|
/** Whether horizontal autoscaling should be enabled Example: true */
|
|
@@ -34261,6 +34663,7 @@ type ScaleServiceData = {
|
|
|
34261
34663
|
'deploymentPlan'?: string;
|
|
34262
34664
|
'storage'?: {
|
|
34263
34665
|
'useHdbStorage'?: boolean;
|
|
34666
|
+
'usePdSsdStorage'?: boolean;
|
|
34264
34667
|
'ephemeralStorage'?: {
|
|
34265
34668
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
34266
34669
|
'storageSize'?: number;
|
|
@@ -34952,6 +35355,13 @@ type CreateWorkflowData = {
|
|
|
34952
35355
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
34953
35356
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
34954
35357
|
};
|
|
35358
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35359
|
+
'teardownSpec'?: {
|
|
35360
|
+
/** The root node of the teardown workflow. */
|
|
35361
|
+
'spec': any;
|
|
35362
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
35363
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35364
|
+
} | null;
|
|
34955
35365
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
34956
35366
|
'argumentOverrides'?: any;
|
|
34957
35367
|
/** ID of the stage */
|
|
@@ -35004,6 +35414,13 @@ type GetWorkflowResult = {
|
|
|
35004
35414
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
35005
35415
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
35006
35416
|
};
|
|
35417
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35418
|
+
'teardownSpec'?: {
|
|
35419
|
+
/** The root node of the teardown workflow. */
|
|
35420
|
+
'spec': any;
|
|
35421
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
35422
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35423
|
+
} | null;
|
|
35007
35424
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
35008
35425
|
'argumentOverrides'?: any;
|
|
35009
35426
|
/** ID of the stage */
|
|
@@ -35096,6 +35513,13 @@ type UpdateWorkflowData = {
|
|
|
35096
35513
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
35097
35514
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
35098
35515
|
};
|
|
35516
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35517
|
+
'teardownSpec'?: {
|
|
35518
|
+
/** The root node of the teardown workflow. */
|
|
35519
|
+
'spec': any;
|
|
35520
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
35521
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35522
|
+
} | null;
|
|
35099
35523
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
35100
35524
|
'argumentOverrides'?: any;
|
|
35101
35525
|
/** ID of the stage */
|
|
@@ -36697,6 +37121,12 @@ type CreateTemplateResult = {
|
|
|
36697
37121
|
'arguments'?: any;
|
|
36698
37122
|
'$schema'?: string;
|
|
36699
37123
|
'spec': any;
|
|
37124
|
+
/** Optional spec to run when the template is deleted. */
|
|
37125
|
+
'teardownSpec'?: {
|
|
37126
|
+
'spec': any;
|
|
37127
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37128
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37129
|
+
} | null;
|
|
36700
37130
|
/** Identifier for the template Example: "example-template" */
|
|
36701
37131
|
'id': string;
|
|
36702
37132
|
'gitops'?: {
|
|
@@ -36812,6 +37242,12 @@ type CreateTemplateData = {
|
|
|
36812
37242
|
'filePath': string;
|
|
36813
37243
|
};
|
|
36814
37244
|
'spec': any;
|
|
37245
|
+
/** Optional spec to run when the template is deleted. */
|
|
37246
|
+
'teardownSpec'?: {
|
|
37247
|
+
'spec': any;
|
|
37248
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37249
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37250
|
+
} | null;
|
|
36815
37251
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
36816
37252
|
'argumentOverrides'?: any;
|
|
36817
37253
|
/** Options regarding how the template is run. */
|
|
@@ -36832,6 +37268,12 @@ type CreateTemplateData = {
|
|
|
36832
37268
|
'description'?: string;
|
|
36833
37269
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
36834
37270
|
'arguments'?: any;
|
|
37271
|
+
/** Optional spec to run when the template is deleted. */
|
|
37272
|
+
'teardownSpec'?: {
|
|
37273
|
+
'spec': any;
|
|
37274
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37275
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37276
|
+
} | null;
|
|
36835
37277
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
36836
37278
|
'argumentOverrides'?: any;
|
|
36837
37279
|
/** Options regarding how the template is run. */
|
|
@@ -36884,6 +37326,12 @@ type GetTemplateResult = {
|
|
|
36884
37326
|
'arguments'?: any;
|
|
36885
37327
|
'$schema'?: string;
|
|
36886
37328
|
'spec': any;
|
|
37329
|
+
/** Optional spec to run when the template is deleted. */
|
|
37330
|
+
'teardownSpec'?: {
|
|
37331
|
+
'spec': any;
|
|
37332
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37333
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37334
|
+
} | null;
|
|
36887
37335
|
/** Identifier for the template Example: "example-template" */
|
|
36888
37336
|
'id': string;
|
|
36889
37337
|
'gitops'?: {
|
|
@@ -36961,6 +37409,12 @@ type UpdateTemplateResult = {
|
|
|
36961
37409
|
'arguments'?: any;
|
|
36962
37410
|
'$schema'?: string;
|
|
36963
37411
|
'spec': any;
|
|
37412
|
+
/** Optional spec to run when the template is deleted. */
|
|
37413
|
+
'teardownSpec'?: {
|
|
37414
|
+
'spec': any;
|
|
37415
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37416
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37417
|
+
} | null;
|
|
36964
37418
|
/** Identifier for the template Example: "example-template" */
|
|
36965
37419
|
'id': string;
|
|
36966
37420
|
'gitops'?: {
|
|
@@ -37089,6 +37543,12 @@ type UpdateTemplateData = {
|
|
|
37089
37543
|
};
|
|
37090
37544
|
'$schema'?: string;
|
|
37091
37545
|
'spec': any;
|
|
37546
|
+
/** Optional spec to run when the template is deleted. */
|
|
37547
|
+
'teardownSpec'?: {
|
|
37548
|
+
'spec': any;
|
|
37549
|
+
/** Controls what happens if the teardown spec fails or times out. `ignore` (default) — proceed with resource deletion regardless. `block` — halt deletion and set the environment to `teardown_failed` */
|
|
37550
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37551
|
+
} | null;
|
|
37092
37552
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
37093
37553
|
'argumentOverrides'?: any;
|
|
37094
37554
|
} | {
|
|
@@ -38491,4 +38951,4 @@ declare class ApiClient {
|
|
|
38491
38951
|
}
|
|
38492
38952
|
|
|
38493
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 };
|
|
38494
|
-
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, 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, 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 };
|
|
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 };
|