@cloudfleet/sdk 0.12.3 → 1.0.1

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.
@@ -1,3 +1,40 @@
1
+ export declare const BasicPriceConsentInputSchema: {
2
+ readonly type: "object";
3
+ readonly properties: {
4
+ readonly decision: {
5
+ readonly type: "string";
6
+ readonly description: "The administrator's decision on the new Basic price. `accepted` continues to paid billing when the signup credit runs out; `rejected` opts out (clusters are suspended, never charged). A `rejected` org can later be flipped back to `accepted`.";
7
+ readonly example: "accepted";
8
+ readonly enum: readonly ["accepted", "rejected"];
9
+ };
10
+ };
11
+ readonly required: readonly ["decision"];
12
+ readonly additionalProperties: false;
13
+ };
14
+ export declare const BasicPriceConsentSchema: {
15
+ readonly type: "object";
16
+ readonly properties: {
17
+ readonly status: {
18
+ readonly type: "string";
19
+ readonly description: "Consent status for the new Basic price. `not_applicable` when the organization is not in scope for the migration. `pending` when the organization must opt in but no admin has decided yet. `accepted` / `rejected` reflect the recorded decision.";
20
+ readonly example: "pending";
21
+ readonly enum: readonly ["not_applicable", "pending", "accepted", "rejected"];
22
+ };
23
+ readonly decided_at: {
24
+ readonly type: "string";
25
+ readonly format: "date-time";
26
+ readonly description: "When the current decision was recorded. Absent while `not_applicable` or `pending`.";
27
+ readonly example: "2026-09-05T10:12:00.000Z";
28
+ };
29
+ readonly decided_by: {
30
+ readonly type: "string";
31
+ readonly description: "User id of the administrator who recorded the current decision. Absent while `not_applicable` or `pending`.";
32
+ readonly example: "2b7a5c9e-1f4d-4a1b-9c3e-8d2f6a0b1c2d";
33
+ };
34
+ };
35
+ readonly required: readonly ["status"];
36
+ readonly additionalProperties: false;
37
+ };
1
38
  export declare const BillingContactSchema: {
2
39
  readonly type: "object";
3
40
  readonly properties: {
@@ -275,13 +312,9 @@ export declare const ClusterCreateInputSchema: {
275
312
  readonly tier: {
276
313
  readonly type: "string";
277
314
  readonly description: "Tier of the cluster.";
315
+ readonly default: "basic";
278
316
  readonly example: "pro";
279
- readonly enum: readonly ["basic", "pro"];
280
- };
281
- readonly region: {
282
- readonly type: "string";
283
- readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
284
- readonly example: "europe-central-1a";
317
+ readonly enum: readonly ["basic", "pro", "enterprise"];
285
318
  };
286
319
  readonly version_channel: {
287
320
  readonly type: "string";
@@ -290,9 +323,92 @@ export declare const ClusterCreateInputSchema: {
290
323
  readonly default: "1.x.x-cfke.x";
291
324
  readonly example: "1.x.x-cfke.x";
292
325
  };
326
+ readonly release_channel: {
327
+ readonly type: "string";
328
+ readonly description: "Release channel for the cluster's control plane.";
329
+ readonly default: "rapid";
330
+ readonly example: "rapid";
331
+ readonly enum: readonly ["rapid", "stable", "extended"];
332
+ };
333
+ readonly features: {
334
+ readonly type: "object";
335
+ readonly properties: {
336
+ readonly gpu_sharing_strategy: {
337
+ readonly type: "string";
338
+ readonly description: "GPU sharing strategy.";
339
+ readonly default: "none";
340
+ readonly example: "none";
341
+ readonly enum: readonly ["none", "mps", "time_slicing"];
342
+ };
343
+ readonly gpu_max_shared_clients_per_gpu: {
344
+ readonly type: "integer";
345
+ readonly minimum: 2;
346
+ readonly maximum: 48;
347
+ readonly description: "Maximum number of pods that may share a single GPU.";
348
+ readonly default: 4;
349
+ readonly example: 10;
350
+ };
351
+ readonly cilium_socket_lb_host_namespace_only: {
352
+ readonly type: "boolean";
353
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
354
+ readonly example: false;
355
+ };
356
+ };
357
+ readonly additionalProperties: false;
358
+ readonly description: "Cluster feature toggles.";
359
+ readonly default: {
360
+ readonly gpu_sharing_strategy: "none";
361
+ readonly gpu_max_shared_clients_per_gpu: 4;
362
+ readonly cilium_socket_lb_host_namespace_only: false;
363
+ };
364
+ };
365
+ readonly region: {
366
+ readonly type: "string";
367
+ readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
368
+ readonly example: "europe-central-1a";
369
+ };
370
+ readonly networking: {
371
+ readonly type: "object";
372
+ readonly properties: {
373
+ readonly pod_cidr: {
374
+ readonly type: "string";
375
+ readonly description: "CIDR block for pod IPs.";
376
+ readonly default: "10.244.0.0/16";
377
+ };
378
+ readonly service_cidr: {
379
+ readonly type: "string";
380
+ readonly description: "CIDR block for service IPs.";
381
+ readonly default: "10.96.0.0/12";
382
+ };
383
+ readonly dual_stack: {
384
+ readonly type: "boolean";
385
+ readonly description: "Enable IPv4+IPv6 dual-stack networking.";
386
+ };
387
+ readonly pod_cidr_v6: {
388
+ readonly type: "string";
389
+ readonly description: "IPv6 pod CIDR. Requires dual_stack.";
390
+ readonly default: "2001:db8:1:2::/48";
391
+ };
392
+ readonly service_cidr_v6: {
393
+ readonly type: "string";
394
+ readonly description: "IPv6 service CIDR. Requires dual_stack.";
395
+ readonly default: "2001:db8:1:1::/112";
396
+ };
397
+ };
398
+ readonly additionalProperties: false;
399
+ readonly description: "Cluster networking configuration. Immutable after creation.";
400
+ readonly default: {
401
+ readonly pod_cidr: "10.244.0.0/16";
402
+ readonly service_cidr: "10.96.0.0/12";
403
+ readonly dual_stack: false;
404
+ readonly pod_cidr_v6: "2001:db8:1:2::/48";
405
+ readonly service_cidr_v6: "2001:db8:1:1::/112";
406
+ };
407
+ };
293
408
  };
294
- readonly required: readonly ["name", "tier", "region"];
409
+ readonly required: readonly ["name", "region"];
295
410
  readonly additionalProperties: false;
411
+ readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
296
412
  };
297
413
  export declare const ClusterJoinInformationSchema: {
298
414
  readonly type: "object";
@@ -397,14 +513,101 @@ export declare const ClusterSchema: {
397
513
  readonly tier: {
398
514
  readonly type: "string";
399
515
  readonly description: "Tier of the cluster.";
516
+ readonly default: "basic";
400
517
  readonly example: "pro";
401
- readonly enum: readonly ["basic", "pro"];
518
+ readonly enum: readonly ["basic", "pro", "enterprise"];
519
+ };
520
+ readonly version_channel: {
521
+ readonly type: "string";
522
+ readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
523
+ readonly description: "Version of the kubernetes cluster.";
524
+ readonly default: "1.x.x-cfke.x";
525
+ readonly example: "1.x.x-cfke.x";
526
+ };
527
+ readonly release_channel: {
528
+ readonly type: "string";
529
+ readonly description: "Release channel for the cluster's control plane.";
530
+ readonly default: "rapid";
531
+ readonly example: "rapid";
532
+ readonly enum: readonly ["rapid", "stable", "extended"];
533
+ };
534
+ readonly features: {
535
+ readonly type: "object";
536
+ readonly properties: {
537
+ readonly gpu_sharing_strategy: {
538
+ readonly type: "string";
539
+ readonly description: "GPU sharing strategy.";
540
+ readonly default: "none";
541
+ readonly example: "none";
542
+ readonly enum: readonly ["none", "mps", "time_slicing"];
543
+ };
544
+ readonly gpu_max_shared_clients_per_gpu: {
545
+ readonly type: "integer";
546
+ readonly minimum: 2;
547
+ readonly maximum: 48;
548
+ readonly description: "Maximum number of pods that may share a single GPU.";
549
+ readonly default: 4;
550
+ readonly example: 10;
551
+ };
552
+ readonly cilium_socket_lb_host_namespace_only: {
553
+ readonly type: "boolean";
554
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
555
+ readonly example: false;
556
+ };
557
+ };
558
+ readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu", "cilium_socket_lb_host_namespace_only"];
559
+ readonly additionalProperties: false;
560
+ readonly description: "Cluster feature toggles.";
561
+ readonly default: {
562
+ readonly gpu_sharing_strategy: "none";
563
+ readonly gpu_max_shared_clients_per_gpu: 4;
564
+ readonly cilium_socket_lb_host_namespace_only: false;
565
+ };
402
566
  };
403
567
  readonly region: {
404
568
  readonly type: "string";
405
569
  readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
406
570
  readonly example: "europe-central-1a";
407
571
  };
572
+ readonly networking: {
573
+ readonly type: "object";
574
+ readonly properties: {
575
+ readonly pod_cidr: {
576
+ readonly type: "string";
577
+ readonly description: "CIDR block for pod IPs.";
578
+ readonly default: "10.244.0.0/16";
579
+ };
580
+ readonly service_cidr: {
581
+ readonly type: "string";
582
+ readonly description: "CIDR block for service IPs.";
583
+ readonly default: "10.96.0.0/12";
584
+ };
585
+ readonly dual_stack: {
586
+ readonly type: "boolean";
587
+ readonly description: "Enable IPv4+IPv6 dual-stack networking.";
588
+ };
589
+ readonly pod_cidr_v6: {
590
+ readonly type: "string";
591
+ readonly description: "IPv6 pod CIDR. Requires dual_stack.";
592
+ readonly default: "2001:db8:1:2::/48";
593
+ };
594
+ readonly service_cidr_v6: {
595
+ readonly type: "string";
596
+ readonly description: "IPv6 service CIDR. Requires dual_stack.";
597
+ readonly default: "2001:db8:1:1::/112";
598
+ };
599
+ };
600
+ readonly required: readonly ["pod_cidr", "service_cidr", "dual_stack", "pod_cidr_v6", "service_cidr_v6"];
601
+ readonly additionalProperties: false;
602
+ readonly description: "Cluster networking configuration. Immutable after creation.";
603
+ readonly default: {
604
+ readonly pod_cidr: "10.244.0.0/16";
605
+ readonly service_cidr: "10.96.0.0/12";
606
+ readonly dual_stack: false;
607
+ readonly pod_cidr_v6: "2001:db8:1:2::/48";
608
+ readonly service_cidr_v6: "2001:db8:1:1::/112";
609
+ };
610
+ };
408
611
  readonly id: {
409
612
  readonly type: "string";
410
613
  readonly format: "uuid";
@@ -413,16 +616,16 @@ export declare const ClusterSchema: {
413
616
  };
414
617
  readonly status: {
415
618
  readonly type: "string";
416
- readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
417
- readonly example: "active";
418
- readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
619
+ readonly description: "Status of the cluster.";
620
+ readonly example: "deployed";
621
+ readonly enum: readonly ["creating", "deployed", "updating", "disabled"];
419
622
  };
420
623
  readonly endpoint: {
421
624
  readonly anyOf: readonly [{
422
625
  readonly type: "string";
423
626
  readonly format: "uri";
424
- readonly description: "URL signed by the private CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster. (Deprecated, use endpoint_public instead)";
425
- readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
627
+ readonly description: "URL signed by a public CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
628
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
426
629
  }, {
427
630
  readonly type: "string";
428
631
  readonly enum: readonly [""];
@@ -432,7 +635,7 @@ export declare const ClusterSchema: {
432
635
  readonly anyOf: readonly [{
433
636
  readonly type: "string";
434
637
  readonly format: "uri";
435
- readonly description: "URL signed by a public CA of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
638
+ readonly description: "Deprecated alias of `endpoint`; retained for backward compatibility.";
436
639
  readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
437
640
  }, {
438
641
  readonly type: "string";
@@ -464,15 +667,10 @@ export declare const ClusterSchema: {
464
667
  readonly description: "Indicates if the cluster is ready to be used.";
465
668
  readonly example: true;
466
669
  };
467
- readonly version_channel: {
468
- readonly type: "string";
469
- readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
470
- readonly description: "Version of the kubernetes cluster.";
471
- readonly example: "1.x.x-cfke.x";
472
- };
473
670
  };
474
- readonly required: readonly ["name", "tier", "region", "id", "status"];
671
+ readonly required: readonly ["name", "tier", "version_channel", "release_channel", "features", "region", "networking", "id", "status", "ready"];
475
672
  readonly additionalProperties: false;
673
+ readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
476
674
  };
477
675
  export declare const ClusterUpdateInputSchema: {
478
676
  readonly type: "object";
@@ -488,18 +686,60 @@ export declare const ClusterUpdateInputSchema: {
488
686
  readonly tier: {
489
687
  readonly type: "string";
490
688
  readonly description: "Tier of the cluster.";
689
+ readonly default: "basic";
491
690
  readonly example: "pro";
492
- readonly enum: readonly ["basic", "pro"];
691
+ readonly enum: readonly ["basic", "pro", "enterprise"];
493
692
  };
494
693
  readonly version_channel: {
495
694
  readonly type: "string";
496
695
  readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
497
696
  readonly description: "Version of the kubernetes cluster.";
697
+ readonly default: "1.x.x-cfke.x";
498
698
  readonly example: "1.x.x-cfke.x";
499
699
  };
700
+ readonly release_channel: {
701
+ readonly type: "string";
702
+ readonly description: "Release channel for the cluster's control plane.";
703
+ readonly default: "rapid";
704
+ readonly example: "rapid";
705
+ readonly enum: readonly ["rapid", "stable", "extended"];
706
+ };
707
+ readonly features: {
708
+ readonly type: "object";
709
+ readonly properties: {
710
+ readonly gpu_sharing_strategy: {
711
+ readonly type: "string";
712
+ readonly description: "GPU sharing strategy.";
713
+ readonly default: "none";
714
+ readonly example: "none";
715
+ readonly enum: readonly ["none", "mps", "time_slicing"];
716
+ };
717
+ readonly gpu_max_shared_clients_per_gpu: {
718
+ readonly type: "integer";
719
+ readonly minimum: 2;
720
+ readonly maximum: 48;
721
+ readonly description: "Maximum number of pods that may share a single GPU.";
722
+ readonly default: 4;
723
+ readonly example: 10;
724
+ };
725
+ readonly cilium_socket_lb_host_namespace_only: {
726
+ readonly type: "boolean";
727
+ readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
728
+ readonly example: false;
729
+ };
730
+ };
731
+ readonly additionalProperties: false;
732
+ readonly description: "Cluster feature toggles.";
733
+ readonly default: {
734
+ readonly gpu_sharing_strategy: "none";
735
+ readonly gpu_max_shared_clients_per_gpu: 4;
736
+ readonly cilium_socket_lb_host_namespace_only: false;
737
+ };
738
+ };
500
739
  };
501
- readonly required: readonly ["tier"];
740
+ readonly required: readonly ["name"];
502
741
  readonly additionalProperties: false;
742
+ readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
503
743
  };
504
744
  export declare const FleetCreateInputSchema: {
505
745
  readonly type: "object";
@@ -543,8 +783,8 @@ export declare const FleetCreateInputSchema: {
543
783
  readonly type: "string";
544
784
  readonly maxLength: 64;
545
785
  readonly minLength: 64;
546
- readonly pattern: "^[A-Za-z0-9]+$";
547
- readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
786
+ readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
787
+ readonly description: "Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.";
548
788
  };
549
789
  };
550
790
  readonly required: readonly ["enabled"];
@@ -596,6 +836,7 @@ export declare const FleetCreateInputSchema: {
596
836
  readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
597
837
  };
598
838
  readonly description: "Allowed values for `cfke.io/instance-family`.";
839
+ readonly default: readonly [];
599
840
  };
600
841
  readonly 'topology.kubernetes.io/region': {
601
842
  readonly type: "array";
@@ -604,14 +845,21 @@ export declare const FleetCreateInputSchema: {
604
845
  readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
605
846
  };
606
847
  readonly description: "Allowed values for `topology.kubernetes.io/region`.";
848
+ readonly default: readonly [];
607
849
  };
608
850
  };
609
851
  readonly additionalProperties: false;
610
- readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
852
+ readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.";
853
+ readonly default: {
854
+ readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
855
+ readonly 'kubernetes.io/arch': readonly ["amd64"];
856
+ readonly 'cfke.io/instance-family': readonly [];
857
+ readonly 'topology.kubernetes.io/region': readonly [];
858
+ };
611
859
  };
612
860
  readonly scalingProfile: {
613
861
  readonly type: "string";
614
- readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
862
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).";
615
863
  readonly default: "conservative";
616
864
  readonly example: "conservative";
617
865
  readonly enum: readonly ["aggressive", "conservative"];
@@ -627,6 +875,7 @@ export declare const FleetCreateInputSchema: {
627
875
  };
628
876
  readonly required: readonly ["id"];
629
877
  readonly additionalProperties: false;
878
+ readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
630
879
  };
631
880
  export declare const FleetSchema: {
632
881
  readonly type: "object";
@@ -721,6 +970,7 @@ export declare const FleetSchema: {
721
970
  readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
722
971
  };
723
972
  readonly description: "Allowed values for `cfke.io/instance-family`.";
973
+ readonly default: readonly [];
724
974
  };
725
975
  readonly 'topology.kubernetes.io/region': {
726
976
  readonly type: "array";
@@ -729,14 +979,22 @@ export declare const FleetSchema: {
729
979
  readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
730
980
  };
731
981
  readonly description: "Allowed values for `topology.kubernetes.io/region`.";
982
+ readonly default: readonly [];
732
983
  };
733
984
  };
985
+ readonly required: readonly ["karpenter.sh/capacity-type", "kubernetes.io/arch"];
734
986
  readonly additionalProperties: false;
735
- readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
987
+ readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.";
988
+ readonly default: {
989
+ readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
990
+ readonly 'kubernetes.io/arch': readonly ["amd64"];
991
+ readonly 'cfke.io/instance-family': readonly [];
992
+ readonly 'topology.kubernetes.io/region': readonly [];
993
+ };
736
994
  };
737
995
  readonly scalingProfile: {
738
996
  readonly type: "string";
739
- readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
997
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).";
740
998
  readonly default: "conservative";
741
999
  readonly example: "conservative";
742
1000
  readonly enum: readonly ["aggressive", "conservative"];
@@ -749,9 +1007,30 @@ export declare const FleetSchema: {
749
1007
  readonly description: "Unique identifier of the kubernetes fleet.";
750
1008
  readonly example: "new-clouds-fleet";
751
1009
  };
1010
+ readonly ready: {
1011
+ readonly type: "boolean";
1012
+ readonly description: "Indicates whether the fleet configuration is healthy.";
1013
+ readonly example: true;
1014
+ };
1015
+ readonly status_message: {
1016
+ readonly type: "string";
1017
+ readonly description: "Human-readable reason the fleet is not ready. Present only when `ready` is false.";
1018
+ readonly example: "Invalid provider permissions.";
1019
+ };
1020
+ readonly created_at: {
1021
+ readonly type: "string";
1022
+ readonly description: "Creation date and time of the fleet.";
1023
+ readonly example: "2024-09-12T09:11:27Z";
1024
+ };
1025
+ readonly updated_at: {
1026
+ readonly type: "string";
1027
+ readonly description: "Date and time the fleet was last updated.";
1028
+ readonly example: "2024-09-12T09:11:27Z";
1029
+ };
752
1030
  };
753
- readonly required: readonly ["scalingProfile", "id"];
1031
+ readonly required: readonly ["constraints", "scalingProfile", "id", "ready", "created_at", "updated_at"];
754
1032
  readonly additionalProperties: false;
1033
+ readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
755
1034
  };
756
1035
  export declare const FleetUpdateInputSchema: {
757
1036
  readonly type: "object";
@@ -795,8 +1074,8 @@ export declare const FleetUpdateInputSchema: {
795
1074
  readonly type: "string";
796
1075
  readonly maxLength: 64;
797
1076
  readonly minLength: 64;
798
- readonly pattern: "^[A-Za-z0-9]+$";
799
- readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
1077
+ readonly pattern: "^([A-Za-z0-9]{64}|\\*{64})$";
1078
+ readonly description: "Hetzner Cloud API token with read/write access (64 alphanumeric characters). Write-only: reads return a redacted placeholder, never the token. Omit the field, or send the placeholder back unchanged, to keep the existing key. Send a new value to rotate it.";
800
1079
  };
801
1080
  };
802
1081
  readonly required: readonly ["enabled"];
@@ -829,6 +1108,7 @@ export declare const FleetUpdateInputSchema: {
829
1108
  };
830
1109
  readonly minItems: 1;
831
1110
  readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
1111
+ readonly default: readonly ["on-demand", "spot"];
832
1112
  };
833
1113
  readonly 'kubernetes.io/arch': {
834
1114
  readonly type: "array";
@@ -838,6 +1118,7 @@ export declare const FleetUpdateInputSchema: {
838
1118
  };
839
1119
  readonly minItems: 1;
840
1120
  readonly description: "Allowed values for `kubernetes.io/arch`.";
1121
+ readonly default: readonly ["amd64"];
841
1122
  };
842
1123
  readonly 'cfke.io/instance-family': {
843
1124
  readonly type: "array";
@@ -846,6 +1127,7 @@ export declare const FleetUpdateInputSchema: {
846
1127
  readonly enum: readonly ["a1", "a2", "a3", "a4", "c1", "c2", "c2d", "c3", "c3d", "c4", "c4a", "c4d", "c5", "c5a", "c5ad", "c5d", "c5n", "c6a", "c6g", "c6gd", "c6gn", "c6i", "c6id", "c6in", "c7a", "c7g", "c7gd", "c7gn", "c7i", "c7i-flex", "c8g", "c8gd", "cax", "ccx", "cpx", "cx", "d2", "d3", "d3en", "dl1", "dl2q", "e2", "f1", "f2", "g1", "g2", "g4ad", "g4dn", "g5", "g5g", "g6", "g6e", "gr6", "h1", "h3", "hpc6a", "hpc6id", "hpc7a", "hpc7g", "i2", "i3", "i3en", "i4g", "i4i", "i7i", "i7ie", "i8g", "im4gn", "inf1", "inf2", "is4gen", "m1", "m2", "m3", "m4", "m5", "m5a", "m5ad", "m5d", "m5dn", "m5n", "m5zn", "m6a", "m6g", "m6gd", "m6i", "m6id", "m6idn", "m6in", "m7a", "m7g", "m7gd", "m7i", "m7i-flex", "m8g", "m8gd", "n1", "n2", "n2d", "n4", "p3", "p3dn", "p4d", "p4de", "p5", "p5e", "p5en", "p6-b200", "r3", "r4", "r5", "r5a", "r5ad", "r5b", "r5d", "r5dn", "r5n", "r6a", "r6g", "r6gd", "r6i", "r6id", "r6idn", "r6in", "r7a", "r7g", "r7gd", "r7i", "r7iz", "r8g", "r8gd", "t2", "t2a", "t2d", "t3", "t3a", "t4g", "trn1", "trn1n", "u-3tb1", "u-6tb1", "u7i-12tb", "u7i-6tb", "u7i-8tb", "u7in-16tb", "u7in-24tb", "u7in-32tb", "vt1", "x1", "x1e", "x2gd", "x2idn", "x2iedn", "x2iezn", "x4", "x8g", "z1d", "z3"];
847
1128
  };
848
1129
  readonly description: "Allowed values for `cfke.io/instance-family`.";
1130
+ readonly default: readonly [];
849
1131
  };
850
1132
  readonly 'topology.kubernetes.io/region': {
851
1133
  readonly type: "array";
@@ -854,20 +1136,28 @@ export declare const FleetUpdateInputSchema: {
854
1136
  readonly enum: readonly ["africa-south1", "ap-northeast-1", "ap-northeast-2", "ap-northeast-3", "ap-south-1", "ap-southeast-1", "ap-southeast-2", "ash", "asia-east1", "asia-east2", "asia-northeast1", "asia-northeast2", "asia-northeast3", "asia-south1", "asia-south2", "asia-southeast1", "asia-southeast2", "australia-southeast1", "australia-southeast2", "ca-central-1", "eu-central-1", "eu-central-2", "eu-north-1", "eu-west-1", "eu-west-2", "eu-west-3", "europe-central2", "europe-north1", "europe-southwest1", "europe-west1", "europe-west10", "europe-west12", "europe-west2", "europe-west3", "europe-west4", "europe-west6", "europe-west8", "europe-west9", "fsn1", "hel1", "hil", "me-central1", "me-central2", "me-west1", "nbg1", "northamerica-northeast1", "northamerica-northeast2", "sa-east-1", "sin", "southamerica-east1", "southamerica-west1", "us-central1", "us-east-1", "us-east-2", "us-east1", "us-east4", "us-east5", "us-south1", "us-west-1", "us-west-2", "us-west1", "us-west2", "us-west3", "us-west4"];
855
1137
  };
856
1138
  readonly description: "Allowed values for `topology.kubernetes.io/region`.";
1139
+ readonly default: readonly [];
857
1140
  };
858
1141
  };
859
1142
  readonly additionalProperties: false;
860
- readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.";
1143
+ readonly description: "Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together.";
1144
+ readonly default: {
1145
+ readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
1146
+ readonly 'kubernetes.io/arch': readonly ["amd64"];
1147
+ readonly 'cfke.io/instance-family': readonly [];
1148
+ readonly 'topology.kubernetes.io/region': readonly [];
1149
+ };
861
1150
  };
862
1151
  readonly scalingProfile: {
863
1152
  readonly type: "string";
864
- readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
1153
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet. Full-overwrite: omit to reset to the default (`conservative`).";
1154
+ readonly default: "conservative";
865
1155
  readonly example: "conservative";
866
1156
  readonly enum: readonly ["aggressive", "conservative"];
867
1157
  };
868
1158
  };
869
- readonly required: readonly ["scalingProfile"];
870
1159
  readonly additionalProperties: false;
1160
+ readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
871
1161
  };
872
1162
  export declare const InviteCreateInputSchema: {
873
1163
  readonly type: "object";
@@ -1230,6 +1520,17 @@ export declare const OrganizationSchema: {
1230
1520
  readonly description: "Available number of Pro clusters that can be created.";
1231
1521
  readonly example: 999;
1232
1522
  };
1523
+ readonly enterprise_clusters_max: {
1524
+ readonly type: "integer";
1525
+ readonly minimum: 0;
1526
+ readonly description: "Maximum number of Enterprise clusters that can be created.";
1527
+ readonly example: 999;
1528
+ };
1529
+ readonly enterprise_clusters_available: {
1530
+ readonly type: "integer";
1531
+ readonly description: "Available number of Enterprise clusters that can be created.";
1532
+ readonly example: 999;
1533
+ };
1233
1534
  readonly fleets_max: {
1234
1535
  readonly type: "integer";
1235
1536
  readonly minimum: 0;
@@ -1283,7 +1584,7 @@ export declare const OrganizationSchema: {
1283
1584
  readonly example: 500;
1284
1585
  };
1285
1586
  };
1286
- readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
1587
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "enterprise_clusters_max", "enterprise_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
1287
1588
  readonly additionalProperties: false;
1288
1589
  readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
1289
1590
  };
@@ -1394,6 +1695,17 @@ export declare const PlatformQuotaSchema: {
1394
1695
  readonly description: "Available number of Pro clusters that can be created.";
1395
1696
  readonly example: 999;
1396
1697
  };
1698
+ readonly enterprise_clusters_max: {
1699
+ readonly type: "integer";
1700
+ readonly minimum: 0;
1701
+ readonly description: "Maximum number of Enterprise clusters that can be created.";
1702
+ readonly example: 999;
1703
+ };
1704
+ readonly enterprise_clusters_available: {
1705
+ readonly type: "integer";
1706
+ readonly description: "Available number of Enterprise clusters that can be created.";
1707
+ readonly example: 999;
1708
+ };
1397
1709
  readonly fleets_max: {
1398
1710
  readonly type: "integer";
1399
1711
  readonly minimum: 0;
@@ -1447,7 +1759,7 @@ export declare const PlatformQuotaSchema: {
1447
1759
  readonly example: 500;
1448
1760
  };
1449
1761
  };
1450
- readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
1762
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "enterprise_clusters_max", "enterprise_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "cfcr_storage_gb"];
1451
1763
  readonly additionalProperties: false;
1452
1764
  };
1453
1765
  export declare const RegistryRepositorySchema: {
@@ -1738,142 +2050,6 @@ export declare const TicketCreateInputSchema: {
1738
2050
  readonly required: readonly ["category", "body"];
1739
2051
  readonly additionalProperties: false;
1740
2052
  };
1741
- export declare const TicketListResponseSchema: {
1742
- readonly type: "object";
1743
- readonly properties: {
1744
- readonly items: {
1745
- readonly type: "array";
1746
- readonly items: {
1747
- readonly type: "object";
1748
- readonly properties: {
1749
- readonly id: {
1750
- readonly type: "string";
1751
- readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
1752
- readonly example: "60c72b2f9f1b2c001f8e4d3a";
1753
- };
1754
- readonly status: {
1755
- readonly type: "string";
1756
- readonly description: "Current state of the ticket.";
1757
- readonly example: "waiting_on_us";
1758
- readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
1759
- };
1760
- readonly category: {
1761
- readonly type: "string";
1762
- readonly description: "Ticket category.";
1763
- readonly example: "technical";
1764
- readonly enum: readonly ["billing", "technical", "general"];
1765
- };
1766
- readonly summary: {
1767
- readonly type: "string";
1768
- readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
1769
- readonly example: "My cluster cannot reach the registry. Logs attached.";
1770
- };
1771
- readonly closed_at: {
1772
- readonly type: "string";
1773
- readonly format: "date-time";
1774
- readonly nullable: true;
1775
- readonly description: "Closure timestamp. Null while the ticket is open.";
1776
- readonly example: "2026-05-18T16:08:14.338Z";
1777
- };
1778
- readonly date_created: {
1779
- readonly type: "string";
1780
- readonly format: "date-time";
1781
- readonly description: "Creation date of the ticket. ISO 8601 UTC.";
1782
- readonly example: "2026-05-11T16:08:14.338Z";
1783
- };
1784
- readonly date_updated: {
1785
- readonly type: "string";
1786
- readonly format: "date-time";
1787
- readonly description: "Last update date of the ticket. ISO 8601 UTC.";
1788
- readonly example: "2026-05-11T16:08:14.338Z";
1789
- };
1790
- readonly messages: {
1791
- readonly type: "array";
1792
- readonly items: {
1793
- readonly type: "object";
1794
- readonly properties: {
1795
- readonly id: {
1796
- readonly type: "string";
1797
- readonly description: "Unique identifier of the message (Mongo ObjectId).";
1798
- readonly example: "60c72b2f9f1b2c001f8e4d3b";
1799
- };
1800
- readonly type: {
1801
- readonly type: "string";
1802
- readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
1803
- readonly example: "customer_reply";
1804
- readonly enum: readonly ["customer_reply", "agent_reply"];
1805
- };
1806
- readonly body: {
1807
- readonly type: "string";
1808
- readonly description: "Message body in markdown.";
1809
- readonly example: "Thanks — that resolved it on my side.";
1810
- };
1811
- readonly author_first_name: {
1812
- readonly type: "string";
1813
- readonly nullable: true;
1814
- readonly description: "First name of the author. Null when not provided.";
1815
- readonly example: "Jane";
1816
- };
1817
- readonly author_last_name: {
1818
- readonly type: "string";
1819
- readonly nullable: true;
1820
- readonly description: "Last name of the author. Null when not provided.";
1821
- readonly example: "Doe";
1822
- };
1823
- readonly attachments: {
1824
- readonly type: "array";
1825
- readonly items: {
1826
- readonly type: "object";
1827
- readonly properties: {
1828
- readonly id: {
1829
- readonly type: "string";
1830
- readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
1831
- readonly example: "60c72b2f9f1b2c001f8e4d3c";
1832
- };
1833
- readonly filename: {
1834
- readonly type: "string";
1835
- readonly description: "Original filename as uploaded.";
1836
- readonly example: "debug.log";
1837
- };
1838
- readonly content_type: {
1839
- readonly type: "string";
1840
- readonly description: "MIME content type of the attachment.";
1841
- readonly example: "text/plain";
1842
- };
1843
- readonly size: {
1844
- readonly type: "integer";
1845
- readonly description: "Size of the attachment in bytes.";
1846
- readonly example: 12345;
1847
- };
1848
- };
1849
- readonly required: readonly ["id", "filename", "content_type", "size"];
1850
- readonly additionalProperties: false;
1851
- };
1852
- readonly description: "Attachments associated with this message.";
1853
- readonly example: readonly [];
1854
- };
1855
- readonly date_created: {
1856
- readonly type: "string";
1857
- readonly format: "date-time";
1858
- readonly description: "Creation date of the message. ISO 8601 UTC.";
1859
- readonly example: "2026-05-11T16:08:14.338Z";
1860
- };
1861
- };
1862
- readonly required: readonly ["id", "type", "body", "date_created"];
1863
- readonly additionalProperties: false;
1864
- };
1865
- readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
1866
- };
1867
- };
1868
- readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
1869
- readonly additionalProperties: false;
1870
- };
1871
- readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
1872
- };
1873
- };
1874
- readonly required: readonly ["items"];
1875
- readonly additionalProperties: false;
1876
- };
1877
2053
  export declare const TicketMessageInputSchema: {
1878
2054
  readonly type: "object";
1879
2055
  readonly properties: {
@@ -1910,11 +2086,13 @@ export declare const TicketMessageSchema: {
1910
2086
  };
1911
2087
  readonly author_first_name: {
1912
2088
  readonly type: "string";
2089
+ readonly nullable: true;
1913
2090
  readonly description: "First name of the author. Null when not provided.";
1914
2091
  readonly example: "Jane";
1915
2092
  };
1916
2093
  readonly author_last_name: {
1917
2094
  readonly type: "string";
2095
+ readonly nullable: true;
1918
2096
  readonly description: "Last name of the author. Null when not provided.";
1919
2097
  readonly example: "Doe";
1920
2098
  };
@@ -1988,6 +2166,7 @@ export declare const TicketSchema: {
1988
2166
  readonly closed_at: {
1989
2167
  readonly type: "string";
1990
2168
  readonly format: "date-time";
2169
+ readonly nullable: true;
1991
2170
  readonly description: "Closure timestamp. Null while the ticket is open.";
1992
2171
  readonly example: "2026-05-18T16:08:14.338Z";
1993
2172
  };
@@ -2175,9 +2354,10 @@ export declare const UsageFacetsSchema: {
2175
2354
  readonly type: "array";
2176
2355
  readonly items: {
2177
2356
  readonly type: "string";
2357
+ readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
2178
2358
  };
2179
2359
  readonly description: "List of unique products";
2180
- readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
2360
+ readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
2181
2361
  };
2182
2362
  };
2183
2363
  readonly additionalProperties: false;
@@ -2203,7 +2383,8 @@ export declare const UsageResponseSchema: {
2203
2383
  readonly product: {
2204
2384
  readonly type: "string";
2205
2385
  readonly description: "The product the usage is associated with";
2206
- readonly example: "cfke_controlplane";
2386
+ readonly example: "cfke_controlplane_pro";
2387
+ readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
2207
2388
  };
2208
2389
  readonly value: {
2209
2390
  readonly type: "number";
@@ -2243,9 +2424,10 @@ export declare const UsageResponseSchema: {
2243
2424
  readonly type: "array";
2244
2425
  readonly items: {
2245
2426
  readonly type: "string";
2427
+ readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
2246
2428
  };
2247
2429
  readonly description: "List of unique products";
2248
- readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
2430
+ readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
2249
2431
  };
2250
2432
  };
2251
2433
  readonly additionalProperties: false;
@@ -2271,7 +2453,8 @@ export declare const UsageSchema: {
2271
2453
  readonly product: {
2272
2454
  readonly type: "string";
2273
2455
  readonly description: "The product the usage is associated with";
2274
- readonly example: "cfke_controlplane";
2456
+ readonly example: "cfke_controlplane_pro";
2457
+ readonly enum: readonly ["cfke_controlplane_basic", "cfke_controlplane_pro", "cfke_controlplane_enterprise", "cfke_connected_nodes_basic", "cfke_connected_nodes_pro", "cfke_connected_nodes_enterprise", "cfcr_storage"];
2275
2458
  };
2276
2459
  readonly value: {
2277
2460
  readonly type: "number";