@cloudfleet/sdk 0.0.1-523e444 → 0.0.1-56c3d31
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 +1048 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1040 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +113 -98
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/index.d.ts +1 -1
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js.map +1 -1
- package/dist/client/types.gen.d.ts +9 -13
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +6 -2
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js +10 -12
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +1 -3
- package/dist/client.gen.js.map +1 -1
- package/dist/core/auth.gen.d.ts.map +1 -1
- package/dist/core/auth.gen.js.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +16 -8
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.js +1 -1
- package/dist/core/bodySerializer.gen.js.map +1 -1
- package/dist/core/params.gen.d.ts +10 -0
- package/dist/core/params.gen.d.ts.map +1 -1
- package/dist/core/params.gen.js +18 -6
- package/dist/core/params.gen.js.map +1 -1
- package/dist/core/pathSerializer.gen.d.ts.map +1 -1
- package/dist/core/pathSerializer.gen.js +3 -11
- package/dist/core/pathSerializer.gen.js.map +1 -1
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -1
- package/dist/core/queryKeySerializer.gen.js +4 -11
- package/dist/core/queryKeySerializer.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +6 -9
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/core/types.gen.d.ts +1 -1
- package/dist/core/types.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.d.ts.map +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +559 -131
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1084 -215
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +53 -6
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +100 -127
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +570 -57
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +594 -617
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +357 -457
- package/dist/zod.gen.js.map +1 -1
- package/package.json +28 -5
package/dist/types.gen.d.ts
CHANGED
|
@@ -169,13 +169,13 @@ export type ClusterCreateInput = {
|
|
|
169
169
|
*/
|
|
170
170
|
tier: 'basic' | 'pro';
|
|
171
171
|
/**
|
|
172
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
172
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
173
173
|
*/
|
|
174
|
-
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
174
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
175
175
|
/**
|
|
176
176
|
* Version of the kubernetes cluster.
|
|
177
177
|
*/
|
|
178
|
-
version_channel?:
|
|
178
|
+
version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
|
|
179
179
|
};
|
|
180
180
|
export type ClusterJoinInformation = {
|
|
181
181
|
/**
|
|
@@ -186,6 +186,10 @@ export type ClusterJoinInformation = {
|
|
|
186
186
|
* Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
|
|
187
187
|
*/
|
|
188
188
|
endpoint: string;
|
|
189
|
+
/**
|
|
190
|
+
* Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
|
|
191
|
+
*/
|
|
192
|
+
cluster_dns: string;
|
|
189
193
|
/**
|
|
190
194
|
* Authentication key for the cluster.
|
|
191
195
|
*/
|
|
@@ -243,13 +247,9 @@ export type Cluster = {
|
|
|
243
247
|
*/
|
|
244
248
|
tier: 'basic' | 'pro';
|
|
245
249
|
/**
|
|
246
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
247
|
-
*/
|
|
248
|
-
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
249
|
-
/**
|
|
250
|
-
* Version of the kubernetes cluster.
|
|
250
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
251
251
|
*/
|
|
252
|
-
|
|
252
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
253
253
|
/**
|
|
254
254
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
255
255
|
*/
|
|
@@ -279,6 +279,10 @@ export type Cluster = {
|
|
|
279
279
|
* Indicates if the cluster is ready to be used.
|
|
280
280
|
*/
|
|
281
281
|
ready?: boolean;
|
|
282
|
+
/**
|
|
283
|
+
* Version of the kubernetes cluster.
|
|
284
|
+
*/
|
|
285
|
+
version_channel?: string;
|
|
282
286
|
};
|
|
283
287
|
export type ClusterUpdateInput = {
|
|
284
288
|
/**
|
|
@@ -422,7 +426,7 @@ export type Invite = {
|
|
|
422
426
|
};
|
|
423
427
|
export type Invoice = {
|
|
424
428
|
/**
|
|
425
|
-
* Unique identifier of the invoice.
|
|
429
|
+
* Unique identifier of the invoice.
|
|
426
430
|
*/
|
|
427
431
|
id?: string;
|
|
428
432
|
number?: string;
|
|
@@ -452,50 +456,91 @@ export type Invoice = {
|
|
|
452
456
|
period_end: string;
|
|
453
457
|
invoice_pdf?: string;
|
|
454
458
|
};
|
|
455
|
-
export type
|
|
459
|
+
export type MarketplaceListingFiles = {
|
|
456
460
|
/**
|
|
457
|
-
*
|
|
461
|
+
* Raw Chart.yaml content from the Helm chart
|
|
458
462
|
*/
|
|
459
|
-
|
|
463
|
+
chartYaml?: string;
|
|
460
464
|
/**
|
|
461
|
-
*
|
|
465
|
+
* Raw values.yaml content from the Helm chart
|
|
462
466
|
*/
|
|
463
|
-
|
|
467
|
+
valuesYaml?: string;
|
|
464
468
|
/**
|
|
465
|
-
*
|
|
469
|
+
* JSON schema for values.yaml as a string
|
|
466
470
|
*/
|
|
467
|
-
|
|
471
|
+
valuesSchemaJson?: string;
|
|
472
|
+
};
|
|
473
|
+
export type MarketplaceListing = {
|
|
468
474
|
/**
|
|
469
|
-
*
|
|
475
|
+
* Name of the chart
|
|
470
476
|
*/
|
|
471
|
-
|
|
477
|
+
name: string;
|
|
472
478
|
/**
|
|
473
|
-
*
|
|
479
|
+
* Available versions of the chart
|
|
474
480
|
*/
|
|
475
|
-
|
|
481
|
+
versions: Array<string>;
|
|
476
482
|
/**
|
|
477
|
-
*
|
|
483
|
+
* Version channels for the chart
|
|
478
484
|
*/
|
|
479
|
-
|
|
485
|
+
version_channels: Array<string>;
|
|
480
486
|
/**
|
|
481
|
-
*
|
|
487
|
+
* Latest version of the chart
|
|
482
488
|
*/
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
489
|
+
latestVersion: string;
|
|
490
|
+
/**
|
|
491
|
+
* Chart metadata
|
|
492
|
+
*/
|
|
493
|
+
metadata?: {
|
|
486
494
|
/**
|
|
487
|
-
*
|
|
495
|
+
* Chart name from metadata
|
|
496
|
+
*/
|
|
497
|
+
name: string;
|
|
498
|
+
/**
|
|
499
|
+
* Chart version from metadata
|
|
488
500
|
*/
|
|
489
501
|
version: string;
|
|
490
502
|
/**
|
|
491
|
-
*
|
|
503
|
+
* Chart description
|
|
492
504
|
*/
|
|
493
|
-
|
|
505
|
+
description?: string;
|
|
494
506
|
/**
|
|
495
|
-
*
|
|
507
|
+
* Application version
|
|
496
508
|
*/
|
|
497
|
-
|
|
498
|
-
|
|
509
|
+
appVersion?: string;
|
|
510
|
+
/**
|
|
511
|
+
* Helm API version
|
|
512
|
+
*/
|
|
513
|
+
apiVersion?: string;
|
|
514
|
+
/**
|
|
515
|
+
* Chart keywords
|
|
516
|
+
*/
|
|
517
|
+
keywords?: Array<string>;
|
|
518
|
+
/**
|
|
519
|
+
* Chart home URL
|
|
520
|
+
*/
|
|
521
|
+
home?: string;
|
|
522
|
+
/**
|
|
523
|
+
* A URL to an SVG or PNG image to be used as an icon
|
|
524
|
+
*/
|
|
525
|
+
icon?: string;
|
|
526
|
+
/**
|
|
527
|
+
* Chart source URLs
|
|
528
|
+
*/
|
|
529
|
+
sources?: Array<string>;
|
|
530
|
+
/**
|
|
531
|
+
* Chart maintainers
|
|
532
|
+
*/
|
|
533
|
+
maintainers?: Array<{
|
|
534
|
+
/**
|
|
535
|
+
* Maintainer name
|
|
536
|
+
*/
|
|
537
|
+
name: string;
|
|
538
|
+
/**
|
|
539
|
+
* Maintainer email
|
|
540
|
+
*/
|
|
541
|
+
email?: string;
|
|
542
|
+
}>;
|
|
543
|
+
};
|
|
499
544
|
};
|
|
500
545
|
export type OrganizationCreateInput = {
|
|
501
546
|
/**
|
|
@@ -577,6 +622,10 @@ export type Organization = {
|
|
|
577
622
|
*/
|
|
578
623
|
label: string;
|
|
579
624
|
}>;
|
|
625
|
+
/**
|
|
626
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
627
|
+
*/
|
|
628
|
+
cfcr_storage_gb: number;
|
|
580
629
|
};
|
|
581
630
|
/**
|
|
582
631
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
@@ -613,6 +662,201 @@ export type PaymentMethod = {
|
|
|
613
662
|
*/
|
|
614
663
|
brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
615
664
|
};
|
|
665
|
+
export type PlatformQuota = {
|
|
666
|
+
/**
|
|
667
|
+
* Maximum number of Basic clusters that can be created.
|
|
668
|
+
*/
|
|
669
|
+
basic_clusters_max: number;
|
|
670
|
+
/**
|
|
671
|
+
* Available number of Basic clusters that can be created.
|
|
672
|
+
*/
|
|
673
|
+
basic_clusters_available: number;
|
|
674
|
+
/**
|
|
675
|
+
* Maximum number of Pro clusters that can be created.
|
|
676
|
+
*/
|
|
677
|
+
pro_clusters_max: number;
|
|
678
|
+
/**
|
|
679
|
+
* Available number of Pro clusters that can be created.
|
|
680
|
+
*/
|
|
681
|
+
pro_clusters_available: number;
|
|
682
|
+
/**
|
|
683
|
+
* Maximum number of fleets that can be created per cluster.
|
|
684
|
+
*/
|
|
685
|
+
fleets_max: number;
|
|
686
|
+
/**
|
|
687
|
+
* List of Cloudfleet cluster tiers available for the organization.
|
|
688
|
+
*/
|
|
689
|
+
cluster_tiers: Array<string>;
|
|
690
|
+
/**
|
|
691
|
+
* List of Cloudfleet control plane regions available for the organization.
|
|
692
|
+
*/
|
|
693
|
+
regions: Array<string>;
|
|
694
|
+
/**
|
|
695
|
+
* List of CFKE control plane versions available for the organization.
|
|
696
|
+
*/
|
|
697
|
+
versions: Array<{
|
|
698
|
+
/**
|
|
699
|
+
* Id of the control plane version. Used in API calls.
|
|
700
|
+
*/
|
|
701
|
+
id: string;
|
|
702
|
+
/**
|
|
703
|
+
* Label of the control plane version. Used in frontent UI.
|
|
704
|
+
*/
|
|
705
|
+
label: string;
|
|
706
|
+
}>;
|
|
707
|
+
/**
|
|
708
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
709
|
+
*/
|
|
710
|
+
cfcr_storage_gb: number;
|
|
711
|
+
};
|
|
712
|
+
export type RegistryRepository = {
|
|
713
|
+
/**
|
|
714
|
+
* Repository name.
|
|
715
|
+
*/
|
|
716
|
+
name: string;
|
|
717
|
+
/**
|
|
718
|
+
* Registry region.
|
|
719
|
+
*/
|
|
720
|
+
region: string;
|
|
721
|
+
/**
|
|
722
|
+
* Full URI of the repository.
|
|
723
|
+
*/
|
|
724
|
+
uri: string;
|
|
725
|
+
};
|
|
726
|
+
export type RegistryRepositoryWithTags = {
|
|
727
|
+
/**
|
|
728
|
+
* Repository name.
|
|
729
|
+
*/
|
|
730
|
+
name: string;
|
|
731
|
+
/**
|
|
732
|
+
* Registry region.
|
|
733
|
+
*/
|
|
734
|
+
region: string;
|
|
735
|
+
/**
|
|
736
|
+
* Full URI of the repository.
|
|
737
|
+
*/
|
|
738
|
+
uri: string;
|
|
739
|
+
/**
|
|
740
|
+
* Array of tags in the repository.
|
|
741
|
+
*/
|
|
742
|
+
tags: Array<{
|
|
743
|
+
/**
|
|
744
|
+
* Tag name.
|
|
745
|
+
*/
|
|
746
|
+
name: string;
|
|
747
|
+
/**
|
|
748
|
+
* Size of the tag in bytes.
|
|
749
|
+
*/
|
|
750
|
+
size: number;
|
|
751
|
+
/**
|
|
752
|
+
* Media type of the manifest.
|
|
753
|
+
*/
|
|
754
|
+
mediaType?: string;
|
|
755
|
+
/**
|
|
756
|
+
* Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
|
|
757
|
+
*/
|
|
758
|
+
platforms?: Array<string>;
|
|
759
|
+
}>;
|
|
760
|
+
/**
|
|
761
|
+
* Total size of all tags in the repository in bytes.
|
|
762
|
+
*/
|
|
763
|
+
totalSize: number;
|
|
764
|
+
};
|
|
765
|
+
export type RegistryTag = {
|
|
766
|
+
/**
|
|
767
|
+
* Tag name.
|
|
768
|
+
*/
|
|
769
|
+
name: string;
|
|
770
|
+
/**
|
|
771
|
+
* Manifest digest for pulling by digest.
|
|
772
|
+
*/
|
|
773
|
+
digest: string;
|
|
774
|
+
/**
|
|
775
|
+
* Media type of the manifest.
|
|
776
|
+
*/
|
|
777
|
+
mediaType?: string;
|
|
778
|
+
/**
|
|
779
|
+
* Manifest config metadata.
|
|
780
|
+
*/
|
|
781
|
+
config?: {
|
|
782
|
+
/**
|
|
783
|
+
* Size of the config in bytes.
|
|
784
|
+
*/
|
|
785
|
+
size: number;
|
|
786
|
+
};
|
|
787
|
+
/**
|
|
788
|
+
* Array of layer metadata.
|
|
789
|
+
*/
|
|
790
|
+
layers?: Array<{
|
|
791
|
+
/**
|
|
792
|
+
* Digest of the layer.
|
|
793
|
+
*/
|
|
794
|
+
digest?: string;
|
|
795
|
+
/**
|
|
796
|
+
* Size of the layer in bytes.
|
|
797
|
+
*/
|
|
798
|
+
size: number;
|
|
799
|
+
}>;
|
|
800
|
+
/**
|
|
801
|
+
* Array of manifests for multi-arch images.
|
|
802
|
+
*/
|
|
803
|
+
manifests?: Array<{
|
|
804
|
+
/**
|
|
805
|
+
* Digest of the manifest.
|
|
806
|
+
*/
|
|
807
|
+
digest: string;
|
|
808
|
+
/**
|
|
809
|
+
* Platform information for the manifest.
|
|
810
|
+
*/
|
|
811
|
+
platform?: {
|
|
812
|
+
/**
|
|
813
|
+
* Architecture of the platform.
|
|
814
|
+
*/
|
|
815
|
+
architecture: string;
|
|
816
|
+
/**
|
|
817
|
+
* Operating system of the platform.
|
|
818
|
+
*/
|
|
819
|
+
os: string;
|
|
820
|
+
/**
|
|
821
|
+
* Variant of the platform (e.g., v7, v8 for ARM).
|
|
822
|
+
*/
|
|
823
|
+
variant?: string;
|
|
824
|
+
};
|
|
825
|
+
/**
|
|
826
|
+
* Layers for this platform.
|
|
827
|
+
*/
|
|
828
|
+
layers?: Array<{
|
|
829
|
+
/**
|
|
830
|
+
* Digest of the layer.
|
|
831
|
+
*/
|
|
832
|
+
digest?: string;
|
|
833
|
+
/**
|
|
834
|
+
* Size of the layer in bytes.
|
|
835
|
+
*/
|
|
836
|
+
size: number;
|
|
837
|
+
}>;
|
|
838
|
+
/**
|
|
839
|
+
* Total size of this platform manifest in bytes.
|
|
840
|
+
*/
|
|
841
|
+
size?: number;
|
|
842
|
+
}>;
|
|
843
|
+
/**
|
|
844
|
+
* Total size of the tag in bytes.
|
|
845
|
+
*/
|
|
846
|
+
size: number;
|
|
847
|
+
/**
|
|
848
|
+
* Registry region.
|
|
849
|
+
*/
|
|
850
|
+
region: string;
|
|
851
|
+
/**
|
|
852
|
+
* Repository name.
|
|
853
|
+
*/
|
|
854
|
+
repository: string;
|
|
855
|
+
/**
|
|
856
|
+
* Full URI of the tag.
|
|
857
|
+
*/
|
|
858
|
+
uri: string;
|
|
859
|
+
};
|
|
616
860
|
export type TokenCreateInput = {
|
|
617
861
|
/**
|
|
618
862
|
* Human readable access token name.
|
|
@@ -655,35 +899,85 @@ export type TokenUpdateInput = {
|
|
|
655
899
|
*/
|
|
656
900
|
role?: 'Administrator' | 'User';
|
|
657
901
|
};
|
|
902
|
+
export type UsageFacets = {
|
|
903
|
+
/**
|
|
904
|
+
* List of unique cluster IDs
|
|
905
|
+
*/
|
|
906
|
+
cluster_id?: Array<string>;
|
|
907
|
+
/**
|
|
908
|
+
* List of unique products
|
|
909
|
+
*/
|
|
910
|
+
product?: Array<string>;
|
|
911
|
+
};
|
|
912
|
+
export type UsageResponse = {
|
|
913
|
+
/**
|
|
914
|
+
* Usage data
|
|
915
|
+
*/
|
|
916
|
+
data: Array<{
|
|
917
|
+
/**
|
|
918
|
+
* Hour of the usage
|
|
919
|
+
*/
|
|
920
|
+
hour: string;
|
|
921
|
+
/**
|
|
922
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
923
|
+
*/
|
|
924
|
+
cluster_id: string;
|
|
925
|
+
/**
|
|
926
|
+
* The product the usage is associated with
|
|
927
|
+
*/
|
|
928
|
+
product: string;
|
|
929
|
+
/**
|
|
930
|
+
* Consumption
|
|
931
|
+
*/
|
|
932
|
+
value: number;
|
|
933
|
+
/**
|
|
934
|
+
* Price per unit
|
|
935
|
+
*/
|
|
936
|
+
price: number;
|
|
937
|
+
/**
|
|
938
|
+
* Total cost
|
|
939
|
+
*/
|
|
940
|
+
total: number;
|
|
941
|
+
}>;
|
|
942
|
+
/**
|
|
943
|
+
* Facets for filtering
|
|
944
|
+
*/
|
|
945
|
+
facets: {
|
|
946
|
+
/**
|
|
947
|
+
* List of unique cluster IDs
|
|
948
|
+
*/
|
|
949
|
+
cluster_id?: Array<string>;
|
|
950
|
+
/**
|
|
951
|
+
* List of unique products
|
|
952
|
+
*/
|
|
953
|
+
product?: Array<string>;
|
|
954
|
+
};
|
|
955
|
+
};
|
|
658
956
|
export type Usage = {
|
|
659
957
|
/**
|
|
660
958
|
* Hour of the usage
|
|
661
959
|
*/
|
|
662
|
-
hour
|
|
960
|
+
hour: string;
|
|
663
961
|
/**
|
|
664
962
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
665
963
|
*/
|
|
666
964
|
cluster_id: string;
|
|
667
965
|
/**
|
|
668
|
-
*
|
|
966
|
+
* The product the usage is associated with
|
|
669
967
|
*/
|
|
670
|
-
|
|
968
|
+
product: string;
|
|
671
969
|
/**
|
|
672
|
-
*
|
|
970
|
+
* Consumption
|
|
673
971
|
*/
|
|
674
|
-
|
|
972
|
+
value: number;
|
|
675
973
|
/**
|
|
676
|
-
*
|
|
974
|
+
* Price per unit
|
|
677
975
|
*/
|
|
678
|
-
|
|
976
|
+
price: number;
|
|
679
977
|
/**
|
|
680
|
-
*
|
|
978
|
+
* Total cost
|
|
681
979
|
*/
|
|
682
|
-
|
|
683
|
-
cpu: number | '';
|
|
684
|
-
price: number | '';
|
|
685
|
-
value: number | '';
|
|
686
|
-
total: number | '';
|
|
980
|
+
total: number;
|
|
687
981
|
};
|
|
688
982
|
export type UserCreateInput = {
|
|
689
983
|
/**
|
|
@@ -770,7 +1064,12 @@ export type UserUpdateInput = {
|
|
|
770
1064
|
export type GetUsageData = {
|
|
771
1065
|
body?: never;
|
|
772
1066
|
path?: never;
|
|
773
|
-
query?:
|
|
1067
|
+
query?: {
|
|
1068
|
+
/**
|
|
1069
|
+
* Time granularity for usage aggregation - hourly (Past 48 hours aggregated by hour), daily (Past 30 days aggregated by day), monthly (Past 12 months aggregated by month)
|
|
1070
|
+
*/
|
|
1071
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
1072
|
+
};
|
|
774
1073
|
url: '/billing/usage';
|
|
775
1074
|
};
|
|
776
1075
|
export type GetUsageErrors = {
|
|
@@ -781,9 +1080,9 @@ export type GetUsageErrors = {
|
|
|
781
1080
|
};
|
|
782
1081
|
export type GetUsageResponses = {
|
|
783
1082
|
/**
|
|
784
|
-
*
|
|
1083
|
+
* Usage data with facets for filtering
|
|
785
1084
|
*/
|
|
786
|
-
200:
|
|
1085
|
+
200: UsageResponse;
|
|
787
1086
|
};
|
|
788
1087
|
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
789
1088
|
export type GetPaymentMethodData = {
|
|
@@ -1257,6 +1556,30 @@ export type UpdateClusterResponses = {
|
|
|
1257
1556
|
200: Cluster;
|
|
1258
1557
|
};
|
|
1259
1558
|
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
1559
|
+
export type GetClusterCaData = {
|
|
1560
|
+
body?: never;
|
|
1561
|
+
path: {
|
|
1562
|
+
/**
|
|
1563
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1564
|
+
*/
|
|
1565
|
+
cluster_id: string;
|
|
1566
|
+
};
|
|
1567
|
+
query?: never;
|
|
1568
|
+
url: '/clusters/{cluster_id}/ca';
|
|
1569
|
+
};
|
|
1570
|
+
export type GetClusterCaErrors = {
|
|
1571
|
+
/**
|
|
1572
|
+
* Cluster not found, or its certificate authority is not available yet.
|
|
1573
|
+
*/
|
|
1574
|
+
404: unknown;
|
|
1575
|
+
};
|
|
1576
|
+
export type GetClusterCaResponses = {
|
|
1577
|
+
/**
|
|
1578
|
+
* PEM-encoded certificate authority of the cluster.
|
|
1579
|
+
*/
|
|
1580
|
+
200: string;
|
|
1581
|
+
};
|
|
1582
|
+
export type GetClusterCaResponse = GetClusterCaResponses[keyof GetClusterCaResponses];
|
|
1260
1583
|
export type GetJoinInformationData = {
|
|
1261
1584
|
body?: never;
|
|
1262
1585
|
path: {
|
|
@@ -1372,24 +1695,76 @@ export type ListMarketplaceChartsResponses = {
|
|
|
1372
1695
|
200: Array<MarketplaceListing>;
|
|
1373
1696
|
};
|
|
1374
1697
|
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
1375
|
-
export type
|
|
1698
|
+
export type GetMarketplaceChartFilesData = {
|
|
1376
1699
|
body?: never;
|
|
1377
1700
|
path: {
|
|
1378
1701
|
/**
|
|
1379
|
-
*
|
|
1702
|
+
* Name of the chart in the marketplace.
|
|
1380
1703
|
*/
|
|
1381
|
-
|
|
1704
|
+
chart_name: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
|
|
1707
|
+
*/
|
|
1708
|
+
version_channel: string;
|
|
1382
1709
|
};
|
|
1383
1710
|
query?: never;
|
|
1384
|
-
url: '/marketplace/{
|
|
1711
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1712
|
+
};
|
|
1713
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
1714
|
+
/**
|
|
1715
|
+
* Chart not found or no version matches the channel
|
|
1716
|
+
*/
|
|
1717
|
+
404: unknown;
|
|
1385
1718
|
};
|
|
1386
|
-
export type
|
|
1719
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
1387
1720
|
/**
|
|
1388
|
-
* Returns an object containing the chart
|
|
1721
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1389
1722
|
*/
|
|
1390
|
-
200:
|
|
1723
|
+
200: MarketplaceListingFiles;
|
|
1391
1724
|
};
|
|
1392
|
-
export type
|
|
1725
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
1726
|
+
export type PostMcpData = {
|
|
1727
|
+
/**
|
|
1728
|
+
* JSON-RPC 2.0 request payload
|
|
1729
|
+
*/
|
|
1730
|
+
body: {
|
|
1731
|
+
jsonrpc?: string;
|
|
1732
|
+
method?: string;
|
|
1733
|
+
id?: string | number;
|
|
1734
|
+
/**
|
|
1735
|
+
* Method-specific parameters
|
|
1736
|
+
*/
|
|
1737
|
+
params?: {
|
|
1738
|
+
[key: string]: unknown;
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
path?: never;
|
|
1742
|
+
query?: never;
|
|
1743
|
+
url: '/mcp';
|
|
1744
|
+
};
|
|
1745
|
+
export type PostMcpErrors = {
|
|
1746
|
+
/**
|
|
1747
|
+
* Not authenticated
|
|
1748
|
+
*/
|
|
1749
|
+
401: unknown;
|
|
1750
|
+
};
|
|
1751
|
+
export type PostMcpResponses = {
|
|
1752
|
+
/**
|
|
1753
|
+
* JSON-RPC 2.0 success or error response
|
|
1754
|
+
*/
|
|
1755
|
+
200: {
|
|
1756
|
+
jsonrpc?: string;
|
|
1757
|
+
id?: string | number;
|
|
1758
|
+
result?: {
|
|
1759
|
+
[key: string]: unknown;
|
|
1760
|
+
};
|
|
1761
|
+
error?: {
|
|
1762
|
+
code?: number;
|
|
1763
|
+
message?: string;
|
|
1764
|
+
};
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
1393
1768
|
export type GetOrganizationData = {
|
|
1394
1769
|
body?: never;
|
|
1395
1770
|
path?: never;
|
|
@@ -1415,6 +1790,144 @@ export type CreateOrganizationResponses = {
|
|
|
1415
1790
|
*/
|
|
1416
1791
|
200: unknown;
|
|
1417
1792
|
};
|
|
1793
|
+
export type ListRepositoriesData = {
|
|
1794
|
+
body?: never;
|
|
1795
|
+
path?: never;
|
|
1796
|
+
query?: never;
|
|
1797
|
+
url: '/registry';
|
|
1798
|
+
};
|
|
1799
|
+
export type ListRepositoriesErrors = {
|
|
1800
|
+
/**
|
|
1801
|
+
* Not authenticated
|
|
1802
|
+
*/
|
|
1803
|
+
401: unknown;
|
|
1804
|
+
/**
|
|
1805
|
+
* Internal server error
|
|
1806
|
+
*/
|
|
1807
|
+
500: unknown;
|
|
1808
|
+
};
|
|
1809
|
+
export type ListRepositoriesResponses = {
|
|
1810
|
+
/**
|
|
1811
|
+
* List of repositories
|
|
1812
|
+
*/
|
|
1813
|
+
200: Array<RegistryRepository>;
|
|
1814
|
+
};
|
|
1815
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1816
|
+
export type ListTagsData = {
|
|
1817
|
+
body?: never;
|
|
1818
|
+
path: {
|
|
1819
|
+
/**
|
|
1820
|
+
* Region where the repository is located
|
|
1821
|
+
*/
|
|
1822
|
+
region: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Name of the repository
|
|
1825
|
+
*/
|
|
1826
|
+
repository: string;
|
|
1827
|
+
};
|
|
1828
|
+
query?: never;
|
|
1829
|
+
url: '/registry/{region}/{repository}';
|
|
1830
|
+
};
|
|
1831
|
+
export type ListTagsErrors = {
|
|
1832
|
+
/**
|
|
1833
|
+
* Not authenticated
|
|
1834
|
+
*/
|
|
1835
|
+
401: unknown;
|
|
1836
|
+
/**
|
|
1837
|
+
* Repository not found
|
|
1838
|
+
*/
|
|
1839
|
+
404: unknown;
|
|
1840
|
+
/**
|
|
1841
|
+
* Internal server error
|
|
1842
|
+
*/
|
|
1843
|
+
500: unknown;
|
|
1844
|
+
};
|
|
1845
|
+
export type ListTagsResponses = {
|
|
1846
|
+
/**
|
|
1847
|
+
* Repository with tags
|
|
1848
|
+
*/
|
|
1849
|
+
200: RegistryRepositoryWithTags;
|
|
1850
|
+
};
|
|
1851
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
1852
|
+
export type DeleteTagData = {
|
|
1853
|
+
body?: never;
|
|
1854
|
+
path: {
|
|
1855
|
+
/**
|
|
1856
|
+
* Region where the repository is located
|
|
1857
|
+
*/
|
|
1858
|
+
region: string;
|
|
1859
|
+
/**
|
|
1860
|
+
* Name of the repository
|
|
1861
|
+
*/
|
|
1862
|
+
repository: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Name of the tag
|
|
1865
|
+
*/
|
|
1866
|
+
tag: string;
|
|
1867
|
+
};
|
|
1868
|
+
query?: never;
|
|
1869
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1870
|
+
};
|
|
1871
|
+
export type DeleteTagErrors = {
|
|
1872
|
+
/**
|
|
1873
|
+
* Not authenticated
|
|
1874
|
+
*/
|
|
1875
|
+
401: unknown;
|
|
1876
|
+
/**
|
|
1877
|
+
* Tag not found
|
|
1878
|
+
*/
|
|
1879
|
+
404: unknown;
|
|
1880
|
+
/**
|
|
1881
|
+
* Internal server error
|
|
1882
|
+
*/
|
|
1883
|
+
500: unknown;
|
|
1884
|
+
};
|
|
1885
|
+
export type DeleteTagResponses = {
|
|
1886
|
+
/**
|
|
1887
|
+
* Tag successfully deleted
|
|
1888
|
+
*/
|
|
1889
|
+
200: unknown;
|
|
1890
|
+
};
|
|
1891
|
+
export type GetTagData = {
|
|
1892
|
+
body?: never;
|
|
1893
|
+
path: {
|
|
1894
|
+
/**
|
|
1895
|
+
* Region where the repository is located
|
|
1896
|
+
*/
|
|
1897
|
+
region: string;
|
|
1898
|
+
/**
|
|
1899
|
+
* Name of the repository
|
|
1900
|
+
*/
|
|
1901
|
+
repository: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* Name of the tag
|
|
1904
|
+
*/
|
|
1905
|
+
tag: string;
|
|
1906
|
+
};
|
|
1907
|
+
query?: never;
|
|
1908
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1909
|
+
};
|
|
1910
|
+
export type GetTagErrors = {
|
|
1911
|
+
/**
|
|
1912
|
+
* Not authenticated
|
|
1913
|
+
*/
|
|
1914
|
+
401: unknown;
|
|
1915
|
+
/**
|
|
1916
|
+
* Tag not found
|
|
1917
|
+
*/
|
|
1918
|
+
404: unknown;
|
|
1919
|
+
/**
|
|
1920
|
+
* Internal server error
|
|
1921
|
+
*/
|
|
1922
|
+
500: unknown;
|
|
1923
|
+
};
|
|
1924
|
+
export type GetTagResponses = {
|
|
1925
|
+
/**
|
|
1926
|
+
* Tag details
|
|
1927
|
+
*/
|
|
1928
|
+
200: RegistryTag;
|
|
1929
|
+
};
|
|
1930
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
1418
1931
|
export type ListTokensData = {
|
|
1419
1932
|
body?: never;
|
|
1420
1933
|
path?: never;
|