@cloudfleet/sdk 0.0.1-a64863e → 0.0.1-a9ac9eb

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/zod.gen.d.ts CHANGED
@@ -1,5 +1,9 @@
1
1
  import * as z from 'zod';
2
2
  export declare const zBillingContact: z.ZodObject<{
3
+ type: z.ZodEnum<{
4
+ business: "business";
5
+ personal: "personal";
6
+ }>;
3
7
  company: z.ZodOptional<z.ZodString>;
4
8
  address1: z.ZodOptional<z.ZodString>;
5
9
  address2: z.ZodOptional<z.ZodString>;
@@ -199,18 +203,18 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
203
  basic: "basic";
200
204
  pro: "pro";
201
205
  }>;
202
- region: z.ZodOptional<z.ZodEnum<{
206
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
207
  "staging-1a": "staging-1a";
204
208
  "northamerica-central-1": "northamerica-central-1";
205
209
  "europe-central-1a": "europe-central-1a";
206
210
  "northamerica-central-1a": "northamerica-central-1a";
207
- }>>;
208
- version_channel: z.ZodOptional<z.ZodEnum<{
211
+ }>>>;
212
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
209
213
  "1.x.x-cfke.x": "1.x.x-cfke.x";
210
214
  "1.31.x-cfke.x": "1.31.x-cfke.x";
211
215
  "1.32.x-cfke.x": "1.32.x-cfke.x";
212
216
  "1.33.x-cfke.x": "1.33.x-cfke.x";
213
- }>>;
217
+ }>>>;
214
218
  }, z.core.$strip>;
215
219
  export declare const zClusterJoinInformation: z.ZodObject<{
216
220
  certificate_authority: z.ZodString;
@@ -236,12 +240,12 @@ export declare const zCluster: z.ZodObject<{
236
240
  basic: "basic";
237
241
  pro: "pro";
238
242
  }>;
239
- region: z.ZodOptional<z.ZodEnum<{
243
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
244
  "staging-1a": "staging-1a";
241
245
  "northamerica-central-1": "northamerica-central-1";
242
246
  "europe-central-1a": "europe-central-1a";
243
247
  "northamerica-central-1a": "northamerica-central-1a";
244
- }>>;
248
+ }>>>;
245
249
  id: z.ZodUUID;
246
250
  status: z.ZodEnum<{
247
251
  deleted: "deleted";
@@ -255,6 +259,9 @@ export declare const zCluster: z.ZodObject<{
255
259
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
256
260
  "": "";
257
261
  }>]>>;
262
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
263
+ "": "";
264
+ }>]>>;
258
265
  certificate_ca: z.ZodOptional<z.ZodString>;
259
266
  version_current: z.ZodOptional<z.ZodString>;
260
267
  created_at: z.ZodOptional<z.ZodString>;
@@ -272,56 +279,776 @@ export declare const zClusterUpdateInput: z.ZodObject<{
272
279
  }, z.core.$strip>;
273
280
  export declare const zFleetCreateInput: z.ZodObject<{
274
281
  limits: z.ZodOptional<z.ZodObject<{
275
- cpu: z.ZodNumber;
282
+ cpu: z.ZodOptional<z.ZodInt>;
276
283
  }, z.core.$strip>>;
277
284
  gcp: z.ZodOptional<z.ZodObject<{
278
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
279
- project: z.ZodString;
285
+ enabled: z.ZodBoolean;
286
+ project: z.ZodOptional<z.ZodString>;
280
287
  }, z.core.$strip>>;
281
288
  hetzner: z.ZodOptional<z.ZodObject<{
282
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
283
- apiKey: z.ZodString;
289
+ enabled: z.ZodBoolean;
290
+ apiKey: z.ZodOptional<z.ZodString>;
284
291
  }, z.core.$strip>>;
285
292
  aws: z.ZodOptional<z.ZodObject<{
286
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
287
- controllerRoleArn: z.ZodString;
293
+ enabled: z.ZodBoolean;
294
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
288
295
  }, z.core.$strip>>;
296
+ constraints: z.ZodOptional<z.ZodObject<{
297
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
298
+ "on-demand": "on-demand";
299
+ spot: "spot";
300
+ }>>>>;
301
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
302
+ amd64: "amd64";
303
+ arm64: "arm64";
304
+ }>>>>;
305
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
306
+ p3: "p3";
307
+ cx: "cx";
308
+ h1: "h1";
309
+ h3: "h3";
310
+ a1: "a1";
311
+ a2: "a2";
312
+ a3: "a3";
313
+ a4: "a4";
314
+ c1: "c1";
315
+ c2: "c2";
316
+ c2d: "c2d";
317
+ c3: "c3";
318
+ c3d: "c3d";
319
+ c4: "c4";
320
+ c4a: "c4a";
321
+ c4d: "c4d";
322
+ c5: "c5";
323
+ c5a: "c5a";
324
+ c5ad: "c5ad";
325
+ c5d: "c5d";
326
+ c5n: "c5n";
327
+ c6a: "c6a";
328
+ c6g: "c6g";
329
+ c6gd: "c6gd";
330
+ c6gn: "c6gn";
331
+ c6i: "c6i";
332
+ c6id: "c6id";
333
+ c6in: "c6in";
334
+ c7a: "c7a";
335
+ c7g: "c7g";
336
+ c7gd: "c7gd";
337
+ c7gn: "c7gn";
338
+ c7i: "c7i";
339
+ "c7i-flex": "c7i-flex";
340
+ c8g: "c8g";
341
+ c8gd: "c8gd";
342
+ cax: "cax";
343
+ ccx: "ccx";
344
+ cpx: "cpx";
345
+ d2: "d2";
346
+ d3: "d3";
347
+ d3en: "d3en";
348
+ dl1: "dl1";
349
+ dl2q: "dl2q";
350
+ e2: "e2";
351
+ f1: "f1";
352
+ f2: "f2";
353
+ g1: "g1";
354
+ g2: "g2";
355
+ g4ad: "g4ad";
356
+ g4dn: "g4dn";
357
+ g5: "g5";
358
+ g5g: "g5g";
359
+ g6: "g6";
360
+ g6e: "g6e";
361
+ gr6: "gr6";
362
+ hpc6a: "hpc6a";
363
+ hpc6id: "hpc6id";
364
+ hpc7a: "hpc7a";
365
+ hpc7g: "hpc7g";
366
+ i2: "i2";
367
+ i3: "i3";
368
+ i3en: "i3en";
369
+ i4g: "i4g";
370
+ i4i: "i4i";
371
+ i7i: "i7i";
372
+ i7ie: "i7ie";
373
+ i8g: "i8g";
374
+ im4gn: "im4gn";
375
+ inf1: "inf1";
376
+ inf2: "inf2";
377
+ is4gen: "is4gen";
378
+ m1: "m1";
379
+ m2: "m2";
380
+ m3: "m3";
381
+ m4: "m4";
382
+ m5: "m5";
383
+ m5a: "m5a";
384
+ m5ad: "m5ad";
385
+ m5d: "m5d";
386
+ m5dn: "m5dn";
387
+ m5n: "m5n";
388
+ m5zn: "m5zn";
389
+ m6a: "m6a";
390
+ m6g: "m6g";
391
+ m6gd: "m6gd";
392
+ m6i: "m6i";
393
+ m6id: "m6id";
394
+ m6idn: "m6idn";
395
+ m6in: "m6in";
396
+ m7a: "m7a";
397
+ m7g: "m7g";
398
+ m7gd: "m7gd";
399
+ m7i: "m7i";
400
+ "m7i-flex": "m7i-flex";
401
+ m8g: "m8g";
402
+ m8gd: "m8gd";
403
+ n1: "n1";
404
+ n2: "n2";
405
+ n2d: "n2d";
406
+ n4: "n4";
407
+ p3dn: "p3dn";
408
+ p4d: "p4d";
409
+ p4de: "p4de";
410
+ p5: "p5";
411
+ p5e: "p5e";
412
+ p5en: "p5en";
413
+ "p6-b200": "p6-b200";
414
+ r3: "r3";
415
+ r4: "r4";
416
+ r5: "r5";
417
+ r5a: "r5a";
418
+ r5ad: "r5ad";
419
+ r5b: "r5b";
420
+ r5d: "r5d";
421
+ r5dn: "r5dn";
422
+ r5n: "r5n";
423
+ r6a: "r6a";
424
+ r6g: "r6g";
425
+ r6gd: "r6gd";
426
+ r6i: "r6i";
427
+ r6id: "r6id";
428
+ r6idn: "r6idn";
429
+ r6in: "r6in";
430
+ r7a: "r7a";
431
+ r7g: "r7g";
432
+ r7gd: "r7gd";
433
+ r7i: "r7i";
434
+ r7iz: "r7iz";
435
+ r8g: "r8g";
436
+ r8gd: "r8gd";
437
+ t2: "t2";
438
+ t2a: "t2a";
439
+ t2d: "t2d";
440
+ t3: "t3";
441
+ t3a: "t3a";
442
+ t4g: "t4g";
443
+ trn1: "trn1";
444
+ trn1n: "trn1n";
445
+ "u-3tb1": "u-3tb1";
446
+ "u-6tb1": "u-6tb1";
447
+ "u7i-12tb": "u7i-12tb";
448
+ "u7i-6tb": "u7i-6tb";
449
+ "u7i-8tb": "u7i-8tb";
450
+ "u7in-16tb": "u7in-16tb";
451
+ "u7in-24tb": "u7in-24tb";
452
+ "u7in-32tb": "u7in-32tb";
453
+ vt1: "vt1";
454
+ x1: "x1";
455
+ x1e: "x1e";
456
+ x2gd: "x2gd";
457
+ x2idn: "x2idn";
458
+ x2iedn: "x2iedn";
459
+ x2iezn: "x2iezn";
460
+ x4: "x4";
461
+ x8g: "x8g";
462
+ z1d: "z1d";
463
+ z3: "z3";
464
+ }>>>;
465
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
466
+ "africa-south1": "africa-south1";
467
+ "ap-northeast-1": "ap-northeast-1";
468
+ "ap-northeast-2": "ap-northeast-2";
469
+ "ap-northeast-3": "ap-northeast-3";
470
+ "ap-south-1": "ap-south-1";
471
+ "ap-southeast-1": "ap-southeast-1";
472
+ "ap-southeast-2": "ap-southeast-2";
473
+ ash: "ash";
474
+ "asia-east1": "asia-east1";
475
+ "asia-east2": "asia-east2";
476
+ "asia-northeast1": "asia-northeast1";
477
+ "asia-northeast2": "asia-northeast2";
478
+ "asia-northeast3": "asia-northeast3";
479
+ "asia-south1": "asia-south1";
480
+ "asia-south2": "asia-south2";
481
+ "asia-southeast1": "asia-southeast1";
482
+ "asia-southeast2": "asia-southeast2";
483
+ "australia-southeast1": "australia-southeast1";
484
+ "australia-southeast2": "australia-southeast2";
485
+ "ca-central-1": "ca-central-1";
486
+ "eu-central-1": "eu-central-1";
487
+ "eu-central-2": "eu-central-2";
488
+ "eu-north-1": "eu-north-1";
489
+ "eu-west-1": "eu-west-1";
490
+ "eu-west-2": "eu-west-2";
491
+ "eu-west-3": "eu-west-3";
492
+ "europe-central2": "europe-central2";
493
+ "europe-north1": "europe-north1";
494
+ "europe-southwest1": "europe-southwest1";
495
+ "europe-west1": "europe-west1";
496
+ "europe-west10": "europe-west10";
497
+ "europe-west12": "europe-west12";
498
+ "europe-west2": "europe-west2";
499
+ "europe-west3": "europe-west3";
500
+ "europe-west4": "europe-west4";
501
+ "europe-west6": "europe-west6";
502
+ "europe-west8": "europe-west8";
503
+ "europe-west9": "europe-west9";
504
+ fsn1: "fsn1";
505
+ hel1: "hel1";
506
+ hil: "hil";
507
+ "me-central1": "me-central1";
508
+ "me-central2": "me-central2";
509
+ "me-west1": "me-west1";
510
+ nbg1: "nbg1";
511
+ "northamerica-northeast1": "northamerica-northeast1";
512
+ "northamerica-northeast2": "northamerica-northeast2";
513
+ "sa-east-1": "sa-east-1";
514
+ sin: "sin";
515
+ "southamerica-east1": "southamerica-east1";
516
+ "southamerica-west1": "southamerica-west1";
517
+ "us-central1": "us-central1";
518
+ "us-east-1": "us-east-1";
519
+ "us-east-2": "us-east-2";
520
+ "us-east1": "us-east1";
521
+ "us-east4": "us-east4";
522
+ "us-east5": "us-east5";
523
+ "us-south1": "us-south1";
524
+ "us-west-1": "us-west-1";
525
+ "us-west-2": "us-west-2";
526
+ "us-west1": "us-west1";
527
+ "us-west2": "us-west2";
528
+ "us-west3": "us-west3";
529
+ "us-west4": "us-west4";
530
+ }>>>;
531
+ }, z.core.$strip>>;
532
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
533
+ aggressive: "aggressive";
534
+ conservative: "conservative";
535
+ }>>>;
289
536
  id: z.ZodString;
290
537
  }, z.core.$strip>;
291
538
  export declare const zFleet: z.ZodObject<{
292
539
  limits: z.ZodOptional<z.ZodObject<{
293
- cpu: z.ZodNumber;
540
+ cpu: z.ZodOptional<z.ZodInt>;
294
541
  }, z.core.$strip>>;
295
542
  gcp: z.ZodOptional<z.ZodObject<{
296
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
297
- project: z.ZodString;
543
+ enabled: z.ZodBoolean;
544
+ project: z.ZodOptional<z.ZodString>;
298
545
  }, z.core.$strip>>;
299
546
  hetzner: z.ZodOptional<z.ZodObject<{
300
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
301
- apiKey: z.ZodString;
547
+ enabled: z.ZodBoolean;
548
+ apiKey: z.ZodOptional<z.ZodString>;
302
549
  }, z.core.$strip>>;
303
550
  aws: z.ZodOptional<z.ZodObject<{
304
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
305
- controllerRoleArn: z.ZodString;
551
+ enabled: z.ZodBoolean;
552
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
553
+ }, z.core.$strip>>;
554
+ constraints: z.ZodOptional<z.ZodObject<{
555
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
556
+ "on-demand": "on-demand";
557
+ spot: "spot";
558
+ }>>>>;
559
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
560
+ amd64: "amd64";
561
+ arm64: "arm64";
562
+ }>>>>;
563
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
564
+ p3: "p3";
565
+ cx: "cx";
566
+ h1: "h1";
567
+ h3: "h3";
568
+ a1: "a1";
569
+ a2: "a2";
570
+ a3: "a3";
571
+ a4: "a4";
572
+ c1: "c1";
573
+ c2: "c2";
574
+ c2d: "c2d";
575
+ c3: "c3";
576
+ c3d: "c3d";
577
+ c4: "c4";
578
+ c4a: "c4a";
579
+ c4d: "c4d";
580
+ c5: "c5";
581
+ c5a: "c5a";
582
+ c5ad: "c5ad";
583
+ c5d: "c5d";
584
+ c5n: "c5n";
585
+ c6a: "c6a";
586
+ c6g: "c6g";
587
+ c6gd: "c6gd";
588
+ c6gn: "c6gn";
589
+ c6i: "c6i";
590
+ c6id: "c6id";
591
+ c6in: "c6in";
592
+ c7a: "c7a";
593
+ c7g: "c7g";
594
+ c7gd: "c7gd";
595
+ c7gn: "c7gn";
596
+ c7i: "c7i";
597
+ "c7i-flex": "c7i-flex";
598
+ c8g: "c8g";
599
+ c8gd: "c8gd";
600
+ cax: "cax";
601
+ ccx: "ccx";
602
+ cpx: "cpx";
603
+ d2: "d2";
604
+ d3: "d3";
605
+ d3en: "d3en";
606
+ dl1: "dl1";
607
+ dl2q: "dl2q";
608
+ e2: "e2";
609
+ f1: "f1";
610
+ f2: "f2";
611
+ g1: "g1";
612
+ g2: "g2";
613
+ g4ad: "g4ad";
614
+ g4dn: "g4dn";
615
+ g5: "g5";
616
+ g5g: "g5g";
617
+ g6: "g6";
618
+ g6e: "g6e";
619
+ gr6: "gr6";
620
+ hpc6a: "hpc6a";
621
+ hpc6id: "hpc6id";
622
+ hpc7a: "hpc7a";
623
+ hpc7g: "hpc7g";
624
+ i2: "i2";
625
+ i3: "i3";
626
+ i3en: "i3en";
627
+ i4g: "i4g";
628
+ i4i: "i4i";
629
+ i7i: "i7i";
630
+ i7ie: "i7ie";
631
+ i8g: "i8g";
632
+ im4gn: "im4gn";
633
+ inf1: "inf1";
634
+ inf2: "inf2";
635
+ is4gen: "is4gen";
636
+ m1: "m1";
637
+ m2: "m2";
638
+ m3: "m3";
639
+ m4: "m4";
640
+ m5: "m5";
641
+ m5a: "m5a";
642
+ m5ad: "m5ad";
643
+ m5d: "m5d";
644
+ m5dn: "m5dn";
645
+ m5n: "m5n";
646
+ m5zn: "m5zn";
647
+ m6a: "m6a";
648
+ m6g: "m6g";
649
+ m6gd: "m6gd";
650
+ m6i: "m6i";
651
+ m6id: "m6id";
652
+ m6idn: "m6idn";
653
+ m6in: "m6in";
654
+ m7a: "m7a";
655
+ m7g: "m7g";
656
+ m7gd: "m7gd";
657
+ m7i: "m7i";
658
+ "m7i-flex": "m7i-flex";
659
+ m8g: "m8g";
660
+ m8gd: "m8gd";
661
+ n1: "n1";
662
+ n2: "n2";
663
+ n2d: "n2d";
664
+ n4: "n4";
665
+ p3dn: "p3dn";
666
+ p4d: "p4d";
667
+ p4de: "p4de";
668
+ p5: "p5";
669
+ p5e: "p5e";
670
+ p5en: "p5en";
671
+ "p6-b200": "p6-b200";
672
+ r3: "r3";
673
+ r4: "r4";
674
+ r5: "r5";
675
+ r5a: "r5a";
676
+ r5ad: "r5ad";
677
+ r5b: "r5b";
678
+ r5d: "r5d";
679
+ r5dn: "r5dn";
680
+ r5n: "r5n";
681
+ r6a: "r6a";
682
+ r6g: "r6g";
683
+ r6gd: "r6gd";
684
+ r6i: "r6i";
685
+ r6id: "r6id";
686
+ r6idn: "r6idn";
687
+ r6in: "r6in";
688
+ r7a: "r7a";
689
+ r7g: "r7g";
690
+ r7gd: "r7gd";
691
+ r7i: "r7i";
692
+ r7iz: "r7iz";
693
+ r8g: "r8g";
694
+ r8gd: "r8gd";
695
+ t2: "t2";
696
+ t2a: "t2a";
697
+ t2d: "t2d";
698
+ t3: "t3";
699
+ t3a: "t3a";
700
+ t4g: "t4g";
701
+ trn1: "trn1";
702
+ trn1n: "trn1n";
703
+ "u-3tb1": "u-3tb1";
704
+ "u-6tb1": "u-6tb1";
705
+ "u7i-12tb": "u7i-12tb";
706
+ "u7i-6tb": "u7i-6tb";
707
+ "u7i-8tb": "u7i-8tb";
708
+ "u7in-16tb": "u7in-16tb";
709
+ "u7in-24tb": "u7in-24tb";
710
+ "u7in-32tb": "u7in-32tb";
711
+ vt1: "vt1";
712
+ x1: "x1";
713
+ x1e: "x1e";
714
+ x2gd: "x2gd";
715
+ x2idn: "x2idn";
716
+ x2iedn: "x2iedn";
717
+ x2iezn: "x2iezn";
718
+ x4: "x4";
719
+ x8g: "x8g";
720
+ z1d: "z1d";
721
+ z3: "z3";
722
+ }>>>;
723
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
724
+ "africa-south1": "africa-south1";
725
+ "ap-northeast-1": "ap-northeast-1";
726
+ "ap-northeast-2": "ap-northeast-2";
727
+ "ap-northeast-3": "ap-northeast-3";
728
+ "ap-south-1": "ap-south-1";
729
+ "ap-southeast-1": "ap-southeast-1";
730
+ "ap-southeast-2": "ap-southeast-2";
731
+ ash: "ash";
732
+ "asia-east1": "asia-east1";
733
+ "asia-east2": "asia-east2";
734
+ "asia-northeast1": "asia-northeast1";
735
+ "asia-northeast2": "asia-northeast2";
736
+ "asia-northeast3": "asia-northeast3";
737
+ "asia-south1": "asia-south1";
738
+ "asia-south2": "asia-south2";
739
+ "asia-southeast1": "asia-southeast1";
740
+ "asia-southeast2": "asia-southeast2";
741
+ "australia-southeast1": "australia-southeast1";
742
+ "australia-southeast2": "australia-southeast2";
743
+ "ca-central-1": "ca-central-1";
744
+ "eu-central-1": "eu-central-1";
745
+ "eu-central-2": "eu-central-2";
746
+ "eu-north-1": "eu-north-1";
747
+ "eu-west-1": "eu-west-1";
748
+ "eu-west-2": "eu-west-2";
749
+ "eu-west-3": "eu-west-3";
750
+ "europe-central2": "europe-central2";
751
+ "europe-north1": "europe-north1";
752
+ "europe-southwest1": "europe-southwest1";
753
+ "europe-west1": "europe-west1";
754
+ "europe-west10": "europe-west10";
755
+ "europe-west12": "europe-west12";
756
+ "europe-west2": "europe-west2";
757
+ "europe-west3": "europe-west3";
758
+ "europe-west4": "europe-west4";
759
+ "europe-west6": "europe-west6";
760
+ "europe-west8": "europe-west8";
761
+ "europe-west9": "europe-west9";
762
+ fsn1: "fsn1";
763
+ hel1: "hel1";
764
+ hil: "hil";
765
+ "me-central1": "me-central1";
766
+ "me-central2": "me-central2";
767
+ "me-west1": "me-west1";
768
+ nbg1: "nbg1";
769
+ "northamerica-northeast1": "northamerica-northeast1";
770
+ "northamerica-northeast2": "northamerica-northeast2";
771
+ "sa-east-1": "sa-east-1";
772
+ sin: "sin";
773
+ "southamerica-east1": "southamerica-east1";
774
+ "southamerica-west1": "southamerica-west1";
775
+ "us-central1": "us-central1";
776
+ "us-east-1": "us-east-1";
777
+ "us-east-2": "us-east-2";
778
+ "us-east1": "us-east1";
779
+ "us-east4": "us-east4";
780
+ "us-east5": "us-east5";
781
+ "us-south1": "us-south1";
782
+ "us-west-1": "us-west-1";
783
+ "us-west-2": "us-west-2";
784
+ "us-west1": "us-west1";
785
+ "us-west2": "us-west2";
786
+ "us-west3": "us-west3";
787
+ "us-west4": "us-west4";
788
+ }>>>;
306
789
  }, z.core.$strip>>;
790
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
791
+ aggressive: "aggressive";
792
+ conservative: "conservative";
793
+ }>>;
307
794
  id: z.ZodString;
308
795
  }, z.core.$strip>;
309
796
  export declare const zFleetUpdateInput: z.ZodObject<{
310
797
  limits: z.ZodOptional<z.ZodObject<{
311
- cpu: z.ZodNumber;
798
+ cpu: z.ZodOptional<z.ZodInt>;
312
799
  }, z.core.$strip>>;
313
800
  gcp: z.ZodOptional<z.ZodObject<{
314
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
315
- project: z.ZodString;
801
+ enabled: z.ZodBoolean;
802
+ project: z.ZodOptional<z.ZodString>;
316
803
  }, z.core.$strip>>;
317
804
  hetzner: z.ZodOptional<z.ZodObject<{
318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
319
- apiKey: z.ZodString;
805
+ enabled: z.ZodBoolean;
806
+ apiKey: z.ZodOptional<z.ZodString>;
320
807
  }, z.core.$strip>>;
321
808
  aws: z.ZodOptional<z.ZodObject<{
322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
323
- controllerRoleArn: z.ZodString;
809
+ enabled: z.ZodBoolean;
810
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
811
+ }, z.core.$strip>>;
812
+ constraints: z.ZodOptional<z.ZodObject<{
813
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
814
+ "on-demand": "on-demand";
815
+ spot: "spot";
816
+ }>>>;
817
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
818
+ amd64: "amd64";
819
+ arm64: "arm64";
820
+ }>>>;
821
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
822
+ p3: "p3";
823
+ cx: "cx";
824
+ h1: "h1";
825
+ h3: "h3";
826
+ a1: "a1";
827
+ a2: "a2";
828
+ a3: "a3";
829
+ a4: "a4";
830
+ c1: "c1";
831
+ c2: "c2";
832
+ c2d: "c2d";
833
+ c3: "c3";
834
+ c3d: "c3d";
835
+ c4: "c4";
836
+ c4a: "c4a";
837
+ c4d: "c4d";
838
+ c5: "c5";
839
+ c5a: "c5a";
840
+ c5ad: "c5ad";
841
+ c5d: "c5d";
842
+ c5n: "c5n";
843
+ c6a: "c6a";
844
+ c6g: "c6g";
845
+ c6gd: "c6gd";
846
+ c6gn: "c6gn";
847
+ c6i: "c6i";
848
+ c6id: "c6id";
849
+ c6in: "c6in";
850
+ c7a: "c7a";
851
+ c7g: "c7g";
852
+ c7gd: "c7gd";
853
+ c7gn: "c7gn";
854
+ c7i: "c7i";
855
+ "c7i-flex": "c7i-flex";
856
+ c8g: "c8g";
857
+ c8gd: "c8gd";
858
+ cax: "cax";
859
+ ccx: "ccx";
860
+ cpx: "cpx";
861
+ d2: "d2";
862
+ d3: "d3";
863
+ d3en: "d3en";
864
+ dl1: "dl1";
865
+ dl2q: "dl2q";
866
+ e2: "e2";
867
+ f1: "f1";
868
+ f2: "f2";
869
+ g1: "g1";
870
+ g2: "g2";
871
+ g4ad: "g4ad";
872
+ g4dn: "g4dn";
873
+ g5: "g5";
874
+ g5g: "g5g";
875
+ g6: "g6";
876
+ g6e: "g6e";
877
+ gr6: "gr6";
878
+ hpc6a: "hpc6a";
879
+ hpc6id: "hpc6id";
880
+ hpc7a: "hpc7a";
881
+ hpc7g: "hpc7g";
882
+ i2: "i2";
883
+ i3: "i3";
884
+ i3en: "i3en";
885
+ i4g: "i4g";
886
+ i4i: "i4i";
887
+ i7i: "i7i";
888
+ i7ie: "i7ie";
889
+ i8g: "i8g";
890
+ im4gn: "im4gn";
891
+ inf1: "inf1";
892
+ inf2: "inf2";
893
+ is4gen: "is4gen";
894
+ m1: "m1";
895
+ m2: "m2";
896
+ m3: "m3";
897
+ m4: "m4";
898
+ m5: "m5";
899
+ m5a: "m5a";
900
+ m5ad: "m5ad";
901
+ m5d: "m5d";
902
+ m5dn: "m5dn";
903
+ m5n: "m5n";
904
+ m5zn: "m5zn";
905
+ m6a: "m6a";
906
+ m6g: "m6g";
907
+ m6gd: "m6gd";
908
+ m6i: "m6i";
909
+ m6id: "m6id";
910
+ m6idn: "m6idn";
911
+ m6in: "m6in";
912
+ m7a: "m7a";
913
+ m7g: "m7g";
914
+ m7gd: "m7gd";
915
+ m7i: "m7i";
916
+ "m7i-flex": "m7i-flex";
917
+ m8g: "m8g";
918
+ m8gd: "m8gd";
919
+ n1: "n1";
920
+ n2: "n2";
921
+ n2d: "n2d";
922
+ n4: "n4";
923
+ p3dn: "p3dn";
924
+ p4d: "p4d";
925
+ p4de: "p4de";
926
+ p5: "p5";
927
+ p5e: "p5e";
928
+ p5en: "p5en";
929
+ "p6-b200": "p6-b200";
930
+ r3: "r3";
931
+ r4: "r4";
932
+ r5: "r5";
933
+ r5a: "r5a";
934
+ r5ad: "r5ad";
935
+ r5b: "r5b";
936
+ r5d: "r5d";
937
+ r5dn: "r5dn";
938
+ r5n: "r5n";
939
+ r6a: "r6a";
940
+ r6g: "r6g";
941
+ r6gd: "r6gd";
942
+ r6i: "r6i";
943
+ r6id: "r6id";
944
+ r6idn: "r6idn";
945
+ r6in: "r6in";
946
+ r7a: "r7a";
947
+ r7g: "r7g";
948
+ r7gd: "r7gd";
949
+ r7i: "r7i";
950
+ r7iz: "r7iz";
951
+ r8g: "r8g";
952
+ r8gd: "r8gd";
953
+ t2: "t2";
954
+ t2a: "t2a";
955
+ t2d: "t2d";
956
+ t3: "t3";
957
+ t3a: "t3a";
958
+ t4g: "t4g";
959
+ trn1: "trn1";
960
+ trn1n: "trn1n";
961
+ "u-3tb1": "u-3tb1";
962
+ "u-6tb1": "u-6tb1";
963
+ "u7i-12tb": "u7i-12tb";
964
+ "u7i-6tb": "u7i-6tb";
965
+ "u7i-8tb": "u7i-8tb";
966
+ "u7in-16tb": "u7in-16tb";
967
+ "u7in-24tb": "u7in-24tb";
968
+ "u7in-32tb": "u7in-32tb";
969
+ vt1: "vt1";
970
+ x1: "x1";
971
+ x1e: "x1e";
972
+ x2gd: "x2gd";
973
+ x2idn: "x2idn";
974
+ x2iedn: "x2iedn";
975
+ x2iezn: "x2iezn";
976
+ x4: "x4";
977
+ x8g: "x8g";
978
+ z1d: "z1d";
979
+ z3: "z3";
980
+ }>>>;
981
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
982
+ "africa-south1": "africa-south1";
983
+ "ap-northeast-1": "ap-northeast-1";
984
+ "ap-northeast-2": "ap-northeast-2";
985
+ "ap-northeast-3": "ap-northeast-3";
986
+ "ap-south-1": "ap-south-1";
987
+ "ap-southeast-1": "ap-southeast-1";
988
+ "ap-southeast-2": "ap-southeast-2";
989
+ ash: "ash";
990
+ "asia-east1": "asia-east1";
991
+ "asia-east2": "asia-east2";
992
+ "asia-northeast1": "asia-northeast1";
993
+ "asia-northeast2": "asia-northeast2";
994
+ "asia-northeast3": "asia-northeast3";
995
+ "asia-south1": "asia-south1";
996
+ "asia-south2": "asia-south2";
997
+ "asia-southeast1": "asia-southeast1";
998
+ "asia-southeast2": "asia-southeast2";
999
+ "australia-southeast1": "australia-southeast1";
1000
+ "australia-southeast2": "australia-southeast2";
1001
+ "ca-central-1": "ca-central-1";
1002
+ "eu-central-1": "eu-central-1";
1003
+ "eu-central-2": "eu-central-2";
1004
+ "eu-north-1": "eu-north-1";
1005
+ "eu-west-1": "eu-west-1";
1006
+ "eu-west-2": "eu-west-2";
1007
+ "eu-west-3": "eu-west-3";
1008
+ "europe-central2": "europe-central2";
1009
+ "europe-north1": "europe-north1";
1010
+ "europe-southwest1": "europe-southwest1";
1011
+ "europe-west1": "europe-west1";
1012
+ "europe-west10": "europe-west10";
1013
+ "europe-west12": "europe-west12";
1014
+ "europe-west2": "europe-west2";
1015
+ "europe-west3": "europe-west3";
1016
+ "europe-west4": "europe-west4";
1017
+ "europe-west6": "europe-west6";
1018
+ "europe-west8": "europe-west8";
1019
+ "europe-west9": "europe-west9";
1020
+ fsn1: "fsn1";
1021
+ hel1: "hel1";
1022
+ hil: "hil";
1023
+ "me-central1": "me-central1";
1024
+ "me-central2": "me-central2";
1025
+ "me-west1": "me-west1";
1026
+ nbg1: "nbg1";
1027
+ "northamerica-northeast1": "northamerica-northeast1";
1028
+ "northamerica-northeast2": "northamerica-northeast2";
1029
+ "sa-east-1": "sa-east-1";
1030
+ sin: "sin";
1031
+ "southamerica-east1": "southamerica-east1";
1032
+ "southamerica-west1": "southamerica-west1";
1033
+ "us-central1": "us-central1";
1034
+ "us-east-1": "us-east-1";
1035
+ "us-east-2": "us-east-2";
1036
+ "us-east1": "us-east1";
1037
+ "us-east4": "us-east4";
1038
+ "us-east5": "us-east5";
1039
+ "us-south1": "us-south1";
1040
+ "us-west-1": "us-west-1";
1041
+ "us-west-2": "us-west-2";
1042
+ "us-west1": "us-west1";
1043
+ "us-west2": "us-west2";
1044
+ "us-west3": "us-west3";
1045
+ "us-west4": "us-west4";
1046
+ }>>>;
324
1047
  }, z.core.$strip>>;
1048
+ scalingProfile: z.ZodEnum<{
1049
+ aggressive: "aggressive";
1050
+ conservative: "conservative";
1051
+ }>;
325
1052
  }, z.core.$strip>;
326
1053
  export declare const zInvite: z.ZodObject<{
327
1054
  id: z.ZodOptional<z.ZodString>;
@@ -368,15 +1095,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
368
1095
  }, z.core.$strip>>;
369
1096
  }, z.core.$strip>;
370
1097
  export declare const zOrganizationCreateInput: z.ZodObject<{
1098
+ type: z.ZodEnum<{
1099
+ business: "business";
1100
+ personal: "personal";
1101
+ }>;
371
1102
  email: z.ZodEmail;
372
1103
  first_name: z.ZodString;
373
1104
  last_name: z.ZodString;
374
1105
  company_name: z.ZodString;
375
1106
  password: z.ZodString;
376
1107
  }, z.core.$strip>;
1108
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1109
+ id: z.ZodString;
1110
+ }, z.core.$strip>;
377
1111
  export declare const zOrganization: z.ZodObject<{
378
1112
  id: z.ZodUUID;
379
1113
  name: z.ZodOptional<z.ZodString>;
1114
+ type: z.ZodEnum<{
1115
+ business: "business";
1116
+ personal: "personal";
1117
+ }>;
380
1118
  date_created: z.ZodISODateTime;
381
1119
  quota: z.ZodObject<{
382
1120
  basic_clusters_max: z.ZodInt;
@@ -390,8 +1128,6 @@ export declare const zOrganization: z.ZodObject<{
390
1128
  id: z.ZodString;
391
1129
  label: z.ZodString;
392
1130
  }, z.core.$strip>>;
393
- copilot_user_hourly_tokens: z.ZodInt;
394
- copilot_organization_hourly_tokens: z.ZodInt;
395
1131
  cfcr_storage_gb: z.ZodInt;
396
1132
  }, z.core.$strip>;
397
1133
  status: z.ZodEnum<{
@@ -399,6 +1135,11 @@ export declare const zOrganization: z.ZodObject<{
399
1135
  closed: "closed";
400
1136
  suspended: "suspended";
401
1137
  }>;
1138
+ verification: z.ZodEnum<{
1139
+ none: "none";
1140
+ submitted: "submitted";
1141
+ verified: "verified";
1142
+ }>;
402
1143
  }, z.core.$strip>;
403
1144
  export declare const zPaymentMethod: z.ZodObject<{
404
1145
  id: z.ZodUUID;
@@ -433,8 +1174,6 @@ export declare const zPlatformQuota: z.ZodObject<{
433
1174
  id: z.ZodString;
434
1175
  label: z.ZodString;
435
1176
  }, z.core.$strip>>;
436
- copilot_user_hourly_tokens: z.ZodInt;
437
- copilot_organization_hourly_tokens: z.ZodInt;
438
1177
  cfcr_storage_gb: z.ZodInt;
439
1178
  }, z.core.$strip>;
440
1179
  export declare const zRegistryRepository: z.ZodObject<{
@@ -483,6 +1222,111 @@ export declare const zRegistryTag: z.ZodObject<{
483
1222
  repository: z.ZodString;
484
1223
  uri: z.ZodString;
485
1224
  }, z.core.$strip>;
1225
+ export declare const zTicketAttachment: z.ZodObject<{
1226
+ id: z.ZodString;
1227
+ filename: z.ZodString;
1228
+ content_type: z.ZodString;
1229
+ size: z.ZodInt;
1230
+ }, z.core.$strip>;
1231
+ export declare const zTicketCreateInput: z.ZodObject<{
1232
+ category: z.ZodEnum<{
1233
+ billing: "billing";
1234
+ technical: "technical";
1235
+ general: "general";
1236
+ }>;
1237
+ body: z.ZodString;
1238
+ properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1239
+ }, z.core.$strip>;
1240
+ export declare const zTicketListResponse: z.ZodObject<{
1241
+ items: z.ZodArray<z.ZodObject<{
1242
+ id: z.ZodString;
1243
+ status: z.ZodEnum<{
1244
+ closed: "closed";
1245
+ waiting_on_us: "waiting_on_us";
1246
+ waiting_on_user: "waiting_on_user";
1247
+ }>;
1248
+ category: z.ZodEnum<{
1249
+ billing: "billing";
1250
+ technical: "technical";
1251
+ general: "general";
1252
+ }>;
1253
+ summary: z.ZodString;
1254
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1255
+ date_created: z.ZodISODateTime;
1256
+ date_updated: z.ZodISODateTime;
1257
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1258
+ id: z.ZodString;
1259
+ type: z.ZodEnum<{
1260
+ customer_reply: "customer_reply";
1261
+ agent_reply: "agent_reply";
1262
+ }>;
1263
+ body: z.ZodString;
1264
+ author_first_name: z.ZodOptional<z.ZodString>;
1265
+ author_last_name: z.ZodOptional<z.ZodString>;
1266
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1267
+ id: z.ZodString;
1268
+ filename: z.ZodString;
1269
+ content_type: z.ZodString;
1270
+ size: z.ZodInt;
1271
+ }, z.core.$strip>>>;
1272
+ date_created: z.ZodISODateTime;
1273
+ }, z.core.$strip>>>;
1274
+ }, z.core.$strip>>;
1275
+ }, z.core.$strip>;
1276
+ export declare const zTicketMessageInput: z.ZodObject<{
1277
+ body: z.ZodString;
1278
+ }, z.core.$strip>;
1279
+ export declare const zTicketMessage: z.ZodObject<{
1280
+ id: z.ZodString;
1281
+ type: z.ZodEnum<{
1282
+ customer_reply: "customer_reply";
1283
+ agent_reply: "agent_reply";
1284
+ }>;
1285
+ body: z.ZodString;
1286
+ author_first_name: z.ZodOptional<z.ZodString>;
1287
+ author_last_name: z.ZodOptional<z.ZodString>;
1288
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1289
+ id: z.ZodString;
1290
+ filename: z.ZodString;
1291
+ content_type: z.ZodString;
1292
+ size: z.ZodInt;
1293
+ }, z.core.$strip>>>;
1294
+ date_created: z.ZodISODateTime;
1295
+ }, z.core.$strip>;
1296
+ export declare const zTicket: z.ZodObject<{
1297
+ id: z.ZodString;
1298
+ status: z.ZodEnum<{
1299
+ closed: "closed";
1300
+ waiting_on_us: "waiting_on_us";
1301
+ waiting_on_user: "waiting_on_user";
1302
+ }>;
1303
+ category: z.ZodEnum<{
1304
+ billing: "billing";
1305
+ technical: "technical";
1306
+ general: "general";
1307
+ }>;
1308
+ summary: z.ZodString;
1309
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1310
+ date_created: z.ZodISODateTime;
1311
+ date_updated: z.ZodISODateTime;
1312
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1313
+ id: z.ZodString;
1314
+ type: z.ZodEnum<{
1315
+ customer_reply: "customer_reply";
1316
+ agent_reply: "agent_reply";
1317
+ }>;
1318
+ body: z.ZodString;
1319
+ author_first_name: z.ZodOptional<z.ZodString>;
1320
+ author_last_name: z.ZodOptional<z.ZodString>;
1321
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1322
+ id: z.ZodString;
1323
+ filename: z.ZodString;
1324
+ content_type: z.ZodString;
1325
+ size: z.ZodInt;
1326
+ }, z.core.$strip>>>;
1327
+ date_created: z.ZodISODateTime;
1328
+ }, z.core.$strip>>>;
1329
+ }, z.core.$strip>;
486
1330
  export declare const zTokenCreateInput: z.ZodObject<{
487
1331
  name: z.ZodString;
488
1332
  role: z.ZodEnum<{
@@ -577,11 +1421,11 @@ export declare const zUserUpdateInput: z.ZodObject<{
577
1421
  }>>;
578
1422
  }, z.core.$strip>;
579
1423
  export declare const zGetUsageQuery: z.ZodObject<{
580
- granularity: z.ZodOptional<z.ZodEnum<{
1424
+ granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
581
1425
  hourly: "hourly";
582
1426
  daily: "daily";
583
1427
  monthly: "monthly";
584
- }>>;
1428
+ }>>>;
585
1429
  }, z.core.$strip>;
586
1430
  /**
587
1431
  * Usage data with facets for filtering
@@ -649,6 +1493,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
649
1493
  * Returns a single object containing organization contact and billing address details.
650
1494
  */
651
1495
  export declare const zGetContactResponse: z.ZodObject<{
1496
+ type: z.ZodEnum<{
1497
+ business: "business";
1498
+ personal: "personal";
1499
+ }>;
652
1500
  company: z.ZodOptional<z.ZodString>;
653
1501
  address1: z.ZodOptional<z.ZodString>;
654
1502
  address2: z.ZodOptional<z.ZodString>;
@@ -792,6 +1640,10 @@ export declare const zGetContactResponse: z.ZodObject<{
792
1640
  }>>;
793
1641
  }, z.core.$strip>;
794
1642
  export declare const zUpdateContactBody: z.ZodObject<{
1643
+ type: z.ZodEnum<{
1644
+ business: "business";
1645
+ personal: "personal";
1646
+ }>;
795
1647
  company: z.ZodOptional<z.ZodString>;
796
1648
  address1: z.ZodOptional<z.ZodString>;
797
1649
  address2: z.ZodOptional<z.ZodString>;
@@ -938,6 +1790,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
938
1790
  * Successfully updated. Returns updated organization details.
939
1791
  */
940
1792
  export declare const zUpdateContactResponse: z.ZodObject<{
1793
+ type: z.ZodEnum<{
1794
+ business: "business";
1795
+ personal: "personal";
1796
+ }>;
941
1797
  company: z.ZodOptional<z.ZodString>;
942
1798
  address1: z.ZodOptional<z.ZodString>;
943
1799
  address2: z.ZodOptional<z.ZodString>;
@@ -1208,38 +2064,518 @@ export declare const zListFleetsPath: z.ZodObject<{
1208
2064
  */
1209
2065
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1210
2066
  limits: z.ZodOptional<z.ZodObject<{
1211
- cpu: z.ZodNumber;
2067
+ cpu: z.ZodOptional<z.ZodInt>;
1212
2068
  }, z.core.$strip>>;
1213
2069
  gcp: z.ZodOptional<z.ZodObject<{
1214
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1215
- project: z.ZodString;
2070
+ enabled: z.ZodBoolean;
2071
+ project: z.ZodOptional<z.ZodString>;
1216
2072
  }, z.core.$strip>>;
1217
2073
  hetzner: z.ZodOptional<z.ZodObject<{
1218
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1219
- apiKey: z.ZodString;
2074
+ enabled: z.ZodBoolean;
2075
+ apiKey: z.ZodOptional<z.ZodString>;
1220
2076
  }, z.core.$strip>>;
1221
2077
  aws: z.ZodOptional<z.ZodObject<{
1222
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1223
- controllerRoleArn: z.ZodString;
2078
+ enabled: z.ZodBoolean;
2079
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2080
+ }, z.core.$strip>>;
2081
+ constraints: z.ZodOptional<z.ZodObject<{
2082
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2083
+ "on-demand": "on-demand";
2084
+ spot: "spot";
2085
+ }>>>>;
2086
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2087
+ amd64: "amd64";
2088
+ arm64: "arm64";
2089
+ }>>>>;
2090
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2091
+ p3: "p3";
2092
+ cx: "cx";
2093
+ h1: "h1";
2094
+ h3: "h3";
2095
+ a1: "a1";
2096
+ a2: "a2";
2097
+ a3: "a3";
2098
+ a4: "a4";
2099
+ c1: "c1";
2100
+ c2: "c2";
2101
+ c2d: "c2d";
2102
+ c3: "c3";
2103
+ c3d: "c3d";
2104
+ c4: "c4";
2105
+ c4a: "c4a";
2106
+ c4d: "c4d";
2107
+ c5: "c5";
2108
+ c5a: "c5a";
2109
+ c5ad: "c5ad";
2110
+ c5d: "c5d";
2111
+ c5n: "c5n";
2112
+ c6a: "c6a";
2113
+ c6g: "c6g";
2114
+ c6gd: "c6gd";
2115
+ c6gn: "c6gn";
2116
+ c6i: "c6i";
2117
+ c6id: "c6id";
2118
+ c6in: "c6in";
2119
+ c7a: "c7a";
2120
+ c7g: "c7g";
2121
+ c7gd: "c7gd";
2122
+ c7gn: "c7gn";
2123
+ c7i: "c7i";
2124
+ "c7i-flex": "c7i-flex";
2125
+ c8g: "c8g";
2126
+ c8gd: "c8gd";
2127
+ cax: "cax";
2128
+ ccx: "ccx";
2129
+ cpx: "cpx";
2130
+ d2: "d2";
2131
+ d3: "d3";
2132
+ d3en: "d3en";
2133
+ dl1: "dl1";
2134
+ dl2q: "dl2q";
2135
+ e2: "e2";
2136
+ f1: "f1";
2137
+ f2: "f2";
2138
+ g1: "g1";
2139
+ g2: "g2";
2140
+ g4ad: "g4ad";
2141
+ g4dn: "g4dn";
2142
+ g5: "g5";
2143
+ g5g: "g5g";
2144
+ g6: "g6";
2145
+ g6e: "g6e";
2146
+ gr6: "gr6";
2147
+ hpc6a: "hpc6a";
2148
+ hpc6id: "hpc6id";
2149
+ hpc7a: "hpc7a";
2150
+ hpc7g: "hpc7g";
2151
+ i2: "i2";
2152
+ i3: "i3";
2153
+ i3en: "i3en";
2154
+ i4g: "i4g";
2155
+ i4i: "i4i";
2156
+ i7i: "i7i";
2157
+ i7ie: "i7ie";
2158
+ i8g: "i8g";
2159
+ im4gn: "im4gn";
2160
+ inf1: "inf1";
2161
+ inf2: "inf2";
2162
+ is4gen: "is4gen";
2163
+ m1: "m1";
2164
+ m2: "m2";
2165
+ m3: "m3";
2166
+ m4: "m4";
2167
+ m5: "m5";
2168
+ m5a: "m5a";
2169
+ m5ad: "m5ad";
2170
+ m5d: "m5d";
2171
+ m5dn: "m5dn";
2172
+ m5n: "m5n";
2173
+ m5zn: "m5zn";
2174
+ m6a: "m6a";
2175
+ m6g: "m6g";
2176
+ m6gd: "m6gd";
2177
+ m6i: "m6i";
2178
+ m6id: "m6id";
2179
+ m6idn: "m6idn";
2180
+ m6in: "m6in";
2181
+ m7a: "m7a";
2182
+ m7g: "m7g";
2183
+ m7gd: "m7gd";
2184
+ m7i: "m7i";
2185
+ "m7i-flex": "m7i-flex";
2186
+ m8g: "m8g";
2187
+ m8gd: "m8gd";
2188
+ n1: "n1";
2189
+ n2: "n2";
2190
+ n2d: "n2d";
2191
+ n4: "n4";
2192
+ p3dn: "p3dn";
2193
+ p4d: "p4d";
2194
+ p4de: "p4de";
2195
+ p5: "p5";
2196
+ p5e: "p5e";
2197
+ p5en: "p5en";
2198
+ "p6-b200": "p6-b200";
2199
+ r3: "r3";
2200
+ r4: "r4";
2201
+ r5: "r5";
2202
+ r5a: "r5a";
2203
+ r5ad: "r5ad";
2204
+ r5b: "r5b";
2205
+ r5d: "r5d";
2206
+ r5dn: "r5dn";
2207
+ r5n: "r5n";
2208
+ r6a: "r6a";
2209
+ r6g: "r6g";
2210
+ r6gd: "r6gd";
2211
+ r6i: "r6i";
2212
+ r6id: "r6id";
2213
+ r6idn: "r6idn";
2214
+ r6in: "r6in";
2215
+ r7a: "r7a";
2216
+ r7g: "r7g";
2217
+ r7gd: "r7gd";
2218
+ r7i: "r7i";
2219
+ r7iz: "r7iz";
2220
+ r8g: "r8g";
2221
+ r8gd: "r8gd";
2222
+ t2: "t2";
2223
+ t2a: "t2a";
2224
+ t2d: "t2d";
2225
+ t3: "t3";
2226
+ t3a: "t3a";
2227
+ t4g: "t4g";
2228
+ trn1: "trn1";
2229
+ trn1n: "trn1n";
2230
+ "u-3tb1": "u-3tb1";
2231
+ "u-6tb1": "u-6tb1";
2232
+ "u7i-12tb": "u7i-12tb";
2233
+ "u7i-6tb": "u7i-6tb";
2234
+ "u7i-8tb": "u7i-8tb";
2235
+ "u7in-16tb": "u7in-16tb";
2236
+ "u7in-24tb": "u7in-24tb";
2237
+ "u7in-32tb": "u7in-32tb";
2238
+ vt1: "vt1";
2239
+ x1: "x1";
2240
+ x1e: "x1e";
2241
+ x2gd: "x2gd";
2242
+ x2idn: "x2idn";
2243
+ x2iedn: "x2iedn";
2244
+ x2iezn: "x2iezn";
2245
+ x4: "x4";
2246
+ x8g: "x8g";
2247
+ z1d: "z1d";
2248
+ z3: "z3";
2249
+ }>>>;
2250
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2251
+ "africa-south1": "africa-south1";
2252
+ "ap-northeast-1": "ap-northeast-1";
2253
+ "ap-northeast-2": "ap-northeast-2";
2254
+ "ap-northeast-3": "ap-northeast-3";
2255
+ "ap-south-1": "ap-south-1";
2256
+ "ap-southeast-1": "ap-southeast-1";
2257
+ "ap-southeast-2": "ap-southeast-2";
2258
+ ash: "ash";
2259
+ "asia-east1": "asia-east1";
2260
+ "asia-east2": "asia-east2";
2261
+ "asia-northeast1": "asia-northeast1";
2262
+ "asia-northeast2": "asia-northeast2";
2263
+ "asia-northeast3": "asia-northeast3";
2264
+ "asia-south1": "asia-south1";
2265
+ "asia-south2": "asia-south2";
2266
+ "asia-southeast1": "asia-southeast1";
2267
+ "asia-southeast2": "asia-southeast2";
2268
+ "australia-southeast1": "australia-southeast1";
2269
+ "australia-southeast2": "australia-southeast2";
2270
+ "ca-central-1": "ca-central-1";
2271
+ "eu-central-1": "eu-central-1";
2272
+ "eu-central-2": "eu-central-2";
2273
+ "eu-north-1": "eu-north-1";
2274
+ "eu-west-1": "eu-west-1";
2275
+ "eu-west-2": "eu-west-2";
2276
+ "eu-west-3": "eu-west-3";
2277
+ "europe-central2": "europe-central2";
2278
+ "europe-north1": "europe-north1";
2279
+ "europe-southwest1": "europe-southwest1";
2280
+ "europe-west1": "europe-west1";
2281
+ "europe-west10": "europe-west10";
2282
+ "europe-west12": "europe-west12";
2283
+ "europe-west2": "europe-west2";
2284
+ "europe-west3": "europe-west3";
2285
+ "europe-west4": "europe-west4";
2286
+ "europe-west6": "europe-west6";
2287
+ "europe-west8": "europe-west8";
2288
+ "europe-west9": "europe-west9";
2289
+ fsn1: "fsn1";
2290
+ hel1: "hel1";
2291
+ hil: "hil";
2292
+ "me-central1": "me-central1";
2293
+ "me-central2": "me-central2";
2294
+ "me-west1": "me-west1";
2295
+ nbg1: "nbg1";
2296
+ "northamerica-northeast1": "northamerica-northeast1";
2297
+ "northamerica-northeast2": "northamerica-northeast2";
2298
+ "sa-east-1": "sa-east-1";
2299
+ sin: "sin";
2300
+ "southamerica-east1": "southamerica-east1";
2301
+ "southamerica-west1": "southamerica-west1";
2302
+ "us-central1": "us-central1";
2303
+ "us-east-1": "us-east-1";
2304
+ "us-east-2": "us-east-2";
2305
+ "us-east1": "us-east1";
2306
+ "us-east4": "us-east4";
2307
+ "us-east5": "us-east5";
2308
+ "us-south1": "us-south1";
2309
+ "us-west-1": "us-west-1";
2310
+ "us-west-2": "us-west-2";
2311
+ "us-west1": "us-west1";
2312
+ "us-west2": "us-west2";
2313
+ "us-west3": "us-west3";
2314
+ "us-west4": "us-west4";
2315
+ }>>>;
1224
2316
  }, z.core.$strip>>;
2317
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2318
+ aggressive: "aggressive";
2319
+ conservative: "conservative";
2320
+ }>>;
1225
2321
  id: z.ZodString;
1226
2322
  }, z.core.$strip>>;
1227
2323
  export declare const zCreateFleetBody: z.ZodObject<{
1228
2324
  limits: z.ZodOptional<z.ZodObject<{
1229
- cpu: z.ZodNumber;
2325
+ cpu: z.ZodOptional<z.ZodInt>;
1230
2326
  }, z.core.$strip>>;
1231
2327
  gcp: z.ZodOptional<z.ZodObject<{
1232
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1233
- project: z.ZodString;
2328
+ enabled: z.ZodBoolean;
2329
+ project: z.ZodOptional<z.ZodString>;
1234
2330
  }, z.core.$strip>>;
1235
2331
  hetzner: z.ZodOptional<z.ZodObject<{
1236
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1237
- apiKey: z.ZodString;
2332
+ enabled: z.ZodBoolean;
2333
+ apiKey: z.ZodOptional<z.ZodString>;
1238
2334
  }, z.core.$strip>>;
1239
2335
  aws: z.ZodOptional<z.ZodObject<{
1240
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1241
- controllerRoleArn: z.ZodString;
2336
+ enabled: z.ZodBoolean;
2337
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2338
+ }, z.core.$strip>>;
2339
+ constraints: z.ZodOptional<z.ZodObject<{
2340
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2341
+ "on-demand": "on-demand";
2342
+ spot: "spot";
2343
+ }>>>>;
2344
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2345
+ amd64: "amd64";
2346
+ arm64: "arm64";
2347
+ }>>>>;
2348
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2349
+ p3: "p3";
2350
+ cx: "cx";
2351
+ h1: "h1";
2352
+ h3: "h3";
2353
+ a1: "a1";
2354
+ a2: "a2";
2355
+ a3: "a3";
2356
+ a4: "a4";
2357
+ c1: "c1";
2358
+ c2: "c2";
2359
+ c2d: "c2d";
2360
+ c3: "c3";
2361
+ c3d: "c3d";
2362
+ c4: "c4";
2363
+ c4a: "c4a";
2364
+ c4d: "c4d";
2365
+ c5: "c5";
2366
+ c5a: "c5a";
2367
+ c5ad: "c5ad";
2368
+ c5d: "c5d";
2369
+ c5n: "c5n";
2370
+ c6a: "c6a";
2371
+ c6g: "c6g";
2372
+ c6gd: "c6gd";
2373
+ c6gn: "c6gn";
2374
+ c6i: "c6i";
2375
+ c6id: "c6id";
2376
+ c6in: "c6in";
2377
+ c7a: "c7a";
2378
+ c7g: "c7g";
2379
+ c7gd: "c7gd";
2380
+ c7gn: "c7gn";
2381
+ c7i: "c7i";
2382
+ "c7i-flex": "c7i-flex";
2383
+ c8g: "c8g";
2384
+ c8gd: "c8gd";
2385
+ cax: "cax";
2386
+ ccx: "ccx";
2387
+ cpx: "cpx";
2388
+ d2: "d2";
2389
+ d3: "d3";
2390
+ d3en: "d3en";
2391
+ dl1: "dl1";
2392
+ dl2q: "dl2q";
2393
+ e2: "e2";
2394
+ f1: "f1";
2395
+ f2: "f2";
2396
+ g1: "g1";
2397
+ g2: "g2";
2398
+ g4ad: "g4ad";
2399
+ g4dn: "g4dn";
2400
+ g5: "g5";
2401
+ g5g: "g5g";
2402
+ g6: "g6";
2403
+ g6e: "g6e";
2404
+ gr6: "gr6";
2405
+ hpc6a: "hpc6a";
2406
+ hpc6id: "hpc6id";
2407
+ hpc7a: "hpc7a";
2408
+ hpc7g: "hpc7g";
2409
+ i2: "i2";
2410
+ i3: "i3";
2411
+ i3en: "i3en";
2412
+ i4g: "i4g";
2413
+ i4i: "i4i";
2414
+ i7i: "i7i";
2415
+ i7ie: "i7ie";
2416
+ i8g: "i8g";
2417
+ im4gn: "im4gn";
2418
+ inf1: "inf1";
2419
+ inf2: "inf2";
2420
+ is4gen: "is4gen";
2421
+ m1: "m1";
2422
+ m2: "m2";
2423
+ m3: "m3";
2424
+ m4: "m4";
2425
+ m5: "m5";
2426
+ m5a: "m5a";
2427
+ m5ad: "m5ad";
2428
+ m5d: "m5d";
2429
+ m5dn: "m5dn";
2430
+ m5n: "m5n";
2431
+ m5zn: "m5zn";
2432
+ m6a: "m6a";
2433
+ m6g: "m6g";
2434
+ m6gd: "m6gd";
2435
+ m6i: "m6i";
2436
+ m6id: "m6id";
2437
+ m6idn: "m6idn";
2438
+ m6in: "m6in";
2439
+ m7a: "m7a";
2440
+ m7g: "m7g";
2441
+ m7gd: "m7gd";
2442
+ m7i: "m7i";
2443
+ "m7i-flex": "m7i-flex";
2444
+ m8g: "m8g";
2445
+ m8gd: "m8gd";
2446
+ n1: "n1";
2447
+ n2: "n2";
2448
+ n2d: "n2d";
2449
+ n4: "n4";
2450
+ p3dn: "p3dn";
2451
+ p4d: "p4d";
2452
+ p4de: "p4de";
2453
+ p5: "p5";
2454
+ p5e: "p5e";
2455
+ p5en: "p5en";
2456
+ "p6-b200": "p6-b200";
2457
+ r3: "r3";
2458
+ r4: "r4";
2459
+ r5: "r5";
2460
+ r5a: "r5a";
2461
+ r5ad: "r5ad";
2462
+ r5b: "r5b";
2463
+ r5d: "r5d";
2464
+ r5dn: "r5dn";
2465
+ r5n: "r5n";
2466
+ r6a: "r6a";
2467
+ r6g: "r6g";
2468
+ r6gd: "r6gd";
2469
+ r6i: "r6i";
2470
+ r6id: "r6id";
2471
+ r6idn: "r6idn";
2472
+ r6in: "r6in";
2473
+ r7a: "r7a";
2474
+ r7g: "r7g";
2475
+ r7gd: "r7gd";
2476
+ r7i: "r7i";
2477
+ r7iz: "r7iz";
2478
+ r8g: "r8g";
2479
+ r8gd: "r8gd";
2480
+ t2: "t2";
2481
+ t2a: "t2a";
2482
+ t2d: "t2d";
2483
+ t3: "t3";
2484
+ t3a: "t3a";
2485
+ t4g: "t4g";
2486
+ trn1: "trn1";
2487
+ trn1n: "trn1n";
2488
+ "u-3tb1": "u-3tb1";
2489
+ "u-6tb1": "u-6tb1";
2490
+ "u7i-12tb": "u7i-12tb";
2491
+ "u7i-6tb": "u7i-6tb";
2492
+ "u7i-8tb": "u7i-8tb";
2493
+ "u7in-16tb": "u7in-16tb";
2494
+ "u7in-24tb": "u7in-24tb";
2495
+ "u7in-32tb": "u7in-32tb";
2496
+ vt1: "vt1";
2497
+ x1: "x1";
2498
+ x1e: "x1e";
2499
+ x2gd: "x2gd";
2500
+ x2idn: "x2idn";
2501
+ x2iedn: "x2iedn";
2502
+ x2iezn: "x2iezn";
2503
+ x4: "x4";
2504
+ x8g: "x8g";
2505
+ z1d: "z1d";
2506
+ z3: "z3";
2507
+ }>>>;
2508
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2509
+ "africa-south1": "africa-south1";
2510
+ "ap-northeast-1": "ap-northeast-1";
2511
+ "ap-northeast-2": "ap-northeast-2";
2512
+ "ap-northeast-3": "ap-northeast-3";
2513
+ "ap-south-1": "ap-south-1";
2514
+ "ap-southeast-1": "ap-southeast-1";
2515
+ "ap-southeast-2": "ap-southeast-2";
2516
+ ash: "ash";
2517
+ "asia-east1": "asia-east1";
2518
+ "asia-east2": "asia-east2";
2519
+ "asia-northeast1": "asia-northeast1";
2520
+ "asia-northeast2": "asia-northeast2";
2521
+ "asia-northeast3": "asia-northeast3";
2522
+ "asia-south1": "asia-south1";
2523
+ "asia-south2": "asia-south2";
2524
+ "asia-southeast1": "asia-southeast1";
2525
+ "asia-southeast2": "asia-southeast2";
2526
+ "australia-southeast1": "australia-southeast1";
2527
+ "australia-southeast2": "australia-southeast2";
2528
+ "ca-central-1": "ca-central-1";
2529
+ "eu-central-1": "eu-central-1";
2530
+ "eu-central-2": "eu-central-2";
2531
+ "eu-north-1": "eu-north-1";
2532
+ "eu-west-1": "eu-west-1";
2533
+ "eu-west-2": "eu-west-2";
2534
+ "eu-west-3": "eu-west-3";
2535
+ "europe-central2": "europe-central2";
2536
+ "europe-north1": "europe-north1";
2537
+ "europe-southwest1": "europe-southwest1";
2538
+ "europe-west1": "europe-west1";
2539
+ "europe-west10": "europe-west10";
2540
+ "europe-west12": "europe-west12";
2541
+ "europe-west2": "europe-west2";
2542
+ "europe-west3": "europe-west3";
2543
+ "europe-west4": "europe-west4";
2544
+ "europe-west6": "europe-west6";
2545
+ "europe-west8": "europe-west8";
2546
+ "europe-west9": "europe-west9";
2547
+ fsn1: "fsn1";
2548
+ hel1: "hel1";
2549
+ hil: "hil";
2550
+ "me-central1": "me-central1";
2551
+ "me-central2": "me-central2";
2552
+ "me-west1": "me-west1";
2553
+ nbg1: "nbg1";
2554
+ "northamerica-northeast1": "northamerica-northeast1";
2555
+ "northamerica-northeast2": "northamerica-northeast2";
2556
+ "sa-east-1": "sa-east-1";
2557
+ sin: "sin";
2558
+ "southamerica-east1": "southamerica-east1";
2559
+ "southamerica-west1": "southamerica-west1";
2560
+ "us-central1": "us-central1";
2561
+ "us-east-1": "us-east-1";
2562
+ "us-east-2": "us-east-2";
2563
+ "us-east1": "us-east1";
2564
+ "us-east4": "us-east4";
2565
+ "us-east5": "us-east5";
2566
+ "us-south1": "us-south1";
2567
+ "us-west-1": "us-west-1";
2568
+ "us-west-2": "us-west-2";
2569
+ "us-west1": "us-west1";
2570
+ "us-west2": "us-west2";
2571
+ "us-west3": "us-west3";
2572
+ "us-west4": "us-west4";
2573
+ }>>>;
1242
2574
  }, z.core.$strip>>;
2575
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2576
+ aggressive: "aggressive";
2577
+ conservative: "conservative";
2578
+ }>>>;
1243
2579
  id: z.ZodString;
1244
2580
  }, z.core.$strip>;
1245
2581
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1266,38 +2602,518 @@ export declare const zGetFleetPath: z.ZodObject<{
1266
2602
  */
1267
2603
  export declare const zGetFleetResponse: z.ZodObject<{
1268
2604
  limits: z.ZodOptional<z.ZodObject<{
1269
- cpu: z.ZodNumber;
2605
+ cpu: z.ZodOptional<z.ZodInt>;
1270
2606
  }, z.core.$strip>>;
1271
2607
  gcp: z.ZodOptional<z.ZodObject<{
1272
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1273
- project: z.ZodString;
2608
+ enabled: z.ZodBoolean;
2609
+ project: z.ZodOptional<z.ZodString>;
1274
2610
  }, z.core.$strip>>;
1275
2611
  hetzner: z.ZodOptional<z.ZodObject<{
1276
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1277
- apiKey: z.ZodString;
2612
+ enabled: z.ZodBoolean;
2613
+ apiKey: z.ZodOptional<z.ZodString>;
1278
2614
  }, z.core.$strip>>;
1279
2615
  aws: z.ZodOptional<z.ZodObject<{
1280
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1281
- controllerRoleArn: z.ZodString;
2616
+ enabled: z.ZodBoolean;
2617
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2618
+ }, z.core.$strip>>;
2619
+ constraints: z.ZodOptional<z.ZodObject<{
2620
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2621
+ "on-demand": "on-demand";
2622
+ spot: "spot";
2623
+ }>>>>;
2624
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2625
+ amd64: "amd64";
2626
+ arm64: "arm64";
2627
+ }>>>>;
2628
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2629
+ p3: "p3";
2630
+ cx: "cx";
2631
+ h1: "h1";
2632
+ h3: "h3";
2633
+ a1: "a1";
2634
+ a2: "a2";
2635
+ a3: "a3";
2636
+ a4: "a4";
2637
+ c1: "c1";
2638
+ c2: "c2";
2639
+ c2d: "c2d";
2640
+ c3: "c3";
2641
+ c3d: "c3d";
2642
+ c4: "c4";
2643
+ c4a: "c4a";
2644
+ c4d: "c4d";
2645
+ c5: "c5";
2646
+ c5a: "c5a";
2647
+ c5ad: "c5ad";
2648
+ c5d: "c5d";
2649
+ c5n: "c5n";
2650
+ c6a: "c6a";
2651
+ c6g: "c6g";
2652
+ c6gd: "c6gd";
2653
+ c6gn: "c6gn";
2654
+ c6i: "c6i";
2655
+ c6id: "c6id";
2656
+ c6in: "c6in";
2657
+ c7a: "c7a";
2658
+ c7g: "c7g";
2659
+ c7gd: "c7gd";
2660
+ c7gn: "c7gn";
2661
+ c7i: "c7i";
2662
+ "c7i-flex": "c7i-flex";
2663
+ c8g: "c8g";
2664
+ c8gd: "c8gd";
2665
+ cax: "cax";
2666
+ ccx: "ccx";
2667
+ cpx: "cpx";
2668
+ d2: "d2";
2669
+ d3: "d3";
2670
+ d3en: "d3en";
2671
+ dl1: "dl1";
2672
+ dl2q: "dl2q";
2673
+ e2: "e2";
2674
+ f1: "f1";
2675
+ f2: "f2";
2676
+ g1: "g1";
2677
+ g2: "g2";
2678
+ g4ad: "g4ad";
2679
+ g4dn: "g4dn";
2680
+ g5: "g5";
2681
+ g5g: "g5g";
2682
+ g6: "g6";
2683
+ g6e: "g6e";
2684
+ gr6: "gr6";
2685
+ hpc6a: "hpc6a";
2686
+ hpc6id: "hpc6id";
2687
+ hpc7a: "hpc7a";
2688
+ hpc7g: "hpc7g";
2689
+ i2: "i2";
2690
+ i3: "i3";
2691
+ i3en: "i3en";
2692
+ i4g: "i4g";
2693
+ i4i: "i4i";
2694
+ i7i: "i7i";
2695
+ i7ie: "i7ie";
2696
+ i8g: "i8g";
2697
+ im4gn: "im4gn";
2698
+ inf1: "inf1";
2699
+ inf2: "inf2";
2700
+ is4gen: "is4gen";
2701
+ m1: "m1";
2702
+ m2: "m2";
2703
+ m3: "m3";
2704
+ m4: "m4";
2705
+ m5: "m5";
2706
+ m5a: "m5a";
2707
+ m5ad: "m5ad";
2708
+ m5d: "m5d";
2709
+ m5dn: "m5dn";
2710
+ m5n: "m5n";
2711
+ m5zn: "m5zn";
2712
+ m6a: "m6a";
2713
+ m6g: "m6g";
2714
+ m6gd: "m6gd";
2715
+ m6i: "m6i";
2716
+ m6id: "m6id";
2717
+ m6idn: "m6idn";
2718
+ m6in: "m6in";
2719
+ m7a: "m7a";
2720
+ m7g: "m7g";
2721
+ m7gd: "m7gd";
2722
+ m7i: "m7i";
2723
+ "m7i-flex": "m7i-flex";
2724
+ m8g: "m8g";
2725
+ m8gd: "m8gd";
2726
+ n1: "n1";
2727
+ n2: "n2";
2728
+ n2d: "n2d";
2729
+ n4: "n4";
2730
+ p3dn: "p3dn";
2731
+ p4d: "p4d";
2732
+ p4de: "p4de";
2733
+ p5: "p5";
2734
+ p5e: "p5e";
2735
+ p5en: "p5en";
2736
+ "p6-b200": "p6-b200";
2737
+ r3: "r3";
2738
+ r4: "r4";
2739
+ r5: "r5";
2740
+ r5a: "r5a";
2741
+ r5ad: "r5ad";
2742
+ r5b: "r5b";
2743
+ r5d: "r5d";
2744
+ r5dn: "r5dn";
2745
+ r5n: "r5n";
2746
+ r6a: "r6a";
2747
+ r6g: "r6g";
2748
+ r6gd: "r6gd";
2749
+ r6i: "r6i";
2750
+ r6id: "r6id";
2751
+ r6idn: "r6idn";
2752
+ r6in: "r6in";
2753
+ r7a: "r7a";
2754
+ r7g: "r7g";
2755
+ r7gd: "r7gd";
2756
+ r7i: "r7i";
2757
+ r7iz: "r7iz";
2758
+ r8g: "r8g";
2759
+ r8gd: "r8gd";
2760
+ t2: "t2";
2761
+ t2a: "t2a";
2762
+ t2d: "t2d";
2763
+ t3: "t3";
2764
+ t3a: "t3a";
2765
+ t4g: "t4g";
2766
+ trn1: "trn1";
2767
+ trn1n: "trn1n";
2768
+ "u-3tb1": "u-3tb1";
2769
+ "u-6tb1": "u-6tb1";
2770
+ "u7i-12tb": "u7i-12tb";
2771
+ "u7i-6tb": "u7i-6tb";
2772
+ "u7i-8tb": "u7i-8tb";
2773
+ "u7in-16tb": "u7in-16tb";
2774
+ "u7in-24tb": "u7in-24tb";
2775
+ "u7in-32tb": "u7in-32tb";
2776
+ vt1: "vt1";
2777
+ x1: "x1";
2778
+ x1e: "x1e";
2779
+ x2gd: "x2gd";
2780
+ x2idn: "x2idn";
2781
+ x2iedn: "x2iedn";
2782
+ x2iezn: "x2iezn";
2783
+ x4: "x4";
2784
+ x8g: "x8g";
2785
+ z1d: "z1d";
2786
+ z3: "z3";
2787
+ }>>>;
2788
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2789
+ "africa-south1": "africa-south1";
2790
+ "ap-northeast-1": "ap-northeast-1";
2791
+ "ap-northeast-2": "ap-northeast-2";
2792
+ "ap-northeast-3": "ap-northeast-3";
2793
+ "ap-south-1": "ap-south-1";
2794
+ "ap-southeast-1": "ap-southeast-1";
2795
+ "ap-southeast-2": "ap-southeast-2";
2796
+ ash: "ash";
2797
+ "asia-east1": "asia-east1";
2798
+ "asia-east2": "asia-east2";
2799
+ "asia-northeast1": "asia-northeast1";
2800
+ "asia-northeast2": "asia-northeast2";
2801
+ "asia-northeast3": "asia-northeast3";
2802
+ "asia-south1": "asia-south1";
2803
+ "asia-south2": "asia-south2";
2804
+ "asia-southeast1": "asia-southeast1";
2805
+ "asia-southeast2": "asia-southeast2";
2806
+ "australia-southeast1": "australia-southeast1";
2807
+ "australia-southeast2": "australia-southeast2";
2808
+ "ca-central-1": "ca-central-1";
2809
+ "eu-central-1": "eu-central-1";
2810
+ "eu-central-2": "eu-central-2";
2811
+ "eu-north-1": "eu-north-1";
2812
+ "eu-west-1": "eu-west-1";
2813
+ "eu-west-2": "eu-west-2";
2814
+ "eu-west-3": "eu-west-3";
2815
+ "europe-central2": "europe-central2";
2816
+ "europe-north1": "europe-north1";
2817
+ "europe-southwest1": "europe-southwest1";
2818
+ "europe-west1": "europe-west1";
2819
+ "europe-west10": "europe-west10";
2820
+ "europe-west12": "europe-west12";
2821
+ "europe-west2": "europe-west2";
2822
+ "europe-west3": "europe-west3";
2823
+ "europe-west4": "europe-west4";
2824
+ "europe-west6": "europe-west6";
2825
+ "europe-west8": "europe-west8";
2826
+ "europe-west9": "europe-west9";
2827
+ fsn1: "fsn1";
2828
+ hel1: "hel1";
2829
+ hil: "hil";
2830
+ "me-central1": "me-central1";
2831
+ "me-central2": "me-central2";
2832
+ "me-west1": "me-west1";
2833
+ nbg1: "nbg1";
2834
+ "northamerica-northeast1": "northamerica-northeast1";
2835
+ "northamerica-northeast2": "northamerica-northeast2";
2836
+ "sa-east-1": "sa-east-1";
2837
+ sin: "sin";
2838
+ "southamerica-east1": "southamerica-east1";
2839
+ "southamerica-west1": "southamerica-west1";
2840
+ "us-central1": "us-central1";
2841
+ "us-east-1": "us-east-1";
2842
+ "us-east-2": "us-east-2";
2843
+ "us-east1": "us-east1";
2844
+ "us-east4": "us-east4";
2845
+ "us-east5": "us-east5";
2846
+ "us-south1": "us-south1";
2847
+ "us-west-1": "us-west-1";
2848
+ "us-west-2": "us-west-2";
2849
+ "us-west1": "us-west1";
2850
+ "us-west2": "us-west2";
2851
+ "us-west3": "us-west3";
2852
+ "us-west4": "us-west4";
2853
+ }>>>;
1282
2854
  }, z.core.$strip>>;
2855
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2856
+ aggressive: "aggressive";
2857
+ conservative: "conservative";
2858
+ }>>;
1283
2859
  id: z.ZodString;
1284
2860
  }, z.core.$strip>;
1285
2861
  export declare const zUpdateFleetBody: z.ZodObject<{
1286
2862
  limits: z.ZodOptional<z.ZodObject<{
1287
- cpu: z.ZodNumber;
2863
+ cpu: z.ZodOptional<z.ZodInt>;
1288
2864
  }, z.core.$strip>>;
1289
2865
  gcp: z.ZodOptional<z.ZodObject<{
1290
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1291
- project: z.ZodString;
2866
+ enabled: z.ZodBoolean;
2867
+ project: z.ZodOptional<z.ZodString>;
1292
2868
  }, z.core.$strip>>;
1293
2869
  hetzner: z.ZodOptional<z.ZodObject<{
1294
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1295
- apiKey: z.ZodString;
2870
+ enabled: z.ZodBoolean;
2871
+ apiKey: z.ZodOptional<z.ZodString>;
1296
2872
  }, z.core.$strip>>;
1297
2873
  aws: z.ZodOptional<z.ZodObject<{
1298
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1299
- controllerRoleArn: z.ZodString;
2874
+ enabled: z.ZodBoolean;
2875
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2876
+ }, z.core.$strip>>;
2877
+ constraints: z.ZodOptional<z.ZodObject<{
2878
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2879
+ "on-demand": "on-demand";
2880
+ spot: "spot";
2881
+ }>>>;
2882
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2883
+ amd64: "amd64";
2884
+ arm64: "arm64";
2885
+ }>>>;
2886
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2887
+ p3: "p3";
2888
+ cx: "cx";
2889
+ h1: "h1";
2890
+ h3: "h3";
2891
+ a1: "a1";
2892
+ a2: "a2";
2893
+ a3: "a3";
2894
+ a4: "a4";
2895
+ c1: "c1";
2896
+ c2: "c2";
2897
+ c2d: "c2d";
2898
+ c3: "c3";
2899
+ c3d: "c3d";
2900
+ c4: "c4";
2901
+ c4a: "c4a";
2902
+ c4d: "c4d";
2903
+ c5: "c5";
2904
+ c5a: "c5a";
2905
+ c5ad: "c5ad";
2906
+ c5d: "c5d";
2907
+ c5n: "c5n";
2908
+ c6a: "c6a";
2909
+ c6g: "c6g";
2910
+ c6gd: "c6gd";
2911
+ c6gn: "c6gn";
2912
+ c6i: "c6i";
2913
+ c6id: "c6id";
2914
+ c6in: "c6in";
2915
+ c7a: "c7a";
2916
+ c7g: "c7g";
2917
+ c7gd: "c7gd";
2918
+ c7gn: "c7gn";
2919
+ c7i: "c7i";
2920
+ "c7i-flex": "c7i-flex";
2921
+ c8g: "c8g";
2922
+ c8gd: "c8gd";
2923
+ cax: "cax";
2924
+ ccx: "ccx";
2925
+ cpx: "cpx";
2926
+ d2: "d2";
2927
+ d3: "d3";
2928
+ d3en: "d3en";
2929
+ dl1: "dl1";
2930
+ dl2q: "dl2q";
2931
+ e2: "e2";
2932
+ f1: "f1";
2933
+ f2: "f2";
2934
+ g1: "g1";
2935
+ g2: "g2";
2936
+ g4ad: "g4ad";
2937
+ g4dn: "g4dn";
2938
+ g5: "g5";
2939
+ g5g: "g5g";
2940
+ g6: "g6";
2941
+ g6e: "g6e";
2942
+ gr6: "gr6";
2943
+ hpc6a: "hpc6a";
2944
+ hpc6id: "hpc6id";
2945
+ hpc7a: "hpc7a";
2946
+ hpc7g: "hpc7g";
2947
+ i2: "i2";
2948
+ i3: "i3";
2949
+ i3en: "i3en";
2950
+ i4g: "i4g";
2951
+ i4i: "i4i";
2952
+ i7i: "i7i";
2953
+ i7ie: "i7ie";
2954
+ i8g: "i8g";
2955
+ im4gn: "im4gn";
2956
+ inf1: "inf1";
2957
+ inf2: "inf2";
2958
+ is4gen: "is4gen";
2959
+ m1: "m1";
2960
+ m2: "m2";
2961
+ m3: "m3";
2962
+ m4: "m4";
2963
+ m5: "m5";
2964
+ m5a: "m5a";
2965
+ m5ad: "m5ad";
2966
+ m5d: "m5d";
2967
+ m5dn: "m5dn";
2968
+ m5n: "m5n";
2969
+ m5zn: "m5zn";
2970
+ m6a: "m6a";
2971
+ m6g: "m6g";
2972
+ m6gd: "m6gd";
2973
+ m6i: "m6i";
2974
+ m6id: "m6id";
2975
+ m6idn: "m6idn";
2976
+ m6in: "m6in";
2977
+ m7a: "m7a";
2978
+ m7g: "m7g";
2979
+ m7gd: "m7gd";
2980
+ m7i: "m7i";
2981
+ "m7i-flex": "m7i-flex";
2982
+ m8g: "m8g";
2983
+ m8gd: "m8gd";
2984
+ n1: "n1";
2985
+ n2: "n2";
2986
+ n2d: "n2d";
2987
+ n4: "n4";
2988
+ p3dn: "p3dn";
2989
+ p4d: "p4d";
2990
+ p4de: "p4de";
2991
+ p5: "p5";
2992
+ p5e: "p5e";
2993
+ p5en: "p5en";
2994
+ "p6-b200": "p6-b200";
2995
+ r3: "r3";
2996
+ r4: "r4";
2997
+ r5: "r5";
2998
+ r5a: "r5a";
2999
+ r5ad: "r5ad";
3000
+ r5b: "r5b";
3001
+ r5d: "r5d";
3002
+ r5dn: "r5dn";
3003
+ r5n: "r5n";
3004
+ r6a: "r6a";
3005
+ r6g: "r6g";
3006
+ r6gd: "r6gd";
3007
+ r6i: "r6i";
3008
+ r6id: "r6id";
3009
+ r6idn: "r6idn";
3010
+ r6in: "r6in";
3011
+ r7a: "r7a";
3012
+ r7g: "r7g";
3013
+ r7gd: "r7gd";
3014
+ r7i: "r7i";
3015
+ r7iz: "r7iz";
3016
+ r8g: "r8g";
3017
+ r8gd: "r8gd";
3018
+ t2: "t2";
3019
+ t2a: "t2a";
3020
+ t2d: "t2d";
3021
+ t3: "t3";
3022
+ t3a: "t3a";
3023
+ t4g: "t4g";
3024
+ trn1: "trn1";
3025
+ trn1n: "trn1n";
3026
+ "u-3tb1": "u-3tb1";
3027
+ "u-6tb1": "u-6tb1";
3028
+ "u7i-12tb": "u7i-12tb";
3029
+ "u7i-6tb": "u7i-6tb";
3030
+ "u7i-8tb": "u7i-8tb";
3031
+ "u7in-16tb": "u7in-16tb";
3032
+ "u7in-24tb": "u7in-24tb";
3033
+ "u7in-32tb": "u7in-32tb";
3034
+ vt1: "vt1";
3035
+ x1: "x1";
3036
+ x1e: "x1e";
3037
+ x2gd: "x2gd";
3038
+ x2idn: "x2idn";
3039
+ x2iedn: "x2iedn";
3040
+ x2iezn: "x2iezn";
3041
+ x4: "x4";
3042
+ x8g: "x8g";
3043
+ z1d: "z1d";
3044
+ z3: "z3";
3045
+ }>>>;
3046
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3047
+ "africa-south1": "africa-south1";
3048
+ "ap-northeast-1": "ap-northeast-1";
3049
+ "ap-northeast-2": "ap-northeast-2";
3050
+ "ap-northeast-3": "ap-northeast-3";
3051
+ "ap-south-1": "ap-south-1";
3052
+ "ap-southeast-1": "ap-southeast-1";
3053
+ "ap-southeast-2": "ap-southeast-2";
3054
+ ash: "ash";
3055
+ "asia-east1": "asia-east1";
3056
+ "asia-east2": "asia-east2";
3057
+ "asia-northeast1": "asia-northeast1";
3058
+ "asia-northeast2": "asia-northeast2";
3059
+ "asia-northeast3": "asia-northeast3";
3060
+ "asia-south1": "asia-south1";
3061
+ "asia-south2": "asia-south2";
3062
+ "asia-southeast1": "asia-southeast1";
3063
+ "asia-southeast2": "asia-southeast2";
3064
+ "australia-southeast1": "australia-southeast1";
3065
+ "australia-southeast2": "australia-southeast2";
3066
+ "ca-central-1": "ca-central-1";
3067
+ "eu-central-1": "eu-central-1";
3068
+ "eu-central-2": "eu-central-2";
3069
+ "eu-north-1": "eu-north-1";
3070
+ "eu-west-1": "eu-west-1";
3071
+ "eu-west-2": "eu-west-2";
3072
+ "eu-west-3": "eu-west-3";
3073
+ "europe-central2": "europe-central2";
3074
+ "europe-north1": "europe-north1";
3075
+ "europe-southwest1": "europe-southwest1";
3076
+ "europe-west1": "europe-west1";
3077
+ "europe-west10": "europe-west10";
3078
+ "europe-west12": "europe-west12";
3079
+ "europe-west2": "europe-west2";
3080
+ "europe-west3": "europe-west3";
3081
+ "europe-west4": "europe-west4";
3082
+ "europe-west6": "europe-west6";
3083
+ "europe-west8": "europe-west8";
3084
+ "europe-west9": "europe-west9";
3085
+ fsn1: "fsn1";
3086
+ hel1: "hel1";
3087
+ hil: "hil";
3088
+ "me-central1": "me-central1";
3089
+ "me-central2": "me-central2";
3090
+ "me-west1": "me-west1";
3091
+ nbg1: "nbg1";
3092
+ "northamerica-northeast1": "northamerica-northeast1";
3093
+ "northamerica-northeast2": "northamerica-northeast2";
3094
+ "sa-east-1": "sa-east-1";
3095
+ sin: "sin";
3096
+ "southamerica-east1": "southamerica-east1";
3097
+ "southamerica-west1": "southamerica-west1";
3098
+ "us-central1": "us-central1";
3099
+ "us-east-1": "us-east-1";
3100
+ "us-east-2": "us-east-2";
3101
+ "us-east1": "us-east1";
3102
+ "us-east4": "us-east4";
3103
+ "us-east5": "us-east5";
3104
+ "us-south1": "us-south1";
3105
+ "us-west-1": "us-west-1";
3106
+ "us-west-2": "us-west-2";
3107
+ "us-west1": "us-west1";
3108
+ "us-west2": "us-west2";
3109
+ "us-west3": "us-west3";
3110
+ "us-west4": "us-west4";
3111
+ }>>>;
1300
3112
  }, z.core.$strip>>;
3113
+ scalingProfile: z.ZodEnum<{
3114
+ aggressive: "aggressive";
3115
+ conservative: "conservative";
3116
+ }>;
1301
3117
  }, z.core.$strip>;
1302
3118
  export declare const zUpdateFleetPath: z.ZodObject<{
1303
3119
  cluster_id: z.ZodString;
@@ -1319,12 +3135,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1319
3135
  basic: "basic";
1320
3136
  pro: "pro";
1321
3137
  }>;
1322
- region: z.ZodOptional<z.ZodEnum<{
3138
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1323
3139
  "staging-1a": "staging-1a";
1324
3140
  "northamerica-central-1": "northamerica-central-1";
1325
3141
  "europe-central-1a": "europe-central-1a";
1326
3142
  "northamerica-central-1a": "northamerica-central-1a";
1327
- }>>;
3143
+ }>>>;
1328
3144
  id: z.ZodUUID;
1329
3145
  status: z.ZodEnum<{
1330
3146
  deleted: "deleted";
@@ -1338,6 +3154,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1338
3154
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1339
3155
  "": "";
1340
3156
  }>]>>;
3157
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3158
+ "": "";
3159
+ }>]>>;
1341
3160
  certificate_ca: z.ZodOptional<z.ZodString>;
1342
3161
  version_current: z.ZodOptional<z.ZodString>;
1343
3162
  created_at: z.ZodOptional<z.ZodString>;
@@ -1351,18 +3170,18 @@ export declare const zCreateClusterBody: z.ZodObject<{
1351
3170
  basic: "basic";
1352
3171
  pro: "pro";
1353
3172
  }>;
1354
- region: z.ZodOptional<z.ZodEnum<{
3173
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1355
3174
  "staging-1a": "staging-1a";
1356
3175
  "northamerica-central-1": "northamerica-central-1";
1357
3176
  "europe-central-1a": "europe-central-1a";
1358
3177
  "northamerica-central-1a": "northamerica-central-1a";
1359
- }>>;
1360
- version_channel: z.ZodOptional<z.ZodEnum<{
3178
+ }>>>;
3179
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1361
3180
  "1.x.x-cfke.x": "1.x.x-cfke.x";
1362
3181
  "1.31.x-cfke.x": "1.31.x-cfke.x";
1363
3182
  "1.32.x-cfke.x": "1.32.x-cfke.x";
1364
3183
  "1.33.x-cfke.x": "1.33.x-cfke.x";
1365
- }>>;
3184
+ }>>>;
1366
3185
  }, z.core.$strip>;
1367
3186
  /**
1368
3187
  * Successfully created. Returns created Cluster ID.
@@ -1387,12 +3206,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
1387
3206
  basic: "basic";
1388
3207
  pro: "pro";
1389
3208
  }>;
1390
- region: z.ZodOptional<z.ZodEnum<{
3209
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1391
3210
  "staging-1a": "staging-1a";
1392
3211
  "northamerica-central-1": "northamerica-central-1";
1393
3212
  "europe-central-1a": "europe-central-1a";
1394
3213
  "northamerica-central-1a": "northamerica-central-1a";
1395
- }>>;
3214
+ }>>>;
1396
3215
  id: z.ZodUUID;
1397
3216
  status: z.ZodEnum<{
1398
3217
  deleted: "deleted";
@@ -1406,6 +3225,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
1406
3225
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1407
3226
  "": "";
1408
3227
  }>]>>;
3228
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3229
+ "": "";
3230
+ }>]>>;
1409
3231
  certificate_ca: z.ZodOptional<z.ZodString>;
1410
3232
  version_current: z.ZodOptional<z.ZodString>;
1411
3233
  created_at: z.ZodOptional<z.ZodString>;
@@ -1433,12 +3255,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1433
3255
  basic: "basic";
1434
3256
  pro: "pro";
1435
3257
  }>;
1436
- region: z.ZodOptional<z.ZodEnum<{
3258
+ region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1437
3259
  "staging-1a": "staging-1a";
1438
3260
  "northamerica-central-1": "northamerica-central-1";
1439
3261
  "europe-central-1a": "europe-central-1a";
1440
3262
  "northamerica-central-1a": "northamerica-central-1a";
1441
- }>>;
3263
+ }>>>;
1442
3264
  id: z.ZodUUID;
1443
3265
  status: z.ZodEnum<{
1444
3266
  deleted: "deleted";
@@ -1452,6 +3274,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1452
3274
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1453
3275
  "": "";
1454
3276
  }>]>>;
3277
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3278
+ "": "";
3279
+ }>]>>;
1455
3280
  certificate_ca: z.ZodOptional<z.ZodString>;
1456
3281
  version_current: z.ZodOptional<z.ZodString>;
1457
3282
  created_at: z.ZodOptional<z.ZodString>;
@@ -1585,6 +3410,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
1585
3410
  export declare const zGetOrganizationResponse: z.ZodObject<{
1586
3411
  id: z.ZodUUID;
1587
3412
  name: z.ZodOptional<z.ZodString>;
3413
+ type: z.ZodEnum<{
3414
+ business: "business";
3415
+ personal: "personal";
3416
+ }>;
1588
3417
  date_created: z.ZodISODateTime;
1589
3418
  quota: z.ZodObject<{
1590
3419
  basic_clusters_max: z.ZodInt;
@@ -1598,8 +3427,6 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1598
3427
  id: z.ZodString;
1599
3428
  label: z.ZodString;
1600
3429
  }, z.core.$strip>>;
1601
- copilot_user_hourly_tokens: z.ZodInt;
1602
- copilot_organization_hourly_tokens: z.ZodInt;
1603
3430
  cfcr_storage_gb: z.ZodInt;
1604
3431
  }, z.core.$strip>;
1605
3432
  status: z.ZodEnum<{
@@ -1607,14 +3434,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1607
3434
  closed: "closed";
1608
3435
  suspended: "suspended";
1609
3436
  }>;
3437
+ verification: z.ZodEnum<{
3438
+ none: "none";
3439
+ submitted: "submitted";
3440
+ verified: "verified";
3441
+ }>;
1610
3442
  }, z.core.$strip>;
1611
3443
  export declare const zCreateOrganizationBody: z.ZodObject<{
3444
+ type: z.ZodEnum<{
3445
+ business: "business";
3446
+ personal: "personal";
3447
+ }>;
1612
3448
  email: z.ZodEmail;
1613
3449
  first_name: z.ZodString;
1614
3450
  last_name: z.ZodString;
1615
3451
  company_name: z.ZodString;
1616
3452
  password: z.ZodString;
1617
3453
  }, z.core.$strip>;
3454
+ /**
3455
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3456
+ *
3457
+ */
3458
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
3459
+ id: z.ZodString;
3460
+ }, z.core.$strip>;
1618
3461
  /**
1619
3462
  * List of repositories
1620
3463
  */
@@ -1684,6 +3527,201 @@ export declare const zGetTagResponse: z.ZodObject<{
1684
3527
  repository: z.ZodString;
1685
3528
  uri: z.ZodString;
1686
3529
  }, z.core.$strip>;
3530
+ /**
3531
+ * Tickets for the organization.
3532
+ */
3533
+ export declare const zListTicketsResponse: z.ZodObject<{
3534
+ items: z.ZodArray<z.ZodObject<{
3535
+ id: z.ZodString;
3536
+ status: z.ZodEnum<{
3537
+ closed: "closed";
3538
+ waiting_on_us: "waiting_on_us";
3539
+ waiting_on_user: "waiting_on_user";
3540
+ }>;
3541
+ category: z.ZodEnum<{
3542
+ billing: "billing";
3543
+ technical: "technical";
3544
+ general: "general";
3545
+ }>;
3546
+ summary: z.ZodString;
3547
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3548
+ date_created: z.ZodISODateTime;
3549
+ date_updated: z.ZodISODateTime;
3550
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3551
+ id: z.ZodString;
3552
+ type: z.ZodEnum<{
3553
+ customer_reply: "customer_reply";
3554
+ agent_reply: "agent_reply";
3555
+ }>;
3556
+ body: z.ZodString;
3557
+ author_first_name: z.ZodOptional<z.ZodString>;
3558
+ author_last_name: z.ZodOptional<z.ZodString>;
3559
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3560
+ id: z.ZodString;
3561
+ filename: z.ZodString;
3562
+ content_type: z.ZodString;
3563
+ size: z.ZodInt;
3564
+ }, z.core.$strip>>>;
3565
+ date_created: z.ZodISODateTime;
3566
+ }, z.core.$strip>>>;
3567
+ }, z.core.$strip>>;
3568
+ }, z.core.$strip>;
3569
+ export declare const zCreateTicketBody: z.ZodObject<{
3570
+ payload: z.ZodOptional<z.ZodString>;
3571
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3572
+ }, z.core.$strip>;
3573
+ /**
3574
+ * Ticket created.
3575
+ */
3576
+ export declare const zCreateTicketResponse: z.ZodObject<{
3577
+ id: z.ZodString;
3578
+ status: z.ZodEnum<{
3579
+ closed: "closed";
3580
+ waiting_on_us: "waiting_on_us";
3581
+ waiting_on_user: "waiting_on_user";
3582
+ }>;
3583
+ category: z.ZodEnum<{
3584
+ billing: "billing";
3585
+ technical: "technical";
3586
+ general: "general";
3587
+ }>;
3588
+ summary: z.ZodString;
3589
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3590
+ date_created: z.ZodISODateTime;
3591
+ date_updated: z.ZodISODateTime;
3592
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3593
+ id: z.ZodString;
3594
+ type: z.ZodEnum<{
3595
+ customer_reply: "customer_reply";
3596
+ agent_reply: "agent_reply";
3597
+ }>;
3598
+ body: z.ZodString;
3599
+ author_first_name: z.ZodOptional<z.ZodString>;
3600
+ author_last_name: z.ZodOptional<z.ZodString>;
3601
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3602
+ id: z.ZodString;
3603
+ filename: z.ZodString;
3604
+ content_type: z.ZodString;
3605
+ size: z.ZodInt;
3606
+ }, z.core.$strip>>>;
3607
+ date_created: z.ZodISODateTime;
3608
+ }, z.core.$strip>>>;
3609
+ }, z.core.$strip>;
3610
+ export declare const zCloseTicketPath: z.ZodObject<{
3611
+ ticket_id: z.ZodString;
3612
+ }, z.core.$strip>;
3613
+ /**
3614
+ * Ticket closed.
3615
+ */
3616
+ export declare const zCloseTicketResponse: z.ZodObject<{
3617
+ id: z.ZodString;
3618
+ status: z.ZodEnum<{
3619
+ closed: "closed";
3620
+ waiting_on_us: "waiting_on_us";
3621
+ waiting_on_user: "waiting_on_user";
3622
+ }>;
3623
+ category: z.ZodEnum<{
3624
+ billing: "billing";
3625
+ technical: "technical";
3626
+ general: "general";
3627
+ }>;
3628
+ summary: z.ZodString;
3629
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3630
+ date_created: z.ZodISODateTime;
3631
+ date_updated: z.ZodISODateTime;
3632
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3633
+ id: z.ZodString;
3634
+ type: z.ZodEnum<{
3635
+ customer_reply: "customer_reply";
3636
+ agent_reply: "agent_reply";
3637
+ }>;
3638
+ body: z.ZodString;
3639
+ author_first_name: z.ZodOptional<z.ZodString>;
3640
+ author_last_name: z.ZodOptional<z.ZodString>;
3641
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3642
+ id: z.ZodString;
3643
+ filename: z.ZodString;
3644
+ content_type: z.ZodString;
3645
+ size: z.ZodInt;
3646
+ }, z.core.$strip>>>;
3647
+ date_created: z.ZodISODateTime;
3648
+ }, z.core.$strip>>>;
3649
+ }, z.core.$strip>;
3650
+ export declare const zGetTicketPath: z.ZodObject<{
3651
+ ticket_id: z.ZodString;
3652
+ }, z.core.$strip>;
3653
+ /**
3654
+ * Ticket with messages (internal notes excluded).
3655
+ */
3656
+ export declare const zGetTicketResponse: z.ZodObject<{
3657
+ id: z.ZodString;
3658
+ status: z.ZodEnum<{
3659
+ closed: "closed";
3660
+ waiting_on_us: "waiting_on_us";
3661
+ waiting_on_user: "waiting_on_user";
3662
+ }>;
3663
+ category: z.ZodEnum<{
3664
+ billing: "billing";
3665
+ technical: "technical";
3666
+ general: "general";
3667
+ }>;
3668
+ summary: z.ZodString;
3669
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
3670
+ date_created: z.ZodISODateTime;
3671
+ date_updated: z.ZodISODateTime;
3672
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
3673
+ id: z.ZodString;
3674
+ type: z.ZodEnum<{
3675
+ customer_reply: "customer_reply";
3676
+ agent_reply: "agent_reply";
3677
+ }>;
3678
+ body: z.ZodString;
3679
+ author_first_name: z.ZodOptional<z.ZodString>;
3680
+ author_last_name: z.ZodOptional<z.ZodString>;
3681
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3682
+ id: z.ZodString;
3683
+ filename: z.ZodString;
3684
+ content_type: z.ZodString;
3685
+ size: z.ZodInt;
3686
+ }, z.core.$strip>>>;
3687
+ date_created: z.ZodISODateTime;
3688
+ }, z.core.$strip>>>;
3689
+ }, z.core.$strip>;
3690
+ export declare const zReplyTicketBody: z.ZodObject<{
3691
+ payload: z.ZodOptional<z.ZodString>;
3692
+ attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
3693
+ }, z.core.$strip>;
3694
+ export declare const zReplyTicketPath: z.ZodObject<{
3695
+ ticket_id: z.ZodString;
3696
+ }, z.core.$strip>;
3697
+ /**
3698
+ * Reply appended.
3699
+ */
3700
+ export declare const zReplyTicketResponse: z.ZodObject<{
3701
+ id: z.ZodString;
3702
+ type: z.ZodEnum<{
3703
+ customer_reply: "customer_reply";
3704
+ agent_reply: "agent_reply";
3705
+ }>;
3706
+ body: z.ZodString;
3707
+ author_first_name: z.ZodOptional<z.ZodString>;
3708
+ author_last_name: z.ZodOptional<z.ZodString>;
3709
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
3710
+ id: z.ZodString;
3711
+ filename: z.ZodString;
3712
+ content_type: z.ZodString;
3713
+ size: z.ZodInt;
3714
+ }, z.core.$strip>>>;
3715
+ date_created: z.ZodISODateTime;
3716
+ }, z.core.$strip>;
3717
+ export declare const zGetTicketAttachmentPath: z.ZodObject<{
3718
+ ticket_id: z.ZodString;
3719
+ attachment_id: z.ZodString;
3720
+ }, z.core.$strip>;
3721
+ /**
3722
+ * Attachment binary stream.
3723
+ */
3724
+ export declare const zGetTicketAttachmentResponse: z.ZodString;
1687
3725
  /**
1688
3726
  * Returns a list of access token details with masked secrets.
1689
3727
  */