@cloudfleet/sdk 0.0.1-84adc67 → 0.0.1-882a962
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/README.md +26 -2
- package/dist/@tanstack/react-query.gen.d.ts +55 -5
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +51 -1
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +1 -4
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +1 -1
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +2 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +3 -3
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/params.gen.js +4 -4
- package/dist/core/params.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +214 -227
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +320 -285
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +28 -2
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +38 -1
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +154 -156
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +346 -262
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +178 -90
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -8
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -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";
|
|
@@ -303,14 +336,16 @@ export declare const ClusterCreateInputSchema: {
|
|
|
303
336
|
readonly gpu_sharing_strategy: {
|
|
304
337
|
readonly type: "string";
|
|
305
338
|
readonly description: "GPU sharing strategy.";
|
|
339
|
+
readonly default: "none";
|
|
306
340
|
readonly example: "none";
|
|
307
341
|
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
308
342
|
};
|
|
309
343
|
readonly gpu_max_shared_clients_per_gpu: {
|
|
310
344
|
readonly type: "integer";
|
|
311
|
-
readonly minimum:
|
|
345
|
+
readonly minimum: 2;
|
|
312
346
|
readonly maximum: 48;
|
|
313
347
|
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
348
|
+
readonly default: 4;
|
|
314
349
|
readonly example: 10;
|
|
315
350
|
};
|
|
316
351
|
readonly cilium_socket_lb_host_namespace_only: {
|
|
@@ -319,55 +354,61 @@ export declare const ClusterCreateInputSchema: {
|
|
|
319
354
|
readonly example: false;
|
|
320
355
|
};
|
|
321
356
|
};
|
|
322
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
323
357
|
readonly additionalProperties: false;
|
|
324
358
|
readonly description: "Cluster feature toggles.";
|
|
325
359
|
readonly default: {
|
|
326
360
|
readonly gpu_sharing_strategy: "none";
|
|
327
|
-
readonly gpu_max_shared_clients_per_gpu:
|
|
361
|
+
readonly gpu_max_shared_clients_per_gpu: 4;
|
|
328
362
|
readonly cilium_socket_lb_host_namespace_only: false;
|
|
329
363
|
};
|
|
330
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
|
+
};
|
|
331
370
|
readonly networking: {
|
|
332
371
|
readonly type: "object";
|
|
333
372
|
readonly properties: {
|
|
334
373
|
readonly pod_cidr: {
|
|
335
374
|
readonly type: "string";
|
|
336
375
|
readonly description: "CIDR block for pod IPs.";
|
|
337
|
-
readonly
|
|
376
|
+
readonly default: "10.244.0.0/16";
|
|
338
377
|
};
|
|
339
378
|
readonly service_cidr: {
|
|
340
379
|
readonly type: "string";
|
|
341
380
|
readonly description: "CIDR block for service IPs.";
|
|
342
|
-
readonly
|
|
343
|
-
};
|
|
344
|
-
readonly cluster_dns: {
|
|
345
|
-
readonly type: "string";
|
|
346
|
-
readonly description: "CoreDNS service IP.";
|
|
347
|
-
readonly example: "10.96.0.10";
|
|
381
|
+
readonly default: "10.96.0.0/12";
|
|
348
382
|
};
|
|
349
383
|
readonly dual_stack: {
|
|
350
384
|
readonly type: "boolean";
|
|
351
385
|
readonly description: "Enable IPv4+IPv6 dual-stack networking.";
|
|
352
|
-
readonly example: false;
|
|
353
386
|
};
|
|
354
387
|
readonly pod_cidr_v6: {
|
|
355
388
|
readonly type: "string";
|
|
356
389
|
readonly description: "IPv6 pod CIDR. Requires dual_stack.";
|
|
357
|
-
readonly
|
|
390
|
+
readonly default: "2001:db8:1:2::/48";
|
|
358
391
|
};
|
|
359
392
|
readonly service_cidr_v6: {
|
|
360
393
|
readonly type: "string";
|
|
361
394
|
readonly description: "IPv6 service CIDR. Requires dual_stack.";
|
|
362
|
-
readonly
|
|
395
|
+
readonly default: "2001:db8:1:1::/112";
|
|
363
396
|
};
|
|
364
397
|
};
|
|
365
398
|
readonly additionalProperties: false;
|
|
366
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
|
+
};
|
|
367
407
|
};
|
|
368
408
|
};
|
|
369
|
-
readonly required: readonly ["name", "
|
|
409
|
+
readonly required: readonly ["name", "region"];
|
|
370
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.";
|
|
371
412
|
};
|
|
372
413
|
export declare const ClusterJoinInformationSchema: {
|
|
373
414
|
readonly type: "object";
|
|
@@ -472,8 +513,56 @@ export declare const ClusterSchema: {
|
|
|
472
513
|
readonly tier: {
|
|
473
514
|
readonly type: "string";
|
|
474
515
|
readonly description: "Tier of the cluster.";
|
|
516
|
+
readonly default: "basic";
|
|
475
517
|
readonly example: "pro";
|
|
476
|
-
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
|
+
};
|
|
477
566
|
};
|
|
478
567
|
readonly region: {
|
|
479
568
|
readonly type: "string";
|
|
@@ -486,68 +575,38 @@ export declare const ClusterSchema: {
|
|
|
486
575
|
readonly pod_cidr: {
|
|
487
576
|
readonly type: "string";
|
|
488
577
|
readonly description: "CIDR block for pod IPs.";
|
|
489
|
-
readonly
|
|
578
|
+
readonly default: "10.244.0.0/16";
|
|
490
579
|
};
|
|
491
580
|
readonly service_cidr: {
|
|
492
581
|
readonly type: "string";
|
|
493
582
|
readonly description: "CIDR block for service IPs.";
|
|
494
|
-
readonly
|
|
495
|
-
};
|
|
496
|
-
readonly cluster_dns: {
|
|
497
|
-
readonly type: "string";
|
|
498
|
-
readonly description: "CoreDNS service IP.";
|
|
499
|
-
readonly example: "10.96.0.10";
|
|
583
|
+
readonly default: "10.96.0.0/12";
|
|
500
584
|
};
|
|
501
585
|
readonly dual_stack: {
|
|
502
586
|
readonly type: "boolean";
|
|
503
587
|
readonly description: "Enable IPv4+IPv6 dual-stack networking.";
|
|
504
|
-
readonly example: false;
|
|
505
588
|
};
|
|
506
589
|
readonly pod_cidr_v6: {
|
|
507
590
|
readonly type: "string";
|
|
508
591
|
readonly description: "IPv6 pod CIDR. Requires dual_stack.";
|
|
509
|
-
readonly
|
|
592
|
+
readonly default: "2001:db8:1:2::/48";
|
|
510
593
|
};
|
|
511
594
|
readonly service_cidr_v6: {
|
|
512
595
|
readonly type: "string";
|
|
513
596
|
readonly description: "IPv6 service CIDR. Requires dual_stack.";
|
|
514
|
-
readonly
|
|
597
|
+
readonly default: "2001:db8:1:1::/112";
|
|
515
598
|
};
|
|
516
599
|
};
|
|
600
|
+
readonly required: readonly ["pod_cidr", "service_cidr", "dual_stack", "pod_cidr_v6", "service_cidr_v6"];
|
|
517
601
|
readonly additionalProperties: false;
|
|
518
602
|
readonly description: "Cluster networking configuration. Immutable after creation.";
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
};
|
|
526
|
-
readonly features: {
|
|
527
|
-
readonly type: "object";
|
|
528
|
-
readonly properties: {
|
|
529
|
-
readonly gpu_sharing_strategy: {
|
|
530
|
-
readonly type: "string";
|
|
531
|
-
readonly description: "GPU sharing strategy.";
|
|
532
|
-
readonly example: "none";
|
|
533
|
-
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
534
|
-
};
|
|
535
|
-
readonly gpu_max_shared_clients_per_gpu: {
|
|
536
|
-
readonly type: "integer";
|
|
537
|
-
readonly minimum: 1;
|
|
538
|
-
readonly maximum: 48;
|
|
539
|
-
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
540
|
-
readonly example: 10;
|
|
541
|
-
};
|
|
542
|
-
readonly cilium_socket_lb_host_namespace_only: {
|
|
543
|
-
readonly type: "boolean";
|
|
544
|
-
readonly description: "Restrict Cilium socket load-balancing to the host namespace. Required for the Tailscale operator and Istio.";
|
|
545
|
-
readonly example: false;
|
|
546
|
-
};
|
|
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";
|
|
547
609
|
};
|
|
548
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
549
|
-
readonly additionalProperties: false;
|
|
550
|
-
readonly description: "Cluster feature toggles.";
|
|
551
610
|
};
|
|
552
611
|
readonly id: {
|
|
553
612
|
readonly type: "string";
|
|
@@ -608,15 +667,10 @@ export declare const ClusterSchema: {
|
|
|
608
667
|
readonly description: "Indicates if the cluster is ready to be used.";
|
|
609
668
|
readonly example: true;
|
|
610
669
|
};
|
|
611
|
-
readonly version_channel: {
|
|
612
|
-
readonly type: "string";
|
|
613
|
-
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-]+)*))?$";
|
|
614
|
-
readonly description: "Version of the kubernetes cluster.";
|
|
615
|
-
readonly example: "1.x.x-cfke.x";
|
|
616
|
-
};
|
|
617
670
|
};
|
|
618
|
-
readonly required: readonly ["name", "tier", "region", "id", "status"];
|
|
671
|
+
readonly required: readonly ["name", "tier", "version_channel", "release_channel", "features", "region", "networking", "id", "status", "ready"];
|
|
619
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.";
|
|
620
674
|
};
|
|
621
675
|
export declare const ClusterUpdateInputSchema: {
|
|
622
676
|
readonly type: "object";
|
|
@@ -632,18 +686,21 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
632
686
|
readonly tier: {
|
|
633
687
|
readonly type: "string";
|
|
634
688
|
readonly description: "Tier of the cluster.";
|
|
689
|
+
readonly default: "basic";
|
|
635
690
|
readonly example: "pro";
|
|
636
|
-
readonly enum: readonly ["basic", "pro"];
|
|
691
|
+
readonly enum: readonly ["basic", "pro", "enterprise"];
|
|
637
692
|
};
|
|
638
693
|
readonly version_channel: {
|
|
639
694
|
readonly type: "string";
|
|
640
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-]+)*))?$";
|
|
641
696
|
readonly description: "Version of the kubernetes cluster.";
|
|
697
|
+
readonly default: "1.x.x-cfke.x";
|
|
642
698
|
readonly example: "1.x.x-cfke.x";
|
|
643
699
|
};
|
|
644
700
|
readonly release_channel: {
|
|
645
701
|
readonly type: "string";
|
|
646
702
|
readonly description: "Release channel for the cluster's control plane.";
|
|
703
|
+
readonly default: "rapid";
|
|
647
704
|
readonly example: "rapid";
|
|
648
705
|
readonly enum: readonly ["rapid", "stable", "extended"];
|
|
649
706
|
};
|
|
@@ -653,14 +710,16 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
653
710
|
readonly gpu_sharing_strategy: {
|
|
654
711
|
readonly type: "string";
|
|
655
712
|
readonly description: "GPU sharing strategy.";
|
|
713
|
+
readonly default: "none";
|
|
656
714
|
readonly example: "none";
|
|
657
715
|
readonly enum: readonly ["none", "mps", "time_slicing"];
|
|
658
716
|
};
|
|
659
717
|
readonly gpu_max_shared_clients_per_gpu: {
|
|
660
718
|
readonly type: "integer";
|
|
661
|
-
readonly minimum:
|
|
719
|
+
readonly minimum: 2;
|
|
662
720
|
readonly maximum: 48;
|
|
663
721
|
readonly description: "Maximum number of pods that may share a single GPU.";
|
|
722
|
+
readonly default: 4;
|
|
664
723
|
readonly example: 10;
|
|
665
724
|
};
|
|
666
725
|
readonly cilium_socket_lb_host_namespace_only: {
|
|
@@ -669,13 +728,18 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
669
728
|
readonly example: false;
|
|
670
729
|
};
|
|
671
730
|
};
|
|
672
|
-
readonly required: readonly ["gpu_sharing_strategy", "gpu_max_shared_clients_per_gpu"];
|
|
673
731
|
readonly additionalProperties: false;
|
|
674
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
|
+
};
|
|
675
738
|
};
|
|
676
739
|
};
|
|
677
|
-
readonly required: readonly ["
|
|
740
|
+
readonly required: readonly ["name"];
|
|
678
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.";
|
|
679
743
|
};
|
|
680
744
|
export declare const FleetCreateInputSchema: {
|
|
681
745
|
readonly type: "object";
|
|
@@ -719,8 +783,8 @@ export declare const FleetCreateInputSchema: {
|
|
|
719
783
|
readonly type: "string";
|
|
720
784
|
readonly maxLength: 64;
|
|
721
785
|
readonly minLength: 64;
|
|
722
|
-
readonly pattern: "^[A-Za-z0-9]
|
|
723
|
-
readonly description: "Hetzner Cloud API token with read
|
|
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.";
|
|
724
788
|
};
|
|
725
789
|
};
|
|
726
790
|
readonly required: readonly ["enabled"];
|
|
@@ -772,6 +836,7 @@ export declare const FleetCreateInputSchema: {
|
|
|
772
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"];
|
|
773
837
|
};
|
|
774
838
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
839
|
+
readonly default: readonly [];
|
|
775
840
|
};
|
|
776
841
|
readonly 'topology.kubernetes.io/region': {
|
|
777
842
|
readonly type: "array";
|
|
@@ -780,14 +845,21 @@ export declare const FleetCreateInputSchema: {
|
|
|
780
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"];
|
|
781
846
|
};
|
|
782
847
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
848
|
+
readonly default: readonly [];
|
|
783
849
|
};
|
|
784
850
|
};
|
|
785
851
|
readonly additionalProperties: false;
|
|
786
|
-
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.
|
|
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
|
+
};
|
|
787
859
|
};
|
|
788
860
|
readonly scalingProfile: {
|
|
789
861
|
readonly type: "string";
|
|
790
|
-
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`).";
|
|
791
863
|
readonly default: "conservative";
|
|
792
864
|
readonly example: "conservative";
|
|
793
865
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
@@ -803,6 +875,7 @@ export declare const FleetCreateInputSchema: {
|
|
|
803
875
|
};
|
|
804
876
|
readonly required: readonly ["id"];
|
|
805
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.";
|
|
806
879
|
};
|
|
807
880
|
export declare const FleetSchema: {
|
|
808
881
|
readonly type: "object";
|
|
@@ -897,6 +970,7 @@ export declare const FleetSchema: {
|
|
|
897
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"];
|
|
898
971
|
};
|
|
899
972
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
973
|
+
readonly default: readonly [];
|
|
900
974
|
};
|
|
901
975
|
readonly 'topology.kubernetes.io/region': {
|
|
902
976
|
readonly type: "array";
|
|
@@ -905,14 +979,22 @@ export declare const FleetSchema: {
|
|
|
905
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"];
|
|
906
980
|
};
|
|
907
981
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
982
|
+
readonly default: readonly [];
|
|
908
983
|
};
|
|
909
984
|
};
|
|
985
|
+
readonly required: readonly ["karpenter.sh/capacity-type", "kubernetes.io/arch"];
|
|
910
986
|
readonly additionalProperties: false;
|
|
911
|
-
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.
|
|
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
|
+
};
|
|
912
994
|
};
|
|
913
995
|
readonly scalingProfile: {
|
|
914
996
|
readonly type: "string";
|
|
915
|
-
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`).";
|
|
916
998
|
readonly default: "conservative";
|
|
917
999
|
readonly example: "conservative";
|
|
918
1000
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
@@ -946,8 +1028,9 @@ export declare const FleetSchema: {
|
|
|
946
1028
|
readonly example: "2024-09-12T09:11:27Z";
|
|
947
1029
|
};
|
|
948
1030
|
};
|
|
949
|
-
readonly required: readonly ["scalingProfile", "id", "ready", "created_at", "updated_at"];
|
|
1031
|
+
readonly required: readonly ["constraints", "scalingProfile", "id", "ready", "created_at", "updated_at"];
|
|
950
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.";
|
|
951
1034
|
};
|
|
952
1035
|
export declare const FleetUpdateInputSchema: {
|
|
953
1036
|
readonly type: "object";
|
|
@@ -991,8 +1074,8 @@ export declare const FleetUpdateInputSchema: {
|
|
|
991
1074
|
readonly type: "string";
|
|
992
1075
|
readonly maxLength: 64;
|
|
993
1076
|
readonly minLength: 64;
|
|
994
|
-
readonly pattern: "^[A-Za-z0-9]
|
|
995
|
-
readonly description: "Hetzner Cloud API token with read
|
|
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.";
|
|
996
1079
|
};
|
|
997
1080
|
};
|
|
998
1081
|
readonly required: readonly ["enabled"];
|
|
@@ -1025,6 +1108,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1025
1108
|
};
|
|
1026
1109
|
readonly minItems: 1;
|
|
1027
1110
|
readonly description: "Allowed values for `karpenter.sh/capacity-type`.";
|
|
1111
|
+
readonly default: readonly ["on-demand", "spot"];
|
|
1028
1112
|
};
|
|
1029
1113
|
readonly 'kubernetes.io/arch': {
|
|
1030
1114
|
readonly type: "array";
|
|
@@ -1034,6 +1118,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1034
1118
|
};
|
|
1035
1119
|
readonly minItems: 1;
|
|
1036
1120
|
readonly description: "Allowed values for `kubernetes.io/arch`.";
|
|
1121
|
+
readonly default: readonly ["amd64"];
|
|
1037
1122
|
};
|
|
1038
1123
|
readonly 'cfke.io/instance-family': {
|
|
1039
1124
|
readonly type: "array";
|
|
@@ -1042,6 +1127,7 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1042
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"];
|
|
1043
1128
|
};
|
|
1044
1129
|
readonly description: "Allowed values for `cfke.io/instance-family`.";
|
|
1130
|
+
readonly default: readonly [];
|
|
1045
1131
|
};
|
|
1046
1132
|
readonly 'topology.kubernetes.io/region': {
|
|
1047
1133
|
readonly type: "array";
|
|
@@ -1050,20 +1136,28 @@ export declare const FleetUpdateInputSchema: {
|
|
|
1050
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"];
|
|
1051
1137
|
};
|
|
1052
1138
|
readonly description: "Allowed values for `topology.kubernetes.io/region`.";
|
|
1139
|
+
readonly default: readonly [];
|
|
1053
1140
|
};
|
|
1054
1141
|
};
|
|
1055
1142
|
readonly additionalProperties: false;
|
|
1056
|
-
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.
|
|
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
|
+
};
|
|
1057
1150
|
};
|
|
1058
1151
|
readonly scalingProfile: {
|
|
1059
1152
|
readonly type: "string";
|
|
1060
|
-
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";
|
|
1061
1155
|
readonly example: "conservative";
|
|
1062
1156
|
readonly enum: readonly ["aggressive", "conservative"];
|
|
1063
1157
|
};
|
|
1064
1158
|
};
|
|
1065
|
-
readonly required: readonly ["scalingProfile"];
|
|
1066
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.";
|
|
1067
1161
|
};
|
|
1068
1162
|
export declare const InviteCreateInputSchema: {
|
|
1069
1163
|
readonly type: "object";
|
|
@@ -1426,6 +1520,17 @@ export declare const OrganizationSchema: {
|
|
|
1426
1520
|
readonly description: "Available number of Pro clusters that can be created.";
|
|
1427
1521
|
readonly example: 999;
|
|
1428
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
|
+
};
|
|
1429
1534
|
readonly fleets_max: {
|
|
1430
1535
|
readonly type: "integer";
|
|
1431
1536
|
readonly minimum: 0;
|
|
@@ -1479,7 +1584,7 @@ export declare const OrganizationSchema: {
|
|
|
1479
1584
|
readonly example: 500;
|
|
1480
1585
|
};
|
|
1481
1586
|
};
|
|
1482
|
-
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"];
|
|
1483
1588
|
readonly additionalProperties: false;
|
|
1484
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.";
|
|
1485
1590
|
};
|
|
@@ -1590,6 +1695,17 @@ export declare const PlatformQuotaSchema: {
|
|
|
1590
1695
|
readonly description: "Available number of Pro clusters that can be created.";
|
|
1591
1696
|
readonly example: 999;
|
|
1592
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
|
+
};
|
|
1593
1709
|
readonly fleets_max: {
|
|
1594
1710
|
readonly type: "integer";
|
|
1595
1711
|
readonly minimum: 0;
|
|
@@ -1643,7 +1759,7 @@ export declare const PlatformQuotaSchema: {
|
|
|
1643
1759
|
readonly example: 500;
|
|
1644
1760
|
};
|
|
1645
1761
|
};
|
|
1646
|
-
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"];
|
|
1647
1763
|
readonly additionalProperties: false;
|
|
1648
1764
|
};
|
|
1649
1765
|
export declare const RegistryRepositorySchema: {
|
|
@@ -1934,142 +2050,6 @@ export declare const TicketCreateInputSchema: {
|
|
|
1934
2050
|
readonly required: readonly ["category", "body"];
|
|
1935
2051
|
readonly additionalProperties: false;
|
|
1936
2052
|
};
|
|
1937
|
-
export declare const TicketListResponseSchema: {
|
|
1938
|
-
readonly type: "object";
|
|
1939
|
-
readonly properties: {
|
|
1940
|
-
readonly items: {
|
|
1941
|
-
readonly type: "array";
|
|
1942
|
-
readonly items: {
|
|
1943
|
-
readonly type: "object";
|
|
1944
|
-
readonly properties: {
|
|
1945
|
-
readonly id: {
|
|
1946
|
-
readonly type: "string";
|
|
1947
|
-
readonly description: "Unique identifier of the ticket (Mongo ObjectId).";
|
|
1948
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3a";
|
|
1949
|
-
};
|
|
1950
|
-
readonly status: {
|
|
1951
|
-
readonly type: "string";
|
|
1952
|
-
readonly description: "Current state of the ticket.";
|
|
1953
|
-
readonly example: "waiting_on_us";
|
|
1954
|
-
readonly enum: readonly ["waiting_on_us", "waiting_on_user", "closed"];
|
|
1955
|
-
};
|
|
1956
|
-
readonly category: {
|
|
1957
|
-
readonly type: "string";
|
|
1958
|
-
readonly description: "Ticket category.";
|
|
1959
|
-
readonly example: "technical";
|
|
1960
|
-
readonly enum: readonly ["billing", "technical", "general"];
|
|
1961
|
-
};
|
|
1962
|
-
readonly summary: {
|
|
1963
|
-
readonly type: "string";
|
|
1964
|
-
readonly description: "First 128 characters of the initial message body, with markdown formatting and newlines stripped. Used for ticket list previews.";
|
|
1965
|
-
readonly example: "My cluster cannot reach the registry. Logs attached.";
|
|
1966
|
-
};
|
|
1967
|
-
readonly closed_at: {
|
|
1968
|
-
readonly type: "string";
|
|
1969
|
-
readonly format: "date-time";
|
|
1970
|
-
readonly nullable: true;
|
|
1971
|
-
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
1972
|
-
readonly example: "2026-05-18T16:08:14.338Z";
|
|
1973
|
-
};
|
|
1974
|
-
readonly date_created: {
|
|
1975
|
-
readonly type: "string";
|
|
1976
|
-
readonly format: "date-time";
|
|
1977
|
-
readonly description: "Creation date of the ticket. ISO 8601 UTC.";
|
|
1978
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1979
|
-
};
|
|
1980
|
-
readonly date_updated: {
|
|
1981
|
-
readonly type: "string";
|
|
1982
|
-
readonly format: "date-time";
|
|
1983
|
-
readonly description: "Last update date of the ticket. ISO 8601 UTC.";
|
|
1984
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
1985
|
-
};
|
|
1986
|
-
readonly messages: {
|
|
1987
|
-
readonly type: "array";
|
|
1988
|
-
readonly items: {
|
|
1989
|
-
readonly type: "object";
|
|
1990
|
-
readonly properties: {
|
|
1991
|
-
readonly id: {
|
|
1992
|
-
readonly type: "string";
|
|
1993
|
-
readonly description: "Unique identifier of the message (Mongo ObjectId).";
|
|
1994
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3b";
|
|
1995
|
-
};
|
|
1996
|
-
readonly type: {
|
|
1997
|
-
readonly type: "string";
|
|
1998
|
-
readonly description: "Message type. Internal notes are filtered out of customer-facing responses.";
|
|
1999
|
-
readonly example: "customer_reply";
|
|
2000
|
-
readonly enum: readonly ["customer_reply", "agent_reply"];
|
|
2001
|
-
};
|
|
2002
|
-
readonly body: {
|
|
2003
|
-
readonly type: "string";
|
|
2004
|
-
readonly description: "Message body in markdown.";
|
|
2005
|
-
readonly example: "Thanks — that resolved it on my side.";
|
|
2006
|
-
};
|
|
2007
|
-
readonly author_first_name: {
|
|
2008
|
-
readonly type: "string";
|
|
2009
|
-
readonly nullable: true;
|
|
2010
|
-
readonly description: "First name of the author. Null when not provided.";
|
|
2011
|
-
readonly example: "Jane";
|
|
2012
|
-
};
|
|
2013
|
-
readonly author_last_name: {
|
|
2014
|
-
readonly type: "string";
|
|
2015
|
-
readonly nullable: true;
|
|
2016
|
-
readonly description: "Last name of the author. Null when not provided.";
|
|
2017
|
-
readonly example: "Doe";
|
|
2018
|
-
};
|
|
2019
|
-
readonly attachments: {
|
|
2020
|
-
readonly type: "array";
|
|
2021
|
-
readonly items: {
|
|
2022
|
-
readonly type: "object";
|
|
2023
|
-
readonly properties: {
|
|
2024
|
-
readonly id: {
|
|
2025
|
-
readonly type: "string";
|
|
2026
|
-
readonly description: "Unique identifier of the attachment (Mongo ObjectId).";
|
|
2027
|
-
readonly example: "60c72b2f9f1b2c001f8e4d3c";
|
|
2028
|
-
};
|
|
2029
|
-
readonly filename: {
|
|
2030
|
-
readonly type: "string";
|
|
2031
|
-
readonly description: "Original filename as uploaded.";
|
|
2032
|
-
readonly example: "debug.log";
|
|
2033
|
-
};
|
|
2034
|
-
readonly content_type: {
|
|
2035
|
-
readonly type: "string";
|
|
2036
|
-
readonly description: "MIME content type of the attachment.";
|
|
2037
|
-
readonly example: "text/plain";
|
|
2038
|
-
};
|
|
2039
|
-
readonly size: {
|
|
2040
|
-
readonly type: "integer";
|
|
2041
|
-
readonly description: "Size of the attachment in bytes.";
|
|
2042
|
-
readonly example: 12345;
|
|
2043
|
-
};
|
|
2044
|
-
};
|
|
2045
|
-
readonly required: readonly ["id", "filename", "content_type", "size"];
|
|
2046
|
-
readonly additionalProperties: false;
|
|
2047
|
-
};
|
|
2048
|
-
readonly description: "Attachments associated with this message.";
|
|
2049
|
-
readonly example: readonly [];
|
|
2050
|
-
};
|
|
2051
|
-
readonly date_created: {
|
|
2052
|
-
readonly type: "string";
|
|
2053
|
-
readonly format: "date-time";
|
|
2054
|
-
readonly description: "Creation date of the message. ISO 8601 UTC.";
|
|
2055
|
-
readonly example: "2026-05-11T16:08:14.338Z";
|
|
2056
|
-
};
|
|
2057
|
-
};
|
|
2058
|
-
readonly required: readonly ["id", "type", "body", "date_created"];
|
|
2059
|
-
readonly additionalProperties: false;
|
|
2060
|
-
};
|
|
2061
|
-
readonly description: "Messages on the ticket in chronological order. Internal notes are excluded. Returned by the detail endpoint only.";
|
|
2062
|
-
};
|
|
2063
|
-
};
|
|
2064
|
-
readonly required: readonly ["id", "status", "category", "summary", "date_created", "date_updated"];
|
|
2065
|
-
readonly additionalProperties: false;
|
|
2066
|
-
};
|
|
2067
|
-
readonly description: "Tickets for the organization, ordered newest first. Messages are omitted from list responses.";
|
|
2068
|
-
};
|
|
2069
|
-
};
|
|
2070
|
-
readonly required: readonly ["items"];
|
|
2071
|
-
readonly additionalProperties: false;
|
|
2072
|
-
};
|
|
2073
2053
|
export declare const TicketMessageInputSchema: {
|
|
2074
2054
|
readonly type: "object";
|
|
2075
2055
|
readonly properties: {
|
|
@@ -2106,11 +2086,13 @@ export declare const TicketMessageSchema: {
|
|
|
2106
2086
|
};
|
|
2107
2087
|
readonly author_first_name: {
|
|
2108
2088
|
readonly type: "string";
|
|
2089
|
+
readonly nullable: true;
|
|
2109
2090
|
readonly description: "First name of the author. Null when not provided.";
|
|
2110
2091
|
readonly example: "Jane";
|
|
2111
2092
|
};
|
|
2112
2093
|
readonly author_last_name: {
|
|
2113
2094
|
readonly type: "string";
|
|
2095
|
+
readonly nullable: true;
|
|
2114
2096
|
readonly description: "Last name of the author. Null when not provided.";
|
|
2115
2097
|
readonly example: "Doe";
|
|
2116
2098
|
};
|
|
@@ -2184,6 +2166,7 @@ export declare const TicketSchema: {
|
|
|
2184
2166
|
readonly closed_at: {
|
|
2185
2167
|
readonly type: "string";
|
|
2186
2168
|
readonly format: "date-time";
|
|
2169
|
+
readonly nullable: true;
|
|
2187
2170
|
readonly description: "Closure timestamp. Null while the ticket is open.";
|
|
2188
2171
|
readonly example: "2026-05-18T16:08:14.338Z";
|
|
2189
2172
|
};
|
|
@@ -2371,9 +2354,10 @@ export declare const UsageFacetsSchema: {
|
|
|
2371
2354
|
readonly type: "array";
|
|
2372
2355
|
readonly items: {
|
|
2373
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"];
|
|
2374
2358
|
};
|
|
2375
2359
|
readonly description: "List of unique products";
|
|
2376
|
-
readonly example: readonly ["
|
|
2360
|
+
readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
|
|
2377
2361
|
};
|
|
2378
2362
|
};
|
|
2379
2363
|
readonly additionalProperties: false;
|
|
@@ -2399,7 +2383,8 @@ export declare const UsageResponseSchema: {
|
|
|
2399
2383
|
readonly product: {
|
|
2400
2384
|
readonly type: "string";
|
|
2401
2385
|
readonly description: "The product the usage is associated with";
|
|
2402
|
-
readonly example: "
|
|
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"];
|
|
2403
2388
|
};
|
|
2404
2389
|
readonly value: {
|
|
2405
2390
|
readonly type: "number";
|
|
@@ -2439,9 +2424,10 @@ export declare const UsageResponseSchema: {
|
|
|
2439
2424
|
readonly type: "array";
|
|
2440
2425
|
readonly items: {
|
|
2441
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"];
|
|
2442
2428
|
};
|
|
2443
2429
|
readonly description: "List of unique products";
|
|
2444
|
-
readonly example: readonly ["
|
|
2430
|
+
readonly example: readonly ["cfke_controlplane_pro", "cfke_connected_nodes_pro"];
|
|
2445
2431
|
};
|
|
2446
2432
|
};
|
|
2447
2433
|
readonly additionalProperties: false;
|
|
@@ -2467,7 +2453,8 @@ export declare const UsageSchema: {
|
|
|
2467
2453
|
readonly product: {
|
|
2468
2454
|
readonly type: "string";
|
|
2469
2455
|
readonly description: "The product the usage is associated with";
|
|
2470
|
-
readonly example: "
|
|
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"];
|
|
2471
2458
|
};
|
|
2472
2459
|
readonly value: {
|
|
2473
2460
|
readonly type: "number";
|