@cloudfleet/sdk 0.0.1-91321da → 0.0.1-958f27d

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>;
@@ -168,22 +172,7 @@ export declare const zChart: z.ZodObject<{
168
172
  name: z.ZodString;
169
173
  namespace: z.ZodString;
170
174
  chart: z.ZodString;
171
- status: z.ZodEnum<{
172
- InstallSucceeded: "InstallSucceeded";
173
- InstallFailed: "InstallFailed";
174
- UpgradeSucceeded: "UpgradeSucceeded";
175
- UpgradeFailed: "UpgradeFailed";
176
- TestSucceeded: "TestSucceeded";
177
- TestFailed: "TestFailed";
178
- RollbackSucceeded: "RollbackSucceeded";
179
- RollbackFailed: "RollbackFailed";
180
- UninstallSucceeded: "UninstallSucceeded";
181
- UninstallFailed: "UninstallFailed";
182
- ArtifactFailed: "ArtifactFailed";
183
- DependencyNotReady: "DependencyNotReady";
184
- Progressing: "Progressing";
185
- SourceNotReady: "SourceNotReady";
186
- }>;
175
+ status: z.ZodString;
187
176
  version_current: z.ZodString;
188
177
  created_at: z.ZodString;
189
178
  updated_at: z.ZodString;
@@ -199,23 +188,14 @@ export declare const zClusterCreateInput: z.ZodObject<{
199
188
  basic: "basic";
200
189
  pro: "pro";
201
190
  }>;
202
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
203
- "staging-1a": "staging-1a";
204
- "northamerica-central-1": "northamerica-central-1";
205
- "europe-central-1a": "europe-central-1a";
206
- "northamerica-central-1a": "northamerica-central-1a";
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
- }>>>;
191
+ region: z.ZodString;
192
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
214
193
  }, z.core.$strip>;
215
194
  export declare const zClusterJoinInformation: z.ZodObject<{
216
195
  certificate_authority: z.ZodString;
217
196
  endpoint: z.ZodURL;
218
197
  cluster_dns: z.ZodString;
198
+ pod_cidr: z.ZodString;
219
199
  auth_key: z.ZodString;
220
200
  bootstrap_token: z.ZodString;
221
201
  versions: z.ZodObject<{
@@ -236,12 +216,7 @@ export declare const zCluster: z.ZodObject<{
236
216
  basic: "basic";
237
217
  pro: "pro";
238
218
  }>;
239
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
240
- "staging-1a": "staging-1a";
241
- "northamerica-central-1": "northamerica-central-1";
242
- "europe-central-1a": "europe-central-1a";
243
- "northamerica-central-1a": "northamerica-central-1a";
244
- }>>>;
219
+ region: z.ZodString;
245
220
  id: z.ZodUUID;
246
221
  status: z.ZodEnum<{
247
222
  deleted: "deleted";
@@ -275,56 +250,783 @@ export declare const zClusterUpdateInput: z.ZodObject<{
275
250
  }, z.core.$strip>;
276
251
  export declare const zFleetCreateInput: z.ZodObject<{
277
252
  limits: z.ZodOptional<z.ZodObject<{
278
- cpu: z.ZodNumber;
253
+ cpu: z.ZodOptional<z.ZodInt>;
279
254
  }, z.core.$strip>>;
280
255
  gcp: z.ZodOptional<z.ZodObject<{
281
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
282
- project: z.ZodString;
256
+ enabled: z.ZodBoolean;
257
+ project: z.ZodOptional<z.ZodString>;
283
258
  }, z.core.$strip>>;
284
259
  hetzner: z.ZodOptional<z.ZodObject<{
285
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
286
- apiKey: z.ZodString;
260
+ enabled: z.ZodBoolean;
261
+ apiKey: z.ZodOptional<z.ZodString>;
287
262
  }, z.core.$strip>>;
288
263
  aws: z.ZodOptional<z.ZodObject<{
289
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
290
- controllerRoleArn: z.ZodString;
264
+ enabled: z.ZodBoolean;
265
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
266
+ }, z.core.$strip>>;
267
+ constraints: z.ZodOptional<z.ZodObject<{
268
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
269
+ "on-demand": "on-demand";
270
+ spot: "spot";
271
+ }>>>>;
272
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
273
+ amd64: "amd64";
274
+ arm64: "arm64";
275
+ }>>>>;
276
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
277
+ p3: "p3";
278
+ cx: "cx";
279
+ h1: "h1";
280
+ h3: "h3";
281
+ a1: "a1";
282
+ a2: "a2";
283
+ a3: "a3";
284
+ a4: "a4";
285
+ c1: "c1";
286
+ c2: "c2";
287
+ c2d: "c2d";
288
+ c3: "c3";
289
+ c3d: "c3d";
290
+ c4: "c4";
291
+ c4a: "c4a";
292
+ c4d: "c4d";
293
+ c5: "c5";
294
+ c5a: "c5a";
295
+ c5ad: "c5ad";
296
+ c5d: "c5d";
297
+ c5n: "c5n";
298
+ c6a: "c6a";
299
+ c6g: "c6g";
300
+ c6gd: "c6gd";
301
+ c6gn: "c6gn";
302
+ c6i: "c6i";
303
+ c6id: "c6id";
304
+ c6in: "c6in";
305
+ c7a: "c7a";
306
+ c7g: "c7g";
307
+ c7gd: "c7gd";
308
+ c7gn: "c7gn";
309
+ c7i: "c7i";
310
+ "c7i-flex": "c7i-flex";
311
+ c8g: "c8g";
312
+ c8gd: "c8gd";
313
+ cax: "cax";
314
+ ccx: "ccx";
315
+ cpx: "cpx";
316
+ d2: "d2";
317
+ d3: "d3";
318
+ d3en: "d3en";
319
+ dl1: "dl1";
320
+ dl2q: "dl2q";
321
+ e2: "e2";
322
+ f1: "f1";
323
+ f2: "f2";
324
+ g1: "g1";
325
+ g2: "g2";
326
+ g4ad: "g4ad";
327
+ g4dn: "g4dn";
328
+ g5: "g5";
329
+ g5g: "g5g";
330
+ g6: "g6";
331
+ g6e: "g6e";
332
+ gr6: "gr6";
333
+ hpc6a: "hpc6a";
334
+ hpc6id: "hpc6id";
335
+ hpc7a: "hpc7a";
336
+ hpc7g: "hpc7g";
337
+ i2: "i2";
338
+ i3: "i3";
339
+ i3en: "i3en";
340
+ i4g: "i4g";
341
+ i4i: "i4i";
342
+ i7i: "i7i";
343
+ i7ie: "i7ie";
344
+ i8g: "i8g";
345
+ im4gn: "im4gn";
346
+ inf1: "inf1";
347
+ inf2: "inf2";
348
+ is4gen: "is4gen";
349
+ m1: "m1";
350
+ m2: "m2";
351
+ m3: "m3";
352
+ m4: "m4";
353
+ m5: "m5";
354
+ m5a: "m5a";
355
+ m5ad: "m5ad";
356
+ m5d: "m5d";
357
+ m5dn: "m5dn";
358
+ m5n: "m5n";
359
+ m5zn: "m5zn";
360
+ m6a: "m6a";
361
+ m6g: "m6g";
362
+ m6gd: "m6gd";
363
+ m6i: "m6i";
364
+ m6id: "m6id";
365
+ m6idn: "m6idn";
366
+ m6in: "m6in";
367
+ m7a: "m7a";
368
+ m7g: "m7g";
369
+ m7gd: "m7gd";
370
+ m7i: "m7i";
371
+ "m7i-flex": "m7i-flex";
372
+ m8g: "m8g";
373
+ m8gd: "m8gd";
374
+ n1: "n1";
375
+ n2: "n2";
376
+ n2d: "n2d";
377
+ n4: "n4";
378
+ p3dn: "p3dn";
379
+ p4d: "p4d";
380
+ p4de: "p4de";
381
+ p5: "p5";
382
+ p5e: "p5e";
383
+ p5en: "p5en";
384
+ "p6-b200": "p6-b200";
385
+ r3: "r3";
386
+ r4: "r4";
387
+ r5: "r5";
388
+ r5a: "r5a";
389
+ r5ad: "r5ad";
390
+ r5b: "r5b";
391
+ r5d: "r5d";
392
+ r5dn: "r5dn";
393
+ r5n: "r5n";
394
+ r6a: "r6a";
395
+ r6g: "r6g";
396
+ r6gd: "r6gd";
397
+ r6i: "r6i";
398
+ r6id: "r6id";
399
+ r6idn: "r6idn";
400
+ r6in: "r6in";
401
+ r7a: "r7a";
402
+ r7g: "r7g";
403
+ r7gd: "r7gd";
404
+ r7i: "r7i";
405
+ r7iz: "r7iz";
406
+ r8g: "r8g";
407
+ r8gd: "r8gd";
408
+ t2: "t2";
409
+ t2a: "t2a";
410
+ t2d: "t2d";
411
+ t3: "t3";
412
+ t3a: "t3a";
413
+ t4g: "t4g";
414
+ trn1: "trn1";
415
+ trn1n: "trn1n";
416
+ "u-3tb1": "u-3tb1";
417
+ "u-6tb1": "u-6tb1";
418
+ "u7i-12tb": "u7i-12tb";
419
+ "u7i-6tb": "u7i-6tb";
420
+ "u7i-8tb": "u7i-8tb";
421
+ "u7in-16tb": "u7in-16tb";
422
+ "u7in-24tb": "u7in-24tb";
423
+ "u7in-32tb": "u7in-32tb";
424
+ vt1: "vt1";
425
+ x1: "x1";
426
+ x1e: "x1e";
427
+ x2gd: "x2gd";
428
+ x2idn: "x2idn";
429
+ x2iedn: "x2iedn";
430
+ x2iezn: "x2iezn";
431
+ x4: "x4";
432
+ x8g: "x8g";
433
+ z1d: "z1d";
434
+ z3: "z3";
435
+ }>>>;
436
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
437
+ "africa-south1": "africa-south1";
438
+ "ap-northeast-1": "ap-northeast-1";
439
+ "ap-northeast-2": "ap-northeast-2";
440
+ "ap-northeast-3": "ap-northeast-3";
441
+ "ap-south-1": "ap-south-1";
442
+ "ap-southeast-1": "ap-southeast-1";
443
+ "ap-southeast-2": "ap-southeast-2";
444
+ ash: "ash";
445
+ "asia-east1": "asia-east1";
446
+ "asia-east2": "asia-east2";
447
+ "asia-northeast1": "asia-northeast1";
448
+ "asia-northeast2": "asia-northeast2";
449
+ "asia-northeast3": "asia-northeast3";
450
+ "asia-south1": "asia-south1";
451
+ "asia-south2": "asia-south2";
452
+ "asia-southeast1": "asia-southeast1";
453
+ "asia-southeast2": "asia-southeast2";
454
+ "australia-southeast1": "australia-southeast1";
455
+ "australia-southeast2": "australia-southeast2";
456
+ "ca-central-1": "ca-central-1";
457
+ "eu-central-1": "eu-central-1";
458
+ "eu-central-2": "eu-central-2";
459
+ "eu-north-1": "eu-north-1";
460
+ "eu-west-1": "eu-west-1";
461
+ "eu-west-2": "eu-west-2";
462
+ "eu-west-3": "eu-west-3";
463
+ "europe-central2": "europe-central2";
464
+ "europe-north1": "europe-north1";
465
+ "europe-southwest1": "europe-southwest1";
466
+ "europe-west1": "europe-west1";
467
+ "europe-west10": "europe-west10";
468
+ "europe-west12": "europe-west12";
469
+ "europe-west2": "europe-west2";
470
+ "europe-west3": "europe-west3";
471
+ "europe-west4": "europe-west4";
472
+ "europe-west6": "europe-west6";
473
+ "europe-west8": "europe-west8";
474
+ "europe-west9": "europe-west9";
475
+ fsn1: "fsn1";
476
+ hel1: "hel1";
477
+ hil: "hil";
478
+ "me-central1": "me-central1";
479
+ "me-central2": "me-central2";
480
+ "me-west1": "me-west1";
481
+ nbg1: "nbg1";
482
+ "northamerica-northeast1": "northamerica-northeast1";
483
+ "northamerica-northeast2": "northamerica-northeast2";
484
+ "sa-east-1": "sa-east-1";
485
+ sin: "sin";
486
+ "southamerica-east1": "southamerica-east1";
487
+ "southamerica-west1": "southamerica-west1";
488
+ "us-central1": "us-central1";
489
+ "us-east-1": "us-east-1";
490
+ "us-east-2": "us-east-2";
491
+ "us-east1": "us-east1";
492
+ "us-east4": "us-east4";
493
+ "us-east5": "us-east5";
494
+ "us-south1": "us-south1";
495
+ "us-west-1": "us-west-1";
496
+ "us-west-2": "us-west-2";
497
+ "us-west1": "us-west1";
498
+ "us-west2": "us-west2";
499
+ "us-west3": "us-west3";
500
+ "us-west4": "us-west4";
501
+ }>>>;
291
502
  }, z.core.$strip>>;
503
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
504
+ aggressive: "aggressive";
505
+ conservative: "conservative";
506
+ }>>>;
292
507
  id: z.ZodString;
293
508
  }, z.core.$strip>;
294
509
  export declare const zFleet: z.ZodObject<{
295
510
  limits: z.ZodOptional<z.ZodObject<{
296
- cpu: z.ZodNumber;
511
+ cpu: z.ZodOptional<z.ZodInt>;
297
512
  }, z.core.$strip>>;
298
513
  gcp: z.ZodOptional<z.ZodObject<{
299
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
300
- project: z.ZodString;
514
+ enabled: z.ZodBoolean;
515
+ project: z.ZodOptional<z.ZodString>;
301
516
  }, z.core.$strip>>;
302
517
  hetzner: z.ZodOptional<z.ZodObject<{
303
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
304
- apiKey: z.ZodString;
518
+ enabled: z.ZodBoolean;
519
+ apiKey: z.ZodOptional<z.ZodString>;
305
520
  }, z.core.$strip>>;
306
521
  aws: z.ZodOptional<z.ZodObject<{
307
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
308
- controllerRoleArn: z.ZodString;
522
+ enabled: z.ZodBoolean;
523
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
524
+ }, z.core.$strip>>;
525
+ constraints: z.ZodOptional<z.ZodObject<{
526
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
527
+ "on-demand": "on-demand";
528
+ spot: "spot";
529
+ }>>>>;
530
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
531
+ amd64: "amd64";
532
+ arm64: "arm64";
533
+ }>>>>;
534
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
535
+ p3: "p3";
536
+ cx: "cx";
537
+ h1: "h1";
538
+ h3: "h3";
539
+ a1: "a1";
540
+ a2: "a2";
541
+ a3: "a3";
542
+ a4: "a4";
543
+ c1: "c1";
544
+ c2: "c2";
545
+ c2d: "c2d";
546
+ c3: "c3";
547
+ c3d: "c3d";
548
+ c4: "c4";
549
+ c4a: "c4a";
550
+ c4d: "c4d";
551
+ c5: "c5";
552
+ c5a: "c5a";
553
+ c5ad: "c5ad";
554
+ c5d: "c5d";
555
+ c5n: "c5n";
556
+ c6a: "c6a";
557
+ c6g: "c6g";
558
+ c6gd: "c6gd";
559
+ c6gn: "c6gn";
560
+ c6i: "c6i";
561
+ c6id: "c6id";
562
+ c6in: "c6in";
563
+ c7a: "c7a";
564
+ c7g: "c7g";
565
+ c7gd: "c7gd";
566
+ c7gn: "c7gn";
567
+ c7i: "c7i";
568
+ "c7i-flex": "c7i-flex";
569
+ c8g: "c8g";
570
+ c8gd: "c8gd";
571
+ cax: "cax";
572
+ ccx: "ccx";
573
+ cpx: "cpx";
574
+ d2: "d2";
575
+ d3: "d3";
576
+ d3en: "d3en";
577
+ dl1: "dl1";
578
+ dl2q: "dl2q";
579
+ e2: "e2";
580
+ f1: "f1";
581
+ f2: "f2";
582
+ g1: "g1";
583
+ g2: "g2";
584
+ g4ad: "g4ad";
585
+ g4dn: "g4dn";
586
+ g5: "g5";
587
+ g5g: "g5g";
588
+ g6: "g6";
589
+ g6e: "g6e";
590
+ gr6: "gr6";
591
+ hpc6a: "hpc6a";
592
+ hpc6id: "hpc6id";
593
+ hpc7a: "hpc7a";
594
+ hpc7g: "hpc7g";
595
+ i2: "i2";
596
+ i3: "i3";
597
+ i3en: "i3en";
598
+ i4g: "i4g";
599
+ i4i: "i4i";
600
+ i7i: "i7i";
601
+ i7ie: "i7ie";
602
+ i8g: "i8g";
603
+ im4gn: "im4gn";
604
+ inf1: "inf1";
605
+ inf2: "inf2";
606
+ is4gen: "is4gen";
607
+ m1: "m1";
608
+ m2: "m2";
609
+ m3: "m3";
610
+ m4: "m4";
611
+ m5: "m5";
612
+ m5a: "m5a";
613
+ m5ad: "m5ad";
614
+ m5d: "m5d";
615
+ m5dn: "m5dn";
616
+ m5n: "m5n";
617
+ m5zn: "m5zn";
618
+ m6a: "m6a";
619
+ m6g: "m6g";
620
+ m6gd: "m6gd";
621
+ m6i: "m6i";
622
+ m6id: "m6id";
623
+ m6idn: "m6idn";
624
+ m6in: "m6in";
625
+ m7a: "m7a";
626
+ m7g: "m7g";
627
+ m7gd: "m7gd";
628
+ m7i: "m7i";
629
+ "m7i-flex": "m7i-flex";
630
+ m8g: "m8g";
631
+ m8gd: "m8gd";
632
+ n1: "n1";
633
+ n2: "n2";
634
+ n2d: "n2d";
635
+ n4: "n4";
636
+ p3dn: "p3dn";
637
+ p4d: "p4d";
638
+ p4de: "p4de";
639
+ p5: "p5";
640
+ p5e: "p5e";
641
+ p5en: "p5en";
642
+ "p6-b200": "p6-b200";
643
+ r3: "r3";
644
+ r4: "r4";
645
+ r5: "r5";
646
+ r5a: "r5a";
647
+ r5ad: "r5ad";
648
+ r5b: "r5b";
649
+ r5d: "r5d";
650
+ r5dn: "r5dn";
651
+ r5n: "r5n";
652
+ r6a: "r6a";
653
+ r6g: "r6g";
654
+ r6gd: "r6gd";
655
+ r6i: "r6i";
656
+ r6id: "r6id";
657
+ r6idn: "r6idn";
658
+ r6in: "r6in";
659
+ r7a: "r7a";
660
+ r7g: "r7g";
661
+ r7gd: "r7gd";
662
+ r7i: "r7i";
663
+ r7iz: "r7iz";
664
+ r8g: "r8g";
665
+ r8gd: "r8gd";
666
+ t2: "t2";
667
+ t2a: "t2a";
668
+ t2d: "t2d";
669
+ t3: "t3";
670
+ t3a: "t3a";
671
+ t4g: "t4g";
672
+ trn1: "trn1";
673
+ trn1n: "trn1n";
674
+ "u-3tb1": "u-3tb1";
675
+ "u-6tb1": "u-6tb1";
676
+ "u7i-12tb": "u7i-12tb";
677
+ "u7i-6tb": "u7i-6tb";
678
+ "u7i-8tb": "u7i-8tb";
679
+ "u7in-16tb": "u7in-16tb";
680
+ "u7in-24tb": "u7in-24tb";
681
+ "u7in-32tb": "u7in-32tb";
682
+ vt1: "vt1";
683
+ x1: "x1";
684
+ x1e: "x1e";
685
+ x2gd: "x2gd";
686
+ x2idn: "x2idn";
687
+ x2iedn: "x2iedn";
688
+ x2iezn: "x2iezn";
689
+ x4: "x4";
690
+ x8g: "x8g";
691
+ z1d: "z1d";
692
+ z3: "z3";
693
+ }>>>;
694
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
695
+ "africa-south1": "africa-south1";
696
+ "ap-northeast-1": "ap-northeast-1";
697
+ "ap-northeast-2": "ap-northeast-2";
698
+ "ap-northeast-3": "ap-northeast-3";
699
+ "ap-south-1": "ap-south-1";
700
+ "ap-southeast-1": "ap-southeast-1";
701
+ "ap-southeast-2": "ap-southeast-2";
702
+ ash: "ash";
703
+ "asia-east1": "asia-east1";
704
+ "asia-east2": "asia-east2";
705
+ "asia-northeast1": "asia-northeast1";
706
+ "asia-northeast2": "asia-northeast2";
707
+ "asia-northeast3": "asia-northeast3";
708
+ "asia-south1": "asia-south1";
709
+ "asia-south2": "asia-south2";
710
+ "asia-southeast1": "asia-southeast1";
711
+ "asia-southeast2": "asia-southeast2";
712
+ "australia-southeast1": "australia-southeast1";
713
+ "australia-southeast2": "australia-southeast2";
714
+ "ca-central-1": "ca-central-1";
715
+ "eu-central-1": "eu-central-1";
716
+ "eu-central-2": "eu-central-2";
717
+ "eu-north-1": "eu-north-1";
718
+ "eu-west-1": "eu-west-1";
719
+ "eu-west-2": "eu-west-2";
720
+ "eu-west-3": "eu-west-3";
721
+ "europe-central2": "europe-central2";
722
+ "europe-north1": "europe-north1";
723
+ "europe-southwest1": "europe-southwest1";
724
+ "europe-west1": "europe-west1";
725
+ "europe-west10": "europe-west10";
726
+ "europe-west12": "europe-west12";
727
+ "europe-west2": "europe-west2";
728
+ "europe-west3": "europe-west3";
729
+ "europe-west4": "europe-west4";
730
+ "europe-west6": "europe-west6";
731
+ "europe-west8": "europe-west8";
732
+ "europe-west9": "europe-west9";
733
+ fsn1: "fsn1";
734
+ hel1: "hel1";
735
+ hil: "hil";
736
+ "me-central1": "me-central1";
737
+ "me-central2": "me-central2";
738
+ "me-west1": "me-west1";
739
+ nbg1: "nbg1";
740
+ "northamerica-northeast1": "northamerica-northeast1";
741
+ "northamerica-northeast2": "northamerica-northeast2";
742
+ "sa-east-1": "sa-east-1";
743
+ sin: "sin";
744
+ "southamerica-east1": "southamerica-east1";
745
+ "southamerica-west1": "southamerica-west1";
746
+ "us-central1": "us-central1";
747
+ "us-east-1": "us-east-1";
748
+ "us-east-2": "us-east-2";
749
+ "us-east1": "us-east1";
750
+ "us-east4": "us-east4";
751
+ "us-east5": "us-east5";
752
+ "us-south1": "us-south1";
753
+ "us-west-1": "us-west-1";
754
+ "us-west-2": "us-west-2";
755
+ "us-west1": "us-west1";
756
+ "us-west2": "us-west2";
757
+ "us-west3": "us-west3";
758
+ "us-west4": "us-west4";
759
+ }>>>;
309
760
  }, z.core.$strip>>;
761
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
762
+ aggressive: "aggressive";
763
+ conservative: "conservative";
764
+ }>>;
310
765
  id: z.ZodString;
311
766
  }, z.core.$strip>;
312
767
  export declare const zFleetUpdateInput: z.ZodObject<{
313
768
  limits: z.ZodOptional<z.ZodObject<{
314
- cpu: z.ZodNumber;
769
+ cpu: z.ZodOptional<z.ZodInt>;
315
770
  }, z.core.$strip>>;
316
771
  gcp: z.ZodOptional<z.ZodObject<{
317
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
318
- project: z.ZodString;
772
+ enabled: z.ZodBoolean;
773
+ project: z.ZodOptional<z.ZodString>;
319
774
  }, z.core.$strip>>;
320
775
  hetzner: z.ZodOptional<z.ZodObject<{
321
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
322
- apiKey: z.ZodString;
776
+ enabled: z.ZodBoolean;
777
+ apiKey: z.ZodOptional<z.ZodString>;
323
778
  }, z.core.$strip>>;
324
779
  aws: z.ZodOptional<z.ZodObject<{
325
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
326
- controllerRoleArn: z.ZodString;
780
+ enabled: z.ZodBoolean;
781
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
782
+ }, z.core.$strip>>;
783
+ constraints: z.ZodOptional<z.ZodObject<{
784
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
785
+ "on-demand": "on-demand";
786
+ spot: "spot";
787
+ }>>>;
788
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
789
+ amd64: "amd64";
790
+ arm64: "arm64";
791
+ }>>>;
792
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
793
+ p3: "p3";
794
+ cx: "cx";
795
+ h1: "h1";
796
+ h3: "h3";
797
+ a1: "a1";
798
+ a2: "a2";
799
+ a3: "a3";
800
+ a4: "a4";
801
+ c1: "c1";
802
+ c2: "c2";
803
+ c2d: "c2d";
804
+ c3: "c3";
805
+ c3d: "c3d";
806
+ c4: "c4";
807
+ c4a: "c4a";
808
+ c4d: "c4d";
809
+ c5: "c5";
810
+ c5a: "c5a";
811
+ c5ad: "c5ad";
812
+ c5d: "c5d";
813
+ c5n: "c5n";
814
+ c6a: "c6a";
815
+ c6g: "c6g";
816
+ c6gd: "c6gd";
817
+ c6gn: "c6gn";
818
+ c6i: "c6i";
819
+ c6id: "c6id";
820
+ c6in: "c6in";
821
+ c7a: "c7a";
822
+ c7g: "c7g";
823
+ c7gd: "c7gd";
824
+ c7gn: "c7gn";
825
+ c7i: "c7i";
826
+ "c7i-flex": "c7i-flex";
827
+ c8g: "c8g";
828
+ c8gd: "c8gd";
829
+ cax: "cax";
830
+ ccx: "ccx";
831
+ cpx: "cpx";
832
+ d2: "d2";
833
+ d3: "d3";
834
+ d3en: "d3en";
835
+ dl1: "dl1";
836
+ dl2q: "dl2q";
837
+ e2: "e2";
838
+ f1: "f1";
839
+ f2: "f2";
840
+ g1: "g1";
841
+ g2: "g2";
842
+ g4ad: "g4ad";
843
+ g4dn: "g4dn";
844
+ g5: "g5";
845
+ g5g: "g5g";
846
+ g6: "g6";
847
+ g6e: "g6e";
848
+ gr6: "gr6";
849
+ hpc6a: "hpc6a";
850
+ hpc6id: "hpc6id";
851
+ hpc7a: "hpc7a";
852
+ hpc7g: "hpc7g";
853
+ i2: "i2";
854
+ i3: "i3";
855
+ i3en: "i3en";
856
+ i4g: "i4g";
857
+ i4i: "i4i";
858
+ i7i: "i7i";
859
+ i7ie: "i7ie";
860
+ i8g: "i8g";
861
+ im4gn: "im4gn";
862
+ inf1: "inf1";
863
+ inf2: "inf2";
864
+ is4gen: "is4gen";
865
+ m1: "m1";
866
+ m2: "m2";
867
+ m3: "m3";
868
+ m4: "m4";
869
+ m5: "m5";
870
+ m5a: "m5a";
871
+ m5ad: "m5ad";
872
+ m5d: "m5d";
873
+ m5dn: "m5dn";
874
+ m5n: "m5n";
875
+ m5zn: "m5zn";
876
+ m6a: "m6a";
877
+ m6g: "m6g";
878
+ m6gd: "m6gd";
879
+ m6i: "m6i";
880
+ m6id: "m6id";
881
+ m6idn: "m6idn";
882
+ m6in: "m6in";
883
+ m7a: "m7a";
884
+ m7g: "m7g";
885
+ m7gd: "m7gd";
886
+ m7i: "m7i";
887
+ "m7i-flex": "m7i-flex";
888
+ m8g: "m8g";
889
+ m8gd: "m8gd";
890
+ n1: "n1";
891
+ n2: "n2";
892
+ n2d: "n2d";
893
+ n4: "n4";
894
+ p3dn: "p3dn";
895
+ p4d: "p4d";
896
+ p4de: "p4de";
897
+ p5: "p5";
898
+ p5e: "p5e";
899
+ p5en: "p5en";
900
+ "p6-b200": "p6-b200";
901
+ r3: "r3";
902
+ r4: "r4";
903
+ r5: "r5";
904
+ r5a: "r5a";
905
+ r5ad: "r5ad";
906
+ r5b: "r5b";
907
+ r5d: "r5d";
908
+ r5dn: "r5dn";
909
+ r5n: "r5n";
910
+ r6a: "r6a";
911
+ r6g: "r6g";
912
+ r6gd: "r6gd";
913
+ r6i: "r6i";
914
+ r6id: "r6id";
915
+ r6idn: "r6idn";
916
+ r6in: "r6in";
917
+ r7a: "r7a";
918
+ r7g: "r7g";
919
+ r7gd: "r7gd";
920
+ r7i: "r7i";
921
+ r7iz: "r7iz";
922
+ r8g: "r8g";
923
+ r8gd: "r8gd";
924
+ t2: "t2";
925
+ t2a: "t2a";
926
+ t2d: "t2d";
927
+ t3: "t3";
928
+ t3a: "t3a";
929
+ t4g: "t4g";
930
+ trn1: "trn1";
931
+ trn1n: "trn1n";
932
+ "u-3tb1": "u-3tb1";
933
+ "u-6tb1": "u-6tb1";
934
+ "u7i-12tb": "u7i-12tb";
935
+ "u7i-6tb": "u7i-6tb";
936
+ "u7i-8tb": "u7i-8tb";
937
+ "u7in-16tb": "u7in-16tb";
938
+ "u7in-24tb": "u7in-24tb";
939
+ "u7in-32tb": "u7in-32tb";
940
+ vt1: "vt1";
941
+ x1: "x1";
942
+ x1e: "x1e";
943
+ x2gd: "x2gd";
944
+ x2idn: "x2idn";
945
+ x2iedn: "x2iedn";
946
+ x2iezn: "x2iezn";
947
+ x4: "x4";
948
+ x8g: "x8g";
949
+ z1d: "z1d";
950
+ z3: "z3";
951
+ }>>>;
952
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
953
+ "africa-south1": "africa-south1";
954
+ "ap-northeast-1": "ap-northeast-1";
955
+ "ap-northeast-2": "ap-northeast-2";
956
+ "ap-northeast-3": "ap-northeast-3";
957
+ "ap-south-1": "ap-south-1";
958
+ "ap-southeast-1": "ap-southeast-1";
959
+ "ap-southeast-2": "ap-southeast-2";
960
+ ash: "ash";
961
+ "asia-east1": "asia-east1";
962
+ "asia-east2": "asia-east2";
963
+ "asia-northeast1": "asia-northeast1";
964
+ "asia-northeast2": "asia-northeast2";
965
+ "asia-northeast3": "asia-northeast3";
966
+ "asia-south1": "asia-south1";
967
+ "asia-south2": "asia-south2";
968
+ "asia-southeast1": "asia-southeast1";
969
+ "asia-southeast2": "asia-southeast2";
970
+ "australia-southeast1": "australia-southeast1";
971
+ "australia-southeast2": "australia-southeast2";
972
+ "ca-central-1": "ca-central-1";
973
+ "eu-central-1": "eu-central-1";
974
+ "eu-central-2": "eu-central-2";
975
+ "eu-north-1": "eu-north-1";
976
+ "eu-west-1": "eu-west-1";
977
+ "eu-west-2": "eu-west-2";
978
+ "eu-west-3": "eu-west-3";
979
+ "europe-central2": "europe-central2";
980
+ "europe-north1": "europe-north1";
981
+ "europe-southwest1": "europe-southwest1";
982
+ "europe-west1": "europe-west1";
983
+ "europe-west10": "europe-west10";
984
+ "europe-west12": "europe-west12";
985
+ "europe-west2": "europe-west2";
986
+ "europe-west3": "europe-west3";
987
+ "europe-west4": "europe-west4";
988
+ "europe-west6": "europe-west6";
989
+ "europe-west8": "europe-west8";
990
+ "europe-west9": "europe-west9";
991
+ fsn1: "fsn1";
992
+ hel1: "hel1";
993
+ hil: "hil";
994
+ "me-central1": "me-central1";
995
+ "me-central2": "me-central2";
996
+ "me-west1": "me-west1";
997
+ nbg1: "nbg1";
998
+ "northamerica-northeast1": "northamerica-northeast1";
999
+ "northamerica-northeast2": "northamerica-northeast2";
1000
+ "sa-east-1": "sa-east-1";
1001
+ sin: "sin";
1002
+ "southamerica-east1": "southamerica-east1";
1003
+ "southamerica-west1": "southamerica-west1";
1004
+ "us-central1": "us-central1";
1005
+ "us-east-1": "us-east-1";
1006
+ "us-east-2": "us-east-2";
1007
+ "us-east1": "us-east1";
1008
+ "us-east4": "us-east4";
1009
+ "us-east5": "us-east5";
1010
+ "us-south1": "us-south1";
1011
+ "us-west-1": "us-west-1";
1012
+ "us-west-2": "us-west-2";
1013
+ "us-west1": "us-west1";
1014
+ "us-west2": "us-west2";
1015
+ "us-west3": "us-west3";
1016
+ "us-west4": "us-west4";
1017
+ }>>>;
327
1018
  }, z.core.$strip>>;
1019
+ scalingProfile: z.ZodEnum<{
1020
+ aggressive: "aggressive";
1021
+ conservative: "conservative";
1022
+ }>;
1023
+ }, z.core.$strip>;
1024
+ export declare const zInviteCreateInput: z.ZodObject<{
1025
+ email: z.ZodEmail;
1026
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1027
+ Administrator: "Administrator";
1028
+ User: "User";
1029
+ }>>>;
328
1030
  }, z.core.$strip>;
329
1031
  export declare const zInvite: z.ZodObject<{
330
1032
  id: z.ZodOptional<z.ZodString>;
@@ -332,6 +1034,10 @@ export declare const zInvite: z.ZodObject<{
332
1034
  date_created: z.ZodISODateTime;
333
1035
  email: z.ZodOptional<z.ZodEmail>;
334
1036
  code: z.ZodOptional<z.ZodString>;
1037
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1038
+ Administrator: "Administrator";
1039
+ User: "User";
1040
+ }>>>;
335
1041
  }, z.core.$strip>;
336
1042
  export declare const zInvoice: z.ZodObject<{
337
1043
  id: z.ZodOptional<z.ZodString>;
@@ -371,15 +1077,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
371
1077
  }, z.core.$strip>>;
372
1078
  }, z.core.$strip>;
373
1079
  export declare const zOrganizationCreateInput: z.ZodObject<{
1080
+ type: z.ZodEnum<{
1081
+ business: "business";
1082
+ personal: "personal";
1083
+ }>;
374
1084
  email: z.ZodEmail;
375
1085
  first_name: z.ZodString;
376
1086
  last_name: z.ZodString;
377
1087
  company_name: z.ZodString;
378
1088
  password: z.ZodString;
379
1089
  }, z.core.$strip>;
1090
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1091
+ id: z.ZodString;
1092
+ }, z.core.$strip>;
380
1093
  export declare const zOrganization: z.ZodObject<{
381
1094
  id: z.ZodUUID;
382
1095
  name: z.ZodOptional<z.ZodString>;
1096
+ type: z.ZodEnum<{
1097
+ business: "business";
1098
+ personal: "personal";
1099
+ }>;
383
1100
  date_created: z.ZodISODateTime;
384
1101
  quota: z.ZodObject<{
385
1102
  basic_clusters_max: z.ZodInt;
@@ -400,27 +1117,27 @@ export declare const zOrganization: z.ZodObject<{
400
1117
  closed: "closed";
401
1118
  suspended: "suspended";
402
1119
  }>;
1120
+ verification: z.ZodEnum<{
1121
+ none: "none";
1122
+ submitted: "submitted";
1123
+ verified: "verified";
1124
+ }>;
403
1125
  }, z.core.$strip>;
404
1126
  export declare const zPaymentMethod: z.ZodObject<{
405
- id: z.ZodUUID;
406
- setup: z.ZodBoolean;
1127
+ id: z.ZodString;
407
1128
  type: z.ZodEnum<{
408
1129
  card: "card";
1130
+ sepa_debit: "sepa_debit";
1131
+ bank_transfer: "bank_transfer";
409
1132
  }>;
410
1133
  last4: z.ZodString;
411
1134
  exp_month: z.ZodInt;
412
1135
  exp_year: z.ZodInt;
413
- brand: z.ZodEnum<{
414
- unknown: "unknown";
415
- amex: "amex";
416
- diners: "diners";
417
- discover: "discover";
418
- eftpos_au: "eftpos_au";
419
- jcb: "jcb";
420
- mastercard: "mastercard";
421
- unionpay: "unionpay";
422
- visa: "visa";
423
- }>;
1136
+ brand: z.ZodString;
1137
+ iban: z.ZodString;
1138
+ bic: z.ZodString;
1139
+ account_holder_name: z.ZodString;
1140
+ is_default: z.ZodBoolean;
424
1141
  }, z.core.$strip>;
425
1142
  export declare const zPlatformQuota: z.ZodObject<{
426
1143
  basic_clusters_max: z.ZodInt;
@@ -643,14 +1360,6 @@ export declare const zUserCreateInput: z.ZodObject<{
643
1360
  last_name: z.ZodString;
644
1361
  code: z.ZodString;
645
1362
  password: z.ZodString;
646
- status: z.ZodOptional<z.ZodEnum<{
647
- active: "active";
648
- inactive: "inactive";
649
- }>>;
650
- role: z.ZodOptional<z.ZodEnum<{
651
- Administrator: "Administrator";
652
- User: "User";
653
- }>>;
654
1363
  }, z.core.$strip>;
655
1364
  export declare const zUser: z.ZodObject<{
656
1365
  email: z.ZodEmail;
@@ -705,36 +1414,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
705
1414
  }, z.core.$strip>;
706
1415
  }, z.core.$strip>;
707
1416
  /**
708
- * Redacted payment card information.
1417
+ * 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.
1418
+ *
709
1419
  */
710
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
711
- id: z.ZodUUID;
712
- setup: z.ZodBoolean;
1420
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1421
+ id: z.ZodOptional<z.ZodString>;
1422
+ }, z.core.$strip>;
1423
+ /**
1424
+ * An array of payment methods.
1425
+ */
1426
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1427
+ id: z.ZodString;
713
1428
  type: z.ZodEnum<{
714
1429
  card: "card";
1430
+ sepa_debit: "sepa_debit";
1431
+ bank_transfer: "bank_transfer";
715
1432
  }>;
716
1433
  last4: z.ZodString;
717
1434
  exp_month: z.ZodInt;
718
1435
  exp_year: z.ZodInt;
719
- brand: z.ZodEnum<{
720
- unknown: "unknown";
721
- amex: "amex";
722
- diners: "diners";
723
- discover: "discover";
724
- eftpos_au: "eftpos_au";
725
- jcb: "jcb";
726
- mastercard: "mastercard";
727
- unionpay: "unionpay";
728
- visa: "visa";
729
- }>;
1436
+ brand: z.ZodString;
1437
+ iban: z.ZodString;
1438
+ bic: z.ZodString;
1439
+ account_holder_name: z.ZodString;
1440
+ is_default: z.ZodBoolean;
1441
+ }, z.core.$strip>>;
1442
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
1443
+ paymentMethodId: z.ZodString;
730
1444
  }, z.core.$strip>;
731
1445
  /**
732
- * 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.
733
- *
1446
+ * Default payment method updated.
734
1447
  */
735
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
736
- id: z.ZodOptional<z.ZodString>;
1448
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
1449
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
1450
+ paymentMethodId: z.ZodString;
737
1451
  }, z.core.$strip>;
1452
+ /**
1453
+ * Payment method deleted.
1454
+ */
1455
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
738
1456
  /**
739
1457
  * An array of usage records.
740
1458
  */
@@ -753,6 +1471,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
753
1471
  * Returns a single object containing organization contact and billing address details.
754
1472
  */
755
1473
  export declare const zGetContactResponse: z.ZodObject<{
1474
+ type: z.ZodEnum<{
1475
+ business: "business";
1476
+ personal: "personal";
1477
+ }>;
756
1478
  company: z.ZodOptional<z.ZodString>;
757
1479
  address1: z.ZodOptional<z.ZodString>;
758
1480
  address2: z.ZodOptional<z.ZodString>;
@@ -896,6 +1618,10 @@ export declare const zGetContactResponse: z.ZodObject<{
896
1618
  }>>;
897
1619
  }, z.core.$strip>;
898
1620
  export declare const zUpdateContactBody: z.ZodObject<{
1621
+ type: z.ZodEnum<{
1622
+ business: "business";
1623
+ personal: "personal";
1624
+ }>;
899
1625
  company: z.ZodOptional<z.ZodString>;
900
1626
  address1: z.ZodOptional<z.ZodString>;
901
1627
  address2: z.ZodOptional<z.ZodString>;
@@ -1042,6 +1768,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
1042
1768
  * Successfully updated. Returns updated organization details.
1043
1769
  */
1044
1770
  export declare const zUpdateContactResponse: z.ZodObject<{
1771
+ type: z.ZodEnum<{
1772
+ business: "business";
1773
+ personal: "personal";
1774
+ }>;
1045
1775
  company: z.ZodOptional<z.ZodString>;
1046
1776
  address1: z.ZodOptional<z.ZodString>;
1047
1777
  address2: z.ZodOptional<z.ZodString>;
@@ -1215,22 +1945,7 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1215
1945
  name: z.ZodString;
1216
1946
  namespace: z.ZodString;
1217
1947
  chart: z.ZodString;
1218
- status: z.ZodEnum<{
1219
- InstallSucceeded: "InstallSucceeded";
1220
- InstallFailed: "InstallFailed";
1221
- UpgradeSucceeded: "UpgradeSucceeded";
1222
- UpgradeFailed: "UpgradeFailed";
1223
- TestSucceeded: "TestSucceeded";
1224
- TestFailed: "TestFailed";
1225
- RollbackSucceeded: "RollbackSucceeded";
1226
- RollbackFailed: "RollbackFailed";
1227
- UninstallSucceeded: "UninstallSucceeded";
1228
- UninstallFailed: "UninstallFailed";
1229
- ArtifactFailed: "ArtifactFailed";
1230
- DependencyNotReady: "DependencyNotReady";
1231
- Progressing: "Progressing";
1232
- SourceNotReady: "SourceNotReady";
1233
- }>;
1948
+ status: z.ZodString;
1234
1949
  version_current: z.ZodString;
1235
1950
  created_at: z.ZodString;
1236
1951
  updated_at: z.ZodString;
@@ -1271,22 +1986,7 @@ export declare const zGetChartResponse: z.ZodObject<{
1271
1986
  name: z.ZodString;
1272
1987
  namespace: z.ZodString;
1273
1988
  chart: z.ZodString;
1274
- status: z.ZodEnum<{
1275
- InstallSucceeded: "InstallSucceeded";
1276
- InstallFailed: "InstallFailed";
1277
- UpgradeSucceeded: "UpgradeSucceeded";
1278
- UpgradeFailed: "UpgradeFailed";
1279
- TestSucceeded: "TestSucceeded";
1280
- TestFailed: "TestFailed";
1281
- RollbackSucceeded: "RollbackSucceeded";
1282
- RollbackFailed: "RollbackFailed";
1283
- UninstallSucceeded: "UninstallSucceeded";
1284
- UninstallFailed: "UninstallFailed";
1285
- ArtifactFailed: "ArtifactFailed";
1286
- DependencyNotReady: "DependencyNotReady";
1287
- Progressing: "Progressing";
1288
- SourceNotReady: "SourceNotReady";
1289
- }>;
1989
+ status: z.ZodString;
1290
1990
  version_current: z.ZodString;
1291
1991
  created_at: z.ZodString;
1292
1992
  updated_at: z.ZodString;
@@ -1312,38 +2012,518 @@ export declare const zListFleetsPath: z.ZodObject<{
1312
2012
  */
1313
2013
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1314
2014
  limits: z.ZodOptional<z.ZodObject<{
1315
- cpu: z.ZodNumber;
2015
+ cpu: z.ZodOptional<z.ZodInt>;
1316
2016
  }, z.core.$strip>>;
1317
2017
  gcp: z.ZodOptional<z.ZodObject<{
1318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1319
- project: z.ZodString;
2018
+ enabled: z.ZodBoolean;
2019
+ project: z.ZodOptional<z.ZodString>;
1320
2020
  }, z.core.$strip>>;
1321
2021
  hetzner: z.ZodOptional<z.ZodObject<{
1322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1323
- apiKey: z.ZodString;
2022
+ enabled: z.ZodBoolean;
2023
+ apiKey: z.ZodOptional<z.ZodString>;
1324
2024
  }, z.core.$strip>>;
1325
2025
  aws: z.ZodOptional<z.ZodObject<{
1326
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1327
- controllerRoleArn: z.ZodString;
2026
+ enabled: z.ZodBoolean;
2027
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1328
2028
  }, z.core.$strip>>;
2029
+ constraints: z.ZodOptional<z.ZodObject<{
2030
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2031
+ "on-demand": "on-demand";
2032
+ spot: "spot";
2033
+ }>>>>;
2034
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2035
+ amd64: "amd64";
2036
+ arm64: "arm64";
2037
+ }>>>>;
2038
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2039
+ p3: "p3";
2040
+ cx: "cx";
2041
+ h1: "h1";
2042
+ h3: "h3";
2043
+ a1: "a1";
2044
+ a2: "a2";
2045
+ a3: "a3";
2046
+ a4: "a4";
2047
+ c1: "c1";
2048
+ c2: "c2";
2049
+ c2d: "c2d";
2050
+ c3: "c3";
2051
+ c3d: "c3d";
2052
+ c4: "c4";
2053
+ c4a: "c4a";
2054
+ c4d: "c4d";
2055
+ c5: "c5";
2056
+ c5a: "c5a";
2057
+ c5ad: "c5ad";
2058
+ c5d: "c5d";
2059
+ c5n: "c5n";
2060
+ c6a: "c6a";
2061
+ c6g: "c6g";
2062
+ c6gd: "c6gd";
2063
+ c6gn: "c6gn";
2064
+ c6i: "c6i";
2065
+ c6id: "c6id";
2066
+ c6in: "c6in";
2067
+ c7a: "c7a";
2068
+ c7g: "c7g";
2069
+ c7gd: "c7gd";
2070
+ c7gn: "c7gn";
2071
+ c7i: "c7i";
2072
+ "c7i-flex": "c7i-flex";
2073
+ c8g: "c8g";
2074
+ c8gd: "c8gd";
2075
+ cax: "cax";
2076
+ ccx: "ccx";
2077
+ cpx: "cpx";
2078
+ d2: "d2";
2079
+ d3: "d3";
2080
+ d3en: "d3en";
2081
+ dl1: "dl1";
2082
+ dl2q: "dl2q";
2083
+ e2: "e2";
2084
+ f1: "f1";
2085
+ f2: "f2";
2086
+ g1: "g1";
2087
+ g2: "g2";
2088
+ g4ad: "g4ad";
2089
+ g4dn: "g4dn";
2090
+ g5: "g5";
2091
+ g5g: "g5g";
2092
+ g6: "g6";
2093
+ g6e: "g6e";
2094
+ gr6: "gr6";
2095
+ hpc6a: "hpc6a";
2096
+ hpc6id: "hpc6id";
2097
+ hpc7a: "hpc7a";
2098
+ hpc7g: "hpc7g";
2099
+ i2: "i2";
2100
+ i3: "i3";
2101
+ i3en: "i3en";
2102
+ i4g: "i4g";
2103
+ i4i: "i4i";
2104
+ i7i: "i7i";
2105
+ i7ie: "i7ie";
2106
+ i8g: "i8g";
2107
+ im4gn: "im4gn";
2108
+ inf1: "inf1";
2109
+ inf2: "inf2";
2110
+ is4gen: "is4gen";
2111
+ m1: "m1";
2112
+ m2: "m2";
2113
+ m3: "m3";
2114
+ m4: "m4";
2115
+ m5: "m5";
2116
+ m5a: "m5a";
2117
+ m5ad: "m5ad";
2118
+ m5d: "m5d";
2119
+ m5dn: "m5dn";
2120
+ m5n: "m5n";
2121
+ m5zn: "m5zn";
2122
+ m6a: "m6a";
2123
+ m6g: "m6g";
2124
+ m6gd: "m6gd";
2125
+ m6i: "m6i";
2126
+ m6id: "m6id";
2127
+ m6idn: "m6idn";
2128
+ m6in: "m6in";
2129
+ m7a: "m7a";
2130
+ m7g: "m7g";
2131
+ m7gd: "m7gd";
2132
+ m7i: "m7i";
2133
+ "m7i-flex": "m7i-flex";
2134
+ m8g: "m8g";
2135
+ m8gd: "m8gd";
2136
+ n1: "n1";
2137
+ n2: "n2";
2138
+ n2d: "n2d";
2139
+ n4: "n4";
2140
+ p3dn: "p3dn";
2141
+ p4d: "p4d";
2142
+ p4de: "p4de";
2143
+ p5: "p5";
2144
+ p5e: "p5e";
2145
+ p5en: "p5en";
2146
+ "p6-b200": "p6-b200";
2147
+ r3: "r3";
2148
+ r4: "r4";
2149
+ r5: "r5";
2150
+ r5a: "r5a";
2151
+ r5ad: "r5ad";
2152
+ r5b: "r5b";
2153
+ r5d: "r5d";
2154
+ r5dn: "r5dn";
2155
+ r5n: "r5n";
2156
+ r6a: "r6a";
2157
+ r6g: "r6g";
2158
+ r6gd: "r6gd";
2159
+ r6i: "r6i";
2160
+ r6id: "r6id";
2161
+ r6idn: "r6idn";
2162
+ r6in: "r6in";
2163
+ r7a: "r7a";
2164
+ r7g: "r7g";
2165
+ r7gd: "r7gd";
2166
+ r7i: "r7i";
2167
+ r7iz: "r7iz";
2168
+ r8g: "r8g";
2169
+ r8gd: "r8gd";
2170
+ t2: "t2";
2171
+ t2a: "t2a";
2172
+ t2d: "t2d";
2173
+ t3: "t3";
2174
+ t3a: "t3a";
2175
+ t4g: "t4g";
2176
+ trn1: "trn1";
2177
+ trn1n: "trn1n";
2178
+ "u-3tb1": "u-3tb1";
2179
+ "u-6tb1": "u-6tb1";
2180
+ "u7i-12tb": "u7i-12tb";
2181
+ "u7i-6tb": "u7i-6tb";
2182
+ "u7i-8tb": "u7i-8tb";
2183
+ "u7in-16tb": "u7in-16tb";
2184
+ "u7in-24tb": "u7in-24tb";
2185
+ "u7in-32tb": "u7in-32tb";
2186
+ vt1: "vt1";
2187
+ x1: "x1";
2188
+ x1e: "x1e";
2189
+ x2gd: "x2gd";
2190
+ x2idn: "x2idn";
2191
+ x2iedn: "x2iedn";
2192
+ x2iezn: "x2iezn";
2193
+ x4: "x4";
2194
+ x8g: "x8g";
2195
+ z1d: "z1d";
2196
+ z3: "z3";
2197
+ }>>>;
2198
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2199
+ "africa-south1": "africa-south1";
2200
+ "ap-northeast-1": "ap-northeast-1";
2201
+ "ap-northeast-2": "ap-northeast-2";
2202
+ "ap-northeast-3": "ap-northeast-3";
2203
+ "ap-south-1": "ap-south-1";
2204
+ "ap-southeast-1": "ap-southeast-1";
2205
+ "ap-southeast-2": "ap-southeast-2";
2206
+ ash: "ash";
2207
+ "asia-east1": "asia-east1";
2208
+ "asia-east2": "asia-east2";
2209
+ "asia-northeast1": "asia-northeast1";
2210
+ "asia-northeast2": "asia-northeast2";
2211
+ "asia-northeast3": "asia-northeast3";
2212
+ "asia-south1": "asia-south1";
2213
+ "asia-south2": "asia-south2";
2214
+ "asia-southeast1": "asia-southeast1";
2215
+ "asia-southeast2": "asia-southeast2";
2216
+ "australia-southeast1": "australia-southeast1";
2217
+ "australia-southeast2": "australia-southeast2";
2218
+ "ca-central-1": "ca-central-1";
2219
+ "eu-central-1": "eu-central-1";
2220
+ "eu-central-2": "eu-central-2";
2221
+ "eu-north-1": "eu-north-1";
2222
+ "eu-west-1": "eu-west-1";
2223
+ "eu-west-2": "eu-west-2";
2224
+ "eu-west-3": "eu-west-3";
2225
+ "europe-central2": "europe-central2";
2226
+ "europe-north1": "europe-north1";
2227
+ "europe-southwest1": "europe-southwest1";
2228
+ "europe-west1": "europe-west1";
2229
+ "europe-west10": "europe-west10";
2230
+ "europe-west12": "europe-west12";
2231
+ "europe-west2": "europe-west2";
2232
+ "europe-west3": "europe-west3";
2233
+ "europe-west4": "europe-west4";
2234
+ "europe-west6": "europe-west6";
2235
+ "europe-west8": "europe-west8";
2236
+ "europe-west9": "europe-west9";
2237
+ fsn1: "fsn1";
2238
+ hel1: "hel1";
2239
+ hil: "hil";
2240
+ "me-central1": "me-central1";
2241
+ "me-central2": "me-central2";
2242
+ "me-west1": "me-west1";
2243
+ nbg1: "nbg1";
2244
+ "northamerica-northeast1": "northamerica-northeast1";
2245
+ "northamerica-northeast2": "northamerica-northeast2";
2246
+ "sa-east-1": "sa-east-1";
2247
+ sin: "sin";
2248
+ "southamerica-east1": "southamerica-east1";
2249
+ "southamerica-west1": "southamerica-west1";
2250
+ "us-central1": "us-central1";
2251
+ "us-east-1": "us-east-1";
2252
+ "us-east-2": "us-east-2";
2253
+ "us-east1": "us-east1";
2254
+ "us-east4": "us-east4";
2255
+ "us-east5": "us-east5";
2256
+ "us-south1": "us-south1";
2257
+ "us-west-1": "us-west-1";
2258
+ "us-west-2": "us-west-2";
2259
+ "us-west1": "us-west1";
2260
+ "us-west2": "us-west2";
2261
+ "us-west3": "us-west3";
2262
+ "us-west4": "us-west4";
2263
+ }>>>;
2264
+ }, z.core.$strip>>;
2265
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2266
+ aggressive: "aggressive";
2267
+ conservative: "conservative";
2268
+ }>>;
1329
2269
  id: z.ZodString;
1330
2270
  }, z.core.$strip>>;
1331
2271
  export declare const zCreateFleetBody: z.ZodObject<{
1332
2272
  limits: z.ZodOptional<z.ZodObject<{
1333
- cpu: z.ZodNumber;
2273
+ cpu: z.ZodOptional<z.ZodInt>;
1334
2274
  }, z.core.$strip>>;
1335
2275
  gcp: z.ZodOptional<z.ZodObject<{
1336
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1337
- project: z.ZodString;
2276
+ enabled: z.ZodBoolean;
2277
+ project: z.ZodOptional<z.ZodString>;
1338
2278
  }, z.core.$strip>>;
1339
2279
  hetzner: z.ZodOptional<z.ZodObject<{
1340
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1341
- apiKey: z.ZodString;
2280
+ enabled: z.ZodBoolean;
2281
+ apiKey: z.ZodOptional<z.ZodString>;
1342
2282
  }, z.core.$strip>>;
1343
2283
  aws: z.ZodOptional<z.ZodObject<{
1344
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1345
- controllerRoleArn: z.ZodString;
2284
+ enabled: z.ZodBoolean;
2285
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1346
2286
  }, z.core.$strip>>;
2287
+ constraints: z.ZodOptional<z.ZodObject<{
2288
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
+ "on-demand": "on-demand";
2290
+ spot: "spot";
2291
+ }>>>>;
2292
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2293
+ amd64: "amd64";
2294
+ arm64: "arm64";
2295
+ }>>>>;
2296
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2297
+ p3: "p3";
2298
+ cx: "cx";
2299
+ h1: "h1";
2300
+ h3: "h3";
2301
+ a1: "a1";
2302
+ a2: "a2";
2303
+ a3: "a3";
2304
+ a4: "a4";
2305
+ c1: "c1";
2306
+ c2: "c2";
2307
+ c2d: "c2d";
2308
+ c3: "c3";
2309
+ c3d: "c3d";
2310
+ c4: "c4";
2311
+ c4a: "c4a";
2312
+ c4d: "c4d";
2313
+ c5: "c5";
2314
+ c5a: "c5a";
2315
+ c5ad: "c5ad";
2316
+ c5d: "c5d";
2317
+ c5n: "c5n";
2318
+ c6a: "c6a";
2319
+ c6g: "c6g";
2320
+ c6gd: "c6gd";
2321
+ c6gn: "c6gn";
2322
+ c6i: "c6i";
2323
+ c6id: "c6id";
2324
+ c6in: "c6in";
2325
+ c7a: "c7a";
2326
+ c7g: "c7g";
2327
+ c7gd: "c7gd";
2328
+ c7gn: "c7gn";
2329
+ c7i: "c7i";
2330
+ "c7i-flex": "c7i-flex";
2331
+ c8g: "c8g";
2332
+ c8gd: "c8gd";
2333
+ cax: "cax";
2334
+ ccx: "ccx";
2335
+ cpx: "cpx";
2336
+ d2: "d2";
2337
+ d3: "d3";
2338
+ d3en: "d3en";
2339
+ dl1: "dl1";
2340
+ dl2q: "dl2q";
2341
+ e2: "e2";
2342
+ f1: "f1";
2343
+ f2: "f2";
2344
+ g1: "g1";
2345
+ g2: "g2";
2346
+ g4ad: "g4ad";
2347
+ g4dn: "g4dn";
2348
+ g5: "g5";
2349
+ g5g: "g5g";
2350
+ g6: "g6";
2351
+ g6e: "g6e";
2352
+ gr6: "gr6";
2353
+ hpc6a: "hpc6a";
2354
+ hpc6id: "hpc6id";
2355
+ hpc7a: "hpc7a";
2356
+ hpc7g: "hpc7g";
2357
+ i2: "i2";
2358
+ i3: "i3";
2359
+ i3en: "i3en";
2360
+ i4g: "i4g";
2361
+ i4i: "i4i";
2362
+ i7i: "i7i";
2363
+ i7ie: "i7ie";
2364
+ i8g: "i8g";
2365
+ im4gn: "im4gn";
2366
+ inf1: "inf1";
2367
+ inf2: "inf2";
2368
+ is4gen: "is4gen";
2369
+ m1: "m1";
2370
+ m2: "m2";
2371
+ m3: "m3";
2372
+ m4: "m4";
2373
+ m5: "m5";
2374
+ m5a: "m5a";
2375
+ m5ad: "m5ad";
2376
+ m5d: "m5d";
2377
+ m5dn: "m5dn";
2378
+ m5n: "m5n";
2379
+ m5zn: "m5zn";
2380
+ m6a: "m6a";
2381
+ m6g: "m6g";
2382
+ m6gd: "m6gd";
2383
+ m6i: "m6i";
2384
+ m6id: "m6id";
2385
+ m6idn: "m6idn";
2386
+ m6in: "m6in";
2387
+ m7a: "m7a";
2388
+ m7g: "m7g";
2389
+ m7gd: "m7gd";
2390
+ m7i: "m7i";
2391
+ "m7i-flex": "m7i-flex";
2392
+ m8g: "m8g";
2393
+ m8gd: "m8gd";
2394
+ n1: "n1";
2395
+ n2: "n2";
2396
+ n2d: "n2d";
2397
+ n4: "n4";
2398
+ p3dn: "p3dn";
2399
+ p4d: "p4d";
2400
+ p4de: "p4de";
2401
+ p5: "p5";
2402
+ p5e: "p5e";
2403
+ p5en: "p5en";
2404
+ "p6-b200": "p6-b200";
2405
+ r3: "r3";
2406
+ r4: "r4";
2407
+ r5: "r5";
2408
+ r5a: "r5a";
2409
+ r5ad: "r5ad";
2410
+ r5b: "r5b";
2411
+ r5d: "r5d";
2412
+ r5dn: "r5dn";
2413
+ r5n: "r5n";
2414
+ r6a: "r6a";
2415
+ r6g: "r6g";
2416
+ r6gd: "r6gd";
2417
+ r6i: "r6i";
2418
+ r6id: "r6id";
2419
+ r6idn: "r6idn";
2420
+ r6in: "r6in";
2421
+ r7a: "r7a";
2422
+ r7g: "r7g";
2423
+ r7gd: "r7gd";
2424
+ r7i: "r7i";
2425
+ r7iz: "r7iz";
2426
+ r8g: "r8g";
2427
+ r8gd: "r8gd";
2428
+ t2: "t2";
2429
+ t2a: "t2a";
2430
+ t2d: "t2d";
2431
+ t3: "t3";
2432
+ t3a: "t3a";
2433
+ t4g: "t4g";
2434
+ trn1: "trn1";
2435
+ trn1n: "trn1n";
2436
+ "u-3tb1": "u-3tb1";
2437
+ "u-6tb1": "u-6tb1";
2438
+ "u7i-12tb": "u7i-12tb";
2439
+ "u7i-6tb": "u7i-6tb";
2440
+ "u7i-8tb": "u7i-8tb";
2441
+ "u7in-16tb": "u7in-16tb";
2442
+ "u7in-24tb": "u7in-24tb";
2443
+ "u7in-32tb": "u7in-32tb";
2444
+ vt1: "vt1";
2445
+ x1: "x1";
2446
+ x1e: "x1e";
2447
+ x2gd: "x2gd";
2448
+ x2idn: "x2idn";
2449
+ x2iedn: "x2iedn";
2450
+ x2iezn: "x2iezn";
2451
+ x4: "x4";
2452
+ x8g: "x8g";
2453
+ z1d: "z1d";
2454
+ z3: "z3";
2455
+ }>>>;
2456
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2457
+ "africa-south1": "africa-south1";
2458
+ "ap-northeast-1": "ap-northeast-1";
2459
+ "ap-northeast-2": "ap-northeast-2";
2460
+ "ap-northeast-3": "ap-northeast-3";
2461
+ "ap-south-1": "ap-south-1";
2462
+ "ap-southeast-1": "ap-southeast-1";
2463
+ "ap-southeast-2": "ap-southeast-2";
2464
+ ash: "ash";
2465
+ "asia-east1": "asia-east1";
2466
+ "asia-east2": "asia-east2";
2467
+ "asia-northeast1": "asia-northeast1";
2468
+ "asia-northeast2": "asia-northeast2";
2469
+ "asia-northeast3": "asia-northeast3";
2470
+ "asia-south1": "asia-south1";
2471
+ "asia-south2": "asia-south2";
2472
+ "asia-southeast1": "asia-southeast1";
2473
+ "asia-southeast2": "asia-southeast2";
2474
+ "australia-southeast1": "australia-southeast1";
2475
+ "australia-southeast2": "australia-southeast2";
2476
+ "ca-central-1": "ca-central-1";
2477
+ "eu-central-1": "eu-central-1";
2478
+ "eu-central-2": "eu-central-2";
2479
+ "eu-north-1": "eu-north-1";
2480
+ "eu-west-1": "eu-west-1";
2481
+ "eu-west-2": "eu-west-2";
2482
+ "eu-west-3": "eu-west-3";
2483
+ "europe-central2": "europe-central2";
2484
+ "europe-north1": "europe-north1";
2485
+ "europe-southwest1": "europe-southwest1";
2486
+ "europe-west1": "europe-west1";
2487
+ "europe-west10": "europe-west10";
2488
+ "europe-west12": "europe-west12";
2489
+ "europe-west2": "europe-west2";
2490
+ "europe-west3": "europe-west3";
2491
+ "europe-west4": "europe-west4";
2492
+ "europe-west6": "europe-west6";
2493
+ "europe-west8": "europe-west8";
2494
+ "europe-west9": "europe-west9";
2495
+ fsn1: "fsn1";
2496
+ hel1: "hel1";
2497
+ hil: "hil";
2498
+ "me-central1": "me-central1";
2499
+ "me-central2": "me-central2";
2500
+ "me-west1": "me-west1";
2501
+ nbg1: "nbg1";
2502
+ "northamerica-northeast1": "northamerica-northeast1";
2503
+ "northamerica-northeast2": "northamerica-northeast2";
2504
+ "sa-east-1": "sa-east-1";
2505
+ sin: "sin";
2506
+ "southamerica-east1": "southamerica-east1";
2507
+ "southamerica-west1": "southamerica-west1";
2508
+ "us-central1": "us-central1";
2509
+ "us-east-1": "us-east-1";
2510
+ "us-east-2": "us-east-2";
2511
+ "us-east1": "us-east1";
2512
+ "us-east4": "us-east4";
2513
+ "us-east5": "us-east5";
2514
+ "us-south1": "us-south1";
2515
+ "us-west-1": "us-west-1";
2516
+ "us-west-2": "us-west-2";
2517
+ "us-west1": "us-west1";
2518
+ "us-west2": "us-west2";
2519
+ "us-west3": "us-west3";
2520
+ "us-west4": "us-west4";
2521
+ }>>>;
2522
+ }, z.core.$strip>>;
2523
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2524
+ aggressive: "aggressive";
2525
+ conservative: "conservative";
2526
+ }>>>;
1347
2527
  id: z.ZodString;
1348
2528
  }, z.core.$strip>;
1349
2529
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1370,38 +2550,518 @@ export declare const zGetFleetPath: z.ZodObject<{
1370
2550
  */
1371
2551
  export declare const zGetFleetResponse: z.ZodObject<{
1372
2552
  limits: z.ZodOptional<z.ZodObject<{
1373
- cpu: z.ZodNumber;
2553
+ cpu: z.ZodOptional<z.ZodInt>;
1374
2554
  }, z.core.$strip>>;
1375
2555
  gcp: z.ZodOptional<z.ZodObject<{
1376
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1377
- project: z.ZodString;
2556
+ enabled: z.ZodBoolean;
2557
+ project: z.ZodOptional<z.ZodString>;
1378
2558
  }, z.core.$strip>>;
1379
2559
  hetzner: z.ZodOptional<z.ZodObject<{
1380
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1381
- apiKey: z.ZodString;
2560
+ enabled: z.ZodBoolean;
2561
+ apiKey: z.ZodOptional<z.ZodString>;
1382
2562
  }, z.core.$strip>>;
1383
2563
  aws: z.ZodOptional<z.ZodObject<{
1384
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1385
- controllerRoleArn: z.ZodString;
2564
+ enabled: z.ZodBoolean;
2565
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1386
2566
  }, z.core.$strip>>;
2567
+ constraints: z.ZodOptional<z.ZodObject<{
2568
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2569
+ "on-demand": "on-demand";
2570
+ spot: "spot";
2571
+ }>>>>;
2572
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2573
+ amd64: "amd64";
2574
+ arm64: "arm64";
2575
+ }>>>>;
2576
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2577
+ p3: "p3";
2578
+ cx: "cx";
2579
+ h1: "h1";
2580
+ h3: "h3";
2581
+ a1: "a1";
2582
+ a2: "a2";
2583
+ a3: "a3";
2584
+ a4: "a4";
2585
+ c1: "c1";
2586
+ c2: "c2";
2587
+ c2d: "c2d";
2588
+ c3: "c3";
2589
+ c3d: "c3d";
2590
+ c4: "c4";
2591
+ c4a: "c4a";
2592
+ c4d: "c4d";
2593
+ c5: "c5";
2594
+ c5a: "c5a";
2595
+ c5ad: "c5ad";
2596
+ c5d: "c5d";
2597
+ c5n: "c5n";
2598
+ c6a: "c6a";
2599
+ c6g: "c6g";
2600
+ c6gd: "c6gd";
2601
+ c6gn: "c6gn";
2602
+ c6i: "c6i";
2603
+ c6id: "c6id";
2604
+ c6in: "c6in";
2605
+ c7a: "c7a";
2606
+ c7g: "c7g";
2607
+ c7gd: "c7gd";
2608
+ c7gn: "c7gn";
2609
+ c7i: "c7i";
2610
+ "c7i-flex": "c7i-flex";
2611
+ c8g: "c8g";
2612
+ c8gd: "c8gd";
2613
+ cax: "cax";
2614
+ ccx: "ccx";
2615
+ cpx: "cpx";
2616
+ d2: "d2";
2617
+ d3: "d3";
2618
+ d3en: "d3en";
2619
+ dl1: "dl1";
2620
+ dl2q: "dl2q";
2621
+ e2: "e2";
2622
+ f1: "f1";
2623
+ f2: "f2";
2624
+ g1: "g1";
2625
+ g2: "g2";
2626
+ g4ad: "g4ad";
2627
+ g4dn: "g4dn";
2628
+ g5: "g5";
2629
+ g5g: "g5g";
2630
+ g6: "g6";
2631
+ g6e: "g6e";
2632
+ gr6: "gr6";
2633
+ hpc6a: "hpc6a";
2634
+ hpc6id: "hpc6id";
2635
+ hpc7a: "hpc7a";
2636
+ hpc7g: "hpc7g";
2637
+ i2: "i2";
2638
+ i3: "i3";
2639
+ i3en: "i3en";
2640
+ i4g: "i4g";
2641
+ i4i: "i4i";
2642
+ i7i: "i7i";
2643
+ i7ie: "i7ie";
2644
+ i8g: "i8g";
2645
+ im4gn: "im4gn";
2646
+ inf1: "inf1";
2647
+ inf2: "inf2";
2648
+ is4gen: "is4gen";
2649
+ m1: "m1";
2650
+ m2: "m2";
2651
+ m3: "m3";
2652
+ m4: "m4";
2653
+ m5: "m5";
2654
+ m5a: "m5a";
2655
+ m5ad: "m5ad";
2656
+ m5d: "m5d";
2657
+ m5dn: "m5dn";
2658
+ m5n: "m5n";
2659
+ m5zn: "m5zn";
2660
+ m6a: "m6a";
2661
+ m6g: "m6g";
2662
+ m6gd: "m6gd";
2663
+ m6i: "m6i";
2664
+ m6id: "m6id";
2665
+ m6idn: "m6idn";
2666
+ m6in: "m6in";
2667
+ m7a: "m7a";
2668
+ m7g: "m7g";
2669
+ m7gd: "m7gd";
2670
+ m7i: "m7i";
2671
+ "m7i-flex": "m7i-flex";
2672
+ m8g: "m8g";
2673
+ m8gd: "m8gd";
2674
+ n1: "n1";
2675
+ n2: "n2";
2676
+ n2d: "n2d";
2677
+ n4: "n4";
2678
+ p3dn: "p3dn";
2679
+ p4d: "p4d";
2680
+ p4de: "p4de";
2681
+ p5: "p5";
2682
+ p5e: "p5e";
2683
+ p5en: "p5en";
2684
+ "p6-b200": "p6-b200";
2685
+ r3: "r3";
2686
+ r4: "r4";
2687
+ r5: "r5";
2688
+ r5a: "r5a";
2689
+ r5ad: "r5ad";
2690
+ r5b: "r5b";
2691
+ r5d: "r5d";
2692
+ r5dn: "r5dn";
2693
+ r5n: "r5n";
2694
+ r6a: "r6a";
2695
+ r6g: "r6g";
2696
+ r6gd: "r6gd";
2697
+ r6i: "r6i";
2698
+ r6id: "r6id";
2699
+ r6idn: "r6idn";
2700
+ r6in: "r6in";
2701
+ r7a: "r7a";
2702
+ r7g: "r7g";
2703
+ r7gd: "r7gd";
2704
+ r7i: "r7i";
2705
+ r7iz: "r7iz";
2706
+ r8g: "r8g";
2707
+ r8gd: "r8gd";
2708
+ t2: "t2";
2709
+ t2a: "t2a";
2710
+ t2d: "t2d";
2711
+ t3: "t3";
2712
+ t3a: "t3a";
2713
+ t4g: "t4g";
2714
+ trn1: "trn1";
2715
+ trn1n: "trn1n";
2716
+ "u-3tb1": "u-3tb1";
2717
+ "u-6tb1": "u-6tb1";
2718
+ "u7i-12tb": "u7i-12tb";
2719
+ "u7i-6tb": "u7i-6tb";
2720
+ "u7i-8tb": "u7i-8tb";
2721
+ "u7in-16tb": "u7in-16tb";
2722
+ "u7in-24tb": "u7in-24tb";
2723
+ "u7in-32tb": "u7in-32tb";
2724
+ vt1: "vt1";
2725
+ x1: "x1";
2726
+ x1e: "x1e";
2727
+ x2gd: "x2gd";
2728
+ x2idn: "x2idn";
2729
+ x2iedn: "x2iedn";
2730
+ x2iezn: "x2iezn";
2731
+ x4: "x4";
2732
+ x8g: "x8g";
2733
+ z1d: "z1d";
2734
+ z3: "z3";
2735
+ }>>>;
2736
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2737
+ "africa-south1": "africa-south1";
2738
+ "ap-northeast-1": "ap-northeast-1";
2739
+ "ap-northeast-2": "ap-northeast-2";
2740
+ "ap-northeast-3": "ap-northeast-3";
2741
+ "ap-south-1": "ap-south-1";
2742
+ "ap-southeast-1": "ap-southeast-1";
2743
+ "ap-southeast-2": "ap-southeast-2";
2744
+ ash: "ash";
2745
+ "asia-east1": "asia-east1";
2746
+ "asia-east2": "asia-east2";
2747
+ "asia-northeast1": "asia-northeast1";
2748
+ "asia-northeast2": "asia-northeast2";
2749
+ "asia-northeast3": "asia-northeast3";
2750
+ "asia-south1": "asia-south1";
2751
+ "asia-south2": "asia-south2";
2752
+ "asia-southeast1": "asia-southeast1";
2753
+ "asia-southeast2": "asia-southeast2";
2754
+ "australia-southeast1": "australia-southeast1";
2755
+ "australia-southeast2": "australia-southeast2";
2756
+ "ca-central-1": "ca-central-1";
2757
+ "eu-central-1": "eu-central-1";
2758
+ "eu-central-2": "eu-central-2";
2759
+ "eu-north-1": "eu-north-1";
2760
+ "eu-west-1": "eu-west-1";
2761
+ "eu-west-2": "eu-west-2";
2762
+ "eu-west-3": "eu-west-3";
2763
+ "europe-central2": "europe-central2";
2764
+ "europe-north1": "europe-north1";
2765
+ "europe-southwest1": "europe-southwest1";
2766
+ "europe-west1": "europe-west1";
2767
+ "europe-west10": "europe-west10";
2768
+ "europe-west12": "europe-west12";
2769
+ "europe-west2": "europe-west2";
2770
+ "europe-west3": "europe-west3";
2771
+ "europe-west4": "europe-west4";
2772
+ "europe-west6": "europe-west6";
2773
+ "europe-west8": "europe-west8";
2774
+ "europe-west9": "europe-west9";
2775
+ fsn1: "fsn1";
2776
+ hel1: "hel1";
2777
+ hil: "hil";
2778
+ "me-central1": "me-central1";
2779
+ "me-central2": "me-central2";
2780
+ "me-west1": "me-west1";
2781
+ nbg1: "nbg1";
2782
+ "northamerica-northeast1": "northamerica-northeast1";
2783
+ "northamerica-northeast2": "northamerica-northeast2";
2784
+ "sa-east-1": "sa-east-1";
2785
+ sin: "sin";
2786
+ "southamerica-east1": "southamerica-east1";
2787
+ "southamerica-west1": "southamerica-west1";
2788
+ "us-central1": "us-central1";
2789
+ "us-east-1": "us-east-1";
2790
+ "us-east-2": "us-east-2";
2791
+ "us-east1": "us-east1";
2792
+ "us-east4": "us-east4";
2793
+ "us-east5": "us-east5";
2794
+ "us-south1": "us-south1";
2795
+ "us-west-1": "us-west-1";
2796
+ "us-west-2": "us-west-2";
2797
+ "us-west1": "us-west1";
2798
+ "us-west2": "us-west2";
2799
+ "us-west3": "us-west3";
2800
+ "us-west4": "us-west4";
2801
+ }>>>;
2802
+ }, z.core.$strip>>;
2803
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2804
+ aggressive: "aggressive";
2805
+ conservative: "conservative";
2806
+ }>>;
1387
2807
  id: z.ZodString;
1388
2808
  }, z.core.$strip>;
1389
2809
  export declare const zUpdateFleetBody: z.ZodObject<{
1390
2810
  limits: z.ZodOptional<z.ZodObject<{
1391
- cpu: z.ZodNumber;
2811
+ cpu: z.ZodOptional<z.ZodInt>;
1392
2812
  }, z.core.$strip>>;
1393
2813
  gcp: z.ZodOptional<z.ZodObject<{
1394
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1395
- project: z.ZodString;
2814
+ enabled: z.ZodBoolean;
2815
+ project: z.ZodOptional<z.ZodString>;
1396
2816
  }, z.core.$strip>>;
1397
2817
  hetzner: z.ZodOptional<z.ZodObject<{
1398
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1399
- apiKey: z.ZodString;
2818
+ enabled: z.ZodBoolean;
2819
+ apiKey: z.ZodOptional<z.ZodString>;
1400
2820
  }, z.core.$strip>>;
1401
2821
  aws: z.ZodOptional<z.ZodObject<{
1402
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1403
- controllerRoleArn: z.ZodString;
2822
+ enabled: z.ZodBoolean;
2823
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2824
+ }, z.core.$strip>>;
2825
+ constraints: z.ZodOptional<z.ZodObject<{
2826
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2827
+ "on-demand": "on-demand";
2828
+ spot: "spot";
2829
+ }>>>;
2830
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2831
+ amd64: "amd64";
2832
+ arm64: "arm64";
2833
+ }>>>;
2834
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2835
+ p3: "p3";
2836
+ cx: "cx";
2837
+ h1: "h1";
2838
+ h3: "h3";
2839
+ a1: "a1";
2840
+ a2: "a2";
2841
+ a3: "a3";
2842
+ a4: "a4";
2843
+ c1: "c1";
2844
+ c2: "c2";
2845
+ c2d: "c2d";
2846
+ c3: "c3";
2847
+ c3d: "c3d";
2848
+ c4: "c4";
2849
+ c4a: "c4a";
2850
+ c4d: "c4d";
2851
+ c5: "c5";
2852
+ c5a: "c5a";
2853
+ c5ad: "c5ad";
2854
+ c5d: "c5d";
2855
+ c5n: "c5n";
2856
+ c6a: "c6a";
2857
+ c6g: "c6g";
2858
+ c6gd: "c6gd";
2859
+ c6gn: "c6gn";
2860
+ c6i: "c6i";
2861
+ c6id: "c6id";
2862
+ c6in: "c6in";
2863
+ c7a: "c7a";
2864
+ c7g: "c7g";
2865
+ c7gd: "c7gd";
2866
+ c7gn: "c7gn";
2867
+ c7i: "c7i";
2868
+ "c7i-flex": "c7i-flex";
2869
+ c8g: "c8g";
2870
+ c8gd: "c8gd";
2871
+ cax: "cax";
2872
+ ccx: "ccx";
2873
+ cpx: "cpx";
2874
+ d2: "d2";
2875
+ d3: "d3";
2876
+ d3en: "d3en";
2877
+ dl1: "dl1";
2878
+ dl2q: "dl2q";
2879
+ e2: "e2";
2880
+ f1: "f1";
2881
+ f2: "f2";
2882
+ g1: "g1";
2883
+ g2: "g2";
2884
+ g4ad: "g4ad";
2885
+ g4dn: "g4dn";
2886
+ g5: "g5";
2887
+ g5g: "g5g";
2888
+ g6: "g6";
2889
+ g6e: "g6e";
2890
+ gr6: "gr6";
2891
+ hpc6a: "hpc6a";
2892
+ hpc6id: "hpc6id";
2893
+ hpc7a: "hpc7a";
2894
+ hpc7g: "hpc7g";
2895
+ i2: "i2";
2896
+ i3: "i3";
2897
+ i3en: "i3en";
2898
+ i4g: "i4g";
2899
+ i4i: "i4i";
2900
+ i7i: "i7i";
2901
+ i7ie: "i7ie";
2902
+ i8g: "i8g";
2903
+ im4gn: "im4gn";
2904
+ inf1: "inf1";
2905
+ inf2: "inf2";
2906
+ is4gen: "is4gen";
2907
+ m1: "m1";
2908
+ m2: "m2";
2909
+ m3: "m3";
2910
+ m4: "m4";
2911
+ m5: "m5";
2912
+ m5a: "m5a";
2913
+ m5ad: "m5ad";
2914
+ m5d: "m5d";
2915
+ m5dn: "m5dn";
2916
+ m5n: "m5n";
2917
+ m5zn: "m5zn";
2918
+ m6a: "m6a";
2919
+ m6g: "m6g";
2920
+ m6gd: "m6gd";
2921
+ m6i: "m6i";
2922
+ m6id: "m6id";
2923
+ m6idn: "m6idn";
2924
+ m6in: "m6in";
2925
+ m7a: "m7a";
2926
+ m7g: "m7g";
2927
+ m7gd: "m7gd";
2928
+ m7i: "m7i";
2929
+ "m7i-flex": "m7i-flex";
2930
+ m8g: "m8g";
2931
+ m8gd: "m8gd";
2932
+ n1: "n1";
2933
+ n2: "n2";
2934
+ n2d: "n2d";
2935
+ n4: "n4";
2936
+ p3dn: "p3dn";
2937
+ p4d: "p4d";
2938
+ p4de: "p4de";
2939
+ p5: "p5";
2940
+ p5e: "p5e";
2941
+ p5en: "p5en";
2942
+ "p6-b200": "p6-b200";
2943
+ r3: "r3";
2944
+ r4: "r4";
2945
+ r5: "r5";
2946
+ r5a: "r5a";
2947
+ r5ad: "r5ad";
2948
+ r5b: "r5b";
2949
+ r5d: "r5d";
2950
+ r5dn: "r5dn";
2951
+ r5n: "r5n";
2952
+ r6a: "r6a";
2953
+ r6g: "r6g";
2954
+ r6gd: "r6gd";
2955
+ r6i: "r6i";
2956
+ r6id: "r6id";
2957
+ r6idn: "r6idn";
2958
+ r6in: "r6in";
2959
+ r7a: "r7a";
2960
+ r7g: "r7g";
2961
+ r7gd: "r7gd";
2962
+ r7i: "r7i";
2963
+ r7iz: "r7iz";
2964
+ r8g: "r8g";
2965
+ r8gd: "r8gd";
2966
+ t2: "t2";
2967
+ t2a: "t2a";
2968
+ t2d: "t2d";
2969
+ t3: "t3";
2970
+ t3a: "t3a";
2971
+ t4g: "t4g";
2972
+ trn1: "trn1";
2973
+ trn1n: "trn1n";
2974
+ "u-3tb1": "u-3tb1";
2975
+ "u-6tb1": "u-6tb1";
2976
+ "u7i-12tb": "u7i-12tb";
2977
+ "u7i-6tb": "u7i-6tb";
2978
+ "u7i-8tb": "u7i-8tb";
2979
+ "u7in-16tb": "u7in-16tb";
2980
+ "u7in-24tb": "u7in-24tb";
2981
+ "u7in-32tb": "u7in-32tb";
2982
+ vt1: "vt1";
2983
+ x1: "x1";
2984
+ x1e: "x1e";
2985
+ x2gd: "x2gd";
2986
+ x2idn: "x2idn";
2987
+ x2iedn: "x2iedn";
2988
+ x2iezn: "x2iezn";
2989
+ x4: "x4";
2990
+ x8g: "x8g";
2991
+ z1d: "z1d";
2992
+ z3: "z3";
2993
+ }>>>;
2994
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2995
+ "africa-south1": "africa-south1";
2996
+ "ap-northeast-1": "ap-northeast-1";
2997
+ "ap-northeast-2": "ap-northeast-2";
2998
+ "ap-northeast-3": "ap-northeast-3";
2999
+ "ap-south-1": "ap-south-1";
3000
+ "ap-southeast-1": "ap-southeast-1";
3001
+ "ap-southeast-2": "ap-southeast-2";
3002
+ ash: "ash";
3003
+ "asia-east1": "asia-east1";
3004
+ "asia-east2": "asia-east2";
3005
+ "asia-northeast1": "asia-northeast1";
3006
+ "asia-northeast2": "asia-northeast2";
3007
+ "asia-northeast3": "asia-northeast3";
3008
+ "asia-south1": "asia-south1";
3009
+ "asia-south2": "asia-south2";
3010
+ "asia-southeast1": "asia-southeast1";
3011
+ "asia-southeast2": "asia-southeast2";
3012
+ "australia-southeast1": "australia-southeast1";
3013
+ "australia-southeast2": "australia-southeast2";
3014
+ "ca-central-1": "ca-central-1";
3015
+ "eu-central-1": "eu-central-1";
3016
+ "eu-central-2": "eu-central-2";
3017
+ "eu-north-1": "eu-north-1";
3018
+ "eu-west-1": "eu-west-1";
3019
+ "eu-west-2": "eu-west-2";
3020
+ "eu-west-3": "eu-west-3";
3021
+ "europe-central2": "europe-central2";
3022
+ "europe-north1": "europe-north1";
3023
+ "europe-southwest1": "europe-southwest1";
3024
+ "europe-west1": "europe-west1";
3025
+ "europe-west10": "europe-west10";
3026
+ "europe-west12": "europe-west12";
3027
+ "europe-west2": "europe-west2";
3028
+ "europe-west3": "europe-west3";
3029
+ "europe-west4": "europe-west4";
3030
+ "europe-west6": "europe-west6";
3031
+ "europe-west8": "europe-west8";
3032
+ "europe-west9": "europe-west9";
3033
+ fsn1: "fsn1";
3034
+ hel1: "hel1";
3035
+ hil: "hil";
3036
+ "me-central1": "me-central1";
3037
+ "me-central2": "me-central2";
3038
+ "me-west1": "me-west1";
3039
+ nbg1: "nbg1";
3040
+ "northamerica-northeast1": "northamerica-northeast1";
3041
+ "northamerica-northeast2": "northamerica-northeast2";
3042
+ "sa-east-1": "sa-east-1";
3043
+ sin: "sin";
3044
+ "southamerica-east1": "southamerica-east1";
3045
+ "southamerica-west1": "southamerica-west1";
3046
+ "us-central1": "us-central1";
3047
+ "us-east-1": "us-east-1";
3048
+ "us-east-2": "us-east-2";
3049
+ "us-east1": "us-east1";
3050
+ "us-east4": "us-east4";
3051
+ "us-east5": "us-east5";
3052
+ "us-south1": "us-south1";
3053
+ "us-west-1": "us-west-1";
3054
+ "us-west-2": "us-west-2";
3055
+ "us-west1": "us-west1";
3056
+ "us-west2": "us-west2";
3057
+ "us-west3": "us-west3";
3058
+ "us-west4": "us-west4";
3059
+ }>>>;
1404
3060
  }, z.core.$strip>>;
3061
+ scalingProfile: z.ZodEnum<{
3062
+ aggressive: "aggressive";
3063
+ conservative: "conservative";
3064
+ }>;
1405
3065
  }, z.core.$strip>;
1406
3066
  export declare const zUpdateFleetPath: z.ZodObject<{
1407
3067
  cluster_id: z.ZodString;
@@ -1423,12 +3083,7 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1423
3083
  basic: "basic";
1424
3084
  pro: "pro";
1425
3085
  }>;
1426
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1427
- "staging-1a": "staging-1a";
1428
- "northamerica-central-1": "northamerica-central-1";
1429
- "europe-central-1a": "europe-central-1a";
1430
- "northamerica-central-1a": "northamerica-central-1a";
1431
- }>>>;
3086
+ region: z.ZodString;
1432
3087
  id: z.ZodUUID;
1433
3088
  status: z.ZodEnum<{
1434
3089
  deleted: "deleted";
@@ -1458,18 +3113,8 @@ export declare const zCreateClusterBody: z.ZodObject<{
1458
3113
  basic: "basic";
1459
3114
  pro: "pro";
1460
3115
  }>;
1461
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
- "staging-1a": "staging-1a";
1463
- "northamerica-central-1": "northamerica-central-1";
1464
- "europe-central-1a": "europe-central-1a";
1465
- "northamerica-central-1a": "northamerica-central-1a";
1466
- }>>>;
1467
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1468
- "1.x.x-cfke.x": "1.x.x-cfke.x";
1469
- "1.31.x-cfke.x": "1.31.x-cfke.x";
1470
- "1.32.x-cfke.x": "1.32.x-cfke.x";
1471
- "1.33.x-cfke.x": "1.33.x-cfke.x";
1472
- }>>>;
3116
+ region: z.ZodString;
3117
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
1473
3118
  }, z.core.$strip>;
1474
3119
  /**
1475
3120
  * Successfully created. Returns created Cluster ID.
@@ -1479,7 +3124,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
1479
3124
  cluster_id: z.ZodString;
1480
3125
  }, z.core.$strip>;
1481
3126
  /**
1482
- * Successfully deleted.
3127
+ * Successfully deleted. The cluster has been torn down.
1483
3128
  */
1484
3129
  export declare const zDeleteClusterResponse: z.ZodString;
1485
3130
  export declare const zGetClusterPath: z.ZodObject<{
@@ -1494,12 +3139,7 @@ export declare const zGetClusterResponse: z.ZodObject<{
1494
3139
  basic: "basic";
1495
3140
  pro: "pro";
1496
3141
  }>;
1497
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1498
- "staging-1a": "staging-1a";
1499
- "northamerica-central-1": "northamerica-central-1";
1500
- "europe-central-1a": "europe-central-1a";
1501
- "northamerica-central-1a": "northamerica-central-1a";
1502
- }>>>;
3142
+ region: z.ZodString;
1503
3143
  id: z.ZodUUID;
1504
3144
  status: z.ZodEnum<{
1505
3145
  deleted: "deleted";
@@ -1543,12 +3183,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1543
3183
  basic: "basic";
1544
3184
  pro: "pro";
1545
3185
  }>;
1546
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1547
- "staging-1a": "staging-1a";
1548
- "northamerica-central-1": "northamerica-central-1";
1549
- "europe-central-1a": "europe-central-1a";
1550
- "northamerica-central-1a": "northamerica-central-1a";
1551
- }>>>;
3186
+ region: z.ZodString;
1552
3187
  id: z.ZodUUID;
1553
3188
  status: z.ZodEnum<{
1554
3189
  deleted: "deleted";
@@ -1582,6 +3217,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1582
3217
  certificate_authority: z.ZodString;
1583
3218
  endpoint: z.ZodURL;
1584
3219
  cluster_dns: z.ZodString;
3220
+ pod_cidr: z.ZodString;
1585
3221
  auth_key: z.ZodString;
1586
3222
  bootstrap_token: z.ZodString;
1587
3223
  versions: z.ZodObject<{
@@ -1605,9 +3241,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1605
3241
  date_created: z.ZodISODateTime;
1606
3242
  email: z.ZodOptional<z.ZodEmail>;
1607
3243
  code: z.ZodOptional<z.ZodString>;
3244
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3245
+ Administrator: "Administrator";
3246
+ User: "User";
3247
+ }>>>;
1608
3248
  }, z.core.$strip>>;
1609
3249
  export declare const zCreateInviteBody: z.ZodObject<{
1610
- email: z.ZodOptional<z.ZodString>;
3250
+ email: z.ZodEmail;
3251
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3252
+ Administrator: "Administrator";
3253
+ User: "User";
3254
+ }>>>;
1611
3255
  }, z.core.$strip>;
1612
3256
  /**
1613
3257
  * Successfully created. Returns created invite details.
@@ -1618,22 +3262,23 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1618
3262
  date_created: z.ZodISODateTime;
1619
3263
  email: z.ZodOptional<z.ZodEmail>;
1620
3264
  code: z.ZodOptional<z.ZodString>;
3265
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3266
+ Administrator: "Administrator";
3267
+ User: "User";
3268
+ }>>>;
1621
3269
  }, z.core.$strip>;
1622
3270
  export declare const zGetInvitePath: z.ZodObject<{
1623
3271
  code: z.ZodString;
1624
3272
  }, z.core.$strip>;
1625
3273
  /**
1626
- * Returns a single object containing invite details.
3274
+ * The invitation code is valid. Returns the invited email and organization.
1627
3275
  */
1628
3276
  export declare const zGetInviteResponse: z.ZodObject<{
1629
- id: z.ZodOptional<z.ZodString>;
1630
- organization_id: z.ZodOptional<z.ZodUUID>;
1631
- date_created: z.ZodISODateTime;
1632
3277
  email: z.ZodOptional<z.ZodEmail>;
1633
- code: z.ZodOptional<z.ZodString>;
3278
+ organization_id: z.ZodOptional<z.ZodString>;
1634
3279
  }, z.core.$strip>;
1635
3280
  export declare const zDeleteInvitePath: z.ZodObject<{
1636
- email: z.ZodString;
3281
+ email: z.ZodEmail;
1637
3282
  }, z.core.$strip>;
1638
3283
  /**
1639
3284
  * An array of chart listings in the marketplace.
@@ -1698,6 +3343,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
1698
3343
  export declare const zGetOrganizationResponse: z.ZodObject<{
1699
3344
  id: z.ZodUUID;
1700
3345
  name: z.ZodOptional<z.ZodString>;
3346
+ type: z.ZodEnum<{
3347
+ business: "business";
3348
+ personal: "personal";
3349
+ }>;
1701
3350
  date_created: z.ZodISODateTime;
1702
3351
  quota: z.ZodObject<{
1703
3352
  basic_clusters_max: z.ZodInt;
@@ -1718,14 +3367,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1718
3367
  closed: "closed";
1719
3368
  suspended: "suspended";
1720
3369
  }>;
3370
+ verification: z.ZodEnum<{
3371
+ none: "none";
3372
+ submitted: "submitted";
3373
+ verified: "verified";
3374
+ }>;
1721
3375
  }, z.core.$strip>;
1722
3376
  export declare const zCreateOrganizationBody: z.ZodObject<{
3377
+ type: z.ZodEnum<{
3378
+ business: "business";
3379
+ personal: "personal";
3380
+ }>;
1723
3381
  email: z.ZodEmail;
1724
3382
  first_name: z.ZodString;
1725
3383
  last_name: z.ZodString;
1726
3384
  company_name: z.ZodString;
1727
3385
  password: z.ZodString;
1728
3386
  }, z.core.$strip>;
3387
+ /**
3388
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3389
+ *
3390
+ */
3391
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
3392
+ id: z.ZodString;
3393
+ }, z.core.$strip>;
1729
3394
  /**
1730
3395
  * List of repositories
1731
3396
  */
@@ -2115,14 +3780,6 @@ export declare const zCreateUserBody: z.ZodObject<{
2115
3780
  last_name: z.ZodString;
2116
3781
  code: z.ZodString;
2117
3782
  password: z.ZodString;
2118
- status: z.ZodOptional<z.ZodEnum<{
2119
- active: "active";
2120
- inactive: "inactive";
2121
- }>>;
2122
- role: z.ZodOptional<z.ZodEnum<{
2123
- Administrator: "Administrator";
2124
- User: "User";
2125
- }>>;
2126
3783
  }, z.core.$strip>;
2127
3784
  /**
2128
3785
  * Successfully created. Returns created user details.