@cloudfleet/sdk 0.0.1-be6a4aa → 0.0.1-c144916

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.
@@ -416,13 +416,24 @@ export declare const ClusterSchema: {
416
416
  readonly anyOf: readonly [{
417
417
  readonly type: "string";
418
418
  readonly format: "uri";
419
- readonly description: "URL of the Kubernetes cluster control plane. This is the endpoint that kubectl uses to connect to the cluster.";
419
+ 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)";
420
420
  readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.cloudfleet.dev:6443";
421
421
  }, {
422
422
  readonly type: "string";
423
423
  readonly enum: readonly [""];
424
424
  }];
425
425
  };
426
+ readonly endpoint_public: {
427
+ readonly anyOf: readonly [{
428
+ readonly type: "string";
429
+ readonly format: "uri";
430
+ 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.";
431
+ readonly example: "https://2ae6557c-c61f-49c6-b4c1-a65473470a03.staging.cfke.io";
432
+ }, {
433
+ readonly type: "string";
434
+ readonly enum: readonly [""];
435
+ }];
436
+ };
426
437
  readonly certificate_ca: {
427
438
  readonly type: "string";
428
439
  readonly description: "Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.";
@@ -492,13 +503,12 @@ export declare const FleetCreateInputSchema: {
492
503
  readonly type: "object";
493
504
  readonly properties: {
494
505
  readonly cpu: {
495
- readonly type: "number";
496
- readonly format: "float";
506
+ readonly type: "integer";
497
507
  readonly minimum: 0;
498
- readonly description: "CPU limit in cores.";
508
+ readonly maximum: 100000;
509
+ readonly description: "CPU limit in cores. Maximum 100,000.";
499
510
  };
500
511
  };
501
- readonly required: readonly ["cpu"];
502
512
  readonly additionalProperties: false;
503
513
  readonly description: "Limits define a set of bounds for provisioning capacity.";
504
514
  };
@@ -507,14 +517,15 @@ export declare const FleetCreateInputSchema: {
507
517
  readonly properties: {
508
518
  readonly enabled: {
509
519
  readonly type: "boolean";
510
- readonly default: true;
511
520
  };
512
521
  readonly project: {
513
522
  readonly type: "string";
514
- readonly description: "Project GCP Project id to deploy instances into";
523
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
524
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
525
+ readonly example: "my-cloudfleet-project";
515
526
  };
516
527
  };
517
- readonly required: readonly ["project"];
528
+ readonly required: readonly ["enabled"];
518
529
  readonly additionalProperties: false;
519
530
  };
520
531
  readonly hetzner: {
@@ -522,14 +533,16 @@ export declare const FleetCreateInputSchema: {
522
533
  readonly properties: {
523
534
  readonly enabled: {
524
535
  readonly type: "boolean";
525
- readonly default: true;
526
536
  };
527
537
  readonly apiKey: {
528
538
  readonly type: "string";
529
- readonly description: "Hetzner Cloud API key with read / write access";
539
+ readonly maxLength: 64;
540
+ readonly minLength: 64;
541
+ readonly pattern: "^[A-Za-z0-9]+$";
542
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
530
543
  };
531
544
  };
532
- readonly required: readonly ["apiKey"];
545
+ readonly required: readonly ["enabled"];
533
546
  readonly additionalProperties: false;
534
547
  };
535
548
  readonly aws: {
@@ -537,15 +550,62 @@ export declare const FleetCreateInputSchema: {
537
550
  readonly properties: {
538
551
  readonly enabled: {
539
552
  readonly type: "boolean";
540
- readonly default: true;
541
553
  };
542
554
  readonly controllerRoleArn: {
543
555
  readonly type: "string";
544
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
556
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
557
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
558
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
559
+ };
560
+ };
561
+ readonly required: readonly ["enabled"];
562
+ readonly additionalProperties: false;
563
+ };
564
+ readonly constraints: {
565
+ readonly type: "object";
566
+ readonly properties: {
567
+ readonly 'karpenter.sh/capacity-type': {
568
+ readonly type: "array";
569
+ readonly items: {
570
+ readonly type: "string";
571
+ readonly enum: readonly ["on-demand", "spot"];
572
+ };
573
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
574
+ };
575
+ readonly 'kubernetes.io/arch': {
576
+ readonly type: "array";
577
+ readonly items: {
578
+ readonly type: "string";
579
+ readonly enum: readonly ["amd64", "arm64"];
580
+ };
581
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
582
+ };
583
+ readonly 'cfke.io/instance-family': {
584
+ readonly type: "array";
585
+ readonly items: {
586
+ readonly type: "string";
587
+ 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"];
588
+ };
589
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
590
+ };
591
+ readonly 'topology.kubernetes.io/region': {
592
+ readonly type: "array";
593
+ readonly items: {
594
+ readonly type: "string";
595
+ 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"];
596
+ };
597
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
545
598
  };
546
599
  };
547
- readonly required: readonly ["controllerRoleArn"];
548
600
  readonly additionalProperties: false;
601
+ 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.";
602
+ };
603
+ readonly scalingProfile: {
604
+ readonly type: "string";
605
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
606
+ readonly default: "conservative";
607
+ readonly example: "conservative";
608
+ readonly enum: readonly ["aggressive", "conservative"];
549
609
  };
550
610
  readonly id: {
551
611
  readonly type: "string";
@@ -566,13 +626,12 @@ export declare const FleetSchema: {
566
626
  readonly type: "object";
567
627
  readonly properties: {
568
628
  readonly cpu: {
569
- readonly type: "number";
570
- readonly format: "float";
629
+ readonly type: "integer";
571
630
  readonly minimum: 0;
572
- readonly description: "CPU limit in cores.";
631
+ readonly maximum: 100000;
632
+ readonly description: "CPU limit in cores. Maximum 100,000.";
573
633
  };
574
634
  };
575
- readonly required: readonly ["cpu"];
576
635
  readonly additionalProperties: false;
577
636
  readonly description: "Limits define a set of bounds for provisioning capacity.";
578
637
  };
@@ -581,14 +640,15 @@ export declare const FleetSchema: {
581
640
  readonly properties: {
582
641
  readonly enabled: {
583
642
  readonly type: "boolean";
584
- readonly default: true;
585
643
  };
586
644
  readonly project: {
587
645
  readonly type: "string";
588
- readonly description: "Project GCP Project id to deploy instances into";
646
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
647
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
648
+ readonly example: "my-cloudfleet-project";
589
649
  };
590
650
  };
591
- readonly required: readonly ["project"];
651
+ readonly required: readonly ["enabled"];
592
652
  readonly additionalProperties: false;
593
653
  };
594
654
  readonly hetzner: {
@@ -596,14 +656,14 @@ export declare const FleetSchema: {
596
656
  readonly properties: {
597
657
  readonly enabled: {
598
658
  readonly type: "boolean";
599
- readonly default: true;
600
659
  };
601
660
  readonly apiKey: {
602
661
  readonly type: "string";
603
- readonly description: "Hetzner Cloud API key with read / write access";
662
+ readonly pattern: "^\\*{64}$";
663
+ readonly description: "Redacted Hetzner API token. Returned as 64 asterisks when a token is configured; omitted otherwise. The real value is never echoed by the API.";
604
664
  };
605
665
  };
606
- readonly required: readonly ["apiKey"];
666
+ readonly required: readonly ["enabled"];
607
667
  readonly additionalProperties: false;
608
668
  };
609
669
  readonly aws: {
@@ -611,16 +671,63 @@ export declare const FleetSchema: {
611
671
  readonly properties: {
612
672
  readonly enabled: {
613
673
  readonly type: "boolean";
614
- readonly default: true;
615
674
  };
616
675
  readonly controllerRoleArn: {
617
676
  readonly type: "string";
618
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
677
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
678
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
679
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
619
680
  };
620
681
  };
621
- readonly required: readonly ["controllerRoleArn"];
682
+ readonly required: readonly ["enabled"];
622
683
  readonly additionalProperties: false;
623
684
  };
685
+ readonly constraints: {
686
+ readonly type: "object";
687
+ readonly properties: {
688
+ readonly 'karpenter.sh/capacity-type': {
689
+ readonly type: "array";
690
+ readonly items: {
691
+ readonly type: "string";
692
+ readonly enum: readonly ["on-demand", "spot"];
693
+ };
694
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
695
+ };
696
+ readonly 'kubernetes.io/arch': {
697
+ readonly type: "array";
698
+ readonly items: {
699
+ readonly type: "string";
700
+ readonly enum: readonly ["amd64", "arm64"];
701
+ };
702
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
703
+ };
704
+ readonly 'cfke.io/instance-family': {
705
+ readonly type: "array";
706
+ readonly items: {
707
+ readonly type: "string";
708
+ 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"];
709
+ };
710
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
711
+ };
712
+ readonly 'topology.kubernetes.io/region': {
713
+ readonly type: "array";
714
+ readonly items: {
715
+ readonly type: "string";
716
+ 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"];
717
+ };
718
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
719
+ };
720
+ };
721
+ readonly additionalProperties: false;
722
+ 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.";
723
+ };
724
+ readonly scalingProfile: {
725
+ readonly type: "string";
726
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
727
+ readonly default: "conservative";
728
+ readonly example: "conservative";
729
+ readonly enum: readonly ["aggressive", "conservative"];
730
+ };
624
731
  readonly id: {
625
732
  readonly type: "string";
626
733
  readonly maxLength: 63;
@@ -630,7 +737,7 @@ export declare const FleetSchema: {
630
737
  readonly example: "new-clouds-fleet";
631
738
  };
632
739
  };
633
- readonly required: readonly ["id"];
740
+ readonly required: readonly ["scalingProfile", "id"];
634
741
  readonly additionalProperties: false;
635
742
  };
636
743
  export declare const FleetUpdateInputSchema: {
@@ -640,13 +747,12 @@ export declare const FleetUpdateInputSchema: {
640
747
  readonly type: "object";
641
748
  readonly properties: {
642
749
  readonly cpu: {
643
- readonly type: "number";
644
- readonly format: "float";
750
+ readonly type: "integer";
645
751
  readonly minimum: 0;
646
- readonly description: "CPU limit in cores.";
752
+ readonly maximum: 100000;
753
+ readonly description: "CPU limit in cores. Maximum 100,000.";
647
754
  };
648
755
  };
649
- readonly required: readonly ["cpu"];
650
756
  readonly additionalProperties: false;
651
757
  readonly description: "Limits define a set of bounds for provisioning capacity.";
652
758
  };
@@ -655,14 +761,15 @@ export declare const FleetUpdateInputSchema: {
655
761
  readonly properties: {
656
762
  readonly enabled: {
657
763
  readonly type: "boolean";
658
- readonly default: true;
659
764
  };
660
765
  readonly project: {
661
766
  readonly type: "string";
662
- readonly description: "Project GCP Project id to deploy instances into";
767
+ readonly pattern: "^[a-z][a-z0-9-]{4,28}[a-z0-9]$";
768
+ readonly description: "GCP project ID to deploy instances into. 6-30 chars, lowercase letters/digits/hyphens, must start with a letter and not end with a hyphen. Omit when GCP is disabled.";
769
+ readonly example: "my-cloudfleet-project";
663
770
  };
664
771
  };
665
- readonly required: readonly ["project"];
772
+ readonly required: readonly ["enabled"];
666
773
  readonly additionalProperties: false;
667
774
  };
668
775
  readonly hetzner: {
@@ -670,14 +777,16 @@ export declare const FleetUpdateInputSchema: {
670
777
  readonly properties: {
671
778
  readonly enabled: {
672
779
  readonly type: "boolean";
673
- readonly default: true;
674
780
  };
675
781
  readonly apiKey: {
676
782
  readonly type: "string";
677
- readonly description: "Hetzner Cloud API key with read / write access";
783
+ readonly maxLength: 64;
784
+ readonly minLength: 64;
785
+ readonly pattern: "^[A-Za-z0-9]+$";
786
+ readonly description: "Hetzner Cloud API token with read / write access (64 alphanumeric characters). Omit this field to keep the existing value.";
678
787
  };
679
788
  };
680
- readonly required: readonly ["apiKey"];
789
+ readonly required: readonly ["enabled"];
681
790
  readonly additionalProperties: false;
682
791
  };
683
792
  readonly aws: {
@@ -685,17 +794,64 @@ export declare const FleetUpdateInputSchema: {
685
794
  readonly properties: {
686
795
  readonly enabled: {
687
796
  readonly type: "boolean";
688
- readonly default: true;
689
797
  };
690
798
  readonly controllerRoleArn: {
691
799
  readonly type: "string";
692
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
800
+ readonly pattern: "^arn:aws(-[a-z]+)*:iam::\\d{12}:role\\/[\\w+=,.@/-]+$";
801
+ readonly description: "AWS IAM role ARN that Karpenter uses to manage resources. Omit when AWS is disabled.";
802
+ readonly example: "arn:aws:iam::123456789012:role/Cloudfleet";
693
803
  };
694
804
  };
695
- readonly required: readonly ["controllerRoleArn"];
805
+ readonly required: readonly ["enabled"];
696
806
  readonly additionalProperties: false;
697
807
  };
808
+ readonly constraints: {
809
+ readonly type: "object";
810
+ readonly properties: {
811
+ readonly 'karpenter.sh/capacity-type': {
812
+ readonly type: "array";
813
+ readonly items: {
814
+ readonly type: "string";
815
+ readonly enum: readonly ["on-demand", "spot"];
816
+ };
817
+ readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
818
+ };
819
+ readonly 'kubernetes.io/arch': {
820
+ readonly type: "array";
821
+ readonly items: {
822
+ readonly type: "string";
823
+ readonly enum: readonly ["amd64", "arm64"];
824
+ };
825
+ readonly description: "Allowed values for `kubernetes.io/arch`.";
826
+ };
827
+ readonly 'cfke.io/instance-family': {
828
+ readonly type: "array";
829
+ readonly items: {
830
+ readonly type: "string";
831
+ 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"];
832
+ };
833
+ readonly description: "Allowed values for `cfke.io/instance-family`.";
834
+ };
835
+ readonly 'topology.kubernetes.io/region': {
836
+ readonly type: "array";
837
+ readonly items: {
838
+ readonly type: "string";
839
+ 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"];
840
+ };
841
+ readonly description: "Allowed values for `topology.kubernetes.io/region`.";
842
+ };
843
+ };
844
+ readonly additionalProperties: false;
845
+ 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.";
846
+ };
847
+ readonly scalingProfile: {
848
+ readonly type: "string";
849
+ readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
850
+ readonly example: "conservative";
851
+ readonly enum: readonly ["aggressive", "conservative"];
852
+ };
698
853
  };
854
+ readonly required: readonly ["scalingProfile"];
699
855
  readonly additionalProperties: false;
700
856
  };
701
857
  export declare const InviteSchema: {
@@ -1 +1 @@
1
- {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoNvB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DvB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4Fd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAmBzB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmD3B,CAAC;AAEX,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoG/B,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2HhB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;CA+B3B,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2WzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0Wd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkWzB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoCf,CAAC;AAEX,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuDhB,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;CAoBhC,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoI3B,CAAC;AAEX,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyChC,CAAC;AAEX,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAsIrB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwEtB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6FtB,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;CAyB3B,CAAC;AAEX,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0EnC,CAAC;AAEX,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmKpB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;CA+BzB,CAAC;AAEX,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoC1B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqK3B,CAAC;AAEX,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;CAgB3B,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmFtB,CAAC;AAEX,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqJf,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;CA0BzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2Cd,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;CAsBzB,CAAC;AAEX,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;CA0BpB,CAAC;AAEX,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuFtB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6Cd,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6DxB,CAAC;AAEX,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgEb,CAAC;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2CxB,CAAC"}