@cloudfleet/sdk 0.0.1-ea442a2 → 0.0.1-ea4847c
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/@tanstack/react-query.gen.d.ts +1 -1
- package/dist/@tanstack/react-query.gen.js +1 -1
- package/dist/schemas.gen.d.ts +135 -68
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +188 -94
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +1 -1
- package/dist/sdk.gen.js +1 -1
- package/dist/types.gen.d.ts +71 -53
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +199 -181
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +100 -47
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
|
@@ -943,7 +943,7 @@ export declare const getClusterOptions: (options: Options<GetClusterData>) => im
|
|
|
943
943
|
/**
|
|
944
944
|
* Update cluster information.
|
|
945
945
|
*
|
|
946
|
-
* This endpoint allows you to update cluster details
|
|
946
|
+
* This endpoint allows you to update cluster details. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentation.
|
|
947
947
|
*
|
|
948
948
|
* This endpoint is available to administrators of the organization only.
|
|
949
949
|
*
|
|
@@ -935,7 +935,7 @@ export const getClusterOptions = (options) => queryOptions({
|
|
|
935
935
|
/**
|
|
936
936
|
* Update cluster information.
|
|
937
937
|
*
|
|
938
|
-
* This endpoint allows you to update cluster details
|
|
938
|
+
* This endpoint allows you to update cluster details. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentation.
|
|
939
939
|
*
|
|
940
940
|
* This endpoint is available to administrators of the organization only.
|
|
941
941
|
*
|
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -275,14 +275,10 @@ export declare const ClusterCreateInputSchema: {
|
|
|
275
275
|
readonly tier: {
|
|
276
276
|
readonly type: "string";
|
|
277
277
|
readonly description: "Tier of the cluster.";
|
|
278
|
+
readonly default: "basic";
|
|
278
279
|
readonly example: "pro";
|
|
279
280
|
readonly enum: readonly ["basic", "pro"];
|
|
280
281
|
};
|
|
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";
|
|
285
|
-
};
|
|
286
282
|
readonly version_channel: {
|
|
287
283
|
readonly type: "string";
|
|
288
284
|
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-]+)*))?$";
|
|
@@ -303,14 +299,16 @@ export declare const ClusterCreateInputSchema: {
|
|
|
303
299
|
readonly gpu_sharing_strategy: {
|
|
304
300
|
readonly type: "string";
|
|
305
301
|
readonly description: "GPU sharing strategy.";
|
|
302
|
+
readonly default: "none";
|
|
306
303
|
readonly example: "none";
|
|
307
304
|
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
308
305
|
};
|
|
309
306
|
readonly gpu_max_shared_clients_per_gpu: {
|
|
310
307
|
readonly type: "integer";
|
|
311
|
-
readonly minimum:
|
|
308
|
+
readonly minimum: 2;
|
|
312
309
|
readonly maximum: 48;
|
|
313
310
|
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
311
|
+
readonly default: 4;
|
|
314
312
|
readonly example: 10;
|
|
315
313
|
};
|
|
316
314
|
readonly cilium_socket_lb_host_namespace_only: {
|
|
@@ -319,50 +317,61 @@ export declare const ClusterCreateInputSchema: {
|
|
|
319
317
|
readonly example: false;
|
|
320
318
|
};
|
|
321
319
|
};
|
|
322
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
323
320
|
readonly additionalProperties: false;
|
|
324
321
|
readonly description: "Cluster feature toggles.";
|
|
325
322
|
readonly default: {
|
|
326
323
|
readonly gpu_sharing_strategy: "none";
|
|
327
|
-
readonly gpu_max_shared_clients_per_gpu:
|
|
324
|
+
readonly gpu_max_shared_clients_per_gpu: 4;
|
|
328
325
|
readonly cilium_socket_lb_host_namespace_only: false;
|
|
329
326
|
};
|
|
330
327
|
};
|
|
328
|
+
readonly region: {
|
|
329
|
+
readonly type: "string";
|
|
330
|
+
readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
|
|
331
|
+
readonly example: "europe-central-1a";
|
|
332
|
+
};
|
|
331
333
|
readonly networking: {
|
|
332
334
|
readonly type: "object";
|
|
333
335
|
readonly properties: {
|
|
334
336
|
readonly pod_cidr: {
|
|
335
337
|
readonly type: "string";
|
|
336
338
|
readonly description: "CIDR block for pod IPs.";
|
|
337
|
-
readonly
|
|
339
|
+
readonly default: "10.244.0.0/16";
|
|
338
340
|
};
|
|
339
341
|
readonly service_cidr: {
|
|
340
342
|
readonly type: "string";
|
|
341
343
|
readonly description: "CIDR block for service IPs.";
|
|
342
|
-
readonly
|
|
344
|
+
readonly default: "10.96.0.0/12";
|
|
343
345
|
};
|
|
344
346
|
readonly dual_stack: {
|
|
345
347
|
readonly type: "boolean";
|
|
346
348
|
readonly description: "Enable IPv4+IPv6 dual-stack networking.";
|
|
347
|
-
readonly example: false;
|
|
348
349
|
};
|
|
349
350
|
readonly pod_cidr_v6: {
|
|
350
351
|
readonly type: "string";
|
|
351
352
|
readonly description: "IPv6 pod CIDR. Requires dual_stack.";
|
|
352
|
-
readonly
|
|
353
|
+
readonly default: "2001:db8:1:2::/48";
|
|
353
354
|
};
|
|
354
355
|
readonly service_cidr_v6: {
|
|
355
356
|
readonly type: "string";
|
|
356
357
|
readonly description: "IPv6 service CIDR. Requires dual_stack.";
|
|
357
|
-
readonly
|
|
358
|
+
readonly default: "2001:db8:1:1::/112";
|
|
358
359
|
};
|
|
359
360
|
};
|
|
360
361
|
readonly additionalProperties: false;
|
|
361
362
|
readonly description: "Cluster networking configuration. Immutable after creation.";
|
|
363
|
+
readonly default: {
|
|
364
|
+
readonly pod_cidr: "10.244.0.0/16";
|
|
365
|
+
readonly service_cidr: "10.96.0.0/12";
|
|
366
|
+
readonly dual_stack: false;
|
|
367
|
+
readonly pod_cidr_v6: "2001:db8:1:2::/48";
|
|
368
|
+
readonly service_cidr_v6: "2001:db8:1:1::/112";
|
|
369
|
+
};
|
|
362
370
|
};
|
|
363
371
|
};
|
|
364
|
-
readonly required: readonly ["name", "
|
|
372
|
+
readonly required: readonly ["name", "region"];
|
|
365
373
|
readonly additionalProperties: false;
|
|
374
|
+
readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
366
375
|
};
|
|
367
376
|
export declare const ClusterJoinInformationSchema: {
|
|
368
377
|
readonly type: "object";
|
|
@@ -467,9 +476,57 @@ export declare const ClusterSchema: {
|
|
|
467
476
|
readonly tier: {
|
|
468
477
|
readonly type: "string";
|
|
469
478
|
readonly description: "Tier of the cluster.";
|
|
479
|
+
readonly default: "basic";
|
|
470
480
|
readonly example: "pro";
|
|
471
481
|
readonly enum: readonly ["basic", "pro"];
|
|
472
482
|
};
|
|
483
|
+
readonly version_channel: {
|
|
484
|
+
readonly type: "string";
|
|
485
|
+
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-]+)*))?$";
|
|
486
|
+
readonly description: "Version of the kubernetes cluster.";
|
|
487
|
+
readonly default: "1.x.x-cfke.x";
|
|
488
|
+
readonly example: "1.x.x-cfke.x";
|
|
489
|
+
};
|
|
490
|
+
readonly release_channel: {
|
|
491
|
+
readonly type: "string";
|
|
492
|
+
readonly description: "Release channel for the cluster's control plane.";
|
|
493
|
+
readonly default: "rapid";
|
|
494
|
+
readonly example: "rapid";
|
|
495
|
+
readonly enum: readonly ["rapid", "stable", "extended"];
|
|
496
|
+
};
|
|
497
|
+
readonly features: {
|
|
498
|
+
readonly type: "object";
|
|
499
|
+
readonly properties: {
|
|
500
|
+
readonly gpu_sharing_strategy: {
|
|
501
|
+
readonly type: "string";
|
|
502
|
+
readonly description: "GPU sharing strategy.";
|
|
503
|
+
readonly default: "none";
|
|
504
|
+
readonly example: "none";
|
|
505
|
+
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
506
|
+
};
|
|
507
|
+
readonly gpu_max_shared_clients_per_gpu: {
|
|
508
|
+
readonly type: "integer";
|
|
509
|
+
readonly minimum: 2;
|
|
510
|
+
readonly maximum: 48;
|
|
511
|
+
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
512
|
+
readonly default: 4;
|
|
513
|
+
readonly example: 10;
|
|
514
|
+
};
|
|
515
|
+
readonly cilium_socket_lb_host_namespace_only: {
|
|
516
|
+
readonly type: "boolean";
|
|
517
|
+
readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
|
|
518
|
+
readonly example: false;
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu", "cilium_socket_lb_host_namespace_only"];
|
|
522
|
+
readonly additionalProperties: false;
|
|
523
|
+
readonly description: "Cluster feature toggles.";
|
|
524
|
+
readonly default: {
|
|
525
|
+
readonly gpu_sharing_strategy: "none";
|
|
526
|
+
readonly gpu_max_shared_clients_per_gpu: 4;
|
|
527
|
+
readonly cilium_socket_lb_host_namespace_only: false;
|
|
528
|
+
};
|
|
529
|
+
};
|
|
473
530
|
readonly region: {
|
|
474
531
|
readonly type: "string";
|
|
475
532
|
readonly description: "Cloudfleet control plane region. This field can not be updated after creation.";
|
|
@@ -481,63 +538,38 @@ export declare const ClusterSchema: {
|
|
|
481
538
|
readonly pod_cidr: {
|
|
482
539
|
readonly type: "string";
|
|
483
540
|
readonly description: "CIDR block for pod IPs.";
|
|
484
|
-
readonly
|
|
541
|
+
readonly default: "10.244.0.0/16";
|
|
485
542
|
};
|
|
486
543
|
readonly service_cidr: {
|
|
487
544
|
readonly type: "string";
|
|
488
545
|
readonly description: "CIDR block for service IPs.";
|
|
489
|
-
readonly
|
|
546
|
+
readonly default: "10.96.0.0/12";
|
|
490
547
|
};
|
|
491
548
|
readonly dual_stack: {
|
|
492
549
|
readonly type: "boolean";
|
|
493
550
|
readonly description: "Enable IPv4+IPv6 dual-stack networking.";
|
|
494
|
-
readonly example: false;
|
|
495
551
|
};
|
|
496
552
|
readonly pod_cidr_v6: {
|
|
497
553
|
readonly type: "string";
|
|
498
554
|
readonly description: "IPv6 pod CIDR. Requires dual_stack.";
|
|
499
|
-
readonly
|
|
555
|
+
readonly default: "2001:db8:1:2::/48";
|
|
500
556
|
};
|
|
501
557
|
readonly service_cidr_v6: {
|
|
502
558
|
readonly type: "string";
|
|
503
559
|
readonly description: "IPv6 service CIDR. Requires dual_stack.";
|
|
504
|
-
readonly
|
|
560
|
+
readonly default: "2001:db8:1:1::/112";
|
|
505
561
|
};
|
|
506
562
|
};
|
|
563
|
+
readonly required: readonly ["pod_cidr", "service_cidr", "dual_stack", "pod_cidr_v6", "service_cidr_v6"];
|
|
507
564
|
readonly additionalProperties: false;
|
|
508
565
|
readonly description: "Cluster networking configuration. Immutable after creation.";
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
};
|
|
516
|
-
readonly features: {
|
|
517
|
-
readonly type: "object";
|
|
518
|
-
readonly properties: {
|
|
519
|
-
readonly gpu_sharing_strategy: {
|
|
520
|
-
readonly type: "string";
|
|
521
|
-
readonly description: "GPU sharing strategy.";
|
|
522
|
-
readonly example: "none";
|
|
523
|
-
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
524
|
-
};
|
|
525
|
-
readonly gpu_max_shared_clients_per_gpu: {
|
|
526
|
-
readonly type: "integer";
|
|
527
|
-
readonly minimum: 1;
|
|
528
|
-
readonly maximum: 48;
|
|
529
|
-
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
530
|
-
readonly example: 10;
|
|
531
|
-
};
|
|
532
|
-
readonly cilium_socket_lb_host_namespace_only: {
|
|
533
|
-
readonly type: "boolean";
|
|
534
|
-
readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
|
|
535
|
-
readonly example: false;
|
|
536
|
-
};
|
|
566
|
+
readonly default: {
|
|
567
|
+
readonly pod_cidr: "10.244.0.0/16";
|
|
568
|
+
readonly service_cidr: "10.96.0.0/12";
|
|
569
|
+
readonly dual_stack: false;
|
|
570
|
+
readonly pod_cidr_v6: "2001:db8:1:2::/48";
|
|
571
|
+
readonly service_cidr_v6: "2001:db8:1:1::/112";
|
|
537
572
|
};
|
|
538
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
539
|
-
readonly additionalProperties: false;
|
|
540
|
-
readonly description: "Cluster feature toggles.";
|
|
541
573
|
};
|
|
542
574
|
readonly id: {
|
|
543
575
|
readonly type: "string";
|
|
@@ -598,15 +630,10 @@ export declare const ClusterSchema: {
|
|
|
598
630
|
readonly description: "Indicates if the cluster is ready to be used.";
|
|
599
631
|
readonly example: true;
|
|
600
632
|
};
|
|
601
|
-
readonly version_channel: {
|
|
602
|
-
readonly type: "string";
|
|
603
|
-
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-]+)*))?$";
|
|
604
|
-
readonly description: "Version of the kubernetes cluster.";
|
|
605
|
-
readonly example: "1.x.x-cfke.x";
|
|
606
|
-
};
|
|
607
633
|
};
|
|
608
|
-
readonly required: readonly ["name", "tier", "region", "id", "status"];
|
|
634
|
+
readonly required: readonly ["name", "tier", "version_channel", "release_channel", "features", "region", "networking", "id", "status", "ready"];
|
|
609
635
|
readonly additionalProperties: false;
|
|
636
|
+
readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
610
637
|
};
|
|
611
638
|
export declare const ClusterUpdateInputSchema: {
|
|
612
639
|
readonly type: "object";
|
|
@@ -622,6 +649,7 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
622
649
|
readonly tier: {
|
|
623
650
|
readonly type: "string";
|
|
624
651
|
readonly description: "Tier of the cluster.";
|
|
652
|
+
readonly default: "basic";
|
|
625
653
|
readonly example: "pro";
|
|
626
654
|
readonly enum: readonly ["basic", "pro"];
|
|
627
655
|
};
|
|
@@ -629,11 +657,13 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
629
657
|
readonly type: "string";
|
|
630
658
|
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-]+)*))?$";
|
|
631
659
|
readonly description: "Version of the kubernetes cluster.";
|
|
660
|
+
readonly default: "1.x.x-cfke.x";
|
|
632
661
|
readonly example: "1.x.x-cfke.x";
|
|
633
662
|
};
|
|
634
663
|
readonly release_channel: {
|
|
635
664
|
readonly type: "string";
|
|
636
665
|
readonly description: "Release channel for the cluster's control plane.";
|
|
666
|
+
readonly default: "rapid";
|
|
637
667
|
readonly example: "rapid";
|
|
638
668
|
readonly enum: readonly ["rapid", "stable", "extended"];
|
|
639
669
|
};
|
|
@@ -643,14 +673,16 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
643
673
|
readonly gpu_sharing_strategy: {
|
|
644
674
|
readonly type: "string";
|
|
645
675
|
readonly description: "GPU sharing strategy.";
|
|
676
|
+
readonly default: "none";
|
|
646
677
|
readonly example: "none";
|
|
647
678
|
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
648
679
|
};
|
|
649
680
|
readonly gpu_max_shared_clients_per_gpu: {
|
|
650
681
|
readonly type: "integer";
|
|
651
|
-
readonly minimum:
|
|
682
|
+
readonly minimum: 2;
|
|
652
683
|
readonly maximum: 48;
|
|
653
684
|
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
685
|
+
readonly default: 4;
|
|
654
686
|
readonly example: 10;
|
|
655
687
|
};
|
|
656
688
|
readonly cilium_socket_lb_host_namespace_only: {
|
|
@@ -659,13 +691,18 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
659
691
|
readonly example: false;
|
|
660
692
|
};
|
|
661
693
|
};
|
|
662
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
663
694
|
readonly additionalProperties: false;
|
|
664
695
|
readonly description: "Cluster feature toggles.";
|
|
696
|
+
readonly default: {
|
|
697
|
+
readonly gpu_sharing_strategy: "none";
|
|
698
|
+
readonly gpu_max_shared_clients_per_gpu: 4;
|
|
699
|
+
readonly cilium_socket_lb_host_namespace_only: false;
|
|
700
|
+
};
|
|
665
701
|
};
|
|
666
702
|
};
|
|
667
|
-
readonly required: readonly ["
|
|
703
|
+
readonly required: readonly ["name"];
|
|
668
704
|
readonly additionalProperties: false;
|
|
705
|
+
readonly description: "Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
669
706
|
};
|
|
670
707
|
export declare const FleetCreateInputSchema: {
|
|
671
708
|
readonly type: "object";
|
|
@@ -762,6 +799,7 @@ export declare const FleetCreateInputSchema: {
|
|
|
762
799
|
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"];
|
|
763
800
|
};
|
|
764
801
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
802
|
+
readonly default: readonly [];
|
|
765
803
|
};
|
|
766
804
|
readonly 'topology.kubernetes.io/region': {
|
|
767
805
|
readonly type: "array";
|
|
@@ -770,14 +808,21 @@ export declare const FleetCreateInputSchema: {
|
|
|
770
808
|
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"];
|
|
771
809
|
};
|
|
772
810
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
811
|
+
readonly default: readonly [];
|
|
773
812
|
};
|
|
774
813
|
};
|
|
775
814
|
readonly additionalProperties: false;
|
|
776
|
-
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.
|
|
815
|
+
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.";
|
|
816
|
+
readonly default: {
|
|
817
|
+
readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
|
|
818
|
+
readonly 'kubernetes.io/arch': readonly ["amd64"];
|
|
819
|
+
readonly 'cfke.io/instance-family': readonly [];
|
|
820
|
+
readonly 'topology.kubernetes.io/region': readonly [];
|
|
821
|
+
};
|
|
777
822
|
};
|
|
778
823
|
readonly scalingProfile: {
|
|
779
824
|
readonly type: "string";
|
|
780
|
-
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
825
|
+
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`).";
|
|
781
826
|
readonly default: "conservative";
|
|
782
827
|
readonly example: "conservative";
|
|
783
828
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
@@ -793,6 +838,7 @@ export declare const FleetCreateInputSchema: {
|
|
|
793
838
|
};
|
|
794
839
|
readonly required: readonly ["id"];
|
|
795
840
|
readonly additionalProperties: false;
|
|
841
|
+
readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
796
842
|
};
|
|
797
843
|
export declare const FleetSchema: {
|
|
798
844
|
readonly type: "object";
|
|
@@ -887,6 +933,7 @@ export declare const FleetSchema: {
|
|
|
887
933
|
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"];
|
|
888
934
|
};
|
|
889
935
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
936
|
+
readonly default: readonly [];
|
|
890
937
|
};
|
|
891
938
|
readonly 'topology.kubernetes.io/region': {
|
|
892
939
|
readonly type: "array";
|
|
@@ -895,14 +942,22 @@ export declare const FleetSchema: {
|
|
|
895
942
|
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"];
|
|
896
943
|
};
|
|
897
944
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
945
|
+
readonly default: readonly [];
|
|
898
946
|
};
|
|
899
947
|
};
|
|
948
|
+
readonly required: readonly ["karpenter.sh/capacity-type", "kubernetes.io/arch"];
|
|
900
949
|
readonly additionalProperties: false;
|
|
901
|
-
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.
|
|
950
|
+
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.";
|
|
951
|
+
readonly default: {
|
|
952
|
+
readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
|
|
953
|
+
readonly 'kubernetes.io/arch': readonly ["amd64"];
|
|
954
|
+
readonly 'cfke.io/instance-family': readonly [];
|
|
955
|
+
readonly 'topology.kubernetes.io/region': readonly [];
|
|
956
|
+
};
|
|
902
957
|
};
|
|
903
958
|
readonly scalingProfile: {
|
|
904
959
|
readonly type: "string";
|
|
905
|
-
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
960
|
+
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`).";
|
|
906
961
|
readonly default: "conservative";
|
|
907
962
|
readonly example: "conservative";
|
|
908
963
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
@@ -936,8 +991,9 @@ export declare const FleetSchema: {
|
|
|
936
991
|
readonly example: "2024-09-12T09:11:27Z";
|
|
937
992
|
};
|
|
938
993
|
};
|
|
939
|
-
readonly required: readonly ["scalingProfile", "id", "ready", "created_at", "updated_at"];
|
|
994
|
+
readonly required: readonly ["constraints", "scalingProfile", "id", "ready", "created_at", "updated_at"];
|
|
940
995
|
readonly additionalProperties: false;
|
|
996
|
+
readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
941
997
|
};
|
|
942
998
|
export declare const FleetUpdateInputSchema: {
|
|
943
999
|
readonly type: "object";
|
|
@@ -1015,6 +1071,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1015
1071
|
};
|
|
1016
1072
|
readonly minItems: 1;
|
|
1017
1073
|
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
1074
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
1018
1075
|
};
|
|
1019
1076
|
readonly 'kubernetes.io/arch': {
|
|
1020
1077
|
readonly type: "array";
|
|
@@ -1024,6 +1081,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1024
1081
|
};
|
|
1025
1082
|
readonly minItems: 1;
|
|
1026
1083
|
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
1084
|
+
readonly default: readonly ["amd64"];
|
|
1027
1085
|
};
|
|
1028
1086
|
readonly 'cfke.io/instance-family': {
|
|
1029
1087
|
readonly type: "array";
|
|
@@ -1032,6 +1090,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1032
1090
|
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"];
|
|
1033
1091
|
};
|
|
1034
1092
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
1093
|
+
readonly default: readonly [];
|
|
1035
1094
|
};
|
|
1036
1095
|
readonly 'topology.kubernetes.io/region': {
|
|
1037
1096
|
readonly type: "array";
|
|
@@ -1040,20 +1099,28 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1040
1099
|
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"];
|
|
1041
1100
|
};
|
|
1042
1101
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
1102
|
+
readonly default: readonly [];
|
|
1043
1103
|
};
|
|
1044
1104
|
};
|
|
1045
1105
|
readonly additionalProperties: false;
|
|
1046
|
-
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.
|
|
1106
|
+
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.";
|
|
1107
|
+
readonly default: {
|
|
1108
|
+
readonly 'karpenter.sh/capacity-type': readonly ["on-demand", "spot"];
|
|
1109
|
+
readonly 'kubernetes.io/arch': readonly ["amd64"];
|
|
1110
|
+
readonly 'cfke.io/instance-family': readonly [];
|
|
1111
|
+
readonly 'topology.kubernetes.io/region': readonly [];
|
|
1112
|
+
};
|
|
1047
1113
|
};
|
|
1048
1114
|
readonly scalingProfile: {
|
|
1049
1115
|
readonly type: "string";
|
|
1050
|
-
readonly description: "Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.";
|
|
1116
|
+
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`).";
|
|
1117
|
+
readonly default: "conservative";
|
|
1051
1118
|
readonly example: "conservative";
|
|
1052
1119
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
1053
1120
|
};
|
|
1054
1121
|
};
|
|
1055
|
-
readonly required: readonly ["scalingProfile"];
|
|
1056
1122
|
readonly additionalProperties: false;
|
|
1123
|
+
readonly description: "Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.";
|
|
1057
1124
|
};
|
|
1058
1125
|
export declare const InviteCreateInputSchema: {
|
|
1059
1126
|
readonly type: "object";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8NvB,CAAC;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA2DvB,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8CzB,CAAC;AAEX,eAAO,MAAM,WAAW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4Ed,CAAC;AAEX,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;CAmBzB,CAAC;AAEX,eAAO,MAAM,wBAAwB
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|