@cloudfleet/sdk 0.0.1-0ac9bf0 → 0.0.1-0c62221
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/@tanstack/react-query.gen.d.ts +1125 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1129 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +113 -98
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +9 -13
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +6 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +6 -9
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +1190 -208
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +2431 -243
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +85 -7
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +158 -127
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +1016 -94
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2599 -637
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +1201 -470
- package/dist/zod.gen.js.map +1 -1
- package/package.json +28 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
3
|
company: z.ZodOptional<z.ZodString>;
|
|
4
4
|
address1: z.ZodOptional<z.ZodString>;
|
|
@@ -199,17 +199,23 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
199
|
basic: "basic";
|
|
200
200
|
pro: "pro";
|
|
201
201
|
}>;
|
|
202
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
203
|
-
staging: "staging";
|
|
202
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
|
+
"staging-1a": "staging-1a";
|
|
204
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
205
|
"europe-central-1a": "europe-central-1a";
|
|
206
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
|
-
}
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.
|
|
207
|
+
}>>>;
|
|
208
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
+
}>>>;
|
|
209
214
|
}, z.core.$strip>;
|
|
210
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
211
216
|
certificate_authority: z.ZodString;
|
|
212
217
|
endpoint: z.ZodURL;
|
|
218
|
+
cluster_dns: z.ZodString;
|
|
213
219
|
auth_key: z.ZodString;
|
|
214
220
|
bootstrap_token: z.ZodString;
|
|
215
221
|
versions: z.ZodObject<{
|
|
@@ -230,13 +236,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
230
236
|
basic: "basic";
|
|
231
237
|
pro: "pro";
|
|
232
238
|
}>;
|
|
233
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
234
|
-
staging: "staging";
|
|
239
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
240
|
+
"staging-1a": "staging-1a";
|
|
235
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
236
242
|
"europe-central-1a": "europe-central-1a";
|
|
237
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
238
|
-
}
|
|
239
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
244
|
+
}>>>;
|
|
240
245
|
id: z.ZodUUID;
|
|
241
246
|
status: z.ZodEnum<{
|
|
242
247
|
deleted: "deleted";
|
|
@@ -250,11 +255,15 @@ export declare const zCluster: z.ZodObject<{
|
|
|
250
255
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
251
256
|
"": "";
|
|
252
257
|
}>]>>;
|
|
258
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
259
|
+
"": "";
|
|
260
|
+
}>]>>;
|
|
253
261
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
254
262
|
version_current: z.ZodOptional<z.ZodString>;
|
|
255
263
|
created_at: z.ZodOptional<z.ZodString>;
|
|
256
264
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
257
265
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
266
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
258
267
|
}, z.core.$strip>;
|
|
259
268
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
260
269
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -266,56 +275,776 @@ export declare const zClusterUpdateInput: z.ZodObject<{
|
|
|
266
275
|
}, z.core.$strip>;
|
|
267
276
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
268
277
|
limits: z.ZodOptional<z.ZodObject<{
|
|
269
|
-
cpu: z.ZodNumber
|
|
278
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
270
279
|
}, z.core.$strip>>;
|
|
271
280
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
272
281
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
273
|
-
project: z.ZodString
|
|
282
|
+
project: z.ZodOptional<z.ZodString>;
|
|
274
283
|
}, z.core.$strip>>;
|
|
275
284
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
276
285
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
277
|
-
apiKey: z.ZodString
|
|
286
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
278
287
|
}, z.core.$strip>>;
|
|
279
288
|
aws: z.ZodOptional<z.ZodObject<{
|
|
280
289
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
281
|
-
controllerRoleArn: z.ZodString
|
|
290
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
291
|
+
}, z.core.$strip>>;
|
|
292
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
293
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
294
|
+
"on-demand": "on-demand";
|
|
295
|
+
spot: "spot";
|
|
296
|
+
}>>>;
|
|
297
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
298
|
+
amd64: "amd64";
|
|
299
|
+
arm64: "arm64";
|
|
300
|
+
}>>>;
|
|
301
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
302
|
+
p3: "p3";
|
|
303
|
+
cx: "cx";
|
|
304
|
+
h1: "h1";
|
|
305
|
+
h3: "h3";
|
|
306
|
+
a1: "a1";
|
|
307
|
+
a2: "a2";
|
|
308
|
+
a3: "a3";
|
|
309
|
+
a4: "a4";
|
|
310
|
+
c1: "c1";
|
|
311
|
+
c2: "c2";
|
|
312
|
+
c2d: "c2d";
|
|
313
|
+
c3: "c3";
|
|
314
|
+
c3d: "c3d";
|
|
315
|
+
c4: "c4";
|
|
316
|
+
c4a: "c4a";
|
|
317
|
+
c4d: "c4d";
|
|
318
|
+
c5: "c5";
|
|
319
|
+
c5a: "c5a";
|
|
320
|
+
c5ad: "c5ad";
|
|
321
|
+
c5d: "c5d";
|
|
322
|
+
c5n: "c5n";
|
|
323
|
+
c6a: "c6a";
|
|
324
|
+
c6g: "c6g";
|
|
325
|
+
c6gd: "c6gd";
|
|
326
|
+
c6gn: "c6gn";
|
|
327
|
+
c6i: "c6i";
|
|
328
|
+
c6id: "c6id";
|
|
329
|
+
c6in: "c6in";
|
|
330
|
+
c7a: "c7a";
|
|
331
|
+
c7g: "c7g";
|
|
332
|
+
c7gd: "c7gd";
|
|
333
|
+
c7gn: "c7gn";
|
|
334
|
+
c7i: "c7i";
|
|
335
|
+
"c7i-flex": "c7i-flex";
|
|
336
|
+
c8g: "c8g";
|
|
337
|
+
c8gd: "c8gd";
|
|
338
|
+
cax: "cax";
|
|
339
|
+
ccx: "ccx";
|
|
340
|
+
cpx: "cpx";
|
|
341
|
+
d2: "d2";
|
|
342
|
+
d3: "d3";
|
|
343
|
+
d3en: "d3en";
|
|
344
|
+
dl1: "dl1";
|
|
345
|
+
dl2q: "dl2q";
|
|
346
|
+
e2: "e2";
|
|
347
|
+
f1: "f1";
|
|
348
|
+
f2: "f2";
|
|
349
|
+
g1: "g1";
|
|
350
|
+
g2: "g2";
|
|
351
|
+
g4ad: "g4ad";
|
|
352
|
+
g4dn: "g4dn";
|
|
353
|
+
g5: "g5";
|
|
354
|
+
g5g: "g5g";
|
|
355
|
+
g6: "g6";
|
|
356
|
+
g6e: "g6e";
|
|
357
|
+
gr6: "gr6";
|
|
358
|
+
hpc6a: "hpc6a";
|
|
359
|
+
hpc6id: "hpc6id";
|
|
360
|
+
hpc7a: "hpc7a";
|
|
361
|
+
hpc7g: "hpc7g";
|
|
362
|
+
i2: "i2";
|
|
363
|
+
i3: "i3";
|
|
364
|
+
i3en: "i3en";
|
|
365
|
+
i4g: "i4g";
|
|
366
|
+
i4i: "i4i";
|
|
367
|
+
i7i: "i7i";
|
|
368
|
+
i7ie: "i7ie";
|
|
369
|
+
i8g: "i8g";
|
|
370
|
+
im4gn: "im4gn";
|
|
371
|
+
inf1: "inf1";
|
|
372
|
+
inf2: "inf2";
|
|
373
|
+
is4gen: "is4gen";
|
|
374
|
+
m1: "m1";
|
|
375
|
+
m2: "m2";
|
|
376
|
+
m3: "m3";
|
|
377
|
+
m4: "m4";
|
|
378
|
+
m5: "m5";
|
|
379
|
+
m5a: "m5a";
|
|
380
|
+
m5ad: "m5ad";
|
|
381
|
+
m5d: "m5d";
|
|
382
|
+
m5dn: "m5dn";
|
|
383
|
+
m5n: "m5n";
|
|
384
|
+
m5zn: "m5zn";
|
|
385
|
+
m6a: "m6a";
|
|
386
|
+
m6g: "m6g";
|
|
387
|
+
m6gd: "m6gd";
|
|
388
|
+
m6i: "m6i";
|
|
389
|
+
m6id: "m6id";
|
|
390
|
+
m6idn: "m6idn";
|
|
391
|
+
m6in: "m6in";
|
|
392
|
+
m7a: "m7a";
|
|
393
|
+
m7g: "m7g";
|
|
394
|
+
m7gd: "m7gd";
|
|
395
|
+
m7i: "m7i";
|
|
396
|
+
"m7i-flex": "m7i-flex";
|
|
397
|
+
m8g: "m8g";
|
|
398
|
+
m8gd: "m8gd";
|
|
399
|
+
n1: "n1";
|
|
400
|
+
n2: "n2";
|
|
401
|
+
n2d: "n2d";
|
|
402
|
+
n4: "n4";
|
|
403
|
+
p3dn: "p3dn";
|
|
404
|
+
p4d: "p4d";
|
|
405
|
+
p4de: "p4de";
|
|
406
|
+
p5: "p5";
|
|
407
|
+
p5e: "p5e";
|
|
408
|
+
p5en: "p5en";
|
|
409
|
+
"p6-b200": "p6-b200";
|
|
410
|
+
r3: "r3";
|
|
411
|
+
r4: "r4";
|
|
412
|
+
r5: "r5";
|
|
413
|
+
r5a: "r5a";
|
|
414
|
+
r5ad: "r5ad";
|
|
415
|
+
r5b: "r5b";
|
|
416
|
+
r5d: "r5d";
|
|
417
|
+
r5dn: "r5dn";
|
|
418
|
+
r5n: "r5n";
|
|
419
|
+
r6a: "r6a";
|
|
420
|
+
r6g: "r6g";
|
|
421
|
+
r6gd: "r6gd";
|
|
422
|
+
r6i: "r6i";
|
|
423
|
+
r6id: "r6id";
|
|
424
|
+
r6idn: "r6idn";
|
|
425
|
+
r6in: "r6in";
|
|
426
|
+
r7a: "r7a";
|
|
427
|
+
r7g: "r7g";
|
|
428
|
+
r7gd: "r7gd";
|
|
429
|
+
r7i: "r7i";
|
|
430
|
+
r7iz: "r7iz";
|
|
431
|
+
r8g: "r8g";
|
|
432
|
+
r8gd: "r8gd";
|
|
433
|
+
t2: "t2";
|
|
434
|
+
t2a: "t2a";
|
|
435
|
+
t2d: "t2d";
|
|
436
|
+
t3: "t3";
|
|
437
|
+
t3a: "t3a";
|
|
438
|
+
t4g: "t4g";
|
|
439
|
+
trn1: "trn1";
|
|
440
|
+
trn1n: "trn1n";
|
|
441
|
+
"u-3tb1": "u-3tb1";
|
|
442
|
+
"u-6tb1": "u-6tb1";
|
|
443
|
+
"u7i-12tb": "u7i-12tb";
|
|
444
|
+
"u7i-6tb": "u7i-6tb";
|
|
445
|
+
"u7i-8tb": "u7i-8tb";
|
|
446
|
+
"u7in-16tb": "u7in-16tb";
|
|
447
|
+
"u7in-24tb": "u7in-24tb";
|
|
448
|
+
"u7in-32tb": "u7in-32tb";
|
|
449
|
+
vt1: "vt1";
|
|
450
|
+
x1: "x1";
|
|
451
|
+
x1e: "x1e";
|
|
452
|
+
x2gd: "x2gd";
|
|
453
|
+
x2idn: "x2idn";
|
|
454
|
+
x2iedn: "x2iedn";
|
|
455
|
+
x2iezn: "x2iezn";
|
|
456
|
+
x4: "x4";
|
|
457
|
+
x8g: "x8g";
|
|
458
|
+
z1d: "z1d";
|
|
459
|
+
z3: "z3";
|
|
460
|
+
}>>>;
|
|
461
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
462
|
+
"africa-south1": "africa-south1";
|
|
463
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
464
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
465
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
466
|
+
"ap-south-1": "ap-south-1";
|
|
467
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
468
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
469
|
+
ash: "ash";
|
|
470
|
+
"asia-east1": "asia-east1";
|
|
471
|
+
"asia-east2": "asia-east2";
|
|
472
|
+
"asia-northeast1": "asia-northeast1";
|
|
473
|
+
"asia-northeast2": "asia-northeast2";
|
|
474
|
+
"asia-northeast3": "asia-northeast3";
|
|
475
|
+
"asia-south1": "asia-south1";
|
|
476
|
+
"asia-south2": "asia-south2";
|
|
477
|
+
"asia-southeast1": "asia-southeast1";
|
|
478
|
+
"asia-southeast2": "asia-southeast2";
|
|
479
|
+
"australia-southeast1": "australia-southeast1";
|
|
480
|
+
"australia-southeast2": "australia-southeast2";
|
|
481
|
+
"ca-central-1": "ca-central-1";
|
|
482
|
+
"eu-central-1": "eu-central-1";
|
|
483
|
+
"eu-central-2": "eu-central-2";
|
|
484
|
+
"eu-north-1": "eu-north-1";
|
|
485
|
+
"eu-west-1": "eu-west-1";
|
|
486
|
+
"eu-west-2": "eu-west-2";
|
|
487
|
+
"eu-west-3": "eu-west-3";
|
|
488
|
+
"europe-central2": "europe-central2";
|
|
489
|
+
"europe-north1": "europe-north1";
|
|
490
|
+
"europe-southwest1": "europe-southwest1";
|
|
491
|
+
"europe-west1": "europe-west1";
|
|
492
|
+
"europe-west10": "europe-west10";
|
|
493
|
+
"europe-west12": "europe-west12";
|
|
494
|
+
"europe-west2": "europe-west2";
|
|
495
|
+
"europe-west3": "europe-west3";
|
|
496
|
+
"europe-west4": "europe-west4";
|
|
497
|
+
"europe-west6": "europe-west6";
|
|
498
|
+
"europe-west8": "europe-west8";
|
|
499
|
+
"europe-west9": "europe-west9";
|
|
500
|
+
fsn1: "fsn1";
|
|
501
|
+
hel1: "hel1";
|
|
502
|
+
hil: "hil";
|
|
503
|
+
"me-central1": "me-central1";
|
|
504
|
+
"me-central2": "me-central2";
|
|
505
|
+
"me-west1": "me-west1";
|
|
506
|
+
nbg1: "nbg1";
|
|
507
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
508
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
509
|
+
"sa-east-1": "sa-east-1";
|
|
510
|
+
sin: "sin";
|
|
511
|
+
"southamerica-east1": "southamerica-east1";
|
|
512
|
+
"southamerica-west1": "southamerica-west1";
|
|
513
|
+
"us-central1": "us-central1";
|
|
514
|
+
"us-east-1": "us-east-1";
|
|
515
|
+
"us-east-2": "us-east-2";
|
|
516
|
+
"us-east1": "us-east1";
|
|
517
|
+
"us-east4": "us-east4";
|
|
518
|
+
"us-east5": "us-east5";
|
|
519
|
+
"us-south1": "us-south1";
|
|
520
|
+
"us-west-1": "us-west-1";
|
|
521
|
+
"us-west-2": "us-west-2";
|
|
522
|
+
"us-west1": "us-west1";
|
|
523
|
+
"us-west2": "us-west2";
|
|
524
|
+
"us-west3": "us-west3";
|
|
525
|
+
"us-west4": "us-west4";
|
|
526
|
+
}>>>;
|
|
282
527
|
}, z.core.$strip>>;
|
|
528
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
529
|
+
aggressive: "aggressive";
|
|
530
|
+
conservative: "conservative";
|
|
531
|
+
}>>;
|
|
283
532
|
id: z.ZodString;
|
|
284
533
|
}, z.core.$strip>;
|
|
285
534
|
export declare const zFleet: z.ZodObject<{
|
|
286
535
|
limits: z.ZodOptional<z.ZodObject<{
|
|
287
|
-
cpu: z.ZodNumber
|
|
536
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
288
537
|
}, z.core.$strip>>;
|
|
289
538
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
290
539
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
291
|
-
project: z.ZodString
|
|
540
|
+
project: z.ZodOptional<z.ZodString>;
|
|
292
541
|
}, z.core.$strip>>;
|
|
293
542
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
294
543
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
295
|
-
apiKey: z.ZodString
|
|
544
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
296
545
|
}, z.core.$strip>>;
|
|
297
546
|
aws: z.ZodOptional<z.ZodObject<{
|
|
298
547
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
299
|
-
controllerRoleArn: z.ZodString
|
|
548
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
549
|
+
}, z.core.$strip>>;
|
|
550
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
551
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
552
|
+
"on-demand": "on-demand";
|
|
553
|
+
spot: "spot";
|
|
554
|
+
}>>>;
|
|
555
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
556
|
+
amd64: "amd64";
|
|
557
|
+
arm64: "arm64";
|
|
558
|
+
}>>>;
|
|
559
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
560
|
+
p3: "p3";
|
|
561
|
+
cx: "cx";
|
|
562
|
+
h1: "h1";
|
|
563
|
+
h3: "h3";
|
|
564
|
+
a1: "a1";
|
|
565
|
+
a2: "a2";
|
|
566
|
+
a3: "a3";
|
|
567
|
+
a4: "a4";
|
|
568
|
+
c1: "c1";
|
|
569
|
+
c2: "c2";
|
|
570
|
+
c2d: "c2d";
|
|
571
|
+
c3: "c3";
|
|
572
|
+
c3d: "c3d";
|
|
573
|
+
c4: "c4";
|
|
574
|
+
c4a: "c4a";
|
|
575
|
+
c4d: "c4d";
|
|
576
|
+
c5: "c5";
|
|
577
|
+
c5a: "c5a";
|
|
578
|
+
c5ad: "c5ad";
|
|
579
|
+
c5d: "c5d";
|
|
580
|
+
c5n: "c5n";
|
|
581
|
+
c6a: "c6a";
|
|
582
|
+
c6g: "c6g";
|
|
583
|
+
c6gd: "c6gd";
|
|
584
|
+
c6gn: "c6gn";
|
|
585
|
+
c6i: "c6i";
|
|
586
|
+
c6id: "c6id";
|
|
587
|
+
c6in: "c6in";
|
|
588
|
+
c7a: "c7a";
|
|
589
|
+
c7g: "c7g";
|
|
590
|
+
c7gd: "c7gd";
|
|
591
|
+
c7gn: "c7gn";
|
|
592
|
+
c7i: "c7i";
|
|
593
|
+
"c7i-flex": "c7i-flex";
|
|
594
|
+
c8g: "c8g";
|
|
595
|
+
c8gd: "c8gd";
|
|
596
|
+
cax: "cax";
|
|
597
|
+
ccx: "ccx";
|
|
598
|
+
cpx: "cpx";
|
|
599
|
+
d2: "d2";
|
|
600
|
+
d3: "d3";
|
|
601
|
+
d3en: "d3en";
|
|
602
|
+
dl1: "dl1";
|
|
603
|
+
dl2q: "dl2q";
|
|
604
|
+
e2: "e2";
|
|
605
|
+
f1: "f1";
|
|
606
|
+
f2: "f2";
|
|
607
|
+
g1: "g1";
|
|
608
|
+
g2: "g2";
|
|
609
|
+
g4ad: "g4ad";
|
|
610
|
+
g4dn: "g4dn";
|
|
611
|
+
g5: "g5";
|
|
612
|
+
g5g: "g5g";
|
|
613
|
+
g6: "g6";
|
|
614
|
+
g6e: "g6e";
|
|
615
|
+
gr6: "gr6";
|
|
616
|
+
hpc6a: "hpc6a";
|
|
617
|
+
hpc6id: "hpc6id";
|
|
618
|
+
hpc7a: "hpc7a";
|
|
619
|
+
hpc7g: "hpc7g";
|
|
620
|
+
i2: "i2";
|
|
621
|
+
i3: "i3";
|
|
622
|
+
i3en: "i3en";
|
|
623
|
+
i4g: "i4g";
|
|
624
|
+
i4i: "i4i";
|
|
625
|
+
i7i: "i7i";
|
|
626
|
+
i7ie: "i7ie";
|
|
627
|
+
i8g: "i8g";
|
|
628
|
+
im4gn: "im4gn";
|
|
629
|
+
inf1: "inf1";
|
|
630
|
+
inf2: "inf2";
|
|
631
|
+
is4gen: "is4gen";
|
|
632
|
+
m1: "m1";
|
|
633
|
+
m2: "m2";
|
|
634
|
+
m3: "m3";
|
|
635
|
+
m4: "m4";
|
|
636
|
+
m5: "m5";
|
|
637
|
+
m5a: "m5a";
|
|
638
|
+
m5ad: "m5ad";
|
|
639
|
+
m5d: "m5d";
|
|
640
|
+
m5dn: "m5dn";
|
|
641
|
+
m5n: "m5n";
|
|
642
|
+
m5zn: "m5zn";
|
|
643
|
+
m6a: "m6a";
|
|
644
|
+
m6g: "m6g";
|
|
645
|
+
m6gd: "m6gd";
|
|
646
|
+
m6i: "m6i";
|
|
647
|
+
m6id: "m6id";
|
|
648
|
+
m6idn: "m6idn";
|
|
649
|
+
m6in: "m6in";
|
|
650
|
+
m7a: "m7a";
|
|
651
|
+
m7g: "m7g";
|
|
652
|
+
m7gd: "m7gd";
|
|
653
|
+
m7i: "m7i";
|
|
654
|
+
"m7i-flex": "m7i-flex";
|
|
655
|
+
m8g: "m8g";
|
|
656
|
+
m8gd: "m8gd";
|
|
657
|
+
n1: "n1";
|
|
658
|
+
n2: "n2";
|
|
659
|
+
n2d: "n2d";
|
|
660
|
+
n4: "n4";
|
|
661
|
+
p3dn: "p3dn";
|
|
662
|
+
p4d: "p4d";
|
|
663
|
+
p4de: "p4de";
|
|
664
|
+
p5: "p5";
|
|
665
|
+
p5e: "p5e";
|
|
666
|
+
p5en: "p5en";
|
|
667
|
+
"p6-b200": "p6-b200";
|
|
668
|
+
r3: "r3";
|
|
669
|
+
r4: "r4";
|
|
670
|
+
r5: "r5";
|
|
671
|
+
r5a: "r5a";
|
|
672
|
+
r5ad: "r5ad";
|
|
673
|
+
r5b: "r5b";
|
|
674
|
+
r5d: "r5d";
|
|
675
|
+
r5dn: "r5dn";
|
|
676
|
+
r5n: "r5n";
|
|
677
|
+
r6a: "r6a";
|
|
678
|
+
r6g: "r6g";
|
|
679
|
+
r6gd: "r6gd";
|
|
680
|
+
r6i: "r6i";
|
|
681
|
+
r6id: "r6id";
|
|
682
|
+
r6idn: "r6idn";
|
|
683
|
+
r6in: "r6in";
|
|
684
|
+
r7a: "r7a";
|
|
685
|
+
r7g: "r7g";
|
|
686
|
+
r7gd: "r7gd";
|
|
687
|
+
r7i: "r7i";
|
|
688
|
+
r7iz: "r7iz";
|
|
689
|
+
r8g: "r8g";
|
|
690
|
+
r8gd: "r8gd";
|
|
691
|
+
t2: "t2";
|
|
692
|
+
t2a: "t2a";
|
|
693
|
+
t2d: "t2d";
|
|
694
|
+
t3: "t3";
|
|
695
|
+
t3a: "t3a";
|
|
696
|
+
t4g: "t4g";
|
|
697
|
+
trn1: "trn1";
|
|
698
|
+
trn1n: "trn1n";
|
|
699
|
+
"u-3tb1": "u-3tb1";
|
|
700
|
+
"u-6tb1": "u-6tb1";
|
|
701
|
+
"u7i-12tb": "u7i-12tb";
|
|
702
|
+
"u7i-6tb": "u7i-6tb";
|
|
703
|
+
"u7i-8tb": "u7i-8tb";
|
|
704
|
+
"u7in-16tb": "u7in-16tb";
|
|
705
|
+
"u7in-24tb": "u7in-24tb";
|
|
706
|
+
"u7in-32tb": "u7in-32tb";
|
|
707
|
+
vt1: "vt1";
|
|
708
|
+
x1: "x1";
|
|
709
|
+
x1e: "x1e";
|
|
710
|
+
x2gd: "x2gd";
|
|
711
|
+
x2idn: "x2idn";
|
|
712
|
+
x2iedn: "x2iedn";
|
|
713
|
+
x2iezn: "x2iezn";
|
|
714
|
+
x4: "x4";
|
|
715
|
+
x8g: "x8g";
|
|
716
|
+
z1d: "z1d";
|
|
717
|
+
z3: "z3";
|
|
718
|
+
}>>>;
|
|
719
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
720
|
+
"africa-south1": "africa-south1";
|
|
721
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
722
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
723
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
724
|
+
"ap-south-1": "ap-south-1";
|
|
725
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
726
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
727
|
+
ash: "ash";
|
|
728
|
+
"asia-east1": "asia-east1";
|
|
729
|
+
"asia-east2": "asia-east2";
|
|
730
|
+
"asia-northeast1": "asia-northeast1";
|
|
731
|
+
"asia-northeast2": "asia-northeast2";
|
|
732
|
+
"asia-northeast3": "asia-northeast3";
|
|
733
|
+
"asia-south1": "asia-south1";
|
|
734
|
+
"asia-south2": "asia-south2";
|
|
735
|
+
"asia-southeast1": "asia-southeast1";
|
|
736
|
+
"asia-southeast2": "asia-southeast2";
|
|
737
|
+
"australia-southeast1": "australia-southeast1";
|
|
738
|
+
"australia-southeast2": "australia-southeast2";
|
|
739
|
+
"ca-central-1": "ca-central-1";
|
|
740
|
+
"eu-central-1": "eu-central-1";
|
|
741
|
+
"eu-central-2": "eu-central-2";
|
|
742
|
+
"eu-north-1": "eu-north-1";
|
|
743
|
+
"eu-west-1": "eu-west-1";
|
|
744
|
+
"eu-west-2": "eu-west-2";
|
|
745
|
+
"eu-west-3": "eu-west-3";
|
|
746
|
+
"europe-central2": "europe-central2";
|
|
747
|
+
"europe-north1": "europe-north1";
|
|
748
|
+
"europe-southwest1": "europe-southwest1";
|
|
749
|
+
"europe-west1": "europe-west1";
|
|
750
|
+
"europe-west10": "europe-west10";
|
|
751
|
+
"europe-west12": "europe-west12";
|
|
752
|
+
"europe-west2": "europe-west2";
|
|
753
|
+
"europe-west3": "europe-west3";
|
|
754
|
+
"europe-west4": "europe-west4";
|
|
755
|
+
"europe-west6": "europe-west6";
|
|
756
|
+
"europe-west8": "europe-west8";
|
|
757
|
+
"europe-west9": "europe-west9";
|
|
758
|
+
fsn1: "fsn1";
|
|
759
|
+
hel1: "hel1";
|
|
760
|
+
hil: "hil";
|
|
761
|
+
"me-central1": "me-central1";
|
|
762
|
+
"me-central2": "me-central2";
|
|
763
|
+
"me-west1": "me-west1";
|
|
764
|
+
nbg1: "nbg1";
|
|
765
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
766
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
767
|
+
"sa-east-1": "sa-east-1";
|
|
768
|
+
sin: "sin";
|
|
769
|
+
"southamerica-east1": "southamerica-east1";
|
|
770
|
+
"southamerica-west1": "southamerica-west1";
|
|
771
|
+
"us-central1": "us-central1";
|
|
772
|
+
"us-east-1": "us-east-1";
|
|
773
|
+
"us-east-2": "us-east-2";
|
|
774
|
+
"us-east1": "us-east1";
|
|
775
|
+
"us-east4": "us-east4";
|
|
776
|
+
"us-east5": "us-east5";
|
|
777
|
+
"us-south1": "us-south1";
|
|
778
|
+
"us-west-1": "us-west-1";
|
|
779
|
+
"us-west-2": "us-west-2";
|
|
780
|
+
"us-west1": "us-west1";
|
|
781
|
+
"us-west2": "us-west2";
|
|
782
|
+
"us-west3": "us-west3";
|
|
783
|
+
"us-west4": "us-west4";
|
|
784
|
+
}>>>;
|
|
300
785
|
}, z.core.$strip>>;
|
|
786
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
787
|
+
aggressive: "aggressive";
|
|
788
|
+
conservative: "conservative";
|
|
789
|
+
}>>;
|
|
301
790
|
id: z.ZodString;
|
|
302
791
|
}, z.core.$strip>;
|
|
303
792
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
304
793
|
limits: z.ZodOptional<z.ZodObject<{
|
|
305
|
-
cpu: z.ZodNumber
|
|
794
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
306
795
|
}, z.core.$strip>>;
|
|
307
796
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
308
797
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
309
|
-
project: z.ZodString
|
|
798
|
+
project: z.ZodOptional<z.ZodString>;
|
|
310
799
|
}, z.core.$strip>>;
|
|
311
800
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
312
801
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
313
|
-
apiKey: z.ZodString
|
|
802
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
314
803
|
}, z.core.$strip>>;
|
|
315
804
|
aws: z.ZodOptional<z.ZodObject<{
|
|
316
805
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
317
|
-
controllerRoleArn: z.ZodString
|
|
806
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
807
|
+
}, z.core.$strip>>;
|
|
808
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
809
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
810
|
+
"on-demand": "on-demand";
|
|
811
|
+
spot: "spot";
|
|
812
|
+
}>>>;
|
|
813
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
814
|
+
amd64: "amd64";
|
|
815
|
+
arm64: "arm64";
|
|
816
|
+
}>>>;
|
|
817
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
818
|
+
p3: "p3";
|
|
819
|
+
cx: "cx";
|
|
820
|
+
h1: "h1";
|
|
821
|
+
h3: "h3";
|
|
822
|
+
a1: "a1";
|
|
823
|
+
a2: "a2";
|
|
824
|
+
a3: "a3";
|
|
825
|
+
a4: "a4";
|
|
826
|
+
c1: "c1";
|
|
827
|
+
c2: "c2";
|
|
828
|
+
c2d: "c2d";
|
|
829
|
+
c3: "c3";
|
|
830
|
+
c3d: "c3d";
|
|
831
|
+
c4: "c4";
|
|
832
|
+
c4a: "c4a";
|
|
833
|
+
c4d: "c4d";
|
|
834
|
+
c5: "c5";
|
|
835
|
+
c5a: "c5a";
|
|
836
|
+
c5ad: "c5ad";
|
|
837
|
+
c5d: "c5d";
|
|
838
|
+
c5n: "c5n";
|
|
839
|
+
c6a: "c6a";
|
|
840
|
+
c6g: "c6g";
|
|
841
|
+
c6gd: "c6gd";
|
|
842
|
+
c6gn: "c6gn";
|
|
843
|
+
c6i: "c6i";
|
|
844
|
+
c6id: "c6id";
|
|
845
|
+
c6in: "c6in";
|
|
846
|
+
c7a: "c7a";
|
|
847
|
+
c7g: "c7g";
|
|
848
|
+
c7gd: "c7gd";
|
|
849
|
+
c7gn: "c7gn";
|
|
850
|
+
c7i: "c7i";
|
|
851
|
+
"c7i-flex": "c7i-flex";
|
|
852
|
+
c8g: "c8g";
|
|
853
|
+
c8gd: "c8gd";
|
|
854
|
+
cax: "cax";
|
|
855
|
+
ccx: "ccx";
|
|
856
|
+
cpx: "cpx";
|
|
857
|
+
d2: "d2";
|
|
858
|
+
d3: "d3";
|
|
859
|
+
d3en: "d3en";
|
|
860
|
+
dl1: "dl1";
|
|
861
|
+
dl2q: "dl2q";
|
|
862
|
+
e2: "e2";
|
|
863
|
+
f1: "f1";
|
|
864
|
+
f2: "f2";
|
|
865
|
+
g1: "g1";
|
|
866
|
+
g2: "g2";
|
|
867
|
+
g4ad: "g4ad";
|
|
868
|
+
g4dn: "g4dn";
|
|
869
|
+
g5: "g5";
|
|
870
|
+
g5g: "g5g";
|
|
871
|
+
g6: "g6";
|
|
872
|
+
g6e: "g6e";
|
|
873
|
+
gr6: "gr6";
|
|
874
|
+
hpc6a: "hpc6a";
|
|
875
|
+
hpc6id: "hpc6id";
|
|
876
|
+
hpc7a: "hpc7a";
|
|
877
|
+
hpc7g: "hpc7g";
|
|
878
|
+
i2: "i2";
|
|
879
|
+
i3: "i3";
|
|
880
|
+
i3en: "i3en";
|
|
881
|
+
i4g: "i4g";
|
|
882
|
+
i4i: "i4i";
|
|
883
|
+
i7i: "i7i";
|
|
884
|
+
i7ie: "i7ie";
|
|
885
|
+
i8g: "i8g";
|
|
886
|
+
im4gn: "im4gn";
|
|
887
|
+
inf1: "inf1";
|
|
888
|
+
inf2: "inf2";
|
|
889
|
+
is4gen: "is4gen";
|
|
890
|
+
m1: "m1";
|
|
891
|
+
m2: "m2";
|
|
892
|
+
m3: "m3";
|
|
893
|
+
m4: "m4";
|
|
894
|
+
m5: "m5";
|
|
895
|
+
m5a: "m5a";
|
|
896
|
+
m5ad: "m5ad";
|
|
897
|
+
m5d: "m5d";
|
|
898
|
+
m5dn: "m5dn";
|
|
899
|
+
m5n: "m5n";
|
|
900
|
+
m5zn: "m5zn";
|
|
901
|
+
m6a: "m6a";
|
|
902
|
+
m6g: "m6g";
|
|
903
|
+
m6gd: "m6gd";
|
|
904
|
+
m6i: "m6i";
|
|
905
|
+
m6id: "m6id";
|
|
906
|
+
m6idn: "m6idn";
|
|
907
|
+
m6in: "m6in";
|
|
908
|
+
m7a: "m7a";
|
|
909
|
+
m7g: "m7g";
|
|
910
|
+
m7gd: "m7gd";
|
|
911
|
+
m7i: "m7i";
|
|
912
|
+
"m7i-flex": "m7i-flex";
|
|
913
|
+
m8g: "m8g";
|
|
914
|
+
m8gd: "m8gd";
|
|
915
|
+
n1: "n1";
|
|
916
|
+
n2: "n2";
|
|
917
|
+
n2d: "n2d";
|
|
918
|
+
n4: "n4";
|
|
919
|
+
p3dn: "p3dn";
|
|
920
|
+
p4d: "p4d";
|
|
921
|
+
p4de: "p4de";
|
|
922
|
+
p5: "p5";
|
|
923
|
+
p5e: "p5e";
|
|
924
|
+
p5en: "p5en";
|
|
925
|
+
"p6-b200": "p6-b200";
|
|
926
|
+
r3: "r3";
|
|
927
|
+
r4: "r4";
|
|
928
|
+
r5: "r5";
|
|
929
|
+
r5a: "r5a";
|
|
930
|
+
r5ad: "r5ad";
|
|
931
|
+
r5b: "r5b";
|
|
932
|
+
r5d: "r5d";
|
|
933
|
+
r5dn: "r5dn";
|
|
934
|
+
r5n: "r5n";
|
|
935
|
+
r6a: "r6a";
|
|
936
|
+
r6g: "r6g";
|
|
937
|
+
r6gd: "r6gd";
|
|
938
|
+
r6i: "r6i";
|
|
939
|
+
r6id: "r6id";
|
|
940
|
+
r6idn: "r6idn";
|
|
941
|
+
r6in: "r6in";
|
|
942
|
+
r7a: "r7a";
|
|
943
|
+
r7g: "r7g";
|
|
944
|
+
r7gd: "r7gd";
|
|
945
|
+
r7i: "r7i";
|
|
946
|
+
r7iz: "r7iz";
|
|
947
|
+
r8g: "r8g";
|
|
948
|
+
r8gd: "r8gd";
|
|
949
|
+
t2: "t2";
|
|
950
|
+
t2a: "t2a";
|
|
951
|
+
t2d: "t2d";
|
|
952
|
+
t3: "t3";
|
|
953
|
+
t3a: "t3a";
|
|
954
|
+
t4g: "t4g";
|
|
955
|
+
trn1: "trn1";
|
|
956
|
+
trn1n: "trn1n";
|
|
957
|
+
"u-3tb1": "u-3tb1";
|
|
958
|
+
"u-6tb1": "u-6tb1";
|
|
959
|
+
"u7i-12tb": "u7i-12tb";
|
|
960
|
+
"u7i-6tb": "u7i-6tb";
|
|
961
|
+
"u7i-8tb": "u7i-8tb";
|
|
962
|
+
"u7in-16tb": "u7in-16tb";
|
|
963
|
+
"u7in-24tb": "u7in-24tb";
|
|
964
|
+
"u7in-32tb": "u7in-32tb";
|
|
965
|
+
vt1: "vt1";
|
|
966
|
+
x1: "x1";
|
|
967
|
+
x1e: "x1e";
|
|
968
|
+
x2gd: "x2gd";
|
|
969
|
+
x2idn: "x2idn";
|
|
970
|
+
x2iedn: "x2iedn";
|
|
971
|
+
x2iezn: "x2iezn";
|
|
972
|
+
x4: "x4";
|
|
973
|
+
x8g: "x8g";
|
|
974
|
+
z1d: "z1d";
|
|
975
|
+
z3: "z3";
|
|
976
|
+
}>>>;
|
|
977
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
978
|
+
"africa-south1": "africa-south1";
|
|
979
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
980
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
981
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
982
|
+
"ap-south-1": "ap-south-1";
|
|
983
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
984
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
985
|
+
ash: "ash";
|
|
986
|
+
"asia-east1": "asia-east1";
|
|
987
|
+
"asia-east2": "asia-east2";
|
|
988
|
+
"asia-northeast1": "asia-northeast1";
|
|
989
|
+
"asia-northeast2": "asia-northeast2";
|
|
990
|
+
"asia-northeast3": "asia-northeast3";
|
|
991
|
+
"asia-south1": "asia-south1";
|
|
992
|
+
"asia-south2": "asia-south2";
|
|
993
|
+
"asia-southeast1": "asia-southeast1";
|
|
994
|
+
"asia-southeast2": "asia-southeast2";
|
|
995
|
+
"australia-southeast1": "australia-southeast1";
|
|
996
|
+
"australia-southeast2": "australia-southeast2";
|
|
997
|
+
"ca-central-1": "ca-central-1";
|
|
998
|
+
"eu-central-1": "eu-central-1";
|
|
999
|
+
"eu-central-2": "eu-central-2";
|
|
1000
|
+
"eu-north-1": "eu-north-1";
|
|
1001
|
+
"eu-west-1": "eu-west-1";
|
|
1002
|
+
"eu-west-2": "eu-west-2";
|
|
1003
|
+
"eu-west-3": "eu-west-3";
|
|
1004
|
+
"europe-central2": "europe-central2";
|
|
1005
|
+
"europe-north1": "europe-north1";
|
|
1006
|
+
"europe-southwest1": "europe-southwest1";
|
|
1007
|
+
"europe-west1": "europe-west1";
|
|
1008
|
+
"europe-west10": "europe-west10";
|
|
1009
|
+
"europe-west12": "europe-west12";
|
|
1010
|
+
"europe-west2": "europe-west2";
|
|
1011
|
+
"europe-west3": "europe-west3";
|
|
1012
|
+
"europe-west4": "europe-west4";
|
|
1013
|
+
"europe-west6": "europe-west6";
|
|
1014
|
+
"europe-west8": "europe-west8";
|
|
1015
|
+
"europe-west9": "europe-west9";
|
|
1016
|
+
fsn1: "fsn1";
|
|
1017
|
+
hel1: "hel1";
|
|
1018
|
+
hil: "hil";
|
|
1019
|
+
"me-central1": "me-central1";
|
|
1020
|
+
"me-central2": "me-central2";
|
|
1021
|
+
"me-west1": "me-west1";
|
|
1022
|
+
nbg1: "nbg1";
|
|
1023
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
1024
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
1025
|
+
"sa-east-1": "sa-east-1";
|
|
1026
|
+
sin: "sin";
|
|
1027
|
+
"southamerica-east1": "southamerica-east1";
|
|
1028
|
+
"southamerica-west1": "southamerica-west1";
|
|
1029
|
+
"us-central1": "us-central1";
|
|
1030
|
+
"us-east-1": "us-east-1";
|
|
1031
|
+
"us-east-2": "us-east-2";
|
|
1032
|
+
"us-east1": "us-east1";
|
|
1033
|
+
"us-east4": "us-east4";
|
|
1034
|
+
"us-east5": "us-east5";
|
|
1035
|
+
"us-south1": "us-south1";
|
|
1036
|
+
"us-west-1": "us-west-1";
|
|
1037
|
+
"us-west-2": "us-west-2";
|
|
1038
|
+
"us-west1": "us-west1";
|
|
1039
|
+
"us-west2": "us-west2";
|
|
1040
|
+
"us-west3": "us-west3";
|
|
1041
|
+
"us-west4": "us-west4";
|
|
1042
|
+
}>>>;
|
|
318
1043
|
}, z.core.$strip>>;
|
|
1044
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
1045
|
+
aggressive: "aggressive";
|
|
1046
|
+
conservative: "conservative";
|
|
1047
|
+
}>>;
|
|
319
1048
|
}, z.core.$strip>;
|
|
320
1049
|
export declare const zInvite: z.ZodObject<{
|
|
321
1050
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -325,7 +1054,7 @@ export declare const zInvite: z.ZodObject<{
|
|
|
325
1054
|
code: z.ZodOptional<z.ZodString>;
|
|
326
1055
|
}, z.core.$strip>;
|
|
327
1056
|
export declare const zInvoice: z.ZodObject<{
|
|
328
|
-
id: z.ZodOptional<z.
|
|
1057
|
+
id: z.ZodOptional<z.ZodString>;
|
|
329
1058
|
number: z.ZodOptional<z.ZodString>;
|
|
330
1059
|
status: z.ZodOptional<z.ZodString>;
|
|
331
1060
|
total: z.ZodOptional<z.ZodNumber>;
|
|
@@ -335,19 +1064,30 @@ export declare const zInvoice: z.ZodObject<{
|
|
|
335
1064
|
period_end: z.ZodISODateTime;
|
|
336
1065
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
337
1066
|
}, z.core.$strip>;
|
|
1067
|
+
export declare const zMarketplaceListingFiles: z.ZodObject<{
|
|
1068
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
1069
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1070
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1071
|
+
}, z.core.$strip>;
|
|
338
1072
|
export declare const zMarketplaceListing: z.ZodObject<{
|
|
339
|
-
id: z.ZodString;
|
|
340
1073
|
name: z.ZodString;
|
|
341
|
-
|
|
342
|
-
description: z.ZodString;
|
|
343
|
-
logoUrl: z.ZodString;
|
|
344
|
-
longDescription: z.ZodString;
|
|
345
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1074
|
+
versions: z.ZodArray<z.ZodString>;
|
|
346
1075
|
version_channels: z.ZodArray<z.ZodString>;
|
|
347
|
-
|
|
1076
|
+
latestVersion: z.ZodString;
|
|
1077
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
1078
|
+
name: z.ZodString;
|
|
348
1079
|
version: z.ZodString;
|
|
349
|
-
|
|
350
|
-
|
|
1080
|
+
description: z.ZodOptional<z.ZodString>;
|
|
1081
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
1082
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
1083
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1084
|
+
home: z.ZodOptional<z.ZodString>;
|
|
1085
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
1086
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1087
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1088
|
+
name: z.ZodString;
|
|
1089
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1090
|
+
}, z.core.$strip>>>;
|
|
351
1091
|
}, z.core.$strip>>;
|
|
352
1092
|
}, z.core.$strip>;
|
|
353
1093
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
@@ -373,6 +1113,7 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
373
1113
|
id: z.ZodString;
|
|
374
1114
|
label: z.ZodString;
|
|
375
1115
|
}, z.core.$strip>>;
|
|
1116
|
+
cfcr_storage_gb: z.ZodInt;
|
|
376
1117
|
}, z.core.$strip>;
|
|
377
1118
|
status: z.ZodEnum<{
|
|
378
1119
|
active: "active";
|
|
@@ -401,6 +1142,171 @@ export declare const zPaymentMethod: z.ZodObject<{
|
|
|
401
1142
|
visa: "visa";
|
|
402
1143
|
}>;
|
|
403
1144
|
}, z.core.$strip>;
|
|
1145
|
+
export declare const zPlatformQuota: z.ZodObject<{
|
|
1146
|
+
basic_clusters_max: z.ZodInt;
|
|
1147
|
+
basic_clusters_available: z.ZodInt;
|
|
1148
|
+
pro_clusters_max: z.ZodInt;
|
|
1149
|
+
pro_clusters_available: z.ZodInt;
|
|
1150
|
+
fleets_max: z.ZodInt;
|
|
1151
|
+
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1152
|
+
regions: z.ZodArray<z.ZodString>;
|
|
1153
|
+
versions: z.ZodArray<z.ZodObject<{
|
|
1154
|
+
id: z.ZodString;
|
|
1155
|
+
label: z.ZodString;
|
|
1156
|
+
}, z.core.$strip>>;
|
|
1157
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1158
|
+
}, z.core.$strip>;
|
|
1159
|
+
export declare const zRegistryRepository: z.ZodObject<{
|
|
1160
|
+
name: z.ZodString;
|
|
1161
|
+
region: z.ZodString;
|
|
1162
|
+
uri: z.ZodString;
|
|
1163
|
+
}, z.core.$strip>;
|
|
1164
|
+
export declare const zRegistryRepositoryWithTags: z.ZodObject<{
|
|
1165
|
+
name: z.ZodString;
|
|
1166
|
+
region: z.ZodString;
|
|
1167
|
+
uri: z.ZodString;
|
|
1168
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
1169
|
+
name: z.ZodString;
|
|
1170
|
+
size: z.ZodNumber;
|
|
1171
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1172
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1173
|
+
}, z.core.$strip>>;
|
|
1174
|
+
totalSize: z.ZodNumber;
|
|
1175
|
+
}, z.core.$strip>;
|
|
1176
|
+
export declare const zRegistryTag: z.ZodObject<{
|
|
1177
|
+
name: z.ZodString;
|
|
1178
|
+
digest: z.ZodString;
|
|
1179
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
1180
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
1181
|
+
size: z.ZodNumber;
|
|
1182
|
+
}, z.core.$strip>>;
|
|
1183
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1184
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1185
|
+
size: z.ZodNumber;
|
|
1186
|
+
}, z.core.$strip>>>;
|
|
1187
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1188
|
+
digest: z.ZodString;
|
|
1189
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
1190
|
+
architecture: z.ZodString;
|
|
1191
|
+
os: z.ZodString;
|
|
1192
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
1193
|
+
}, z.core.$strip>>;
|
|
1194
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1195
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
1196
|
+
size: z.ZodNumber;
|
|
1197
|
+
}, z.core.$strip>>>;
|
|
1198
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
1199
|
+
}, z.core.$strip>>>;
|
|
1200
|
+
size: z.ZodNumber;
|
|
1201
|
+
region: z.ZodString;
|
|
1202
|
+
repository: z.ZodString;
|
|
1203
|
+
uri: z.ZodString;
|
|
1204
|
+
}, z.core.$strip>;
|
|
1205
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
1206
|
+
id: z.ZodString;
|
|
1207
|
+
filename: z.ZodString;
|
|
1208
|
+
content_type: z.ZodString;
|
|
1209
|
+
size: z.ZodInt;
|
|
1210
|
+
}, z.core.$strip>;
|
|
1211
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
1212
|
+
category: z.ZodEnum<{
|
|
1213
|
+
billing: "billing";
|
|
1214
|
+
technical: "technical";
|
|
1215
|
+
general: "general";
|
|
1216
|
+
}>;
|
|
1217
|
+
body: z.ZodString;
|
|
1218
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1219
|
+
}, z.core.$strip>;
|
|
1220
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
1221
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1222
|
+
id: z.ZodString;
|
|
1223
|
+
status: z.ZodEnum<{
|
|
1224
|
+
closed: "closed";
|
|
1225
|
+
waiting_on_us: "waiting_on_us";
|
|
1226
|
+
waiting_on_user: "waiting_on_user";
|
|
1227
|
+
}>;
|
|
1228
|
+
category: z.ZodEnum<{
|
|
1229
|
+
billing: "billing";
|
|
1230
|
+
technical: "technical";
|
|
1231
|
+
general: "general";
|
|
1232
|
+
}>;
|
|
1233
|
+
summary: z.ZodString;
|
|
1234
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1235
|
+
date_created: z.ZodISODateTime;
|
|
1236
|
+
date_updated: z.ZodISODateTime;
|
|
1237
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1238
|
+
id: z.ZodString;
|
|
1239
|
+
type: z.ZodEnum<{
|
|
1240
|
+
customer_reply: "customer_reply";
|
|
1241
|
+
agent_reply: "agent_reply";
|
|
1242
|
+
}>;
|
|
1243
|
+
body: z.ZodString;
|
|
1244
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1245
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1246
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1247
|
+
id: z.ZodString;
|
|
1248
|
+
filename: z.ZodString;
|
|
1249
|
+
content_type: z.ZodString;
|
|
1250
|
+
size: z.ZodInt;
|
|
1251
|
+
}, z.core.$strip>>>;
|
|
1252
|
+
date_created: z.ZodISODateTime;
|
|
1253
|
+
}, z.core.$strip>>>;
|
|
1254
|
+
}, z.core.$strip>>;
|
|
1255
|
+
}, z.core.$strip>;
|
|
1256
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1257
|
+
body: z.ZodString;
|
|
1258
|
+
}, z.core.$strip>;
|
|
1259
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
1260
|
+
id: z.ZodString;
|
|
1261
|
+
type: z.ZodEnum<{
|
|
1262
|
+
customer_reply: "customer_reply";
|
|
1263
|
+
agent_reply: "agent_reply";
|
|
1264
|
+
}>;
|
|
1265
|
+
body: z.ZodString;
|
|
1266
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1267
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1268
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1269
|
+
id: z.ZodString;
|
|
1270
|
+
filename: z.ZodString;
|
|
1271
|
+
content_type: z.ZodString;
|
|
1272
|
+
size: z.ZodInt;
|
|
1273
|
+
}, z.core.$strip>>>;
|
|
1274
|
+
date_created: z.ZodISODateTime;
|
|
1275
|
+
}, z.core.$strip>;
|
|
1276
|
+
export declare const zTicket: z.ZodObject<{
|
|
1277
|
+
id: z.ZodString;
|
|
1278
|
+
status: z.ZodEnum<{
|
|
1279
|
+
closed: "closed";
|
|
1280
|
+
waiting_on_us: "waiting_on_us";
|
|
1281
|
+
waiting_on_user: "waiting_on_user";
|
|
1282
|
+
}>;
|
|
1283
|
+
category: z.ZodEnum<{
|
|
1284
|
+
billing: "billing";
|
|
1285
|
+
technical: "technical";
|
|
1286
|
+
general: "general";
|
|
1287
|
+
}>;
|
|
1288
|
+
summary: z.ZodString;
|
|
1289
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1290
|
+
date_created: z.ZodISODateTime;
|
|
1291
|
+
date_updated: z.ZodISODateTime;
|
|
1292
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1293
|
+
id: z.ZodString;
|
|
1294
|
+
type: z.ZodEnum<{
|
|
1295
|
+
customer_reply: "customer_reply";
|
|
1296
|
+
agent_reply: "agent_reply";
|
|
1297
|
+
}>;
|
|
1298
|
+
body: z.ZodString;
|
|
1299
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1300
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1301
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1302
|
+
id: z.ZodString;
|
|
1303
|
+
filename: z.ZodString;
|
|
1304
|
+
content_type: z.ZodString;
|
|
1305
|
+
size: z.ZodInt;
|
|
1306
|
+
}, z.core.$strip>>>;
|
|
1307
|
+
date_created: z.ZodISODateTime;
|
|
1308
|
+
}, z.core.$strip>>>;
|
|
1309
|
+
}, z.core.$strip>;
|
|
404
1310
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
405
1311
|
name: z.ZodString;
|
|
406
1312
|
role: z.ZodEnum<{
|
|
@@ -425,37 +1331,31 @@ export declare const zTokenUpdateInput: z.ZodObject<{
|
|
|
425
1331
|
User: "User";
|
|
426
1332
|
}>>;
|
|
427
1333
|
}, z.core.$strip>;
|
|
1334
|
+
export declare const zUsageFacets: z.ZodObject<{
|
|
1335
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1336
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1337
|
+
}, z.core.$strip>;
|
|
1338
|
+
export declare const zUsageResponse: z.ZodObject<{
|
|
1339
|
+
data: z.ZodArray<z.ZodObject<{
|
|
1340
|
+
hour: z.ZodString;
|
|
1341
|
+
cluster_id: z.ZodString;
|
|
1342
|
+
product: z.ZodString;
|
|
1343
|
+
value: z.ZodNumber;
|
|
1344
|
+
price: z.ZodNumber;
|
|
1345
|
+
total: z.ZodNumber;
|
|
1346
|
+
}, z.core.$strip>>;
|
|
1347
|
+
facets: z.ZodObject<{
|
|
1348
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1349
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1350
|
+
}, z.core.$strip>;
|
|
1351
|
+
}, z.core.$strip>;
|
|
428
1352
|
export declare const zUsage: z.ZodObject<{
|
|
429
|
-
hour: z.
|
|
430
|
-
cluster_id: z.
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
}>;
|
|
436
|
-
product: z.ZodEnum<{
|
|
437
|
-
cfke_controlplane: "cfke_controlplane";
|
|
438
|
-
cfke_connected_nodes: "cfke_connected_nodes";
|
|
439
|
-
infra_compute: "infra_compute";
|
|
440
|
-
infra_storage: "infra_storage";
|
|
441
|
-
infra_loadbalancing: "infra_loadbalancing";
|
|
442
|
-
infra_traffic: "infra_traffic";
|
|
443
|
-
cfcr_storage: "cfcr_storage";
|
|
444
|
-
}>;
|
|
445
|
-
node_name: z.ZodString;
|
|
446
|
-
sku: z.ZodString;
|
|
447
|
-
cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
448
|
-
"": "";
|
|
449
|
-
}>]>;
|
|
450
|
-
price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
451
|
-
"": "";
|
|
452
|
-
}>]>;
|
|
453
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
454
|
-
"": "";
|
|
455
|
-
}>]>;
|
|
456
|
-
total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
457
|
-
"": "";
|
|
458
|
-
}>]>;
|
|
1353
|
+
hour: z.ZodString;
|
|
1354
|
+
cluster_id: z.ZodString;
|
|
1355
|
+
product: z.ZodString;
|
|
1356
|
+
value: z.ZodNumber;
|
|
1357
|
+
price: z.ZodNumber;
|
|
1358
|
+
total: z.ZodNumber;
|
|
459
1359
|
}, z.core.$strip>;
|
|
460
1360
|
export declare const zUserCreateInput: z.ZodObject<{
|
|
461
1361
|
email: z.ZodEmail;
|
|
@@ -500,50 +1400,29 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
500
1400
|
inactive: "inactive";
|
|
501
1401
|
}>>;
|
|
502
1402
|
}, z.core.$strip>;
|
|
503
|
-
export declare const
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
1403
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
1404
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1405
|
+
hourly: "hourly";
|
|
1406
|
+
daily: "daily";
|
|
1407
|
+
monthly: "monthly";
|
|
1408
|
+
}>>>;
|
|
507
1409
|
}, z.core.$strip>;
|
|
508
1410
|
/**
|
|
509
|
-
*
|
|
1411
|
+
* Usage data with facets for filtering
|
|
510
1412
|
*/
|
|
511
|
-
export declare const zGetUsageResponse: z.
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
infra_loadbalancing: "infra_loadbalancing";
|
|
525
|
-
infra_traffic: "infra_traffic";
|
|
526
|
-
cfcr_storage: "cfcr_storage";
|
|
527
|
-
}>;
|
|
528
|
-
node_name: z.ZodString;
|
|
529
|
-
sku: z.ZodString;
|
|
530
|
-
cpu: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
531
|
-
"": "";
|
|
532
|
-
}>]>;
|
|
533
|
-
price: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
534
|
-
"": "";
|
|
535
|
-
}>]>;
|
|
536
|
-
value: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
537
|
-
"": "";
|
|
538
|
-
}>]>;
|
|
539
|
-
total: z.ZodUnion<readonly [z.ZodNumber, z.ZodEnum<{
|
|
540
|
-
"": "";
|
|
541
|
-
}>]>;
|
|
542
|
-
}, z.core.$strip>>;
|
|
543
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
544
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
545
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
546
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1413
|
+
export declare const zGetUsageResponse: z.ZodObject<{
|
|
1414
|
+
data: z.ZodArray<z.ZodObject<{
|
|
1415
|
+
hour: z.ZodString;
|
|
1416
|
+
cluster_id: z.ZodString;
|
|
1417
|
+
product: z.ZodString;
|
|
1418
|
+
value: z.ZodNumber;
|
|
1419
|
+
price: z.ZodNumber;
|
|
1420
|
+
total: z.ZodNumber;
|
|
1421
|
+
}, z.core.$strip>>;
|
|
1422
|
+
facets: z.ZodObject<{
|
|
1423
|
+
cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1424
|
+
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1425
|
+
}, z.core.$strip>;
|
|
547
1426
|
}, z.core.$strip>;
|
|
548
1427
|
/**
|
|
549
1428
|
* Redacted payment card information.
|
|
@@ -569,11 +1448,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
569
1448
|
visa: "visa";
|
|
570
1449
|
}>;
|
|
571
1450
|
}, z.core.$strip>;
|
|
572
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
573
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
574
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
575
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
576
|
-
}, z.core.$strip>;
|
|
577
1451
|
/**
|
|
578
1452
|
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
579
1453
|
*
|
|
@@ -581,16 +1455,11 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
581
1455
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
582
1456
|
id: z.ZodOptional<z.ZodString>;
|
|
583
1457
|
}, z.core.$strip>;
|
|
584
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
585
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
586
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
587
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
588
|
-
}, z.core.$strip>;
|
|
589
1458
|
/**
|
|
590
1459
|
* An array of usage records.
|
|
591
1460
|
*/
|
|
592
1461
|
export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
593
|
-
id: z.ZodOptional<z.
|
|
1462
|
+
id: z.ZodOptional<z.ZodString>;
|
|
594
1463
|
number: z.ZodOptional<z.ZodString>;
|
|
595
1464
|
status: z.ZodOptional<z.ZodString>;
|
|
596
1465
|
total: z.ZodOptional<z.ZodNumber>;
|
|
@@ -600,11 +1469,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
600
1469
|
period_end: z.ZodISODateTime;
|
|
601
1470
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
602
1471
|
}, z.core.$strip>>;
|
|
603
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
604
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
605
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
606
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
607
|
-
}, z.core.$strip>;
|
|
608
1472
|
/**
|
|
609
1473
|
* Returns a single object containing organization contact and billing address details.
|
|
610
1474
|
*/
|
|
@@ -751,152 +1615,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
751
1615
|
zw_tin: "zw_tin";
|
|
752
1616
|
}>>;
|
|
753
1617
|
}, z.core.$strip>;
|
|
754
|
-
export declare const
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
}>>;
|
|
897
|
-
}, z.core.$strip>;
|
|
898
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
899
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1618
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
1619
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1621
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1622
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1623
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1624
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1625
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1626
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
email: z.ZodEmail;
|
|
1628
|
+
individual_name: z.ZodString;
|
|
1629
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1630
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
1631
|
+
"": "";
|
|
1632
|
+
ad_nrt: "ad_nrt";
|
|
1633
|
+
ae_trn: "ae_trn";
|
|
1634
|
+
al_tin: "al_tin";
|
|
1635
|
+
am_tin: "am_tin";
|
|
1636
|
+
ao_tin: "ao_tin";
|
|
1637
|
+
ar_cuit: "ar_cuit";
|
|
1638
|
+
at_vat: "at_vat";
|
|
1639
|
+
au_abn: "au_abn";
|
|
1640
|
+
au_arn: "au_arn";
|
|
1641
|
+
ba_tin: "ba_tin";
|
|
1642
|
+
bb_tin: "bb_tin";
|
|
1643
|
+
be_vat: "be_vat";
|
|
1644
|
+
bg_uic: "bg_uic";
|
|
1645
|
+
bg_vat: "bg_vat";
|
|
1646
|
+
bh_vat: "bh_vat";
|
|
1647
|
+
bo_tin: "bo_tin";
|
|
1648
|
+
br_cnpj: "br_cnpj";
|
|
1649
|
+
br_cpf: "br_cpf";
|
|
1650
|
+
bs_tin: "bs_tin";
|
|
1651
|
+
by_tin: "by_tin";
|
|
1652
|
+
ca_bn: "ca_bn";
|
|
1653
|
+
ca_gst_hst: "ca_gst_hst";
|
|
1654
|
+
ca_pst_bc: "ca_pst_bc";
|
|
1655
|
+
ca_pst_mb: "ca_pst_mb";
|
|
1656
|
+
ca_pst_sk: "ca_pst_sk";
|
|
1657
|
+
ca_qst: "ca_qst";
|
|
1658
|
+
cd_nif: "cd_nif";
|
|
1659
|
+
ch_uid: "ch_uid";
|
|
1660
|
+
ch_vat: "ch_vat";
|
|
1661
|
+
cl_tin: "cl_tin";
|
|
1662
|
+
cn_tin: "cn_tin";
|
|
1663
|
+
co_nit: "co_nit";
|
|
1664
|
+
cr_tin: "cr_tin";
|
|
1665
|
+
cy_vat: "cy_vat";
|
|
1666
|
+
cz_vat: "cz_vat";
|
|
1667
|
+
de_stn: "de_stn";
|
|
1668
|
+
de_vat: "de_vat";
|
|
1669
|
+
dk_vat: "dk_vat";
|
|
1670
|
+
do_rcn: "do_rcn";
|
|
1671
|
+
ec_ruc: "ec_ruc";
|
|
1672
|
+
ee_vat: "ee_vat";
|
|
1673
|
+
eg_tin: "eg_tin";
|
|
1674
|
+
es_cif: "es_cif";
|
|
1675
|
+
es_vat: "es_vat";
|
|
1676
|
+
eu_oss_vat: "eu_oss_vat";
|
|
1677
|
+
fi_vat: "fi_vat";
|
|
1678
|
+
fr_vat: "fr_vat";
|
|
1679
|
+
gb_vat: "gb_vat";
|
|
1680
|
+
ge_vat: "ge_vat";
|
|
1681
|
+
gn_nif: "gn_nif";
|
|
1682
|
+
gr_vat: "gr_vat";
|
|
1683
|
+
hk_br: "hk_br";
|
|
1684
|
+
hr_oib: "hr_oib";
|
|
1685
|
+
hr_vat: "hr_vat";
|
|
1686
|
+
hu_tin: "hu_tin";
|
|
1687
|
+
hu_vat: "hu_vat";
|
|
1688
|
+
id_npwp: "id_npwp";
|
|
1689
|
+
ie_vat: "ie_vat";
|
|
1690
|
+
il_vat: "il_vat";
|
|
1691
|
+
in_gst: "in_gst";
|
|
1692
|
+
is_vat: "is_vat";
|
|
1693
|
+
it_vat: "it_vat";
|
|
1694
|
+
jp_cn: "jp_cn";
|
|
1695
|
+
jp_rn: "jp_rn";
|
|
1696
|
+
jp_trn: "jp_trn";
|
|
1697
|
+
ke_pin: "ke_pin";
|
|
1698
|
+
kh_tin: "kh_tin";
|
|
1699
|
+
kr_brn: "kr_brn";
|
|
1700
|
+
kz_bin: "kz_bin";
|
|
1701
|
+
li_uid: "li_uid";
|
|
1702
|
+
li_vat: "li_vat";
|
|
1703
|
+
lt_vat: "lt_vat";
|
|
1704
|
+
lu_vat: "lu_vat";
|
|
1705
|
+
lv_vat: "lv_vat";
|
|
1706
|
+
ma_vat: "ma_vat";
|
|
1707
|
+
md_vat: "md_vat";
|
|
1708
|
+
me_pib: "me_pib";
|
|
1709
|
+
mk_vat: "mk_vat";
|
|
1710
|
+
mr_nif: "mr_nif";
|
|
1711
|
+
mt_vat: "mt_vat";
|
|
1712
|
+
mx_rfc: "mx_rfc";
|
|
1713
|
+
my_frp: "my_frp";
|
|
1714
|
+
my_itn: "my_itn";
|
|
1715
|
+
my_sst: "my_sst";
|
|
1716
|
+
ng_tin: "ng_tin";
|
|
1717
|
+
nl_vat: "nl_vat";
|
|
1718
|
+
no_vat: "no_vat";
|
|
1719
|
+
no_voec: "no_voec";
|
|
1720
|
+
np_pan: "np_pan";
|
|
1721
|
+
nz_gst: "nz_gst";
|
|
1722
|
+
om_vat: "om_vat";
|
|
1723
|
+
pe_ruc: "pe_ruc";
|
|
1724
|
+
ph_tin: "ph_tin";
|
|
1725
|
+
pl_vat: "pl_vat";
|
|
1726
|
+
pt_vat: "pt_vat";
|
|
1727
|
+
ro_tin: "ro_tin";
|
|
1728
|
+
ro_vat: "ro_vat";
|
|
1729
|
+
rs_pib: "rs_pib";
|
|
1730
|
+
ru_inn: "ru_inn";
|
|
1731
|
+
ru_kpp: "ru_kpp";
|
|
1732
|
+
sa_vat: "sa_vat";
|
|
1733
|
+
se_vat: "se_vat";
|
|
1734
|
+
sg_gst: "sg_gst";
|
|
1735
|
+
sg_uen: "sg_uen";
|
|
1736
|
+
si_tin: "si_tin";
|
|
1737
|
+
si_vat: "si_vat";
|
|
1738
|
+
sk_vat: "sk_vat";
|
|
1739
|
+
sn_ninea: "sn_ninea";
|
|
1740
|
+
sr_fin: "sr_fin";
|
|
1741
|
+
sv_nit: "sv_nit";
|
|
1742
|
+
th_vat: "th_vat";
|
|
1743
|
+
tj_tin: "tj_tin";
|
|
1744
|
+
tr_tin: "tr_tin";
|
|
1745
|
+
tw_vat: "tw_vat";
|
|
1746
|
+
tz_vat: "tz_vat";
|
|
1747
|
+
ua_vat: "ua_vat";
|
|
1748
|
+
ug_tin: "ug_tin";
|
|
1749
|
+
us_ein: "us_ein";
|
|
1750
|
+
uy_ruc: "uy_ruc";
|
|
1751
|
+
uz_tin: "uz_tin";
|
|
1752
|
+
uz_vat: "uz_vat";
|
|
1753
|
+
ve_rif: "ve_rif";
|
|
1754
|
+
vn_tin: "vn_tin";
|
|
1755
|
+
xi_vat: "xi_vat";
|
|
1756
|
+
za_vat: "za_vat";
|
|
1757
|
+
zm_tin: "zm_tin";
|
|
1758
|
+
zw_tin: "zw_tin";
|
|
1759
|
+
}>>;
|
|
900
1760
|
}, z.core.$strip>;
|
|
901
1761
|
/**
|
|
902
1762
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1044,11 +1904,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1044
1904
|
zw_tin: "zw_tin";
|
|
1045
1905
|
}>>;
|
|
1046
1906
|
}, z.core.$strip>;
|
|
1047
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1048
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1049
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1050
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1051
|
-
}, z.core.$strip>;
|
|
1052
1907
|
/**
|
|
1053
1908
|
* An array of the applied promotional credits records.
|
|
1054
1909
|
*/
|
|
@@ -1065,19 +1920,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1065
1920
|
value_total: z.ZodNumber;
|
|
1066
1921
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1067
1922
|
}, z.core.$strip>>;
|
|
1068
|
-
export declare const
|
|
1069
|
-
|
|
1070
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1071
|
-
}, z.core.$strip>;
|
|
1072
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1073
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1923
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1924
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1074
1925
|
}, z.core.$strip>;
|
|
1075
|
-
export declare const
|
|
1076
|
-
|
|
1077
|
-
path: z.ZodObject<{
|
|
1078
|
-
cluster_id: z.ZodString;
|
|
1079
|
-
}, z.core.$strip>;
|
|
1080
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1926
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1927
|
+
cluster_id: z.ZodString;
|
|
1081
1928
|
}, z.core.$strip>;
|
|
1082
1929
|
/**
|
|
1083
1930
|
* An array of charts
|
|
@@ -1109,42 +1956,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1109
1956
|
updated_at: z.ZodString;
|
|
1110
1957
|
ready: z.ZodBoolean;
|
|
1111
1958
|
}, z.core.$strip>>;
|
|
1112
|
-
export declare const
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
cluster_id: z.ZodString;
|
|
1122
|
-
}, z.core.$strip>;
|
|
1123
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1959
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1960
|
+
values: z.ZodString;
|
|
1961
|
+
version_channel: z.ZodString;
|
|
1962
|
+
name: z.ZodString;
|
|
1963
|
+
namespace: z.ZodString;
|
|
1964
|
+
chart: z.ZodString;
|
|
1965
|
+
}, z.core.$strip>;
|
|
1966
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1967
|
+
cluster_id: z.ZodString;
|
|
1124
1968
|
}, z.core.$strip>;
|
|
1125
1969
|
/**
|
|
1126
1970
|
* Successfully created. Returns created Chart ID.
|
|
1127
1971
|
*/
|
|
1128
1972
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1129
|
-
export declare const
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
cluster_id: z.ZodString;
|
|
1133
|
-
chart_name: z.ZodString;
|
|
1134
|
-
}, z.core.$strip>;
|
|
1135
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1973
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1974
|
+
cluster_id: z.ZodString;
|
|
1975
|
+
chart_name: z.ZodString;
|
|
1136
1976
|
}, z.core.$strip>;
|
|
1137
1977
|
/**
|
|
1138
1978
|
* Successfully deleted.
|
|
1139
1979
|
*/
|
|
1140
1980
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1141
|
-
export declare const
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
cluster_id: z.ZodString;
|
|
1145
|
-
chart_name: z.ZodString;
|
|
1146
|
-
}, z.core.$strip>;
|
|
1147
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1981
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1982
|
+
cluster_id: z.ZodString;
|
|
1983
|
+
chart_name: z.ZodString;
|
|
1148
1984
|
}, z.core.$strip>;
|
|
1149
1985
|
/**
|
|
1150
1986
|
* Returns a single object containing chart details.
|
|
@@ -1176,157 +2012,1087 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1176
2012
|
updated_at: z.ZodString;
|
|
1177
2013
|
ready: z.ZodBoolean;
|
|
1178
2014
|
}, z.core.$strip>;
|
|
1179
|
-
export declare const
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
chart_name: z.ZodString;
|
|
1187
|
-
}, z.core.$strip>;
|
|
1188
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2015
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
2016
|
+
values: z.ZodString;
|
|
2017
|
+
version_channel: z.ZodString;
|
|
2018
|
+
}, z.core.$strip>;
|
|
2019
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
2020
|
+
cluster_id: z.ZodString;
|
|
2021
|
+
chart_name: z.ZodString;
|
|
1189
2022
|
}, z.core.$strip>;
|
|
1190
2023
|
/**
|
|
1191
2024
|
* Successfully updated.
|
|
1192
2025
|
*/
|
|
1193
2026
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1194
|
-
export declare const
|
|
1195
|
-
|
|
1196
|
-
path: z.ZodObject<{
|
|
1197
|
-
cluster_id: z.ZodString;
|
|
1198
|
-
}, z.core.$strip>;
|
|
1199
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2027
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
2028
|
+
cluster_id: z.ZodString;
|
|
1200
2029
|
}, z.core.$strip>;
|
|
1201
2030
|
/**
|
|
1202
2031
|
* An array of fleets
|
|
1203
2032
|
*/
|
|
1204
2033
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1205
2034
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1206
|
-
cpu: z.ZodNumber
|
|
2035
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
1207
2036
|
}, z.core.$strip>>;
|
|
1208
2037
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1209
2038
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1210
|
-
project: z.ZodString
|
|
2039
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1211
2040
|
}, z.core.$strip>>;
|
|
1212
2041
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1213
2042
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1214
|
-
apiKey: z.ZodString
|
|
2043
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1215
2044
|
}, z.core.$strip>>;
|
|
1216
2045
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1217
2046
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1218
|
-
controllerRoleArn: z.ZodString
|
|
2047
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2048
|
+
}, z.core.$strip>>;
|
|
2049
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2050
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2051
|
+
"on-demand": "on-demand";
|
|
2052
|
+
spot: "spot";
|
|
2053
|
+
}>>>;
|
|
2054
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2055
|
+
amd64: "amd64";
|
|
2056
|
+
arm64: "arm64";
|
|
2057
|
+
}>>>;
|
|
2058
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2059
|
+
p3: "p3";
|
|
2060
|
+
cx: "cx";
|
|
2061
|
+
h1: "h1";
|
|
2062
|
+
h3: "h3";
|
|
2063
|
+
a1: "a1";
|
|
2064
|
+
a2: "a2";
|
|
2065
|
+
a3: "a3";
|
|
2066
|
+
a4: "a4";
|
|
2067
|
+
c1: "c1";
|
|
2068
|
+
c2: "c2";
|
|
2069
|
+
c2d: "c2d";
|
|
2070
|
+
c3: "c3";
|
|
2071
|
+
c3d: "c3d";
|
|
2072
|
+
c4: "c4";
|
|
2073
|
+
c4a: "c4a";
|
|
2074
|
+
c4d: "c4d";
|
|
2075
|
+
c5: "c5";
|
|
2076
|
+
c5a: "c5a";
|
|
2077
|
+
c5ad: "c5ad";
|
|
2078
|
+
c5d: "c5d";
|
|
2079
|
+
c5n: "c5n";
|
|
2080
|
+
c6a: "c6a";
|
|
2081
|
+
c6g: "c6g";
|
|
2082
|
+
c6gd: "c6gd";
|
|
2083
|
+
c6gn: "c6gn";
|
|
2084
|
+
c6i: "c6i";
|
|
2085
|
+
c6id: "c6id";
|
|
2086
|
+
c6in: "c6in";
|
|
2087
|
+
c7a: "c7a";
|
|
2088
|
+
c7g: "c7g";
|
|
2089
|
+
c7gd: "c7gd";
|
|
2090
|
+
c7gn: "c7gn";
|
|
2091
|
+
c7i: "c7i";
|
|
2092
|
+
"c7i-flex": "c7i-flex";
|
|
2093
|
+
c8g: "c8g";
|
|
2094
|
+
c8gd: "c8gd";
|
|
2095
|
+
cax: "cax";
|
|
2096
|
+
ccx: "ccx";
|
|
2097
|
+
cpx: "cpx";
|
|
2098
|
+
d2: "d2";
|
|
2099
|
+
d3: "d3";
|
|
2100
|
+
d3en: "d3en";
|
|
2101
|
+
dl1: "dl1";
|
|
2102
|
+
dl2q: "dl2q";
|
|
2103
|
+
e2: "e2";
|
|
2104
|
+
f1: "f1";
|
|
2105
|
+
f2: "f2";
|
|
2106
|
+
g1: "g1";
|
|
2107
|
+
g2: "g2";
|
|
2108
|
+
g4ad: "g4ad";
|
|
2109
|
+
g4dn: "g4dn";
|
|
2110
|
+
g5: "g5";
|
|
2111
|
+
g5g: "g5g";
|
|
2112
|
+
g6: "g6";
|
|
2113
|
+
g6e: "g6e";
|
|
2114
|
+
gr6: "gr6";
|
|
2115
|
+
hpc6a: "hpc6a";
|
|
2116
|
+
hpc6id: "hpc6id";
|
|
2117
|
+
hpc7a: "hpc7a";
|
|
2118
|
+
hpc7g: "hpc7g";
|
|
2119
|
+
i2: "i2";
|
|
2120
|
+
i3: "i3";
|
|
2121
|
+
i3en: "i3en";
|
|
2122
|
+
i4g: "i4g";
|
|
2123
|
+
i4i: "i4i";
|
|
2124
|
+
i7i: "i7i";
|
|
2125
|
+
i7ie: "i7ie";
|
|
2126
|
+
i8g: "i8g";
|
|
2127
|
+
im4gn: "im4gn";
|
|
2128
|
+
inf1: "inf1";
|
|
2129
|
+
inf2: "inf2";
|
|
2130
|
+
is4gen: "is4gen";
|
|
2131
|
+
m1: "m1";
|
|
2132
|
+
m2: "m2";
|
|
2133
|
+
m3: "m3";
|
|
2134
|
+
m4: "m4";
|
|
2135
|
+
m5: "m5";
|
|
2136
|
+
m5a: "m5a";
|
|
2137
|
+
m5ad: "m5ad";
|
|
2138
|
+
m5d: "m5d";
|
|
2139
|
+
m5dn: "m5dn";
|
|
2140
|
+
m5n: "m5n";
|
|
2141
|
+
m5zn: "m5zn";
|
|
2142
|
+
m6a: "m6a";
|
|
2143
|
+
m6g: "m6g";
|
|
2144
|
+
m6gd: "m6gd";
|
|
2145
|
+
m6i: "m6i";
|
|
2146
|
+
m6id: "m6id";
|
|
2147
|
+
m6idn: "m6idn";
|
|
2148
|
+
m6in: "m6in";
|
|
2149
|
+
m7a: "m7a";
|
|
2150
|
+
m7g: "m7g";
|
|
2151
|
+
m7gd: "m7gd";
|
|
2152
|
+
m7i: "m7i";
|
|
2153
|
+
"m7i-flex": "m7i-flex";
|
|
2154
|
+
m8g: "m8g";
|
|
2155
|
+
m8gd: "m8gd";
|
|
2156
|
+
n1: "n1";
|
|
2157
|
+
n2: "n2";
|
|
2158
|
+
n2d: "n2d";
|
|
2159
|
+
n4: "n4";
|
|
2160
|
+
p3dn: "p3dn";
|
|
2161
|
+
p4d: "p4d";
|
|
2162
|
+
p4de: "p4de";
|
|
2163
|
+
p5: "p5";
|
|
2164
|
+
p5e: "p5e";
|
|
2165
|
+
p5en: "p5en";
|
|
2166
|
+
"p6-b200": "p6-b200";
|
|
2167
|
+
r3: "r3";
|
|
2168
|
+
r4: "r4";
|
|
2169
|
+
r5: "r5";
|
|
2170
|
+
r5a: "r5a";
|
|
2171
|
+
r5ad: "r5ad";
|
|
2172
|
+
r5b: "r5b";
|
|
2173
|
+
r5d: "r5d";
|
|
2174
|
+
r5dn: "r5dn";
|
|
2175
|
+
r5n: "r5n";
|
|
2176
|
+
r6a: "r6a";
|
|
2177
|
+
r6g: "r6g";
|
|
2178
|
+
r6gd: "r6gd";
|
|
2179
|
+
r6i: "r6i";
|
|
2180
|
+
r6id: "r6id";
|
|
2181
|
+
r6idn: "r6idn";
|
|
2182
|
+
r6in: "r6in";
|
|
2183
|
+
r7a: "r7a";
|
|
2184
|
+
r7g: "r7g";
|
|
2185
|
+
r7gd: "r7gd";
|
|
2186
|
+
r7i: "r7i";
|
|
2187
|
+
r7iz: "r7iz";
|
|
2188
|
+
r8g: "r8g";
|
|
2189
|
+
r8gd: "r8gd";
|
|
2190
|
+
t2: "t2";
|
|
2191
|
+
t2a: "t2a";
|
|
2192
|
+
t2d: "t2d";
|
|
2193
|
+
t3: "t3";
|
|
2194
|
+
t3a: "t3a";
|
|
2195
|
+
t4g: "t4g";
|
|
2196
|
+
trn1: "trn1";
|
|
2197
|
+
trn1n: "trn1n";
|
|
2198
|
+
"u-3tb1": "u-3tb1";
|
|
2199
|
+
"u-6tb1": "u-6tb1";
|
|
2200
|
+
"u7i-12tb": "u7i-12tb";
|
|
2201
|
+
"u7i-6tb": "u7i-6tb";
|
|
2202
|
+
"u7i-8tb": "u7i-8tb";
|
|
2203
|
+
"u7in-16tb": "u7in-16tb";
|
|
2204
|
+
"u7in-24tb": "u7in-24tb";
|
|
2205
|
+
"u7in-32tb": "u7in-32tb";
|
|
2206
|
+
vt1: "vt1";
|
|
2207
|
+
x1: "x1";
|
|
2208
|
+
x1e: "x1e";
|
|
2209
|
+
x2gd: "x2gd";
|
|
2210
|
+
x2idn: "x2idn";
|
|
2211
|
+
x2iedn: "x2iedn";
|
|
2212
|
+
x2iezn: "x2iezn";
|
|
2213
|
+
x4: "x4";
|
|
2214
|
+
x8g: "x8g";
|
|
2215
|
+
z1d: "z1d";
|
|
2216
|
+
z3: "z3";
|
|
2217
|
+
}>>>;
|
|
2218
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2219
|
+
"africa-south1": "africa-south1";
|
|
2220
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2221
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2222
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2223
|
+
"ap-south-1": "ap-south-1";
|
|
2224
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2225
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2226
|
+
ash: "ash";
|
|
2227
|
+
"asia-east1": "asia-east1";
|
|
2228
|
+
"asia-east2": "asia-east2";
|
|
2229
|
+
"asia-northeast1": "asia-northeast1";
|
|
2230
|
+
"asia-northeast2": "asia-northeast2";
|
|
2231
|
+
"asia-northeast3": "asia-northeast3";
|
|
2232
|
+
"asia-south1": "asia-south1";
|
|
2233
|
+
"asia-south2": "asia-south2";
|
|
2234
|
+
"asia-southeast1": "asia-southeast1";
|
|
2235
|
+
"asia-southeast2": "asia-southeast2";
|
|
2236
|
+
"australia-southeast1": "australia-southeast1";
|
|
2237
|
+
"australia-southeast2": "australia-southeast2";
|
|
2238
|
+
"ca-central-1": "ca-central-1";
|
|
2239
|
+
"eu-central-1": "eu-central-1";
|
|
2240
|
+
"eu-central-2": "eu-central-2";
|
|
2241
|
+
"eu-north-1": "eu-north-1";
|
|
2242
|
+
"eu-west-1": "eu-west-1";
|
|
2243
|
+
"eu-west-2": "eu-west-2";
|
|
2244
|
+
"eu-west-3": "eu-west-3";
|
|
2245
|
+
"europe-central2": "europe-central2";
|
|
2246
|
+
"europe-north1": "europe-north1";
|
|
2247
|
+
"europe-southwest1": "europe-southwest1";
|
|
2248
|
+
"europe-west1": "europe-west1";
|
|
2249
|
+
"europe-west10": "europe-west10";
|
|
2250
|
+
"europe-west12": "europe-west12";
|
|
2251
|
+
"europe-west2": "europe-west2";
|
|
2252
|
+
"europe-west3": "europe-west3";
|
|
2253
|
+
"europe-west4": "europe-west4";
|
|
2254
|
+
"europe-west6": "europe-west6";
|
|
2255
|
+
"europe-west8": "europe-west8";
|
|
2256
|
+
"europe-west9": "europe-west9";
|
|
2257
|
+
fsn1: "fsn1";
|
|
2258
|
+
hel1: "hel1";
|
|
2259
|
+
hil: "hil";
|
|
2260
|
+
"me-central1": "me-central1";
|
|
2261
|
+
"me-central2": "me-central2";
|
|
2262
|
+
"me-west1": "me-west1";
|
|
2263
|
+
nbg1: "nbg1";
|
|
2264
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2265
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2266
|
+
"sa-east-1": "sa-east-1";
|
|
2267
|
+
sin: "sin";
|
|
2268
|
+
"southamerica-east1": "southamerica-east1";
|
|
2269
|
+
"southamerica-west1": "southamerica-west1";
|
|
2270
|
+
"us-central1": "us-central1";
|
|
2271
|
+
"us-east-1": "us-east-1";
|
|
2272
|
+
"us-east-2": "us-east-2";
|
|
2273
|
+
"us-east1": "us-east1";
|
|
2274
|
+
"us-east4": "us-east4";
|
|
2275
|
+
"us-east5": "us-east5";
|
|
2276
|
+
"us-south1": "us-south1";
|
|
2277
|
+
"us-west-1": "us-west-1";
|
|
2278
|
+
"us-west-2": "us-west-2";
|
|
2279
|
+
"us-west1": "us-west1";
|
|
2280
|
+
"us-west2": "us-west2";
|
|
2281
|
+
"us-west3": "us-west3";
|
|
2282
|
+
"us-west4": "us-west4";
|
|
2283
|
+
}>>>;
|
|
1219
2284
|
}, z.core.$strip>>;
|
|
2285
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2286
|
+
aggressive: "aggressive";
|
|
2287
|
+
conservative: "conservative";
|
|
2288
|
+
}>>;
|
|
1220
2289
|
id: z.ZodString;
|
|
1221
2290
|
}, z.core.$strip>>;
|
|
1222
|
-
export declare const
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
2291
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2292
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2293
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
2294
|
+
}, z.core.$strip>>;
|
|
2295
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2296
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2297
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2298
|
+
}, z.core.$strip>>;
|
|
2299
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2300
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2301
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2302
|
+
}, z.core.$strip>>;
|
|
2303
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2304
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2305
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2306
|
+
}, z.core.$strip>>;
|
|
2307
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2308
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2309
|
+
"on-demand": "on-demand";
|
|
2310
|
+
spot: "spot";
|
|
2311
|
+
}>>>;
|
|
2312
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2313
|
+
amd64: "amd64";
|
|
2314
|
+
arm64: "arm64";
|
|
2315
|
+
}>>>;
|
|
2316
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2317
|
+
p3: "p3";
|
|
2318
|
+
cx: "cx";
|
|
2319
|
+
h1: "h1";
|
|
2320
|
+
h3: "h3";
|
|
2321
|
+
a1: "a1";
|
|
2322
|
+
a2: "a2";
|
|
2323
|
+
a3: "a3";
|
|
2324
|
+
a4: "a4";
|
|
2325
|
+
c1: "c1";
|
|
2326
|
+
c2: "c2";
|
|
2327
|
+
c2d: "c2d";
|
|
2328
|
+
c3: "c3";
|
|
2329
|
+
c3d: "c3d";
|
|
2330
|
+
c4: "c4";
|
|
2331
|
+
c4a: "c4a";
|
|
2332
|
+
c4d: "c4d";
|
|
2333
|
+
c5: "c5";
|
|
2334
|
+
c5a: "c5a";
|
|
2335
|
+
c5ad: "c5ad";
|
|
2336
|
+
c5d: "c5d";
|
|
2337
|
+
c5n: "c5n";
|
|
2338
|
+
c6a: "c6a";
|
|
2339
|
+
c6g: "c6g";
|
|
2340
|
+
c6gd: "c6gd";
|
|
2341
|
+
c6gn: "c6gn";
|
|
2342
|
+
c6i: "c6i";
|
|
2343
|
+
c6id: "c6id";
|
|
2344
|
+
c6in: "c6in";
|
|
2345
|
+
c7a: "c7a";
|
|
2346
|
+
c7g: "c7g";
|
|
2347
|
+
c7gd: "c7gd";
|
|
2348
|
+
c7gn: "c7gn";
|
|
2349
|
+
c7i: "c7i";
|
|
2350
|
+
"c7i-flex": "c7i-flex";
|
|
2351
|
+
c8g: "c8g";
|
|
2352
|
+
c8gd: "c8gd";
|
|
2353
|
+
cax: "cax";
|
|
2354
|
+
ccx: "ccx";
|
|
2355
|
+
cpx: "cpx";
|
|
2356
|
+
d2: "d2";
|
|
2357
|
+
d3: "d3";
|
|
2358
|
+
d3en: "d3en";
|
|
2359
|
+
dl1: "dl1";
|
|
2360
|
+
dl2q: "dl2q";
|
|
2361
|
+
e2: "e2";
|
|
2362
|
+
f1: "f1";
|
|
2363
|
+
f2: "f2";
|
|
2364
|
+
g1: "g1";
|
|
2365
|
+
g2: "g2";
|
|
2366
|
+
g4ad: "g4ad";
|
|
2367
|
+
g4dn: "g4dn";
|
|
2368
|
+
g5: "g5";
|
|
2369
|
+
g5g: "g5g";
|
|
2370
|
+
g6: "g6";
|
|
2371
|
+
g6e: "g6e";
|
|
2372
|
+
gr6: "gr6";
|
|
2373
|
+
hpc6a: "hpc6a";
|
|
2374
|
+
hpc6id: "hpc6id";
|
|
2375
|
+
hpc7a: "hpc7a";
|
|
2376
|
+
hpc7g: "hpc7g";
|
|
2377
|
+
i2: "i2";
|
|
2378
|
+
i3: "i3";
|
|
2379
|
+
i3en: "i3en";
|
|
2380
|
+
i4g: "i4g";
|
|
2381
|
+
i4i: "i4i";
|
|
2382
|
+
i7i: "i7i";
|
|
2383
|
+
i7ie: "i7ie";
|
|
2384
|
+
i8g: "i8g";
|
|
2385
|
+
im4gn: "im4gn";
|
|
2386
|
+
inf1: "inf1";
|
|
2387
|
+
inf2: "inf2";
|
|
2388
|
+
is4gen: "is4gen";
|
|
2389
|
+
m1: "m1";
|
|
2390
|
+
m2: "m2";
|
|
2391
|
+
m3: "m3";
|
|
2392
|
+
m4: "m4";
|
|
2393
|
+
m5: "m5";
|
|
2394
|
+
m5a: "m5a";
|
|
2395
|
+
m5ad: "m5ad";
|
|
2396
|
+
m5d: "m5d";
|
|
2397
|
+
m5dn: "m5dn";
|
|
2398
|
+
m5n: "m5n";
|
|
2399
|
+
m5zn: "m5zn";
|
|
2400
|
+
m6a: "m6a";
|
|
2401
|
+
m6g: "m6g";
|
|
2402
|
+
m6gd: "m6gd";
|
|
2403
|
+
m6i: "m6i";
|
|
2404
|
+
m6id: "m6id";
|
|
2405
|
+
m6idn: "m6idn";
|
|
2406
|
+
m6in: "m6in";
|
|
2407
|
+
m7a: "m7a";
|
|
2408
|
+
m7g: "m7g";
|
|
2409
|
+
m7gd: "m7gd";
|
|
2410
|
+
m7i: "m7i";
|
|
2411
|
+
"m7i-flex": "m7i-flex";
|
|
2412
|
+
m8g: "m8g";
|
|
2413
|
+
m8gd: "m8gd";
|
|
2414
|
+
n1: "n1";
|
|
2415
|
+
n2: "n2";
|
|
2416
|
+
n2d: "n2d";
|
|
2417
|
+
n4: "n4";
|
|
2418
|
+
p3dn: "p3dn";
|
|
2419
|
+
p4d: "p4d";
|
|
2420
|
+
p4de: "p4de";
|
|
2421
|
+
p5: "p5";
|
|
2422
|
+
p5e: "p5e";
|
|
2423
|
+
p5en: "p5en";
|
|
2424
|
+
"p6-b200": "p6-b200";
|
|
2425
|
+
r3: "r3";
|
|
2426
|
+
r4: "r4";
|
|
2427
|
+
r5: "r5";
|
|
2428
|
+
r5a: "r5a";
|
|
2429
|
+
r5ad: "r5ad";
|
|
2430
|
+
r5b: "r5b";
|
|
2431
|
+
r5d: "r5d";
|
|
2432
|
+
r5dn: "r5dn";
|
|
2433
|
+
r5n: "r5n";
|
|
2434
|
+
r6a: "r6a";
|
|
2435
|
+
r6g: "r6g";
|
|
2436
|
+
r6gd: "r6gd";
|
|
2437
|
+
r6i: "r6i";
|
|
2438
|
+
r6id: "r6id";
|
|
2439
|
+
r6idn: "r6idn";
|
|
2440
|
+
r6in: "r6in";
|
|
2441
|
+
r7a: "r7a";
|
|
2442
|
+
r7g: "r7g";
|
|
2443
|
+
r7gd: "r7gd";
|
|
2444
|
+
r7i: "r7i";
|
|
2445
|
+
r7iz: "r7iz";
|
|
2446
|
+
r8g: "r8g";
|
|
2447
|
+
r8gd: "r8gd";
|
|
2448
|
+
t2: "t2";
|
|
2449
|
+
t2a: "t2a";
|
|
2450
|
+
t2d: "t2d";
|
|
2451
|
+
t3: "t3";
|
|
2452
|
+
t3a: "t3a";
|
|
2453
|
+
t4g: "t4g";
|
|
2454
|
+
trn1: "trn1";
|
|
2455
|
+
trn1n: "trn1n";
|
|
2456
|
+
"u-3tb1": "u-3tb1";
|
|
2457
|
+
"u-6tb1": "u-6tb1";
|
|
2458
|
+
"u7i-12tb": "u7i-12tb";
|
|
2459
|
+
"u7i-6tb": "u7i-6tb";
|
|
2460
|
+
"u7i-8tb": "u7i-8tb";
|
|
2461
|
+
"u7in-16tb": "u7in-16tb";
|
|
2462
|
+
"u7in-24tb": "u7in-24tb";
|
|
2463
|
+
"u7in-32tb": "u7in-32tb";
|
|
2464
|
+
vt1: "vt1";
|
|
2465
|
+
x1: "x1";
|
|
2466
|
+
x1e: "x1e";
|
|
2467
|
+
x2gd: "x2gd";
|
|
2468
|
+
x2idn: "x2idn";
|
|
2469
|
+
x2iedn: "x2iedn";
|
|
2470
|
+
x2iezn: "x2iezn";
|
|
2471
|
+
x4: "x4";
|
|
2472
|
+
x8g: "x8g";
|
|
2473
|
+
z1d: "z1d";
|
|
2474
|
+
z3: "z3";
|
|
2475
|
+
}>>>;
|
|
2476
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2477
|
+
"africa-south1": "africa-south1";
|
|
2478
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2479
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2480
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2481
|
+
"ap-south-1": "ap-south-1";
|
|
2482
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2483
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2484
|
+
ash: "ash";
|
|
2485
|
+
"asia-east1": "asia-east1";
|
|
2486
|
+
"asia-east2": "asia-east2";
|
|
2487
|
+
"asia-northeast1": "asia-northeast1";
|
|
2488
|
+
"asia-northeast2": "asia-northeast2";
|
|
2489
|
+
"asia-northeast3": "asia-northeast3";
|
|
2490
|
+
"asia-south1": "asia-south1";
|
|
2491
|
+
"asia-south2": "asia-south2";
|
|
2492
|
+
"asia-southeast1": "asia-southeast1";
|
|
2493
|
+
"asia-southeast2": "asia-southeast2";
|
|
2494
|
+
"australia-southeast1": "australia-southeast1";
|
|
2495
|
+
"australia-southeast2": "australia-southeast2";
|
|
2496
|
+
"ca-central-1": "ca-central-1";
|
|
2497
|
+
"eu-central-1": "eu-central-1";
|
|
2498
|
+
"eu-central-2": "eu-central-2";
|
|
2499
|
+
"eu-north-1": "eu-north-1";
|
|
2500
|
+
"eu-west-1": "eu-west-1";
|
|
2501
|
+
"eu-west-2": "eu-west-2";
|
|
2502
|
+
"eu-west-3": "eu-west-3";
|
|
2503
|
+
"europe-central2": "europe-central2";
|
|
2504
|
+
"europe-north1": "europe-north1";
|
|
2505
|
+
"europe-southwest1": "europe-southwest1";
|
|
2506
|
+
"europe-west1": "europe-west1";
|
|
2507
|
+
"europe-west10": "europe-west10";
|
|
2508
|
+
"europe-west12": "europe-west12";
|
|
2509
|
+
"europe-west2": "europe-west2";
|
|
2510
|
+
"europe-west3": "europe-west3";
|
|
2511
|
+
"europe-west4": "europe-west4";
|
|
2512
|
+
"europe-west6": "europe-west6";
|
|
2513
|
+
"europe-west8": "europe-west8";
|
|
2514
|
+
"europe-west9": "europe-west9";
|
|
2515
|
+
fsn1: "fsn1";
|
|
2516
|
+
hel1: "hel1";
|
|
2517
|
+
hil: "hil";
|
|
2518
|
+
"me-central1": "me-central1";
|
|
2519
|
+
"me-central2": "me-central2";
|
|
2520
|
+
"me-west1": "me-west1";
|
|
2521
|
+
nbg1: "nbg1";
|
|
2522
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2523
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2524
|
+
"sa-east-1": "sa-east-1";
|
|
2525
|
+
sin: "sin";
|
|
2526
|
+
"southamerica-east1": "southamerica-east1";
|
|
2527
|
+
"southamerica-west1": "southamerica-west1";
|
|
2528
|
+
"us-central1": "us-central1";
|
|
2529
|
+
"us-east-1": "us-east-1";
|
|
2530
|
+
"us-east-2": "us-east-2";
|
|
2531
|
+
"us-east1": "us-east1";
|
|
2532
|
+
"us-east4": "us-east4";
|
|
2533
|
+
"us-east5": "us-east5";
|
|
2534
|
+
"us-south1": "us-south1";
|
|
2535
|
+
"us-west-1": "us-west-1";
|
|
2536
|
+
"us-west-2": "us-west-2";
|
|
2537
|
+
"us-west1": "us-west1";
|
|
2538
|
+
"us-west2": "us-west2";
|
|
2539
|
+
"us-west3": "us-west3";
|
|
2540
|
+
"us-west4": "us-west4";
|
|
2541
|
+
}>>>;
|
|
2542
|
+
}, z.core.$strip>>;
|
|
2543
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2544
|
+
aggressive: "aggressive";
|
|
2545
|
+
conservative: "conservative";
|
|
2546
|
+
}>>;
|
|
2547
|
+
id: z.ZodString;
|
|
2548
|
+
}, z.core.$strip>;
|
|
2549
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
2550
|
+
cluster_id: z.ZodString;
|
|
1245
2551
|
}, z.core.$strip>;
|
|
1246
2552
|
/**
|
|
1247
2553
|
* Successfully created. Returns created Fleet ID.
|
|
1248
2554
|
*/
|
|
1249
2555
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1250
|
-
export declare const
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
cluster_id: z.ZodString;
|
|
1254
|
-
fleet_name: z.ZodString;
|
|
1255
|
-
}, z.core.$strip>;
|
|
1256
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2556
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
2557
|
+
cluster_id: z.ZodString;
|
|
2558
|
+
fleet_name: z.ZodString;
|
|
1257
2559
|
}, z.core.$strip>;
|
|
1258
2560
|
/**
|
|
1259
2561
|
* Successfully deleted.
|
|
1260
2562
|
*/
|
|
1261
2563
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1262
|
-
export declare const
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
cluster_id: z.ZodString;
|
|
1266
|
-
fleet_name: z.ZodString;
|
|
1267
|
-
}, z.core.$strip>;
|
|
1268
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2564
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
2565
|
+
cluster_id: z.ZodString;
|
|
2566
|
+
fleet_name: z.ZodString;
|
|
1269
2567
|
}, z.core.$strip>;
|
|
1270
2568
|
/**
|
|
1271
2569
|
* Returns a single object containing fleet details.
|
|
1272
2570
|
*/
|
|
1273
2571
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1274
2572
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1275
|
-
cpu: z.ZodNumber
|
|
2573
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
1276
2574
|
}, z.core.$strip>>;
|
|
1277
2575
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1278
2576
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1279
|
-
project: z.ZodString
|
|
2577
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1280
2578
|
}, z.core.$strip>>;
|
|
1281
2579
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1282
2580
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1283
|
-
apiKey: z.ZodString
|
|
2581
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1284
2582
|
}, z.core.$strip>>;
|
|
1285
2583
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1286
2584
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1287
|
-
controllerRoleArn: z.ZodString
|
|
2585
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
1288
2586
|
}, z.core.$strip>>;
|
|
2587
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2588
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2589
|
+
"on-demand": "on-demand";
|
|
2590
|
+
spot: "spot";
|
|
2591
|
+
}>>>;
|
|
2592
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2593
|
+
amd64: "amd64";
|
|
2594
|
+
arm64: "arm64";
|
|
2595
|
+
}>>>;
|
|
2596
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2597
|
+
p3: "p3";
|
|
2598
|
+
cx: "cx";
|
|
2599
|
+
h1: "h1";
|
|
2600
|
+
h3: "h3";
|
|
2601
|
+
a1: "a1";
|
|
2602
|
+
a2: "a2";
|
|
2603
|
+
a3: "a3";
|
|
2604
|
+
a4: "a4";
|
|
2605
|
+
c1: "c1";
|
|
2606
|
+
c2: "c2";
|
|
2607
|
+
c2d: "c2d";
|
|
2608
|
+
c3: "c3";
|
|
2609
|
+
c3d: "c3d";
|
|
2610
|
+
c4: "c4";
|
|
2611
|
+
c4a: "c4a";
|
|
2612
|
+
c4d: "c4d";
|
|
2613
|
+
c5: "c5";
|
|
2614
|
+
c5a: "c5a";
|
|
2615
|
+
c5ad: "c5ad";
|
|
2616
|
+
c5d: "c5d";
|
|
2617
|
+
c5n: "c5n";
|
|
2618
|
+
c6a: "c6a";
|
|
2619
|
+
c6g: "c6g";
|
|
2620
|
+
c6gd: "c6gd";
|
|
2621
|
+
c6gn: "c6gn";
|
|
2622
|
+
c6i: "c6i";
|
|
2623
|
+
c6id: "c6id";
|
|
2624
|
+
c6in: "c6in";
|
|
2625
|
+
c7a: "c7a";
|
|
2626
|
+
c7g: "c7g";
|
|
2627
|
+
c7gd: "c7gd";
|
|
2628
|
+
c7gn: "c7gn";
|
|
2629
|
+
c7i: "c7i";
|
|
2630
|
+
"c7i-flex": "c7i-flex";
|
|
2631
|
+
c8g: "c8g";
|
|
2632
|
+
c8gd: "c8gd";
|
|
2633
|
+
cax: "cax";
|
|
2634
|
+
ccx: "ccx";
|
|
2635
|
+
cpx: "cpx";
|
|
2636
|
+
d2: "d2";
|
|
2637
|
+
d3: "d3";
|
|
2638
|
+
d3en: "d3en";
|
|
2639
|
+
dl1: "dl1";
|
|
2640
|
+
dl2q: "dl2q";
|
|
2641
|
+
e2: "e2";
|
|
2642
|
+
f1: "f1";
|
|
2643
|
+
f2: "f2";
|
|
2644
|
+
g1: "g1";
|
|
2645
|
+
g2: "g2";
|
|
2646
|
+
g4ad: "g4ad";
|
|
2647
|
+
g4dn: "g4dn";
|
|
2648
|
+
g5: "g5";
|
|
2649
|
+
g5g: "g5g";
|
|
2650
|
+
g6: "g6";
|
|
2651
|
+
g6e: "g6e";
|
|
2652
|
+
gr6: "gr6";
|
|
2653
|
+
hpc6a: "hpc6a";
|
|
2654
|
+
hpc6id: "hpc6id";
|
|
2655
|
+
hpc7a: "hpc7a";
|
|
2656
|
+
hpc7g: "hpc7g";
|
|
2657
|
+
i2: "i2";
|
|
2658
|
+
i3: "i3";
|
|
2659
|
+
i3en: "i3en";
|
|
2660
|
+
i4g: "i4g";
|
|
2661
|
+
i4i: "i4i";
|
|
2662
|
+
i7i: "i7i";
|
|
2663
|
+
i7ie: "i7ie";
|
|
2664
|
+
i8g: "i8g";
|
|
2665
|
+
im4gn: "im4gn";
|
|
2666
|
+
inf1: "inf1";
|
|
2667
|
+
inf2: "inf2";
|
|
2668
|
+
is4gen: "is4gen";
|
|
2669
|
+
m1: "m1";
|
|
2670
|
+
m2: "m2";
|
|
2671
|
+
m3: "m3";
|
|
2672
|
+
m4: "m4";
|
|
2673
|
+
m5: "m5";
|
|
2674
|
+
m5a: "m5a";
|
|
2675
|
+
m5ad: "m5ad";
|
|
2676
|
+
m5d: "m5d";
|
|
2677
|
+
m5dn: "m5dn";
|
|
2678
|
+
m5n: "m5n";
|
|
2679
|
+
m5zn: "m5zn";
|
|
2680
|
+
m6a: "m6a";
|
|
2681
|
+
m6g: "m6g";
|
|
2682
|
+
m6gd: "m6gd";
|
|
2683
|
+
m6i: "m6i";
|
|
2684
|
+
m6id: "m6id";
|
|
2685
|
+
m6idn: "m6idn";
|
|
2686
|
+
m6in: "m6in";
|
|
2687
|
+
m7a: "m7a";
|
|
2688
|
+
m7g: "m7g";
|
|
2689
|
+
m7gd: "m7gd";
|
|
2690
|
+
m7i: "m7i";
|
|
2691
|
+
"m7i-flex": "m7i-flex";
|
|
2692
|
+
m8g: "m8g";
|
|
2693
|
+
m8gd: "m8gd";
|
|
2694
|
+
n1: "n1";
|
|
2695
|
+
n2: "n2";
|
|
2696
|
+
n2d: "n2d";
|
|
2697
|
+
n4: "n4";
|
|
2698
|
+
p3dn: "p3dn";
|
|
2699
|
+
p4d: "p4d";
|
|
2700
|
+
p4de: "p4de";
|
|
2701
|
+
p5: "p5";
|
|
2702
|
+
p5e: "p5e";
|
|
2703
|
+
p5en: "p5en";
|
|
2704
|
+
"p6-b200": "p6-b200";
|
|
2705
|
+
r3: "r3";
|
|
2706
|
+
r4: "r4";
|
|
2707
|
+
r5: "r5";
|
|
2708
|
+
r5a: "r5a";
|
|
2709
|
+
r5ad: "r5ad";
|
|
2710
|
+
r5b: "r5b";
|
|
2711
|
+
r5d: "r5d";
|
|
2712
|
+
r5dn: "r5dn";
|
|
2713
|
+
r5n: "r5n";
|
|
2714
|
+
r6a: "r6a";
|
|
2715
|
+
r6g: "r6g";
|
|
2716
|
+
r6gd: "r6gd";
|
|
2717
|
+
r6i: "r6i";
|
|
2718
|
+
r6id: "r6id";
|
|
2719
|
+
r6idn: "r6idn";
|
|
2720
|
+
r6in: "r6in";
|
|
2721
|
+
r7a: "r7a";
|
|
2722
|
+
r7g: "r7g";
|
|
2723
|
+
r7gd: "r7gd";
|
|
2724
|
+
r7i: "r7i";
|
|
2725
|
+
r7iz: "r7iz";
|
|
2726
|
+
r8g: "r8g";
|
|
2727
|
+
r8gd: "r8gd";
|
|
2728
|
+
t2: "t2";
|
|
2729
|
+
t2a: "t2a";
|
|
2730
|
+
t2d: "t2d";
|
|
2731
|
+
t3: "t3";
|
|
2732
|
+
t3a: "t3a";
|
|
2733
|
+
t4g: "t4g";
|
|
2734
|
+
trn1: "trn1";
|
|
2735
|
+
trn1n: "trn1n";
|
|
2736
|
+
"u-3tb1": "u-3tb1";
|
|
2737
|
+
"u-6tb1": "u-6tb1";
|
|
2738
|
+
"u7i-12tb": "u7i-12tb";
|
|
2739
|
+
"u7i-6tb": "u7i-6tb";
|
|
2740
|
+
"u7i-8tb": "u7i-8tb";
|
|
2741
|
+
"u7in-16tb": "u7in-16tb";
|
|
2742
|
+
"u7in-24tb": "u7in-24tb";
|
|
2743
|
+
"u7in-32tb": "u7in-32tb";
|
|
2744
|
+
vt1: "vt1";
|
|
2745
|
+
x1: "x1";
|
|
2746
|
+
x1e: "x1e";
|
|
2747
|
+
x2gd: "x2gd";
|
|
2748
|
+
x2idn: "x2idn";
|
|
2749
|
+
x2iedn: "x2iedn";
|
|
2750
|
+
x2iezn: "x2iezn";
|
|
2751
|
+
x4: "x4";
|
|
2752
|
+
x8g: "x8g";
|
|
2753
|
+
z1d: "z1d";
|
|
2754
|
+
z3: "z3";
|
|
2755
|
+
}>>>;
|
|
2756
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2757
|
+
"africa-south1": "africa-south1";
|
|
2758
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2759
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2760
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2761
|
+
"ap-south-1": "ap-south-1";
|
|
2762
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2763
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2764
|
+
ash: "ash";
|
|
2765
|
+
"asia-east1": "asia-east1";
|
|
2766
|
+
"asia-east2": "asia-east2";
|
|
2767
|
+
"asia-northeast1": "asia-northeast1";
|
|
2768
|
+
"asia-northeast2": "asia-northeast2";
|
|
2769
|
+
"asia-northeast3": "asia-northeast3";
|
|
2770
|
+
"asia-south1": "asia-south1";
|
|
2771
|
+
"asia-south2": "asia-south2";
|
|
2772
|
+
"asia-southeast1": "asia-southeast1";
|
|
2773
|
+
"asia-southeast2": "asia-southeast2";
|
|
2774
|
+
"australia-southeast1": "australia-southeast1";
|
|
2775
|
+
"australia-southeast2": "australia-southeast2";
|
|
2776
|
+
"ca-central-1": "ca-central-1";
|
|
2777
|
+
"eu-central-1": "eu-central-1";
|
|
2778
|
+
"eu-central-2": "eu-central-2";
|
|
2779
|
+
"eu-north-1": "eu-north-1";
|
|
2780
|
+
"eu-west-1": "eu-west-1";
|
|
2781
|
+
"eu-west-2": "eu-west-2";
|
|
2782
|
+
"eu-west-3": "eu-west-3";
|
|
2783
|
+
"europe-central2": "europe-central2";
|
|
2784
|
+
"europe-north1": "europe-north1";
|
|
2785
|
+
"europe-southwest1": "europe-southwest1";
|
|
2786
|
+
"europe-west1": "europe-west1";
|
|
2787
|
+
"europe-west10": "europe-west10";
|
|
2788
|
+
"europe-west12": "europe-west12";
|
|
2789
|
+
"europe-west2": "europe-west2";
|
|
2790
|
+
"europe-west3": "europe-west3";
|
|
2791
|
+
"europe-west4": "europe-west4";
|
|
2792
|
+
"europe-west6": "europe-west6";
|
|
2793
|
+
"europe-west8": "europe-west8";
|
|
2794
|
+
"europe-west9": "europe-west9";
|
|
2795
|
+
fsn1: "fsn1";
|
|
2796
|
+
hel1: "hel1";
|
|
2797
|
+
hil: "hil";
|
|
2798
|
+
"me-central1": "me-central1";
|
|
2799
|
+
"me-central2": "me-central2";
|
|
2800
|
+
"me-west1": "me-west1";
|
|
2801
|
+
nbg1: "nbg1";
|
|
2802
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2803
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2804
|
+
"sa-east-1": "sa-east-1";
|
|
2805
|
+
sin: "sin";
|
|
2806
|
+
"southamerica-east1": "southamerica-east1";
|
|
2807
|
+
"southamerica-west1": "southamerica-west1";
|
|
2808
|
+
"us-central1": "us-central1";
|
|
2809
|
+
"us-east-1": "us-east-1";
|
|
2810
|
+
"us-east-2": "us-east-2";
|
|
2811
|
+
"us-east1": "us-east1";
|
|
2812
|
+
"us-east4": "us-east4";
|
|
2813
|
+
"us-east5": "us-east5";
|
|
2814
|
+
"us-south1": "us-south1";
|
|
2815
|
+
"us-west-1": "us-west-1";
|
|
2816
|
+
"us-west-2": "us-west-2";
|
|
2817
|
+
"us-west1": "us-west1";
|
|
2818
|
+
"us-west2": "us-west2";
|
|
2819
|
+
"us-west3": "us-west3";
|
|
2820
|
+
"us-west4": "us-west4";
|
|
2821
|
+
}>>>;
|
|
2822
|
+
}, z.core.$strip>>;
|
|
2823
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2824
|
+
aggressive: "aggressive";
|
|
2825
|
+
conservative: "conservative";
|
|
2826
|
+
}>>;
|
|
1289
2827
|
id: z.ZodString;
|
|
1290
2828
|
}, z.core.$strip>;
|
|
1291
|
-
export declare const
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
2829
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2830
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2831
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
2832
|
+
}, z.core.$strip>>;
|
|
2833
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2834
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2835
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2836
|
+
}, z.core.$strip>>;
|
|
2837
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2838
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2839
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2840
|
+
}, z.core.$strip>>;
|
|
2841
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2842
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2843
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2844
|
+
}, z.core.$strip>>;
|
|
2845
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2846
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2847
|
+
"on-demand": "on-demand";
|
|
2848
|
+
spot: "spot";
|
|
2849
|
+
}>>>;
|
|
2850
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2851
|
+
amd64: "amd64";
|
|
2852
|
+
arm64: "arm64";
|
|
2853
|
+
}>>>;
|
|
2854
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2855
|
+
p3: "p3";
|
|
2856
|
+
cx: "cx";
|
|
2857
|
+
h1: "h1";
|
|
2858
|
+
h3: "h3";
|
|
2859
|
+
a1: "a1";
|
|
2860
|
+
a2: "a2";
|
|
2861
|
+
a3: "a3";
|
|
2862
|
+
a4: "a4";
|
|
2863
|
+
c1: "c1";
|
|
2864
|
+
c2: "c2";
|
|
2865
|
+
c2d: "c2d";
|
|
2866
|
+
c3: "c3";
|
|
2867
|
+
c3d: "c3d";
|
|
2868
|
+
c4: "c4";
|
|
2869
|
+
c4a: "c4a";
|
|
2870
|
+
c4d: "c4d";
|
|
2871
|
+
c5: "c5";
|
|
2872
|
+
c5a: "c5a";
|
|
2873
|
+
c5ad: "c5ad";
|
|
2874
|
+
c5d: "c5d";
|
|
2875
|
+
c5n: "c5n";
|
|
2876
|
+
c6a: "c6a";
|
|
2877
|
+
c6g: "c6g";
|
|
2878
|
+
c6gd: "c6gd";
|
|
2879
|
+
c6gn: "c6gn";
|
|
2880
|
+
c6i: "c6i";
|
|
2881
|
+
c6id: "c6id";
|
|
2882
|
+
c6in: "c6in";
|
|
2883
|
+
c7a: "c7a";
|
|
2884
|
+
c7g: "c7g";
|
|
2885
|
+
c7gd: "c7gd";
|
|
2886
|
+
c7gn: "c7gn";
|
|
2887
|
+
c7i: "c7i";
|
|
2888
|
+
"c7i-flex": "c7i-flex";
|
|
2889
|
+
c8g: "c8g";
|
|
2890
|
+
c8gd: "c8gd";
|
|
2891
|
+
cax: "cax";
|
|
2892
|
+
ccx: "ccx";
|
|
2893
|
+
cpx: "cpx";
|
|
2894
|
+
d2: "d2";
|
|
2895
|
+
d3: "d3";
|
|
2896
|
+
d3en: "d3en";
|
|
2897
|
+
dl1: "dl1";
|
|
2898
|
+
dl2q: "dl2q";
|
|
2899
|
+
e2: "e2";
|
|
2900
|
+
f1: "f1";
|
|
2901
|
+
f2: "f2";
|
|
2902
|
+
g1: "g1";
|
|
2903
|
+
g2: "g2";
|
|
2904
|
+
g4ad: "g4ad";
|
|
2905
|
+
g4dn: "g4dn";
|
|
2906
|
+
g5: "g5";
|
|
2907
|
+
g5g: "g5g";
|
|
2908
|
+
g6: "g6";
|
|
2909
|
+
g6e: "g6e";
|
|
2910
|
+
gr6: "gr6";
|
|
2911
|
+
hpc6a: "hpc6a";
|
|
2912
|
+
hpc6id: "hpc6id";
|
|
2913
|
+
hpc7a: "hpc7a";
|
|
2914
|
+
hpc7g: "hpc7g";
|
|
2915
|
+
i2: "i2";
|
|
2916
|
+
i3: "i3";
|
|
2917
|
+
i3en: "i3en";
|
|
2918
|
+
i4g: "i4g";
|
|
2919
|
+
i4i: "i4i";
|
|
2920
|
+
i7i: "i7i";
|
|
2921
|
+
i7ie: "i7ie";
|
|
2922
|
+
i8g: "i8g";
|
|
2923
|
+
im4gn: "im4gn";
|
|
2924
|
+
inf1: "inf1";
|
|
2925
|
+
inf2: "inf2";
|
|
2926
|
+
is4gen: "is4gen";
|
|
2927
|
+
m1: "m1";
|
|
2928
|
+
m2: "m2";
|
|
2929
|
+
m3: "m3";
|
|
2930
|
+
m4: "m4";
|
|
2931
|
+
m5: "m5";
|
|
2932
|
+
m5a: "m5a";
|
|
2933
|
+
m5ad: "m5ad";
|
|
2934
|
+
m5d: "m5d";
|
|
2935
|
+
m5dn: "m5dn";
|
|
2936
|
+
m5n: "m5n";
|
|
2937
|
+
m5zn: "m5zn";
|
|
2938
|
+
m6a: "m6a";
|
|
2939
|
+
m6g: "m6g";
|
|
2940
|
+
m6gd: "m6gd";
|
|
2941
|
+
m6i: "m6i";
|
|
2942
|
+
m6id: "m6id";
|
|
2943
|
+
m6idn: "m6idn";
|
|
2944
|
+
m6in: "m6in";
|
|
2945
|
+
m7a: "m7a";
|
|
2946
|
+
m7g: "m7g";
|
|
2947
|
+
m7gd: "m7gd";
|
|
2948
|
+
m7i: "m7i";
|
|
2949
|
+
"m7i-flex": "m7i-flex";
|
|
2950
|
+
m8g: "m8g";
|
|
2951
|
+
m8gd: "m8gd";
|
|
2952
|
+
n1: "n1";
|
|
2953
|
+
n2: "n2";
|
|
2954
|
+
n2d: "n2d";
|
|
2955
|
+
n4: "n4";
|
|
2956
|
+
p3dn: "p3dn";
|
|
2957
|
+
p4d: "p4d";
|
|
2958
|
+
p4de: "p4de";
|
|
2959
|
+
p5: "p5";
|
|
2960
|
+
p5e: "p5e";
|
|
2961
|
+
p5en: "p5en";
|
|
2962
|
+
"p6-b200": "p6-b200";
|
|
2963
|
+
r3: "r3";
|
|
2964
|
+
r4: "r4";
|
|
2965
|
+
r5: "r5";
|
|
2966
|
+
r5a: "r5a";
|
|
2967
|
+
r5ad: "r5ad";
|
|
2968
|
+
r5b: "r5b";
|
|
2969
|
+
r5d: "r5d";
|
|
2970
|
+
r5dn: "r5dn";
|
|
2971
|
+
r5n: "r5n";
|
|
2972
|
+
r6a: "r6a";
|
|
2973
|
+
r6g: "r6g";
|
|
2974
|
+
r6gd: "r6gd";
|
|
2975
|
+
r6i: "r6i";
|
|
2976
|
+
r6id: "r6id";
|
|
2977
|
+
r6idn: "r6idn";
|
|
2978
|
+
r6in: "r6in";
|
|
2979
|
+
r7a: "r7a";
|
|
2980
|
+
r7g: "r7g";
|
|
2981
|
+
r7gd: "r7gd";
|
|
2982
|
+
r7i: "r7i";
|
|
2983
|
+
r7iz: "r7iz";
|
|
2984
|
+
r8g: "r8g";
|
|
2985
|
+
r8gd: "r8gd";
|
|
2986
|
+
t2: "t2";
|
|
2987
|
+
t2a: "t2a";
|
|
2988
|
+
t2d: "t2d";
|
|
2989
|
+
t3: "t3";
|
|
2990
|
+
t3a: "t3a";
|
|
2991
|
+
t4g: "t4g";
|
|
2992
|
+
trn1: "trn1";
|
|
2993
|
+
trn1n: "trn1n";
|
|
2994
|
+
"u-3tb1": "u-3tb1";
|
|
2995
|
+
"u-6tb1": "u-6tb1";
|
|
2996
|
+
"u7i-12tb": "u7i-12tb";
|
|
2997
|
+
"u7i-6tb": "u7i-6tb";
|
|
2998
|
+
"u7i-8tb": "u7i-8tb";
|
|
2999
|
+
"u7in-16tb": "u7in-16tb";
|
|
3000
|
+
"u7in-24tb": "u7in-24tb";
|
|
3001
|
+
"u7in-32tb": "u7in-32tb";
|
|
3002
|
+
vt1: "vt1";
|
|
3003
|
+
x1: "x1";
|
|
3004
|
+
x1e: "x1e";
|
|
3005
|
+
x2gd: "x2gd";
|
|
3006
|
+
x2idn: "x2idn";
|
|
3007
|
+
x2iedn: "x2iedn";
|
|
3008
|
+
x2iezn: "x2iezn";
|
|
3009
|
+
x4: "x4";
|
|
3010
|
+
x8g: "x8g";
|
|
3011
|
+
z1d: "z1d";
|
|
3012
|
+
z3: "z3";
|
|
3013
|
+
}>>>;
|
|
3014
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3015
|
+
"africa-south1": "africa-south1";
|
|
3016
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
3017
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
3018
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
3019
|
+
"ap-south-1": "ap-south-1";
|
|
3020
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
3021
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
3022
|
+
ash: "ash";
|
|
3023
|
+
"asia-east1": "asia-east1";
|
|
3024
|
+
"asia-east2": "asia-east2";
|
|
3025
|
+
"asia-northeast1": "asia-northeast1";
|
|
3026
|
+
"asia-northeast2": "asia-northeast2";
|
|
3027
|
+
"asia-northeast3": "asia-northeast3";
|
|
3028
|
+
"asia-south1": "asia-south1";
|
|
3029
|
+
"asia-south2": "asia-south2";
|
|
3030
|
+
"asia-southeast1": "asia-southeast1";
|
|
3031
|
+
"asia-southeast2": "asia-southeast2";
|
|
3032
|
+
"australia-southeast1": "australia-southeast1";
|
|
3033
|
+
"australia-southeast2": "australia-southeast2";
|
|
3034
|
+
"ca-central-1": "ca-central-1";
|
|
3035
|
+
"eu-central-1": "eu-central-1";
|
|
3036
|
+
"eu-central-2": "eu-central-2";
|
|
3037
|
+
"eu-north-1": "eu-north-1";
|
|
3038
|
+
"eu-west-1": "eu-west-1";
|
|
3039
|
+
"eu-west-2": "eu-west-2";
|
|
3040
|
+
"eu-west-3": "eu-west-3";
|
|
3041
|
+
"europe-central2": "europe-central2";
|
|
3042
|
+
"europe-north1": "europe-north1";
|
|
3043
|
+
"europe-southwest1": "europe-southwest1";
|
|
3044
|
+
"europe-west1": "europe-west1";
|
|
3045
|
+
"europe-west10": "europe-west10";
|
|
3046
|
+
"europe-west12": "europe-west12";
|
|
3047
|
+
"europe-west2": "europe-west2";
|
|
3048
|
+
"europe-west3": "europe-west3";
|
|
3049
|
+
"europe-west4": "europe-west4";
|
|
3050
|
+
"europe-west6": "europe-west6";
|
|
3051
|
+
"europe-west8": "europe-west8";
|
|
3052
|
+
"europe-west9": "europe-west9";
|
|
3053
|
+
fsn1: "fsn1";
|
|
3054
|
+
hel1: "hel1";
|
|
3055
|
+
hil: "hil";
|
|
3056
|
+
"me-central1": "me-central1";
|
|
3057
|
+
"me-central2": "me-central2";
|
|
3058
|
+
"me-west1": "me-west1";
|
|
3059
|
+
nbg1: "nbg1";
|
|
3060
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
3061
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
3062
|
+
"sa-east-1": "sa-east-1";
|
|
3063
|
+
sin: "sin";
|
|
3064
|
+
"southamerica-east1": "southamerica-east1";
|
|
3065
|
+
"southamerica-west1": "southamerica-west1";
|
|
3066
|
+
"us-central1": "us-central1";
|
|
3067
|
+
"us-east-1": "us-east-1";
|
|
3068
|
+
"us-east-2": "us-east-2";
|
|
3069
|
+
"us-east1": "us-east1";
|
|
3070
|
+
"us-east4": "us-east4";
|
|
3071
|
+
"us-east5": "us-east5";
|
|
3072
|
+
"us-south1": "us-south1";
|
|
3073
|
+
"us-west-1": "us-west-1";
|
|
3074
|
+
"us-west-2": "us-west-2";
|
|
3075
|
+
"us-west1": "us-west1";
|
|
3076
|
+
"us-west2": "us-west2";
|
|
3077
|
+
"us-west3": "us-west3";
|
|
3078
|
+
"us-west4": "us-west4";
|
|
3079
|
+
}>>>;
|
|
3080
|
+
}, z.core.$strip>>;
|
|
3081
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
3082
|
+
aggressive: "aggressive";
|
|
3083
|
+
conservative: "conservative";
|
|
3084
|
+
}>>;
|
|
3085
|
+
}, z.core.$strip>;
|
|
3086
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3087
|
+
cluster_id: z.ZodString;
|
|
3088
|
+
fleet_name: z.ZodString;
|
|
1314
3089
|
}, z.core.$strip>;
|
|
1315
3090
|
/**
|
|
1316
3091
|
* Successfully updated.
|
|
1317
3092
|
*/
|
|
1318
3093
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
1319
|
-
export declare const
|
|
1320
|
-
|
|
1321
|
-
path: z.ZodObject<{
|
|
1322
|
-
cluster_id: z.ZodString;
|
|
1323
|
-
}, z.core.$strip>;
|
|
1324
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1325
|
-
}, z.core.$strip>;
|
|
1326
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1327
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1328
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1329
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3094
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
3095
|
+
cluster_id: z.ZodString;
|
|
1330
3096
|
}, z.core.$strip>;
|
|
1331
3097
|
/**
|
|
1332
3098
|
* An array of clusters
|
|
@@ -1337,13 +3103,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1337
3103
|
basic: "basic";
|
|
1338
3104
|
pro: "pro";
|
|
1339
3105
|
}>;
|
|
1340
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1341
|
-
staging: "staging";
|
|
3106
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3107
|
+
"staging-1a": "staging-1a";
|
|
1342
3108
|
"northamerica-central-1": "northamerica-central-1";
|
|
1343
3109
|
"europe-central-1a": "europe-central-1a";
|
|
1344
3110
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1345
|
-
}
|
|
1346
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3111
|
+
}>>>;
|
|
1347
3112
|
id: z.ZodUUID;
|
|
1348
3113
|
status: z.ZodEnum<{
|
|
1349
3114
|
deleted: "deleted";
|
|
@@ -1357,51 +3122,48 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1357
3122
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1358
3123
|
"": "";
|
|
1359
3124
|
}>]>>;
|
|
3125
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3126
|
+
"": "";
|
|
3127
|
+
}>]>>;
|
|
1360
3128
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1361
3129
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1362
3130
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1363
3131
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1364
3132
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3133
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1365
3134
|
}, z.core.$strip>>;
|
|
1366
|
-
export declare const
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
3135
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3136
|
+
name: z.ZodString;
|
|
3137
|
+
tier: z.ZodEnum<{
|
|
3138
|
+
basic: "basic";
|
|
3139
|
+
pro: "pro";
|
|
3140
|
+
}>;
|
|
3141
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3142
|
+
"staging-1a": "staging-1a";
|
|
3143
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
3144
|
+
"europe-central-1a": "europe-central-1a";
|
|
3145
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
3146
|
+
}>>>;
|
|
3147
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3148
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
3149
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
3150
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
3151
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
3152
|
+
}>>>;
|
|
1383
3153
|
}, z.core.$strip>;
|
|
1384
3154
|
/**
|
|
1385
3155
|
* Successfully created. Returns created Cluster ID.
|
|
1386
3156
|
*/
|
|
1387
3157
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1388
|
-
export declare const
|
|
1389
|
-
|
|
1390
|
-
path: z.ZodObject<{
|
|
1391
|
-
cluster_id: z.ZodString;
|
|
1392
|
-
}, z.core.$strip>;
|
|
1393
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3158
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3159
|
+
cluster_id: z.ZodString;
|
|
1394
3160
|
}, z.core.$strip>;
|
|
1395
3161
|
/**
|
|
1396
3162
|
* Successfully deleted.
|
|
1397
3163
|
*/
|
|
1398
3164
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1399
|
-
export declare const
|
|
1400
|
-
|
|
1401
|
-
path: z.ZodObject<{
|
|
1402
|
-
cluster_id: z.ZodString;
|
|
1403
|
-
}, z.core.$strip>;
|
|
1404
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3165
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3166
|
+
cluster_id: z.ZodString;
|
|
1405
3167
|
}, z.core.$strip>;
|
|
1406
3168
|
/**
|
|
1407
3169
|
* Returns a single object containing cluster details.
|
|
@@ -1412,13 +3174,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1412
3174
|
basic: "basic";
|
|
1413
3175
|
pro: "pro";
|
|
1414
3176
|
}>;
|
|
1415
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1416
|
-
staging: "staging";
|
|
3177
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3178
|
+
"staging-1a": "staging-1a";
|
|
1417
3179
|
"northamerica-central-1": "northamerica-central-1";
|
|
1418
3180
|
"europe-central-1a": "europe-central-1a";
|
|
1419
3181
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1420
|
-
}
|
|
1421
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3182
|
+
}>>>;
|
|
1422
3183
|
id: z.ZodUUID;
|
|
1423
3184
|
status: z.ZodEnum<{
|
|
1424
3185
|
deleted: "deleted";
|
|
@@ -1432,25 +3193,26 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1432
3193
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1433
3194
|
"": "";
|
|
1434
3195
|
}>]>>;
|
|
3196
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3197
|
+
"": "";
|
|
3198
|
+
}>]>>;
|
|
1435
3199
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1436
3200
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1437
3201
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1438
3202
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1439
3203
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3204
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1440
3205
|
}, z.core.$strip>;
|
|
1441
|
-
export declare const
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
cluster_id: z.ZodString;
|
|
1452
|
-
}, z.core.$strip>;
|
|
1453
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3206
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3207
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3208
|
+
tier: z.ZodEnum<{
|
|
3209
|
+
basic: "basic";
|
|
3210
|
+
pro: "pro";
|
|
3211
|
+
}>;
|
|
3212
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
3213
|
+
}, z.core.$strip>;
|
|
3214
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3215
|
+
cluster_id: z.ZodString;
|
|
1454
3216
|
}, z.core.$strip>;
|
|
1455
3217
|
/**
|
|
1456
3218
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1461,13 +3223,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1461
3223
|
basic: "basic";
|
|
1462
3224
|
pro: "pro";
|
|
1463
3225
|
}>;
|
|
1464
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
1465
|
-
staging: "staging";
|
|
3226
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3227
|
+
"staging-1a": "staging-1a";
|
|
1466
3228
|
"northamerica-central-1": "northamerica-central-1";
|
|
1467
3229
|
"europe-central-1a": "europe-central-1a";
|
|
1468
3230
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1469
|
-
}
|
|
1470
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3231
|
+
}>>>;
|
|
1471
3232
|
id: z.ZodUUID;
|
|
1472
3233
|
status: z.ZodEnum<{
|
|
1473
3234
|
deleted: "deleted";
|
|
@@ -1481,18 +3242,18 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1481
3242
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1482
3243
|
"": "";
|
|
1483
3244
|
}>]>>;
|
|
3245
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3246
|
+
"": "";
|
|
3247
|
+
}>]>>;
|
|
1484
3248
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1485
3249
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1486
3250
|
created_at: z.ZodOptional<z.ZodString>;
|
|
1487
3251
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
1488
3252
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
3253
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
1489
3254
|
}, z.core.$strip>;
|
|
1490
|
-
export declare const
|
|
1491
|
-
|
|
1492
|
-
path: z.ZodObject<{
|
|
1493
|
-
cluster_id: z.ZodString;
|
|
1494
|
-
}, z.core.$strip>;
|
|
1495
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3255
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3256
|
+
cluster_id: z.ZodString;
|
|
1496
3257
|
}, z.core.$strip>;
|
|
1497
3258
|
/**
|
|
1498
3259
|
* An object of cluster join information
|
|
@@ -1500,6 +3261,7 @@ export declare const zGetJoinInformationData: z.ZodObject<{
|
|
|
1500
3261
|
export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
1501
3262
|
certificate_authority: z.ZodString;
|
|
1502
3263
|
endpoint: z.ZodURL;
|
|
3264
|
+
cluster_dns: z.ZodString;
|
|
1503
3265
|
auth_key: z.ZodString;
|
|
1504
3266
|
bootstrap_token: z.ZodString;
|
|
1505
3267
|
versions: z.ZodObject<{
|
|
@@ -1514,11 +3276,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1514
3276
|
gcp_workload_identity_provider: z.ZodString;
|
|
1515
3277
|
}, z.core.$strip>;
|
|
1516
3278
|
}, z.core.$strip>;
|
|
1517
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1518
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1519
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1520
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1521
|
-
}, z.core.$strip>;
|
|
1522
3279
|
/**
|
|
1523
3280
|
* An array of invites
|
|
1524
3281
|
*/
|
|
@@ -1529,12 +3286,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1529
3286
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1530
3287
|
code: z.ZodOptional<z.ZodString>;
|
|
1531
3288
|
}, z.core.$strip>>;
|
|
1532
|
-
export declare const
|
|
1533
|
-
|
|
1534
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1535
|
-
}, z.core.$strip>;
|
|
1536
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1537
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3289
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
3290
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1538
3291
|
}, z.core.$strip>;
|
|
1539
3292
|
/**
|
|
1540
3293
|
* Successfully created. Returns created invite details.
|
|
@@ -1546,12 +3299,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1546
3299
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1547
3300
|
code: z.ZodOptional<z.ZodString>;
|
|
1548
3301
|
}, z.core.$strip>;
|
|
1549
|
-
export declare const
|
|
1550
|
-
|
|
1551
|
-
path: z.ZodObject<{
|
|
1552
|
-
code: z.ZodString;
|
|
1553
|
-
}, z.core.$strip>;
|
|
1554
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3302
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
3303
|
+
code: z.ZodString;
|
|
1555
3304
|
}, z.core.$strip>;
|
|
1556
3305
|
/**
|
|
1557
3306
|
* Returns a single object containing invite details.
|
|
@@ -1563,65 +3312,65 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1563
3312
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1564
3313
|
code: z.ZodOptional<z.ZodString>;
|
|
1565
3314
|
}, z.core.$strip>;
|
|
1566
|
-
export declare const
|
|
1567
|
-
|
|
1568
|
-
path: z.ZodObject<{
|
|
1569
|
-
email: z.ZodString;
|
|
1570
|
-
}, z.core.$strip>;
|
|
1571
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1572
|
-
}, z.core.$strip>;
|
|
1573
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1574
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1575
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1576
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3315
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
3316
|
+
email: z.ZodString;
|
|
1577
3317
|
}, z.core.$strip>;
|
|
1578
3318
|
/**
|
|
1579
3319
|
* An array of chart listings in the marketplace.
|
|
1580
3320
|
*/
|
|
1581
3321
|
export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
1582
|
-
id: z.ZodString;
|
|
1583
3322
|
name: z.ZodString;
|
|
1584
|
-
|
|
1585
|
-
description: z.ZodString;
|
|
1586
|
-
logoUrl: z.ZodString;
|
|
1587
|
-
longDescription: z.ZodString;
|
|
1588
|
-
categories: z.ZodArray<z.ZodString>;
|
|
3323
|
+
versions: z.ZodArray<z.ZodString>;
|
|
1589
3324
|
version_channels: z.ZodArray<z.ZodString>;
|
|
1590
|
-
|
|
3325
|
+
latestVersion: z.ZodString;
|
|
3326
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
3327
|
+
name: z.ZodString;
|
|
1591
3328
|
version: z.ZodString;
|
|
1592
|
-
|
|
1593
|
-
|
|
3329
|
+
description: z.ZodOptional<z.ZodString>;
|
|
3330
|
+
appVersion: z.ZodOptional<z.ZodString>;
|
|
3331
|
+
apiVersion: z.ZodOptional<z.ZodString>;
|
|
3332
|
+
keywords: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3333
|
+
home: z.ZodOptional<z.ZodString>;
|
|
3334
|
+
icon: z.ZodOptional<z.ZodString>;
|
|
3335
|
+
sources: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3336
|
+
maintainers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3337
|
+
name: z.ZodString;
|
|
3338
|
+
email: z.ZodOptional<z.ZodString>;
|
|
3339
|
+
}, z.core.$strip>>>;
|
|
1594
3340
|
}, z.core.$strip>>;
|
|
1595
3341
|
}, z.core.$strip>>;
|
|
1596
|
-
export declare const
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
listing_id: z.ZodString;
|
|
1600
|
-
}, z.core.$strip>;
|
|
1601
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3342
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
3343
|
+
chart_name: z.ZodString;
|
|
3344
|
+
version_channel: z.ZodString;
|
|
1602
3345
|
}, z.core.$strip>;
|
|
1603
3346
|
/**
|
|
1604
|
-
* Returns an object containing the chart
|
|
3347
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1605
3348
|
*/
|
|
1606
|
-
export declare const
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
description: z.ZodString;
|
|
1611
|
-
logoUrl: z.ZodString;
|
|
1612
|
-
longDescription: z.ZodString;
|
|
1613
|
-
categories: z.ZodArray<z.ZodString>;
|
|
1614
|
-
version_channels: z.ZodArray<z.ZodString>;
|
|
1615
|
-
value_schemas: z.ZodArray<z.ZodObject<{
|
|
1616
|
-
version: z.ZodString;
|
|
1617
|
-
schema: z.ZodString;
|
|
1618
|
-
placeholder: z.ZodString;
|
|
1619
|
-
}, z.core.$strip>>;
|
|
3349
|
+
export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
3350
|
+
chartYaml: z.ZodOptional<z.ZodString>;
|
|
3351
|
+
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
3352
|
+
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1620
3353
|
}, z.core.$strip>;
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
3354
|
+
/**
|
|
3355
|
+
* JSON-RPC 2.0 request payload
|
|
3356
|
+
*/
|
|
3357
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
3358
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3359
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3360
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3361
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3362
|
+
}, z.core.$strip>;
|
|
3363
|
+
/**
|
|
3364
|
+
* JSON-RPC 2.0 success or error response
|
|
3365
|
+
*/
|
|
3366
|
+
export declare const zPostMcpResponse: z.ZodObject<{
|
|
3367
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3368
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3369
|
+
result: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3370
|
+
error: z.ZodOptional<z.ZodObject<{
|
|
3371
|
+
code: z.ZodOptional<z.ZodInt>;
|
|
3372
|
+
message: z.ZodOptional<z.ZodString>;
|
|
3373
|
+
}, z.core.$strip>>;
|
|
1625
3374
|
}, z.core.$strip>;
|
|
1626
3375
|
/**
|
|
1627
3376
|
* Returns a single object containing organization details.
|
|
@@ -1642,6 +3391,7 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1642
3391
|
id: z.ZodString;
|
|
1643
3392
|
label: z.ZodString;
|
|
1644
3393
|
}, z.core.$strip>>;
|
|
3394
|
+
cfcr_storage_gb: z.ZodInt;
|
|
1645
3395
|
}, z.core.$strip>;
|
|
1646
3396
|
status: z.ZodEnum<{
|
|
1647
3397
|
active: "active";
|
|
@@ -1649,22 +3399,277 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1649
3399
|
suspended: "suspended";
|
|
1650
3400
|
}>;
|
|
1651
3401
|
}, z.core.$strip>;
|
|
1652
|
-
export declare const
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
3402
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3403
|
+
email: z.ZodEmail;
|
|
3404
|
+
first_name: z.ZodString;
|
|
3405
|
+
last_name: z.ZodString;
|
|
3406
|
+
company_name: z.ZodString;
|
|
3407
|
+
password: z.ZodString;
|
|
3408
|
+
}, z.core.$strip>;
|
|
3409
|
+
/**
|
|
3410
|
+
* List of repositories
|
|
3411
|
+
*/
|
|
3412
|
+
export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
3413
|
+
name: z.ZodString;
|
|
3414
|
+
region: z.ZodString;
|
|
3415
|
+
uri: z.ZodString;
|
|
3416
|
+
}, z.core.$strip>>;
|
|
3417
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
3418
|
+
region: z.ZodString;
|
|
3419
|
+
repository: z.ZodString;
|
|
3420
|
+
}, z.core.$strip>;
|
|
3421
|
+
/**
|
|
3422
|
+
* Repository with tags
|
|
3423
|
+
*/
|
|
3424
|
+
export declare const zListTagsResponse: z.ZodObject<{
|
|
3425
|
+
name: z.ZodString;
|
|
3426
|
+
region: z.ZodString;
|
|
3427
|
+
uri: z.ZodString;
|
|
3428
|
+
tags: z.ZodArray<z.ZodObject<{
|
|
3429
|
+
name: z.ZodString;
|
|
3430
|
+
size: z.ZodNumber;
|
|
3431
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
3432
|
+
platforms: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3433
|
+
}, z.core.$strip>>;
|
|
3434
|
+
totalSize: z.ZodNumber;
|
|
3435
|
+
}, z.core.$strip>;
|
|
3436
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
3437
|
+
region: z.ZodString;
|
|
3438
|
+
repository: z.ZodString;
|
|
3439
|
+
tag: z.ZodString;
|
|
3440
|
+
}, z.core.$strip>;
|
|
3441
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
3442
|
+
region: z.ZodString;
|
|
3443
|
+
repository: z.ZodString;
|
|
3444
|
+
tag: z.ZodString;
|
|
3445
|
+
}, z.core.$strip>;
|
|
3446
|
+
/**
|
|
3447
|
+
* Tag details
|
|
3448
|
+
*/
|
|
3449
|
+
export declare const zGetTagResponse: z.ZodObject<{
|
|
3450
|
+
name: z.ZodString;
|
|
3451
|
+
digest: z.ZodString;
|
|
3452
|
+
mediaType: z.ZodOptional<z.ZodString>;
|
|
3453
|
+
config: z.ZodOptional<z.ZodObject<{
|
|
3454
|
+
size: z.ZodNumber;
|
|
3455
|
+
}, z.core.$strip>>;
|
|
3456
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3457
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
3458
|
+
size: z.ZodNumber;
|
|
3459
|
+
}, z.core.$strip>>>;
|
|
3460
|
+
manifests: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3461
|
+
digest: z.ZodString;
|
|
3462
|
+
platform: z.ZodOptional<z.ZodObject<{
|
|
3463
|
+
architecture: z.ZodString;
|
|
3464
|
+
os: z.ZodString;
|
|
3465
|
+
variant: z.ZodOptional<z.ZodString>;
|
|
3466
|
+
}, z.core.$strip>>;
|
|
3467
|
+
layers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3468
|
+
digest: z.ZodOptional<z.ZodString>;
|
|
3469
|
+
size: z.ZodNumber;
|
|
3470
|
+
}, z.core.$strip>>>;
|
|
3471
|
+
size: z.ZodOptional<z.ZodNumber>;
|
|
3472
|
+
}, z.core.$strip>>>;
|
|
3473
|
+
size: z.ZodNumber;
|
|
3474
|
+
region: z.ZodString;
|
|
3475
|
+
repository: z.ZodString;
|
|
3476
|
+
uri: z.ZodString;
|
|
3477
|
+
}, z.core.$strip>;
|
|
3478
|
+
/**
|
|
3479
|
+
* Tickets for the organization.
|
|
3480
|
+
*/
|
|
3481
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
3482
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3483
|
+
id: z.ZodString;
|
|
3484
|
+
status: z.ZodEnum<{
|
|
3485
|
+
closed: "closed";
|
|
3486
|
+
waiting_on_us: "waiting_on_us";
|
|
3487
|
+
waiting_on_user: "waiting_on_user";
|
|
3488
|
+
}>;
|
|
3489
|
+
category: z.ZodEnum<{
|
|
3490
|
+
billing: "billing";
|
|
3491
|
+
technical: "technical";
|
|
3492
|
+
general: "general";
|
|
3493
|
+
}>;
|
|
3494
|
+
summary: z.ZodString;
|
|
3495
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3496
|
+
date_created: z.ZodISODateTime;
|
|
3497
|
+
date_updated: z.ZodISODateTime;
|
|
3498
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3499
|
+
id: z.ZodString;
|
|
3500
|
+
type: z.ZodEnum<{
|
|
3501
|
+
customer_reply: "customer_reply";
|
|
3502
|
+
agent_reply: "agent_reply";
|
|
3503
|
+
}>;
|
|
3504
|
+
body: z.ZodString;
|
|
3505
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3506
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3507
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3508
|
+
id: z.ZodString;
|
|
3509
|
+
filename: z.ZodString;
|
|
3510
|
+
content_type: z.ZodString;
|
|
3511
|
+
size: z.ZodInt;
|
|
3512
|
+
}, z.core.$strip>>>;
|
|
3513
|
+
date_created: z.ZodISODateTime;
|
|
3514
|
+
}, z.core.$strip>>>;
|
|
3515
|
+
}, z.core.$strip>>;
|
|
3516
|
+
}, z.core.$strip>;
|
|
3517
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
3518
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3519
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3520
|
+
}, z.core.$strip>;
|
|
3521
|
+
/**
|
|
3522
|
+
* Ticket created.
|
|
3523
|
+
*/
|
|
3524
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
3525
|
+
id: z.ZodString;
|
|
3526
|
+
status: z.ZodEnum<{
|
|
3527
|
+
closed: "closed";
|
|
3528
|
+
waiting_on_us: "waiting_on_us";
|
|
3529
|
+
waiting_on_user: "waiting_on_user";
|
|
3530
|
+
}>;
|
|
3531
|
+
category: z.ZodEnum<{
|
|
3532
|
+
billing: "billing";
|
|
3533
|
+
technical: "technical";
|
|
3534
|
+
general: "general";
|
|
3535
|
+
}>;
|
|
3536
|
+
summary: z.ZodString;
|
|
3537
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3538
|
+
date_created: z.ZodISODateTime;
|
|
3539
|
+
date_updated: z.ZodISODateTime;
|
|
3540
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3541
|
+
id: z.ZodString;
|
|
3542
|
+
type: z.ZodEnum<{
|
|
3543
|
+
customer_reply: "customer_reply";
|
|
3544
|
+
agent_reply: "agent_reply";
|
|
3545
|
+
}>;
|
|
3546
|
+
body: z.ZodString;
|
|
3547
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3548
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3549
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3550
|
+
id: z.ZodString;
|
|
3551
|
+
filename: z.ZodString;
|
|
3552
|
+
content_type: z.ZodString;
|
|
3553
|
+
size: z.ZodInt;
|
|
3554
|
+
}, z.core.$strip>>>;
|
|
3555
|
+
date_created: z.ZodISODateTime;
|
|
3556
|
+
}, z.core.$strip>>>;
|
|
3557
|
+
}, z.core.$strip>;
|
|
3558
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
3559
|
+
ticket_id: z.ZodString;
|
|
3560
|
+
}, z.core.$strip>;
|
|
3561
|
+
/**
|
|
3562
|
+
* Ticket closed.
|
|
3563
|
+
*/
|
|
3564
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
3565
|
+
id: z.ZodString;
|
|
3566
|
+
status: z.ZodEnum<{
|
|
3567
|
+
closed: "closed";
|
|
3568
|
+
waiting_on_us: "waiting_on_us";
|
|
3569
|
+
waiting_on_user: "waiting_on_user";
|
|
3570
|
+
}>;
|
|
3571
|
+
category: z.ZodEnum<{
|
|
3572
|
+
billing: "billing";
|
|
3573
|
+
technical: "technical";
|
|
3574
|
+
general: "general";
|
|
3575
|
+
}>;
|
|
3576
|
+
summary: z.ZodString;
|
|
3577
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3578
|
+
date_created: z.ZodISODateTime;
|
|
3579
|
+
date_updated: z.ZodISODateTime;
|
|
3580
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3581
|
+
id: z.ZodString;
|
|
3582
|
+
type: z.ZodEnum<{
|
|
3583
|
+
customer_reply: "customer_reply";
|
|
3584
|
+
agent_reply: "agent_reply";
|
|
3585
|
+
}>;
|
|
3586
|
+
body: z.ZodString;
|
|
3587
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3588
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3589
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3590
|
+
id: z.ZodString;
|
|
3591
|
+
filename: z.ZodString;
|
|
3592
|
+
content_type: z.ZodString;
|
|
3593
|
+
size: z.ZodInt;
|
|
3594
|
+
}, z.core.$strip>>>;
|
|
3595
|
+
date_created: z.ZodISODateTime;
|
|
3596
|
+
}, z.core.$strip>>>;
|
|
3597
|
+
}, z.core.$strip>;
|
|
3598
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
3599
|
+
ticket_id: z.ZodString;
|
|
3600
|
+
}, z.core.$strip>;
|
|
3601
|
+
/**
|
|
3602
|
+
* Ticket with messages (internal notes excluded).
|
|
3603
|
+
*/
|
|
3604
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
3605
|
+
id: z.ZodString;
|
|
3606
|
+
status: z.ZodEnum<{
|
|
3607
|
+
closed: "closed";
|
|
3608
|
+
waiting_on_us: "waiting_on_us";
|
|
3609
|
+
waiting_on_user: "waiting_on_user";
|
|
3610
|
+
}>;
|
|
3611
|
+
category: z.ZodEnum<{
|
|
3612
|
+
billing: "billing";
|
|
3613
|
+
technical: "technical";
|
|
3614
|
+
general: "general";
|
|
3615
|
+
}>;
|
|
3616
|
+
summary: z.ZodString;
|
|
3617
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3618
|
+
date_created: z.ZodISODateTime;
|
|
3619
|
+
date_updated: z.ZodISODateTime;
|
|
3620
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3621
|
+
id: z.ZodString;
|
|
3622
|
+
type: z.ZodEnum<{
|
|
3623
|
+
customer_reply: "customer_reply";
|
|
3624
|
+
agent_reply: "agent_reply";
|
|
3625
|
+
}>;
|
|
3626
|
+
body: z.ZodString;
|
|
3627
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3628
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3629
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3630
|
+
id: z.ZodString;
|
|
3631
|
+
filename: z.ZodString;
|
|
3632
|
+
content_type: z.ZodString;
|
|
3633
|
+
size: z.ZodInt;
|
|
3634
|
+
}, z.core.$strip>>>;
|
|
3635
|
+
date_created: z.ZodISODateTime;
|
|
3636
|
+
}, z.core.$strip>>>;
|
|
1662
3637
|
}, z.core.$strip>;
|
|
1663
|
-
export declare const
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3638
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
3639
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3640
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1667
3641
|
}, z.core.$strip>;
|
|
3642
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
3643
|
+
ticket_id: z.ZodString;
|
|
3644
|
+
}, z.core.$strip>;
|
|
3645
|
+
/**
|
|
3646
|
+
* Reply appended.
|
|
3647
|
+
*/
|
|
3648
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
3649
|
+
id: z.ZodString;
|
|
3650
|
+
type: z.ZodEnum<{
|
|
3651
|
+
customer_reply: "customer_reply";
|
|
3652
|
+
agent_reply: "agent_reply";
|
|
3653
|
+
}>;
|
|
3654
|
+
body: z.ZodString;
|
|
3655
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3656
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3657
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3658
|
+
id: z.ZodString;
|
|
3659
|
+
filename: z.ZodString;
|
|
3660
|
+
content_type: z.ZodString;
|
|
3661
|
+
size: z.ZodInt;
|
|
3662
|
+
}, z.core.$strip>>>;
|
|
3663
|
+
date_created: z.ZodISODateTime;
|
|
3664
|
+
}, z.core.$strip>;
|
|
3665
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
3666
|
+
ticket_id: z.ZodString;
|
|
3667
|
+
attachment_id: z.ZodString;
|
|
3668
|
+
}, z.core.$strip>;
|
|
3669
|
+
/**
|
|
3670
|
+
* Attachment binary stream.
|
|
3671
|
+
*/
|
|
3672
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1668
3673
|
/**
|
|
1669
3674
|
* Returns a list of access token details with masked secrets.
|
|
1670
3675
|
*/
|
|
@@ -1678,16 +3683,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1678
3683
|
secret: z.ZodOptional<z.ZodString>;
|
|
1679
3684
|
date_created: z.ZodISODateTime;
|
|
1680
3685
|
}, z.core.$strip>>;
|
|
1681
|
-
export declare const
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
}>;
|
|
1688
|
-
}, z.core.$strip>;
|
|
1689
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1690
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3686
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
3687
|
+
name: z.ZodString;
|
|
3688
|
+
role: z.ZodEnum<{
|
|
3689
|
+
Administrator: "Administrator";
|
|
3690
|
+
User: "User";
|
|
3691
|
+
}>;
|
|
1691
3692
|
}, z.core.$strip>;
|
|
1692
3693
|
/**
|
|
1693
3694
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1702,19 +3703,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1702
3703
|
secret: z.ZodOptional<z.ZodString>;
|
|
1703
3704
|
date_created: z.ZodISODateTime;
|
|
1704
3705
|
}, z.core.$strip>;
|
|
1705
|
-
export declare const
|
|
1706
|
-
|
|
1707
|
-
path: z.ZodObject<{
|
|
1708
|
-
token_id: z.ZodString;
|
|
1709
|
-
}, z.core.$strip>;
|
|
1710
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3706
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
3707
|
+
token_id: z.ZodString;
|
|
1711
3708
|
}, z.core.$strip>;
|
|
1712
|
-
export declare const
|
|
1713
|
-
|
|
1714
|
-
path: z.ZodObject<{
|
|
1715
|
-
token_id: z.ZodString;
|
|
1716
|
-
}, z.core.$strip>;
|
|
1717
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3709
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
3710
|
+
token_id: z.ZodString;
|
|
1718
3711
|
}, z.core.$strip>;
|
|
1719
3712
|
/**
|
|
1720
3713
|
* Returns access token details with masked secret.
|
|
@@ -1729,18 +3722,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1729
3722
|
secret: z.ZodOptional<z.ZodString>;
|
|
1730
3723
|
date_created: z.ZodISODateTime;
|
|
1731
3724
|
}, z.core.$strip>;
|
|
1732
|
-
export declare const
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
token_id: z.ZodString;
|
|
1742
|
-
}, z.core.$strip>;
|
|
1743
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3725
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
3726
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3727
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3728
|
+
Administrator: "Administrator";
|
|
3729
|
+
User: "User";
|
|
3730
|
+
}>>;
|
|
3731
|
+
}, z.core.$strip>;
|
|
3732
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
3733
|
+
token_id: z.ZodString;
|
|
1744
3734
|
}, z.core.$strip>;
|
|
1745
3735
|
/**
|
|
1746
3736
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1755,12 +3745,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1755
3745
|
secret: z.ZodOptional<z.ZodString>;
|
|
1756
3746
|
date_created: z.ZodISODateTime;
|
|
1757
3747
|
}, z.core.$strip>;
|
|
1758
|
-
export declare const
|
|
1759
|
-
|
|
1760
|
-
path: z.ZodObject<{
|
|
1761
|
-
token_id: z.ZodString;
|
|
1762
|
-
}, z.core.$strip>;
|
|
1763
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3748
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
3749
|
+
token_id: z.ZodString;
|
|
1764
3750
|
}, z.core.$strip>;
|
|
1765
3751
|
/**
|
|
1766
3752
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1775,12 +3761,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1775
3761
|
secret: z.ZodOptional<z.ZodString>;
|
|
1776
3762
|
date_created: z.ZodISODateTime;
|
|
1777
3763
|
}, z.core.$strip>;
|
|
1778
|
-
export declare const
|
|
1779
|
-
|
|
1780
|
-
path: z.ZodObject<{
|
|
1781
|
-
email: z.ZodString;
|
|
1782
|
-
}, z.core.$strip>;
|
|
1783
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3764
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
3765
|
+
email: z.ZodString;
|
|
1784
3766
|
}, z.core.$strip>;
|
|
1785
3767
|
/**
|
|
1786
3768
|
* An array of organizations the user belongs to.
|
|
@@ -1789,11 +3771,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1789
3771
|
realm: z.ZodOptional<z.ZodString>;
|
|
1790
3772
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1791
3773
|
}, z.core.$strip>>;
|
|
1792
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1793
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1794
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1795
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1796
|
-
}, z.core.$strip>;
|
|
1797
3774
|
/**
|
|
1798
3775
|
* An array of users
|
|
1799
3776
|
*/
|
|
@@ -1812,24 +3789,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1812
3789
|
id: z.ZodUUID;
|
|
1813
3790
|
date_created: z.ZodISODateTime;
|
|
1814
3791
|
}, z.core.$strip>>;
|
|
1815
|
-
export declare const
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
}>>;
|
|
1830
|
-
}, z.core.$strip>;
|
|
1831
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1832
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3792
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
3793
|
+
email: z.ZodEmail;
|
|
3794
|
+
first_name: z.ZodString;
|
|
3795
|
+
last_name: z.ZodString;
|
|
3796
|
+
code: z.ZodString;
|
|
3797
|
+
password: z.ZodString;
|
|
3798
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
3799
|
+
active: "active";
|
|
3800
|
+
inactive: "inactive";
|
|
3801
|
+
}>>;
|
|
3802
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3803
|
+
Administrator: "Administrator";
|
|
3804
|
+
User: "User";
|
|
3805
|
+
}>>;
|
|
1833
3806
|
}, z.core.$strip>;
|
|
1834
3807
|
/**
|
|
1835
3808
|
* Successfully created. Returns created user details.
|
|
@@ -1849,12 +3822,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
1849
3822
|
id: z.ZodUUID;
|
|
1850
3823
|
date_created: z.ZodISODateTime;
|
|
1851
3824
|
}, z.core.$strip>;
|
|
1852
|
-
export declare const
|
|
1853
|
-
|
|
1854
|
-
path: z.ZodObject<{
|
|
1855
|
-
user_id: z.ZodString;
|
|
1856
|
-
}, z.core.$strip>;
|
|
1857
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3825
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
3826
|
+
user_id: z.ZodString;
|
|
1858
3827
|
}, z.core.$strip>;
|
|
1859
3828
|
/**
|
|
1860
3829
|
* User profile information
|
|
@@ -1874,12 +3843,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
1874
3843
|
id: z.ZodUUID;
|
|
1875
3844
|
date_created: z.ZodISODateTime;
|
|
1876
3845
|
}, z.core.$strip>;
|
|
1877
|
-
export declare const
|
|
1878
|
-
|
|
1879
|
-
path: z.ZodObject<{
|
|
1880
|
-
user_id: z.ZodString;
|
|
1881
|
-
}, z.core.$strip>;
|
|
1882
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3846
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
3847
|
+
user_id: z.ZodString;
|
|
1883
3848
|
}, z.core.$strip>;
|
|
1884
3849
|
/**
|
|
1885
3850
|
* User profile information
|
|
@@ -1899,24 +3864,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
1899
3864
|
id: z.ZodUUID;
|
|
1900
3865
|
date_created: z.ZodISODateTime;
|
|
1901
3866
|
}, z.core.$strip>;
|
|
1902
|
-
export declare const
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
user_id: z.ZodString;
|
|
1918
|
-
}, z.core.$strip>;
|
|
1919
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3867
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
3868
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
3869
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
3870
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
3871
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3872
|
+
Administrator: "Administrator";
|
|
3873
|
+
User: "User";
|
|
3874
|
+
}>>;
|
|
3875
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
3876
|
+
active: "active";
|
|
3877
|
+
inactive: "inactive";
|
|
3878
|
+
}>>;
|
|
3879
|
+
}, z.core.$strip>;
|
|
3880
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3881
|
+
user_id: z.ZodString;
|
|
1920
3882
|
}, z.core.$strip>;
|
|
1921
3883
|
/**
|
|
1922
3884
|
* Successfully created. Returns created user details.
|