@cloudfleet/sdk 0.0.1-5753ad1 → 0.0.1-5aba3bd
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/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +39 -8
- 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 +4 -11
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +1 -1
- 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.map +1 -1
- package/dist/core/serverSentEvents.gen.js +5 -7
- 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 +397 -70
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +933 -149
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +37 -5
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +74 -127
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +406 -41
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +520 -561
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +313 -445
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -4
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -275,17 +275,18 @@ export declare const ClusterCreateInputSchema: {
|
|
|
275
275
|
};
|
|
276
276
|
readonly region: {
|
|
277
277
|
readonly type: "string";
|
|
278
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
279
|
-
readonly default: "staging";
|
|
278
|
+
readonly description: "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.";
|
|
279
|
+
readonly default: "staging-1a";
|
|
280
280
|
readonly example: "northamerica-central-1a";
|
|
281
|
-
readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
281
|
+
readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
282
282
|
};
|
|
283
283
|
readonly version_channel: {
|
|
284
284
|
readonly type: "string";
|
|
285
285
|
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-]+)*))?$";
|
|
286
286
|
readonly description: "Version of the kubernetes cluster.";
|
|
287
287
|
readonly default: "1.x.x-cfke.x";
|
|
288
|
-
readonly example: "1.
|
|
288
|
+
readonly example: "1.x.x-cfke.x";
|
|
289
|
+
readonly enum: readonly ["1.x.x-cfke.x", "1.31.x-cfke.x", "1.32.x-cfke.x", "1.33.x-cfke.x"];
|
|
289
290
|
};
|
|
290
291
|
};
|
|
291
292
|
readonly required: readonly ["name", "tier"];
|
|
@@ -305,6 +306,11 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
305
306
|
readonly description: "Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.";
|
|
306
307
|
readonly example: "https://10.31.64.7:6443";
|
|
307
308
|
};
|
|
309
|
+
readonly cluster_dns: {
|
|
310
|
+
readonly type: "string";
|
|
311
|
+
readonly description: "Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.";
|
|
312
|
+
readonly example: "10.96.0.10";
|
|
313
|
+
};
|
|
308
314
|
readonly auth_key: {
|
|
309
315
|
readonly type: "string";
|
|
310
316
|
readonly description: "Authentication key for the cluster.";
|
|
@@ -367,7 +373,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
367
373
|
readonly description: "OIDC Information for hosts to access to third party API's.";
|
|
368
374
|
};
|
|
369
375
|
};
|
|
370
|
-
readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
376
|
+
readonly required: readonly ["certificate_authority", "endpoint", "cluster_dns", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
371
377
|
readonly additionalProperties: false;
|
|
372
378
|
};
|
|
373
379
|
export declare const ClusterSchema: {
|
|
@@ -389,17 +395,10 @@ export declare const ClusterSchema: {
|
|
|
389
395
|
};
|
|
390
396
|
readonly region: {
|
|
391
397
|
readonly type: "string";
|
|
392
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
393
|
-
readonly default: "staging";
|
|
398
|
+
readonly description: "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.";
|
|
399
|
+
readonly default: "staging-1a";
|
|
394
400
|
readonly example: "northamerica-central-1a";
|
|
395
|
-
readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
396
|
-
};
|
|
397
|
-
readonly version_channel: {
|
|
398
|
-
readonly type: "string";
|
|
399
|
-
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-]+)*))?$";
|
|
400
|
-
readonly description: "Version of the kubernetes cluster.";
|
|
401
|
-
readonly default: "1.x.x-cfke.x";
|
|
402
|
-
readonly example: "1.33.x-cfke.x";
|
|
401
|
+
readonly enum: readonly ["staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
403
402
|
};
|
|
404
403
|
readonly id: {
|
|
405
404
|
readonly type: "string";
|
|
@@ -449,6 +448,12 @@ export declare const ClusterSchema: {
|
|
|
449
448
|
readonly description: "Indicates if the cluster is ready to be used.";
|
|
450
449
|
readonly example: true;
|
|
451
450
|
};
|
|
451
|
+
readonly version_channel: {
|
|
452
|
+
readonly type: "string";
|
|
453
|
+
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-]+)*))?$";
|
|
454
|
+
readonly description: "Version of the kubernetes cluster.";
|
|
455
|
+
readonly example: "1.x.x-cfke.x";
|
|
456
|
+
};
|
|
452
457
|
};
|
|
453
458
|
readonly required: readonly ["name", "tier", "id", "status"];
|
|
454
459
|
readonly additionalProperties: false;
|
|
@@ -474,7 +479,7 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
474
479
|
readonly type: "string";
|
|
475
480
|
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-]+)*))?$";
|
|
476
481
|
readonly description: "Version of the kubernetes cluster.";
|
|
477
|
-
readonly example: "1.
|
|
482
|
+
readonly example: "1.x.x-cfke.x";
|
|
478
483
|
};
|
|
479
484
|
};
|
|
480
485
|
readonly required: readonly ["tier"];
|
|
@@ -733,9 +738,8 @@ export declare const InvoiceSchema: {
|
|
|
733
738
|
readonly properties: {
|
|
734
739
|
readonly id: {
|
|
735
740
|
readonly type: "string";
|
|
736
|
-
readonly
|
|
737
|
-
readonly
|
|
738
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
741
|
+
readonly description: "Unique identifier of the invoice.";
|
|
742
|
+
readonly example: "in_1234567890xCrwxghOTj1234";
|
|
739
743
|
};
|
|
740
744
|
readonly number: {
|
|
741
745
|
readonly type: "string";
|
|
@@ -781,86 +785,142 @@ export declare const InvoiceSchema: {
|
|
|
781
785
|
readonly required: readonly ["created", "period_start", "period_end"];
|
|
782
786
|
readonly additionalProperties: false;
|
|
783
787
|
};
|
|
784
|
-
export declare const
|
|
788
|
+
export declare const MarketplaceListingFilesSchema: {
|
|
785
789
|
readonly type: "object";
|
|
786
790
|
readonly properties: {
|
|
787
|
-
readonly
|
|
791
|
+
readonly chartYaml: {
|
|
788
792
|
readonly type: "string";
|
|
789
|
-
readonly
|
|
790
|
-
readonly
|
|
791
|
-
readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
|
|
792
|
-
readonly description: "Id of the chart listing";
|
|
793
|
-
readonly example: "portworx-enterprise-disaster-recovery-baremetal";
|
|
793
|
+
readonly description: "Raw Chart.yaml content from the Helm chart";
|
|
794
|
+
readonly example: "apiVersion: v2\nname: nginx-ingress\nversion: 1.18.2-cfke.45\nappVersion: 1.9.4";
|
|
794
795
|
};
|
|
795
|
-
readonly
|
|
796
|
-
readonly type: "string";
|
|
797
|
-
readonly description: "Name of the chart listing";
|
|
798
|
-
readonly example: "Portworx Enterprise + Disaster Recovery - Baremetal";
|
|
799
|
-
};
|
|
800
|
-
readonly developer: {
|
|
801
|
-
readonly type: "string";
|
|
802
|
-
readonly description: "Author of the chart listing";
|
|
803
|
-
readonly example: "Portworx";
|
|
804
|
-
};
|
|
805
|
-
readonly description: {
|
|
796
|
+
readonly valuesYaml: {
|
|
806
797
|
readonly type: "string";
|
|
807
|
-
readonly description: "
|
|
808
|
-
readonly example: "
|
|
798
|
+
readonly description: "Raw values.yaml content from the Helm chart";
|
|
799
|
+
readonly example: "replicaCount: 1\nimage:\n repository: nginx\n tag: latest";
|
|
809
800
|
};
|
|
810
|
-
readonly
|
|
801
|
+
readonly valuesSchemaJson: {
|
|
811
802
|
readonly type: "string";
|
|
812
|
-
readonly description: "
|
|
813
|
-
readonly example: "
|
|
803
|
+
readonly description: "JSON schema for values.yaml as a string";
|
|
804
|
+
readonly example: "{\"type\":\"object\",\"properties\":{\"replicaCount\":{\"type\":\"number\"}}}";
|
|
814
805
|
};
|
|
815
|
-
|
|
806
|
+
};
|
|
807
|
+
readonly additionalProperties: false;
|
|
808
|
+
};
|
|
809
|
+
export declare const MarketplaceListingSchema: {
|
|
810
|
+
readonly type: "object";
|
|
811
|
+
readonly properties: {
|
|
812
|
+
readonly name: {
|
|
816
813
|
readonly type: "string";
|
|
817
|
-
readonly description: "
|
|
818
|
-
readonly example: "
|
|
814
|
+
readonly description: "Name of the chart";
|
|
815
|
+
readonly example: "nginx-ingress";
|
|
819
816
|
};
|
|
820
|
-
readonly
|
|
817
|
+
readonly versions: {
|
|
821
818
|
readonly type: "array";
|
|
822
819
|
readonly items: {
|
|
823
820
|
readonly type: "string";
|
|
824
|
-
readonly
|
|
821
|
+
readonly pattern: "^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(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-]+)*))?$";
|
|
822
|
+
readonly description: "Specific version of the chart";
|
|
823
|
+
readonly example: "1.18.2-cfke.45";
|
|
825
824
|
};
|
|
826
|
-
readonly description: "
|
|
825
|
+
readonly description: "Available versions of the chart";
|
|
827
826
|
};
|
|
828
827
|
readonly version_channels: {
|
|
829
828
|
readonly type: "array";
|
|
830
829
|
readonly items: {
|
|
831
830
|
readonly type: "string";
|
|
832
831
|
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-]+)*))?$";
|
|
833
|
-
readonly description: "Version
|
|
834
|
-
readonly example: "
|
|
832
|
+
readonly description: "Version channel pattern";
|
|
833
|
+
readonly example: "1.18.x-cfke.x";
|
|
835
834
|
};
|
|
835
|
+
readonly description: "Version channels for the chart";
|
|
836
836
|
};
|
|
837
|
-
readonly
|
|
838
|
-
readonly type: "
|
|
839
|
-
readonly
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
837
|
+
readonly latestVersion: {
|
|
838
|
+
readonly type: "string";
|
|
839
|
+
readonly description: "Latest version of the chart";
|
|
840
|
+
readonly example: "1.18.2-cfke.45";
|
|
841
|
+
};
|
|
842
|
+
readonly metadata: {
|
|
843
|
+
readonly type: "object";
|
|
844
|
+
readonly properties: {
|
|
845
|
+
readonly name: {
|
|
846
|
+
readonly type: "string";
|
|
847
|
+
readonly description: "Chart name from metadata";
|
|
848
|
+
readonly example: "nginx-ingress";
|
|
849
|
+
};
|
|
850
|
+
readonly version: {
|
|
851
|
+
readonly type: "string";
|
|
852
|
+
readonly description: "Chart version from metadata";
|
|
853
|
+
readonly example: "1.18.2-cfke.45";
|
|
854
|
+
};
|
|
855
|
+
readonly description: {
|
|
856
|
+
readonly type: "string";
|
|
857
|
+
readonly description: "Chart description";
|
|
858
|
+
readonly example: "NGINX Ingress Controller for Kubernetes";
|
|
859
|
+
};
|
|
860
|
+
readonly appVersion: {
|
|
861
|
+
readonly type: "string";
|
|
862
|
+
readonly description: "Application version";
|
|
863
|
+
readonly example: "1.9.4";
|
|
864
|
+
};
|
|
865
|
+
readonly apiVersion: {
|
|
866
|
+
readonly type: "string";
|
|
867
|
+
readonly description: "Helm API version";
|
|
868
|
+
readonly example: "v2";
|
|
869
|
+
};
|
|
870
|
+
readonly keywords: {
|
|
871
|
+
readonly type: "array";
|
|
872
|
+
readonly items: {
|
|
843
873
|
readonly type: "string";
|
|
844
|
-
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-]+)*))?$";
|
|
845
|
-
readonly description: "Version of the chart.";
|
|
846
|
-
readonly example: "2.1.1-cfke.123";
|
|
847
874
|
};
|
|
848
|
-
readonly
|
|
875
|
+
readonly description: "Chart keywords";
|
|
876
|
+
readonly example: readonly ["ingress", "nginx", "load-balancer"];
|
|
877
|
+
};
|
|
878
|
+
readonly home: {
|
|
879
|
+
readonly type: "string";
|
|
880
|
+
readonly description: "Chart home URL";
|
|
881
|
+
readonly example: "https://kubernetes.github.io/ingress-nginx/";
|
|
882
|
+
};
|
|
883
|
+
readonly icon: {
|
|
884
|
+
readonly type: "string";
|
|
885
|
+
readonly description: "A URL to an SVG or PNG image to be used as an icon";
|
|
886
|
+
readonly example: "https://cloudfleet.ai/images/marketplace/icons/ingress-nginx.png";
|
|
887
|
+
};
|
|
888
|
+
readonly sources: {
|
|
889
|
+
readonly type: "array";
|
|
890
|
+
readonly items: {
|
|
849
891
|
readonly type: "string";
|
|
850
|
-
readonly description: "Schema of the chart values. JSON Schema as string";
|
|
851
892
|
};
|
|
852
|
-
readonly
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
893
|
+
readonly description: "Chart source URLs";
|
|
894
|
+
readonly example: readonly ["https://github.com/kubernetes/ingress-nginx"];
|
|
895
|
+
};
|
|
896
|
+
readonly maintainers: {
|
|
897
|
+
readonly type: "array";
|
|
898
|
+
readonly items: {
|
|
899
|
+
readonly type: "object";
|
|
900
|
+
readonly properties: {
|
|
901
|
+
readonly name: {
|
|
902
|
+
readonly type: "string";
|
|
903
|
+
readonly description: "Maintainer name";
|
|
904
|
+
readonly example: "NGINX Team";
|
|
905
|
+
};
|
|
906
|
+
readonly email: {
|
|
907
|
+
readonly type: "string";
|
|
908
|
+
readonly description: "Maintainer email";
|
|
909
|
+
readonly example: "support@nginx.org";
|
|
910
|
+
};
|
|
911
|
+
};
|
|
912
|
+
readonly required: readonly ["name"];
|
|
913
|
+
readonly additionalProperties: false;
|
|
856
914
|
};
|
|
915
|
+
readonly description: "Chart maintainers";
|
|
857
916
|
};
|
|
858
|
-
readonly required: readonly ["version", "schema", "placeholder"];
|
|
859
|
-
readonly additionalProperties: false;
|
|
860
917
|
};
|
|
918
|
+
readonly required: readonly ["name", "version"];
|
|
919
|
+
readonly additionalProperties: false;
|
|
920
|
+
readonly description: "Chart metadata";
|
|
861
921
|
};
|
|
862
922
|
};
|
|
863
|
-
readonly required: readonly ["
|
|
923
|
+
readonly required: readonly ["name", "versions", "version_channels", "latestVersion"];
|
|
864
924
|
readonly additionalProperties: false;
|
|
865
925
|
};
|
|
866
926
|
export declare const OrganizationCreateInputSchema: {
|
|
@@ -992,8 +1052,26 @@ export declare const OrganizationSchema: {
|
|
|
992
1052
|
readonly minItems: 1;
|
|
993
1053
|
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
994
1054
|
};
|
|
1055
|
+
readonly copilot_user_hourly_tokens: {
|
|
1056
|
+
readonly type: "integer";
|
|
1057
|
+
readonly minimum: 0;
|
|
1058
|
+
readonly description: "User-level maximum number of tokens Cloudfleet Copilot can process per hour.";
|
|
1059
|
+
readonly example: 42000;
|
|
1060
|
+
};
|
|
1061
|
+
readonly copilot_organization_hourly_tokens: {
|
|
1062
|
+
readonly type: "integer";
|
|
1063
|
+
readonly minimum: 0;
|
|
1064
|
+
readonly description: "Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.";
|
|
1065
|
+
readonly example: 242000;
|
|
1066
|
+
};
|
|
1067
|
+
readonly cfcr_storage_gb: {
|
|
1068
|
+
readonly type: "integer";
|
|
1069
|
+
readonly minimum: -1;
|
|
1070
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1071
|
+
readonly example: 500;
|
|
1072
|
+
};
|
|
995
1073
|
};
|
|
996
|
-
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
|
|
1074
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "copilot_user_hourly_tokens", "copilot_organization_hourly_tokens", "cfcr_storage_gb"];
|
|
997
1075
|
readonly additionalProperties: false;
|
|
998
1076
|
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.";
|
|
999
1077
|
};
|
|
@@ -1130,8 +1208,257 @@ export declare const PlatformQuotaSchema: {
|
|
|
1130
1208
|
readonly minItems: 1;
|
|
1131
1209
|
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1132
1210
|
};
|
|
1211
|
+
readonly copilot_user_hourly_tokens: {
|
|
1212
|
+
readonly type: "integer";
|
|
1213
|
+
readonly minimum: 0;
|
|
1214
|
+
readonly description: "User-level maximum number of tokens Cloudfleet Copilot can process per hour.";
|
|
1215
|
+
readonly example: 42000;
|
|
1216
|
+
};
|
|
1217
|
+
readonly copilot_organization_hourly_tokens: {
|
|
1218
|
+
readonly type: "integer";
|
|
1219
|
+
readonly minimum: 0;
|
|
1220
|
+
readonly description: "Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.";
|
|
1221
|
+
readonly example: 242000;
|
|
1222
|
+
};
|
|
1223
|
+
readonly cfcr_storage_gb: {
|
|
1224
|
+
readonly type: "integer";
|
|
1225
|
+
readonly minimum: -1;
|
|
1226
|
+
readonly description: "Organization-level maximum CFCR storage volume in GB. -1 means no limit.";
|
|
1227
|
+
readonly example: 500;
|
|
1228
|
+
};
|
|
1229
|
+
};
|
|
1230
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions", "copilot_user_hourly_tokens", "copilot_organization_hourly_tokens", "cfcr_storage_gb"];
|
|
1231
|
+
readonly additionalProperties: false;
|
|
1232
|
+
};
|
|
1233
|
+
export declare const RegistryRepositorySchema: {
|
|
1234
|
+
readonly type: "object";
|
|
1235
|
+
readonly properties: {
|
|
1236
|
+
readonly name: {
|
|
1237
|
+
readonly type: "string";
|
|
1238
|
+
readonly description: "Repository name.";
|
|
1239
|
+
readonly example: "my-app";
|
|
1240
|
+
};
|
|
1241
|
+
readonly region: {
|
|
1242
|
+
readonly type: "string";
|
|
1243
|
+
readonly description: "Registry region.";
|
|
1244
|
+
readonly example: "northamerica";
|
|
1245
|
+
};
|
|
1246
|
+
readonly uri: {
|
|
1247
|
+
readonly type: "string";
|
|
1248
|
+
readonly description: "Full URI of the repository.";
|
|
1249
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1250
|
+
};
|
|
1251
|
+
};
|
|
1252
|
+
readonly required: readonly ["name", "region", "uri"];
|
|
1253
|
+
readonly additionalProperties: false;
|
|
1254
|
+
};
|
|
1255
|
+
export declare const RegistryRepositoryWithTagsSchema: {
|
|
1256
|
+
readonly type: "object";
|
|
1257
|
+
readonly properties: {
|
|
1258
|
+
readonly name: {
|
|
1259
|
+
readonly type: "string";
|
|
1260
|
+
readonly description: "Repository name.";
|
|
1261
|
+
readonly example: "my-app";
|
|
1262
|
+
};
|
|
1263
|
+
readonly region: {
|
|
1264
|
+
readonly type: "string";
|
|
1265
|
+
readonly description: "Registry region.";
|
|
1266
|
+
readonly example: "northamerica";
|
|
1267
|
+
};
|
|
1268
|
+
readonly uri: {
|
|
1269
|
+
readonly type: "string";
|
|
1270
|
+
readonly description: "Full URI of the repository.";
|
|
1271
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app";
|
|
1272
|
+
};
|
|
1273
|
+
readonly tags: {
|
|
1274
|
+
readonly type: "array";
|
|
1275
|
+
readonly items: {
|
|
1276
|
+
readonly type: "object";
|
|
1277
|
+
readonly properties: {
|
|
1278
|
+
readonly name: {
|
|
1279
|
+
readonly type: "string";
|
|
1280
|
+
readonly description: "Tag name.";
|
|
1281
|
+
readonly example: "latest";
|
|
1282
|
+
};
|
|
1283
|
+
readonly size: {
|
|
1284
|
+
readonly type: "number";
|
|
1285
|
+
readonly format: "float";
|
|
1286
|
+
readonly description: "Size of the tag in bytes.";
|
|
1287
|
+
readonly example: 123456789;
|
|
1288
|
+
};
|
|
1289
|
+
readonly mediaType: {
|
|
1290
|
+
readonly type: "string";
|
|
1291
|
+
readonly description: "Media type of the manifest.";
|
|
1292
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1293
|
+
};
|
|
1294
|
+
readonly platforms: {
|
|
1295
|
+
readonly type: "array";
|
|
1296
|
+
readonly items: {
|
|
1297
|
+
readonly type: "string";
|
|
1298
|
+
};
|
|
1299
|
+
readonly description: "Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).";
|
|
1300
|
+
readonly example: readonly ["linux/amd64", "linux/arm64"];
|
|
1301
|
+
};
|
|
1302
|
+
};
|
|
1303
|
+
readonly required: readonly ["name", "size"];
|
|
1304
|
+
readonly additionalProperties: false;
|
|
1305
|
+
};
|
|
1306
|
+
readonly description: "Array of tags in the repository.";
|
|
1307
|
+
};
|
|
1308
|
+
readonly totalSize: {
|
|
1309
|
+
readonly type: "number";
|
|
1310
|
+
readonly format: "float";
|
|
1311
|
+
readonly description: "Total size of all tags in the repository in bytes.";
|
|
1312
|
+
readonly example: 987654321;
|
|
1313
|
+
};
|
|
1314
|
+
};
|
|
1315
|
+
readonly required: readonly ["name", "region", "uri", "tags", "totalSize"];
|
|
1316
|
+
readonly additionalProperties: false;
|
|
1317
|
+
};
|
|
1318
|
+
export declare const RegistryTagSchema: {
|
|
1319
|
+
readonly type: "object";
|
|
1320
|
+
readonly properties: {
|
|
1321
|
+
readonly name: {
|
|
1322
|
+
readonly type: "string";
|
|
1323
|
+
readonly description: "Tag name.";
|
|
1324
|
+
readonly example: "latest";
|
|
1325
|
+
};
|
|
1326
|
+
readonly digest: {
|
|
1327
|
+
readonly type: "string";
|
|
1328
|
+
readonly description: "Manifest digest for pulling by digest.";
|
|
1329
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1330
|
+
};
|
|
1331
|
+
readonly mediaType: {
|
|
1332
|
+
readonly type: "string";
|
|
1333
|
+
readonly description: "Media type of the manifest.";
|
|
1334
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1335
|
+
};
|
|
1336
|
+
readonly config: {
|
|
1337
|
+
readonly type: "object";
|
|
1338
|
+
readonly properties: {
|
|
1339
|
+
readonly size: {
|
|
1340
|
+
readonly type: "number";
|
|
1341
|
+
readonly format: "float";
|
|
1342
|
+
readonly description: "Size of the config in bytes.";
|
|
1343
|
+
readonly example: 1234;
|
|
1344
|
+
};
|
|
1345
|
+
};
|
|
1346
|
+
readonly required: readonly ["size"];
|
|
1347
|
+
readonly additionalProperties: false;
|
|
1348
|
+
readonly description: "Manifest config metadata.";
|
|
1349
|
+
};
|
|
1350
|
+
readonly layers: {
|
|
1351
|
+
readonly type: "array";
|
|
1352
|
+
readonly items: {
|
|
1353
|
+
readonly type: "object";
|
|
1354
|
+
readonly properties: {
|
|
1355
|
+
readonly digest: {
|
|
1356
|
+
readonly type: "string";
|
|
1357
|
+
readonly description: "Digest of the layer.";
|
|
1358
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1359
|
+
};
|
|
1360
|
+
readonly size: {
|
|
1361
|
+
readonly type: "number";
|
|
1362
|
+
readonly format: "float";
|
|
1363
|
+
readonly description: "Size of the layer in bytes.";
|
|
1364
|
+
readonly example: 5678;
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
readonly required: readonly ["size"];
|
|
1368
|
+
readonly additionalProperties: false;
|
|
1369
|
+
};
|
|
1370
|
+
readonly description: "Array of layer metadata.";
|
|
1371
|
+
};
|
|
1372
|
+
readonly manifests: {
|
|
1373
|
+
readonly type: "array";
|
|
1374
|
+
readonly items: {
|
|
1375
|
+
readonly type: "object";
|
|
1376
|
+
readonly properties: {
|
|
1377
|
+
readonly digest: {
|
|
1378
|
+
readonly type: "string";
|
|
1379
|
+
readonly description: "Digest of the manifest.";
|
|
1380
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1381
|
+
};
|
|
1382
|
+
readonly platform: {
|
|
1383
|
+
readonly type: "object";
|
|
1384
|
+
readonly properties: {
|
|
1385
|
+
readonly architecture: {
|
|
1386
|
+
readonly type: "string";
|
|
1387
|
+
readonly description: "Architecture of the platform.";
|
|
1388
|
+
readonly example: "amd64";
|
|
1389
|
+
};
|
|
1390
|
+
readonly os: {
|
|
1391
|
+
readonly type: "string";
|
|
1392
|
+
readonly description: "Operating system of the platform.";
|
|
1393
|
+
readonly example: "linux";
|
|
1394
|
+
};
|
|
1395
|
+
readonly variant: {
|
|
1396
|
+
readonly type: "string";
|
|
1397
|
+
readonly description: "Variant of the platform (e.g., v7, v8 for ARM).";
|
|
1398
|
+
readonly example: "v8";
|
|
1399
|
+
};
|
|
1400
|
+
};
|
|
1401
|
+
readonly required: readonly ["architecture", "os"];
|
|
1402
|
+
readonly additionalProperties: false;
|
|
1403
|
+
readonly description: "Platform information for the manifest.";
|
|
1404
|
+
};
|
|
1405
|
+
readonly layers: {
|
|
1406
|
+
readonly type: "array";
|
|
1407
|
+
readonly items: {
|
|
1408
|
+
readonly type: "object";
|
|
1409
|
+
readonly properties: {
|
|
1410
|
+
readonly digest: {
|
|
1411
|
+
readonly type: "string";
|
|
1412
|
+
readonly description: "Digest of the layer.";
|
|
1413
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1414
|
+
};
|
|
1415
|
+
readonly size: {
|
|
1416
|
+
readonly type: "number";
|
|
1417
|
+
readonly format: "float";
|
|
1418
|
+
readonly description: "Size of the layer in bytes.";
|
|
1419
|
+
readonly example: 5678;
|
|
1420
|
+
};
|
|
1421
|
+
};
|
|
1422
|
+
readonly required: readonly ["size"];
|
|
1423
|
+
readonly additionalProperties: false;
|
|
1424
|
+
};
|
|
1425
|
+
readonly description: "Layers for this platform.";
|
|
1426
|
+
};
|
|
1427
|
+
readonly size: {
|
|
1428
|
+
readonly type: "number";
|
|
1429
|
+
readonly format: "float";
|
|
1430
|
+
readonly description: "Total size of this platform manifest in bytes.";
|
|
1431
|
+
readonly example: 12345678;
|
|
1432
|
+
};
|
|
1433
|
+
};
|
|
1434
|
+
readonly required: readonly ["digest"];
|
|
1435
|
+
readonly additionalProperties: false;
|
|
1436
|
+
};
|
|
1437
|
+
readonly description: "Array of manifests for multi-arch images.";
|
|
1438
|
+
};
|
|
1439
|
+
readonly size: {
|
|
1440
|
+
readonly type: "number";
|
|
1441
|
+
readonly format: "float";
|
|
1442
|
+
readonly description: "Total size of the tag in bytes.";
|
|
1443
|
+
readonly example: 123456789;
|
|
1444
|
+
};
|
|
1445
|
+
readonly region: {
|
|
1446
|
+
readonly type: "string";
|
|
1447
|
+
readonly description: "Registry region.";
|
|
1448
|
+
readonly example: "northamerica";
|
|
1449
|
+
};
|
|
1450
|
+
readonly repository: {
|
|
1451
|
+
readonly type: "string";
|
|
1452
|
+
readonly description: "Repository name.";
|
|
1453
|
+
readonly example: "my-app";
|
|
1454
|
+
};
|
|
1455
|
+
readonly uri: {
|
|
1456
|
+
readonly type: "string";
|
|
1457
|
+
readonly description: "Full URI of the tag.";
|
|
1458
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app:latest";
|
|
1459
|
+
};
|
|
1133
1460
|
};
|
|
1134
|
-
readonly required: readonly ["
|
|
1461
|
+
readonly required: readonly ["name", "digest", "size", "region", "repository", "uri"];
|
|
1135
1462
|
readonly additionalProperties: false;
|
|
1136
1463
|
};
|
|
1137
1464
|
export declare const TokenCreateInputSchema: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|