@northflank/js-client 0.7.17 → 0.7.19
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 +953 -115
- package/dist/cjs/api-client.js +1 -1
- package/dist/esm/api-client.d.ts +953 -115
- package/dist/esm/api-client.js +1 -1
- package/package.json +1 -1
package/dist/esm/api-client.d.ts
CHANGED
|
@@ -267,7 +267,7 @@ type ListAddonsResult = {
|
|
|
267
267
|
'type': string;
|
|
268
268
|
};
|
|
269
269
|
/** The current state of the addon. Example: "running" */
|
|
270
|
-
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
270
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
271
271
|
}[];
|
|
272
272
|
};
|
|
273
273
|
type ListAddonsCall = (opts: ListAddonsRequest) => Promise<ApiCallResponse<ListAddonsResult>>;
|
|
@@ -496,6 +496,7 @@ declare class NorthflankExecCommand {
|
|
|
496
496
|
type LogsRequestCommon = LogRequestTextFilters & {
|
|
497
497
|
lineLimit?: number;
|
|
498
498
|
startTime?: Date;
|
|
499
|
+
deploymentId?: string;
|
|
499
500
|
};
|
|
500
501
|
type JobLogsRangeRequestData = LogsRequestCommon & {
|
|
501
502
|
direction?: 'forward' | 'backward';
|
|
@@ -939,6 +940,7 @@ type MetricsEntry = {
|
|
|
939
940
|
};
|
|
940
941
|
type MetricsRequestCommon = {
|
|
941
942
|
metricTypes?: MetricType[];
|
|
943
|
+
deploymentId?: string;
|
|
942
944
|
};
|
|
943
945
|
type JobMetricsRangeRequestData = MetricsRequestCommon & {
|
|
944
946
|
startTime?: Date;
|
|
@@ -1159,10 +1161,6 @@ type GetAddonTypesResult = {
|
|
|
1159
1161
|
'name': string;
|
|
1160
1162
|
/** A description of the addon. Example: "Redis implements a distributed, in-memory key-value database with optional durability." */
|
|
1161
1163
|
'description': string;
|
|
1162
|
-
/** A list of available versions of the addon type. */
|
|
1163
|
-
'versions': string[];
|
|
1164
|
-
/** A list of available major versions of the addon type. */
|
|
1165
|
-
'major': string[];
|
|
1166
1164
|
/** Features supported by this addon type. */
|
|
1167
1165
|
'features'?: {
|
|
1168
1166
|
/** Whether this addon supports native (dump) backups */
|
|
@@ -1182,6 +1180,10 @@ type GetAddonTypesResult = {
|
|
|
1182
1180
|
/** Whether this addon supports external connection. Example: true */
|
|
1183
1181
|
'externalAccess': boolean;
|
|
1184
1182
|
};
|
|
1183
|
+
/** A list of available versions of the addon type. */
|
|
1184
|
+
'versions': string[];
|
|
1185
|
+
/** A list of available major versions of the addon type. */
|
|
1186
|
+
'major': string[];
|
|
1185
1187
|
/** Details about resource options for the addon type. */
|
|
1186
1188
|
'resources': {
|
|
1187
1189
|
/** Details about storage size options for this addon. */
|
|
@@ -1199,6 +1201,50 @@ type GetAddonTypesResult = {
|
|
|
1199
1201
|
'default': number;
|
|
1200
1202
|
};
|
|
1201
1203
|
};
|
|
1204
|
+
}[] | {
|
|
1205
|
+
/** The identifier for the addon type. Example: "redis" */
|
|
1206
|
+
'type': string;
|
|
1207
|
+
/** The name of the addon type. Example: "Redis" */
|
|
1208
|
+
'name': string;
|
|
1209
|
+
/** A description of the addon. Example: "Redis implements a distributed, in-memory key-value database with optional durability." */
|
|
1210
|
+
'description': string;
|
|
1211
|
+
/** Features supported by this addon type. */
|
|
1212
|
+
'features'?: {
|
|
1213
|
+
/** Whether this addon supports native (dump) backups */
|
|
1214
|
+
'backupsDump': boolean;
|
|
1215
|
+
/** Whether this addon supports customising the database name. */
|
|
1216
|
+
'customDBName': boolean;
|
|
1217
|
+
/** Whether this addon supports addon forking - creating a new addon from an existing addon backup. */
|
|
1218
|
+
'forkAddon': boolean;
|
|
1219
|
+
/** Whether this addon supports importing from an external backup. */
|
|
1220
|
+
'importDump': boolean;
|
|
1221
|
+
/** Whether this addon supports importing from an existing live database. */
|
|
1222
|
+
'importLive': boolean;
|
|
1223
|
+
/** Whether this addon supports replica scaling. */
|
|
1224
|
+
'scaleReplicas': boolean;
|
|
1225
|
+
/** Whether this addon supports connection via TLS. Example: true */
|
|
1226
|
+
'tls': boolean;
|
|
1227
|
+
/** Whether this addon supports external connection. Example: true */
|
|
1228
|
+
'externalAccess': boolean;
|
|
1229
|
+
};
|
|
1230
|
+
'config': {
|
|
1231
|
+
/** Allow addon user to view values provided to templating engine. */
|
|
1232
|
+
'showTemplateValues'?: boolean;
|
|
1233
|
+
/** Allow addon user to edit values provided to templating engine. */
|
|
1234
|
+
'enableTemplateValuesModification'?: boolean;
|
|
1235
|
+
/** Allow addon user to view and resolve potential errors occuring with templating engine run. */
|
|
1236
|
+
'enableErrorRecovery'?: boolean;
|
|
1237
|
+
/** Install CRDs provided in resource bundle. */
|
|
1238
|
+
'installCrds'?: boolean;
|
|
1239
|
+
/** Apply Northflank specific labels and annotations to Kubernetes resources. Required for core features such as viewing containers, logs, metrics. */
|
|
1240
|
+
'useNfLabelsAndAnnotations'?: boolean;
|
|
1241
|
+
/** Apply Northflank secret injection instead of using Kubernetes secrets. */
|
|
1242
|
+
'useNfSecretInjection'?: boolean;
|
|
1243
|
+
/** Inject Northflank-specific Kubernetes imagePullSecret to Pod resources. */
|
|
1244
|
+
'useNfImagePullSecret'?: boolean;
|
|
1245
|
+
};
|
|
1246
|
+
/** If the addon deploys any k8s resources which are not namespace/project-scoped, it's a cluster scoped addon */
|
|
1247
|
+
'scope': 'project' | 'cluster';
|
|
1202
1248
|
}[];
|
|
1203
1249
|
};
|
|
1204
1250
|
type GetAddonTypesCall = (opts: GetAddonTypesRequest) => Promise<ApiCallResponse<GetAddonTypesResult>>;
|
|
@@ -1747,6 +1793,8 @@ type CreateCloudClusterResult = {
|
|
|
1747
1793
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
1748
1794
|
'subnets': string;
|
|
1749
1795
|
};
|
|
1796
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
1797
|
+
'id': string;
|
|
1750
1798
|
'status'?: {
|
|
1751
1799
|
'state'?: {
|
|
1752
1800
|
'state'?: string;
|
|
@@ -1754,6 +1802,8 @@ type CreateCloudClusterResult = {
|
|
|
1754
1802
|
};
|
|
1755
1803
|
'nextUpdateAfter'?: string;
|
|
1756
1804
|
};
|
|
1805
|
+
/** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
|
|
1806
|
+
'dns'?: string;
|
|
1757
1807
|
/** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
1758
1808
|
'createdAt': string;
|
|
1759
1809
|
/** Indicates if provider resource deletion has been requested. */
|
|
@@ -2075,6 +2125,8 @@ type GetCloudClusterResult = {
|
|
|
2075
2125
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2076
2126
|
'subnets': string;
|
|
2077
2127
|
};
|
|
2128
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2129
|
+
'id': string;
|
|
2078
2130
|
'status'?: {
|
|
2079
2131
|
'state'?: {
|
|
2080
2132
|
'state'?: string;
|
|
@@ -2082,6 +2134,8 @@ type GetCloudClusterResult = {
|
|
|
2082
2134
|
};
|
|
2083
2135
|
'nextUpdateAfter'?: string;
|
|
2084
2136
|
};
|
|
2137
|
+
/** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
|
|
2138
|
+
'dns'?: string;
|
|
2085
2139
|
/** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
2086
2140
|
'createdAt': string;
|
|
2087
2141
|
/** Indicates if provider resource deletion has been requested. */
|
|
@@ -2254,6 +2308,8 @@ type UpdateCloudClusterResult = {
|
|
|
2254
2308
|
/** List of subnets the cluster should be created for. At least 2 must be specified. */
|
|
2255
2309
|
'subnets': string;
|
|
2256
2310
|
};
|
|
2311
|
+
/** The ID of cluster Example: "gcp-cluster-1" */
|
|
2312
|
+
'id': string;
|
|
2257
2313
|
'status'?: {
|
|
2258
2314
|
'state'?: {
|
|
2259
2315
|
'state'?: string;
|
|
@@ -2261,6 +2317,8 @@ type UpdateCloudClusterResult = {
|
|
|
2261
2317
|
};
|
|
2262
2318
|
'nextUpdateAfter'?: string;
|
|
2263
2319
|
};
|
|
2320
|
+
/** Auto-generated dns identifier for this cluster. Example: "xxxxxxxxxx" */
|
|
2321
|
+
'dns'?: string;
|
|
2264
2322
|
/** The time the cluster was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
2265
2323
|
'createdAt': string;
|
|
2266
2324
|
/** Indicates if provider resource deletion has been requested. */
|
|
@@ -2433,6 +2491,53 @@ declare class DeleteCloudClusterEndpoint extends DeleteApiEndpoint<DeleteCloudCl
|
|
|
2433
2491
|
body: () => undefined;
|
|
2434
2492
|
}
|
|
2435
2493
|
|
|
2494
|
+
type ListCloudClusterNodesResult = {
|
|
2495
|
+
/** An array of nodes. */
|
|
2496
|
+
'nodes': {
|
|
2497
|
+
/** The id of the node. Example: "87a11ea9-3493-40d3-9f50-280c1d7c77a3" */
|
|
2498
|
+
'nodeId'?: string;
|
|
2499
|
+
/** The name of the node. Example: "gke-nf-example-cluster-nf-951dfaf6-a70a-7697bc0d-n771" */
|
|
2500
|
+
'nodeName'?: string;
|
|
2501
|
+
/** The node pool the node is a part of. Example: "nf-951dfaf6-a70a-4550-bab6-b5364d5da20c" */
|
|
2502
|
+
'nodePool'?: string;
|
|
2503
|
+
/** The status of the node. Example: "RUNNING" */
|
|
2504
|
+
'status'?: string;
|
|
2505
|
+
/** The zone the node is running in. Example: "us-central1-c" */
|
|
2506
|
+
'zone'?: string;
|
|
2507
|
+
/** The region the node is running in. Example: "us-central1" */
|
|
2508
|
+
'region'?: string;
|
|
2509
|
+
/** The type of the node. Example: "n2-standard-4" */
|
|
2510
|
+
'instanceType'?: string;
|
|
2511
|
+
'createdAt'?: string;
|
|
2512
|
+
}[];
|
|
2513
|
+
};
|
|
2514
|
+
type ListCloudClusterNodesCall = (opts: ListCloudClusterNodesRequest) => Promise<ApiCallResponse<ListCloudClusterNodesResult>>;
|
|
2515
|
+
type ListCloudClusterNodesRequest = {
|
|
2516
|
+
parameters: ListCloudClusterNodesParameters;
|
|
2517
|
+
options?: ListCloudClusterNodesOptions;
|
|
2518
|
+
};
|
|
2519
|
+
type ListCloudClusterNodesParameters = {
|
|
2520
|
+
/** ID of the cluster */ 'clusterId': string;
|
|
2521
|
+
};
|
|
2522
|
+
type ListCloudClusterNodesOptions = {
|
|
2523
|
+
/** The number of results to display per request. Maximum of 100 results per page. */
|
|
2524
|
+
'per_page'?: number;
|
|
2525
|
+
/** The page number to access. */
|
|
2526
|
+
'page'?: number;
|
|
2527
|
+
/** The cursor returned from the previous page of results, used to request the next page. */
|
|
2528
|
+
'cursor'?: string;
|
|
2529
|
+
/** Filter the node list by state of the nodes. */
|
|
2530
|
+
'status'?: string;
|
|
2531
|
+
};
|
|
2532
|
+
/** Get a list of nodes for the given cluster */
|
|
2533
|
+
declare class ListCloudClusterNodesEndpoint extends GetApiEndpoint<ListCloudClusterNodesRequest, ListCloudClusterNodesResult> {
|
|
2534
|
+
description: string;
|
|
2535
|
+
withAuth: boolean;
|
|
2536
|
+
requiredPermissions: string;
|
|
2537
|
+
endpointUrl: (opts: ListCloudClusterNodesRequest) => string;
|
|
2538
|
+
body: () => undefined;
|
|
2539
|
+
}
|
|
2540
|
+
|
|
2436
2541
|
type ListCloudDockerregistryResult = {
|
|
2437
2542
|
/** An array of integrations. */
|
|
2438
2543
|
'registries': {
|
|
@@ -3216,6 +3321,66 @@ type GetSubdomainResult = {
|
|
|
3216
3321
|
'content': string;
|
|
3217
3322
|
/** Whether the subdomain has been verified successfully and can be used. Example: true */
|
|
3218
3323
|
'verified': boolean;
|
|
3324
|
+
'certificate'?: {
|
|
3325
|
+
/** Whether a certificate is in the process of being generated */
|
|
3326
|
+
'inProgress'?: boolean;
|
|
3327
|
+
/** Expiry date of the current certificate */
|
|
3328
|
+
'expiryDate'?: string;
|
|
3329
|
+
/** Refresh date of the current certificate */
|
|
3330
|
+
'refreshDare'?: string;
|
|
3331
|
+
};
|
|
3332
|
+
'cdn'?: {
|
|
3333
|
+
'cloudfront'?: {
|
|
3334
|
+
'enabled'?: boolean;
|
|
3335
|
+
'status'?: string;
|
|
3336
|
+
'deployedAt'?: string;
|
|
3337
|
+
};
|
|
3338
|
+
'fastly'?: {
|
|
3339
|
+
'enabled'?: boolean;
|
|
3340
|
+
'status'?: string;
|
|
3341
|
+
'options'?: {
|
|
3342
|
+
'service'?: {
|
|
3343
|
+
'forceTlsEnableHsts'?: boolean;
|
|
3344
|
+
/** HSTS duration. Required when `forceTlsEnableHsts` is `true`. */
|
|
3345
|
+
'hstsDuration'?: number;
|
|
3346
|
+
'staleIfError'?: boolean;
|
|
3347
|
+
'staleIfErrorTtl'?: number;
|
|
3348
|
+
'defaultTtl'?: number;
|
|
3349
|
+
};
|
|
3350
|
+
'logging'?: {
|
|
3351
|
+
'enabled'?: boolean;
|
|
3352
|
+
};
|
|
3353
|
+
'http3'?: {
|
|
3354
|
+
'enabled'?: boolean;
|
|
3355
|
+
};
|
|
3356
|
+
'websockets'?: {
|
|
3357
|
+
'enabled'?: boolean;
|
|
3358
|
+
};
|
|
3359
|
+
'compression'?: {
|
|
3360
|
+
'enabled'?: boolean;
|
|
3361
|
+
/** Compression options. Required when `enabled` is `true`. */
|
|
3362
|
+
'mode'?: 'gzip' | 'brotli';
|
|
3363
|
+
};
|
|
3364
|
+
'vclSnippets'?: {
|
|
3365
|
+
'id'?: string;
|
|
3366
|
+
'name': string;
|
|
3367
|
+
'type': 'init' | 'recv' | 'hash' | 'hit' | 'miss' | 'pass' | 'fetch' | 'error' | 'deliver' | 'log' | 'none';
|
|
3368
|
+
'dynamic': '0' | '1';
|
|
3369
|
+
'priority': number;
|
|
3370
|
+
'content': string;
|
|
3371
|
+
}[];
|
|
3372
|
+
'cacheSettings'?: {
|
|
3373
|
+
'id'?: string;
|
|
3374
|
+
'name': string;
|
|
3375
|
+
'action'?: 'pass' | 'cache' | 'restart';
|
|
3376
|
+
'cacheCondition'?: string;
|
|
3377
|
+
'staleTtl': number;
|
|
3378
|
+
'ttl': number;
|
|
3379
|
+
}[];
|
|
3380
|
+
};
|
|
3381
|
+
'deployedAt'?: string;
|
|
3382
|
+
};
|
|
3383
|
+
};
|
|
3219
3384
|
};
|
|
3220
3385
|
type GetSubdomainCall = (opts: GetSubdomainRequest) => Promise<ApiCallResponse<GetSubdomainResult>>;
|
|
3221
3386
|
type GetSubdomainRequest = {
|
|
@@ -3433,11 +3598,12 @@ type AddSubdomainPathResult = {
|
|
|
3433
3598
|
'corsPolicy'?: {
|
|
3434
3599
|
'enabled': boolean;
|
|
3435
3600
|
'allowOrigins'?: {
|
|
3436
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3437
|
-
'mode'
|
|
3438
|
-
|
|
3601
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3602
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3603
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3604
|
+
'origin'?: string;
|
|
3439
3605
|
}[];
|
|
3440
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3606
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3441
3607
|
'allowCredentials'?: boolean;
|
|
3442
3608
|
'allowHeaders'?: string[];
|
|
3443
3609
|
'maxAge'?: string;
|
|
@@ -3504,11 +3670,12 @@ type AddSubdomainPathData = {
|
|
|
3504
3670
|
'corsPolicy'?: {
|
|
3505
3671
|
'enabled': boolean;
|
|
3506
3672
|
'allowOrigins'?: {
|
|
3507
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3508
|
-
'mode'
|
|
3509
|
-
|
|
3673
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3674
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3675
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3676
|
+
'origin'?: string;
|
|
3510
3677
|
}[];
|
|
3511
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3678
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3512
3679
|
'allowCredentials'?: boolean;
|
|
3513
3680
|
'allowHeaders'?: string[];
|
|
3514
3681
|
'maxAge'?: string;
|
|
@@ -3533,17 +3700,17 @@ declare class AddSubdomainPathEndpoint extends PostApiEndpoint<AddSubdomainPathR
|
|
|
3533
3700
|
type ListSubdomainPathResult = {
|
|
3534
3701
|
/** A list of paths created for the given subdomain. */
|
|
3535
3702
|
'paths': {
|
|
3536
|
-
/** The domain the path should be created for. */
|
|
3703
|
+
/** The domain the path should be created for. Example: "site.example.com" */
|
|
3537
3704
|
'subdomain': string;
|
|
3538
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3539
|
-
'mode': 'prefix' | 'exact' | 'regex'
|
|
3540
|
-
/** URI of the subdomain path. Interpreted according to the selected path mode */
|
|
3705
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3706
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3707
|
+
/** URI of the subdomain path. Interpreted according to the selected path mode Example: "/" */
|
|
3541
3708
|
'uri': string;
|
|
3542
3709
|
'options'?: {
|
|
3543
3710
|
/** In case of uri conflicts, the route with the higher priority will take precedence */
|
|
3544
|
-
'priority'?: number
|
|
3711
|
+
'priority'?: number;
|
|
3545
3712
|
/** Allows case insensitive matching for 'prefix' and 'exact' modes */
|
|
3546
|
-
'ignoreUriCase'?: boolean
|
|
3713
|
+
'ignoreUriCase'?: boolean;
|
|
3547
3714
|
/** Settings determining if a path should be rewritten. Either a uri or regex have to be specified. */
|
|
3548
3715
|
'rewrite'?: {
|
|
3549
3716
|
'uri': string;
|
|
@@ -3574,11 +3741,12 @@ type ListSubdomainPathResult = {
|
|
|
3574
3741
|
'corsPolicy'?: {
|
|
3575
3742
|
'enabled': boolean;
|
|
3576
3743
|
'allowOrigins'?: {
|
|
3577
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3578
|
-
'mode'
|
|
3579
|
-
|
|
3744
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3745
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3746
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3747
|
+
'origin'?: string;
|
|
3580
3748
|
}[];
|
|
3581
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3749
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3582
3750
|
'allowCredentials'?: boolean;
|
|
3583
3751
|
'allowHeaders'?: string[];
|
|
3584
3752
|
'maxAge'?: string;
|
|
@@ -3654,11 +3822,12 @@ type GetSubdomainPathResult = {
|
|
|
3654
3822
|
'corsPolicy'?: {
|
|
3655
3823
|
'enabled': boolean;
|
|
3656
3824
|
'allowOrigins'?: {
|
|
3657
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3658
|
-
'mode'
|
|
3659
|
-
|
|
3825
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3826
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3827
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3828
|
+
'origin'?: string;
|
|
3660
3829
|
}[];
|
|
3661
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3830
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3662
3831
|
'allowCredentials'?: boolean;
|
|
3663
3832
|
'allowHeaders'?: string[];
|
|
3664
3833
|
'maxAge'?: string;
|
|
@@ -3774,11 +3943,12 @@ type UpdateSubdomainPathData = {
|
|
|
3774
3943
|
'corsPolicy'?: {
|
|
3775
3944
|
'enabled': boolean;
|
|
3776
3945
|
'allowOrigins'?: {
|
|
3777
|
-
/** Mode of the path, determining how the URI will be interpreted. */
|
|
3778
|
-
'mode'
|
|
3779
|
-
|
|
3946
|
+
/** Mode of the path, determining how the URI will be interpreted. Example: "prefix" */
|
|
3947
|
+
'mode': 'prefix' | 'exact' | 'regex';
|
|
3948
|
+
/** Origin definition. Example: "https://example.com" */
|
|
3949
|
+
'origin'?: string;
|
|
3780
3950
|
}[];
|
|
3781
|
-
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'[];
|
|
3951
|
+
'allowMethods'?: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'TRACE' | 'CONNECT' | 'HEAD'[];
|
|
3782
3952
|
'allowCredentials'?: boolean;
|
|
3783
3953
|
'allowHeaders'?: string[];
|
|
3784
3954
|
'maxAge'?: string;
|
|
@@ -4126,7 +4296,23 @@ type CreateLogsinkData = {
|
|
|
4126
4296
|
/** Codec to encode logs in Example: "json" */
|
|
4127
4297
|
'codec': 'text' | 'json';
|
|
4128
4298
|
};
|
|
4129
|
-
|
|
4299
|
+
/** Auth information. */
|
|
4300
|
+
'auth': {
|
|
4301
|
+
/** No authentication strategy Example: "none" */
|
|
4302
|
+
'strategy': 'none';
|
|
4303
|
+
} | {
|
|
4304
|
+
/** Basic HTTP authentication strategy. Example: "basic" */
|
|
4305
|
+
'strategy': 'basic';
|
|
4306
|
+
/** Username for basic http authentication. Example: "my-user" */
|
|
4307
|
+
'user'?: string;
|
|
4308
|
+
/** Password for basic http authentication. Example: "secret-password" */
|
|
4309
|
+
'password': string;
|
|
4310
|
+
} | {
|
|
4311
|
+
/** Bearer token authentication strategy. Example: "bearer" */
|
|
4312
|
+
'strategy': 'bearer';
|
|
4313
|
+
/** Token for bearer token authentication. Example: "my-token" */
|
|
4314
|
+
'token'?: string;
|
|
4315
|
+
};
|
|
4130
4316
|
};
|
|
4131
4317
|
} | {
|
|
4132
4318
|
/** Name of the log sink. Example: "example-log-sink" */
|
|
@@ -4361,15 +4547,6 @@ type GetLogsinkResult = {
|
|
|
4361
4547
|
/** The Datadog region. Example: "eu" */
|
|
4362
4548
|
'region': 'eu' | 'us' | 'us3' | 'us5';
|
|
4363
4549
|
} | any | {
|
|
4364
|
-
/** Uri to send logs to. Example: "my.log-collector.com" */
|
|
4365
|
-
'uri': string;
|
|
4366
|
-
/** Encoding options */
|
|
4367
|
-
'encoding'?: {
|
|
4368
|
-
/** Codec to encode logs in Example: "json" */
|
|
4369
|
-
'codec': 'text' | 'json';
|
|
4370
|
-
};
|
|
4371
|
-
'auth': any;
|
|
4372
|
-
} | {
|
|
4373
4550
|
/** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
|
|
4374
4551
|
'endpoint': string;
|
|
4375
4552
|
/** Region of the S3 bucket. Example: "eu-west-2" */
|
|
@@ -4386,16 +4563,46 @@ type GetLogsinkResult = {
|
|
|
4386
4563
|
/** Log file compression method. Example: "gzip" */
|
|
4387
4564
|
'compression': 'gzip' | 'none';
|
|
4388
4565
|
} | {
|
|
4389
|
-
/**
|
|
4390
|
-
'
|
|
4566
|
+
/** Uri to send logs to. Example: "my.log-collector.com" */
|
|
4567
|
+
'uri': string;
|
|
4568
|
+
/** Encoding options */
|
|
4569
|
+
'encoding'?: {
|
|
4570
|
+
/** Codec to encode logs in Example: "json" */
|
|
4571
|
+
'codec': 'text' | 'json';
|
|
4572
|
+
};
|
|
4573
|
+
/** Auth information. */
|
|
4574
|
+
'auth': {
|
|
4575
|
+
/** No authentication strategy Example: "none" */
|
|
4576
|
+
'strategy': 'none';
|
|
4577
|
+
} | {
|
|
4578
|
+
/** Basic HTTP authentication strategy. Example: "basic" */
|
|
4579
|
+
'strategy': 'basic';
|
|
4580
|
+
/** Username for basic http authentication. Example: "my-user" */
|
|
4581
|
+
'user'?: string;
|
|
4582
|
+
/** Password for basic http authentication. Example: "secret-password" */
|
|
4583
|
+
'password': string;
|
|
4584
|
+
} | {
|
|
4585
|
+
/** Bearer token authentication strategy. Example: "bearer" */
|
|
4586
|
+
'strategy': 'bearer';
|
|
4587
|
+
/** Token for bearer token authentication. Example: "my-token" */
|
|
4588
|
+
'token'?: string;
|
|
4589
|
+
};
|
|
4391
4590
|
} | {
|
|
4392
4591
|
/** Ingestion Key Example: "b1dd3feb585asd1a3e9edpo9kmn5e590hg9" */
|
|
4393
4592
|
'api_key': string;
|
|
4593
|
+
} | {
|
|
4594
|
+
/** Better Stack Source Token Example: "vhnqrLygVQ5GnSQUTZamKvAq" */
|
|
4595
|
+
'token': string;
|
|
4394
4596
|
} | {
|
|
4395
4597
|
/** Honeycomb API Key Example: "b1dd3feb585asd1a3e9" */
|
|
4396
4598
|
'api_key': string;
|
|
4397
4599
|
/** Name of the dataset Example: "staging-logs" */
|
|
4398
4600
|
'dataset': string;
|
|
4601
|
+
} | {
|
|
4602
|
+
/** Your Logzio region code Example: "eu" */
|
|
4603
|
+
'region': 'eu' | 'uk' | 'us' | 'ca' | 'au' | 'nl' | 'wa';
|
|
4604
|
+
/** The Log Shipping Token of the account you want to ship to Example: "sNFijNFgNFoNFrMsNFbNFObNFcgNFqoa" */
|
|
4605
|
+
'token': string;
|
|
4399
4606
|
} | {
|
|
4400
4607
|
/** Name of the data Example: "staging" */
|
|
4401
4608
|
'dataset': string;
|
|
@@ -4407,6 +4614,11 @@ type GetLogsinkResult = {
|
|
|
4407
4614
|
'orgId'?: string;
|
|
4408
4615
|
/** The Axiom url to use. Only change if self hosting axiom. */
|
|
4409
4616
|
'url': string;
|
|
4617
|
+
} | {
|
|
4618
|
+
/** New Relic Account ID Example: "b1dd3feb585asd1a3e9" */
|
|
4619
|
+
'accountId': string;
|
|
4620
|
+
/** New Relic License Key Example: "b1dd3feb585asd1a3e9" */
|
|
4621
|
+
'licenseKey': string;
|
|
4410
4622
|
};
|
|
4411
4623
|
};
|
|
4412
4624
|
type GetLogsinkCall = (opts: GetLogsinkRequest) => Promise<ApiCallResponse<GetLogsinkResult>>;
|
|
@@ -4526,7 +4738,23 @@ type UpdateLogsinkData = {
|
|
|
4526
4738
|
/** Codec to encode logs in Example: "json" */
|
|
4527
4739
|
'codec': 'text' | 'json';
|
|
4528
4740
|
};
|
|
4529
|
-
|
|
4741
|
+
/** Auth information. */
|
|
4742
|
+
'auth': {
|
|
4743
|
+
/** No authentication strategy Example: "none" */
|
|
4744
|
+
'strategy': 'none';
|
|
4745
|
+
} | {
|
|
4746
|
+
/** Basic HTTP authentication strategy. Example: "basic" */
|
|
4747
|
+
'strategy': 'basic';
|
|
4748
|
+
/** Username for basic http authentication. Example: "my-user" */
|
|
4749
|
+
'user'?: string;
|
|
4750
|
+
/** Password for basic http authentication. Example: "secret-password" */
|
|
4751
|
+
'password': string;
|
|
4752
|
+
} | {
|
|
4753
|
+
/** Bearer token authentication strategy. Example: "bearer" */
|
|
4754
|
+
'strategy': 'bearer';
|
|
4755
|
+
/** Token for bearer token authentication. Example: "my-token" */
|
|
4756
|
+
'token'?: string;
|
|
4757
|
+
};
|
|
4530
4758
|
} | {
|
|
4531
4759
|
/** Endpoint for the AWS S3 or compatible API bucket. Example: "my.bucket.com" */
|
|
4532
4760
|
'endpoint': string;
|
|
@@ -5506,9 +5734,9 @@ type CreateProjectResult = {
|
|
|
5506
5734
|
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5507
5735
|
'enabled'?: boolean;
|
|
5508
5736
|
'restrictions'?: {
|
|
5509
|
-
/** Whether or not to restrict the
|
|
5737
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5510
5738
|
'enabled': boolean;
|
|
5511
|
-
/** The tags which determine
|
|
5739
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5512
5740
|
'tags'?: string[];
|
|
5513
5741
|
};
|
|
5514
5742
|
'options'?: {
|
|
@@ -5521,6 +5749,22 @@ type CreateProjectResult = {
|
|
|
5521
5749
|
'authKey'?: string;
|
|
5522
5750
|
};
|
|
5523
5751
|
};
|
|
5752
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
5753
|
+
'hostAliases'?: {
|
|
5754
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
5755
|
+
'enabled'?: boolean;
|
|
5756
|
+
/** Entries to add to /etc/hosts */
|
|
5757
|
+
'hostEntries'?: {
|
|
5758
|
+
'ipAddress': string;
|
|
5759
|
+
'hostnames': string[];
|
|
5760
|
+
}[];
|
|
5761
|
+
'restrictions'?: {
|
|
5762
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5763
|
+
'enabled': boolean;
|
|
5764
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5765
|
+
'tags'?: string[];
|
|
5766
|
+
};
|
|
5767
|
+
};
|
|
5524
5768
|
};
|
|
5525
5769
|
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
5526
5770
|
'createdAt'?: string;
|
|
@@ -5540,6 +5784,47 @@ type CreateProjectData = {
|
|
|
5540
5784
|
'color'?: string;
|
|
5541
5785
|
/** The region the project will be hosted in. Example: "europe-west" */
|
|
5542
5786
|
'region'?: string;
|
|
5787
|
+
/** Advanced project networking settings. */
|
|
5788
|
+
'networking'?: {
|
|
5789
|
+
/** Projects from which ingress request should be permitted. */
|
|
5790
|
+
'allowedIngressProjects'?: string[];
|
|
5791
|
+
/** Defines this project's Tailscale sidecar settings */
|
|
5792
|
+
'tailscale'?: {
|
|
5793
|
+
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5794
|
+
'enabled'?: boolean;
|
|
5795
|
+
'restrictions'?: {
|
|
5796
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5797
|
+
'enabled': boolean;
|
|
5798
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5799
|
+
'tags'?: string[];
|
|
5800
|
+
};
|
|
5801
|
+
'options'?: {
|
|
5802
|
+
'cpuLimit'?: string;
|
|
5803
|
+
'memoryLimit'?: string;
|
|
5804
|
+
};
|
|
5805
|
+
/** Relevant Tailscale secrets */
|
|
5806
|
+
'secrets'?: {
|
|
5807
|
+
/** Tailscale auth key (required for enabling Tailscale) */
|
|
5808
|
+
'authKey'?: string;
|
|
5809
|
+
};
|
|
5810
|
+
};
|
|
5811
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
5812
|
+
'hostAliases'?: {
|
|
5813
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
5814
|
+
'enabled'?: boolean;
|
|
5815
|
+
/** Entries to add to /etc/hosts */
|
|
5816
|
+
'hostEntries'?: {
|
|
5817
|
+
'ipAddress': string;
|
|
5818
|
+
'hostnames': string[];
|
|
5819
|
+
}[];
|
|
5820
|
+
'restrictions'?: {
|
|
5821
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5822
|
+
'enabled': boolean;
|
|
5823
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5824
|
+
'tags'?: string[];
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
5827
|
+
};
|
|
5543
5828
|
} | {
|
|
5544
5829
|
/** The name of the project. Example: "New Project" */
|
|
5545
5830
|
'name': string;
|
|
@@ -5549,6 +5834,47 @@ type CreateProjectData = {
|
|
|
5549
5834
|
'color'?: string;
|
|
5550
5835
|
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
5551
5836
|
'clusterId'?: string;
|
|
5837
|
+
/** Advanced project networking settings. */
|
|
5838
|
+
'networking'?: {
|
|
5839
|
+
/** Projects from which ingress request should be permitted. */
|
|
5840
|
+
'allowedIngressProjects'?: string[];
|
|
5841
|
+
/** Defines this project's Tailscale sidecar settings */
|
|
5842
|
+
'tailscale'?: {
|
|
5843
|
+
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5844
|
+
'enabled'?: boolean;
|
|
5845
|
+
'restrictions'?: {
|
|
5846
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5847
|
+
'enabled': boolean;
|
|
5848
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5849
|
+
'tags'?: string[];
|
|
5850
|
+
};
|
|
5851
|
+
'options'?: {
|
|
5852
|
+
'cpuLimit'?: string;
|
|
5853
|
+
'memoryLimit'?: string;
|
|
5854
|
+
};
|
|
5855
|
+
/** Relevant Tailscale secrets */
|
|
5856
|
+
'secrets'?: {
|
|
5857
|
+
/** Tailscale auth key (required for enabling Tailscale) */
|
|
5858
|
+
'authKey'?: string;
|
|
5859
|
+
};
|
|
5860
|
+
};
|
|
5861
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
5862
|
+
'hostAliases'?: {
|
|
5863
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
5864
|
+
'enabled'?: boolean;
|
|
5865
|
+
/** Entries to add to /etc/hosts */
|
|
5866
|
+
'hostEntries'?: {
|
|
5867
|
+
'ipAddress': string;
|
|
5868
|
+
'hostnames': string[];
|
|
5869
|
+
}[];
|
|
5870
|
+
'restrictions'?: {
|
|
5871
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5872
|
+
'enabled': boolean;
|
|
5873
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5874
|
+
'tags'?: string[];
|
|
5875
|
+
};
|
|
5876
|
+
};
|
|
5877
|
+
};
|
|
5552
5878
|
};
|
|
5553
5879
|
/** Creates a new project. */
|
|
5554
5880
|
declare class CreateProjectEndpoint extends PostApiEndpoint<CreateProjectRequest, CreateProjectResult> {
|
|
@@ -5581,9 +5907,9 @@ type PutProjectResult = {
|
|
|
5581
5907
|
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5582
5908
|
'enabled'?: boolean;
|
|
5583
5909
|
'restrictions'?: {
|
|
5584
|
-
/** Whether or not to restrict the
|
|
5910
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5585
5911
|
'enabled': boolean;
|
|
5586
|
-
/** The tags which determine
|
|
5912
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5587
5913
|
'tags'?: string[];
|
|
5588
5914
|
};
|
|
5589
5915
|
'options'?: {
|
|
@@ -5596,6 +5922,22 @@ type PutProjectResult = {
|
|
|
5596
5922
|
'authKey'?: string;
|
|
5597
5923
|
};
|
|
5598
5924
|
};
|
|
5925
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
5926
|
+
'hostAliases'?: {
|
|
5927
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
5928
|
+
'enabled'?: boolean;
|
|
5929
|
+
/** Entries to add to /etc/hosts */
|
|
5930
|
+
'hostEntries'?: {
|
|
5931
|
+
'ipAddress': string;
|
|
5932
|
+
'hostnames': string[];
|
|
5933
|
+
}[];
|
|
5934
|
+
'restrictions'?: {
|
|
5935
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5936
|
+
'enabled': boolean;
|
|
5937
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5938
|
+
'tags'?: string[];
|
|
5939
|
+
};
|
|
5940
|
+
};
|
|
5599
5941
|
};
|
|
5600
5942
|
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
5601
5943
|
'createdAt'?: string;
|
|
@@ -5615,6 +5957,47 @@ type PutProjectData = {
|
|
|
5615
5957
|
'color'?: string;
|
|
5616
5958
|
/** The region the project will be hosted in. Example: "europe-west" */
|
|
5617
5959
|
'region'?: string;
|
|
5960
|
+
/** Advanced project networking settings. */
|
|
5961
|
+
'networking'?: {
|
|
5962
|
+
/** Projects from which ingress request should be permitted. */
|
|
5963
|
+
'allowedIngressProjects'?: string[];
|
|
5964
|
+
/** Defines this project's Tailscale sidecar settings */
|
|
5965
|
+
'tailscale'?: {
|
|
5966
|
+
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5967
|
+
'enabled'?: boolean;
|
|
5968
|
+
'restrictions'?: {
|
|
5969
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5970
|
+
'enabled': boolean;
|
|
5971
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5972
|
+
'tags'?: string[];
|
|
5973
|
+
};
|
|
5974
|
+
'options'?: {
|
|
5975
|
+
'cpuLimit'?: string;
|
|
5976
|
+
'memoryLimit'?: string;
|
|
5977
|
+
};
|
|
5978
|
+
/** Relevant Tailscale secrets */
|
|
5979
|
+
'secrets'?: {
|
|
5980
|
+
/** Tailscale auth key (required for enabling Tailscale) */
|
|
5981
|
+
'authKey'?: string;
|
|
5982
|
+
};
|
|
5983
|
+
};
|
|
5984
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
5985
|
+
'hostAliases'?: {
|
|
5986
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
5987
|
+
'enabled'?: boolean;
|
|
5988
|
+
/** Entries to add to /etc/hosts */
|
|
5989
|
+
'hostEntries'?: {
|
|
5990
|
+
'ipAddress': string;
|
|
5991
|
+
'hostnames': string[];
|
|
5992
|
+
}[];
|
|
5993
|
+
'restrictions'?: {
|
|
5994
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5995
|
+
'enabled': boolean;
|
|
5996
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5997
|
+
'tags'?: string[];
|
|
5998
|
+
};
|
|
5999
|
+
};
|
|
6000
|
+
};
|
|
5618
6001
|
} | {
|
|
5619
6002
|
/** The name of the project. Example: "New Project" */
|
|
5620
6003
|
'name': string;
|
|
@@ -5624,6 +6007,47 @@ type PutProjectData = {
|
|
|
5624
6007
|
'color'?: string;
|
|
5625
6008
|
/** The BYOC cluster this project will be hosted in. Example: "gcp-cluster-1" */
|
|
5626
6009
|
'clusterId'?: string;
|
|
6010
|
+
/** Advanced project networking settings. */
|
|
6011
|
+
'networking'?: {
|
|
6012
|
+
/** Projects from which ingress request should be permitted. */
|
|
6013
|
+
'allowedIngressProjects'?: string[];
|
|
6014
|
+
/** Defines this project's Tailscale sidecar settings */
|
|
6015
|
+
'tailscale'?: {
|
|
6016
|
+
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
6017
|
+
'enabled'?: boolean;
|
|
6018
|
+
'restrictions'?: {
|
|
6019
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
6020
|
+
'enabled': boolean;
|
|
6021
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
6022
|
+
'tags'?: string[];
|
|
6023
|
+
};
|
|
6024
|
+
'options'?: {
|
|
6025
|
+
'cpuLimit'?: string;
|
|
6026
|
+
'memoryLimit'?: string;
|
|
6027
|
+
};
|
|
6028
|
+
/** Relevant Tailscale secrets */
|
|
6029
|
+
'secrets'?: {
|
|
6030
|
+
/** Tailscale auth key (required for enabling Tailscale) */
|
|
6031
|
+
'authKey'?: string;
|
|
6032
|
+
};
|
|
6033
|
+
};
|
|
6034
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6035
|
+
'hostAliases'?: {
|
|
6036
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
6037
|
+
'enabled'?: boolean;
|
|
6038
|
+
/** Entries to add to /etc/hosts */
|
|
6039
|
+
'hostEntries'?: {
|
|
6040
|
+
'ipAddress': string;
|
|
6041
|
+
'hostnames': string[];
|
|
6042
|
+
}[];
|
|
6043
|
+
'restrictions'?: {
|
|
6044
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
6045
|
+
'enabled': boolean;
|
|
6046
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
6047
|
+
'tags'?: string[];
|
|
6048
|
+
};
|
|
6049
|
+
};
|
|
6050
|
+
};
|
|
5627
6051
|
};
|
|
5628
6052
|
/** Creates or updates a project. */
|
|
5629
6053
|
declare class PutProjectEndpoint extends PutApiEndpoint<PutProjectRequest, PutProjectResult> {
|
|
@@ -5656,9 +6080,9 @@ type PatchProjectResult = {
|
|
|
5656
6080
|
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5657
6081
|
'enabled'?: boolean;
|
|
5658
6082
|
'restrictions'?: {
|
|
5659
|
-
/** Whether or not to restrict the
|
|
6083
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5660
6084
|
'enabled': boolean;
|
|
5661
|
-
/** The tags which determine
|
|
6085
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5662
6086
|
'tags'?: string[];
|
|
5663
6087
|
};
|
|
5664
6088
|
'options'?: {
|
|
@@ -5671,6 +6095,22 @@ type PatchProjectResult = {
|
|
|
5671
6095
|
'authKey'?: string;
|
|
5672
6096
|
};
|
|
5673
6097
|
};
|
|
6098
|
+
/** Defines the project host alias overrides to apply to /etc/hosts in resource containers */
|
|
6099
|
+
'hostAliases'?: {
|
|
6100
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
6101
|
+
'enabled'?: boolean;
|
|
6102
|
+
/** Entries to add to /etc/hosts */
|
|
6103
|
+
'hostEntries'?: {
|
|
6104
|
+
'ipAddress': string;
|
|
6105
|
+
'hostnames': string[];
|
|
6106
|
+
}[];
|
|
6107
|
+
'restrictions'?: {
|
|
6108
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
6109
|
+
'enabled': boolean;
|
|
6110
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
6111
|
+
'tags'?: string[];
|
|
6112
|
+
};
|
|
6113
|
+
};
|
|
5674
6114
|
};
|
|
5675
6115
|
/** time of creation Example: "2000-01-01T12:00:00.000Z" */
|
|
5676
6116
|
'createdAt'?: string;
|
|
@@ -5697,9 +6137,9 @@ type PatchProjectData = {
|
|
|
5697
6137
|
/** Whether or not to inject a Tailscale sidecar for this project's resources */
|
|
5698
6138
|
'enabled'?: boolean;
|
|
5699
6139
|
'restrictions'?: {
|
|
5700
|
-
/** Whether or not to restrict the
|
|
6140
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
5701
6141
|
'enabled'?: boolean;
|
|
5702
|
-
/** The tags which determine
|
|
6142
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
5703
6143
|
'tags'?: string[];
|
|
5704
6144
|
};
|
|
5705
6145
|
'secrets'?: {
|
|
@@ -5707,6 +6147,21 @@ type PatchProjectData = {
|
|
|
5707
6147
|
'authKey'?: string;
|
|
5708
6148
|
};
|
|
5709
6149
|
};
|
|
6150
|
+
'hostAliases'?: {
|
|
6151
|
+
/** Enable support for adding /etc/hosts overrides for a container */
|
|
6152
|
+
'enabled'?: boolean;
|
|
6153
|
+
/** Entries to add to /etc/hosts */
|
|
6154
|
+
'hostEntries'?: {
|
|
6155
|
+
'ipAddress': string;
|
|
6156
|
+
'hostnames': string[];
|
|
6157
|
+
}[];
|
|
6158
|
+
'restrictions'?: {
|
|
6159
|
+
/** Whether or not to restrict the settings to resources with specific tags */
|
|
6160
|
+
'enabled'?: boolean;
|
|
6161
|
+
/** The tags which determine the resources the settings should be applied to */
|
|
6162
|
+
'tags'?: string[];
|
|
6163
|
+
};
|
|
6164
|
+
};
|
|
5710
6165
|
};
|
|
5711
6166
|
};
|
|
5712
6167
|
/** Updates a project. */
|
|
@@ -5832,8 +6287,12 @@ type CreateAddonResult = {
|
|
|
5832
6287
|
'storage': number;
|
|
5833
6288
|
/** The number of addon replicas to run. Example: 1 */
|
|
5834
6289
|
'replicas': number;
|
|
5835
|
-
|
|
5836
|
-
|
|
6290
|
+
'zonalRedundancy'?: {
|
|
6291
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6292
|
+
'type'?: 'required' | 'disabled';
|
|
6293
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
6294
|
+
'minZones'?: number;
|
|
6295
|
+
};
|
|
5837
6296
|
};
|
|
5838
6297
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
5839
6298
|
'source'?: {
|
|
@@ -5899,7 +6358,37 @@ type CreateAddonResult = {
|
|
|
5899
6358
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
5900
6359
|
'appId': string;
|
|
5901
6360
|
/** The current state of the addon. Example: "running" */
|
|
5902
|
-
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
6361
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6362
|
+
/** Cluster information */
|
|
6363
|
+
'cluster': {
|
|
6364
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6365
|
+
'id': string;
|
|
6366
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6367
|
+
'name': string;
|
|
6368
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
6369
|
+
'namespace'?: string;
|
|
6370
|
+
};
|
|
6371
|
+
/** time of creation */
|
|
6372
|
+
'createdAt'?: string;
|
|
6373
|
+
/** time of update */
|
|
6374
|
+
'updatedAt'?: string;
|
|
6375
|
+
} | {
|
|
6376
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
6377
|
+
'name': string;
|
|
6378
|
+
/** A description of the addon. Example: "An addon description" */
|
|
6379
|
+
'description'?: string;
|
|
6380
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6381
|
+
'tags'?: string[];
|
|
6382
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6383
|
+
'type': string;
|
|
6384
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6385
|
+
'templateValues'?: any;
|
|
6386
|
+
/** Identifier for the addon. Example: "example-addon" */
|
|
6387
|
+
'id': string;
|
|
6388
|
+
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
6389
|
+
'appId': string;
|
|
6390
|
+
/** The current state of the addon. Example: "running" */
|
|
6391
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
5903
6392
|
/** Cluster information */
|
|
5904
6393
|
'cluster': {
|
|
5905
6394
|
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
@@ -5942,8 +6431,12 @@ type CreateAddonData = {
|
|
|
5942
6431
|
'storage': number;
|
|
5943
6432
|
/** The number of addon replicas to run. Example: 1 */
|
|
5944
6433
|
'replicas': number;
|
|
5945
|
-
|
|
5946
|
-
|
|
6434
|
+
'zonalRedundancy'?: {
|
|
6435
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6436
|
+
'type'?: 'required' | 'disabled';
|
|
6437
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
6438
|
+
'minZones'?: number;
|
|
6439
|
+
};
|
|
5947
6440
|
};
|
|
5948
6441
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
5949
6442
|
'source'?: {
|
|
@@ -6004,6 +6497,17 @@ type CreateAddonData = {
|
|
|
6004
6497
|
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
6005
6498
|
'retentionTime': number;
|
|
6006
6499
|
}[];
|
|
6500
|
+
} | {
|
|
6501
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
6502
|
+
'name': string;
|
|
6503
|
+
/** A description of the addon. Example: "An addon description" */
|
|
6504
|
+
'description'?: string;
|
|
6505
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6506
|
+
'tags'?: string[];
|
|
6507
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6508
|
+
'type': string;
|
|
6509
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6510
|
+
'templateValues'?: any;
|
|
6007
6511
|
};
|
|
6008
6512
|
/** Creates a new addon */
|
|
6009
6513
|
declare class CreateAddonEndpoint extends PostApiEndpoint<CreateAddonRequest, CreateAddonResult> {
|
|
@@ -6034,8 +6538,12 @@ type PutAddonResult = {
|
|
|
6034
6538
|
'storage': number;
|
|
6035
6539
|
/** The number of addon replicas to run. Example: 1 */
|
|
6036
6540
|
'replicas': number;
|
|
6037
|
-
|
|
6038
|
-
|
|
6541
|
+
'zonalRedundancy'?: {
|
|
6542
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6543
|
+
'type'?: 'required' | 'disabled';
|
|
6544
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
6545
|
+
'minZones'?: number;
|
|
6546
|
+
};
|
|
6039
6547
|
};
|
|
6040
6548
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
6041
6549
|
'source'?: {
|
|
@@ -6101,7 +6609,37 @@ type PutAddonResult = {
|
|
|
6101
6609
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
6102
6610
|
'appId': string;
|
|
6103
6611
|
/** The current state of the addon. Example: "running" */
|
|
6104
|
-
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
6612
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6613
|
+
/** Cluster information */
|
|
6614
|
+
'cluster': {
|
|
6615
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6616
|
+
'id': string;
|
|
6617
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6618
|
+
'name': string;
|
|
6619
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
6620
|
+
'namespace'?: string;
|
|
6621
|
+
};
|
|
6622
|
+
/** time of creation */
|
|
6623
|
+
'createdAt'?: string;
|
|
6624
|
+
/** time of update */
|
|
6625
|
+
'updatedAt'?: string;
|
|
6626
|
+
} | {
|
|
6627
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
6628
|
+
'name': string;
|
|
6629
|
+
/** A description of the addon. Example: "An addon description" */
|
|
6630
|
+
'description'?: string;
|
|
6631
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6632
|
+
'tags'?: string[];
|
|
6633
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6634
|
+
'type': string;
|
|
6635
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6636
|
+
'templateValues'?: any;
|
|
6637
|
+
/** Identifier for the addon. Example: "example-addon" */
|
|
6638
|
+
'id': string;
|
|
6639
|
+
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
6640
|
+
'appId': string;
|
|
6641
|
+
/** The current state of the addon. Example: "running" */
|
|
6642
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6105
6643
|
/** Cluster information */
|
|
6106
6644
|
'cluster': {
|
|
6107
6645
|
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
@@ -6133,7 +6671,7 @@ type PutAddonData = {
|
|
|
6133
6671
|
'tags'?: string[];
|
|
6134
6672
|
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6135
6673
|
'type': string;
|
|
6136
|
-
/** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version.
|
|
6674
|
+
/** The version of the addon type to use. If set to `latest`, the addon will be created with the most recent addon version. If set to a major version appended with `-latest`, e.g. `14-latest`, the addon will be created with the most recent minor version belonging to that major version. Example: "latest" */
|
|
6137
6675
|
'version': string;
|
|
6138
6676
|
'billing': {
|
|
6139
6677
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
@@ -6144,8 +6682,12 @@ type PutAddonData = {
|
|
|
6144
6682
|
'storage': number;
|
|
6145
6683
|
/** The number of addon replicas to run. Example: 1 */
|
|
6146
6684
|
'replicas': number;
|
|
6147
|
-
|
|
6148
|
-
|
|
6685
|
+
'zonalRedundancy'?: {
|
|
6686
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6687
|
+
'type'?: 'required' | 'disabled';
|
|
6688
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
6689
|
+
'minZones'?: number;
|
|
6690
|
+
};
|
|
6149
6691
|
};
|
|
6150
6692
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
6151
6693
|
'source'?: {
|
|
@@ -6206,6 +6748,17 @@ type PutAddonData = {
|
|
|
6206
6748
|
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
6207
6749
|
'retentionTime': number;
|
|
6208
6750
|
}[];
|
|
6751
|
+
} | {
|
|
6752
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
6753
|
+
'name': string;
|
|
6754
|
+
/** A description of the addon. Example: "An addon description" */
|
|
6755
|
+
'description'?: string;
|
|
6756
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6757
|
+
'tags'?: string[];
|
|
6758
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6759
|
+
'type': string;
|
|
6760
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6761
|
+
'templateValues'?: any;
|
|
6209
6762
|
};
|
|
6210
6763
|
/** Creates or updates an addon */
|
|
6211
6764
|
declare class PutAddonEndpoint extends PutApiEndpoint<PutAddonRequest, PutAddonResult> {
|
|
@@ -6230,7 +6783,7 @@ type GetAddonResult = {
|
|
|
6230
6783
|
/** The time the addon was created. Example: "2021-01-20T11:19:53.175Z" */
|
|
6231
6784
|
'createdAt': string;
|
|
6232
6785
|
/** The current state of the addon. Example: "running" */
|
|
6233
|
-
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
6786
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6234
6787
|
/** Details about the addon's specifications. */
|
|
6235
6788
|
'spec': {
|
|
6236
6789
|
/** The type of the addon Example: "mongodb" */
|
|
@@ -6268,6 +6821,9 @@ type GetAddonResult = {
|
|
|
6268
6821
|
'action': 'DENY' | 'ALLOW';
|
|
6269
6822
|
}[];
|
|
6270
6823
|
};
|
|
6824
|
+
} | {
|
|
6825
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6826
|
+
'templateValues': string;
|
|
6271
6827
|
};
|
|
6272
6828
|
};
|
|
6273
6829
|
/** Cluster information */
|
|
@@ -6318,8 +6874,12 @@ type PatchAddonResult = {
|
|
|
6318
6874
|
'storage': number;
|
|
6319
6875
|
/** The number of addon replicas to run. Example: 1 */
|
|
6320
6876
|
'replicas': number;
|
|
6321
|
-
|
|
6322
|
-
|
|
6877
|
+
'zonalRedundancy'?: {
|
|
6878
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6879
|
+
'type'?: 'required' | 'disabled';
|
|
6880
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
6881
|
+
'minZones'?: number;
|
|
6882
|
+
};
|
|
6323
6883
|
};
|
|
6324
6884
|
/** Optional object containing data about an existing addon to fork. If provided, the addon will be created from that existing addon backup. */
|
|
6325
6885
|
'source'?: {
|
|
@@ -6385,7 +6945,37 @@ type PatchAddonResult = {
|
|
|
6385
6945
|
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
6386
6946
|
'appId': string;
|
|
6387
6947
|
/** The current state of the addon. Example: "running" */
|
|
6388
|
-
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'deleting' | 'deleted';
|
|
6948
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6949
|
+
/** Cluster information */
|
|
6950
|
+
'cluster': {
|
|
6951
|
+
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6952
|
+
'id': string;
|
|
6953
|
+
/** The name of the cluster associated with this project. Example: "nf-europe-west" */
|
|
6954
|
+
'name': string;
|
|
6955
|
+
/** Namespace this resource is located within on the cluster. Example: "ns-8zy2mcjh9zn2" */
|
|
6956
|
+
'namespace'?: string;
|
|
6957
|
+
};
|
|
6958
|
+
/** time of creation */
|
|
6959
|
+
'createdAt'?: string;
|
|
6960
|
+
/** time of update */
|
|
6961
|
+
'updatedAt'?: string;
|
|
6962
|
+
} | {
|
|
6963
|
+
/** The name of the addon. Example: "Example Addon" */
|
|
6964
|
+
'name': string;
|
|
6965
|
+
/** A description of the addon. Example: "An addon description" */
|
|
6966
|
+
'description'?: string;
|
|
6967
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
6968
|
+
'tags'?: string[];
|
|
6969
|
+
/** The identifier for the type of addon. Addon types can be found at the Get Addon Types endpoint. Example: "postgresql" */
|
|
6970
|
+
'type': string;
|
|
6971
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
6972
|
+
'templateValues'?: any;
|
|
6973
|
+
/** Identifier for the addon. Example: "example-addon" */
|
|
6974
|
+
'id': string;
|
|
6975
|
+
/** Full identifier used for deployment Example: "/example-user/default-project/example-addon" */
|
|
6976
|
+
'appId': string;
|
|
6977
|
+
/** The current state of the addon. Example: "running" */
|
|
6978
|
+
'status': 'preDeployment' | 'triggerAllocation' | 'allocating' | 'postDeployment' | 'running' | 'paused' | 'scaling' | 'upgrading' | 'resetting' | 'backup' | 'restore' | 'failed' | 'error' | 'errorAllocating' | 'deleting' | 'deleted';
|
|
6389
6979
|
/** Cluster information */
|
|
6390
6980
|
'cluster': {
|
|
6391
6981
|
/** The id of the cluster associated with this project. Example: "nf-europe-west" */
|
|
@@ -6415,6 +7005,7 @@ type PatchAddonData = {
|
|
|
6415
7005
|
'description'?: string;
|
|
6416
7006
|
/** An array of previously defined tags to help identify and group the resource. */
|
|
6417
7007
|
'tags'?: string[];
|
|
7008
|
+
'templateValues'?: any;
|
|
6418
7009
|
'billing'?: {
|
|
6419
7010
|
/** The ID of the deployment plan to use. Example: "nf-compute-20" */
|
|
6420
7011
|
'deploymentPlan'?: string;
|
|
@@ -6424,8 +7015,6 @@ type PatchAddonData = {
|
|
|
6424
7015
|
'storage'?: number;
|
|
6425
7016
|
/** The number of addon replicas to run. Example: 1 */
|
|
6426
7017
|
'replicas'?: number;
|
|
6427
|
-
/** Defines scheduling behaviour across different zones within the same region. */
|
|
6428
|
-
'zonalRedundancy'?: 'required' | 'disabled';
|
|
6429
7018
|
};
|
|
6430
7019
|
/** Enables access to the addon via TLS (if supported by the addon type). */
|
|
6431
7020
|
'tlsEnabled'?: boolean;
|
|
@@ -6473,6 +7062,13 @@ type PatchAddonData = {
|
|
|
6473
7062
|
/** The time the backup is retained for, in days. `hourly` backups have a maximum retention of 7 days, `daily` backups have a maximum retention of 60 days and `weekly` backups have a maximum retention of 120 days. Example: 7 */
|
|
6474
7063
|
'retentionTime': number;
|
|
6475
7064
|
}[];
|
|
7065
|
+
} | {
|
|
7066
|
+
/** A description of the addon. Example: "An addon description" */
|
|
7067
|
+
'description'?: string;
|
|
7068
|
+
/** An array of previously defined tags to help identify and group the resource. */
|
|
7069
|
+
'tags'?: string[];
|
|
7070
|
+
/** The template values to be passed to the templating engine. Example: "{\"replicas\": 2}" */
|
|
7071
|
+
'templateValues'?: any;
|
|
6476
7072
|
};
|
|
6477
7073
|
/** Updates an addon */
|
|
6478
7074
|
declare class PatchAddonEndpoint extends PatchApiEndpoint<PatchAddonRequest, PatchAddonResult> {
|
|
@@ -7222,6 +7818,34 @@ declare class RestartAddonEndpoint extends PostApiEndpoint<RestartAddonRequest,
|
|
|
7222
7818
|
body: () => undefined;
|
|
7223
7819
|
}
|
|
7224
7820
|
|
|
7821
|
+
type RestoreAddonBackupGlobalResult = {
|
|
7822
|
+
/** The ID of the initiated restore. Example: "1611305397038" */
|
|
7823
|
+
'restoreId': string;
|
|
7824
|
+
};
|
|
7825
|
+
type RestoreAddonBackupGlobalCall = (opts: RestoreAddonBackupGlobalRequest) => Promise<ApiCallResponse<RestoreAddonBackupGlobalResult>>;
|
|
7826
|
+
type RestoreAddonBackupGlobalRequest = {
|
|
7827
|
+
parameters: RestoreAddonBackupGlobalParameters;
|
|
7828
|
+
data: RestoreAddonBackupGlobalData;
|
|
7829
|
+
};
|
|
7830
|
+
type RestoreAddonBackupGlobalParameters = {
|
|
7831
|
+
/** ID of the project */ 'projectId': string;
|
|
7832
|
+
/** ID of the addon */
|
|
7833
|
+
'addonId': string;
|
|
7834
|
+
};
|
|
7835
|
+
type RestoreAddonBackupGlobalData = {
|
|
7836
|
+
'sourceProjectId': string;
|
|
7837
|
+
'sourceAddonId': string;
|
|
7838
|
+
'backupId': string;
|
|
7839
|
+
};
|
|
7840
|
+
/** Restores the given backup to the specified addon. */
|
|
7841
|
+
declare class RestoreAddonBackupGlobalEndpoint extends PostApiEndpoint<RestoreAddonBackupGlobalRequest, RestoreAddonBackupGlobalResult> {
|
|
7842
|
+
description: string;
|
|
7843
|
+
withAuth: boolean;
|
|
7844
|
+
requiredPermissions: string;
|
|
7845
|
+
endpointUrl: (opts: RestoreAddonBackupGlobalRequest) => string;
|
|
7846
|
+
body: (payload: RestoreAddonBackupGlobalRequest) => string;
|
|
7847
|
+
}
|
|
7848
|
+
|
|
7225
7849
|
type ResumeAddonResult = any;
|
|
7226
7850
|
type ResumeAddonCall = (opts: ResumeAddonRequest) => Promise<ApiCallResponse<ResumeAddonResult>>;
|
|
7227
7851
|
type ResumeAddonRequest = {
|
|
@@ -11256,6 +11880,7 @@ type StartJobRunData = {
|
|
|
11256
11880
|
/** The ID of the deployment plan override to use. Example: "nf-compute-20" */
|
|
11257
11881
|
'deploymentPlan'?: string;
|
|
11258
11882
|
};
|
|
11883
|
+
/** Override the job run deployment source. */
|
|
11259
11884
|
'deployment'?: {
|
|
11260
11885
|
/** Allows for customization of docker runtime */
|
|
11261
11886
|
'docker'?: {
|
|
@@ -11713,11 +12338,13 @@ type GetPreviewtemplateResult = {
|
|
|
11713
12338
|
'selfHostedVcsId'?: string;
|
|
11714
12339
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
11715
12340
|
'accountLogin'?: string;
|
|
11716
|
-
/** URL of the Git repo
|
|
12341
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11717
12342
|
'repoUrl': string;
|
|
11718
12343
|
'branchRestrictions'?: string[];
|
|
11719
12344
|
'prRestrictions'?: string[];
|
|
12345
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
11720
12346
|
'pathIgnoreRules'?: string[];
|
|
12347
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
11721
12348
|
'ciIgnoreFlags'?: string[];
|
|
11722
12349
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11723
12350
|
'isAllowList'?: boolean;
|
|
@@ -11726,6 +12353,7 @@ type GetPreviewtemplateResult = {
|
|
|
11726
12353
|
/** Should the git trigger only be triggered manually? */
|
|
11727
12354
|
'manualOnly'?: boolean;
|
|
11728
12355
|
}[];
|
|
12356
|
+
'$schema'?: string;
|
|
11729
12357
|
'spec': any;
|
|
11730
12358
|
/** Identifier for the template Example: "example-template" */
|
|
11731
12359
|
'id': string;
|
|
@@ -11780,6 +12408,7 @@ type UpdatePreviewtemplateData = {
|
|
|
11780
12408
|
'apiVersion': 'v1.1';
|
|
11781
12409
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
11782
12410
|
'arguments'?: any;
|
|
12411
|
+
'$schema'?: string;
|
|
11783
12412
|
'spec': any;
|
|
11784
12413
|
/** Whether triggers are paused for this preview template. If `true`, Git triggers and webhook triggers will not create or update previews. */
|
|
11785
12414
|
'paused'?: boolean;
|
|
@@ -11792,11 +12421,13 @@ type UpdatePreviewtemplateData = {
|
|
|
11792
12421
|
'selfHostedVcsId'?: string;
|
|
11793
12422
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
11794
12423
|
'accountLogin'?: string;
|
|
11795
|
-
/** URL of the Git repo
|
|
12424
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11796
12425
|
'repoUrl': string;
|
|
11797
12426
|
'branchRestrictions'?: string[];
|
|
11798
12427
|
'prRestrictions'?: string[];
|
|
12428
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
11799
12429
|
'pathIgnoreRules'?: string[];
|
|
12430
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
11800
12431
|
'ciIgnoreFlags'?: string[];
|
|
11801
12432
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11802
12433
|
'isAllowList'?: boolean;
|
|
@@ -11942,11 +12573,13 @@ type GetPreviewtemplaterunResult = {
|
|
|
11942
12573
|
'selfHostedVcsId'?: string;
|
|
11943
12574
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
11944
12575
|
'accountLogin'?: string;
|
|
11945
|
-
/** URL of the Git repo
|
|
12576
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
11946
12577
|
'repoUrl': string;
|
|
11947
12578
|
'branchRestrictions'?: string[];
|
|
11948
12579
|
'prRestrictions'?: string[];
|
|
12580
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
11949
12581
|
'pathIgnoreRules'?: string[];
|
|
12582
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
11950
12583
|
'ciIgnoreFlags'?: string[];
|
|
11951
12584
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
11952
12585
|
'isAllowList'?: boolean;
|
|
@@ -11955,6 +12588,7 @@ type GetPreviewtemplaterunResult = {
|
|
|
11955
12588
|
/** Should the git trigger only be triggered manually? */
|
|
11956
12589
|
'manualOnly'?: boolean;
|
|
11957
12590
|
}[];
|
|
12591
|
+
'$schema'?: string;
|
|
11958
12592
|
'spec': any;
|
|
11959
12593
|
'refs'?: any;
|
|
11960
12594
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -12002,15 +12636,18 @@ type GetReleaseflowResult = {
|
|
|
12002
12636
|
'selfHostedVcsId'?: string;
|
|
12003
12637
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12004
12638
|
'accountLogin'?: string;
|
|
12005
|
-
/** URL of the Git repo
|
|
12639
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12006
12640
|
'repoUrl': string;
|
|
12007
12641
|
'branchRestrictions'?: string[];
|
|
12008
12642
|
'prRestrictions'?: string[];
|
|
12643
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12009
12644
|
'pathIgnoreRules'?: string[];
|
|
12645
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12010
12646
|
'ciIgnoreFlags'?: string[];
|
|
12011
12647
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12012
12648
|
'isAllowList'?: boolean;
|
|
12013
12649
|
}[];
|
|
12650
|
+
'$schema'?: string;
|
|
12014
12651
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
12015
12652
|
'richInputs'?: any[];
|
|
12016
12653
|
'spec': any;
|
|
@@ -12073,15 +12710,18 @@ type UpdateReleaseflowData = {
|
|
|
12073
12710
|
'selfHostedVcsId'?: string;
|
|
12074
12711
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12075
12712
|
'accountLogin'?: string;
|
|
12076
|
-
/** URL of the Git repo
|
|
12713
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12077
12714
|
'repoUrl': string;
|
|
12078
12715
|
'branchRestrictions'?: string[];
|
|
12079
12716
|
'prRestrictions'?: string[];
|
|
12717
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12080
12718
|
'pathIgnoreRules'?: string[];
|
|
12719
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12081
12720
|
'ciIgnoreFlags'?: string[];
|
|
12082
12721
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12083
12722
|
'isAllowList'?: boolean;
|
|
12084
12723
|
}[];
|
|
12724
|
+
'$schema'?: string;
|
|
12085
12725
|
/** An array of rich UI override inputs for the Release Flow template. */
|
|
12086
12726
|
'richInputs'?: any[];
|
|
12087
12727
|
'apiVersion': string;
|
|
@@ -12202,15 +12842,18 @@ type GetReleaseflowrunResult = {
|
|
|
12202
12842
|
'selfHostedVcsId'?: string;
|
|
12203
12843
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12204
12844
|
'accountLogin'?: string;
|
|
12205
|
-
/** URL of the Git repo
|
|
12845
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12206
12846
|
'repoUrl': string;
|
|
12207
12847
|
'branchRestrictions'?: string[];
|
|
12208
12848
|
'prRestrictions'?: string[];
|
|
12849
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12209
12850
|
'pathIgnoreRules'?: string[];
|
|
12851
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12210
12852
|
'ciIgnoreFlags'?: string[];
|
|
12211
12853
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12212
12854
|
'isAllowList'?: boolean;
|
|
12213
12855
|
}[];
|
|
12856
|
+
'$schema'?: string;
|
|
12214
12857
|
'spec': any;
|
|
12215
12858
|
'refs'?: any;
|
|
12216
12859
|
/** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
|
|
@@ -12268,15 +12911,18 @@ type AbortReleaseflowrunResult = {
|
|
|
12268
12911
|
'selfHostedVcsId'?: string;
|
|
12269
12912
|
/** By default, if you have multiple version control accounts of the same provider linked, Northflank will pick a linked account that has access to the repository. If `accountLogin` is provided, Northflank will instead use your linked account with that login name. Example: "github-user" */
|
|
12270
12913
|
'accountLogin'?: string;
|
|
12271
|
-
/** URL of the Git repo
|
|
12914
|
+
/** URL of the Git repo that will trigger the template. Example: "https://github.com/northflank-examples/remix-postgres-redis-demo" */
|
|
12272
12915
|
'repoUrl': string;
|
|
12273
12916
|
'branchRestrictions'?: string[];
|
|
12274
12917
|
'prRestrictions'?: string[];
|
|
12918
|
+
/** An array of path ignore rules. A commit will only be built if a file has been changed that does not match any of the ignore rules. Path ignore rules follow `.gitignore` syntax. */
|
|
12275
12919
|
'pathIgnoreRules'?: string[];
|
|
12920
|
+
/** An array of commit ignore flags. If a commit message contains one or more of these flags, that commit will not be built. Defaults to `["[skip ci]", "[ci skip]", "[no ci]", "[skip nf]", "[nf skip]", "[northflank skip]", "[skip northflank]"]` Example: ["[skip ci]","[ci skip]","[no ci]","[skip nf]","[nf skip]","[northflank skip]","[skip northflank]"] */
|
|
12276
12921
|
'ciIgnoreFlags'?: string[];
|
|
12277
12922
|
'ciIgnoreFlagsEnabled'?: boolean;
|
|
12278
12923
|
'isAllowList'?: boolean;
|
|
12279
12924
|
}[];
|
|
12925
|
+
'$schema'?: string;
|
|
12280
12926
|
'spec': any;
|
|
12281
12927
|
'refs'?: any;
|
|
12282
12928
|
/** ID of the release flow run Example: "110ddb52-bdcd-482d-8ac2-05ba580afe2f" */
|
|
@@ -13832,7 +14478,13 @@ type CreateServiceCombinedResult = {
|
|
|
13832
14478
|
'organizationId'?: string;
|
|
13833
14479
|
/** Array of directory groups that will have access */
|
|
13834
14480
|
'directoryGroupIds'?: string[];
|
|
14481
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
14482
|
+
'validateInternalTraffic'?: boolean;
|
|
14483
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
14484
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
13835
14485
|
};
|
|
14486
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
14487
|
+
'verificationMode'?: 'or' | 'and';
|
|
13836
14488
|
};
|
|
13837
14489
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
13838
14490
|
'domains'?: string[];
|
|
@@ -14026,8 +14678,12 @@ type CreateServiceCombinedResult = {
|
|
|
14026
14678
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
14027
14679
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
14028
14680
|
};
|
|
14029
|
-
|
|
14030
|
-
|
|
14681
|
+
'zonalRedundancy'?: {
|
|
14682
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
14683
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
14684
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
14685
|
+
'minZones'?: number;
|
|
14686
|
+
};
|
|
14031
14687
|
'gpu'?: {
|
|
14032
14688
|
'enabled'?: boolean;
|
|
14033
14689
|
'configuration'?: {
|
|
@@ -14141,8 +14797,12 @@ type CreateServiceCombinedData = {
|
|
|
14141
14797
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
14142
14798
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
14143
14799
|
};
|
|
14144
|
-
|
|
14145
|
-
|
|
14800
|
+
'zonalRedundancy'?: {
|
|
14801
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
14802
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
14803
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
14804
|
+
'minZones'?: number;
|
|
14805
|
+
};
|
|
14146
14806
|
'gpu'?: {
|
|
14147
14807
|
'enabled'?: boolean;
|
|
14148
14808
|
'configuration'?: {
|
|
@@ -14183,7 +14843,13 @@ type CreateServiceCombinedData = {
|
|
|
14183
14843
|
'organizationId'?: string;
|
|
14184
14844
|
/** Array of directory groups that will have access */
|
|
14185
14845
|
'directoryGroupIds'?: string[];
|
|
14846
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
14847
|
+
'validateInternalTraffic'?: boolean;
|
|
14848
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
14849
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14186
14850
|
};
|
|
14851
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
14852
|
+
'verificationMode'?: 'or' | 'and';
|
|
14187
14853
|
};
|
|
14188
14854
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
14189
14855
|
'domains'?: string[];
|
|
@@ -14396,7 +15062,13 @@ type PutServiceCombinedResult = {
|
|
|
14396
15062
|
'organizationId'?: string;
|
|
14397
15063
|
/** Array of directory groups that will have access */
|
|
14398
15064
|
'directoryGroupIds'?: string[];
|
|
15065
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
15066
|
+
'validateInternalTraffic'?: boolean;
|
|
15067
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15068
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14399
15069
|
};
|
|
15070
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15071
|
+
'verificationMode'?: 'or' | 'and';
|
|
14400
15072
|
};
|
|
14401
15073
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
14402
15074
|
'domains'?: string[];
|
|
@@ -14590,8 +15262,12 @@ type PutServiceCombinedResult = {
|
|
|
14590
15262
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
14591
15263
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
14592
15264
|
};
|
|
14593
|
-
|
|
14594
|
-
|
|
15265
|
+
'zonalRedundancy'?: {
|
|
15266
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
15267
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
15268
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
15269
|
+
'minZones'?: number;
|
|
15270
|
+
};
|
|
14595
15271
|
'gpu'?: {
|
|
14596
15272
|
'enabled'?: boolean;
|
|
14597
15273
|
'configuration'?: {
|
|
@@ -14705,8 +15381,12 @@ type PutServiceCombinedData = {
|
|
|
14705
15381
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
14706
15382
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
14707
15383
|
};
|
|
14708
|
-
|
|
14709
|
-
|
|
15384
|
+
'zonalRedundancy'?: {
|
|
15385
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
15386
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
15387
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
15388
|
+
'minZones'?: number;
|
|
15389
|
+
};
|
|
14710
15390
|
'gpu'?: {
|
|
14711
15391
|
'enabled'?: boolean;
|
|
14712
15392
|
'configuration'?: {
|
|
@@ -14747,7 +15427,13 @@ type PutServiceCombinedData = {
|
|
|
14747
15427
|
'organizationId'?: string;
|
|
14748
15428
|
/** Array of directory groups that will have access */
|
|
14749
15429
|
'directoryGroupIds'?: string[];
|
|
15430
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
15431
|
+
'validateInternalTraffic'?: boolean;
|
|
15432
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15433
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14750
15434
|
};
|
|
15435
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15436
|
+
'verificationMode'?: 'or' | 'and';
|
|
14751
15437
|
};
|
|
14752
15438
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
14753
15439
|
'domains'?: string[];
|
|
@@ -14960,7 +15646,13 @@ type PatchServiceCombinedResult = {
|
|
|
14960
15646
|
'organizationId'?: string;
|
|
14961
15647
|
/** Array of directory groups that will have access */
|
|
14962
15648
|
'directoryGroupIds'?: string[];
|
|
15649
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
15650
|
+
'validateInternalTraffic'?: boolean;
|
|
15651
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
15652
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
14963
15653
|
};
|
|
15654
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
15655
|
+
'verificationMode'?: 'or' | 'and';
|
|
14964
15656
|
};
|
|
14965
15657
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
14966
15658
|
'domains'?: string[];
|
|
@@ -15154,8 +15846,12 @@ type PatchServiceCombinedResult = {
|
|
|
15154
15846
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15155
15847
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15156
15848
|
};
|
|
15157
|
-
|
|
15158
|
-
|
|
15849
|
+
'zonalRedundancy'?: {
|
|
15850
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
15851
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
15852
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
15853
|
+
'minZones'?: number;
|
|
15854
|
+
};
|
|
15159
15855
|
'gpu'?: {
|
|
15160
15856
|
'enabled'?: boolean;
|
|
15161
15857
|
'configuration'?: {
|
|
@@ -15237,14 +15933,21 @@ type PatchServiceCombinedData = {
|
|
|
15237
15933
|
/** The number of instances to run the service on. Example: 1 */
|
|
15238
15934
|
'instances'?: number;
|
|
15239
15935
|
'buildpack'?: {
|
|
15936
|
+
/** Type of buildpack run configuration */
|
|
15240
15937
|
'configType'?: 'default' | 'customProcess' | 'customCommand' | 'customEntrypointCustomCommand' | 'originalEntrypointCustomCommand';
|
|
15938
|
+
/** Custom process which should be run. Required in case where `configType` is `customProcess` */
|
|
15241
15939
|
'customProcess'?: string;
|
|
15940
|
+
/** Custom entrypoint which should be run. Required in case where `configType` is `customEntrypointCustomCommand` */
|
|
15242
15941
|
'customEntrypoint'?: string;
|
|
15942
|
+
/** Custom command which should be run. Required in case where `configType` is `customCommand`, `customEntrypointCustomCommand` or `originalEntrypointCustomCommand` */
|
|
15243
15943
|
'customCommand'?: string;
|
|
15244
15944
|
};
|
|
15245
15945
|
'docker'?: {
|
|
15946
|
+
/** Type of entrypoint & command override configuration Example: "default" */
|
|
15246
15947
|
'configType'?: 'default' | 'customEntrypoint' | 'customCommand' | 'customEntrypointCustomCommand';
|
|
15948
|
+
/** Custom entrypoint which should be used. Required in case where `configType` is `customEntrypoint` or `customEntrypointCustomCommand` */
|
|
15247
15949
|
'customEntrypoint'?: string;
|
|
15950
|
+
/** Custom command which should be used. Required in case where `configType` is `customCommand` or `customEntrypointCustomCommand` */
|
|
15248
15951
|
'customCommand'?: string;
|
|
15249
15952
|
};
|
|
15250
15953
|
'storage'?: {
|
|
@@ -15260,8 +15963,12 @@ type PatchServiceCombinedData = {
|
|
|
15260
15963
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15261
15964
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15262
15965
|
};
|
|
15263
|
-
|
|
15264
|
-
|
|
15966
|
+
'zonalRedundancy'?: {
|
|
15967
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
15968
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
15969
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
15970
|
+
'minZones'?: number;
|
|
15971
|
+
};
|
|
15265
15972
|
'gpu'?: {
|
|
15266
15973
|
'enabled'?: boolean;
|
|
15267
15974
|
'configuration'?: {
|
|
@@ -15302,7 +16009,13 @@ type PatchServiceCombinedData = {
|
|
|
15302
16009
|
'organizationId'?: string;
|
|
15303
16010
|
/** Array of directory groups that will have access */
|
|
15304
16011
|
'directoryGroupIds'?: string[];
|
|
16012
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
16013
|
+
'validateInternalTraffic'?: boolean;
|
|
16014
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16015
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15305
16016
|
};
|
|
16017
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16018
|
+
'verificationMode'?: 'or' | 'and';
|
|
15306
16019
|
};
|
|
15307
16020
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
15308
16021
|
'domains'?: string[];
|
|
@@ -15503,7 +16216,13 @@ type CreateServiceDeploymentResult = {
|
|
|
15503
16216
|
'organizationId'?: string;
|
|
15504
16217
|
/** Array of directory groups that will have access */
|
|
15505
16218
|
'directoryGroupIds'?: string[];
|
|
16219
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
16220
|
+
'validateInternalTraffic'?: boolean;
|
|
16221
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16222
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15506
16223
|
};
|
|
16224
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16225
|
+
'verificationMode'?: 'or' | 'and';
|
|
15507
16226
|
};
|
|
15508
16227
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
15509
16228
|
'domains'?: string[];
|
|
@@ -15610,8 +16329,12 @@ type CreateServiceDeploymentResult = {
|
|
|
15610
16329
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15611
16330
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15612
16331
|
};
|
|
15613
|
-
|
|
15614
|
-
|
|
16332
|
+
'zonalRedundancy'?: {
|
|
16333
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16334
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16335
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16336
|
+
'minZones'?: number;
|
|
16337
|
+
};
|
|
15615
16338
|
'gpu'?: {
|
|
15616
16339
|
'enabled'?: boolean;
|
|
15617
16340
|
'configuration'?: {
|
|
@@ -15733,8 +16456,12 @@ type CreateServiceDeploymentData = {
|
|
|
15733
16456
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15734
16457
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15735
16458
|
};
|
|
15736
|
-
|
|
15737
|
-
|
|
16459
|
+
'zonalRedundancy'?: {
|
|
16460
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16461
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16462
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16463
|
+
'minZones'?: number;
|
|
16464
|
+
};
|
|
15738
16465
|
'gpu'?: {
|
|
15739
16466
|
'enabled'?: boolean;
|
|
15740
16467
|
'configuration'?: {
|
|
@@ -15790,8 +16517,12 @@ type CreateServiceDeploymentData = {
|
|
|
15790
16517
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15791
16518
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15792
16519
|
};
|
|
15793
|
-
|
|
15794
|
-
|
|
16520
|
+
'zonalRedundancy'?: {
|
|
16521
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16522
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16523
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16524
|
+
'minZones'?: number;
|
|
16525
|
+
};
|
|
15795
16526
|
'gpu'?: {
|
|
15796
16527
|
'enabled'?: boolean;
|
|
15797
16528
|
'configuration'?: {
|
|
@@ -15843,8 +16574,12 @@ type CreateServiceDeploymentData = {
|
|
|
15843
16574
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
15844
16575
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
15845
16576
|
};
|
|
15846
|
-
|
|
15847
|
-
|
|
16577
|
+
'zonalRedundancy'?: {
|
|
16578
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16579
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16580
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16581
|
+
'minZones'?: number;
|
|
16582
|
+
};
|
|
15848
16583
|
'gpu'?: {
|
|
15849
16584
|
'enabled'?: boolean;
|
|
15850
16585
|
'configuration'?: {
|
|
@@ -15885,7 +16620,13 @@ type CreateServiceDeploymentData = {
|
|
|
15885
16620
|
'organizationId'?: string;
|
|
15886
16621
|
/** Array of directory groups that will have access */
|
|
15887
16622
|
'directoryGroupIds'?: string[];
|
|
16623
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
16624
|
+
'validateInternalTraffic'?: boolean;
|
|
16625
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16626
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
15888
16627
|
};
|
|
16628
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16629
|
+
'verificationMode'?: 'or' | 'and';
|
|
15889
16630
|
};
|
|
15890
16631
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
15891
16632
|
'domains'?: string[];
|
|
@@ -16009,7 +16750,13 @@ type PutServiceDeploymentResult = {
|
|
|
16009
16750
|
'organizationId'?: string;
|
|
16010
16751
|
/** Array of directory groups that will have access */
|
|
16011
16752
|
'directoryGroupIds'?: string[];
|
|
16753
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
16754
|
+
'validateInternalTraffic'?: boolean;
|
|
16755
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
16756
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16012
16757
|
};
|
|
16758
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
16759
|
+
'verificationMode'?: 'or' | 'and';
|
|
16013
16760
|
};
|
|
16014
16761
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
16015
16762
|
'domains'?: string[];
|
|
@@ -16116,8 +16863,12 @@ type PutServiceDeploymentResult = {
|
|
|
16116
16863
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16117
16864
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16118
16865
|
};
|
|
16119
|
-
|
|
16120
|
-
|
|
16866
|
+
'zonalRedundancy'?: {
|
|
16867
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16868
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16869
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16870
|
+
'minZones'?: number;
|
|
16871
|
+
};
|
|
16121
16872
|
'gpu'?: {
|
|
16122
16873
|
'enabled'?: boolean;
|
|
16123
16874
|
'configuration'?: {
|
|
@@ -16239,8 +16990,12 @@ type PutServiceDeploymentData = {
|
|
|
16239
16990
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16240
16991
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16241
16992
|
};
|
|
16242
|
-
|
|
16243
|
-
|
|
16993
|
+
'zonalRedundancy'?: {
|
|
16994
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
16995
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
16996
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
16997
|
+
'minZones'?: number;
|
|
16998
|
+
};
|
|
16244
16999
|
'gpu'?: {
|
|
16245
17000
|
'enabled'?: boolean;
|
|
16246
17001
|
'configuration'?: {
|
|
@@ -16296,8 +17051,12 @@ type PutServiceDeploymentData = {
|
|
|
16296
17051
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16297
17052
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16298
17053
|
};
|
|
16299
|
-
|
|
16300
|
-
|
|
17054
|
+
'zonalRedundancy'?: {
|
|
17055
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17056
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17057
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17058
|
+
'minZones'?: number;
|
|
17059
|
+
};
|
|
16301
17060
|
'gpu'?: {
|
|
16302
17061
|
'enabled'?: boolean;
|
|
16303
17062
|
'configuration'?: {
|
|
@@ -16349,8 +17108,12 @@ type PutServiceDeploymentData = {
|
|
|
16349
17108
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16350
17109
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16351
17110
|
};
|
|
16352
|
-
|
|
16353
|
-
|
|
17111
|
+
'zonalRedundancy'?: {
|
|
17112
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17113
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17114
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17115
|
+
'minZones'?: number;
|
|
17116
|
+
};
|
|
16354
17117
|
'gpu'?: {
|
|
16355
17118
|
'enabled'?: boolean;
|
|
16356
17119
|
'configuration'?: {
|
|
@@ -16391,7 +17154,13 @@ type PutServiceDeploymentData = {
|
|
|
16391
17154
|
'organizationId'?: string;
|
|
16392
17155
|
/** Array of directory groups that will have access */
|
|
16393
17156
|
'directoryGroupIds'?: string[];
|
|
17157
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
17158
|
+
'validateInternalTraffic'?: boolean;
|
|
17159
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17160
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16394
17161
|
};
|
|
17162
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17163
|
+
'verificationMode'?: 'or' | 'and';
|
|
16395
17164
|
};
|
|
16396
17165
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
16397
17166
|
'domains'?: string[];
|
|
@@ -16515,7 +17284,13 @@ type PatchServiceDeploymentResult = {
|
|
|
16515
17284
|
'organizationId'?: string;
|
|
16516
17285
|
/** Array of directory groups that will have access */
|
|
16517
17286
|
'directoryGroupIds'?: string[];
|
|
17287
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
17288
|
+
'validateInternalTraffic'?: boolean;
|
|
17289
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17290
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16518
17291
|
};
|
|
17292
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17293
|
+
'verificationMode'?: 'or' | 'and';
|
|
16519
17294
|
};
|
|
16520
17295
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
16521
17296
|
'domains'?: string[];
|
|
@@ -16622,8 +17397,12 @@ type PatchServiceDeploymentResult = {
|
|
|
16622
17397
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16623
17398
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16624
17399
|
};
|
|
16625
|
-
|
|
16626
|
-
|
|
17400
|
+
'zonalRedundancy'?: {
|
|
17401
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17402
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17403
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17404
|
+
'minZones'?: number;
|
|
17405
|
+
};
|
|
16627
17406
|
'gpu'?: {
|
|
16628
17407
|
'enabled'?: boolean;
|
|
16629
17408
|
'configuration'?: {
|
|
@@ -16745,8 +17524,12 @@ type PatchServiceDeploymentData = {
|
|
|
16745
17524
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16746
17525
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16747
17526
|
};
|
|
16748
|
-
|
|
16749
|
-
|
|
17527
|
+
'zonalRedundancy'?: {
|
|
17528
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17529
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17530
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17531
|
+
'minZones'?: number;
|
|
17532
|
+
};
|
|
16750
17533
|
'gpu'?: {
|
|
16751
17534
|
'enabled'?: boolean;
|
|
16752
17535
|
'configuration'?: {
|
|
@@ -16802,8 +17585,12 @@ type PatchServiceDeploymentData = {
|
|
|
16802
17585
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16803
17586
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16804
17587
|
};
|
|
16805
|
-
|
|
16806
|
-
|
|
17588
|
+
'zonalRedundancy'?: {
|
|
17589
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17590
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17591
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17592
|
+
'minZones'?: number;
|
|
17593
|
+
};
|
|
16807
17594
|
'gpu'?: {
|
|
16808
17595
|
'enabled'?: boolean;
|
|
16809
17596
|
'configuration'?: {
|
|
@@ -16855,8 +17642,12 @@ type PatchServiceDeploymentData = {
|
|
|
16855
17642
|
/** Configures the instance roll out strategy of your service. Currently only available via feature flag. */
|
|
16856
17643
|
'type'?: 'recreate' | 'rollout-steady' | 'rollout-balanced' | 'rollout-fast';
|
|
16857
17644
|
};
|
|
16858
|
-
|
|
16859
|
-
|
|
17645
|
+
'zonalRedundancy'?: {
|
|
17646
|
+
/** Defines scheduling behaviour across different zones within the same region. */
|
|
17647
|
+
'type'?: 'disabled' | 'preferred' | 'required';
|
|
17648
|
+
/** Defines how many zones are required and will prevent containers from additional scheduling into existing zones. (Only relevant if type is set to "required") */
|
|
17649
|
+
'minZones'?: number;
|
|
17650
|
+
};
|
|
16860
17651
|
'gpu'?: {
|
|
16861
17652
|
'enabled'?: boolean;
|
|
16862
17653
|
'configuration'?: {
|
|
@@ -16897,7 +17688,13 @@ type PatchServiceDeploymentData = {
|
|
|
16897
17688
|
'organizationId'?: string;
|
|
16898
17689
|
/** Array of directory groups that will have access */
|
|
16899
17690
|
'directoryGroupIds'?: string[];
|
|
17691
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
17692
|
+
'validateInternalTraffic'?: boolean;
|
|
17693
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
17694
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
16900
17695
|
};
|
|
17696
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
17697
|
+
'verificationMode'?: 'or' | 'and';
|
|
16901
17698
|
};
|
|
16902
17699
|
/** An array of domains to redirect to this port. Each domain must first be verified and registered to your account. */
|
|
16903
17700
|
'domains'?: string[];
|
|
@@ -17215,7 +18012,13 @@ type GetServiceResult = {
|
|
|
17215
18012
|
'organizationId'?: string;
|
|
17216
18013
|
/** List of directory groupIds, one of which the user has to be a member of. */
|
|
17217
18014
|
'directoryGroupIds'?: string[];
|
|
18015
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
18016
|
+
'validateInternalTraffic'?: boolean;
|
|
18017
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
18018
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
17218
18019
|
};
|
|
18020
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
18021
|
+
'verificationMode'?: 'or' | 'and';
|
|
17219
18022
|
};
|
|
17220
18023
|
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
17221
18024
|
'disableNfDomain'?: boolean;
|
|
@@ -18152,7 +18955,13 @@ type GetServicePortsResult = {
|
|
|
18152
18955
|
'organizationId'?: string;
|
|
18153
18956
|
/** List of directory groupIds, one of which the user has to be a member of. */
|
|
18154
18957
|
'directoryGroupIds'?: string[];
|
|
18958
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
18959
|
+
'validateInternalTraffic'?: boolean;
|
|
18960
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
18961
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
18155
18962
|
};
|
|
18963
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
18964
|
+
'verificationMode'?: 'or' | 'and';
|
|
18156
18965
|
};
|
|
18157
18966
|
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
18158
18967
|
'disableNfDomain'?: boolean;
|
|
@@ -18225,7 +19034,13 @@ type UpdateServicePortsData = {
|
|
|
18225
19034
|
'organizationId'?: string;
|
|
18226
19035
|
/** Array of directory groups that will have access */
|
|
18227
19036
|
'directoryGroupIds'?: string[];
|
|
19037
|
+
/** Enforce internal traffic through SSO authentication flow */
|
|
19038
|
+
'validateInternalTraffic'?: boolean;
|
|
19039
|
+
/** Allow internal traffic from same or shared projects via public DNS to skip SSO authentication flow */
|
|
19040
|
+
'allowInternalTrafficViaPublicDns'?: boolean;
|
|
18228
19041
|
};
|
|
19042
|
+
/** Mode used to verify multiple security features like ip policies and SSO authentication */
|
|
19043
|
+
'verificationMode'?: 'or' | 'and';
|
|
18229
19044
|
};
|
|
18230
19045
|
/** Disable routing on the default code.run domain for public HTTP ports with custom domains. */
|
|
18231
19046
|
'disableNfDomain'?: boolean;
|
|
@@ -19124,6 +19939,7 @@ type CreateTemplateResult = {
|
|
|
19124
19939
|
'apiVersion': 'v1.1';
|
|
19125
19940
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19126
19941
|
'arguments'?: any;
|
|
19942
|
+
'$schema'?: string;
|
|
19127
19943
|
'spec': any;
|
|
19128
19944
|
/** Identifier for the template Example: "example-template" */
|
|
19129
19945
|
'id': string;
|
|
@@ -19163,6 +19979,7 @@ type CreateTemplateResult = {
|
|
|
19163
19979
|
'apiVersion': 'v1.1';
|
|
19164
19980
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19165
19981
|
'arguments'?: any;
|
|
19982
|
+
'$schema'?: string;
|
|
19166
19983
|
'spec': any;
|
|
19167
19984
|
'refs'?: any;
|
|
19168
19985
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -19192,6 +20009,7 @@ type CreateTemplateData = {
|
|
|
19192
20009
|
'apiVersion': 'v1.1';
|
|
19193
20010
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19194
20011
|
'arguments'?: any;
|
|
20012
|
+
'$schema'?: string;
|
|
19195
20013
|
'spec': any;
|
|
19196
20014
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
19197
20015
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
@@ -19215,6 +20033,7 @@ type CreateTemplateData = {
|
|
|
19215
20033
|
'apiVersion': 'v1.1';
|
|
19216
20034
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19217
20035
|
'arguments'?: any;
|
|
20036
|
+
'$schema'?: string;
|
|
19218
20037
|
'spec': any;
|
|
19219
20038
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
19220
20039
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
@@ -19251,6 +20070,7 @@ type CreateTemplateData = {
|
|
|
19251
20070
|
'description'?: string;
|
|
19252
20071
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19253
20072
|
'arguments'?: any;
|
|
20073
|
+
'$schema'?: string;
|
|
19254
20074
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
19255
20075
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
19256
20076
|
/** Argument overrides stored outside of the template. If GitOps is enabled, these will not be saved in version control. */
|
|
@@ -19299,6 +20119,7 @@ type GetTemplateResult = {
|
|
|
19299
20119
|
'apiVersion': 'v1.1';
|
|
19300
20120
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19301
20121
|
'arguments'?: any;
|
|
20122
|
+
'$schema'?: string;
|
|
19302
20123
|
'spec': any;
|
|
19303
20124
|
/** Identifier for the template Example: "example-template" */
|
|
19304
20125
|
'id': string;
|
|
@@ -19365,6 +20186,7 @@ type UpdateTemplateResult = {
|
|
|
19365
20186
|
'apiVersion': 'v1.1';
|
|
19366
20187
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19367
20188
|
'arguments'?: any;
|
|
20189
|
+
'$schema'?: string;
|
|
19368
20190
|
'spec': any;
|
|
19369
20191
|
/** Identifier for the template Example: "example-template" */
|
|
19370
20192
|
'id': string;
|
|
@@ -19404,6 +20226,7 @@ type UpdateTemplateResult = {
|
|
|
19404
20226
|
'apiVersion': 'v1.1';
|
|
19405
20227
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19406
20228
|
'arguments'?: any;
|
|
20229
|
+
'$schema'?: string;
|
|
19407
20230
|
'spec': any;
|
|
19408
20231
|
'refs'?: any;
|
|
19409
20232
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -19437,6 +20260,7 @@ type UpdateTemplateData = {
|
|
|
19437
20260
|
'apiVersion': 'v1.1';
|
|
19438
20261
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19439
20262
|
'arguments'?: any;
|
|
20263
|
+
'$schema'?: string;
|
|
19440
20264
|
'spec': any;
|
|
19441
20265
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
19442
20266
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
@@ -19456,6 +20280,7 @@ type UpdateTemplateData = {
|
|
|
19456
20280
|
'apiVersion': 'v1.1';
|
|
19457
20281
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19458
20282
|
'arguments'?: any;
|
|
20283
|
+
'$schema'?: string;
|
|
19459
20284
|
'spec': any;
|
|
19460
20285
|
/** Defines the concurrency behaviour of the template with respect to parallel runs. Example: "allow" */
|
|
19461
20286
|
'concurrencyPolicy'?: 'allow' | 'queue' | 'forbid';
|
|
@@ -19546,6 +20371,7 @@ type RunTemplateResult = {
|
|
|
19546
20371
|
'apiVersion': 'v1.1';
|
|
19547
20372
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19548
20373
|
'arguments'?: any;
|
|
20374
|
+
'$schema'?: string;
|
|
19549
20375
|
'spec': any;
|
|
19550
20376
|
'refs'?: any;
|
|
19551
20377
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -19643,6 +20469,7 @@ type GetTemplaterunResult = {
|
|
|
19643
20469
|
'apiVersion': 'v1.1';
|
|
19644
20470
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19645
20471
|
'arguments'?: any;
|
|
20472
|
+
'$schema'?: string;
|
|
19646
20473
|
'spec': any;
|
|
19647
20474
|
'refs'?: any;
|
|
19648
20475
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -19685,6 +20512,7 @@ type AbortTemplaterunResult = {
|
|
|
19685
20512
|
'apiVersion': 'v1.1';
|
|
19686
20513
|
/** A set of arguments that can be referenced in a template using '${args.argumentName}'. */
|
|
19687
20514
|
'arguments'?: any;
|
|
20515
|
+
'$schema'?: string;
|
|
19688
20516
|
'spec': any;
|
|
19689
20517
|
'refs'?: any;
|
|
19690
20518
|
/** Identifier for the template run Example: "3dd592f6-ce63-45ee-acf8-13dc5ec5235c" */
|
|
@@ -19829,6 +20657,9 @@ declare class ApiClient {
|
|
|
19829
20657
|
cloud: {
|
|
19830
20658
|
providers: ListCloudProvidersCall;
|
|
19831
20659
|
clusters: ListCloudClustersCall;
|
|
20660
|
+
cluster: {
|
|
20661
|
+
nodes: ListCloudClusterNodesCall;
|
|
20662
|
+
};
|
|
19832
20663
|
dockerRegistry: ListCloudDockerregistryCall;
|
|
19833
20664
|
integrations: ListCloudIntegrationsCall;
|
|
19834
20665
|
nodeTypes: ListCloudNodetypesCall;
|
|
@@ -20060,7 +20891,9 @@ declare class ApiClient {
|
|
|
20060
20891
|
};
|
|
20061
20892
|
restore: {
|
|
20062
20893
|
addon: {
|
|
20063
|
-
backup: RestoreAddonBackupCall
|
|
20894
|
+
backup: RestoreAddonBackupCall & {
|
|
20895
|
+
global: RestoreAddonBackupGlobalCall;
|
|
20896
|
+
};
|
|
20064
20897
|
};
|
|
20065
20898
|
};
|
|
20066
20899
|
retain: {
|
|
@@ -20184,6 +21017,9 @@ declare class ApiClient {
|
|
|
20184
21017
|
cloud: {
|
|
20185
21018
|
providers: ListCloudProvidersEndpoint;
|
|
20186
21019
|
clusters: ListCloudClustersEndpoint;
|
|
21020
|
+
cluster: {
|
|
21021
|
+
nodes: ListCloudClusterNodesEndpoint;
|
|
21022
|
+
};
|
|
20187
21023
|
dockerRegistry: ListCloudDockerregistryEndpoint;
|
|
20188
21024
|
integrations: ListCloudIntegrationsEndpoint;
|
|
20189
21025
|
nodeTypes: ListCloudNodetypesEndpoint;
|
|
@@ -20415,7 +21251,9 @@ declare class ApiClient {
|
|
|
20415
21251
|
};
|
|
20416
21252
|
restore: {
|
|
20417
21253
|
addon: {
|
|
20418
|
-
backup: RestoreAddonBackupEndpoint
|
|
21254
|
+
backup: RestoreAddonBackupEndpoint & {
|
|
21255
|
+
global: RestoreAddonBackupGlobalEndpoint;
|
|
21256
|
+
};
|
|
20419
21257
|
};
|
|
20420
21258
|
};
|
|
20421
21259
|
retain: {
|
|
@@ -20469,4 +21307,4 @@ type ApiClientOpts = {
|
|
|
20469
21307
|
customUserAgent?: string;
|
|
20470
21308
|
};
|
|
20471
21309
|
|
|
20472
|
-
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|
|
21310
|
+
export { AbortAddonBackupCall, AbortAddonBackupEndpoint, AbortAddonBackupParameters, AbortAddonBackupRequest, AbortAddonBackupResult, AbortAddonRestoreCall, AbortAddonRestoreData, AbortAddonRestoreEndpoint, AbortAddonRestoreParameters, AbortAddonRestoreRequest, AbortAddonRestoreResult, AbortJobBuildCall, AbortJobBuildEndpoint, AbortJobBuildParameters, AbortJobBuildRequest, AbortJobBuildResult, AbortJobRunCall, AbortJobRunEndpoint, AbortJobRunParameters, AbortJobRunRequest, AbortJobRunResult, AbortReleaseflowrunCall, AbortReleaseflowrunEndpoint, AbortReleaseflowrunParameters, AbortReleaseflowrunRequest, AbortReleaseflowrunResult, AbortServiceBuildCall, AbortServiceBuildEndpoint, AbortServiceBuildParameters, AbortServiceBuildRequest, AbortServiceBuildResult, AbortTemplaterunCall, AbortTemplaterunEndpoint, AbortTemplaterunParameters, AbortTemplaterunRequest, AbortTemplaterunResult, AddDomainSubdomainCall, AddDomainSubdomainData, AddDomainSubdomainEndpoint, AddDomainSubdomainParameters, AddDomainSubdomainRequest, AddDomainSubdomainResult, AddRegistrycredentialsCall, AddRegistrycredentialsData, AddRegistrycredentialsEndpoint, AddRegistrycredentialsRequest, AddRegistrycredentialsResult, AddSubdomainPathCall, AddSubdomainPathData, AddSubdomainPathEndpoint, AddSubdomainPathParameters, AddSubdomainPathRequest, AddSubdomainPathResult, AddTagCall, AddTagData, AddTagEndpoint, AddTagRequest, AddTagResult, ApiCallError, ApiCallResponse, ApiClient, ApiClientContext, ApiClientContextProvider, ApiClientContextWrapper, ApiClientFileContextProvider, ApiClientInMemoryContextProvider, ApiClientOpts, ApiEndpoint, AssignSubdomainPathCall, AssignSubdomainPathData, AssignSubdomainPathEndpoint, AssignSubdomainPathParameters, AssignSubdomainPathRequest, AssignSubdomainPathResult, AssignSubdomainServiceCall, AssignSubdomainServiceData, AssignSubdomainServiceEndpoint, AssignSubdomainServiceParameters, AssignSubdomainServiceRequest, AssignSubdomainServiceResult, AttachVolumeCall, AttachVolumeData, AttachVolumeEndpoint, AttachVolumeParameters, AttachVolumeRequest, AttachVolumeResult, BackupAddonCall, BackupAddonData, BackupAddonEndpoint, BackupAddonParameters, BackupAddonRequest, BackupAddonResult, CommandResult, CreateAddonBackupscheduleCall, CreateAddonBackupscheduleData, CreateAddonBackupscheduleEndpoint, CreateAddonBackupscheduleParameters, CreateAddonBackupscheduleRequest, CreateAddonBackupscheduleResult, CreateAddonCall, CreateAddonData, CreateAddonEndpoint, CreateAddonParameters, CreateAddonRequest, CreateAddonResult, CreateCloudClusterCall, CreateCloudClusterData, CreateCloudClusterEndpoint, CreateCloudClusterRequest, CreateCloudClusterResult, CreateCloudDockerregistryCall, CreateCloudDockerregistryData, CreateCloudDockerregistryEndpoint, CreateCloudDockerregistryRequest, CreateCloudDockerregistryResult, CreateCloudIntegrationCall, CreateCloudIntegrationData, CreateCloudIntegrationEndpoint, CreateCloudIntegrationRequest, CreateCloudIntegrationResult, CreateCustomvcsTokenCall, CreateCustomvcsTokenEndpoint, CreateCustomvcsTokenOptions, CreateCustomvcsTokenParameters, CreateCustomvcsTokenRequest, CreateCustomvcsTokenResult, CreateDomainCall, CreateDomainData, CreateDomainEndpoint, CreateDomainRequest, CreateDomainResult, CreateJobCronCall, CreateJobCronData, CreateJobCronEndpoint, CreateJobCronParameters, CreateJobCronRequest, CreateJobCronResult, CreateJobManualCall, CreateJobManualData, CreateJobManualEndpoint, CreateJobManualParameters, CreateJobManualRequest, CreateJobManualResult, CreateLogsinkCall, CreateLogsinkData, CreateLogsinkEndpoint, CreateLogsinkRequest, CreateLogsinkResult, CreateNotificationCall, CreateNotificationData, CreateNotificationEndpoint, CreateNotificationParameters, CreateNotificationRequest, CreateNotificationResult, CreateProjectCall, CreateProjectData, CreateProjectEndpoint, CreateProjectRequest, CreateProjectResult, CreateSecretCall, CreateSecretData, CreateSecretEndpoint, CreateSecretParameters, CreateSecretRequest, CreateSecretResult, CreateServiceBuildCall, CreateServiceBuildData, CreateServiceBuildEndpoint, CreateServiceBuildParameters, CreateServiceBuildRequest, CreateServiceBuildResult, CreateServiceCombinedCall, CreateServiceCombinedData, CreateServiceCombinedEndpoint, CreateServiceCombinedParameters, CreateServiceCombinedRequest, CreateServiceCombinedResult, CreateServiceDeploymentCall, CreateServiceDeploymentData, CreateServiceDeploymentEndpoint, CreateServiceDeploymentParameters, CreateServiceDeploymentRequest, CreateServiceDeploymentResult, CreateTemplateCall, CreateTemplateData, CreateTemplateEndpoint, CreateTemplateRequest, CreateTemplateResult, CreateVolumeCall, CreateVolumeData, CreateVolumeEndpoint, CreateVolumeParameters, CreateVolumeRequest, CreateVolumeResult, DeleteAddonBackupscheduleCall, DeleteAddonBackupscheduleEndpoint, DeleteAddonBackupscheduleParameters, DeleteAddonBackupscheduleRequest, DeleteAddonBackupscheduleResult, DeleteAddonCall, DeleteAddonEndpoint, DeleteAddonParameters, DeleteAddonRequest, DeleteAddonResult, DeleteApiEndpoint, DeleteBackupCall, DeleteBackupEndpoint, DeleteBackupParameters, DeleteBackupRequest, DeleteBackupResult, DeleteCloudClusterCall, DeleteCloudClusterEndpoint, DeleteCloudClusterParameters, DeleteCloudClusterRequest, DeleteCloudClusterResult, DeleteCloudDockerregistryCall, DeleteCloudDockerregistryEndpoint, DeleteCloudDockerregistryParameters, DeleteCloudDockerregistryRequest, DeleteCloudDockerregistryResult, DeleteCloudIntegrationCall, DeleteCloudIntegrationEndpoint, DeleteCloudIntegrationParameters, DeleteCloudIntegrationRequest, DeleteCloudIntegrationResult, DeleteDomainCall, DeleteDomainEndpoint, DeleteDomainParameters, DeleteDomainRequest, DeleteDomainResult, DeleteJobCall, DeleteJobEndpoint, DeleteJobParameters, DeleteJobRequest, DeleteJobResult, DeleteLogsinkCall, DeleteLogsinkEndpoint, DeleteLogsinkParameters, DeleteLogsinkRequest, DeleteLogsinkResult, DeleteNotificationCall, DeleteNotificationEndpoint, DeleteNotificationParameters, DeleteNotificationRequest, DeleteNotificationResult, DeletePreviewtemplatepreviewCall, DeletePreviewtemplatepreviewEndpoint, DeletePreviewtemplatepreviewParameters, DeletePreviewtemplatepreviewRequest, DeletePreviewtemplatepreviewResult, DeleteProjectCall, DeleteProjectEndpoint, DeleteProjectOptions, DeleteProjectParameters, DeleteProjectRequest, DeleteProjectResult, DeleteRegistrycredentialsCall, DeleteRegistrycredentialsEndpoint, DeleteRegistrycredentialsParameters, DeleteRegistrycredentialsRequest, DeleteRegistrycredentialsResult, DeleteSecretCall, DeleteSecretEndpoint, DeleteSecretParameters, DeleteSecretRequest, DeleteSecretResult, DeleteSecretlinkCall, DeleteSecretlinkEndpoint, DeleteSecretlinkParameters, DeleteSecretlinkRequest, DeleteSecretlinkResult, DeleteServiceCall, DeleteServiceEndpoint, DeleteServiceOptions, DeleteServiceParameters, DeleteServiceRequest, DeleteServiceResult, DeleteSubdomainCall, DeleteSubdomainEndpoint, DeleteSubdomainParameters, DeleteSubdomainPathCall, DeleteSubdomainPathEndpoint, DeleteSubdomainPathParameters, DeleteSubdomainPathRequest, DeleteSubdomainPathResult, DeleteSubdomainRequest, DeleteSubdomainResult, DeleteTagCall, DeleteTagEndpoint, DeleteTagParameters, DeleteTagRequest, DeleteTagResult, DeleteTemplateCall, DeleteTemplateEndpoint, DeleteTemplateParameters, DeleteTemplateRequest, DeleteTemplateResult, DeleteVolumeCall, DeleteVolumeEndpoint, DeleteVolumeParameters, DeleteVolumeRequest, DeleteVolumeResult, DetachVolumeCall, DetachVolumeData, DetachVolumeEndpoint, DetachVolumeParameters, DetachVolumeRequest, DetachVolumeResult, DisableSubdomainCdnCall, DisableSubdomainCdnData, DisableSubdomainCdnEndpoint, DisableSubdomainCdnParameters, DisableSubdomainCdnRequest, DisableSubdomainCdnResult, EnableSubdomainCdnCall, EnableSubdomainCdnData, EnableSubdomainCdnEndpoint, EnableSubdomainCdnParameters, EnableSubdomainCdnRequest, EnableSubdomainCdnResult, ExecCommand, ExecCommandData, ExecCommandStandard, ExecSessionData, GetAddonBackupCall, GetAddonBackupDownloadCall, GetAddonBackupDownloadEndpoint, GetAddonBackupDownloadParameters, GetAddonBackupDownloadRequest, GetAddonBackupDownloadResult, GetAddonBackupEndpoint, GetAddonBackupLogsCall, GetAddonBackupParameters, GetAddonBackupRequest, GetAddonBackupResult, GetAddonBackupsCall, GetAddonBackupsEndpoint, GetAddonBackupsOptions, GetAddonBackupsParameters, GetAddonBackupsRequest, GetAddonBackupsResult, GetAddonBackupschedulesCall, GetAddonBackupschedulesEndpoint, GetAddonBackupschedulesOptions, GetAddonBackupschedulesParameters, GetAddonBackupschedulesRequest, GetAddonBackupschedulesResult, GetAddonCall, GetAddonContainersCall, GetAddonContainersEndpoint, GetAddonContainersOptions, GetAddonContainersParameters, GetAddonContainersRequest, GetAddonContainersResult, GetAddonCredentialsCall, GetAddonCredentialsEndpoint, GetAddonCredentialsParameters, GetAddonCredentialsRequest, GetAddonCredentialsResult, GetAddonEndpoint, GetAddonLogsCall, GetAddonMetricsCall, GetAddonMetricsRangeCall, GetAddonParameters, GetAddonPitrwindowCall, GetAddonPitrwindowEndpoint, GetAddonPitrwindowParameters, GetAddonPitrwindowRequest, GetAddonPitrwindowResult, GetAddonRequest, GetAddonRestoresCall, GetAddonRestoresEndpoint, GetAddonRestoresLogsCall, GetAddonRestoresOptions, GetAddonRestoresParameters, GetAddonRestoresRequest, GetAddonRestoresResult, GetAddonResult, GetAddonTypesCall, GetAddonTypesEndpoint, GetAddonTypesRequest, GetAddonTypesResult, GetAddonVersionCall, GetAddonVersionEndpoint, GetAddonVersionParameters, GetAddonVersionRequest, GetAddonVersionResult, GetApiEndpoint, GetCloudClusterCall, GetCloudClusterEndpoint, GetCloudClusterParameters, GetCloudClusterRequest, GetCloudClusterResult, GetCloudDockerregistryCall, GetCloudDockerregistryEndpoint, GetCloudDockerregistryParameters, GetCloudDockerregistryRequest, GetCloudDockerregistryResult, GetCloudIntegrationCall, GetCloudIntegrationEndpoint, GetCloudIntegrationParameters, GetCloudIntegrationRequest, GetCloudIntegrationResult, GetDnsidCall, GetDnsidEndpoint, GetDnsidRequest, GetDnsidResult, GetDomainCall, GetDomainEndpoint, GetDomainParameters, GetDomainRequest, GetDomainResult, GetInvoiceDetailsCall, GetInvoiceDetailsEndpoint, GetInvoiceDetailsOptions, GetInvoiceDetailsRequest, GetInvoiceDetailsResult, GetJobBranchesCall, GetJobBranchesEndpoint, GetJobBranchesOptions, GetJobBranchesParameters, GetJobBranchesRequest, GetJobBranchesResult, GetJobBuildCall, GetJobBuildEndpoint, GetJobBuildMetricsCall, GetJobBuildMetricsRangeCall, GetJobBuildParameters, GetJobBuildRequest, GetJobBuildResult, GetJobBuildargumentdetailsCall, GetJobBuildargumentdetailsEndpoint, GetJobBuildargumentdetailsParameters, GetJobBuildargumentdetailsRequest, GetJobBuildargumentdetailsResult, GetJobBuildargumentsCall, GetJobBuildargumentsEndpoint, GetJobBuildargumentsOptions, GetJobBuildargumentsParameters, GetJobBuildargumentsRequest, GetJobBuildargumentsResult, GetJobBuildlogsCall, GetJobBuildsCall, GetJobBuildsEndpoint, GetJobBuildsOptions, GetJobBuildsParameters, GetJobBuildsRequest, GetJobBuildsResult, GetJobCall, GetJobContainersCall, GetJobContainersEndpoint, GetJobContainersOptions, GetJobContainersParameters, GetJobContainersRequest, GetJobContainersResult, GetJobDeploymentCall, GetJobDeploymentEndpoint, GetJobDeploymentParameters, GetJobDeploymentRequest, GetJobDeploymentResult, GetJobEndpoint, GetJobHealthchecksCall, GetJobHealthchecksEndpoint, GetJobHealthchecksParameters, GetJobHealthchecksRequest, GetJobHealthchecksResult, GetJobLogsCall, GetJobMetricsCall, GetJobMetricsRangeCall, GetJobParameters, GetJobPullrequestsCall, GetJobPullrequestsEndpoint, GetJobPullrequestsOptions, GetJobPullrequestsParameters, GetJobPullrequestsRequest, GetJobPullrequestsResult, GetJobRequest, GetJobResult, GetJobRunCall, GetJobRunEndpoint, GetJobRunParameters, GetJobRunRequest, GetJobRunResult, GetJobRunsCall, GetJobRunsEndpoint, GetJobRunsOptions, GetJobRunsParameters, GetJobRunsRequest, GetJobRunsResult, GetJobRuntimeenvironmentCall, GetJobRuntimeenvironmentEndpoint, GetJobRuntimeenvironmentOptions, GetJobRuntimeenvironmentParameters, GetJobRuntimeenvironmentRequest, GetJobRuntimeenvironmentResult, GetJobRuntimeenvironmentdetailsCall, GetJobRuntimeenvironmentdetailsEndpoint, GetJobRuntimeenvironmentdetailsParameters, GetJobRuntimeenvironmentdetailsRequest, GetJobRuntimeenvironmentdetailsResult, GetLogsinkCall, GetLogsinkEndpoint, GetLogsinkParameters, GetLogsinkRequest, GetLogsinkResult, GetNotificationCall, GetNotificationEndpoint, GetNotificationParameters, GetNotificationRequest, GetNotificationResult, GetPipelineCall, GetPipelineEndpoint, GetPipelineParameters, GetPipelineRequest, GetPipelineResult, GetPreviewtemplateCall, GetPreviewtemplateEndpoint, GetPreviewtemplateOptions, GetPreviewtemplateParameters, GetPreviewtemplateRequest, GetPreviewtemplateResult, GetPreviewtemplaterunCall, GetPreviewtemplaterunEndpoint, GetPreviewtemplaterunParameters, GetPreviewtemplaterunRequest, GetPreviewtemplaterunResult, GetProjectCall, GetProjectEndpoint, GetProjectParameters, GetProjectRequest, GetProjectResult, GetRegistrycredentialsCall, GetRegistrycredentialsEndpoint, GetRegistrycredentialsParameters, GetRegistrycredentialsRequest, GetRegistrycredentialsResult, GetReleaseflowCall, GetReleaseflowEndpoint, GetReleaseflowParameters, GetReleaseflowRequest, GetReleaseflowResult, GetReleaseflowrunCall, GetReleaseflowrunEndpoint, GetReleaseflowrunParameters, GetReleaseflowrunRequest, GetReleaseflowrunResult, GetSecretCall, GetSecretEndpoint, GetSecretOptions, GetSecretParameters, GetSecretRequest, GetSecretResult, GetSecretdetailsCall, GetSecretdetailsEndpoint, GetSecretdetailsParameters, GetSecretdetailsRequest, GetSecretdetailsResult, GetSecretlinkCall, GetSecretlinkEndpoint, GetSecretlinkParameters, GetSecretlinkRequest, GetSecretlinkResult, GetServiceBranchesCall, GetServiceBranchesEndpoint, GetServiceBranchesOptions, GetServiceBranchesParameters, GetServiceBranchesRequest, GetServiceBranchesResult, GetServiceBuildCall, GetServiceBuildEndpoint, GetServiceBuildMetricsCall, GetServiceBuildMetricsRangeCall, GetServiceBuildParameters, GetServiceBuildRequest, GetServiceBuildResult, GetServiceBuildargumentdetailsCall, GetServiceBuildargumentdetailsEndpoint, GetServiceBuildargumentdetailsParameters, GetServiceBuildargumentdetailsRequest, GetServiceBuildargumentdetailsResult, GetServiceBuildargumentsCall, GetServiceBuildargumentsEndpoint, GetServiceBuildargumentsOptions, GetServiceBuildargumentsParameters, GetServiceBuildargumentsRequest, GetServiceBuildargumentsResult, GetServiceBuildlogsCall, GetServiceBuildsCall, GetServiceBuildsEndpoint, GetServiceBuildsOptions, GetServiceBuildsParameters, GetServiceBuildsRequest, GetServiceBuildsResult, GetServiceCall, GetServiceContainersCall, GetServiceContainersEndpoint, GetServiceContainersOptions, GetServiceContainersParameters, GetServiceContainersRequest, GetServiceContainersResult, GetServiceDeploymentCall, GetServiceDeploymentEndpoint, GetServiceDeploymentParameters, GetServiceDeploymentRequest, GetServiceDeploymentResult, GetServiceEndpoint, GetServiceHealthchecksCall, GetServiceHealthchecksEndpoint, GetServiceHealthchecksParameters, GetServiceHealthchecksRequest, GetServiceHealthchecksResult, GetServiceLogsCall, GetServiceMetricsCall, GetServiceMetricsRangeCall, GetServiceParameters, GetServicePortsCall, GetServicePortsEndpoint, GetServicePortsParameters, GetServicePortsRequest, GetServicePortsResult, GetServicePullrequestsCall, GetServicePullrequestsEndpoint, GetServicePullrequestsOptions, GetServicePullrequestsParameters, GetServicePullrequestsRequest, GetServicePullrequestsResult, GetServiceRequest, GetServiceResult, GetServiceRuntimeenvironmentCall, GetServiceRuntimeenvironmentEndpoint, GetServiceRuntimeenvironmentOptions, GetServiceRuntimeenvironmentParameters, GetServiceRuntimeenvironmentRequest, GetServiceRuntimeenvironmentResult, GetServiceRuntimeenvironmentdetailsCall, GetServiceRuntimeenvironmentdetailsEndpoint, GetServiceRuntimeenvironmentdetailsParameters, GetServiceRuntimeenvironmentdetailsRequest, GetServiceRuntimeenvironmentdetailsResult, GetSubdomainCall, GetSubdomainEndpoint, GetSubdomainParameters, GetSubdomainPathCall, GetSubdomainPathEndpoint, GetSubdomainPathParameters, GetSubdomainPathRequest, GetSubdomainPathResult, GetSubdomainRequest, GetSubdomainResult, GetTagCall, GetTagEndpoint, GetTagParameters, GetTagRequest, GetTagResult, GetTemplateCall, GetTemplateEndpoint, GetTemplateOptions, GetTemplateParameters, GetTemplateRequest, GetTemplateResult, GetTemplaterunCall, GetTemplaterunEndpoint, GetTemplaterunParameters, GetTemplaterunRequest, GetTemplaterunResult, GetVolumeCall, GetVolumeEndpoint, GetVolumeParameters, GetVolumeRequest, GetVolumeResult, ImportAddonBackupCall, ImportAddonBackupData, ImportAddonBackupEndpoint, ImportAddonBackupParameters, ImportAddonBackupRequest, ImportAddonBackupResult, ImportDomaincertificateCall, ImportDomaincertificateData, ImportDomaincertificateEndpoint, ImportDomaincertificateParameters, ImportDomaincertificateRequest, ImportDomaincertificateResult, ListAddonsCall, ListAddonsEndpoint, ListAddonsOptions, ListAddonsParameters, ListAddonsRequest, ListAddonsResult, ListBranchesCall, ListBranchesEndpoint, ListBranchesOptions, ListBranchesParameters, ListBranchesRequest, ListBranchesResult, ListCloudClusterNodesCall, ListCloudClusterNodesEndpoint, ListCloudClusterNodesOptions, ListCloudClusterNodesParameters, ListCloudClusterNodesRequest, ListCloudClusterNodesResult, ListCloudClustersCall, ListCloudClustersEndpoint, ListCloudClustersOptions, ListCloudClustersRequest, ListCloudClustersResult, ListCloudDockerregistryCall, ListCloudDockerregistryEndpoint, ListCloudDockerregistryOptions, ListCloudDockerregistryRequest, ListCloudDockerregistryResult, ListCloudIntegrationsCall, ListCloudIntegrationsEndpoint, ListCloudIntegrationsOptions, ListCloudIntegrationsRequest, ListCloudIntegrationsResult, ListCloudNodetypesCall, ListCloudNodetypesEndpoint, ListCloudNodetypesOptions, ListCloudNodetypesRequest, ListCloudNodetypesResult, ListCloudProvidersCall, ListCloudProvidersEndpoint, ListCloudProvidersRequest, ListCloudProvidersResult, ListCloudRegionsCall, ListCloudRegionsEndpoint, ListCloudRegionsOptions, ListCloudRegionsRequest, ListCloudRegionsResult, ListDomainsCall, ListDomainsEndpoint, ListDomainsOptions, ListDomainsRequest, ListDomainsResult, ListInvoicesCall, ListInvoicesEndpoint, ListInvoicesOptions, ListInvoicesRequest, ListInvoicesResult, ListJobsCall, ListJobsEndpoint, ListJobsOptions, ListJobsParameters, ListJobsRequest, ListJobsResult, ListLogsinksCall, ListLogsinksEndpoint, ListLogsinksOptions, ListLogsinksRequest, ListLogsinksResult, ListNotificationsCall, ListNotificationsEndpoint, ListNotificationsOptions, ListNotificationsRequest, ListNotificationsResult, ListPipelinesCall, ListPipelinesEndpoint, ListPipelinesOptions, ListPipelinesParameters, ListPipelinesRequest, ListPipelinesResult, ListPlansCall, ListPlansEndpoint, ListPlansRequest, ListPlansResult, ListPreviewtemplatepreviewsCall, ListPreviewtemplatepreviewsEndpoint, ListPreviewtemplatepreviewsOptions, ListPreviewtemplatepreviewsParameters, ListPreviewtemplatepreviewsRequest, ListPreviewtemplatepreviewsResult, ListPreviewtemplaterunsCall, ListPreviewtemplaterunsEndpoint, ListPreviewtemplaterunsOptions, ListPreviewtemplaterunsParameters, ListPreviewtemplaterunsRequest, ListPreviewtemplaterunsResult, ListProjectsCall, ListProjectsEndpoint, ListProjectsOptions, ListProjectsRequest, ListProjectsResult, ListRegionsCall, ListRegionsEndpoint, ListRegionsRequest, ListRegionsResult, ListRegistrycredentialsCall, ListRegistrycredentialsEndpoint, ListRegistrycredentialsOptions, ListRegistrycredentialsRequest, ListRegistrycredentialsResult, ListReleaseflowrunsCall, ListReleaseflowrunsEndpoint, ListReleaseflowrunsOptions, ListReleaseflowrunsParameters, ListReleaseflowrunsRequest, ListReleaseflowrunsResult, ListReposCall, ListReposEndpoint, ListReposOptions, ListReposRequest, ListReposResult, ListSecretsCall, ListSecretsEndpoint, ListSecretsOptions, ListSecretsParameters, ListSecretsRequest, ListSecretsResult, ListServicesCall, ListServicesEndpoint, ListServicesOptions, ListServicesParameters, ListServicesRequest, ListServicesResult, ListSubdomainPathCall, ListSubdomainPathEndpoint, ListSubdomainPathParameters, ListSubdomainPathRequest, ListSubdomainPathResult, ListTagsCall, ListTagsEndpoint, ListTagsOptions, ListTagsRequest, ListTagsResult, ListTemplaterunsCall, ListTemplaterunsEndpoint, ListTemplaterunsOptions, ListTemplaterunsParameters, ListTemplaterunsRequest, ListTemplaterunsResult, ListTemplatesCall, ListTemplatesEndpoint, ListTemplatesOptions, ListTemplatesRequest, ListTemplatesResult, ListVcsCall, ListVcsEndpoint, ListVcsRequest, ListVcsResult, ListVolumesCall, ListVolumesEndpoint, ListVolumesParameters, ListVolumesRequest, ListVolumesResult, LogLine, LogType, MetricType, MetricUnit, MetricValue, MetricsEntry, MetricsRangeRequestData, MetricsSingleRequestData, NorthflankApiCallError, NorthflankExecCommand, NorthflankLogFetch, NorthflankMetricFetch, NorthflankPortForwarder, PatchAddonCall, PatchAddonData, PatchAddonEndpoint, PatchAddonParameters, PatchAddonRequest, PatchAddonResult, PatchApiEndpoint, PatchJobCronCall, PatchJobCronData, PatchJobCronEndpoint, PatchJobCronParameters, PatchJobCronRequest, PatchJobCronResult, PatchJobManualCall, PatchJobManualData, PatchJobManualEndpoint, PatchJobManualParameters, PatchJobManualRequest, PatchJobManualResult, PatchProjectCall, PatchProjectData, PatchProjectEndpoint, PatchProjectParameters, PatchProjectRequest, PatchProjectResult, PatchSecretCall, PatchSecretData, PatchSecretEndpoint, PatchSecretParameters, PatchSecretRequest, PatchSecretResult, PatchServiceBuildCall, PatchServiceBuildData, PatchServiceBuildEndpoint, PatchServiceBuildParameters, PatchServiceBuildRequest, PatchServiceBuildResult, PatchServiceCombinedCall, PatchServiceCombinedData, PatchServiceCombinedEndpoint, PatchServiceCombinedParameters, PatchServiceCombinedRequest, PatchServiceCombinedResult, PatchServiceDeploymentCall, PatchServiceDeploymentData, PatchServiceDeploymentEndpoint, PatchServiceDeploymentParameters, PatchServiceDeploymentRequest, PatchServiceDeploymentResult, PatchTagCall, PatchTagData, PatchTagEndpoint, PatchTagParameters, PatchTagRequest, PatchTagResult, PauseAddonCall, PauseAddonEndpoint, PauseAddonParameters, PauseAddonRequest, PauseAddonResult, PauseJobCall, PauseJobEndpoint, PauseJobParameters, PauseJobRequest, PauseJobResult, PauseLogsinkCall, PauseLogsinkEndpoint, PauseLogsinkParameters, PauseLogsinkRequest, PauseLogsinkResult, PauseServiceCall, PauseServiceEndpoint, PauseServiceParameters, PauseServiceRequest, PauseServiceResult, PortForwardingInfo, PortForwardingResult, PostApiEndpoint, PutAddonCall, PutAddonData, PutAddonEndpoint, PutAddonParameters, PutAddonRequest, PutAddonResult, PutApiEndpoint, PutJobCronCall, PutJobCronData, PutJobCronEndpoint, PutJobCronParameters, PutJobCronRequest, PutJobCronResult, PutJobManualCall, PutJobManualData, PutJobManualEndpoint, PutJobManualParameters, PutJobManualRequest, PutJobManualResult, PutProjectCall, PutProjectData, PutProjectEndpoint, PutProjectRequest, PutProjectResult, PutSecretCall, PutSecretData, PutSecretEndpoint, PutSecretParameters, PutSecretRequest, PutSecretResult, PutServiceBuildCall, PutServiceBuildData, PutServiceBuildEndpoint, PutServiceBuildParameters, PutServiceBuildRequest, PutServiceBuildResult, PutServiceCombinedCall, PutServiceCombinedData, PutServiceCombinedEndpoint, PutServiceCombinedParameters, PutServiceCombinedRequest, PutServiceCombinedResult, PutServiceDeploymentCall, PutServiceDeploymentData, PutServiceDeploymentEndpoint, PutServiceDeploymentParameters, PutServiceDeploymentRequest, PutServiceDeploymentResult, PutTagCall, PutTagData, PutTagEndpoint, PutTagParameters, PutTagRequest, PutTagResult, ResetAddonCall, ResetAddonEndpoint, ResetAddonParameters, ResetAddonRequest, ResetAddonResult, RestartAddonCall, RestartAddonEndpoint, RestartAddonParameters, RestartAddonRequest, RestartAddonResult, RestartServiceCall, RestartServiceEndpoint, RestartServiceParameters, RestartServiceRequest, RestartServiceResult, RestoreAddonBackupCall, RestoreAddonBackupEndpoint, RestoreAddonBackupGlobalCall, RestoreAddonBackupGlobalData, RestoreAddonBackupGlobalEndpoint, RestoreAddonBackupGlobalParameters, RestoreAddonBackupGlobalRequest, RestoreAddonBackupGlobalResult, RestoreAddonBackupParameters, RestoreAddonBackupRequest, RestoreAddonBackupResult, ResumeAddonCall, ResumeAddonEndpoint, ResumeAddonParameters, ResumeAddonRequest, ResumeAddonResult, ResumeJobCall, ResumeJobData, ResumeJobEndpoint, ResumeJobParameters, ResumeJobRequest, ResumeJobResult, ResumeLogsinkCall, ResumeLogsinkEndpoint, ResumeLogsinkParameters, ResumeLogsinkRequest, ResumeLogsinkResult, ResumeServiceCall, ResumeServiceData, ResumeServiceEndpoint, ResumeServiceParameters, ResumeServiceRequest, ResumeServiceResult, RetainAddonBackupCall, RetainAddonBackupEndpoint, RetainAddonBackupParameters, RetainAddonBackupRequest, RetainAddonBackupResult, RunReleaseflowCall, RunReleaseflowData, RunReleaseflowEndpoint, RunReleaseflowParameters, RunReleaseflowRequest, RunReleaseflowResult, RunTemplateCall, RunTemplateData, RunTemplateEndpoint, RunTemplateParameters, RunTemplateRequest, RunTemplateResult, ScaleAddonCall, ScaleAddonData, ScaleAddonEndpoint, ScaleAddonParameters, ScaleAddonRequest, ScaleAddonResult, ScaleJobCall, ScaleJobData, ScaleJobEndpoint, ScaleJobParameters, ScaleJobRequest, ScaleJobResult, ScaleServiceCall, ScaleServiceData, ScaleServiceEndpoint, ScaleServiceParameters, ScaleServiceRequest, ScaleServiceResult, StartAddonPitrCall, StartAddonPitrData, StartAddonPitrEndpoint, StartAddonPitrParameters, StartAddonPitrRequest, StartAddonPitrResult, StartJobBuildCall, StartJobBuildData, StartJobBuildEndpoint, StartJobBuildParameters, StartJobBuildRequest, StartJobBuildResult, StartJobRunCall, StartJobRunData, StartJobRunEndpoint, StartJobRunParameters, StartJobRunRequest, StartJobRunResult, StartServiceBuildCall, StartServiceBuildData, StartServiceBuildEndpoint, StartServiceBuildParameters, StartServiceBuildRequest, StartServiceBuildResult, SuspendJobCall, SuspendJobData, SuspendJobEndpoint, SuspendJobParameters, SuspendJobRequest, SuspendJobResult, TailAddonBackupLogsCall, TailAddonLogsCall, TailAddonRestoresLogsCall, TailJobBuildlogsCall, TailJobLogsCall, TailServiceBuildlogsCall, TailServiceLogsCall, UnassignSubdomainCall, UnassignSubdomainEndpoint, UnassignSubdomainParameters, UnassignSubdomainPathCall, UnassignSubdomainPathEndpoint, UnassignSubdomainPathParameters, UnassignSubdomainPathRequest, UnassignSubdomainPathResult, UnassignSubdomainRequest, UnassignSubdomainResult, UpdateAddonNetworksettingsCall, UpdateAddonNetworksettingsData, UpdateAddonNetworksettingsEndpoint, UpdateAddonNetworksettingsParameters, UpdateAddonNetworksettingsRequest, UpdateAddonNetworksettingsResult, UpdateAddonSecurityCall, UpdateAddonSecurityData, UpdateAddonSecurityEndpoint, UpdateAddonSecurityParameters, UpdateAddonSecurityRequest, UpdateAddonSecurityResult, UpdateAddonVersionCall, UpdateAddonVersionData, UpdateAddonVersionEndpoint, UpdateAddonVersionParameters, UpdateAddonVersionRequest, UpdateAddonVersionResult, UpdateCloudClusterCall, UpdateCloudClusterData, UpdateCloudClusterEndpoint, UpdateCloudClusterParameters, UpdateCloudClusterRequest, UpdateCloudClusterResult, UpdateCloudIntegrationCall, UpdateCloudIntegrationData, UpdateCloudIntegrationEndpoint, UpdateCloudIntegrationParameters, UpdateCloudIntegrationRequest, UpdateCloudIntegrationResult, UpdateJobBuildargumentsCall, UpdateJobBuildargumentsData, UpdateJobBuildargumentsEndpoint, UpdateJobBuildargumentsParameters, UpdateJobBuildargumentsRequest, UpdateJobBuildargumentsResult, UpdateJobBuildoptionsCall, UpdateJobBuildoptionsData, UpdateJobBuildoptionsEndpoint, UpdateJobBuildoptionsParameters, UpdateJobBuildoptionsRequest, UpdateJobBuildoptionsResult, UpdateJobBuildsourceCall, UpdateJobBuildsourceData, UpdateJobBuildsourceEndpoint, UpdateJobBuildsourceParameters, UpdateJobBuildsourceRequest, UpdateJobBuildsourceResult, UpdateJobDeploymentCall, UpdateJobDeploymentData, UpdateJobDeploymentEndpoint, UpdateJobDeploymentParameters, UpdateJobDeploymentRequest, UpdateJobDeploymentResult, UpdateJobHealthchecksCall, UpdateJobHealthchecksData, UpdateJobHealthchecksEndpoint, UpdateJobHealthchecksParameters, UpdateJobHealthchecksRequest, UpdateJobHealthchecksResult, UpdateJobRuntimeenvironmentCall, UpdateJobRuntimeenvironmentData, UpdateJobRuntimeenvironmentEndpoint, UpdateJobRuntimeenvironmentParameters, UpdateJobRuntimeenvironmentRequest, UpdateJobRuntimeenvironmentResult, UpdateJobSettingsCall, UpdateJobSettingsData, UpdateJobSettingsEndpoint, UpdateJobSettingsParameters, UpdateJobSettingsRequest, UpdateJobSettingsResult, UpdateLogsinkCall, UpdateLogsinkData, UpdateLogsinkEndpoint, UpdateLogsinkParameters, UpdateLogsinkRequest, UpdateLogsinkResult, UpdateNotificationCall, UpdateNotificationData, UpdateNotificationEndpoint, UpdateNotificationParameters, UpdateNotificationRequest, UpdateNotificationResult, UpdatePreviewtemplateCall, UpdatePreviewtemplateData, UpdatePreviewtemplateEndpoint, UpdatePreviewtemplateParameters, UpdatePreviewtemplateRequest, UpdatePreviewtemplateResult, UpdateRegistrycredentialsCall, UpdateRegistrycredentialsData, UpdateRegistrycredentialsEndpoint, UpdateRegistrycredentialsParameters, UpdateRegistrycredentialsRequest, UpdateRegistrycredentialsResult, UpdateReleaseflowCall, UpdateReleaseflowData, UpdateReleaseflowEndpoint, UpdateReleaseflowParameters, UpdateReleaseflowRequest, UpdateReleaseflowResult, UpdateSecretCall, UpdateSecretData, UpdateSecretEndpoint, UpdateSecretParameters, UpdateSecretRequest, UpdateSecretResult, UpdateSecretlinkCall, UpdateSecretlinkData, UpdateSecretlinkEndpoint, UpdateSecretlinkParameters, UpdateSecretlinkRequest, UpdateSecretlinkResult, UpdateServiceBuildargumentsCall, UpdateServiceBuildargumentsData, UpdateServiceBuildargumentsEndpoint, UpdateServiceBuildargumentsParameters, UpdateServiceBuildargumentsRequest, UpdateServiceBuildargumentsResult, UpdateServiceBuildoptionsCall, UpdateServiceBuildoptionsData, UpdateServiceBuildoptionsEndpoint, UpdateServiceBuildoptionsParameters, UpdateServiceBuildoptionsRequest, UpdateServiceBuildoptionsResult, UpdateServiceBuildsourceCall, UpdateServiceBuildsourceData, UpdateServiceBuildsourceEndpoint, UpdateServiceBuildsourceParameters, UpdateServiceBuildsourceRequest, UpdateServiceBuildsourceResult, UpdateServiceDeploymentCall, UpdateServiceDeploymentData, UpdateServiceDeploymentEndpoint, UpdateServiceDeploymentParameters, UpdateServiceDeploymentRequest, UpdateServiceDeploymentResult, UpdateServiceHealthchecksCall, UpdateServiceHealthchecksData, UpdateServiceHealthchecksEndpoint, UpdateServiceHealthchecksParameters, UpdateServiceHealthchecksRequest, UpdateServiceHealthchecksResult, UpdateServicePortsCall, UpdateServicePortsData, UpdateServicePortsEndpoint, UpdateServicePortsParameters, UpdateServicePortsRequest, UpdateServicePortsResult, UpdateServiceRuntimeenvironmentCall, UpdateServiceRuntimeenvironmentData, UpdateServiceRuntimeenvironmentEndpoint, UpdateServiceRuntimeenvironmentParameters, UpdateServiceRuntimeenvironmentRequest, UpdateServiceRuntimeenvironmentResult, UpdateSubdomainPathCall, UpdateSubdomainPathData, UpdateSubdomainPathEndpoint, UpdateSubdomainPathParameters, UpdateSubdomainPathRequest, UpdateSubdomainPathResult, UpdateTemplateCall, UpdateTemplateData, UpdateTemplateEndpoint, UpdateTemplateParameters, UpdateTemplateRequest, UpdateTemplateResult, UpdateVolumeCall, UpdateVolumeData, UpdateVolumeEndpoint, UpdateVolumeParameters, UpdateVolumeRequest, UpdateVolumeResult, VerifyDomainCall, VerifyDomainEndpoint, VerifyDomainParameters, VerifyDomainRequest, VerifyDomainResult, VerifySubdomainCall, VerifySubdomainEndpoint, VerifySubdomainParameters, VerifySubdomainRequest, VerifySubdomainResult };
|