@northflank/js-client 0.9.3-beta.0 → 0.9.3-beta.2
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 +433 -51
- package/dist/cjs/api-client.js +22 -21
- package/dist/esm/api-client.d.ts +433 -51
- package/dist/esm/api-client.js +56 -53
- package/package.json +1 -1
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -179,7 +179,7 @@ declare abstract class PostApiEndpoint<T, R> extends ApiEndpoint<T, R> {
|
|
|
179
179
|
}
|
|
180
180
|
declare abstract class DeleteApiEndpoint<T, R> extends ApiEndpoint<T, R> {
|
|
181
181
|
method: string;
|
|
182
|
-
body:
|
|
182
|
+
abstract body(opts: T): any;
|
|
183
183
|
abstract endpointUrl(opts: T): string;
|
|
184
184
|
abstract withAuth: boolean;
|
|
185
185
|
}
|
|
@@ -2256,6 +2256,12 @@ type ListCloudClustersResult = {
|
|
|
2256
2256
|
'gcpIntegrationId': string;
|
|
2257
2257
|
};
|
|
2258
2258
|
};
|
|
2259
|
+
'networking'?: {
|
|
2260
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
2261
|
+
'overlayNetwork'?: boolean;
|
|
2262
|
+
/** CIDR range for the overlay network. */
|
|
2263
|
+
'overlayCIDR'?: string;
|
|
2264
|
+
};
|
|
2259
2265
|
'vanityDomains'?: {
|
|
2260
2266
|
'apps'?: {
|
|
2261
2267
|
'zoneName': string;
|
|
@@ -2712,6 +2718,12 @@ type CreateCloudClusterResult = {
|
|
|
2712
2718
|
'gcpIntegrationId': string;
|
|
2713
2719
|
};
|
|
2714
2720
|
};
|
|
2721
|
+
'networking'?: {
|
|
2722
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
2723
|
+
'overlayNetwork'?: boolean;
|
|
2724
|
+
/** CIDR range for the overlay network. */
|
|
2725
|
+
'overlayCIDR'?: string;
|
|
2726
|
+
};
|
|
2715
2727
|
'vanityDomains'?: {
|
|
2716
2728
|
'apps'?: {
|
|
2717
2729
|
'zoneName': string;
|
|
@@ -3126,6 +3138,12 @@ type CreateCloudClusterData = {
|
|
|
3126
3138
|
'gcpIntegrationId': string;
|
|
3127
3139
|
};
|
|
3128
3140
|
};
|
|
3141
|
+
'networking'?: {
|
|
3142
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3143
|
+
'overlayNetwork'?: boolean;
|
|
3144
|
+
/** CIDR range for the overlay network. */
|
|
3145
|
+
'overlayCIDR'?: string;
|
|
3146
|
+
};
|
|
3129
3147
|
'vanityDomains'?: {
|
|
3130
3148
|
'apps'?: {
|
|
3131
3149
|
'zoneName': string;
|
|
@@ -3555,6 +3573,12 @@ type PutCloudClusterResult = {
|
|
|
3555
3573
|
'gcpIntegrationId': string;
|
|
3556
3574
|
};
|
|
3557
3575
|
};
|
|
3576
|
+
'networking'?: {
|
|
3577
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3578
|
+
'overlayNetwork'?: boolean;
|
|
3579
|
+
/** CIDR range for the overlay network. */
|
|
3580
|
+
'overlayCIDR'?: string;
|
|
3581
|
+
};
|
|
3558
3582
|
'vanityDomains'?: {
|
|
3559
3583
|
'apps'?: {
|
|
3560
3584
|
'zoneName': string;
|
|
@@ -3969,6 +3993,12 @@ type PutCloudClusterData = {
|
|
|
3969
3993
|
'gcpIntegrationId': string;
|
|
3970
3994
|
};
|
|
3971
3995
|
};
|
|
3996
|
+
'networking'?: {
|
|
3997
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
3998
|
+
'overlayNetwork'?: boolean;
|
|
3999
|
+
/** CIDR range for the overlay network. */
|
|
4000
|
+
'overlayCIDR'?: string;
|
|
4001
|
+
};
|
|
3972
4002
|
'vanityDomains'?: {
|
|
3973
4003
|
'apps'?: {
|
|
3974
4004
|
'zoneName': string;
|
|
@@ -4398,6 +4428,12 @@ type GetCloudClusterResult = {
|
|
|
4398
4428
|
'gcpIntegrationId': string;
|
|
4399
4429
|
};
|
|
4400
4430
|
};
|
|
4431
|
+
'networking'?: {
|
|
4432
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
4433
|
+
'overlayNetwork'?: boolean;
|
|
4434
|
+
/** CIDR range for the overlay network. */
|
|
4435
|
+
'overlayCIDR'?: string;
|
|
4436
|
+
};
|
|
4401
4437
|
'vanityDomains'?: {
|
|
4402
4438
|
'apps'?: {
|
|
4403
4439
|
'zoneName': string;
|
|
@@ -4848,6 +4884,12 @@ type PatchCloudClusterResult = {
|
|
|
4848
4884
|
'gcpIntegrationId': string;
|
|
4849
4885
|
};
|
|
4850
4886
|
};
|
|
4887
|
+
'networking'?: {
|
|
4888
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
4889
|
+
'overlayNetwork'?: boolean;
|
|
4890
|
+
/** CIDR range for the overlay network. */
|
|
4891
|
+
'overlayCIDR'?: string;
|
|
4892
|
+
};
|
|
4851
4893
|
'vanityDomains'?: {
|
|
4852
4894
|
'apps'?: {
|
|
4853
4895
|
'zoneName': string;
|
|
@@ -5222,6 +5264,12 @@ type PatchCloudClusterData = {
|
|
|
5222
5264
|
'gcpIntegrationId': string;
|
|
5223
5265
|
};
|
|
5224
5266
|
};
|
|
5267
|
+
'networking'?: {
|
|
5268
|
+
/** Whether overlay networking is enabled for this cluster. */
|
|
5269
|
+
'overlayNetwork'?: boolean;
|
|
5270
|
+
/** CIDR range for the overlay network. */
|
|
5271
|
+
'overlayCIDR'?: string;
|
|
5272
|
+
};
|
|
5225
5273
|
'vanityDomains'?: {
|
|
5226
5274
|
'apps'?: {
|
|
5227
5275
|
'zoneName': string;
|
|
@@ -6859,6 +6907,51 @@ type PutDomainSubdomainData = {
|
|
|
6859
6907
|
/** Alias domains which should be routable. Only configurable if the relevant feature flag is enabled for you account. */
|
|
6860
6908
|
'aliasDomains'?: string[];
|
|
6861
6909
|
};
|
|
6910
|
+
'cdn'?: {
|
|
6911
|
+
'northflank'?: {
|
|
6912
|
+
'enabled'?: boolean;
|
|
6913
|
+
'options'?: {
|
|
6914
|
+
'service'?: {
|
|
6915
|
+
'forceTlsEnableHsts'?: boolean;
|
|
6916
|
+
/** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
|
|
6917
|
+
'hstsDuration'?: number;
|
|
6918
|
+
'staleIfError'?: boolean;
|
|
6919
|
+
'staleIfErrorTtl'?: number;
|
|
6920
|
+
'defaultTtl'?: number;
|
|
6921
|
+
};
|
|
6922
|
+
'logging'?: {
|
|
6923
|
+
'enabled'?: boolean;
|
|
6924
|
+
};
|
|
6925
|
+
'http3'?: {
|
|
6926
|
+
'enabled'?: boolean;
|
|
6927
|
+
};
|
|
6928
|
+
'websockets'?: {
|
|
6929
|
+
'enabled'?: boolean;
|
|
6930
|
+
};
|
|
6931
|
+
'compression'?: {
|
|
6932
|
+
'enabled'?: boolean;
|
|
6933
|
+
/** Compression options. Required when `enabled` is `true`. */
|
|
6934
|
+
'mode'?: 'gzip' | 'brotli';
|
|
6935
|
+
};
|
|
6936
|
+
'vclSnippets'?: {
|
|
6937
|
+
'id'?: string;
|
|
6938
|
+
'name': string;
|
|
6939
|
+
'type': 'init' | 'recv' | 'hash' | 'hit' | 'miss' | 'pass' | 'fetch' | 'error' | 'deliver' | 'log' | 'none';
|
|
6940
|
+
'dynamic': '0' | '1';
|
|
6941
|
+
'priority': number;
|
|
6942
|
+
'content': string;
|
|
6943
|
+
}[];
|
|
6944
|
+
'cacheSettings'?: {
|
|
6945
|
+
'id'?: string;
|
|
6946
|
+
'name': string;
|
|
6947
|
+
'action'?: 'pass' | 'cache' | 'restart';
|
|
6948
|
+
'cacheCondition'?: string;
|
|
6949
|
+
'staleTtl': number;
|
|
6950
|
+
'ttl': number;
|
|
6951
|
+
}[];
|
|
6952
|
+
};
|
|
6953
|
+
};
|
|
6954
|
+
};
|
|
6862
6955
|
};
|
|
6863
6956
|
/** Updates subdomain to the domain. */
|
|
6864
6957
|
declare class PutDomainSubdomainEndpoint extends PutApiEndpoint<PutDomainSubdomainRequest, PutDomainSubdomainResult> {
|
|
@@ -8249,25 +8342,41 @@ type CreateGradualrolloutstrategyParameters = {
|
|
|
8249
8342
|
'teamId': string;
|
|
8250
8343
|
};
|
|
8251
8344
|
type CreateGradualrolloutstrategyData = {
|
|
8345
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8252
8346
|
'name'?: string;
|
|
8347
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8253
8348
|
'type': 'canary';
|
|
8254
8349
|
'options'?: {
|
|
8350
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8255
8351
|
'triggers'?: {
|
|
8352
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8256
8353
|
'releaseFromTemplate'?: boolean | null;
|
|
8354
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8257
8355
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8356
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8258
8357
|
'releaseFromCD'?: boolean | null;
|
|
8358
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8259
8359
|
'releaseFromUI'?: boolean | null;
|
|
8360
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8260
8361
|
'releaseFromApi'?: boolean | null;
|
|
8261
8362
|
};
|
|
8363
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8262
8364
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8263
8365
|
};
|
|
8366
|
+
/** Strategy-specific configuration details */
|
|
8264
8367
|
'details': {
|
|
8368
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8265
8369
|
'canaryStrategy': 'percentage' | 'header';
|
|
8370
|
+
/** Configuration for the selected canary strategy */
|
|
8266
8371
|
'config': {
|
|
8372
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8267
8373
|
'canaryPercentage': number;
|
|
8374
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8268
8375
|
'stablePercentage': number;
|
|
8269
8376
|
} | {
|
|
8377
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8270
8378
|
'headerName': string;
|
|
8379
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8271
8380
|
'headerValue': string;
|
|
8272
8381
|
};
|
|
8273
8382
|
};
|
|
@@ -8319,25 +8428,41 @@ type PutGradualrolloutstrategyParameters = {
|
|
|
8319
8428
|
'teamId': string;
|
|
8320
8429
|
};
|
|
8321
8430
|
type PutGradualrolloutstrategyData = {
|
|
8431
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8322
8432
|
'name'?: string;
|
|
8433
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8323
8434
|
'type': 'canary';
|
|
8324
8435
|
'options'?: {
|
|
8436
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8325
8437
|
'triggers'?: {
|
|
8438
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8326
8439
|
'releaseFromTemplate'?: boolean | null;
|
|
8440
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8327
8441
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8442
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8328
8443
|
'releaseFromCD'?: boolean | null;
|
|
8444
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8329
8445
|
'releaseFromUI'?: boolean | null;
|
|
8446
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8330
8447
|
'releaseFromApi'?: boolean | null;
|
|
8331
8448
|
};
|
|
8449
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8332
8450
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8333
8451
|
};
|
|
8452
|
+
/** Strategy-specific configuration details */
|
|
8334
8453
|
'details': {
|
|
8454
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8335
8455
|
'canaryStrategy': 'percentage' | 'header';
|
|
8456
|
+
/** Configuration for the selected canary strategy */
|
|
8336
8457
|
'config': {
|
|
8458
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8337
8459
|
'canaryPercentage': number;
|
|
8460
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8338
8461
|
'stablePercentage': number;
|
|
8339
8462
|
} | {
|
|
8463
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8340
8464
|
'headerName': string;
|
|
8465
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8341
8466
|
'headerValue': string;
|
|
8342
8467
|
};
|
|
8343
8468
|
};
|
|
@@ -8394,25 +8519,41 @@ type PatchGradualrolloutstrategyParameters = {
|
|
|
8394
8519
|
'gradualRolloutStrategyId': string;
|
|
8395
8520
|
};
|
|
8396
8521
|
type PatchGradualrolloutstrategyData = {
|
|
8522
|
+
/** Display name for the gradual rollout strategy Example: "my-canary-rollout" */
|
|
8397
8523
|
'name'?: string;
|
|
8524
|
+
/** Type of the gradual rollout strategy Example: "canary" */
|
|
8398
8525
|
'type': 'canary';
|
|
8399
8526
|
'options'?: {
|
|
8527
|
+
/** Conditions under which a new release will automatically initiate as a gradual rollout */
|
|
8400
8528
|
'triggers'?: {
|
|
8529
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a template Example: true */
|
|
8401
8530
|
'releaseFromTemplate'?: boolean | null;
|
|
8531
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a release flow Example: true */
|
|
8402
8532
|
'releaseFromReleaseFlow'?: boolean | null;
|
|
8533
|
+
/** Automatically trigger the rollout strategy when a release is initiated from a CD pipeline Example: true */
|
|
8403
8534
|
'releaseFromCD'?: boolean | null;
|
|
8535
|
+
/** Automatically trigger the rollout strategy when a release is initiated from the UI Example: true */
|
|
8404
8536
|
'releaseFromUI'?: boolean | null;
|
|
8537
|
+
/** Automatically trigger the rollout strategy when a release is initiated via the API Example: true */
|
|
8405
8538
|
'releaseFromApi'?: boolean | null;
|
|
8406
8539
|
};
|
|
8540
|
+
/** When enabled, new deployments are blocked while a rollout is in progress Example: true */
|
|
8407
8541
|
'blockDeploymentOnActiveRollout'?: boolean | null;
|
|
8408
8542
|
};
|
|
8543
|
+
/** Strategy-specific configuration details */
|
|
8409
8544
|
'details': {
|
|
8545
|
+
/** Strategy used to split traffic between stable and canary deployments Example: "percentage" */
|
|
8410
8546
|
'canaryStrategy': 'percentage' | 'header';
|
|
8547
|
+
/** Configuration for the selected canary strategy */
|
|
8411
8548
|
'config': {
|
|
8549
|
+
/** Percentage of traffic to route to the canary deployment Example: 20 */
|
|
8412
8550
|
'canaryPercentage': number;
|
|
8551
|
+
/** Percentage of traffic to route to the stable deployment Example: 80 */
|
|
8413
8552
|
'stablePercentage': number;
|
|
8414
8553
|
} | {
|
|
8554
|
+
/** HTTP header name used to identify requests that should be routed to the canary deployment Example: "x-canary" */
|
|
8415
8555
|
'headerName': string;
|
|
8556
|
+
/** HTTP header value that routes matching requests to the canary deployment Example: "true" */
|
|
8416
8557
|
'headerValue': string;
|
|
8417
8558
|
};
|
|
8418
8559
|
};
|
|
@@ -9870,6 +10011,8 @@ type CreateNotificationResult = {
|
|
|
9870
10011
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
9871
10012
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
9872
10013
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10014
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10015
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
9873
10016
|
};
|
|
9874
10017
|
};
|
|
9875
10018
|
type CreateNotificationCall = (opts: CreateNotificationRequest) => Promise<ApiCallResponse<CreateNotificationResult>>;
|
|
@@ -9978,6 +10121,8 @@ type CreateNotificationData = {
|
|
|
9978
10121
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
9979
10122
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
9980
10123
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10124
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10125
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
9981
10126
|
};
|
|
9982
10127
|
};
|
|
9983
10128
|
/** Create a new notification integration. */
|
|
@@ -10083,6 +10228,8 @@ type GetNotificationResult = {
|
|
|
10083
10228
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
10084
10229
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
10085
10230
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10231
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10232
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
10086
10233
|
};
|
|
10087
10234
|
};
|
|
10088
10235
|
type GetNotificationCall = (opts: GetNotificationRequest) => Promise<ApiCallResponse<GetNotificationResult>>;
|
|
@@ -10212,6 +10359,8 @@ type UpdateNotificationData = {
|
|
|
10212
10359
|
'trigger:infrastructure:byoc:cluster:error'?: boolean;
|
|
10213
10360
|
'trigger:infrastructure:byoc:node-pool:error'?: boolean;
|
|
10214
10361
|
'trigger:infrastructure:byoc:scheduling:error'?: boolean;
|
|
10362
|
+
'trigger:infrastructure:byoc:volume:error'?: boolean;
|
|
10363
|
+
'trigger:infrastructure:byoc:volume:attach'?: boolean;
|
|
10215
10364
|
};
|
|
10216
10365
|
};
|
|
10217
10366
|
/** Updates a notification integration */
|
|
@@ -10562,7 +10711,7 @@ declare class DeleteRegistrycredentialsEndpoint extends DeleteApiEndpoint<Delete
|
|
|
10562
10711
|
|
|
10563
10712
|
type ListSshidentitiesResult = {
|
|
10564
10713
|
'identities'?: {
|
|
10565
|
-
/** ID of the
|
|
10714
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10566
10715
|
'id': string;
|
|
10567
10716
|
'name': string;
|
|
10568
10717
|
'description'?: string;
|
|
@@ -10625,7 +10774,7 @@ declare class ListSshidentitiesEndpoint extends GetApiEndpointPaginated<ListSshi
|
|
|
10625
10774
|
}
|
|
10626
10775
|
|
|
10627
10776
|
type AddSshidentitiesResult = {
|
|
10628
|
-
/** ID of the
|
|
10777
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10629
10778
|
'id': string;
|
|
10630
10779
|
'name': string;
|
|
10631
10780
|
'description'?: string;
|
|
@@ -10709,7 +10858,7 @@ declare class AddSshidentitiesEndpoint extends PostApiEndpoint<AddSshidentitiesR
|
|
|
10709
10858
|
}
|
|
10710
10859
|
|
|
10711
10860
|
type GetSshidentitiesResult = {
|
|
10712
|
-
/** ID of the
|
|
10861
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10713
10862
|
'id': string;
|
|
10714
10863
|
'name': string;
|
|
10715
10864
|
'description'?: string;
|
|
@@ -10765,7 +10914,7 @@ declare class GetSshidentitiesEndpoint extends GetApiEndpoint<GetSshidentitiesRe
|
|
|
10765
10914
|
}
|
|
10766
10915
|
|
|
10767
10916
|
type PutSshidentitiesResult = {
|
|
10768
|
-
/** ID of the
|
|
10917
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
10769
10918
|
'id': string;
|
|
10770
10919
|
'name': string;
|
|
10771
10920
|
'description'?: string;
|
|
@@ -10853,7 +11002,40 @@ declare class PutSshidentitiesEndpoint extends PutApiEndpoint<PutSshidentitiesRe
|
|
|
10853
11002
|
body: (payload: PutSshidentitiesRequest) => string;
|
|
10854
11003
|
}
|
|
10855
11004
|
|
|
10856
|
-
type UpdateSshidentitiesResult =
|
|
11005
|
+
type UpdateSshidentitiesResult = {
|
|
11006
|
+
/** ID of the ssh identity Example: "example-identity" */
|
|
11007
|
+
'id': string;
|
|
11008
|
+
'name': string;
|
|
11009
|
+
'description'?: string;
|
|
11010
|
+
/** A list of SSH public keys. Example: [{"key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQ..."}] */
|
|
11011
|
+
'sshPublicKeys'?: {
|
|
11012
|
+
/** The SSH public key. Example: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQ..." */
|
|
11013
|
+
'key': string;
|
|
11014
|
+
}[];
|
|
11015
|
+
/** Configuration of restrictions. */
|
|
11016
|
+
'restrictions'?: {
|
|
11017
|
+
/** Configuration of project restriction settings. */
|
|
11018
|
+
'projects'?: {
|
|
11019
|
+
/** Whether restriction by project should be enabled. */
|
|
11020
|
+
'enabled'?: boolean;
|
|
11021
|
+
/** An array of previously defined projects. */
|
|
11022
|
+
'items'?: string[];
|
|
11023
|
+
};
|
|
11024
|
+
/** Configuration of tag restriction settings. */
|
|
11025
|
+
'tags'?: {
|
|
11026
|
+
/** Whether restriction by tag should be enabled. */
|
|
11027
|
+
'enabled'?: boolean;
|
|
11028
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
11029
|
+
'items'?: string[];
|
|
11030
|
+
/** If all or any of the tags must be present on the target for it to match the condition. Example: "or" */
|
|
11031
|
+
'matchCondition'?: 'and' | 'or';
|
|
11032
|
+
};
|
|
11033
|
+
};
|
|
11034
|
+
/** time of update */
|
|
11035
|
+
'updatedAt'?: string;
|
|
11036
|
+
/** time of creation */
|
|
11037
|
+
'createdAt'?: string;
|
|
11038
|
+
};
|
|
10857
11039
|
type UpdateSshidentitiesCall = (opts: UpdateSshidentitiesRequest) => Promise<ApiCallResponse<UpdateSshidentitiesResult>>;
|
|
10858
11040
|
type UpdateSshidentitiesRequest = {
|
|
10859
11041
|
parameters: UpdateSshidentitiesParameters;
|
|
@@ -12934,7 +13116,7 @@ type CreateAddonResult = {
|
|
|
12934
13116
|
}[];
|
|
12935
13117
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
12936
13118
|
'compressionType'?: 'gz' | 'zstd';
|
|
12937
|
-
/** The time the backup is retained for, in days.
|
|
13119
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
12938
13120
|
'retentionTime': number;
|
|
12939
13121
|
}[];
|
|
12940
13122
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13126,7 +13308,7 @@ type CreateAddonData = {
|
|
|
13126
13308
|
}[];
|
|
13127
13309
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13128
13310
|
'compressionType'?: 'gz' | 'zstd';
|
|
13129
|
-
/** The time the backup is retained for, in days.
|
|
13311
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13130
13312
|
'retentionTime': number;
|
|
13131
13313
|
}[];
|
|
13132
13314
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13271,7 +13453,7 @@ type PutAddonResult = {
|
|
|
13271
13453
|
}[];
|
|
13272
13454
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13273
13455
|
'compressionType'?: 'gz' | 'zstd';
|
|
13274
|
-
/** The time the backup is retained for, in days.
|
|
13456
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13275
13457
|
'retentionTime': number;
|
|
13276
13458
|
}[];
|
|
13277
13459
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13463,7 +13645,7 @@ type PutAddonData = {
|
|
|
13463
13645
|
}[];
|
|
13464
13646
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13465
13647
|
'compressionType'?: 'gz' | 'zstd';
|
|
13466
|
-
/** The time the backup is retained for, in days.
|
|
13648
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13467
13649
|
'retentionTime': number;
|
|
13468
13650
|
}[];
|
|
13469
13651
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13703,7 +13885,7 @@ type PatchAddonResult = {
|
|
|
13703
13885
|
}[];
|
|
13704
13886
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13705
13887
|
'compressionType'?: 'gz' | 'zstd';
|
|
13706
|
-
/** The time the backup is retained for, in days.
|
|
13888
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13707
13889
|
'retentionTime': number;
|
|
13708
13890
|
}[];
|
|
13709
13891
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13868,7 +14050,7 @@ type PatchAddonData = {
|
|
|
13868
14050
|
}[];
|
|
13869
14051
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
13870
14052
|
'compressionType'?: 'gz' | 'zstd';
|
|
13871
|
-
/** The time the backup is retained for, in days.
|
|
14053
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13872
14054
|
'retentionTime': number;
|
|
13873
14055
|
}[];
|
|
13874
14056
|
/** Allow setting custom labels and annotations for workloads. */
|
|
@@ -13953,7 +14135,7 @@ type GetAddonBackupschedulesResult = {
|
|
|
13953
14135
|
/** 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. */
|
|
13954
14136
|
'day'?: number[];
|
|
13955
14137
|
};
|
|
13956
|
-
/** The time
|
|
14138
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
13957
14139
|
'retentionTime': number;
|
|
13958
14140
|
/** The timestamp the backup schedule was created. Example: "2022-07-11T13:08:09.626Z" */
|
|
13959
14141
|
'createdAt': string;
|
|
@@ -14046,7 +14228,7 @@ type CreateAddonBackupscheduleData = {
|
|
|
14046
14228
|
}[];
|
|
14047
14229
|
/** The compression algorithm of the backup. Only applicable for dump backups. Defaults to `gz`. Example: "gz" */
|
|
14048
14230
|
'compressionType'?: 'gz' | 'zstd';
|
|
14049
|
-
/** The time the backup is retained for, in days.
|
|
14231
|
+
/** The time the backup is retained for, in days. Example: 7 */
|
|
14050
14232
|
'retentionTime': number;
|
|
14051
14233
|
};
|
|
14052
14234
|
/** Create a new backup schedule for an addon. */
|
|
@@ -15725,6 +15907,7 @@ type CreateJobResult = {
|
|
|
15725
15907
|
};
|
|
15726
15908
|
'storage'?: {
|
|
15727
15909
|
'useHdbStorage'?: boolean;
|
|
15910
|
+
'usePdSsdStorage'?: boolean;
|
|
15728
15911
|
'ephemeralStorage'?: {
|
|
15729
15912
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15730
15913
|
'storageSize'?: number;
|
|
@@ -15871,6 +16054,7 @@ type CreateJobData = {
|
|
|
15871
16054
|
};
|
|
15872
16055
|
'storage'?: {
|
|
15873
16056
|
'useHdbStorage'?: boolean;
|
|
16057
|
+
'usePdSsdStorage'?: boolean;
|
|
15874
16058
|
'ephemeralStorage'?: {
|
|
15875
16059
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15876
16060
|
'storageSize'?: number;
|
|
@@ -15932,6 +16116,7 @@ type CreateJobData = {
|
|
|
15932
16116
|
};
|
|
15933
16117
|
'storage'?: {
|
|
15934
16118
|
'useHdbStorage'?: boolean;
|
|
16119
|
+
'usePdSsdStorage'?: boolean;
|
|
15935
16120
|
'ephemeralStorage'?: {
|
|
15936
16121
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15937
16122
|
'storageSize'?: number;
|
|
@@ -15985,6 +16170,7 @@ type CreateJobData = {
|
|
|
15985
16170
|
};
|
|
15986
16171
|
'storage'?: {
|
|
15987
16172
|
'useHdbStorage'?: boolean;
|
|
16173
|
+
'usePdSsdStorage'?: boolean;
|
|
15988
16174
|
'ephemeralStorage'?: {
|
|
15989
16175
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
15990
16176
|
'storageSize'?: number;
|
|
@@ -16328,6 +16514,7 @@ type PutJobResult = {
|
|
|
16328
16514
|
};
|
|
16329
16515
|
'storage'?: {
|
|
16330
16516
|
'useHdbStorage'?: boolean;
|
|
16517
|
+
'usePdSsdStorage'?: boolean;
|
|
16331
16518
|
'ephemeralStorage'?: {
|
|
16332
16519
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16333
16520
|
'storageSize'?: number;
|
|
@@ -16474,6 +16661,7 @@ type PutJobData = {
|
|
|
16474
16661
|
};
|
|
16475
16662
|
'storage'?: {
|
|
16476
16663
|
'useHdbStorage'?: boolean;
|
|
16664
|
+
'usePdSsdStorage'?: boolean;
|
|
16477
16665
|
'ephemeralStorage'?: {
|
|
16478
16666
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16479
16667
|
'storageSize'?: number;
|
|
@@ -16535,6 +16723,7 @@ type PutJobData = {
|
|
|
16535
16723
|
};
|
|
16536
16724
|
'storage'?: {
|
|
16537
16725
|
'useHdbStorage'?: boolean;
|
|
16726
|
+
'usePdSsdStorage'?: boolean;
|
|
16538
16727
|
'ephemeralStorage'?: {
|
|
16539
16728
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16540
16729
|
'storageSize'?: number;
|
|
@@ -16588,6 +16777,7 @@ type PutJobData = {
|
|
|
16588
16777
|
};
|
|
16589
16778
|
'storage'?: {
|
|
16590
16779
|
'useHdbStorage'?: boolean;
|
|
16780
|
+
'usePdSsdStorage'?: boolean;
|
|
16591
16781
|
'ephemeralStorage'?: {
|
|
16592
16782
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16593
16783
|
'storageSize'?: number;
|
|
@@ -16927,6 +17117,7 @@ type CreateJobCronResult = {
|
|
|
16927
17117
|
};
|
|
16928
17118
|
'storage'?: {
|
|
16929
17119
|
'useHdbStorage'?: boolean;
|
|
17120
|
+
'usePdSsdStorage'?: boolean;
|
|
16930
17121
|
'ephemeralStorage'?: {
|
|
16931
17122
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
16932
17123
|
'storageSize'?: number;
|
|
@@ -17073,6 +17264,7 @@ type CreateJobCronData = {
|
|
|
17073
17264
|
};
|
|
17074
17265
|
'storage'?: {
|
|
17075
17266
|
'useHdbStorage'?: boolean;
|
|
17267
|
+
'usePdSsdStorage'?: boolean;
|
|
17076
17268
|
'ephemeralStorage'?: {
|
|
17077
17269
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17078
17270
|
'storageSize'?: number;
|
|
@@ -17134,6 +17326,7 @@ type CreateJobCronData = {
|
|
|
17134
17326
|
};
|
|
17135
17327
|
'storage'?: {
|
|
17136
17328
|
'useHdbStorage'?: boolean;
|
|
17329
|
+
'usePdSsdStorage'?: boolean;
|
|
17137
17330
|
'ephemeralStorage'?: {
|
|
17138
17331
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17139
17332
|
'storageSize'?: number;
|
|
@@ -17187,6 +17380,7 @@ type CreateJobCronData = {
|
|
|
17187
17380
|
};
|
|
17188
17381
|
'storage'?: {
|
|
17189
17382
|
'useHdbStorage'?: boolean;
|
|
17383
|
+
'usePdSsdStorage'?: boolean;
|
|
17190
17384
|
'ephemeralStorage'?: {
|
|
17191
17385
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17192
17386
|
'storageSize'?: number;
|
|
@@ -17522,6 +17716,7 @@ type PutJobCronResult = {
|
|
|
17522
17716
|
};
|
|
17523
17717
|
'storage'?: {
|
|
17524
17718
|
'useHdbStorage'?: boolean;
|
|
17719
|
+
'usePdSsdStorage'?: boolean;
|
|
17525
17720
|
'ephemeralStorage'?: {
|
|
17526
17721
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17527
17722
|
'storageSize'?: number;
|
|
@@ -17668,6 +17863,7 @@ type PutJobCronData = {
|
|
|
17668
17863
|
};
|
|
17669
17864
|
'storage'?: {
|
|
17670
17865
|
'useHdbStorage'?: boolean;
|
|
17866
|
+
'usePdSsdStorage'?: boolean;
|
|
17671
17867
|
'ephemeralStorage'?: {
|
|
17672
17868
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17673
17869
|
'storageSize'?: number;
|
|
@@ -17729,6 +17925,7 @@ type PutJobCronData = {
|
|
|
17729
17925
|
};
|
|
17730
17926
|
'storage'?: {
|
|
17731
17927
|
'useHdbStorage'?: boolean;
|
|
17928
|
+
'usePdSsdStorage'?: boolean;
|
|
17732
17929
|
'ephemeralStorage'?: {
|
|
17733
17930
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17734
17931
|
'storageSize'?: number;
|
|
@@ -17782,6 +17979,7 @@ type PutJobCronData = {
|
|
|
17782
17979
|
};
|
|
17783
17980
|
'storage'?: {
|
|
17784
17981
|
'useHdbStorage'?: boolean;
|
|
17982
|
+
'usePdSsdStorage'?: boolean;
|
|
17785
17983
|
'ephemeralStorage'?: {
|
|
17786
17984
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
17787
17985
|
'storageSize'?: number;
|
|
@@ -18117,6 +18315,7 @@ type PatchJobCronResult = {
|
|
|
18117
18315
|
};
|
|
18118
18316
|
'storage'?: {
|
|
18119
18317
|
'useHdbStorage'?: boolean;
|
|
18318
|
+
'usePdSsdStorage'?: boolean;
|
|
18120
18319
|
'ephemeralStorage'?: {
|
|
18121
18320
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18122
18321
|
'storageSize'?: number;
|
|
@@ -18524,6 +18723,7 @@ type CreateJobManualResult = {
|
|
|
18524
18723
|
};
|
|
18525
18724
|
'storage'?: {
|
|
18526
18725
|
'useHdbStorage'?: boolean;
|
|
18726
|
+
'usePdSsdStorage'?: boolean;
|
|
18527
18727
|
'ephemeralStorage'?: {
|
|
18528
18728
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18529
18729
|
'storageSize'?: number;
|
|
@@ -18670,6 +18870,7 @@ type CreateJobManualData = {
|
|
|
18670
18870
|
};
|
|
18671
18871
|
'storage'?: {
|
|
18672
18872
|
'useHdbStorage'?: boolean;
|
|
18873
|
+
'usePdSsdStorage'?: boolean;
|
|
18673
18874
|
'ephemeralStorage'?: {
|
|
18674
18875
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18675
18876
|
'storageSize'?: number;
|
|
@@ -18731,6 +18932,7 @@ type CreateJobManualData = {
|
|
|
18731
18932
|
};
|
|
18732
18933
|
'storage'?: {
|
|
18733
18934
|
'useHdbStorage'?: boolean;
|
|
18935
|
+
'usePdSsdStorage'?: boolean;
|
|
18734
18936
|
'ephemeralStorage'?: {
|
|
18735
18937
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18736
18938
|
'storageSize'?: number;
|
|
@@ -18784,6 +18986,7 @@ type CreateJobManualData = {
|
|
|
18784
18986
|
};
|
|
18785
18987
|
'storage'?: {
|
|
18786
18988
|
'useHdbStorage'?: boolean;
|
|
18989
|
+
'usePdSsdStorage'?: boolean;
|
|
18787
18990
|
'ephemeralStorage'?: {
|
|
18788
18991
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
18789
18992
|
'storageSize'?: number;
|
|
@@ -19107,6 +19310,7 @@ type PutJobManualResult = {
|
|
|
19107
19310
|
};
|
|
19108
19311
|
'storage'?: {
|
|
19109
19312
|
'useHdbStorage'?: boolean;
|
|
19313
|
+
'usePdSsdStorage'?: boolean;
|
|
19110
19314
|
'ephemeralStorage'?: {
|
|
19111
19315
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19112
19316
|
'storageSize'?: number;
|
|
@@ -19253,6 +19457,7 @@ type PutJobManualData = {
|
|
|
19253
19457
|
};
|
|
19254
19458
|
'storage'?: {
|
|
19255
19459
|
'useHdbStorage'?: boolean;
|
|
19460
|
+
'usePdSsdStorage'?: boolean;
|
|
19256
19461
|
'ephemeralStorage'?: {
|
|
19257
19462
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19258
19463
|
'storageSize'?: number;
|
|
@@ -19314,6 +19519,7 @@ type PutJobManualData = {
|
|
|
19314
19519
|
};
|
|
19315
19520
|
'storage'?: {
|
|
19316
19521
|
'useHdbStorage'?: boolean;
|
|
19522
|
+
'usePdSsdStorage'?: boolean;
|
|
19317
19523
|
'ephemeralStorage'?: {
|
|
19318
19524
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19319
19525
|
'storageSize'?: number;
|
|
@@ -19367,6 +19573,7 @@ type PutJobManualData = {
|
|
|
19367
19573
|
};
|
|
19368
19574
|
'storage'?: {
|
|
19369
19575
|
'useHdbStorage'?: boolean;
|
|
19576
|
+
'usePdSsdStorage'?: boolean;
|
|
19370
19577
|
'ephemeralStorage'?: {
|
|
19371
19578
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19372
19579
|
'storageSize'?: number;
|
|
@@ -19690,6 +19897,7 @@ type PatchJobManualResult = {
|
|
|
19690
19897
|
};
|
|
19691
19898
|
'storage'?: {
|
|
19692
19899
|
'useHdbStorage'?: boolean;
|
|
19900
|
+
'usePdSsdStorage'?: boolean;
|
|
19693
19901
|
'ephemeralStorage'?: {
|
|
19694
19902
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
19695
19903
|
'storageSize'?: number;
|
|
@@ -20282,6 +20490,7 @@ type PatchJobResult = {
|
|
|
20282
20490
|
};
|
|
20283
20491
|
'storage'?: {
|
|
20284
20492
|
'useHdbStorage'?: boolean;
|
|
20493
|
+
'usePdSsdStorage'?: boolean;
|
|
20285
20494
|
'ephemeralStorage'?: {
|
|
20286
20495
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
20287
20496
|
'storageSize'?: number;
|
|
@@ -21780,6 +21989,7 @@ type StartJobRunData = {
|
|
|
21780
21989
|
};
|
|
21781
21990
|
'storage'?: {
|
|
21782
21991
|
'useHdbStorage'?: boolean;
|
|
21992
|
+
'usePdSsdStorage'?: boolean;
|
|
21783
21993
|
'ephemeralStorage'?: {
|
|
21784
21994
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
21785
21995
|
'storageSize'?: number;
|
|
@@ -21821,6 +22031,7 @@ type StartJobRunData = {
|
|
|
21821
22031
|
};
|
|
21822
22032
|
'storage'?: {
|
|
21823
22033
|
'useHdbStorage'?: boolean;
|
|
22034
|
+
'usePdSsdStorage'?: boolean;
|
|
21824
22035
|
'ephemeralStorage'?: {
|
|
21825
22036
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
21826
22037
|
'storageSize'?: number;
|
|
@@ -22107,6 +22318,7 @@ type ScaleJobData = {
|
|
|
22107
22318
|
'deploymentPlan'?: string;
|
|
22108
22319
|
'storage'?: {
|
|
22109
22320
|
'useHdbStorage'?: boolean;
|
|
22321
|
+
'usePdSsdStorage'?: boolean;
|
|
22110
22322
|
'ephemeralStorage'?: {
|
|
22111
22323
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
22112
22324
|
'storageSize'?: number;
|
|
@@ -22219,6 +22431,7 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22219
22431
|
'configuration'?: {
|
|
22220
22432
|
'gpuType'?: string;
|
|
22221
22433
|
'gpuCount'?: number;
|
|
22434
|
+
'timesliced'?: boolean;
|
|
22222
22435
|
};
|
|
22223
22436
|
};
|
|
22224
22437
|
'storage'?: {
|
|
@@ -22254,7 +22467,7 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22254
22467
|
'enableAsyncScheduling'?: boolean;
|
|
22255
22468
|
'gpuMemoryUtilization'?: number;
|
|
22256
22469
|
'trustRemoteCode'?: boolean;
|
|
22257
|
-
'dataType'?: 'auto' | '
|
|
22470
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22258
22471
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22259
22472
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22260
22473
|
};
|
|
@@ -22294,6 +22507,13 @@ type ListLlmmodeldeploymentsResult = {
|
|
|
22294
22507
|
}[];
|
|
22295
22508
|
/** The current status of the AI model. */
|
|
22296
22509
|
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
22510
|
+
/** Details of the latest deployment configuration. */
|
|
22511
|
+
'deploymentConfiguration'?: {
|
|
22512
|
+
/** The deployment configuration identifier. */
|
|
22513
|
+
'id': string;
|
|
22514
|
+
/** time of creation */
|
|
22515
|
+
'createdAt'?: string;
|
|
22516
|
+
};
|
|
22297
22517
|
/** time of creation */
|
|
22298
22518
|
'createdAt'?: string;
|
|
22299
22519
|
/** time of update */
|
|
@@ -22383,6 +22603,7 @@ type CreateLlmmodeldeploymentData = {
|
|
|
22383
22603
|
'configuration'?: {
|
|
22384
22604
|
'gpuType'?: string;
|
|
22385
22605
|
'gpuCount'?: number;
|
|
22606
|
+
'timesliced'?: boolean;
|
|
22386
22607
|
};
|
|
22387
22608
|
};
|
|
22388
22609
|
'storage'?: {
|
|
@@ -22418,7 +22639,7 @@ type CreateLlmmodeldeploymentData = {
|
|
|
22418
22639
|
'enableAsyncScheduling'?: boolean;
|
|
22419
22640
|
'gpuMemoryUtilization'?: number;
|
|
22420
22641
|
'trustRemoteCode'?: boolean;
|
|
22421
|
-
'dataType'?: 'auto' | '
|
|
22642
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22422
22643
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22423
22644
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22424
22645
|
};
|
|
@@ -22456,6 +22677,7 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22456
22677
|
'configuration'?: {
|
|
22457
22678
|
'gpuType'?: string;
|
|
22458
22679
|
'gpuCount'?: number;
|
|
22680
|
+
'timesliced'?: boolean;
|
|
22459
22681
|
};
|
|
22460
22682
|
};
|
|
22461
22683
|
'storage'?: {
|
|
@@ -22491,7 +22713,7 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22491
22713
|
'enableAsyncScheduling'?: boolean;
|
|
22492
22714
|
'gpuMemoryUtilization'?: number;
|
|
22493
22715
|
'trustRemoteCode'?: boolean;
|
|
22494
|
-
'dataType'?: 'auto' | '
|
|
22716
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22495
22717
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22496
22718
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22497
22719
|
};
|
|
@@ -22531,6 +22753,13 @@ type GetLlmmodeldeploymentResult = {
|
|
|
22531
22753
|
}[];
|
|
22532
22754
|
/** The current status of the AI model. */
|
|
22533
22755
|
'status': 'pending' | 'provisioning' | 'starting' | 'crashed' | 'paused' | 'running' | 'deleting';
|
|
22756
|
+
/** Details of the latest deployment configuration. */
|
|
22757
|
+
'deploymentConfiguration'?: {
|
|
22758
|
+
/** The deployment configuration identifier. */
|
|
22759
|
+
'id': string;
|
|
22760
|
+
/** time of creation */
|
|
22761
|
+
'createdAt'?: string;
|
|
22762
|
+
};
|
|
22534
22763
|
/** time of creation */
|
|
22535
22764
|
'createdAt'?: string;
|
|
22536
22765
|
/** time of update */
|
|
@@ -22613,6 +22842,7 @@ type UpdateLlmmodeldeploymentData = {
|
|
|
22613
22842
|
'configuration'?: {
|
|
22614
22843
|
'gpuType'?: string;
|
|
22615
22844
|
'gpuCount'?: number;
|
|
22845
|
+
'timesliced'?: boolean;
|
|
22616
22846
|
};
|
|
22617
22847
|
};
|
|
22618
22848
|
'storage'?: {
|
|
@@ -22648,7 +22878,7 @@ type UpdateLlmmodeldeploymentData = {
|
|
|
22648
22878
|
'enableAsyncScheduling'?: boolean;
|
|
22649
22879
|
'gpuMemoryUtilization'?: number;
|
|
22650
22880
|
'trustRemoteCode'?: boolean;
|
|
22651
|
-
'dataType'?: 'auto' | '
|
|
22881
|
+
'dataType'?: 'auto' | 'float16' | 'bfloat16';
|
|
22652
22882
|
'kvCacheDataType'?: 'fp8' | 'fp8_e5m2' | 'fp8_e4m3';
|
|
22653
22883
|
'quantization'?: 'fp8' | 'awq' | 'gptq' | 'int4';
|
|
22654
22884
|
};
|
|
@@ -22910,6 +23140,8 @@ type UpdatePreviewtemplateData = {
|
|
|
22910
23140
|
'nameFormat'?: string;
|
|
22911
23141
|
/** If true, the preview name will default to the front of the resource name. */
|
|
22912
23142
|
'prefixName'?: boolean;
|
|
23143
|
+
/** 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. */
|
|
23144
|
+
'useBranchContents'?: boolean;
|
|
22913
23145
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
22914
23146
|
'schedule'?: {
|
|
22915
23147
|
'mon'?: {
|
|
@@ -23072,6 +23304,8 @@ type DeletePipelinetemplatepreviewResult = any;
|
|
|
23072
23304
|
type DeletePipelinetemplatepreviewCall = (opts: DeletePipelinetemplatepreviewRequest) => Promise<ApiCallResponse<DeletePipelinetemplatepreviewResult>>;
|
|
23073
23305
|
type DeletePipelinetemplatepreviewRequest = {
|
|
23074
23306
|
parameters: DeletePipelinetemplatepreviewParameters;
|
|
23307
|
+
options?: DeletePipelinetemplatepreviewOptions;
|
|
23308
|
+
data: DeletePipelinetemplatepreviewData;
|
|
23075
23309
|
};
|
|
23076
23310
|
type DeletePipelinetemplatepreviewParameters = {
|
|
23077
23311
|
/** ID of the project */
|
|
@@ -23090,13 +23324,21 @@ type DeletePipelinetemplatepreviewParameters = {
|
|
|
23090
23324
|
/** ID of the preview environment */
|
|
23091
23325
|
'previewId': string;
|
|
23092
23326
|
};
|
|
23327
|
+
type DeletePipelinetemplatepreviewOptions = {
|
|
23328
|
+
/** If `true`, the teardown spec will not be run when deleting the preview environment. */
|
|
23329
|
+
'skipTeardown'?: boolean;
|
|
23330
|
+
};
|
|
23331
|
+
type DeletePipelinetemplatepreviewData = {
|
|
23332
|
+
/** Argument overrides to pass to the teardown spec when deleting the preview environment. */
|
|
23333
|
+
'teardownArgumentOverrides'?: any;
|
|
23334
|
+
};
|
|
23093
23335
|
/** Delete a preview environment generated by a preview template. */
|
|
23094
23336
|
declare class DeletePipelinetemplatepreviewEndpoint extends DeleteApiEndpoint<DeletePipelinetemplatepreviewRequest, DeletePipelinetemplatepreviewResult> {
|
|
23095
23337
|
description: string;
|
|
23096
23338
|
withAuth: boolean;
|
|
23097
23339
|
requiredPermissions: string;
|
|
23098
23340
|
endpointUrl: (opts: DeletePipelinetemplatepreviewRequest) => string;
|
|
23099
|
-
body: () =>
|
|
23341
|
+
body: (payload: DeletePipelinetemplatepreviewRequest) => string;
|
|
23100
23342
|
}
|
|
23101
23343
|
|
|
23102
23344
|
type RunPreviewtemplateResult = {
|
|
@@ -23110,6 +23352,12 @@ type RunPreviewtemplateResult = {
|
|
|
23110
23352
|
'arguments'?: any;
|
|
23111
23353
|
'$schema'?: string;
|
|
23112
23354
|
'spec': any;
|
|
23355
|
+
/** Optional spec to run when the template is deleted. */
|
|
23356
|
+
'teardownSpec'?: {
|
|
23357
|
+
'spec': any;
|
|
23358
|
+
/** 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` */
|
|
23359
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23360
|
+
} | null;
|
|
23113
23361
|
/** Identifier for the template Example: "example-template" */
|
|
23114
23362
|
'id': string;
|
|
23115
23363
|
'gitops'?: {
|
|
@@ -23187,6 +23435,8 @@ type ListPreviewtemplaterunsResult = {
|
|
|
23187
23435
|
'nameFormat'?: string;
|
|
23188
23436
|
/** If true, the preview name will default to the front of the resource name. */
|
|
23189
23437
|
'prefixName'?: boolean;
|
|
23438
|
+
/** 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. */
|
|
23439
|
+
'useBranchContents'?: boolean;
|
|
23190
23440
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
23191
23441
|
'schedule'?: {
|
|
23192
23442
|
'mon'?: {
|
|
@@ -23290,6 +23540,8 @@ type GetPreviewtemplaterunResult = {
|
|
|
23290
23540
|
'nameFormat'?: string;
|
|
23291
23541
|
/** If true, the preview name will default to the front of the resource name. */
|
|
23292
23542
|
'prefixName'?: boolean;
|
|
23543
|
+
/** 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. */
|
|
23544
|
+
'useBranchContents'?: boolean;
|
|
23293
23545
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
23294
23546
|
'schedule'?: {
|
|
23295
23547
|
'mon'?: {
|
|
@@ -23473,6 +23725,12 @@ type GetReleaseflowResult = {
|
|
|
23473
23725
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
23474
23726
|
'richInputs'?: any[];
|
|
23475
23727
|
'spec': any;
|
|
23728
|
+
/** Optional spec to run when the template is deleted. */
|
|
23729
|
+
'teardownSpec'?: {
|
|
23730
|
+
'spec': any;
|
|
23731
|
+
/** 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` */
|
|
23732
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23733
|
+
} | null;
|
|
23476
23734
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
23477
23735
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
23478
23736
|
/** The stage of the pipeline this release flow belongs to. Example: "Development" */
|
|
@@ -23591,6 +23849,12 @@ type UpdateReleaseflowData = {
|
|
|
23591
23849
|
'$schema'?: string;
|
|
23592
23850
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
23593
23851
|
'richInputs'?: any[];
|
|
23852
|
+
/** Optional spec to run when the template is deleted. */
|
|
23853
|
+
'teardownSpec'?: {
|
|
23854
|
+
'spec': any;
|
|
23855
|
+
/** 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` */
|
|
23856
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
23857
|
+
} | null;
|
|
23594
23858
|
'apiVersion': string;
|
|
23595
23859
|
'project'?: any;
|
|
23596
23860
|
'spec': any;
|
|
@@ -24036,6 +24300,8 @@ type CreatePreviewblueprintData = {
|
|
|
24036
24300
|
'nameFormat'?: string;
|
|
24037
24301
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24038
24302
|
'prefixName'?: boolean;
|
|
24303
|
+
/** 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. */
|
|
24304
|
+
'useBranchContents'?: boolean;
|
|
24039
24305
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24040
24306
|
'schedule'?: {
|
|
24041
24307
|
'mon'?: {
|
|
@@ -24079,6 +24345,13 @@ type CreatePreviewblueprintData = {
|
|
|
24079
24345
|
};
|
|
24080
24346
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24081
24347
|
'argumentOverrides'?: any;
|
|
24348
|
+
/** Optional spec to run when the template is deleted. */
|
|
24349
|
+
'teardownSpec'?: {
|
|
24350
|
+
/** The root node of the teardown workflow. */
|
|
24351
|
+
'spec': any;
|
|
24352
|
+
/** 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` */
|
|
24353
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24354
|
+
} | null;
|
|
24082
24355
|
'triggers'?: any[];
|
|
24083
24356
|
'apiVersion': string;
|
|
24084
24357
|
'project'?: any;
|
|
@@ -24126,6 +24399,8 @@ type GetPreviewblueprintResult = {
|
|
|
24126
24399
|
'nameFormat'?: string;
|
|
24127
24400
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24128
24401
|
'prefixName'?: boolean;
|
|
24402
|
+
/** 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. */
|
|
24403
|
+
'useBranchContents'?: boolean;
|
|
24129
24404
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24130
24405
|
'schedule'?: {
|
|
24131
24406
|
'mon'?: {
|
|
@@ -24169,6 +24444,13 @@ type GetPreviewblueprintResult = {
|
|
|
24169
24444
|
};
|
|
24170
24445
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24171
24446
|
'argumentOverrides'?: any;
|
|
24447
|
+
/** Optional spec to run when the template is deleted. */
|
|
24448
|
+
'teardownSpec'?: {
|
|
24449
|
+
/** The root node of the teardown workflow. */
|
|
24450
|
+
'spec': any;
|
|
24451
|
+
/** 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` */
|
|
24452
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24453
|
+
} | null;
|
|
24172
24454
|
'triggers'?: any[];
|
|
24173
24455
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
24174
24456
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
@@ -24256,6 +24538,8 @@ type UpdatePreviewblueprintData = {
|
|
|
24256
24538
|
'nameFormat'?: string;
|
|
24257
24539
|
/** If true, the preview name will default to the front of the resource name. */
|
|
24258
24540
|
'prefixName'?: boolean;
|
|
24541
|
+
/** 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. */
|
|
24542
|
+
'useBranchContents'?: boolean;
|
|
24259
24543
|
/** Options regarding which hours preview environments should be active. Only available for BYOC projects. */
|
|
24260
24544
|
'schedule'?: {
|
|
24261
24545
|
'mon'?: {
|
|
@@ -24299,6 +24583,13 @@ type UpdatePreviewblueprintData = {
|
|
|
24299
24583
|
};
|
|
24300
24584
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
24301
24585
|
'argumentOverrides'?: any;
|
|
24586
|
+
/** Optional spec to run when the template is deleted. */
|
|
24587
|
+
'teardownSpec'?: {
|
|
24588
|
+
/** The root node of the teardown workflow. */
|
|
24589
|
+
'spec': any;
|
|
24590
|
+
/** 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` */
|
|
24591
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
24592
|
+
} | null;
|
|
24302
24593
|
'triggers'?: any[];
|
|
24303
24594
|
'apiVersion': string;
|
|
24304
24595
|
'project'?: any;
|
|
@@ -24398,6 +24689,8 @@ type DeleteBlueprinttemplatepreviewResult = any;
|
|
|
24398
24689
|
type DeleteBlueprinttemplatepreviewCall = (opts: DeleteBlueprinttemplatepreviewRequest) => Promise<ApiCallResponse<DeleteBlueprinttemplatepreviewResult>>;
|
|
24399
24690
|
type DeleteBlueprinttemplatepreviewRequest = {
|
|
24400
24691
|
parameters: DeleteBlueprinttemplatepreviewParameters;
|
|
24692
|
+
options?: DeleteBlueprinttemplatepreviewOptions;
|
|
24693
|
+
data: DeleteBlueprinttemplatepreviewData;
|
|
24401
24694
|
};
|
|
24402
24695
|
type DeleteBlueprinttemplatepreviewParameters = {
|
|
24403
24696
|
/** ID of the project */
|
|
@@ -24416,13 +24709,21 @@ type DeleteBlueprinttemplatepreviewParameters = {
|
|
|
24416
24709
|
/** ID of the preview */
|
|
24417
24710
|
'previewId': string;
|
|
24418
24711
|
};
|
|
24712
|
+
type DeleteBlueprinttemplatepreviewOptions = {
|
|
24713
|
+
/** If `true`, the teardown spec will not be run when deleting the preview environment. */
|
|
24714
|
+
'skipTeardown'?: boolean;
|
|
24715
|
+
};
|
|
24716
|
+
type DeleteBlueprinttemplatepreviewData = {
|
|
24717
|
+
/** Argument overrides to pass to the teardown spec when deleting the preview environment. */
|
|
24718
|
+
'teardownArgumentOverrides'?: any;
|
|
24719
|
+
};
|
|
24419
24720
|
/** Delete a preview environment generated by a preview blueprint. */
|
|
24420
24721
|
declare class DeleteBlueprinttemplatepreviewEndpoint extends DeleteApiEndpoint<DeleteBlueprinttemplatepreviewRequest, DeleteBlueprinttemplatepreviewResult> {
|
|
24421
24722
|
description: string;
|
|
24422
24723
|
withAuth: boolean;
|
|
24423
24724
|
requiredPermissions: string;
|
|
24424
24725
|
endpointUrl: (opts: DeleteBlueprinttemplatepreviewRequest) => string;
|
|
24425
|
-
body: () =>
|
|
24726
|
+
body: (payload: DeleteBlueprinttemplatepreviewRequest) => string;
|
|
24426
24727
|
}
|
|
24427
24728
|
|
|
24428
24729
|
type PauseBlueprinttemplatepreviewResult = any;
|
|
@@ -26905,7 +27206,6 @@ type CreateServiceCombinedResult = {
|
|
|
26905
27206
|
'mode': 'path' | 'header';
|
|
26906
27207
|
};
|
|
26907
27208
|
};
|
|
26908
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
26909
27209
|
/** Describes all autoscaling configurations */
|
|
26910
27210
|
'autoscaling'?: {
|
|
26911
27211
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -26985,6 +27285,7 @@ type CreateServiceCombinedResult = {
|
|
|
26985
27285
|
};
|
|
26986
27286
|
'storage'?: {
|
|
26987
27287
|
'useHdbStorage'?: boolean;
|
|
27288
|
+
'usePdSsdStorage'?: boolean;
|
|
26988
27289
|
'ephemeralStorage'?: {
|
|
26989
27290
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
26990
27291
|
'storageSize'?: number;
|
|
@@ -27019,12 +27320,13 @@ type CreateServiceCombinedResult = {
|
|
|
27019
27320
|
};
|
|
27020
27321
|
/** 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. */
|
|
27021
27322
|
'gracePeriodSeconds'?: number;
|
|
27323
|
+
/** The id of the strategy to be attached to service. */
|
|
27324
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
27022
27325
|
/** Controls related to SSH access within the resource. */
|
|
27023
27326
|
'ssh'?: {
|
|
27024
27327
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
27025
27328
|
'enabled': boolean;
|
|
27026
27329
|
};
|
|
27027
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27028
27330
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27029
27331
|
'metadata'?: {
|
|
27030
27332
|
/** Specify custom labels for the workload. */
|
|
@@ -27140,6 +27442,7 @@ type CreateServiceCombinedData = {
|
|
|
27140
27442
|
};
|
|
27141
27443
|
'storage'?: {
|
|
27142
27444
|
'useHdbStorage'?: boolean;
|
|
27445
|
+
'usePdSsdStorage'?: boolean;
|
|
27143
27446
|
'ephemeralStorage'?: {
|
|
27144
27447
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
27145
27448
|
'storageSize'?: number;
|
|
@@ -27174,12 +27477,13 @@ type CreateServiceCombinedData = {
|
|
|
27174
27477
|
};
|
|
27175
27478
|
/** 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. */
|
|
27176
27479
|
'gracePeriodSeconds'?: number;
|
|
27480
|
+
/** The id of the strategy to be attached to service. */
|
|
27481
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
27177
27482
|
/** Controls related to SSH access within the resource. */
|
|
27178
27483
|
'ssh'?: {
|
|
27179
27484
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
27180
27485
|
'enabled': boolean;
|
|
27181
27486
|
};
|
|
27182
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27183
27487
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27184
27488
|
'metadata'?: {
|
|
27185
27489
|
/** Specify custom labels for the workload. */
|
|
@@ -27486,7 +27790,6 @@ type CreateServiceCombinedData = {
|
|
|
27486
27790
|
'mode': 'path' | 'header';
|
|
27487
27791
|
};
|
|
27488
27792
|
};
|
|
27489
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27490
27793
|
/** Describes all autoscaling configurations */
|
|
27491
27794
|
'autoscaling'?: {
|
|
27492
27795
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -27870,7 +28173,6 @@ type PutServiceCombinedResult = {
|
|
|
27870
28173
|
'mode': 'path' | 'header';
|
|
27871
28174
|
};
|
|
27872
28175
|
};
|
|
27873
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27874
28176
|
/** Describes all autoscaling configurations */
|
|
27875
28177
|
'autoscaling'?: {
|
|
27876
28178
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -27950,6 +28252,7 @@ type PutServiceCombinedResult = {
|
|
|
27950
28252
|
};
|
|
27951
28253
|
'storage'?: {
|
|
27952
28254
|
'useHdbStorage'?: boolean;
|
|
28255
|
+
'usePdSsdStorage'?: boolean;
|
|
27953
28256
|
'ephemeralStorage'?: {
|
|
27954
28257
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
27955
28258
|
'storageSize'?: number;
|
|
@@ -27984,12 +28287,13 @@ type PutServiceCombinedResult = {
|
|
|
27984
28287
|
};
|
|
27985
28288
|
/** 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. */
|
|
27986
28289
|
'gracePeriodSeconds'?: number;
|
|
28290
|
+
/** The id of the strategy to be attached to service. */
|
|
28291
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
27987
28292
|
/** Controls related to SSH access within the resource. */
|
|
27988
28293
|
'ssh'?: {
|
|
27989
28294
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
27990
28295
|
'enabled': boolean;
|
|
27991
28296
|
};
|
|
27992
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
27993
28297
|
/** Allow setting custom labels and annotations for workloads. */
|
|
27994
28298
|
'metadata'?: {
|
|
27995
28299
|
/** Specify custom labels for the workload. */
|
|
@@ -28105,6 +28409,7 @@ type PutServiceCombinedData = {
|
|
|
28105
28409
|
};
|
|
28106
28410
|
'storage'?: {
|
|
28107
28411
|
'useHdbStorage'?: boolean;
|
|
28412
|
+
'usePdSsdStorage'?: boolean;
|
|
28108
28413
|
'ephemeralStorage'?: {
|
|
28109
28414
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
28110
28415
|
'storageSize'?: number;
|
|
@@ -28139,12 +28444,13 @@ type PutServiceCombinedData = {
|
|
|
28139
28444
|
};
|
|
28140
28445
|
/** 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. */
|
|
28141
28446
|
'gracePeriodSeconds'?: number;
|
|
28447
|
+
/** The id of the strategy to be attached to service. */
|
|
28448
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
28142
28449
|
/** Controls related to SSH access within the resource. */
|
|
28143
28450
|
'ssh'?: {
|
|
28144
28451
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
28145
28452
|
'enabled': boolean;
|
|
28146
28453
|
};
|
|
28147
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28148
28454
|
/** Allow setting custom labels and annotations for workloads. */
|
|
28149
28455
|
'metadata'?: {
|
|
28150
28456
|
/** Specify custom labels for the workload. */
|
|
@@ -28451,7 +28757,6 @@ type PutServiceCombinedData = {
|
|
|
28451
28757
|
'mode': 'path' | 'header';
|
|
28452
28758
|
};
|
|
28453
28759
|
};
|
|
28454
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28455
28760
|
/** Describes all autoscaling configurations */
|
|
28456
28761
|
'autoscaling'?: {
|
|
28457
28762
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -28835,7 +29140,6 @@ type PatchServiceCombinedResult = {
|
|
|
28835
29140
|
'mode': 'path' | 'header';
|
|
28836
29141
|
};
|
|
28837
29142
|
};
|
|
28838
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28839
29143
|
/** Describes all autoscaling configurations */
|
|
28840
29144
|
'autoscaling'?: {
|
|
28841
29145
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -28915,6 +29219,7 @@ type PatchServiceCombinedResult = {
|
|
|
28915
29219
|
};
|
|
28916
29220
|
'storage'?: {
|
|
28917
29221
|
'useHdbStorage'?: boolean;
|
|
29222
|
+
'usePdSsdStorage'?: boolean;
|
|
28918
29223
|
'ephemeralStorage'?: {
|
|
28919
29224
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
28920
29225
|
'storageSize'?: number;
|
|
@@ -28949,12 +29254,13 @@ type PatchServiceCombinedResult = {
|
|
|
28949
29254
|
};
|
|
28950
29255
|
/** 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. */
|
|
28951
29256
|
'gracePeriodSeconds'?: number;
|
|
29257
|
+
/** The id of the strategy to be attached to service. */
|
|
29258
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
28952
29259
|
/** Controls related to SSH access within the resource. */
|
|
28953
29260
|
'ssh'?: {
|
|
28954
29261
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
28955
29262
|
'enabled': boolean;
|
|
28956
29263
|
};
|
|
28957
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
28958
29264
|
/** Allow setting custom labels and annotations for workloads. */
|
|
28959
29265
|
'metadata'?: {
|
|
28960
29266
|
/** Specify custom labels for the workload. */
|
|
@@ -29098,11 +29404,12 @@ type PatchServiceCombinedData = {
|
|
|
29098
29404
|
};
|
|
29099
29405
|
/** 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. */
|
|
29100
29406
|
'gracePeriodSeconds'?: number;
|
|
29407
|
+
/** The id of the strategy to be attached to service. */
|
|
29408
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29101
29409
|
'ssh'?: {
|
|
29102
29410
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29103
29411
|
'enabled'?: boolean;
|
|
29104
29412
|
};
|
|
29105
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29106
29413
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29107
29414
|
'metadata'?: {
|
|
29108
29415
|
/** Specify custom labels for the workload. */
|
|
@@ -29401,7 +29708,6 @@ type PatchServiceCombinedData = {
|
|
|
29401
29708
|
'mode': 'path' | 'header';
|
|
29402
29709
|
};
|
|
29403
29710
|
};
|
|
29404
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29405
29711
|
'autoscaling'?: {
|
|
29406
29712
|
'horizontal'?: {
|
|
29407
29713
|
/** Whether horizontal autoscaling should be enabled Example: true */
|
|
@@ -29677,7 +29983,6 @@ type CreateServiceDeploymentResult = {
|
|
|
29677
29983
|
'mode': 'path' | 'header';
|
|
29678
29984
|
};
|
|
29679
29985
|
};
|
|
29680
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29681
29986
|
/** Describes all autoscaling configurations */
|
|
29682
29987
|
'autoscaling'?: {
|
|
29683
29988
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -29757,6 +30062,7 @@ type CreateServiceDeploymentResult = {
|
|
|
29757
30062
|
};
|
|
29758
30063
|
'storage'?: {
|
|
29759
30064
|
'useHdbStorage'?: boolean;
|
|
30065
|
+
'usePdSsdStorage'?: boolean;
|
|
29760
30066
|
'ephemeralStorage'?: {
|
|
29761
30067
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
29762
30068
|
'storageSize'?: number;
|
|
@@ -29791,12 +30097,13 @@ type CreateServiceDeploymentResult = {
|
|
|
29791
30097
|
};
|
|
29792
30098
|
/** 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. */
|
|
29793
30099
|
'gracePeriodSeconds'?: number;
|
|
30100
|
+
/** The id of the strategy to be attached to service. */
|
|
30101
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29794
30102
|
/** Controls related to SSH access within the resource. */
|
|
29795
30103
|
'ssh'?: {
|
|
29796
30104
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29797
30105
|
'enabled': boolean;
|
|
29798
30106
|
};
|
|
29799
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29800
30107
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29801
30108
|
'metadata'?: {
|
|
29802
30109
|
/** Specify custom labels for the workload. */
|
|
@@ -29920,6 +30227,7 @@ type CreateServiceDeploymentData = {
|
|
|
29920
30227
|
};
|
|
29921
30228
|
'storage'?: {
|
|
29922
30229
|
'useHdbStorage'?: boolean;
|
|
30230
|
+
'usePdSsdStorage'?: boolean;
|
|
29923
30231
|
'ephemeralStorage'?: {
|
|
29924
30232
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
29925
30233
|
'storageSize'?: number;
|
|
@@ -29954,12 +30262,13 @@ type CreateServiceDeploymentData = {
|
|
|
29954
30262
|
};
|
|
29955
30263
|
/** 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. */
|
|
29956
30264
|
'gracePeriodSeconds'?: number;
|
|
30265
|
+
/** The id of the strategy to be attached to service. */
|
|
30266
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
29957
30267
|
/** Controls related to SSH access within the resource. */
|
|
29958
30268
|
'ssh'?: {
|
|
29959
30269
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
29960
30270
|
'enabled': boolean;
|
|
29961
30271
|
};
|
|
29962
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
29963
30272
|
/** Allow setting custom labels and annotations for workloads. */
|
|
29964
30273
|
'metadata'?: {
|
|
29965
30274
|
/** Specify custom labels for the workload. */
|
|
@@ -30004,6 +30313,7 @@ type CreateServiceDeploymentData = {
|
|
|
30004
30313
|
};
|
|
30005
30314
|
'storage'?: {
|
|
30006
30315
|
'useHdbStorage'?: boolean;
|
|
30316
|
+
'usePdSsdStorage'?: boolean;
|
|
30007
30317
|
'ephemeralStorage'?: {
|
|
30008
30318
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30009
30319
|
'storageSize'?: number;
|
|
@@ -30038,12 +30348,13 @@ type CreateServiceDeploymentData = {
|
|
|
30038
30348
|
};
|
|
30039
30349
|
/** 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. */
|
|
30040
30350
|
'gracePeriodSeconds'?: number;
|
|
30351
|
+
/** The id of the strategy to be attached to service. */
|
|
30352
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30041
30353
|
/** Controls related to SSH access within the resource. */
|
|
30042
30354
|
'ssh'?: {
|
|
30043
30355
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30044
30356
|
'enabled': boolean;
|
|
30045
30357
|
};
|
|
30046
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30047
30358
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30048
30359
|
'metadata'?: {
|
|
30049
30360
|
/** Specify custom labels for the workload. */
|
|
@@ -30084,6 +30395,7 @@ type CreateServiceDeploymentData = {
|
|
|
30084
30395
|
};
|
|
30085
30396
|
'storage'?: {
|
|
30086
30397
|
'useHdbStorage'?: boolean;
|
|
30398
|
+
'usePdSsdStorage'?: boolean;
|
|
30087
30399
|
'ephemeralStorage'?: {
|
|
30088
30400
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30089
30401
|
'storageSize'?: number;
|
|
@@ -30118,12 +30430,13 @@ type CreateServiceDeploymentData = {
|
|
|
30118
30430
|
};
|
|
30119
30431
|
/** 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. */
|
|
30120
30432
|
'gracePeriodSeconds'?: number;
|
|
30433
|
+
/** The id of the strategy to be attached to service. */
|
|
30434
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30121
30435
|
/** Controls related to SSH access within the resource. */
|
|
30122
30436
|
'ssh'?: {
|
|
30123
30437
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30124
30438
|
'enabled': boolean;
|
|
30125
30439
|
};
|
|
30126
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30127
30440
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30128
30441
|
'metadata'?: {
|
|
30129
30442
|
/** Specify custom labels for the workload. */
|
|
@@ -30329,7 +30642,6 @@ type CreateServiceDeploymentData = {
|
|
|
30329
30642
|
'mode': 'path' | 'header';
|
|
30330
30643
|
};
|
|
30331
30644
|
};
|
|
30332
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30333
30645
|
/** Describes all autoscaling configurations */
|
|
30334
30646
|
'autoscaling'?: {
|
|
30335
30647
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -30610,7 +30922,6 @@ type PutServiceDeploymentResult = {
|
|
|
30610
30922
|
'mode': 'path' | 'header';
|
|
30611
30923
|
};
|
|
30612
30924
|
};
|
|
30613
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30614
30925
|
/** Describes all autoscaling configurations */
|
|
30615
30926
|
'autoscaling'?: {
|
|
30616
30927
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -30690,6 +31001,7 @@ type PutServiceDeploymentResult = {
|
|
|
30690
31001
|
};
|
|
30691
31002
|
'storage'?: {
|
|
30692
31003
|
'useHdbStorage'?: boolean;
|
|
31004
|
+
'usePdSsdStorage'?: boolean;
|
|
30693
31005
|
'ephemeralStorage'?: {
|
|
30694
31006
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30695
31007
|
'storageSize'?: number;
|
|
@@ -30724,12 +31036,13 @@ type PutServiceDeploymentResult = {
|
|
|
30724
31036
|
};
|
|
30725
31037
|
/** 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. */
|
|
30726
31038
|
'gracePeriodSeconds'?: number;
|
|
31039
|
+
/** The id of the strategy to be attached to service. */
|
|
31040
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30727
31041
|
/** Controls related to SSH access within the resource. */
|
|
30728
31042
|
'ssh'?: {
|
|
30729
31043
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30730
31044
|
'enabled': boolean;
|
|
30731
31045
|
};
|
|
30732
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30733
31046
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30734
31047
|
'metadata'?: {
|
|
30735
31048
|
/** Specify custom labels for the workload. */
|
|
@@ -30853,6 +31166,7 @@ type PutServiceDeploymentData = {
|
|
|
30853
31166
|
};
|
|
30854
31167
|
'storage'?: {
|
|
30855
31168
|
'useHdbStorage'?: boolean;
|
|
31169
|
+
'usePdSsdStorage'?: boolean;
|
|
30856
31170
|
'ephemeralStorage'?: {
|
|
30857
31171
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30858
31172
|
'storageSize'?: number;
|
|
@@ -30887,12 +31201,13 @@ type PutServiceDeploymentData = {
|
|
|
30887
31201
|
};
|
|
30888
31202
|
/** 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. */
|
|
30889
31203
|
'gracePeriodSeconds'?: number;
|
|
31204
|
+
/** The id of the strategy to be attached to service. */
|
|
31205
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30890
31206
|
/** Controls related to SSH access within the resource. */
|
|
30891
31207
|
'ssh'?: {
|
|
30892
31208
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30893
31209
|
'enabled': boolean;
|
|
30894
31210
|
};
|
|
30895
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30896
31211
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30897
31212
|
'metadata'?: {
|
|
30898
31213
|
/** Specify custom labels for the workload. */
|
|
@@ -30937,6 +31252,7 @@ type PutServiceDeploymentData = {
|
|
|
30937
31252
|
};
|
|
30938
31253
|
'storage'?: {
|
|
30939
31254
|
'useHdbStorage'?: boolean;
|
|
31255
|
+
'usePdSsdStorage'?: boolean;
|
|
30940
31256
|
'ephemeralStorage'?: {
|
|
30941
31257
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
30942
31258
|
'storageSize'?: number;
|
|
@@ -30971,12 +31287,13 @@ type PutServiceDeploymentData = {
|
|
|
30971
31287
|
};
|
|
30972
31288
|
/** 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. */
|
|
30973
31289
|
'gracePeriodSeconds'?: number;
|
|
31290
|
+
/** The id of the strategy to be attached to service. */
|
|
31291
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
30974
31292
|
/** Controls related to SSH access within the resource. */
|
|
30975
31293
|
'ssh'?: {
|
|
30976
31294
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
30977
31295
|
'enabled': boolean;
|
|
30978
31296
|
};
|
|
30979
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
30980
31297
|
/** Allow setting custom labels and annotations for workloads. */
|
|
30981
31298
|
'metadata'?: {
|
|
30982
31299
|
/** Specify custom labels for the workload. */
|
|
@@ -31017,6 +31334,7 @@ type PutServiceDeploymentData = {
|
|
|
31017
31334
|
};
|
|
31018
31335
|
'storage'?: {
|
|
31019
31336
|
'useHdbStorage'?: boolean;
|
|
31337
|
+
'usePdSsdStorage'?: boolean;
|
|
31020
31338
|
'ephemeralStorage'?: {
|
|
31021
31339
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31022
31340
|
'storageSize'?: number;
|
|
@@ -31051,12 +31369,13 @@ type PutServiceDeploymentData = {
|
|
|
31051
31369
|
};
|
|
31052
31370
|
/** 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. */
|
|
31053
31371
|
'gracePeriodSeconds'?: number;
|
|
31372
|
+
/** The id of the strategy to be attached to service. */
|
|
31373
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31054
31374
|
/** Controls related to SSH access within the resource. */
|
|
31055
31375
|
'ssh'?: {
|
|
31056
31376
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31057
31377
|
'enabled': boolean;
|
|
31058
31378
|
};
|
|
31059
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31060
31379
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31061
31380
|
'metadata'?: {
|
|
31062
31381
|
/** Specify custom labels for the workload. */
|
|
@@ -31262,7 +31581,6 @@ type PutServiceDeploymentData = {
|
|
|
31262
31581
|
'mode': 'path' | 'header';
|
|
31263
31582
|
};
|
|
31264
31583
|
};
|
|
31265
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31266
31584
|
/** Describes all autoscaling configurations */
|
|
31267
31585
|
'autoscaling'?: {
|
|
31268
31586
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -31543,7 +31861,6 @@ type PatchServiceDeploymentResult = {
|
|
|
31543
31861
|
'mode': 'path' | 'header';
|
|
31544
31862
|
};
|
|
31545
31863
|
};
|
|
31546
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31547
31864
|
/** Describes all autoscaling configurations */
|
|
31548
31865
|
'autoscaling'?: {
|
|
31549
31866
|
/** Describes the horizontal autoscaling configuration */
|
|
@@ -31623,6 +31940,7 @@ type PatchServiceDeploymentResult = {
|
|
|
31623
31940
|
};
|
|
31624
31941
|
'storage'?: {
|
|
31625
31942
|
'useHdbStorage'?: boolean;
|
|
31943
|
+
'usePdSsdStorage'?: boolean;
|
|
31626
31944
|
'ephemeralStorage'?: {
|
|
31627
31945
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31628
31946
|
'storageSize'?: number;
|
|
@@ -31657,12 +31975,13 @@ type PatchServiceDeploymentResult = {
|
|
|
31657
31975
|
};
|
|
31658
31976
|
/** 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. */
|
|
31659
31977
|
'gracePeriodSeconds'?: number;
|
|
31978
|
+
/** The id of the strategy to be attached to service. */
|
|
31979
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31660
31980
|
/** Controls related to SSH access within the resource. */
|
|
31661
31981
|
'ssh'?: {
|
|
31662
31982
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31663
31983
|
'enabled': boolean;
|
|
31664
31984
|
};
|
|
31665
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31666
31985
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31667
31986
|
'metadata'?: {
|
|
31668
31987
|
/** Specify custom labels for the workload. */
|
|
@@ -31785,6 +32104,7 @@ type PatchServiceDeploymentData = {
|
|
|
31785
32104
|
};
|
|
31786
32105
|
'storage'?: {
|
|
31787
32106
|
'useHdbStorage'?: boolean;
|
|
32107
|
+
'usePdSsdStorage'?: boolean;
|
|
31788
32108
|
'ephemeralStorage'?: {
|
|
31789
32109
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31790
32110
|
'storageSize'?: number;
|
|
@@ -31819,12 +32139,13 @@ type PatchServiceDeploymentData = {
|
|
|
31819
32139
|
};
|
|
31820
32140
|
/** 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. */
|
|
31821
32141
|
'gracePeriodSeconds'?: number;
|
|
32142
|
+
/** The id of the strategy to be attached to service. */
|
|
32143
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31822
32144
|
/** Controls related to SSH access within the resource. */
|
|
31823
32145
|
'ssh'?: {
|
|
31824
32146
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31825
32147
|
'enabled': boolean;
|
|
31826
32148
|
};
|
|
31827
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31828
32149
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31829
32150
|
'metadata'?: {
|
|
31830
32151
|
/** Specify custom labels for the workload. */
|
|
@@ -31869,6 +32190,7 @@ type PatchServiceDeploymentData = {
|
|
|
31869
32190
|
};
|
|
31870
32191
|
'storage'?: {
|
|
31871
32192
|
'useHdbStorage'?: boolean;
|
|
32193
|
+
'usePdSsdStorage'?: boolean;
|
|
31872
32194
|
'ephemeralStorage'?: {
|
|
31873
32195
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31874
32196
|
'storageSize'?: number;
|
|
@@ -31903,12 +32225,13 @@ type PatchServiceDeploymentData = {
|
|
|
31903
32225
|
};
|
|
31904
32226
|
/** 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. */
|
|
31905
32227
|
'gracePeriodSeconds'?: number;
|
|
32228
|
+
/** The id of the strategy to be attached to service. */
|
|
32229
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31906
32230
|
/** Controls related to SSH access within the resource. */
|
|
31907
32231
|
'ssh'?: {
|
|
31908
32232
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31909
32233
|
'enabled': boolean;
|
|
31910
32234
|
};
|
|
31911
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31912
32235
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31913
32236
|
'metadata'?: {
|
|
31914
32237
|
/** Specify custom labels for the workload. */
|
|
@@ -31949,6 +32272,7 @@ type PatchServiceDeploymentData = {
|
|
|
31949
32272
|
};
|
|
31950
32273
|
'storage'?: {
|
|
31951
32274
|
'useHdbStorage'?: boolean;
|
|
32275
|
+
'usePdSsdStorage'?: boolean;
|
|
31952
32276
|
'ephemeralStorage'?: {
|
|
31953
32277
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
31954
32278
|
'storageSize'?: number;
|
|
@@ -31983,12 +32307,13 @@ type PatchServiceDeploymentData = {
|
|
|
31983
32307
|
};
|
|
31984
32308
|
/** 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. */
|
|
31985
32309
|
'gracePeriodSeconds'?: number;
|
|
32310
|
+
/** The id of the strategy to be attached to service. */
|
|
32311
|
+
'gradualRolloutStrategyId'?: string | null;
|
|
31986
32312
|
/** Controls related to SSH access within the resource. */
|
|
31987
32313
|
'ssh'?: {
|
|
31988
32314
|
/** Enables SSH access if the resource matches an SSH identity selector. */
|
|
31989
32315
|
'enabled': boolean;
|
|
31990
32316
|
};
|
|
31991
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
31992
32317
|
/** Allow setting custom labels and annotations for workloads. */
|
|
31993
32318
|
'metadata'?: {
|
|
31994
32319
|
/** Specify custom labels for the workload. */
|
|
@@ -32194,7 +32519,6 @@ type PatchServiceDeploymentData = {
|
|
|
32194
32519
|
'mode': 'path' | 'header';
|
|
32195
32520
|
};
|
|
32196
32521
|
};
|
|
32197
|
-
'gradualRolloutStrategyId'?: string | null;
|
|
32198
32522
|
'autoscaling'?: {
|
|
32199
32523
|
'horizontal'?: {
|
|
32200
32524
|
/** Whether horizontal autoscaling should be enabled Example: true */
|
|
@@ -34288,6 +34612,7 @@ type ScaleServiceData = {
|
|
|
34288
34612
|
'deploymentPlan'?: string;
|
|
34289
34613
|
'storage'?: {
|
|
34290
34614
|
'useHdbStorage'?: boolean;
|
|
34615
|
+
'usePdSsdStorage'?: boolean;
|
|
34291
34616
|
'ephemeralStorage'?: {
|
|
34292
34617
|
/** Ephemeral storage per container in MB Example: 1024 */
|
|
34293
34618
|
'storageSize'?: number;
|
|
@@ -34979,6 +35304,13 @@ type CreateWorkflowData = {
|
|
|
34979
35304
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
34980
35305
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
34981
35306
|
};
|
|
35307
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35308
|
+
'teardownSpec'?: {
|
|
35309
|
+
/** The root node of the teardown workflow. */
|
|
35310
|
+
'spec': any;
|
|
35311
|
+
/** 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` */
|
|
35312
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35313
|
+
} | null;
|
|
34982
35314
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
34983
35315
|
'argumentOverrides'?: any;
|
|
34984
35316
|
/** ID of the stage */
|
|
@@ -35031,6 +35363,13 @@ type GetWorkflowResult = {
|
|
|
35031
35363
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
35032
35364
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
35033
35365
|
};
|
|
35366
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35367
|
+
'teardownSpec'?: {
|
|
35368
|
+
/** The root node of the teardown workflow. */
|
|
35369
|
+
'spec': any;
|
|
35370
|
+
/** 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` */
|
|
35371
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35372
|
+
} | null;
|
|
35034
35373
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
35035
35374
|
'argumentOverrides'?: any;
|
|
35036
35375
|
/** ID of the stage */
|
|
@@ -35123,6 +35462,13 @@ type UpdateWorkflowData = {
|
|
|
35123
35462
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
35124
35463
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid' | 'latest' | 'replace';
|
|
35125
35464
|
};
|
|
35465
|
+
/** Optional spec to run when the workflow is deleted. */
|
|
35466
|
+
'teardownSpec'?: {
|
|
35467
|
+
/** The root node of the teardown workflow. */
|
|
35468
|
+
'spec': any;
|
|
35469
|
+
/** 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` */
|
|
35470
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
35471
|
+
} | null;
|
|
35126
35472
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
35127
35473
|
'argumentOverrides'?: any;
|
|
35128
35474
|
/** ID of the stage */
|
|
@@ -36724,6 +37070,12 @@ type CreateTemplateResult = {
|
|
|
36724
37070
|
'arguments'?: any;
|
|
36725
37071
|
'$schema'?: string;
|
|
36726
37072
|
'spec': any;
|
|
37073
|
+
/** Optional spec to run when the template is deleted. */
|
|
37074
|
+
'teardownSpec'?: {
|
|
37075
|
+
'spec': any;
|
|
37076
|
+
/** 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` */
|
|
37077
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37078
|
+
} | null;
|
|
36727
37079
|
/** Identifier for the template Example: "example-template" */
|
|
36728
37080
|
'id': string;
|
|
36729
37081
|
'gitops'?: {
|
|
@@ -36839,6 +37191,12 @@ type CreateTemplateData = {
|
|
|
36839
37191
|
'filePath': string;
|
|
36840
37192
|
};
|
|
36841
37193
|
'spec': any;
|
|
37194
|
+
/** Optional spec to run when the template is deleted. */
|
|
37195
|
+
'teardownSpec'?: {
|
|
37196
|
+
'spec': any;
|
|
37197
|
+
/** 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` */
|
|
37198
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37199
|
+
} | null;
|
|
36842
37200
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
36843
37201
|
'argumentOverrides'?: any;
|
|
36844
37202
|
/** Options regarding how the template is run. */
|
|
@@ -36859,6 +37217,12 @@ type CreateTemplateData = {
|
|
|
36859
37217
|
'description'?: string;
|
|
36860
37218
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
36861
37219
|
'arguments'?: any;
|
|
37220
|
+
/** Optional spec to run when the template is deleted. */
|
|
37221
|
+
'teardownSpec'?: {
|
|
37222
|
+
'spec': any;
|
|
37223
|
+
/** 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` */
|
|
37224
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37225
|
+
} | null;
|
|
36862
37226
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
36863
37227
|
'argumentOverrides'?: any;
|
|
36864
37228
|
/** Options regarding how the template is run. */
|
|
@@ -36911,6 +37275,12 @@ type GetTemplateResult = {
|
|
|
36911
37275
|
'arguments'?: any;
|
|
36912
37276
|
'$schema'?: string;
|
|
36913
37277
|
'spec': any;
|
|
37278
|
+
/** Optional spec to run when the template is deleted. */
|
|
37279
|
+
'teardownSpec'?: {
|
|
37280
|
+
'spec': any;
|
|
37281
|
+
/** 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` */
|
|
37282
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37283
|
+
} | null;
|
|
36914
37284
|
/** Identifier for the template Example: "example-template" */
|
|
36915
37285
|
'id': string;
|
|
36916
37286
|
'gitops'?: {
|
|
@@ -36988,6 +37358,12 @@ type UpdateTemplateResult = {
|
|
|
36988
37358
|
'arguments'?: any;
|
|
36989
37359
|
'$schema'?: string;
|
|
36990
37360
|
'spec': any;
|
|
37361
|
+
/** Optional spec to run when the template is deleted. */
|
|
37362
|
+
'teardownSpec'?: {
|
|
37363
|
+
'spec': any;
|
|
37364
|
+
/** 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` */
|
|
37365
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37366
|
+
} | null;
|
|
36991
37367
|
/** Identifier for the template Example: "example-template" */
|
|
36992
37368
|
'id': string;
|
|
36993
37369
|
'gitops'?: {
|
|
@@ -37116,6 +37492,12 @@ type UpdateTemplateData = {
|
|
|
37116
37492
|
};
|
|
37117
37493
|
'$schema'?: string;
|
|
37118
37494
|
'spec': any;
|
|
37495
|
+
/** Optional spec to run when the template is deleted. */
|
|
37496
|
+
'teardownSpec'?: {
|
|
37497
|
+
'spec': any;
|
|
37498
|
+
/** 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` */
|
|
37499
|
+
'failurePolicy'?: 'ignore' | 'block';
|
|
37500
|
+
} | null;
|
|
37119
37501
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
37120
37502
|
'argumentOverrides'?: any;
|
|
37121
37503
|
} | {
|
|
@@ -38518,4 +38900,4 @@ declare class ApiClient {
|
|
|
38518
38900
|
}
|
|
38519
38901
|
|
|
38520
38902
|
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 };
|
|
38521
|
-
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 };
|
|
38903
|
+
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 };
|