@cloudfleet/sdk 0.0.1-d824507 → 0.0.1-d940b00

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,36 @@ 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";
191
+ region: z.ZodString;
192
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
193
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
194
+ stable: "stable";
195
+ rapid: "rapid";
196
+ extended: "extended";
213
197
  }>>>;
198
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
199
+ gpu_sharing_strategy: z.ZodEnum<{
200
+ none: "none";
201
+ mps: "mps";
202
+ time_slicing: "time_slicing";
203
+ }>;
204
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
205
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
206
+ }, z.core.$strip>>>;
207
+ networking: z.ZodOptional<z.ZodObject<{
208
+ pod_cidr: z.ZodOptional<z.ZodString>;
209
+ service_cidr: z.ZodOptional<z.ZodString>;
210
+ cluster_dns: z.ZodOptional<z.ZodString>;
211
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
212
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
213
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
214
+ }, z.core.$strip>>;
214
215
  }, z.core.$strip>;
215
216
  export declare const zClusterJoinInformation: z.ZodObject<{
216
217
  certificate_authority: z.ZodString;
217
218
  endpoint: z.ZodURL;
218
219
  cluster_dns: z.ZodString;
220
+ pod_cidr: z.ZodString;
219
221
  auth_key: z.ZodString;
220
222
  bootstrap_token: z.ZodString;
221
223
  versions: z.ZodObject<{
@@ -236,17 +238,31 @@ export declare const zCluster: z.ZodObject<{
236
238
  basic: "basic";
237
239
  pro: "pro";
238
240
  }>;
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
- }>>>;
241
+ region: z.ZodString;
242
+ networking: z.ZodOptional<z.ZodObject<{
243
+ pod_cidr: z.ZodOptional<z.ZodString>;
244
+ service_cidr: z.ZodOptional<z.ZodString>;
245
+ cluster_dns: z.ZodOptional<z.ZodString>;
246
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
247
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
248
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
249
+ }, z.core.$strip>>;
250
+ release_channel: z.ZodOptional<z.ZodEnum<{
251
+ stable: "stable";
252
+ rapid: "rapid";
253
+ extended: "extended";
254
+ }>>;
255
+ features: z.ZodOptional<z.ZodObject<{
256
+ gpu_sharing_strategy: z.ZodEnum<{
257
+ none: "none";
258
+ mps: "mps";
259
+ time_slicing: "time_slicing";
260
+ }>;
261
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
262
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
263
+ }, z.core.$strip>>;
245
264
  id: z.ZodUUID;
246
265
  status: z.ZodEnum<{
247
- deleted: "deleted";
248
- failed: "failed";
249
- active: "active";
250
266
  disabled: "disabled";
251
267
  creating: "creating";
252
268
  deployed: "deployed";
@@ -255,6 +271,9 @@ export declare const zCluster: z.ZodObject<{
255
271
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
256
272
  "": "";
257
273
  }>]>>;
274
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
275
+ "": "";
276
+ }>]>>;
258
277
  certificate_ca: z.ZodOptional<z.ZodString>;
259
278
  version_current: z.ZodOptional<z.ZodString>;
260
279
  created_at: z.ZodOptional<z.ZodString>;
@@ -269,59 +288,804 @@ export declare const zClusterUpdateInput: z.ZodObject<{
269
288
  pro: "pro";
270
289
  }>;
271
290
  version_channel: z.ZodOptional<z.ZodString>;
291
+ release_channel: z.ZodOptional<z.ZodEnum<{
292
+ stable: "stable";
293
+ rapid: "rapid";
294
+ extended: "extended";
295
+ }>>;
296
+ features: z.ZodOptional<z.ZodObject<{
297
+ gpu_sharing_strategy: z.ZodEnum<{
298
+ none: "none";
299
+ mps: "mps";
300
+ time_slicing: "time_slicing";
301
+ }>;
302
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
303
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
304
+ }, z.core.$strip>>;
272
305
  }, z.core.$strip>;
273
306
  export declare const zFleetCreateInput: z.ZodObject<{
274
307
  limits: z.ZodOptional<z.ZodObject<{
275
- cpu: z.ZodNumber;
308
+ cpu: z.ZodOptional<z.ZodInt>;
276
309
  }, z.core.$strip>>;
277
310
  gcp: z.ZodOptional<z.ZodObject<{
278
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
279
- project: z.ZodString;
311
+ enabled: z.ZodBoolean;
312
+ project: z.ZodOptional<z.ZodString>;
280
313
  }, z.core.$strip>>;
281
314
  hetzner: z.ZodOptional<z.ZodObject<{
282
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
283
- apiKey: z.ZodString;
315
+ enabled: z.ZodBoolean;
316
+ apiKey: z.ZodOptional<z.ZodString>;
284
317
  }, z.core.$strip>>;
285
318
  aws: z.ZodOptional<z.ZodObject<{
286
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
287
- controllerRoleArn: z.ZodString;
319
+ enabled: z.ZodBoolean;
320
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
288
321
  }, z.core.$strip>>;
322
+ constraints: z.ZodOptional<z.ZodObject<{
323
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
324
+ "on-demand": "on-demand";
325
+ spot: "spot";
326
+ }>>>>;
327
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
328
+ amd64: "amd64";
329
+ arm64: "arm64";
330
+ }>>>>;
331
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
332
+ p3: "p3";
333
+ cx: "cx";
334
+ h1: "h1";
335
+ h3: "h3";
336
+ a1: "a1";
337
+ a2: "a2";
338
+ a3: "a3";
339
+ a4: "a4";
340
+ c1: "c1";
341
+ c2: "c2";
342
+ c2d: "c2d";
343
+ c3: "c3";
344
+ c3d: "c3d";
345
+ c4: "c4";
346
+ c4a: "c4a";
347
+ c4d: "c4d";
348
+ c5: "c5";
349
+ c5a: "c5a";
350
+ c5ad: "c5ad";
351
+ c5d: "c5d";
352
+ c5n: "c5n";
353
+ c6a: "c6a";
354
+ c6g: "c6g";
355
+ c6gd: "c6gd";
356
+ c6gn: "c6gn";
357
+ c6i: "c6i";
358
+ c6id: "c6id";
359
+ c6in: "c6in";
360
+ c7a: "c7a";
361
+ c7g: "c7g";
362
+ c7gd: "c7gd";
363
+ c7gn: "c7gn";
364
+ c7i: "c7i";
365
+ "c7i-flex": "c7i-flex";
366
+ c8g: "c8g";
367
+ c8gd: "c8gd";
368
+ cax: "cax";
369
+ ccx: "ccx";
370
+ cpx: "cpx";
371
+ d2: "d2";
372
+ d3: "d3";
373
+ d3en: "d3en";
374
+ dl1: "dl1";
375
+ dl2q: "dl2q";
376
+ e2: "e2";
377
+ f1: "f1";
378
+ f2: "f2";
379
+ g1: "g1";
380
+ g2: "g2";
381
+ g4ad: "g4ad";
382
+ g4dn: "g4dn";
383
+ g5: "g5";
384
+ g5g: "g5g";
385
+ g6: "g6";
386
+ g6e: "g6e";
387
+ gr6: "gr6";
388
+ hpc6a: "hpc6a";
389
+ hpc6id: "hpc6id";
390
+ hpc7a: "hpc7a";
391
+ hpc7g: "hpc7g";
392
+ i2: "i2";
393
+ i3: "i3";
394
+ i3en: "i3en";
395
+ i4g: "i4g";
396
+ i4i: "i4i";
397
+ i7i: "i7i";
398
+ i7ie: "i7ie";
399
+ i8g: "i8g";
400
+ im4gn: "im4gn";
401
+ inf1: "inf1";
402
+ inf2: "inf2";
403
+ is4gen: "is4gen";
404
+ m1: "m1";
405
+ m2: "m2";
406
+ m3: "m3";
407
+ m4: "m4";
408
+ m5: "m5";
409
+ m5a: "m5a";
410
+ m5ad: "m5ad";
411
+ m5d: "m5d";
412
+ m5dn: "m5dn";
413
+ m5n: "m5n";
414
+ m5zn: "m5zn";
415
+ m6a: "m6a";
416
+ m6g: "m6g";
417
+ m6gd: "m6gd";
418
+ m6i: "m6i";
419
+ m6id: "m6id";
420
+ m6idn: "m6idn";
421
+ m6in: "m6in";
422
+ m7a: "m7a";
423
+ m7g: "m7g";
424
+ m7gd: "m7gd";
425
+ m7i: "m7i";
426
+ "m7i-flex": "m7i-flex";
427
+ m8g: "m8g";
428
+ m8gd: "m8gd";
429
+ n1: "n1";
430
+ n2: "n2";
431
+ n2d: "n2d";
432
+ n4: "n4";
433
+ p3dn: "p3dn";
434
+ p4d: "p4d";
435
+ p4de: "p4de";
436
+ p5: "p5";
437
+ p5e: "p5e";
438
+ p5en: "p5en";
439
+ "p6-b200": "p6-b200";
440
+ r3: "r3";
441
+ r4: "r4";
442
+ r5: "r5";
443
+ r5a: "r5a";
444
+ r5ad: "r5ad";
445
+ r5b: "r5b";
446
+ r5d: "r5d";
447
+ r5dn: "r5dn";
448
+ r5n: "r5n";
449
+ r6a: "r6a";
450
+ r6g: "r6g";
451
+ r6gd: "r6gd";
452
+ r6i: "r6i";
453
+ r6id: "r6id";
454
+ r6idn: "r6idn";
455
+ r6in: "r6in";
456
+ r7a: "r7a";
457
+ r7g: "r7g";
458
+ r7gd: "r7gd";
459
+ r7i: "r7i";
460
+ r7iz: "r7iz";
461
+ r8g: "r8g";
462
+ r8gd: "r8gd";
463
+ t2: "t2";
464
+ t2a: "t2a";
465
+ t2d: "t2d";
466
+ t3: "t3";
467
+ t3a: "t3a";
468
+ t4g: "t4g";
469
+ trn1: "trn1";
470
+ trn1n: "trn1n";
471
+ "u-3tb1": "u-3tb1";
472
+ "u-6tb1": "u-6tb1";
473
+ "u7i-12tb": "u7i-12tb";
474
+ "u7i-6tb": "u7i-6tb";
475
+ "u7i-8tb": "u7i-8tb";
476
+ "u7in-16tb": "u7in-16tb";
477
+ "u7in-24tb": "u7in-24tb";
478
+ "u7in-32tb": "u7in-32tb";
479
+ vt1: "vt1";
480
+ x1: "x1";
481
+ x1e: "x1e";
482
+ x2gd: "x2gd";
483
+ x2idn: "x2idn";
484
+ x2iedn: "x2iedn";
485
+ x2iezn: "x2iezn";
486
+ x4: "x4";
487
+ x8g: "x8g";
488
+ z1d: "z1d";
489
+ z3: "z3";
490
+ }>>>;
491
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
492
+ "africa-south1": "africa-south1";
493
+ "ap-northeast-1": "ap-northeast-1";
494
+ "ap-northeast-2": "ap-northeast-2";
495
+ "ap-northeast-3": "ap-northeast-3";
496
+ "ap-south-1": "ap-south-1";
497
+ "ap-southeast-1": "ap-southeast-1";
498
+ "ap-southeast-2": "ap-southeast-2";
499
+ ash: "ash";
500
+ "asia-east1": "asia-east1";
501
+ "asia-east2": "asia-east2";
502
+ "asia-northeast1": "asia-northeast1";
503
+ "asia-northeast2": "asia-northeast2";
504
+ "asia-northeast3": "asia-northeast3";
505
+ "asia-south1": "asia-south1";
506
+ "asia-south2": "asia-south2";
507
+ "asia-southeast1": "asia-southeast1";
508
+ "asia-southeast2": "asia-southeast2";
509
+ "australia-southeast1": "australia-southeast1";
510
+ "australia-southeast2": "australia-southeast2";
511
+ "ca-central-1": "ca-central-1";
512
+ "eu-central-1": "eu-central-1";
513
+ "eu-central-2": "eu-central-2";
514
+ "eu-north-1": "eu-north-1";
515
+ "eu-west-1": "eu-west-1";
516
+ "eu-west-2": "eu-west-2";
517
+ "eu-west-3": "eu-west-3";
518
+ "europe-central2": "europe-central2";
519
+ "europe-north1": "europe-north1";
520
+ "europe-southwest1": "europe-southwest1";
521
+ "europe-west1": "europe-west1";
522
+ "europe-west10": "europe-west10";
523
+ "europe-west12": "europe-west12";
524
+ "europe-west2": "europe-west2";
525
+ "europe-west3": "europe-west3";
526
+ "europe-west4": "europe-west4";
527
+ "europe-west6": "europe-west6";
528
+ "europe-west8": "europe-west8";
529
+ "europe-west9": "europe-west9";
530
+ fsn1: "fsn1";
531
+ hel1: "hel1";
532
+ hil: "hil";
533
+ "me-central1": "me-central1";
534
+ "me-central2": "me-central2";
535
+ "me-west1": "me-west1";
536
+ nbg1: "nbg1";
537
+ "northamerica-northeast1": "northamerica-northeast1";
538
+ "northamerica-northeast2": "northamerica-northeast2";
539
+ "sa-east-1": "sa-east-1";
540
+ sin: "sin";
541
+ "southamerica-east1": "southamerica-east1";
542
+ "southamerica-west1": "southamerica-west1";
543
+ "us-central1": "us-central1";
544
+ "us-east-1": "us-east-1";
545
+ "us-east-2": "us-east-2";
546
+ "us-east1": "us-east1";
547
+ "us-east4": "us-east4";
548
+ "us-east5": "us-east5";
549
+ "us-south1": "us-south1";
550
+ "us-west-1": "us-west-1";
551
+ "us-west-2": "us-west-2";
552
+ "us-west1": "us-west1";
553
+ "us-west2": "us-west2";
554
+ "us-west3": "us-west3";
555
+ "us-west4": "us-west4";
556
+ }>>>;
557
+ }, z.core.$strip>>;
558
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
559
+ aggressive: "aggressive";
560
+ conservative: "conservative";
561
+ }>>>;
289
562
  id: z.ZodString;
290
563
  }, z.core.$strip>;
291
564
  export declare const zFleet: z.ZodObject<{
292
565
  limits: z.ZodOptional<z.ZodObject<{
293
- cpu: z.ZodNumber;
566
+ cpu: z.ZodOptional<z.ZodInt>;
294
567
  }, z.core.$strip>>;
295
568
  gcp: z.ZodOptional<z.ZodObject<{
296
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
297
- project: z.ZodString;
569
+ enabled: z.ZodBoolean;
570
+ project: z.ZodOptional<z.ZodString>;
298
571
  }, z.core.$strip>>;
299
572
  hetzner: z.ZodOptional<z.ZodObject<{
300
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
301
- apiKey: z.ZodString;
573
+ enabled: z.ZodBoolean;
574
+ apiKey: z.ZodOptional<z.ZodString>;
302
575
  }, z.core.$strip>>;
303
576
  aws: z.ZodOptional<z.ZodObject<{
304
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
305
- controllerRoleArn: z.ZodString;
577
+ enabled: z.ZodBoolean;
578
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
579
+ }, z.core.$strip>>;
580
+ constraints: z.ZodOptional<z.ZodObject<{
581
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
582
+ "on-demand": "on-demand";
583
+ spot: "spot";
584
+ }>>>>;
585
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
586
+ amd64: "amd64";
587
+ arm64: "arm64";
588
+ }>>>>;
589
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
590
+ p3: "p3";
591
+ cx: "cx";
592
+ h1: "h1";
593
+ h3: "h3";
594
+ a1: "a1";
595
+ a2: "a2";
596
+ a3: "a3";
597
+ a4: "a4";
598
+ c1: "c1";
599
+ c2: "c2";
600
+ c2d: "c2d";
601
+ c3: "c3";
602
+ c3d: "c3d";
603
+ c4: "c4";
604
+ c4a: "c4a";
605
+ c4d: "c4d";
606
+ c5: "c5";
607
+ c5a: "c5a";
608
+ c5ad: "c5ad";
609
+ c5d: "c5d";
610
+ c5n: "c5n";
611
+ c6a: "c6a";
612
+ c6g: "c6g";
613
+ c6gd: "c6gd";
614
+ c6gn: "c6gn";
615
+ c6i: "c6i";
616
+ c6id: "c6id";
617
+ c6in: "c6in";
618
+ c7a: "c7a";
619
+ c7g: "c7g";
620
+ c7gd: "c7gd";
621
+ c7gn: "c7gn";
622
+ c7i: "c7i";
623
+ "c7i-flex": "c7i-flex";
624
+ c8g: "c8g";
625
+ c8gd: "c8gd";
626
+ cax: "cax";
627
+ ccx: "ccx";
628
+ cpx: "cpx";
629
+ d2: "d2";
630
+ d3: "d3";
631
+ d3en: "d3en";
632
+ dl1: "dl1";
633
+ dl2q: "dl2q";
634
+ e2: "e2";
635
+ f1: "f1";
636
+ f2: "f2";
637
+ g1: "g1";
638
+ g2: "g2";
639
+ g4ad: "g4ad";
640
+ g4dn: "g4dn";
641
+ g5: "g5";
642
+ g5g: "g5g";
643
+ g6: "g6";
644
+ g6e: "g6e";
645
+ gr6: "gr6";
646
+ hpc6a: "hpc6a";
647
+ hpc6id: "hpc6id";
648
+ hpc7a: "hpc7a";
649
+ hpc7g: "hpc7g";
650
+ i2: "i2";
651
+ i3: "i3";
652
+ i3en: "i3en";
653
+ i4g: "i4g";
654
+ i4i: "i4i";
655
+ i7i: "i7i";
656
+ i7ie: "i7ie";
657
+ i8g: "i8g";
658
+ im4gn: "im4gn";
659
+ inf1: "inf1";
660
+ inf2: "inf2";
661
+ is4gen: "is4gen";
662
+ m1: "m1";
663
+ m2: "m2";
664
+ m3: "m3";
665
+ m4: "m4";
666
+ m5: "m5";
667
+ m5a: "m5a";
668
+ m5ad: "m5ad";
669
+ m5d: "m5d";
670
+ m5dn: "m5dn";
671
+ m5n: "m5n";
672
+ m5zn: "m5zn";
673
+ m6a: "m6a";
674
+ m6g: "m6g";
675
+ m6gd: "m6gd";
676
+ m6i: "m6i";
677
+ m6id: "m6id";
678
+ m6idn: "m6idn";
679
+ m6in: "m6in";
680
+ m7a: "m7a";
681
+ m7g: "m7g";
682
+ m7gd: "m7gd";
683
+ m7i: "m7i";
684
+ "m7i-flex": "m7i-flex";
685
+ m8g: "m8g";
686
+ m8gd: "m8gd";
687
+ n1: "n1";
688
+ n2: "n2";
689
+ n2d: "n2d";
690
+ n4: "n4";
691
+ p3dn: "p3dn";
692
+ p4d: "p4d";
693
+ p4de: "p4de";
694
+ p5: "p5";
695
+ p5e: "p5e";
696
+ p5en: "p5en";
697
+ "p6-b200": "p6-b200";
698
+ r3: "r3";
699
+ r4: "r4";
700
+ r5: "r5";
701
+ r5a: "r5a";
702
+ r5ad: "r5ad";
703
+ r5b: "r5b";
704
+ r5d: "r5d";
705
+ r5dn: "r5dn";
706
+ r5n: "r5n";
707
+ r6a: "r6a";
708
+ r6g: "r6g";
709
+ r6gd: "r6gd";
710
+ r6i: "r6i";
711
+ r6id: "r6id";
712
+ r6idn: "r6idn";
713
+ r6in: "r6in";
714
+ r7a: "r7a";
715
+ r7g: "r7g";
716
+ r7gd: "r7gd";
717
+ r7i: "r7i";
718
+ r7iz: "r7iz";
719
+ r8g: "r8g";
720
+ r8gd: "r8gd";
721
+ t2: "t2";
722
+ t2a: "t2a";
723
+ t2d: "t2d";
724
+ t3: "t3";
725
+ t3a: "t3a";
726
+ t4g: "t4g";
727
+ trn1: "trn1";
728
+ trn1n: "trn1n";
729
+ "u-3tb1": "u-3tb1";
730
+ "u-6tb1": "u-6tb1";
731
+ "u7i-12tb": "u7i-12tb";
732
+ "u7i-6tb": "u7i-6tb";
733
+ "u7i-8tb": "u7i-8tb";
734
+ "u7in-16tb": "u7in-16tb";
735
+ "u7in-24tb": "u7in-24tb";
736
+ "u7in-32tb": "u7in-32tb";
737
+ vt1: "vt1";
738
+ x1: "x1";
739
+ x1e: "x1e";
740
+ x2gd: "x2gd";
741
+ x2idn: "x2idn";
742
+ x2iedn: "x2iedn";
743
+ x2iezn: "x2iezn";
744
+ x4: "x4";
745
+ x8g: "x8g";
746
+ z1d: "z1d";
747
+ z3: "z3";
748
+ }>>>;
749
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
750
+ "africa-south1": "africa-south1";
751
+ "ap-northeast-1": "ap-northeast-1";
752
+ "ap-northeast-2": "ap-northeast-2";
753
+ "ap-northeast-3": "ap-northeast-3";
754
+ "ap-south-1": "ap-south-1";
755
+ "ap-southeast-1": "ap-southeast-1";
756
+ "ap-southeast-2": "ap-southeast-2";
757
+ ash: "ash";
758
+ "asia-east1": "asia-east1";
759
+ "asia-east2": "asia-east2";
760
+ "asia-northeast1": "asia-northeast1";
761
+ "asia-northeast2": "asia-northeast2";
762
+ "asia-northeast3": "asia-northeast3";
763
+ "asia-south1": "asia-south1";
764
+ "asia-south2": "asia-south2";
765
+ "asia-southeast1": "asia-southeast1";
766
+ "asia-southeast2": "asia-southeast2";
767
+ "australia-southeast1": "australia-southeast1";
768
+ "australia-southeast2": "australia-southeast2";
769
+ "ca-central-1": "ca-central-1";
770
+ "eu-central-1": "eu-central-1";
771
+ "eu-central-2": "eu-central-2";
772
+ "eu-north-1": "eu-north-1";
773
+ "eu-west-1": "eu-west-1";
774
+ "eu-west-2": "eu-west-2";
775
+ "eu-west-3": "eu-west-3";
776
+ "europe-central2": "europe-central2";
777
+ "europe-north1": "europe-north1";
778
+ "europe-southwest1": "europe-southwest1";
779
+ "europe-west1": "europe-west1";
780
+ "europe-west10": "europe-west10";
781
+ "europe-west12": "europe-west12";
782
+ "europe-west2": "europe-west2";
783
+ "europe-west3": "europe-west3";
784
+ "europe-west4": "europe-west4";
785
+ "europe-west6": "europe-west6";
786
+ "europe-west8": "europe-west8";
787
+ "europe-west9": "europe-west9";
788
+ fsn1: "fsn1";
789
+ hel1: "hel1";
790
+ hil: "hil";
791
+ "me-central1": "me-central1";
792
+ "me-central2": "me-central2";
793
+ "me-west1": "me-west1";
794
+ nbg1: "nbg1";
795
+ "northamerica-northeast1": "northamerica-northeast1";
796
+ "northamerica-northeast2": "northamerica-northeast2";
797
+ "sa-east-1": "sa-east-1";
798
+ sin: "sin";
799
+ "southamerica-east1": "southamerica-east1";
800
+ "southamerica-west1": "southamerica-west1";
801
+ "us-central1": "us-central1";
802
+ "us-east-1": "us-east-1";
803
+ "us-east-2": "us-east-2";
804
+ "us-east1": "us-east1";
805
+ "us-east4": "us-east4";
806
+ "us-east5": "us-east5";
807
+ "us-south1": "us-south1";
808
+ "us-west-1": "us-west-1";
809
+ "us-west-2": "us-west-2";
810
+ "us-west1": "us-west1";
811
+ "us-west2": "us-west2";
812
+ "us-west3": "us-west3";
813
+ "us-west4": "us-west4";
814
+ }>>>;
306
815
  }, z.core.$strip>>;
816
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
817
+ aggressive: "aggressive";
818
+ conservative: "conservative";
819
+ }>>;
307
820
  id: z.ZodString;
821
+ ready: z.ZodBoolean;
822
+ status_message: z.ZodOptional<z.ZodString>;
823
+ created_at: z.ZodString;
824
+ updated_at: z.ZodString;
308
825
  }, z.core.$strip>;
309
826
  export declare const zFleetUpdateInput: z.ZodObject<{
310
827
  limits: z.ZodOptional<z.ZodObject<{
311
- cpu: z.ZodNumber;
828
+ cpu: z.ZodOptional<z.ZodInt>;
312
829
  }, z.core.$strip>>;
313
830
  gcp: z.ZodOptional<z.ZodObject<{
314
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
315
- project: z.ZodString;
831
+ enabled: z.ZodBoolean;
832
+ project: z.ZodOptional<z.ZodString>;
316
833
  }, z.core.$strip>>;
317
834
  hetzner: z.ZodOptional<z.ZodObject<{
318
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
319
- apiKey: z.ZodString;
835
+ enabled: z.ZodBoolean;
836
+ apiKey: z.ZodOptional<z.ZodString>;
320
837
  }, z.core.$strip>>;
321
838
  aws: z.ZodOptional<z.ZodObject<{
322
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
323
- controllerRoleArn: z.ZodString;
839
+ enabled: z.ZodBoolean;
840
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
841
+ }, z.core.$strip>>;
842
+ constraints: z.ZodOptional<z.ZodObject<{
843
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
844
+ "on-demand": "on-demand";
845
+ spot: "spot";
846
+ }>>>;
847
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
848
+ amd64: "amd64";
849
+ arm64: "arm64";
850
+ }>>>;
851
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
852
+ p3: "p3";
853
+ cx: "cx";
854
+ h1: "h1";
855
+ h3: "h3";
856
+ a1: "a1";
857
+ a2: "a2";
858
+ a3: "a3";
859
+ a4: "a4";
860
+ c1: "c1";
861
+ c2: "c2";
862
+ c2d: "c2d";
863
+ c3: "c3";
864
+ c3d: "c3d";
865
+ c4: "c4";
866
+ c4a: "c4a";
867
+ c4d: "c4d";
868
+ c5: "c5";
869
+ c5a: "c5a";
870
+ c5ad: "c5ad";
871
+ c5d: "c5d";
872
+ c5n: "c5n";
873
+ c6a: "c6a";
874
+ c6g: "c6g";
875
+ c6gd: "c6gd";
876
+ c6gn: "c6gn";
877
+ c6i: "c6i";
878
+ c6id: "c6id";
879
+ c6in: "c6in";
880
+ c7a: "c7a";
881
+ c7g: "c7g";
882
+ c7gd: "c7gd";
883
+ c7gn: "c7gn";
884
+ c7i: "c7i";
885
+ "c7i-flex": "c7i-flex";
886
+ c8g: "c8g";
887
+ c8gd: "c8gd";
888
+ cax: "cax";
889
+ ccx: "ccx";
890
+ cpx: "cpx";
891
+ d2: "d2";
892
+ d3: "d3";
893
+ d3en: "d3en";
894
+ dl1: "dl1";
895
+ dl2q: "dl2q";
896
+ e2: "e2";
897
+ f1: "f1";
898
+ f2: "f2";
899
+ g1: "g1";
900
+ g2: "g2";
901
+ g4ad: "g4ad";
902
+ g4dn: "g4dn";
903
+ g5: "g5";
904
+ g5g: "g5g";
905
+ g6: "g6";
906
+ g6e: "g6e";
907
+ gr6: "gr6";
908
+ hpc6a: "hpc6a";
909
+ hpc6id: "hpc6id";
910
+ hpc7a: "hpc7a";
911
+ hpc7g: "hpc7g";
912
+ i2: "i2";
913
+ i3: "i3";
914
+ i3en: "i3en";
915
+ i4g: "i4g";
916
+ i4i: "i4i";
917
+ i7i: "i7i";
918
+ i7ie: "i7ie";
919
+ i8g: "i8g";
920
+ im4gn: "im4gn";
921
+ inf1: "inf1";
922
+ inf2: "inf2";
923
+ is4gen: "is4gen";
924
+ m1: "m1";
925
+ m2: "m2";
926
+ m3: "m3";
927
+ m4: "m4";
928
+ m5: "m5";
929
+ m5a: "m5a";
930
+ m5ad: "m5ad";
931
+ m5d: "m5d";
932
+ m5dn: "m5dn";
933
+ m5n: "m5n";
934
+ m5zn: "m5zn";
935
+ m6a: "m6a";
936
+ m6g: "m6g";
937
+ m6gd: "m6gd";
938
+ m6i: "m6i";
939
+ m6id: "m6id";
940
+ m6idn: "m6idn";
941
+ m6in: "m6in";
942
+ m7a: "m7a";
943
+ m7g: "m7g";
944
+ m7gd: "m7gd";
945
+ m7i: "m7i";
946
+ "m7i-flex": "m7i-flex";
947
+ m8g: "m8g";
948
+ m8gd: "m8gd";
949
+ n1: "n1";
950
+ n2: "n2";
951
+ n2d: "n2d";
952
+ n4: "n4";
953
+ p3dn: "p3dn";
954
+ p4d: "p4d";
955
+ p4de: "p4de";
956
+ p5: "p5";
957
+ p5e: "p5e";
958
+ p5en: "p5en";
959
+ "p6-b200": "p6-b200";
960
+ r3: "r3";
961
+ r4: "r4";
962
+ r5: "r5";
963
+ r5a: "r5a";
964
+ r5ad: "r5ad";
965
+ r5b: "r5b";
966
+ r5d: "r5d";
967
+ r5dn: "r5dn";
968
+ r5n: "r5n";
969
+ r6a: "r6a";
970
+ r6g: "r6g";
971
+ r6gd: "r6gd";
972
+ r6i: "r6i";
973
+ r6id: "r6id";
974
+ r6idn: "r6idn";
975
+ r6in: "r6in";
976
+ r7a: "r7a";
977
+ r7g: "r7g";
978
+ r7gd: "r7gd";
979
+ r7i: "r7i";
980
+ r7iz: "r7iz";
981
+ r8g: "r8g";
982
+ r8gd: "r8gd";
983
+ t2: "t2";
984
+ t2a: "t2a";
985
+ t2d: "t2d";
986
+ t3: "t3";
987
+ t3a: "t3a";
988
+ t4g: "t4g";
989
+ trn1: "trn1";
990
+ trn1n: "trn1n";
991
+ "u-3tb1": "u-3tb1";
992
+ "u-6tb1": "u-6tb1";
993
+ "u7i-12tb": "u7i-12tb";
994
+ "u7i-6tb": "u7i-6tb";
995
+ "u7i-8tb": "u7i-8tb";
996
+ "u7in-16tb": "u7in-16tb";
997
+ "u7in-24tb": "u7in-24tb";
998
+ "u7in-32tb": "u7in-32tb";
999
+ vt1: "vt1";
1000
+ x1: "x1";
1001
+ x1e: "x1e";
1002
+ x2gd: "x2gd";
1003
+ x2idn: "x2idn";
1004
+ x2iedn: "x2iedn";
1005
+ x2iezn: "x2iezn";
1006
+ x4: "x4";
1007
+ x8g: "x8g";
1008
+ z1d: "z1d";
1009
+ z3: "z3";
1010
+ }>>>;
1011
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1012
+ "africa-south1": "africa-south1";
1013
+ "ap-northeast-1": "ap-northeast-1";
1014
+ "ap-northeast-2": "ap-northeast-2";
1015
+ "ap-northeast-3": "ap-northeast-3";
1016
+ "ap-south-1": "ap-south-1";
1017
+ "ap-southeast-1": "ap-southeast-1";
1018
+ "ap-southeast-2": "ap-southeast-2";
1019
+ ash: "ash";
1020
+ "asia-east1": "asia-east1";
1021
+ "asia-east2": "asia-east2";
1022
+ "asia-northeast1": "asia-northeast1";
1023
+ "asia-northeast2": "asia-northeast2";
1024
+ "asia-northeast3": "asia-northeast3";
1025
+ "asia-south1": "asia-south1";
1026
+ "asia-south2": "asia-south2";
1027
+ "asia-southeast1": "asia-southeast1";
1028
+ "asia-southeast2": "asia-southeast2";
1029
+ "australia-southeast1": "australia-southeast1";
1030
+ "australia-southeast2": "australia-southeast2";
1031
+ "ca-central-1": "ca-central-1";
1032
+ "eu-central-1": "eu-central-1";
1033
+ "eu-central-2": "eu-central-2";
1034
+ "eu-north-1": "eu-north-1";
1035
+ "eu-west-1": "eu-west-1";
1036
+ "eu-west-2": "eu-west-2";
1037
+ "eu-west-3": "eu-west-3";
1038
+ "europe-central2": "europe-central2";
1039
+ "europe-north1": "europe-north1";
1040
+ "europe-southwest1": "europe-southwest1";
1041
+ "europe-west1": "europe-west1";
1042
+ "europe-west10": "europe-west10";
1043
+ "europe-west12": "europe-west12";
1044
+ "europe-west2": "europe-west2";
1045
+ "europe-west3": "europe-west3";
1046
+ "europe-west4": "europe-west4";
1047
+ "europe-west6": "europe-west6";
1048
+ "europe-west8": "europe-west8";
1049
+ "europe-west9": "europe-west9";
1050
+ fsn1: "fsn1";
1051
+ hel1: "hel1";
1052
+ hil: "hil";
1053
+ "me-central1": "me-central1";
1054
+ "me-central2": "me-central2";
1055
+ "me-west1": "me-west1";
1056
+ nbg1: "nbg1";
1057
+ "northamerica-northeast1": "northamerica-northeast1";
1058
+ "northamerica-northeast2": "northamerica-northeast2";
1059
+ "sa-east-1": "sa-east-1";
1060
+ sin: "sin";
1061
+ "southamerica-east1": "southamerica-east1";
1062
+ "southamerica-west1": "southamerica-west1";
1063
+ "us-central1": "us-central1";
1064
+ "us-east-1": "us-east-1";
1065
+ "us-east-2": "us-east-2";
1066
+ "us-east1": "us-east1";
1067
+ "us-east4": "us-east4";
1068
+ "us-east5": "us-east5";
1069
+ "us-south1": "us-south1";
1070
+ "us-west-1": "us-west-1";
1071
+ "us-west-2": "us-west-2";
1072
+ "us-west1": "us-west1";
1073
+ "us-west2": "us-west2";
1074
+ "us-west3": "us-west3";
1075
+ "us-west4": "us-west4";
1076
+ }>>>;
324
1077
  }, z.core.$strip>>;
1078
+ scalingProfile: z.ZodEnum<{
1079
+ aggressive: "aggressive";
1080
+ conservative: "conservative";
1081
+ }>;
1082
+ }, z.core.$strip>;
1083
+ export declare const zInviteCreateInput: z.ZodObject<{
1084
+ email: z.ZodEmail;
1085
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1086
+ Administrator: "Administrator";
1087
+ User: "User";
1088
+ }>>>;
325
1089
  }, z.core.$strip>;
326
1090
  export declare const zInvite: z.ZodObject<{
327
1091
  id: z.ZodOptional<z.ZodString>;
@@ -329,6 +1093,10 @@ export declare const zInvite: z.ZodObject<{
329
1093
  date_created: z.ZodISODateTime;
330
1094
  email: z.ZodOptional<z.ZodEmail>;
331
1095
  code: z.ZodOptional<z.ZodString>;
1096
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1097
+ Administrator: "Administrator";
1098
+ User: "User";
1099
+ }>>>;
332
1100
  }, z.core.$strip>;
333
1101
  export declare const zInvoice: z.ZodObject<{
334
1102
  id: z.ZodOptional<z.ZodString>;
@@ -368,15 +1136,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
368
1136
  }, z.core.$strip>>;
369
1137
  }, z.core.$strip>;
370
1138
  export declare const zOrganizationCreateInput: z.ZodObject<{
1139
+ type: z.ZodEnum<{
1140
+ business: "business";
1141
+ personal: "personal";
1142
+ }>;
371
1143
  email: z.ZodEmail;
372
1144
  first_name: z.ZodString;
373
1145
  last_name: z.ZodString;
374
1146
  company_name: z.ZodString;
375
1147
  password: z.ZodString;
376
1148
  }, z.core.$strip>;
1149
+ export declare const zOrganizationCreateOutput: z.ZodObject<{
1150
+ id: z.ZodString;
1151
+ }, z.core.$strip>;
377
1152
  export declare const zOrganization: z.ZodObject<{
378
1153
  id: z.ZodUUID;
379
1154
  name: z.ZodOptional<z.ZodString>;
1155
+ type: z.ZodEnum<{
1156
+ business: "business";
1157
+ personal: "personal";
1158
+ }>;
380
1159
  date_created: z.ZodISODateTime;
381
1160
  quota: z.ZodObject<{
382
1161
  basic_clusters_max: z.ZodInt;
@@ -397,27 +1176,27 @@ export declare const zOrganization: z.ZodObject<{
397
1176
  closed: "closed";
398
1177
  suspended: "suspended";
399
1178
  }>;
1179
+ verification: z.ZodEnum<{
1180
+ none: "none";
1181
+ submitted: "submitted";
1182
+ verified: "verified";
1183
+ }>;
400
1184
  }, z.core.$strip>;
401
1185
  export declare const zPaymentMethod: z.ZodObject<{
402
- id: z.ZodUUID;
403
- setup: z.ZodBoolean;
1186
+ id: z.ZodString;
404
1187
  type: z.ZodEnum<{
405
1188
  card: "card";
1189
+ sepa_debit: "sepa_debit";
1190
+ bank_transfer: "bank_transfer";
406
1191
  }>;
407
1192
  last4: z.ZodString;
408
1193
  exp_month: z.ZodInt;
409
1194
  exp_year: z.ZodInt;
410
- brand: z.ZodEnum<{
411
- unknown: "unknown";
412
- amex: "amex";
413
- diners: "diners";
414
- discover: "discover";
415
- eftpos_au: "eftpos_au";
416
- jcb: "jcb";
417
- mastercard: "mastercard";
418
- unionpay: "unionpay";
419
- visa: "visa";
420
- }>;
1195
+ brand: z.ZodString;
1196
+ iban: z.ZodString;
1197
+ bic: z.ZodString;
1198
+ account_holder_name: z.ZodString;
1199
+ is_default: z.ZodBoolean;
421
1200
  }, z.core.$strip>;
422
1201
  export declare const zPlatformQuota: z.ZodObject<{
423
1202
  basic_clusters_max: z.ZodInt;
@@ -640,14 +1419,6 @@ export declare const zUserCreateInput: z.ZodObject<{
640
1419
  last_name: z.ZodString;
641
1420
  code: z.ZodString;
642
1421
  password: z.ZodString;
643
- status: z.ZodOptional<z.ZodEnum<{
644
- active: "active";
645
- inactive: "inactive";
646
- }>>;
647
- role: z.ZodOptional<z.ZodEnum<{
648
- Administrator: "Administrator";
649
- User: "User";
650
- }>>;
651
1422
  }, z.core.$strip>;
652
1423
  export declare const zUser: z.ZodObject<{
653
1424
  email: z.ZodEmail;
@@ -702,36 +1473,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
702
1473
  }, z.core.$strip>;
703
1474
  }, z.core.$strip>;
704
1475
  /**
705
- * Redacted payment card information.
1476
+ * 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.
1477
+ *
706
1478
  */
707
- export declare const zGetPaymentMethodResponse: z.ZodObject<{
708
- id: z.ZodUUID;
709
- setup: z.ZodBoolean;
1479
+ export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
1480
+ id: z.ZodOptional<z.ZodString>;
1481
+ }, z.core.$strip>;
1482
+ /**
1483
+ * An array of payment methods.
1484
+ */
1485
+ export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
1486
+ id: z.ZodString;
710
1487
  type: z.ZodEnum<{
711
1488
  card: "card";
1489
+ sepa_debit: "sepa_debit";
1490
+ bank_transfer: "bank_transfer";
712
1491
  }>;
713
1492
  last4: z.ZodString;
714
1493
  exp_month: z.ZodInt;
715
1494
  exp_year: z.ZodInt;
716
- brand: z.ZodEnum<{
717
- unknown: "unknown";
718
- amex: "amex";
719
- diners: "diners";
720
- discover: "discover";
721
- eftpos_au: "eftpos_au";
722
- jcb: "jcb";
723
- mastercard: "mastercard";
724
- unionpay: "unionpay";
725
- visa: "visa";
726
- }>;
1495
+ brand: z.ZodString;
1496
+ iban: z.ZodString;
1497
+ bic: z.ZodString;
1498
+ account_holder_name: z.ZodString;
1499
+ is_default: z.ZodBoolean;
1500
+ }, z.core.$strip>>;
1501
+ export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
1502
+ paymentMethodId: z.ZodString;
727
1503
  }, z.core.$strip>;
728
1504
  /**
729
- * 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.
730
- *
1505
+ * Default payment method updated.
731
1506
  */
732
- export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
733
- id: z.ZodOptional<z.ZodString>;
1507
+ export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
1508
+ export declare const zDeletePaymentMethodPath: z.ZodObject<{
1509
+ paymentMethodId: z.ZodString;
734
1510
  }, z.core.$strip>;
1511
+ /**
1512
+ * Payment method deleted.
1513
+ */
1514
+ export declare const zDeletePaymentMethodResponse: z.ZodVoid;
735
1515
  /**
736
1516
  * An array of usage records.
737
1517
  */
@@ -750,6 +1530,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
750
1530
  * Returns a single object containing organization contact and billing address details.
751
1531
  */
752
1532
  export declare const zGetContactResponse: z.ZodObject<{
1533
+ type: z.ZodEnum<{
1534
+ business: "business";
1535
+ personal: "personal";
1536
+ }>;
753
1537
  company: z.ZodOptional<z.ZodString>;
754
1538
  address1: z.ZodOptional<z.ZodString>;
755
1539
  address2: z.ZodOptional<z.ZodString>;
@@ -893,6 +1677,10 @@ export declare const zGetContactResponse: z.ZodObject<{
893
1677
  }>>;
894
1678
  }, z.core.$strip>;
895
1679
  export declare const zUpdateContactBody: z.ZodObject<{
1680
+ type: z.ZodEnum<{
1681
+ business: "business";
1682
+ personal: "personal";
1683
+ }>;
896
1684
  company: z.ZodOptional<z.ZodString>;
897
1685
  address1: z.ZodOptional<z.ZodString>;
898
1686
  address2: z.ZodOptional<z.ZodString>;
@@ -1039,6 +1827,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
1039
1827
  * Successfully updated. Returns updated organization details.
1040
1828
  */
1041
1829
  export declare const zUpdateContactResponse: z.ZodObject<{
1830
+ type: z.ZodEnum<{
1831
+ business: "business";
1832
+ personal: "personal";
1833
+ }>;
1042
1834
  company: z.ZodOptional<z.ZodString>;
1043
1835
  address1: z.ZodOptional<z.ZodString>;
1044
1836
  address2: z.ZodOptional<z.ZodString>;
@@ -1212,22 +2004,7 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
1212
2004
  name: z.ZodString;
1213
2005
  namespace: z.ZodString;
1214
2006
  chart: z.ZodString;
1215
- status: z.ZodEnum<{
1216
- InstallSucceeded: "InstallSucceeded";
1217
- InstallFailed: "InstallFailed";
1218
- UpgradeSucceeded: "UpgradeSucceeded";
1219
- UpgradeFailed: "UpgradeFailed";
1220
- TestSucceeded: "TestSucceeded";
1221
- TestFailed: "TestFailed";
1222
- RollbackSucceeded: "RollbackSucceeded";
1223
- RollbackFailed: "RollbackFailed";
1224
- UninstallSucceeded: "UninstallSucceeded";
1225
- UninstallFailed: "UninstallFailed";
1226
- ArtifactFailed: "ArtifactFailed";
1227
- DependencyNotReady: "DependencyNotReady";
1228
- Progressing: "Progressing";
1229
- SourceNotReady: "SourceNotReady";
1230
- }>;
2007
+ status: z.ZodString;
1231
2008
  version_current: z.ZodString;
1232
2009
  created_at: z.ZodString;
1233
2010
  updated_at: z.ZodString;
@@ -1268,22 +2045,7 @@ export declare const zGetChartResponse: z.ZodObject<{
1268
2045
  name: z.ZodString;
1269
2046
  namespace: z.ZodString;
1270
2047
  chart: z.ZodString;
1271
- status: z.ZodEnum<{
1272
- InstallSucceeded: "InstallSucceeded";
1273
- InstallFailed: "InstallFailed";
1274
- UpgradeSucceeded: "UpgradeSucceeded";
1275
- UpgradeFailed: "UpgradeFailed";
1276
- TestSucceeded: "TestSucceeded";
1277
- TestFailed: "TestFailed";
1278
- RollbackSucceeded: "RollbackSucceeded";
1279
- RollbackFailed: "RollbackFailed";
1280
- UninstallSucceeded: "UninstallSucceeded";
1281
- UninstallFailed: "UninstallFailed";
1282
- ArtifactFailed: "ArtifactFailed";
1283
- DependencyNotReady: "DependencyNotReady";
1284
- Progressing: "Progressing";
1285
- SourceNotReady: "SourceNotReady";
1286
- }>;
2048
+ status: z.ZodString;
1287
2049
  version_current: z.ZodString;
1288
2050
  created_at: z.ZodString;
1289
2051
  updated_at: z.ZodString;
@@ -1309,38 +2071,522 @@ export declare const zListFleetsPath: z.ZodObject<{
1309
2071
  */
1310
2072
  export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
1311
2073
  limits: z.ZodOptional<z.ZodObject<{
1312
- cpu: z.ZodNumber;
2074
+ cpu: z.ZodOptional<z.ZodInt>;
1313
2075
  }, z.core.$strip>>;
1314
2076
  gcp: z.ZodOptional<z.ZodObject<{
1315
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1316
- project: z.ZodString;
2077
+ enabled: z.ZodBoolean;
2078
+ project: z.ZodOptional<z.ZodString>;
1317
2079
  }, z.core.$strip>>;
1318
2080
  hetzner: z.ZodOptional<z.ZodObject<{
1319
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1320
- apiKey: z.ZodString;
2081
+ enabled: z.ZodBoolean;
2082
+ apiKey: z.ZodOptional<z.ZodString>;
1321
2083
  }, z.core.$strip>>;
1322
2084
  aws: z.ZodOptional<z.ZodObject<{
1323
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1324
- controllerRoleArn: z.ZodString;
2085
+ enabled: z.ZodBoolean;
2086
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2087
+ }, z.core.$strip>>;
2088
+ constraints: z.ZodOptional<z.ZodObject<{
2089
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2090
+ "on-demand": "on-demand";
2091
+ spot: "spot";
2092
+ }>>>>;
2093
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2094
+ amd64: "amd64";
2095
+ arm64: "arm64";
2096
+ }>>>>;
2097
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2098
+ p3: "p3";
2099
+ cx: "cx";
2100
+ h1: "h1";
2101
+ h3: "h3";
2102
+ a1: "a1";
2103
+ a2: "a2";
2104
+ a3: "a3";
2105
+ a4: "a4";
2106
+ c1: "c1";
2107
+ c2: "c2";
2108
+ c2d: "c2d";
2109
+ c3: "c3";
2110
+ c3d: "c3d";
2111
+ c4: "c4";
2112
+ c4a: "c4a";
2113
+ c4d: "c4d";
2114
+ c5: "c5";
2115
+ c5a: "c5a";
2116
+ c5ad: "c5ad";
2117
+ c5d: "c5d";
2118
+ c5n: "c5n";
2119
+ c6a: "c6a";
2120
+ c6g: "c6g";
2121
+ c6gd: "c6gd";
2122
+ c6gn: "c6gn";
2123
+ c6i: "c6i";
2124
+ c6id: "c6id";
2125
+ c6in: "c6in";
2126
+ c7a: "c7a";
2127
+ c7g: "c7g";
2128
+ c7gd: "c7gd";
2129
+ c7gn: "c7gn";
2130
+ c7i: "c7i";
2131
+ "c7i-flex": "c7i-flex";
2132
+ c8g: "c8g";
2133
+ c8gd: "c8gd";
2134
+ cax: "cax";
2135
+ ccx: "ccx";
2136
+ cpx: "cpx";
2137
+ d2: "d2";
2138
+ d3: "d3";
2139
+ d3en: "d3en";
2140
+ dl1: "dl1";
2141
+ dl2q: "dl2q";
2142
+ e2: "e2";
2143
+ f1: "f1";
2144
+ f2: "f2";
2145
+ g1: "g1";
2146
+ g2: "g2";
2147
+ g4ad: "g4ad";
2148
+ g4dn: "g4dn";
2149
+ g5: "g5";
2150
+ g5g: "g5g";
2151
+ g6: "g6";
2152
+ g6e: "g6e";
2153
+ gr6: "gr6";
2154
+ hpc6a: "hpc6a";
2155
+ hpc6id: "hpc6id";
2156
+ hpc7a: "hpc7a";
2157
+ hpc7g: "hpc7g";
2158
+ i2: "i2";
2159
+ i3: "i3";
2160
+ i3en: "i3en";
2161
+ i4g: "i4g";
2162
+ i4i: "i4i";
2163
+ i7i: "i7i";
2164
+ i7ie: "i7ie";
2165
+ i8g: "i8g";
2166
+ im4gn: "im4gn";
2167
+ inf1: "inf1";
2168
+ inf2: "inf2";
2169
+ is4gen: "is4gen";
2170
+ m1: "m1";
2171
+ m2: "m2";
2172
+ m3: "m3";
2173
+ m4: "m4";
2174
+ m5: "m5";
2175
+ m5a: "m5a";
2176
+ m5ad: "m5ad";
2177
+ m5d: "m5d";
2178
+ m5dn: "m5dn";
2179
+ m5n: "m5n";
2180
+ m5zn: "m5zn";
2181
+ m6a: "m6a";
2182
+ m6g: "m6g";
2183
+ m6gd: "m6gd";
2184
+ m6i: "m6i";
2185
+ m6id: "m6id";
2186
+ m6idn: "m6idn";
2187
+ m6in: "m6in";
2188
+ m7a: "m7a";
2189
+ m7g: "m7g";
2190
+ m7gd: "m7gd";
2191
+ m7i: "m7i";
2192
+ "m7i-flex": "m7i-flex";
2193
+ m8g: "m8g";
2194
+ m8gd: "m8gd";
2195
+ n1: "n1";
2196
+ n2: "n2";
2197
+ n2d: "n2d";
2198
+ n4: "n4";
2199
+ p3dn: "p3dn";
2200
+ p4d: "p4d";
2201
+ p4de: "p4de";
2202
+ p5: "p5";
2203
+ p5e: "p5e";
2204
+ p5en: "p5en";
2205
+ "p6-b200": "p6-b200";
2206
+ r3: "r3";
2207
+ r4: "r4";
2208
+ r5: "r5";
2209
+ r5a: "r5a";
2210
+ r5ad: "r5ad";
2211
+ r5b: "r5b";
2212
+ r5d: "r5d";
2213
+ r5dn: "r5dn";
2214
+ r5n: "r5n";
2215
+ r6a: "r6a";
2216
+ r6g: "r6g";
2217
+ r6gd: "r6gd";
2218
+ r6i: "r6i";
2219
+ r6id: "r6id";
2220
+ r6idn: "r6idn";
2221
+ r6in: "r6in";
2222
+ r7a: "r7a";
2223
+ r7g: "r7g";
2224
+ r7gd: "r7gd";
2225
+ r7i: "r7i";
2226
+ r7iz: "r7iz";
2227
+ r8g: "r8g";
2228
+ r8gd: "r8gd";
2229
+ t2: "t2";
2230
+ t2a: "t2a";
2231
+ t2d: "t2d";
2232
+ t3: "t3";
2233
+ t3a: "t3a";
2234
+ t4g: "t4g";
2235
+ trn1: "trn1";
2236
+ trn1n: "trn1n";
2237
+ "u-3tb1": "u-3tb1";
2238
+ "u-6tb1": "u-6tb1";
2239
+ "u7i-12tb": "u7i-12tb";
2240
+ "u7i-6tb": "u7i-6tb";
2241
+ "u7i-8tb": "u7i-8tb";
2242
+ "u7in-16tb": "u7in-16tb";
2243
+ "u7in-24tb": "u7in-24tb";
2244
+ "u7in-32tb": "u7in-32tb";
2245
+ vt1: "vt1";
2246
+ x1: "x1";
2247
+ x1e: "x1e";
2248
+ x2gd: "x2gd";
2249
+ x2idn: "x2idn";
2250
+ x2iedn: "x2iedn";
2251
+ x2iezn: "x2iezn";
2252
+ x4: "x4";
2253
+ x8g: "x8g";
2254
+ z1d: "z1d";
2255
+ z3: "z3";
2256
+ }>>>;
2257
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2258
+ "africa-south1": "africa-south1";
2259
+ "ap-northeast-1": "ap-northeast-1";
2260
+ "ap-northeast-2": "ap-northeast-2";
2261
+ "ap-northeast-3": "ap-northeast-3";
2262
+ "ap-south-1": "ap-south-1";
2263
+ "ap-southeast-1": "ap-southeast-1";
2264
+ "ap-southeast-2": "ap-southeast-2";
2265
+ ash: "ash";
2266
+ "asia-east1": "asia-east1";
2267
+ "asia-east2": "asia-east2";
2268
+ "asia-northeast1": "asia-northeast1";
2269
+ "asia-northeast2": "asia-northeast2";
2270
+ "asia-northeast3": "asia-northeast3";
2271
+ "asia-south1": "asia-south1";
2272
+ "asia-south2": "asia-south2";
2273
+ "asia-southeast1": "asia-southeast1";
2274
+ "asia-southeast2": "asia-southeast2";
2275
+ "australia-southeast1": "australia-southeast1";
2276
+ "australia-southeast2": "australia-southeast2";
2277
+ "ca-central-1": "ca-central-1";
2278
+ "eu-central-1": "eu-central-1";
2279
+ "eu-central-2": "eu-central-2";
2280
+ "eu-north-1": "eu-north-1";
2281
+ "eu-west-1": "eu-west-1";
2282
+ "eu-west-2": "eu-west-2";
2283
+ "eu-west-3": "eu-west-3";
2284
+ "europe-central2": "europe-central2";
2285
+ "europe-north1": "europe-north1";
2286
+ "europe-southwest1": "europe-southwest1";
2287
+ "europe-west1": "europe-west1";
2288
+ "europe-west10": "europe-west10";
2289
+ "europe-west12": "europe-west12";
2290
+ "europe-west2": "europe-west2";
2291
+ "europe-west3": "europe-west3";
2292
+ "europe-west4": "europe-west4";
2293
+ "europe-west6": "europe-west6";
2294
+ "europe-west8": "europe-west8";
2295
+ "europe-west9": "europe-west9";
2296
+ fsn1: "fsn1";
2297
+ hel1: "hel1";
2298
+ hil: "hil";
2299
+ "me-central1": "me-central1";
2300
+ "me-central2": "me-central2";
2301
+ "me-west1": "me-west1";
2302
+ nbg1: "nbg1";
2303
+ "northamerica-northeast1": "northamerica-northeast1";
2304
+ "northamerica-northeast2": "northamerica-northeast2";
2305
+ "sa-east-1": "sa-east-1";
2306
+ sin: "sin";
2307
+ "southamerica-east1": "southamerica-east1";
2308
+ "southamerica-west1": "southamerica-west1";
2309
+ "us-central1": "us-central1";
2310
+ "us-east-1": "us-east-1";
2311
+ "us-east-2": "us-east-2";
2312
+ "us-east1": "us-east1";
2313
+ "us-east4": "us-east4";
2314
+ "us-east5": "us-east5";
2315
+ "us-south1": "us-south1";
2316
+ "us-west-1": "us-west-1";
2317
+ "us-west-2": "us-west-2";
2318
+ "us-west1": "us-west1";
2319
+ "us-west2": "us-west2";
2320
+ "us-west3": "us-west3";
2321
+ "us-west4": "us-west4";
2322
+ }>>>;
1325
2323
  }, z.core.$strip>>;
2324
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2325
+ aggressive: "aggressive";
2326
+ conservative: "conservative";
2327
+ }>>;
1326
2328
  id: z.ZodString;
2329
+ ready: z.ZodBoolean;
2330
+ status_message: z.ZodOptional<z.ZodString>;
2331
+ created_at: z.ZodString;
2332
+ updated_at: z.ZodString;
1327
2333
  }, z.core.$strip>>;
1328
2334
  export declare const zCreateFleetBody: z.ZodObject<{
1329
2335
  limits: z.ZodOptional<z.ZodObject<{
1330
- cpu: z.ZodNumber;
2336
+ cpu: z.ZodOptional<z.ZodInt>;
1331
2337
  }, z.core.$strip>>;
1332
2338
  gcp: z.ZodOptional<z.ZodObject<{
1333
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1334
- project: z.ZodString;
2339
+ enabled: z.ZodBoolean;
2340
+ project: z.ZodOptional<z.ZodString>;
1335
2341
  }, z.core.$strip>>;
1336
2342
  hetzner: z.ZodOptional<z.ZodObject<{
1337
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1338
- apiKey: z.ZodString;
2343
+ enabled: z.ZodBoolean;
2344
+ apiKey: z.ZodOptional<z.ZodString>;
1339
2345
  }, z.core.$strip>>;
1340
2346
  aws: z.ZodOptional<z.ZodObject<{
1341
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1342
- controllerRoleArn: z.ZodString;
2347
+ enabled: z.ZodBoolean;
2348
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
2349
+ }, z.core.$strip>>;
2350
+ constraints: z.ZodOptional<z.ZodObject<{
2351
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2352
+ "on-demand": "on-demand";
2353
+ spot: "spot";
2354
+ }>>>>;
2355
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2356
+ amd64: "amd64";
2357
+ arm64: "arm64";
2358
+ }>>>>;
2359
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2360
+ p3: "p3";
2361
+ cx: "cx";
2362
+ h1: "h1";
2363
+ h3: "h3";
2364
+ a1: "a1";
2365
+ a2: "a2";
2366
+ a3: "a3";
2367
+ a4: "a4";
2368
+ c1: "c1";
2369
+ c2: "c2";
2370
+ c2d: "c2d";
2371
+ c3: "c3";
2372
+ c3d: "c3d";
2373
+ c4: "c4";
2374
+ c4a: "c4a";
2375
+ c4d: "c4d";
2376
+ c5: "c5";
2377
+ c5a: "c5a";
2378
+ c5ad: "c5ad";
2379
+ c5d: "c5d";
2380
+ c5n: "c5n";
2381
+ c6a: "c6a";
2382
+ c6g: "c6g";
2383
+ c6gd: "c6gd";
2384
+ c6gn: "c6gn";
2385
+ c6i: "c6i";
2386
+ c6id: "c6id";
2387
+ c6in: "c6in";
2388
+ c7a: "c7a";
2389
+ c7g: "c7g";
2390
+ c7gd: "c7gd";
2391
+ c7gn: "c7gn";
2392
+ c7i: "c7i";
2393
+ "c7i-flex": "c7i-flex";
2394
+ c8g: "c8g";
2395
+ c8gd: "c8gd";
2396
+ cax: "cax";
2397
+ ccx: "ccx";
2398
+ cpx: "cpx";
2399
+ d2: "d2";
2400
+ d3: "d3";
2401
+ d3en: "d3en";
2402
+ dl1: "dl1";
2403
+ dl2q: "dl2q";
2404
+ e2: "e2";
2405
+ f1: "f1";
2406
+ f2: "f2";
2407
+ g1: "g1";
2408
+ g2: "g2";
2409
+ g4ad: "g4ad";
2410
+ g4dn: "g4dn";
2411
+ g5: "g5";
2412
+ g5g: "g5g";
2413
+ g6: "g6";
2414
+ g6e: "g6e";
2415
+ gr6: "gr6";
2416
+ hpc6a: "hpc6a";
2417
+ hpc6id: "hpc6id";
2418
+ hpc7a: "hpc7a";
2419
+ hpc7g: "hpc7g";
2420
+ i2: "i2";
2421
+ i3: "i3";
2422
+ i3en: "i3en";
2423
+ i4g: "i4g";
2424
+ i4i: "i4i";
2425
+ i7i: "i7i";
2426
+ i7ie: "i7ie";
2427
+ i8g: "i8g";
2428
+ im4gn: "im4gn";
2429
+ inf1: "inf1";
2430
+ inf2: "inf2";
2431
+ is4gen: "is4gen";
2432
+ m1: "m1";
2433
+ m2: "m2";
2434
+ m3: "m3";
2435
+ m4: "m4";
2436
+ m5: "m5";
2437
+ m5a: "m5a";
2438
+ m5ad: "m5ad";
2439
+ m5d: "m5d";
2440
+ m5dn: "m5dn";
2441
+ m5n: "m5n";
2442
+ m5zn: "m5zn";
2443
+ m6a: "m6a";
2444
+ m6g: "m6g";
2445
+ m6gd: "m6gd";
2446
+ m6i: "m6i";
2447
+ m6id: "m6id";
2448
+ m6idn: "m6idn";
2449
+ m6in: "m6in";
2450
+ m7a: "m7a";
2451
+ m7g: "m7g";
2452
+ m7gd: "m7gd";
2453
+ m7i: "m7i";
2454
+ "m7i-flex": "m7i-flex";
2455
+ m8g: "m8g";
2456
+ m8gd: "m8gd";
2457
+ n1: "n1";
2458
+ n2: "n2";
2459
+ n2d: "n2d";
2460
+ n4: "n4";
2461
+ p3dn: "p3dn";
2462
+ p4d: "p4d";
2463
+ p4de: "p4de";
2464
+ p5: "p5";
2465
+ p5e: "p5e";
2466
+ p5en: "p5en";
2467
+ "p6-b200": "p6-b200";
2468
+ r3: "r3";
2469
+ r4: "r4";
2470
+ r5: "r5";
2471
+ r5a: "r5a";
2472
+ r5ad: "r5ad";
2473
+ r5b: "r5b";
2474
+ r5d: "r5d";
2475
+ r5dn: "r5dn";
2476
+ r5n: "r5n";
2477
+ r6a: "r6a";
2478
+ r6g: "r6g";
2479
+ r6gd: "r6gd";
2480
+ r6i: "r6i";
2481
+ r6id: "r6id";
2482
+ r6idn: "r6idn";
2483
+ r6in: "r6in";
2484
+ r7a: "r7a";
2485
+ r7g: "r7g";
2486
+ r7gd: "r7gd";
2487
+ r7i: "r7i";
2488
+ r7iz: "r7iz";
2489
+ r8g: "r8g";
2490
+ r8gd: "r8gd";
2491
+ t2: "t2";
2492
+ t2a: "t2a";
2493
+ t2d: "t2d";
2494
+ t3: "t3";
2495
+ t3a: "t3a";
2496
+ t4g: "t4g";
2497
+ trn1: "trn1";
2498
+ trn1n: "trn1n";
2499
+ "u-3tb1": "u-3tb1";
2500
+ "u-6tb1": "u-6tb1";
2501
+ "u7i-12tb": "u7i-12tb";
2502
+ "u7i-6tb": "u7i-6tb";
2503
+ "u7i-8tb": "u7i-8tb";
2504
+ "u7in-16tb": "u7in-16tb";
2505
+ "u7in-24tb": "u7in-24tb";
2506
+ "u7in-32tb": "u7in-32tb";
2507
+ vt1: "vt1";
2508
+ x1: "x1";
2509
+ x1e: "x1e";
2510
+ x2gd: "x2gd";
2511
+ x2idn: "x2idn";
2512
+ x2iedn: "x2iedn";
2513
+ x2iezn: "x2iezn";
2514
+ x4: "x4";
2515
+ x8g: "x8g";
2516
+ z1d: "z1d";
2517
+ z3: "z3";
2518
+ }>>>;
2519
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2520
+ "africa-south1": "africa-south1";
2521
+ "ap-northeast-1": "ap-northeast-1";
2522
+ "ap-northeast-2": "ap-northeast-2";
2523
+ "ap-northeast-3": "ap-northeast-3";
2524
+ "ap-south-1": "ap-south-1";
2525
+ "ap-southeast-1": "ap-southeast-1";
2526
+ "ap-southeast-2": "ap-southeast-2";
2527
+ ash: "ash";
2528
+ "asia-east1": "asia-east1";
2529
+ "asia-east2": "asia-east2";
2530
+ "asia-northeast1": "asia-northeast1";
2531
+ "asia-northeast2": "asia-northeast2";
2532
+ "asia-northeast3": "asia-northeast3";
2533
+ "asia-south1": "asia-south1";
2534
+ "asia-south2": "asia-south2";
2535
+ "asia-southeast1": "asia-southeast1";
2536
+ "asia-southeast2": "asia-southeast2";
2537
+ "australia-southeast1": "australia-southeast1";
2538
+ "australia-southeast2": "australia-southeast2";
2539
+ "ca-central-1": "ca-central-1";
2540
+ "eu-central-1": "eu-central-1";
2541
+ "eu-central-2": "eu-central-2";
2542
+ "eu-north-1": "eu-north-1";
2543
+ "eu-west-1": "eu-west-1";
2544
+ "eu-west-2": "eu-west-2";
2545
+ "eu-west-3": "eu-west-3";
2546
+ "europe-central2": "europe-central2";
2547
+ "europe-north1": "europe-north1";
2548
+ "europe-southwest1": "europe-southwest1";
2549
+ "europe-west1": "europe-west1";
2550
+ "europe-west10": "europe-west10";
2551
+ "europe-west12": "europe-west12";
2552
+ "europe-west2": "europe-west2";
2553
+ "europe-west3": "europe-west3";
2554
+ "europe-west4": "europe-west4";
2555
+ "europe-west6": "europe-west6";
2556
+ "europe-west8": "europe-west8";
2557
+ "europe-west9": "europe-west9";
2558
+ fsn1: "fsn1";
2559
+ hel1: "hel1";
2560
+ hil: "hil";
2561
+ "me-central1": "me-central1";
2562
+ "me-central2": "me-central2";
2563
+ "me-west1": "me-west1";
2564
+ nbg1: "nbg1";
2565
+ "northamerica-northeast1": "northamerica-northeast1";
2566
+ "northamerica-northeast2": "northamerica-northeast2";
2567
+ "sa-east-1": "sa-east-1";
2568
+ sin: "sin";
2569
+ "southamerica-east1": "southamerica-east1";
2570
+ "southamerica-west1": "southamerica-west1";
2571
+ "us-central1": "us-central1";
2572
+ "us-east-1": "us-east-1";
2573
+ "us-east-2": "us-east-2";
2574
+ "us-east1": "us-east1";
2575
+ "us-east4": "us-east4";
2576
+ "us-east5": "us-east5";
2577
+ "us-south1": "us-south1";
2578
+ "us-west-1": "us-west-1";
2579
+ "us-west-2": "us-west-2";
2580
+ "us-west1": "us-west1";
2581
+ "us-west2": "us-west2";
2582
+ "us-west3": "us-west3";
2583
+ "us-west4": "us-west4";
2584
+ }>>>;
1343
2585
  }, z.core.$strip>>;
2586
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2587
+ aggressive: "aggressive";
2588
+ conservative: "conservative";
2589
+ }>>>;
1344
2590
  id: z.ZodString;
1345
2591
  }, z.core.$strip>;
1346
2592
  export declare const zCreateFleetPath: z.ZodObject<{
@@ -1367,38 +2613,522 @@ export declare const zGetFleetPath: z.ZodObject<{
1367
2613
  */
1368
2614
  export declare const zGetFleetResponse: z.ZodObject<{
1369
2615
  limits: z.ZodOptional<z.ZodObject<{
1370
- cpu: z.ZodNumber;
2616
+ cpu: z.ZodOptional<z.ZodInt>;
1371
2617
  }, z.core.$strip>>;
1372
2618
  gcp: z.ZodOptional<z.ZodObject<{
1373
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1374
- project: z.ZodString;
2619
+ enabled: z.ZodBoolean;
2620
+ project: z.ZodOptional<z.ZodString>;
1375
2621
  }, z.core.$strip>>;
1376
2622
  hetzner: z.ZodOptional<z.ZodObject<{
1377
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1378
- apiKey: z.ZodString;
2623
+ enabled: z.ZodBoolean;
2624
+ apiKey: z.ZodOptional<z.ZodString>;
1379
2625
  }, z.core.$strip>>;
1380
2626
  aws: z.ZodOptional<z.ZodObject<{
1381
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1382
- controllerRoleArn: z.ZodString;
2627
+ enabled: z.ZodBoolean;
2628
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1383
2629
  }, z.core.$strip>>;
2630
+ constraints: z.ZodOptional<z.ZodObject<{
2631
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2632
+ "on-demand": "on-demand";
2633
+ spot: "spot";
2634
+ }>>>>;
2635
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2636
+ amd64: "amd64";
2637
+ arm64: "arm64";
2638
+ }>>>>;
2639
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2640
+ p3: "p3";
2641
+ cx: "cx";
2642
+ h1: "h1";
2643
+ h3: "h3";
2644
+ a1: "a1";
2645
+ a2: "a2";
2646
+ a3: "a3";
2647
+ a4: "a4";
2648
+ c1: "c1";
2649
+ c2: "c2";
2650
+ c2d: "c2d";
2651
+ c3: "c3";
2652
+ c3d: "c3d";
2653
+ c4: "c4";
2654
+ c4a: "c4a";
2655
+ c4d: "c4d";
2656
+ c5: "c5";
2657
+ c5a: "c5a";
2658
+ c5ad: "c5ad";
2659
+ c5d: "c5d";
2660
+ c5n: "c5n";
2661
+ c6a: "c6a";
2662
+ c6g: "c6g";
2663
+ c6gd: "c6gd";
2664
+ c6gn: "c6gn";
2665
+ c6i: "c6i";
2666
+ c6id: "c6id";
2667
+ c6in: "c6in";
2668
+ c7a: "c7a";
2669
+ c7g: "c7g";
2670
+ c7gd: "c7gd";
2671
+ c7gn: "c7gn";
2672
+ c7i: "c7i";
2673
+ "c7i-flex": "c7i-flex";
2674
+ c8g: "c8g";
2675
+ c8gd: "c8gd";
2676
+ cax: "cax";
2677
+ ccx: "ccx";
2678
+ cpx: "cpx";
2679
+ d2: "d2";
2680
+ d3: "d3";
2681
+ d3en: "d3en";
2682
+ dl1: "dl1";
2683
+ dl2q: "dl2q";
2684
+ e2: "e2";
2685
+ f1: "f1";
2686
+ f2: "f2";
2687
+ g1: "g1";
2688
+ g2: "g2";
2689
+ g4ad: "g4ad";
2690
+ g4dn: "g4dn";
2691
+ g5: "g5";
2692
+ g5g: "g5g";
2693
+ g6: "g6";
2694
+ g6e: "g6e";
2695
+ gr6: "gr6";
2696
+ hpc6a: "hpc6a";
2697
+ hpc6id: "hpc6id";
2698
+ hpc7a: "hpc7a";
2699
+ hpc7g: "hpc7g";
2700
+ i2: "i2";
2701
+ i3: "i3";
2702
+ i3en: "i3en";
2703
+ i4g: "i4g";
2704
+ i4i: "i4i";
2705
+ i7i: "i7i";
2706
+ i7ie: "i7ie";
2707
+ i8g: "i8g";
2708
+ im4gn: "im4gn";
2709
+ inf1: "inf1";
2710
+ inf2: "inf2";
2711
+ is4gen: "is4gen";
2712
+ m1: "m1";
2713
+ m2: "m2";
2714
+ m3: "m3";
2715
+ m4: "m4";
2716
+ m5: "m5";
2717
+ m5a: "m5a";
2718
+ m5ad: "m5ad";
2719
+ m5d: "m5d";
2720
+ m5dn: "m5dn";
2721
+ m5n: "m5n";
2722
+ m5zn: "m5zn";
2723
+ m6a: "m6a";
2724
+ m6g: "m6g";
2725
+ m6gd: "m6gd";
2726
+ m6i: "m6i";
2727
+ m6id: "m6id";
2728
+ m6idn: "m6idn";
2729
+ m6in: "m6in";
2730
+ m7a: "m7a";
2731
+ m7g: "m7g";
2732
+ m7gd: "m7gd";
2733
+ m7i: "m7i";
2734
+ "m7i-flex": "m7i-flex";
2735
+ m8g: "m8g";
2736
+ m8gd: "m8gd";
2737
+ n1: "n1";
2738
+ n2: "n2";
2739
+ n2d: "n2d";
2740
+ n4: "n4";
2741
+ p3dn: "p3dn";
2742
+ p4d: "p4d";
2743
+ p4de: "p4de";
2744
+ p5: "p5";
2745
+ p5e: "p5e";
2746
+ p5en: "p5en";
2747
+ "p6-b200": "p6-b200";
2748
+ r3: "r3";
2749
+ r4: "r4";
2750
+ r5: "r5";
2751
+ r5a: "r5a";
2752
+ r5ad: "r5ad";
2753
+ r5b: "r5b";
2754
+ r5d: "r5d";
2755
+ r5dn: "r5dn";
2756
+ r5n: "r5n";
2757
+ r6a: "r6a";
2758
+ r6g: "r6g";
2759
+ r6gd: "r6gd";
2760
+ r6i: "r6i";
2761
+ r6id: "r6id";
2762
+ r6idn: "r6idn";
2763
+ r6in: "r6in";
2764
+ r7a: "r7a";
2765
+ r7g: "r7g";
2766
+ r7gd: "r7gd";
2767
+ r7i: "r7i";
2768
+ r7iz: "r7iz";
2769
+ r8g: "r8g";
2770
+ r8gd: "r8gd";
2771
+ t2: "t2";
2772
+ t2a: "t2a";
2773
+ t2d: "t2d";
2774
+ t3: "t3";
2775
+ t3a: "t3a";
2776
+ t4g: "t4g";
2777
+ trn1: "trn1";
2778
+ trn1n: "trn1n";
2779
+ "u-3tb1": "u-3tb1";
2780
+ "u-6tb1": "u-6tb1";
2781
+ "u7i-12tb": "u7i-12tb";
2782
+ "u7i-6tb": "u7i-6tb";
2783
+ "u7i-8tb": "u7i-8tb";
2784
+ "u7in-16tb": "u7in-16tb";
2785
+ "u7in-24tb": "u7in-24tb";
2786
+ "u7in-32tb": "u7in-32tb";
2787
+ vt1: "vt1";
2788
+ x1: "x1";
2789
+ x1e: "x1e";
2790
+ x2gd: "x2gd";
2791
+ x2idn: "x2idn";
2792
+ x2iedn: "x2iedn";
2793
+ x2iezn: "x2iezn";
2794
+ x4: "x4";
2795
+ x8g: "x8g";
2796
+ z1d: "z1d";
2797
+ z3: "z3";
2798
+ }>>>;
2799
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2800
+ "africa-south1": "africa-south1";
2801
+ "ap-northeast-1": "ap-northeast-1";
2802
+ "ap-northeast-2": "ap-northeast-2";
2803
+ "ap-northeast-3": "ap-northeast-3";
2804
+ "ap-south-1": "ap-south-1";
2805
+ "ap-southeast-1": "ap-southeast-1";
2806
+ "ap-southeast-2": "ap-southeast-2";
2807
+ ash: "ash";
2808
+ "asia-east1": "asia-east1";
2809
+ "asia-east2": "asia-east2";
2810
+ "asia-northeast1": "asia-northeast1";
2811
+ "asia-northeast2": "asia-northeast2";
2812
+ "asia-northeast3": "asia-northeast3";
2813
+ "asia-south1": "asia-south1";
2814
+ "asia-south2": "asia-south2";
2815
+ "asia-southeast1": "asia-southeast1";
2816
+ "asia-southeast2": "asia-southeast2";
2817
+ "australia-southeast1": "australia-southeast1";
2818
+ "australia-southeast2": "australia-southeast2";
2819
+ "ca-central-1": "ca-central-1";
2820
+ "eu-central-1": "eu-central-1";
2821
+ "eu-central-2": "eu-central-2";
2822
+ "eu-north-1": "eu-north-1";
2823
+ "eu-west-1": "eu-west-1";
2824
+ "eu-west-2": "eu-west-2";
2825
+ "eu-west-3": "eu-west-3";
2826
+ "europe-central2": "europe-central2";
2827
+ "europe-north1": "europe-north1";
2828
+ "europe-southwest1": "europe-southwest1";
2829
+ "europe-west1": "europe-west1";
2830
+ "europe-west10": "europe-west10";
2831
+ "europe-west12": "europe-west12";
2832
+ "europe-west2": "europe-west2";
2833
+ "europe-west3": "europe-west3";
2834
+ "europe-west4": "europe-west4";
2835
+ "europe-west6": "europe-west6";
2836
+ "europe-west8": "europe-west8";
2837
+ "europe-west9": "europe-west9";
2838
+ fsn1: "fsn1";
2839
+ hel1: "hel1";
2840
+ hil: "hil";
2841
+ "me-central1": "me-central1";
2842
+ "me-central2": "me-central2";
2843
+ "me-west1": "me-west1";
2844
+ nbg1: "nbg1";
2845
+ "northamerica-northeast1": "northamerica-northeast1";
2846
+ "northamerica-northeast2": "northamerica-northeast2";
2847
+ "sa-east-1": "sa-east-1";
2848
+ sin: "sin";
2849
+ "southamerica-east1": "southamerica-east1";
2850
+ "southamerica-west1": "southamerica-west1";
2851
+ "us-central1": "us-central1";
2852
+ "us-east-1": "us-east-1";
2853
+ "us-east-2": "us-east-2";
2854
+ "us-east1": "us-east1";
2855
+ "us-east4": "us-east4";
2856
+ "us-east5": "us-east5";
2857
+ "us-south1": "us-south1";
2858
+ "us-west-1": "us-west-1";
2859
+ "us-west-2": "us-west-2";
2860
+ "us-west1": "us-west1";
2861
+ "us-west2": "us-west2";
2862
+ "us-west3": "us-west3";
2863
+ "us-west4": "us-west4";
2864
+ }>>>;
2865
+ }, z.core.$strip>>;
2866
+ scalingProfile: z.ZodDefault<z.ZodEnum<{
2867
+ aggressive: "aggressive";
2868
+ conservative: "conservative";
2869
+ }>>;
1384
2870
  id: z.ZodString;
2871
+ ready: z.ZodBoolean;
2872
+ status_message: z.ZodOptional<z.ZodString>;
2873
+ created_at: z.ZodString;
2874
+ updated_at: z.ZodString;
1385
2875
  }, z.core.$strip>;
1386
2876
  export declare const zUpdateFleetBody: z.ZodObject<{
1387
2877
  limits: z.ZodOptional<z.ZodObject<{
1388
- cpu: z.ZodNumber;
2878
+ cpu: z.ZodOptional<z.ZodInt>;
1389
2879
  }, z.core.$strip>>;
1390
2880
  gcp: z.ZodOptional<z.ZodObject<{
1391
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1392
- project: z.ZodString;
2881
+ enabled: z.ZodBoolean;
2882
+ project: z.ZodOptional<z.ZodString>;
1393
2883
  }, z.core.$strip>>;
1394
2884
  hetzner: z.ZodOptional<z.ZodObject<{
1395
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1396
- apiKey: z.ZodString;
2885
+ enabled: z.ZodBoolean;
2886
+ apiKey: z.ZodOptional<z.ZodString>;
1397
2887
  }, z.core.$strip>>;
1398
2888
  aws: z.ZodOptional<z.ZodObject<{
1399
- enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1400
- controllerRoleArn: z.ZodString;
2889
+ enabled: z.ZodBoolean;
2890
+ controllerRoleArn: z.ZodOptional<z.ZodString>;
1401
2891
  }, z.core.$strip>>;
2892
+ constraints: z.ZodOptional<z.ZodObject<{
2893
+ 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2894
+ "on-demand": "on-demand";
2895
+ spot: "spot";
2896
+ }>>>;
2897
+ 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2898
+ amd64: "amd64";
2899
+ arm64: "arm64";
2900
+ }>>>;
2901
+ 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2902
+ p3: "p3";
2903
+ cx: "cx";
2904
+ h1: "h1";
2905
+ h3: "h3";
2906
+ a1: "a1";
2907
+ a2: "a2";
2908
+ a3: "a3";
2909
+ a4: "a4";
2910
+ c1: "c1";
2911
+ c2: "c2";
2912
+ c2d: "c2d";
2913
+ c3: "c3";
2914
+ c3d: "c3d";
2915
+ c4: "c4";
2916
+ c4a: "c4a";
2917
+ c4d: "c4d";
2918
+ c5: "c5";
2919
+ c5a: "c5a";
2920
+ c5ad: "c5ad";
2921
+ c5d: "c5d";
2922
+ c5n: "c5n";
2923
+ c6a: "c6a";
2924
+ c6g: "c6g";
2925
+ c6gd: "c6gd";
2926
+ c6gn: "c6gn";
2927
+ c6i: "c6i";
2928
+ c6id: "c6id";
2929
+ c6in: "c6in";
2930
+ c7a: "c7a";
2931
+ c7g: "c7g";
2932
+ c7gd: "c7gd";
2933
+ c7gn: "c7gn";
2934
+ c7i: "c7i";
2935
+ "c7i-flex": "c7i-flex";
2936
+ c8g: "c8g";
2937
+ c8gd: "c8gd";
2938
+ cax: "cax";
2939
+ ccx: "ccx";
2940
+ cpx: "cpx";
2941
+ d2: "d2";
2942
+ d3: "d3";
2943
+ d3en: "d3en";
2944
+ dl1: "dl1";
2945
+ dl2q: "dl2q";
2946
+ e2: "e2";
2947
+ f1: "f1";
2948
+ f2: "f2";
2949
+ g1: "g1";
2950
+ g2: "g2";
2951
+ g4ad: "g4ad";
2952
+ g4dn: "g4dn";
2953
+ g5: "g5";
2954
+ g5g: "g5g";
2955
+ g6: "g6";
2956
+ g6e: "g6e";
2957
+ gr6: "gr6";
2958
+ hpc6a: "hpc6a";
2959
+ hpc6id: "hpc6id";
2960
+ hpc7a: "hpc7a";
2961
+ hpc7g: "hpc7g";
2962
+ i2: "i2";
2963
+ i3: "i3";
2964
+ i3en: "i3en";
2965
+ i4g: "i4g";
2966
+ i4i: "i4i";
2967
+ i7i: "i7i";
2968
+ i7ie: "i7ie";
2969
+ i8g: "i8g";
2970
+ im4gn: "im4gn";
2971
+ inf1: "inf1";
2972
+ inf2: "inf2";
2973
+ is4gen: "is4gen";
2974
+ m1: "m1";
2975
+ m2: "m2";
2976
+ m3: "m3";
2977
+ m4: "m4";
2978
+ m5: "m5";
2979
+ m5a: "m5a";
2980
+ m5ad: "m5ad";
2981
+ m5d: "m5d";
2982
+ m5dn: "m5dn";
2983
+ m5n: "m5n";
2984
+ m5zn: "m5zn";
2985
+ m6a: "m6a";
2986
+ m6g: "m6g";
2987
+ m6gd: "m6gd";
2988
+ m6i: "m6i";
2989
+ m6id: "m6id";
2990
+ m6idn: "m6idn";
2991
+ m6in: "m6in";
2992
+ m7a: "m7a";
2993
+ m7g: "m7g";
2994
+ m7gd: "m7gd";
2995
+ m7i: "m7i";
2996
+ "m7i-flex": "m7i-flex";
2997
+ m8g: "m8g";
2998
+ m8gd: "m8gd";
2999
+ n1: "n1";
3000
+ n2: "n2";
3001
+ n2d: "n2d";
3002
+ n4: "n4";
3003
+ p3dn: "p3dn";
3004
+ p4d: "p4d";
3005
+ p4de: "p4de";
3006
+ p5: "p5";
3007
+ p5e: "p5e";
3008
+ p5en: "p5en";
3009
+ "p6-b200": "p6-b200";
3010
+ r3: "r3";
3011
+ r4: "r4";
3012
+ r5: "r5";
3013
+ r5a: "r5a";
3014
+ r5ad: "r5ad";
3015
+ r5b: "r5b";
3016
+ r5d: "r5d";
3017
+ r5dn: "r5dn";
3018
+ r5n: "r5n";
3019
+ r6a: "r6a";
3020
+ r6g: "r6g";
3021
+ r6gd: "r6gd";
3022
+ r6i: "r6i";
3023
+ r6id: "r6id";
3024
+ r6idn: "r6idn";
3025
+ r6in: "r6in";
3026
+ r7a: "r7a";
3027
+ r7g: "r7g";
3028
+ r7gd: "r7gd";
3029
+ r7i: "r7i";
3030
+ r7iz: "r7iz";
3031
+ r8g: "r8g";
3032
+ r8gd: "r8gd";
3033
+ t2: "t2";
3034
+ t2a: "t2a";
3035
+ t2d: "t2d";
3036
+ t3: "t3";
3037
+ t3a: "t3a";
3038
+ t4g: "t4g";
3039
+ trn1: "trn1";
3040
+ trn1n: "trn1n";
3041
+ "u-3tb1": "u-3tb1";
3042
+ "u-6tb1": "u-6tb1";
3043
+ "u7i-12tb": "u7i-12tb";
3044
+ "u7i-6tb": "u7i-6tb";
3045
+ "u7i-8tb": "u7i-8tb";
3046
+ "u7in-16tb": "u7in-16tb";
3047
+ "u7in-24tb": "u7in-24tb";
3048
+ "u7in-32tb": "u7in-32tb";
3049
+ vt1: "vt1";
3050
+ x1: "x1";
3051
+ x1e: "x1e";
3052
+ x2gd: "x2gd";
3053
+ x2idn: "x2idn";
3054
+ x2iedn: "x2iedn";
3055
+ x2iezn: "x2iezn";
3056
+ x4: "x4";
3057
+ x8g: "x8g";
3058
+ z1d: "z1d";
3059
+ z3: "z3";
3060
+ }>>>;
3061
+ 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3062
+ "africa-south1": "africa-south1";
3063
+ "ap-northeast-1": "ap-northeast-1";
3064
+ "ap-northeast-2": "ap-northeast-2";
3065
+ "ap-northeast-3": "ap-northeast-3";
3066
+ "ap-south-1": "ap-south-1";
3067
+ "ap-southeast-1": "ap-southeast-1";
3068
+ "ap-southeast-2": "ap-southeast-2";
3069
+ ash: "ash";
3070
+ "asia-east1": "asia-east1";
3071
+ "asia-east2": "asia-east2";
3072
+ "asia-northeast1": "asia-northeast1";
3073
+ "asia-northeast2": "asia-northeast2";
3074
+ "asia-northeast3": "asia-northeast3";
3075
+ "asia-south1": "asia-south1";
3076
+ "asia-south2": "asia-south2";
3077
+ "asia-southeast1": "asia-southeast1";
3078
+ "asia-southeast2": "asia-southeast2";
3079
+ "australia-southeast1": "australia-southeast1";
3080
+ "australia-southeast2": "australia-southeast2";
3081
+ "ca-central-1": "ca-central-1";
3082
+ "eu-central-1": "eu-central-1";
3083
+ "eu-central-2": "eu-central-2";
3084
+ "eu-north-1": "eu-north-1";
3085
+ "eu-west-1": "eu-west-1";
3086
+ "eu-west-2": "eu-west-2";
3087
+ "eu-west-3": "eu-west-3";
3088
+ "europe-central2": "europe-central2";
3089
+ "europe-north1": "europe-north1";
3090
+ "europe-southwest1": "europe-southwest1";
3091
+ "europe-west1": "europe-west1";
3092
+ "europe-west10": "europe-west10";
3093
+ "europe-west12": "europe-west12";
3094
+ "europe-west2": "europe-west2";
3095
+ "europe-west3": "europe-west3";
3096
+ "europe-west4": "europe-west4";
3097
+ "europe-west6": "europe-west6";
3098
+ "europe-west8": "europe-west8";
3099
+ "europe-west9": "europe-west9";
3100
+ fsn1: "fsn1";
3101
+ hel1: "hel1";
3102
+ hil: "hil";
3103
+ "me-central1": "me-central1";
3104
+ "me-central2": "me-central2";
3105
+ "me-west1": "me-west1";
3106
+ nbg1: "nbg1";
3107
+ "northamerica-northeast1": "northamerica-northeast1";
3108
+ "northamerica-northeast2": "northamerica-northeast2";
3109
+ "sa-east-1": "sa-east-1";
3110
+ sin: "sin";
3111
+ "southamerica-east1": "southamerica-east1";
3112
+ "southamerica-west1": "southamerica-west1";
3113
+ "us-central1": "us-central1";
3114
+ "us-east-1": "us-east-1";
3115
+ "us-east-2": "us-east-2";
3116
+ "us-east1": "us-east1";
3117
+ "us-east4": "us-east4";
3118
+ "us-east5": "us-east5";
3119
+ "us-south1": "us-south1";
3120
+ "us-west-1": "us-west-1";
3121
+ "us-west-2": "us-west-2";
3122
+ "us-west1": "us-west1";
3123
+ "us-west2": "us-west2";
3124
+ "us-west3": "us-west3";
3125
+ "us-west4": "us-west4";
3126
+ }>>>;
3127
+ }, z.core.$strip>>;
3128
+ scalingProfile: z.ZodEnum<{
3129
+ aggressive: "aggressive";
3130
+ conservative: "conservative";
3131
+ }>;
1402
3132
  }, z.core.$strip>;
1403
3133
  export declare const zUpdateFleetPath: z.ZodObject<{
1404
3134
  cluster_id: z.ZodString;
@@ -1420,17 +3150,31 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1420
3150
  basic: "basic";
1421
3151
  pro: "pro";
1422
3152
  }>;
1423
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1424
- "staging-1a": "staging-1a";
1425
- "northamerica-central-1": "northamerica-central-1";
1426
- "europe-central-1a": "europe-central-1a";
1427
- "northamerica-central-1a": "northamerica-central-1a";
1428
- }>>>;
3153
+ region: z.ZodString;
3154
+ networking: z.ZodOptional<z.ZodObject<{
3155
+ pod_cidr: z.ZodOptional<z.ZodString>;
3156
+ service_cidr: z.ZodOptional<z.ZodString>;
3157
+ cluster_dns: z.ZodOptional<z.ZodString>;
3158
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3159
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3160
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3161
+ }, z.core.$strip>>;
3162
+ release_channel: z.ZodOptional<z.ZodEnum<{
3163
+ stable: "stable";
3164
+ rapid: "rapid";
3165
+ extended: "extended";
3166
+ }>>;
3167
+ features: z.ZodOptional<z.ZodObject<{
3168
+ gpu_sharing_strategy: z.ZodEnum<{
3169
+ none: "none";
3170
+ mps: "mps";
3171
+ time_slicing: "time_slicing";
3172
+ }>;
3173
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3174
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3175
+ }, z.core.$strip>>;
1429
3176
  id: z.ZodUUID;
1430
3177
  status: z.ZodEnum<{
1431
- deleted: "deleted";
1432
- failed: "failed";
1433
- active: "active";
1434
3178
  disabled: "disabled";
1435
3179
  creating: "creating";
1436
3180
  deployed: "deployed";
@@ -1439,6 +3183,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
1439
3183
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1440
3184
  "": "";
1441
3185
  }>]>>;
3186
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3187
+ "": "";
3188
+ }>]>>;
1442
3189
  certificate_ca: z.ZodOptional<z.ZodString>;
1443
3190
  version_current: z.ZodOptional<z.ZodString>;
1444
3191
  created_at: z.ZodOptional<z.ZodString>;
@@ -1452,18 +3199,30 @@ export declare const zCreateClusterBody: z.ZodObject<{
1452
3199
  basic: "basic";
1453
3200
  pro: "pro";
1454
3201
  }>;
1455
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1456
- "staging-1a": "staging-1a";
1457
- "northamerica-central-1": "northamerica-central-1";
1458
- "europe-central-1a": "europe-central-1a";
1459
- "northamerica-central-1a": "northamerica-central-1a";
1460
- }>>>;
1461
- version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1462
- "1.x.x-cfke.x": "1.x.x-cfke.x";
1463
- "1.31.x-cfke.x": "1.31.x-cfke.x";
1464
- "1.32.x-cfke.x": "1.32.x-cfke.x";
1465
- "1.33.x-cfke.x": "1.33.x-cfke.x";
3202
+ region: z.ZodString;
3203
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3204
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3205
+ stable: "stable";
3206
+ rapid: "rapid";
3207
+ extended: "extended";
1466
3208
  }>>>;
3209
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3210
+ gpu_sharing_strategy: z.ZodEnum<{
3211
+ none: "none";
3212
+ mps: "mps";
3213
+ time_slicing: "time_slicing";
3214
+ }>;
3215
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3216
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3217
+ }, z.core.$strip>>>;
3218
+ networking: z.ZodOptional<z.ZodObject<{
3219
+ pod_cidr: z.ZodOptional<z.ZodString>;
3220
+ service_cidr: z.ZodOptional<z.ZodString>;
3221
+ cluster_dns: z.ZodOptional<z.ZodString>;
3222
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3223
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3224
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3225
+ }, z.core.$strip>>;
1467
3226
  }, z.core.$strip>;
1468
3227
  /**
1469
3228
  * Successfully created. Returns created Cluster ID.
@@ -1473,7 +3232,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
1473
3232
  cluster_id: z.ZodString;
1474
3233
  }, z.core.$strip>;
1475
3234
  /**
1476
- * Successfully deleted.
3235
+ * Successfully deleted. The cluster has been torn down.
1477
3236
  */
1478
3237
  export declare const zDeleteClusterResponse: z.ZodString;
1479
3238
  export declare const zGetClusterPath: z.ZodObject<{
@@ -1488,17 +3247,31 @@ export declare const zGetClusterResponse: z.ZodObject<{
1488
3247
  basic: "basic";
1489
3248
  pro: "pro";
1490
3249
  }>;
1491
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1492
- "staging-1a": "staging-1a";
1493
- "northamerica-central-1": "northamerica-central-1";
1494
- "europe-central-1a": "europe-central-1a";
1495
- "northamerica-central-1a": "northamerica-central-1a";
1496
- }>>>;
3250
+ region: z.ZodString;
3251
+ networking: z.ZodOptional<z.ZodObject<{
3252
+ pod_cidr: z.ZodOptional<z.ZodString>;
3253
+ service_cidr: z.ZodOptional<z.ZodString>;
3254
+ cluster_dns: z.ZodOptional<z.ZodString>;
3255
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3256
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3257
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3258
+ }, z.core.$strip>>;
3259
+ release_channel: z.ZodOptional<z.ZodEnum<{
3260
+ stable: "stable";
3261
+ rapid: "rapid";
3262
+ extended: "extended";
3263
+ }>>;
3264
+ features: z.ZodOptional<z.ZodObject<{
3265
+ gpu_sharing_strategy: z.ZodEnum<{
3266
+ none: "none";
3267
+ mps: "mps";
3268
+ time_slicing: "time_slicing";
3269
+ }>;
3270
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3271
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3272
+ }, z.core.$strip>>;
1497
3273
  id: z.ZodUUID;
1498
3274
  status: z.ZodEnum<{
1499
- deleted: "deleted";
1500
- failed: "failed";
1501
- active: "active";
1502
3275
  disabled: "disabled";
1503
3276
  creating: "creating";
1504
3277
  deployed: "deployed";
@@ -1507,6 +3280,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
1507
3280
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1508
3281
  "": "";
1509
3282
  }>]>>;
3283
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3284
+ "": "";
3285
+ }>]>>;
1510
3286
  certificate_ca: z.ZodOptional<z.ZodString>;
1511
3287
  version_current: z.ZodOptional<z.ZodString>;
1512
3288
  created_at: z.ZodOptional<z.ZodString>;
@@ -1521,6 +3297,20 @@ export declare const zUpdateClusterBody: z.ZodObject<{
1521
3297
  pro: "pro";
1522
3298
  }>;
1523
3299
  version_channel: z.ZodOptional<z.ZodString>;
3300
+ release_channel: z.ZodOptional<z.ZodEnum<{
3301
+ stable: "stable";
3302
+ rapid: "rapid";
3303
+ extended: "extended";
3304
+ }>>;
3305
+ features: z.ZodOptional<z.ZodObject<{
3306
+ gpu_sharing_strategy: z.ZodEnum<{
3307
+ none: "none";
3308
+ mps: "mps";
3309
+ time_slicing: "time_slicing";
3310
+ }>;
3311
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3312
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3313
+ }, z.core.$strip>>;
1524
3314
  }, z.core.$strip>;
1525
3315
  export declare const zUpdateClusterPath: z.ZodObject<{
1526
3316
  cluster_id: z.ZodString;
@@ -1534,17 +3324,31 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1534
3324
  basic: "basic";
1535
3325
  pro: "pro";
1536
3326
  }>;
1537
- region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1538
- "staging-1a": "staging-1a";
1539
- "northamerica-central-1": "northamerica-central-1";
1540
- "europe-central-1a": "europe-central-1a";
1541
- "northamerica-central-1a": "northamerica-central-1a";
1542
- }>>>;
3327
+ region: z.ZodString;
3328
+ networking: z.ZodOptional<z.ZodObject<{
3329
+ pod_cidr: z.ZodOptional<z.ZodString>;
3330
+ service_cidr: z.ZodOptional<z.ZodString>;
3331
+ cluster_dns: z.ZodOptional<z.ZodString>;
3332
+ dual_stack: z.ZodOptional<z.ZodBoolean>;
3333
+ pod_cidr_v6: z.ZodOptional<z.ZodString>;
3334
+ service_cidr_v6: z.ZodOptional<z.ZodString>;
3335
+ }, z.core.$strip>>;
3336
+ release_channel: z.ZodOptional<z.ZodEnum<{
3337
+ stable: "stable";
3338
+ rapid: "rapid";
3339
+ extended: "extended";
3340
+ }>>;
3341
+ features: z.ZodOptional<z.ZodObject<{
3342
+ gpu_sharing_strategy: z.ZodEnum<{
3343
+ none: "none";
3344
+ mps: "mps";
3345
+ time_slicing: "time_slicing";
3346
+ }>;
3347
+ gpu_max_shared_clients_per_gpu: z.ZodInt;
3348
+ cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3349
+ }, z.core.$strip>>;
1543
3350
  id: z.ZodUUID;
1544
3351
  status: z.ZodEnum<{
1545
- deleted: "deleted";
1546
- failed: "failed";
1547
- active: "active";
1548
3352
  disabled: "disabled";
1549
3353
  creating: "creating";
1550
3354
  deployed: "deployed";
@@ -1553,6 +3357,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
1553
3357
  endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
1554
3358
  "": "";
1555
3359
  }>]>>;
3360
+ endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
3361
+ "": "";
3362
+ }>]>>;
1556
3363
  certificate_ca: z.ZodOptional<z.ZodString>;
1557
3364
  version_current: z.ZodOptional<z.ZodString>;
1558
3365
  created_at: z.ZodOptional<z.ZodString>;
@@ -1570,6 +3377,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
1570
3377
  certificate_authority: z.ZodString;
1571
3378
  endpoint: z.ZodURL;
1572
3379
  cluster_dns: z.ZodString;
3380
+ pod_cidr: z.ZodString;
1573
3381
  auth_key: z.ZodString;
1574
3382
  bootstrap_token: z.ZodString;
1575
3383
  versions: z.ZodObject<{
@@ -1593,9 +3401,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
1593
3401
  date_created: z.ZodISODateTime;
1594
3402
  email: z.ZodOptional<z.ZodEmail>;
1595
3403
  code: z.ZodOptional<z.ZodString>;
3404
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3405
+ Administrator: "Administrator";
3406
+ User: "User";
3407
+ }>>>;
1596
3408
  }, z.core.$strip>>;
1597
3409
  export declare const zCreateInviteBody: z.ZodObject<{
1598
- email: z.ZodOptional<z.ZodString>;
3410
+ email: z.ZodEmail;
3411
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3412
+ Administrator: "Administrator";
3413
+ User: "User";
3414
+ }>>>;
1599
3415
  }, z.core.$strip>;
1600
3416
  /**
1601
3417
  * Successfully created. Returns created invite details.
@@ -1606,22 +3422,23 @@ export declare const zCreateInviteResponse: z.ZodObject<{
1606
3422
  date_created: z.ZodISODateTime;
1607
3423
  email: z.ZodOptional<z.ZodEmail>;
1608
3424
  code: z.ZodOptional<z.ZodString>;
3425
+ role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3426
+ Administrator: "Administrator";
3427
+ User: "User";
3428
+ }>>>;
1609
3429
  }, z.core.$strip>;
1610
3430
  export declare const zGetInvitePath: z.ZodObject<{
1611
3431
  code: z.ZodString;
1612
3432
  }, z.core.$strip>;
1613
3433
  /**
1614
- * Returns a single object containing invite details.
3434
+ * The invitation code is valid. Returns the invited email and organization.
1615
3435
  */
1616
3436
  export declare const zGetInviteResponse: z.ZodObject<{
1617
- id: z.ZodOptional<z.ZodString>;
1618
- organization_id: z.ZodOptional<z.ZodUUID>;
1619
- date_created: z.ZodISODateTime;
1620
3437
  email: z.ZodOptional<z.ZodEmail>;
1621
- code: z.ZodOptional<z.ZodString>;
3438
+ organization_id: z.ZodOptional<z.ZodString>;
1622
3439
  }, z.core.$strip>;
1623
3440
  export declare const zDeleteInvitePath: z.ZodObject<{
1624
- email: z.ZodString;
3441
+ email: z.ZodEmail;
1625
3442
  }, z.core.$strip>;
1626
3443
  /**
1627
3444
  * An array of chart listings in the marketplace.
@@ -1686,6 +3503,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
1686
3503
  export declare const zGetOrganizationResponse: z.ZodObject<{
1687
3504
  id: z.ZodUUID;
1688
3505
  name: z.ZodOptional<z.ZodString>;
3506
+ type: z.ZodEnum<{
3507
+ business: "business";
3508
+ personal: "personal";
3509
+ }>;
1689
3510
  date_created: z.ZodISODateTime;
1690
3511
  quota: z.ZodObject<{
1691
3512
  basic_clusters_max: z.ZodInt;
@@ -1706,14 +3527,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1706
3527
  closed: "closed";
1707
3528
  suspended: "suspended";
1708
3529
  }>;
3530
+ verification: z.ZodEnum<{
3531
+ none: "none";
3532
+ submitted: "submitted";
3533
+ verified: "verified";
3534
+ }>;
1709
3535
  }, z.core.$strip>;
1710
3536
  export declare const zCreateOrganizationBody: z.ZodObject<{
3537
+ type: z.ZodEnum<{
3538
+ business: "business";
3539
+ personal: "personal";
3540
+ }>;
1711
3541
  email: z.ZodEmail;
1712
3542
  first_name: z.ZodString;
1713
3543
  last_name: z.ZodString;
1714
3544
  company_name: z.ZodString;
1715
3545
  password: z.ZodString;
1716
3546
  }, z.core.$strip>;
3547
+ /**
3548
+ * Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
3549
+ *
3550
+ */
3551
+ export declare const zCreateOrganizationResponse: z.ZodObject<{
3552
+ id: z.ZodString;
3553
+ }, z.core.$strip>;
1717
3554
  /**
1718
3555
  * List of repositories
1719
3556
  */
@@ -2103,14 +3940,6 @@ export declare const zCreateUserBody: z.ZodObject<{
2103
3940
  last_name: z.ZodString;
2104
3941
  code: z.ZodString;
2105
3942
  password: z.ZodString;
2106
- status: z.ZodOptional<z.ZodEnum<{
2107
- active: "active";
2108
- inactive: "inactive";
2109
- }>>;
2110
- role: z.ZodOptional<z.ZodEnum<{
2111
- Administrator: "Administrator";
2112
- User: "User";
2113
- }>>;
2114
3943
  }, z.core.$strip>;
2115
3944
  /**
2116
3945
  * Successfully created. Returns created user details.