@cloudfleet/sdk 0.0.1-cb34d78 → 0.0.1-cb875c6
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/schemas.gen.d.ts +412 -411
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +415 -438
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +85 -15
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +113 -24
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +437 -294
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +229 -1271
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +170 -672
- package/dist/zod.gen.js.map +1 -1
- package/package.json +2 -2
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -57,15 +57,10 @@ export declare const BillingContactSchema: {
|
|
|
57
57
|
readonly description: "Email address used for billing as a string.";
|
|
58
58
|
readonly example: "email@example.com";
|
|
59
59
|
};
|
|
60
|
-
readonly
|
|
60
|
+
readonly individual_name: {
|
|
61
61
|
readonly type: "string";
|
|
62
|
-
readonly description: "
|
|
63
|
-
readonly example: "John";
|
|
64
|
-
};
|
|
65
|
-
readonly last_name: {
|
|
66
|
-
readonly type: "string";
|
|
67
|
-
readonly description: "Last name of the billing contact person.";
|
|
68
|
-
readonly example: "Doe";
|
|
62
|
+
readonly description: "Name of the billing contact person.";
|
|
63
|
+
readonly example: "John Doe";
|
|
69
64
|
};
|
|
70
65
|
readonly tax_id: {
|
|
71
66
|
readonly type: "string";
|
|
@@ -81,7 +76,7 @@ export declare const BillingContactSchema: {
|
|
|
81
76
|
readonly enum: readonly ["ad_nrt", "ae_trn", "al_tin", "am_tin", "ao_tin", "ar_cuit", "at_vat", "au_abn", "au_arn", "ba_tin", "bb_tin", "be_vat", "bg_uic", "bg_vat", "bh_vat", "bo_tin", "br_cnpj", "br_cpf", "bs_tin", "by_tin", "ca_bn", "ca_gst_hst", "ca_pst_bc", "ca_pst_mb", "ca_pst_sk", "ca_qst", "cd_nif", "ch_uid", "ch_vat", "cl_tin", "cn_tin", "co_nit", "cr_tin", "cy_vat", "cz_vat", "de_stn", "de_vat", "dk_vat", "do_rcn", "ec_ruc", "ee_vat", "eg_tin", "es_cif", "es_vat", "eu_oss_vat", "fi_vat", "fr_vat", "gb_vat", "ge_vat", "gn_nif", "gr_vat", "hk_br", "hr_oib", "hr_vat", "hu_tin", "hu_vat", "id_npwp", "ie_vat", "il_vat", "in_gst", "is_vat", "it_vat", "jp_cn", "jp_rn", "jp_trn", "ke_pin", "kh_tin", "kr_brn", "kz_bin", "li_uid", "li_vat", "lt_vat", "lu_vat", "lv_vat", "ma_vat", "md_vat", "me_pib", "mk_vat", "mr_nif", "mt_vat", "mx_rfc", "my_frp", "my_itn", "my_sst", "ng_tin", "nl_vat", "no_vat", "no_voec", "np_pan", "nz_gst", "om_vat", "pe_ruc", "ph_tin", "pl_vat", "pt_vat", "ro_tin", "ro_vat", "rs_pib", "ru_inn", "ru_kpp", "sa_vat", "se_vat", "sg_gst", "sg_uen", "si_tin", "si_vat", "sk_vat", "sn_ninea", "sr_fin", "sv_nit", "th_vat", "tj_tin", "tr_tin", "tw_vat", "tz_vat", "ua_vat", "ug_tin", "us_ein", "uy_ruc", "uz_tin", "uz_vat", "ve_rif", "vn_tin", "xi_vat", "za_vat", "zm_tin", "zw_tin", ""];
|
|
82
77
|
};
|
|
83
78
|
};
|
|
84
|
-
readonly required: readonly ["email", "
|
|
79
|
+
readonly required: readonly ["email", "individual_name"];
|
|
85
80
|
readonly additionalProperties: false;
|
|
86
81
|
};
|
|
87
82
|
export declare const BillingCreditsSchema: {
|
|
@@ -92,10 +87,22 @@ export declare const BillingCreditsSchema: {
|
|
|
92
87
|
readonly description: "Generated unique identifier of the promotional code.";
|
|
93
88
|
readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
|
|
94
89
|
};
|
|
95
|
-
readonly
|
|
90
|
+
readonly type: {
|
|
91
|
+
readonly type: "string";
|
|
92
|
+
readonly description: "Type of the promotional code.";
|
|
93
|
+
readonly example: "credit";
|
|
94
|
+
readonly enum: readonly ["credit", "discount"];
|
|
95
|
+
};
|
|
96
|
+
readonly date_start: {
|
|
96
97
|
readonly type: "string";
|
|
97
98
|
readonly format: "date-time";
|
|
98
|
-
readonly description: "
|
|
99
|
+
readonly description: "Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.";
|
|
100
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
101
|
+
};
|
|
102
|
+
readonly date_end: {
|
|
103
|
+
readonly type: "string";
|
|
104
|
+
readonly format: "date-time";
|
|
105
|
+
readonly description: "Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.";
|
|
99
106
|
readonly example: "2023-12-20T13:53:32.000Z";
|
|
100
107
|
};
|
|
101
108
|
readonly code: {
|
|
@@ -108,40 +115,20 @@ export declare const BillingCreditsSchema: {
|
|
|
108
115
|
readonly description: "Description of the promotional code.";
|
|
109
116
|
readonly example: "10% off on all products";
|
|
110
117
|
};
|
|
111
|
-
readonly
|
|
112
|
-
readonly type: "array";
|
|
113
|
-
readonly items: {
|
|
114
|
-
readonly type: "string";
|
|
115
|
-
};
|
|
116
|
-
readonly description: "List of product SKUs that the promotional code can be used on.";
|
|
117
|
-
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
|
|
118
|
-
};
|
|
119
|
-
readonly type: {
|
|
120
|
-
readonly type: "string";
|
|
121
|
-
readonly description: "Type of the promotional code.";
|
|
122
|
-
readonly example: "credit";
|
|
123
|
-
readonly enum: readonly ["credit", "discount"];
|
|
124
|
-
};
|
|
125
|
-
readonly value: {
|
|
118
|
+
readonly value_total: {
|
|
126
119
|
readonly type: "number";
|
|
127
120
|
readonly format: "float";
|
|
128
|
-
readonly description: "
|
|
121
|
+
readonly description: "Total value of the promotional code.";
|
|
129
122
|
readonly example: 10;
|
|
130
123
|
};
|
|
131
|
-
readonly billing_period: {
|
|
132
|
-
readonly type: "string";
|
|
133
|
-
readonly format: "date-time";
|
|
134
|
-
readonly description: "Date of the billing cycle. An ISO 8601 date string in the UTC timezone.";
|
|
135
|
-
readonly example: "2023-12-20T13:53:32.000Z";
|
|
136
|
-
};
|
|
137
124
|
readonly value_remaining: {
|
|
138
125
|
readonly type: "number";
|
|
139
126
|
readonly format: "float";
|
|
140
|
-
readonly description: "
|
|
141
|
-
readonly example:
|
|
127
|
+
readonly description: "Remaining value of the promotional code.";
|
|
128
|
+
readonly example: 8;
|
|
142
129
|
};
|
|
143
130
|
};
|
|
144
|
-
readonly required: readonly ["
|
|
131
|
+
readonly required: readonly ["type", "date_start", "code", "value_total"];
|
|
145
132
|
readonly additionalProperties: false;
|
|
146
133
|
};
|
|
147
134
|
export declare const ChartCreateInputSchema: {
|
|
@@ -298,7 +285,7 @@ export declare const ClusterCreateInputSchema: {
|
|
|
298
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-]+)*))?$";
|
|
299
286
|
readonly description: "Version of the kubernetes cluster.";
|
|
300
287
|
readonly default: "1.x.x-cfke.x";
|
|
301
|
-
readonly example: "1.
|
|
288
|
+
readonly example: "1.33.x-cfke.x";
|
|
302
289
|
};
|
|
303
290
|
};
|
|
304
291
|
readonly required: readonly ["name", "tier"];
|
|
@@ -334,7 +321,7 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
334
321
|
readonly kubernetes: {
|
|
335
322
|
readonly type: "string";
|
|
336
323
|
readonly description: "Kubernetes version of the cluster.";
|
|
337
|
-
readonly example: "1.
|
|
324
|
+
readonly example: "1.33.7";
|
|
338
325
|
};
|
|
339
326
|
readonly tailscale: {
|
|
340
327
|
readonly type: "string";
|
|
@@ -412,7 +399,7 @@ export declare const ClusterSchema: {
|
|
|
412
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-]+)*))?$";
|
|
413
400
|
readonly description: "Version of the kubernetes cluster.";
|
|
414
401
|
readonly default: "1.x.x-cfke.x";
|
|
415
|
-
readonly example: "1.
|
|
402
|
+
readonly example: "1.33.x-cfke.x";
|
|
416
403
|
};
|
|
417
404
|
readonly id: {
|
|
418
405
|
readonly type: "string";
|
|
@@ -424,7 +411,7 @@ export declare const ClusterSchema: {
|
|
|
424
411
|
readonly type: "string";
|
|
425
412
|
readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
|
|
426
413
|
readonly example: "active";
|
|
427
|
-
readonly enum: readonly ["active", "deleted", "creating", "deployed", "failed", "updating"];
|
|
414
|
+
readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
|
|
428
415
|
};
|
|
429
416
|
readonly endpoint: {
|
|
430
417
|
readonly anyOf: readonly [{
|
|
@@ -445,7 +432,7 @@ export declare const ClusterSchema: {
|
|
|
445
432
|
readonly version_current: {
|
|
446
433
|
readonly type: "string";
|
|
447
434
|
readonly description: "Current version of the cluster.";
|
|
448
|
-
readonly example: "1.
|
|
435
|
+
readonly example: "1.33.7-cfke.264";
|
|
449
436
|
};
|
|
450
437
|
readonly created_at: {
|
|
451
438
|
readonly type: "string";
|
|
@@ -487,7 +474,7 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
487
474
|
readonly type: "string";
|
|
488
475
|
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-]+)*))?$";
|
|
489
476
|
readonly description: "Version of the kubernetes cluster.";
|
|
490
|
-
readonly example: "1.
|
|
477
|
+
readonly example: "1.33.x-cfke.x";
|
|
491
478
|
};
|
|
492
479
|
};
|
|
493
480
|
readonly required: readonly ["tier"];
|
|
@@ -750,19 +737,15 @@ export declare const InvoiceSchema: {
|
|
|
750
737
|
readonly description: "Unique identifier of the invoice. UUID v4 string in canonical form";
|
|
751
738
|
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
752
739
|
};
|
|
753
|
-
readonly
|
|
740
|
+
readonly number: {
|
|
754
741
|
readonly type: "string";
|
|
755
|
-
readonly format: "uuid";
|
|
756
|
-
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
757
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
758
742
|
};
|
|
759
743
|
readonly status: {
|
|
760
744
|
readonly type: "string";
|
|
761
745
|
readonly description: "Status of the invoice";
|
|
762
|
-
readonly example: "
|
|
763
|
-
readonly enum: readonly ["DRAFT", "COMMITTED", "VOID"];
|
|
746
|
+
readonly example: "paid";
|
|
764
747
|
};
|
|
765
|
-
readonly
|
|
748
|
+
readonly total: {
|
|
766
749
|
readonly type: "number";
|
|
767
750
|
readonly format: "float";
|
|
768
751
|
readonly description: "Total amount of the invoice";
|
|
@@ -771,318 +754,31 @@ export declare const InvoiceSchema: {
|
|
|
771
754
|
readonly currency: {
|
|
772
755
|
readonly type: "string";
|
|
773
756
|
readonly description: "Currency of the invoice";
|
|
774
|
-
readonly example: "
|
|
775
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
776
|
-
};
|
|
777
|
-
readonly creditAdj: {
|
|
778
|
-
readonly type: "number";
|
|
779
|
-
readonly format: "float";
|
|
780
|
-
readonly description: "Total amount of credit adjustments";
|
|
781
|
-
readonly example: 0;
|
|
782
|
-
};
|
|
783
|
-
readonly refundAdj: {
|
|
784
|
-
readonly type: "number";
|
|
785
|
-
readonly format: "float";
|
|
786
|
-
readonly description: "Total amount of refund adjustments";
|
|
787
|
-
readonly example: 0;
|
|
757
|
+
readonly example: "usd";
|
|
788
758
|
};
|
|
789
|
-
readonly
|
|
759
|
+
readonly created: {
|
|
790
760
|
readonly type: "string";
|
|
791
|
-
readonly
|
|
792
|
-
readonly
|
|
761
|
+
readonly format: "date-time";
|
|
762
|
+
readonly description: "Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.";
|
|
763
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
793
764
|
};
|
|
794
|
-
readonly
|
|
765
|
+
readonly period_start: {
|
|
795
766
|
readonly type: "string";
|
|
796
|
-
readonly
|
|
797
|
-
readonly
|
|
767
|
+
readonly format: "date-time";
|
|
768
|
+
readonly description: "Billing period start timestamp. ISO 8601 date string in the UTC timezone.";
|
|
769
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
798
770
|
};
|
|
799
|
-
readonly
|
|
771
|
+
readonly period_end: {
|
|
800
772
|
readonly type: "string";
|
|
801
|
-
readonly
|
|
802
|
-
readonly
|
|
803
|
-
|
|
804
|
-
readonly balance: {
|
|
805
|
-
readonly type: "number";
|
|
806
|
-
readonly format: "float";
|
|
807
|
-
readonly description: "Balance of the invoice";
|
|
808
|
-
readonly example: 100;
|
|
773
|
+
readonly format: "date-time";
|
|
774
|
+
readonly description: "Billing period end timestamp. ISO 8601 date string in the UTC timezone.";
|
|
775
|
+
readonly example: "2023-12-20T13:53:32.000Z";
|
|
809
776
|
};
|
|
810
|
-
readonly
|
|
777
|
+
readonly invoice_pdf: {
|
|
811
778
|
readonly type: "string";
|
|
812
|
-
readonly description: "Bundle keys of the invoice";
|
|
813
|
-
readonly example: "bundleKey1,bundleKey2";
|
|
814
|
-
};
|
|
815
|
-
readonly credits: {
|
|
816
|
-
readonly type: "array";
|
|
817
|
-
readonly items: {
|
|
818
|
-
readonly type: "object";
|
|
819
|
-
readonly properties: {
|
|
820
|
-
readonly id: {
|
|
821
|
-
readonly type: "string";
|
|
822
|
-
readonly format: "uuid";
|
|
823
|
-
readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
|
|
824
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
825
|
-
};
|
|
826
|
-
readonly linkedInvoiceItemId: {
|
|
827
|
-
readonly type: "string";
|
|
828
|
-
readonly format: "uuid";
|
|
829
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
830
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
831
|
-
};
|
|
832
|
-
readonly productName: {
|
|
833
|
-
readonly type: "string";
|
|
834
|
-
readonly description: "Name of the product";
|
|
835
|
-
readonly example: "Research team";
|
|
836
|
-
};
|
|
837
|
-
readonly planName: {
|
|
838
|
-
readonly type: "string";
|
|
839
|
-
readonly description: "Name of the plan";
|
|
840
|
-
readonly example: "Plan A";
|
|
841
|
-
};
|
|
842
|
-
readonly phaseName: {
|
|
843
|
-
readonly type: "string";
|
|
844
|
-
readonly description: "Name of the phase";
|
|
845
|
-
readonly example: "Phase A";
|
|
846
|
-
};
|
|
847
|
-
readonly usageName: {
|
|
848
|
-
readonly type: "string";
|
|
849
|
-
readonly description: "Name of the usage";
|
|
850
|
-
readonly example: "Usage A";
|
|
851
|
-
};
|
|
852
|
-
readonly prettyProductName: {
|
|
853
|
-
readonly type: "string";
|
|
854
|
-
readonly description: "Pretty name of the product";
|
|
855
|
-
readonly example: "Research team";
|
|
856
|
-
};
|
|
857
|
-
readonly prettyPlanName: {
|
|
858
|
-
readonly type: "string";
|
|
859
|
-
readonly description: "Pretty name of the plan";
|
|
860
|
-
readonly example: "Plan A";
|
|
861
|
-
};
|
|
862
|
-
readonly prettyPhaseName: {
|
|
863
|
-
readonly type: "string";
|
|
864
|
-
readonly description: "Pretty name of the phase";
|
|
865
|
-
readonly example: "Phase A";
|
|
866
|
-
};
|
|
867
|
-
readonly prettyUsageName: {
|
|
868
|
-
readonly type: "string";
|
|
869
|
-
readonly description: "Pretty name of the usage";
|
|
870
|
-
readonly example: "Usage A";
|
|
871
|
-
};
|
|
872
|
-
readonly itemType: {
|
|
873
|
-
readonly type: "string";
|
|
874
|
-
readonly description: "Type of the invoice item";
|
|
875
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
876
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
877
|
-
};
|
|
878
|
-
readonly description: {
|
|
879
|
-
readonly type: "string";
|
|
880
|
-
readonly description: "Description of the invoice item";
|
|
881
|
-
readonly example: "Description of the invoice item";
|
|
882
|
-
};
|
|
883
|
-
readonly startDate: {
|
|
884
|
-
readonly type: "string";
|
|
885
|
-
readonly description: "Start date of the invoice item";
|
|
886
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
887
|
-
};
|
|
888
|
-
readonly endDate: {
|
|
889
|
-
readonly type: "string";
|
|
890
|
-
readonly description: "End date of the invoice item";
|
|
891
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
892
|
-
};
|
|
893
|
-
readonly amount: {
|
|
894
|
-
readonly type: "number";
|
|
895
|
-
readonly format: "float";
|
|
896
|
-
readonly description: "Amount of the invoice item";
|
|
897
|
-
readonly example: 100;
|
|
898
|
-
};
|
|
899
|
-
readonly rate: {
|
|
900
|
-
readonly type: "number";
|
|
901
|
-
readonly format: "float";
|
|
902
|
-
readonly description: "Rate of the invoice item";
|
|
903
|
-
readonly example: 100;
|
|
904
|
-
};
|
|
905
|
-
readonly currency: {
|
|
906
|
-
readonly type: "string";
|
|
907
|
-
readonly description: "Currency of the invoice item";
|
|
908
|
-
readonly example: "USD";
|
|
909
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
910
|
-
};
|
|
911
|
-
readonly quantity: {
|
|
912
|
-
readonly type: "number";
|
|
913
|
-
readonly format: "float";
|
|
914
|
-
readonly description: "Quantity of the invoice item";
|
|
915
|
-
readonly example: 1;
|
|
916
|
-
};
|
|
917
|
-
readonly itemDetails: {
|
|
918
|
-
readonly type: "string";
|
|
919
|
-
readonly description: "Details of the invoice item";
|
|
920
|
-
readonly example: "Details of the invoice item";
|
|
921
|
-
};
|
|
922
|
-
readonly catalogEffectiveDate: {
|
|
923
|
-
readonly type: "string";
|
|
924
|
-
readonly description: "Effective date of the catalog";
|
|
925
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
926
|
-
};
|
|
927
|
-
readonly childItems: {
|
|
928
|
-
readonly type: "array";
|
|
929
|
-
readonly items: {
|
|
930
|
-
readonly oneOf: readonly [{
|
|
931
|
-
readonly type: "array";
|
|
932
|
-
}, {
|
|
933
|
-
readonly type: "boolean";
|
|
934
|
-
}, {
|
|
935
|
-
readonly type: "number";
|
|
936
|
-
}, {
|
|
937
|
-
readonly type: "object";
|
|
938
|
-
readonly additionalProperties: true;
|
|
939
|
-
}, {
|
|
940
|
-
readonly type: "string";
|
|
941
|
-
}];
|
|
942
|
-
};
|
|
943
|
-
readonly description: "Child items of the invoice item";
|
|
944
|
-
};
|
|
945
|
-
};
|
|
946
|
-
readonly additionalProperties: false;
|
|
947
|
-
};
|
|
948
|
-
readonly description: "Credits of the invoice";
|
|
949
|
-
};
|
|
950
|
-
readonly items: {
|
|
951
|
-
readonly type: "array";
|
|
952
|
-
readonly items: {
|
|
953
|
-
readonly type: "object";
|
|
954
|
-
readonly properties: {
|
|
955
|
-
readonly id: {
|
|
956
|
-
readonly type: "string";
|
|
957
|
-
readonly format: "uuid";
|
|
958
|
-
readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
|
|
959
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
960
|
-
};
|
|
961
|
-
readonly linkedInvoiceItemId: {
|
|
962
|
-
readonly type: "string";
|
|
963
|
-
readonly format: "uuid";
|
|
964
|
-
readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
|
|
965
|
-
readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
|
|
966
|
-
};
|
|
967
|
-
readonly productName: {
|
|
968
|
-
readonly type: "string";
|
|
969
|
-
readonly description: "Name of the product";
|
|
970
|
-
readonly example: "Research team";
|
|
971
|
-
};
|
|
972
|
-
readonly planName: {
|
|
973
|
-
readonly type: "string";
|
|
974
|
-
readonly description: "Name of the plan";
|
|
975
|
-
readonly example: "Plan A";
|
|
976
|
-
};
|
|
977
|
-
readonly phaseName: {
|
|
978
|
-
readonly type: "string";
|
|
979
|
-
readonly description: "Name of the phase";
|
|
980
|
-
readonly example: "Phase A";
|
|
981
|
-
};
|
|
982
|
-
readonly usageName: {
|
|
983
|
-
readonly type: "string";
|
|
984
|
-
readonly description: "Name of the usage";
|
|
985
|
-
readonly example: "Usage A";
|
|
986
|
-
};
|
|
987
|
-
readonly prettyProductName: {
|
|
988
|
-
readonly type: "string";
|
|
989
|
-
readonly description: "Pretty name of the product";
|
|
990
|
-
readonly example: "Research team";
|
|
991
|
-
};
|
|
992
|
-
readonly prettyPlanName: {
|
|
993
|
-
readonly type: "string";
|
|
994
|
-
readonly description: "Pretty name of the plan";
|
|
995
|
-
readonly example: "Plan A";
|
|
996
|
-
};
|
|
997
|
-
readonly prettyPhaseName: {
|
|
998
|
-
readonly type: "string";
|
|
999
|
-
readonly description: "Pretty name of the phase";
|
|
1000
|
-
readonly example: "Phase A";
|
|
1001
|
-
};
|
|
1002
|
-
readonly prettyUsageName: {
|
|
1003
|
-
readonly type: "string";
|
|
1004
|
-
readonly description: "Pretty name of the usage";
|
|
1005
|
-
readonly example: "Usage A";
|
|
1006
|
-
};
|
|
1007
|
-
readonly itemType: {
|
|
1008
|
-
readonly type: "string";
|
|
1009
|
-
readonly description: "Type of the invoice item";
|
|
1010
|
-
readonly example: "EXTERNAL_CHARGE";
|
|
1011
|
-
readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
|
|
1012
|
-
};
|
|
1013
|
-
readonly description: {
|
|
1014
|
-
readonly type: "string";
|
|
1015
|
-
readonly description: "Description of the invoice item";
|
|
1016
|
-
readonly example: "Description of the invoice item";
|
|
1017
|
-
};
|
|
1018
|
-
readonly startDate: {
|
|
1019
|
-
readonly type: "string";
|
|
1020
|
-
readonly description: "Start date of the invoice item";
|
|
1021
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1022
|
-
};
|
|
1023
|
-
readonly endDate: {
|
|
1024
|
-
readonly type: "string";
|
|
1025
|
-
readonly description: "End date of the invoice item";
|
|
1026
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1027
|
-
};
|
|
1028
|
-
readonly amount: {
|
|
1029
|
-
readonly type: "number";
|
|
1030
|
-
readonly format: "float";
|
|
1031
|
-
readonly description: "Amount of the invoice item";
|
|
1032
|
-
readonly example: 100;
|
|
1033
|
-
};
|
|
1034
|
-
readonly rate: {
|
|
1035
|
-
readonly type: "number";
|
|
1036
|
-
readonly format: "float";
|
|
1037
|
-
readonly description: "Rate of the invoice item";
|
|
1038
|
-
readonly example: 100;
|
|
1039
|
-
};
|
|
1040
|
-
readonly currency: {
|
|
1041
|
-
readonly type: "string";
|
|
1042
|
-
readonly description: "Currency of the invoice item";
|
|
1043
|
-
readonly example: "USD";
|
|
1044
|
-
readonly enum: readonly ["AED", "AFN", "ALL", "AMD", "ANG", "AOA", "ARS", "AUD", "AWG", "AZN", "BAM", "BBD", "BDT", "BGN", "BHD", "BIF", "BMD", "BND", "BOB", "BRL", "BSD", "BTN", "BWP", "BYR", "BZD", "CAD", "CDF", "CHF", "CLP", "CNY", "COP", "CRC", "CUC", "CUP", "CVE", "CZK", "DJF", "DKK", "DOP", "DZD", "EGP", "ERN", "ETB", "EUR", "FJD", "FKP", "GBP", "GEL", "GGP", "GHS", "GIP", "GMD", "GNF", "GTQ", "GYD", "HKD", "HNL", "HRK", "HTG", "HUF", "IDR", "ILS", "IMP", "INR", "IQD", "IRR", "ISK", "JEP", "JMD", "JOD", "JPY", "KES", "KGS", "KHR", "KMF", "KPW", "KRW", "KWD", "KYD", "KZT", "LAK", "LBP", "LKR", "LRD", "LSL", "LTL", "LVL", "LYD", "MAD", "MDL", "MGA", "MKD", "MMK", "MNT", "MOP", "MRO", "MUR", "MVR", "MWK", "MXN", "MYR", "MZN", "NAD", "NGN", "NIO", "NOK", "NPR", "NZD", "OMR", "PAB", "PEN", "PGK", "PHP", "PKR", "PLN", "PYG", "QAR", "RON", "RSD", "RUB", "RWF", "SAR", "SBD", "SCR", "SDG", "SEK", "SGD", "SHP", "SLL", "SOS", "SPL", "SRD", "STD", "SVC", "SYP", "SZL", "THB", "TJS", "TMT", "TND", "TOP", "TRY", "TTD", "TVD", "TWD", "TZS", "UAH", "UGX", "USD", "UYU", "UZS", "VEF", "VND", "VUV", "WST", "XAF", "XCD", "XDR", "XOF", "XPF", "YER", "ZAR", "ZMW", "ZWD", "BTC"];
|
|
1045
|
-
};
|
|
1046
|
-
readonly quantity: {
|
|
1047
|
-
readonly type: "number";
|
|
1048
|
-
readonly format: "float";
|
|
1049
|
-
readonly description: "Quantity of the invoice item";
|
|
1050
|
-
readonly example: 1;
|
|
1051
|
-
};
|
|
1052
|
-
readonly itemDetails: {
|
|
1053
|
-
readonly type: "string";
|
|
1054
|
-
readonly description: "Details of the invoice item";
|
|
1055
|
-
readonly example: "Details of the invoice item";
|
|
1056
|
-
};
|
|
1057
|
-
readonly catalogEffectiveDate: {
|
|
1058
|
-
readonly type: "string";
|
|
1059
|
-
readonly description: "Effective date of the catalog";
|
|
1060
|
-
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1061
|
-
};
|
|
1062
|
-
readonly childItems: {
|
|
1063
|
-
readonly type: "array";
|
|
1064
|
-
readonly items: {
|
|
1065
|
-
readonly oneOf: readonly [{
|
|
1066
|
-
readonly type: "array";
|
|
1067
|
-
}, {
|
|
1068
|
-
readonly type: "boolean";
|
|
1069
|
-
}, {
|
|
1070
|
-
readonly type: "number";
|
|
1071
|
-
}, {
|
|
1072
|
-
readonly type: "object";
|
|
1073
|
-
readonly additionalProperties: true;
|
|
1074
|
-
}, {
|
|
1075
|
-
readonly type: "string";
|
|
1076
|
-
}];
|
|
1077
|
-
};
|
|
1078
|
-
readonly description: "Child items of the invoice item";
|
|
1079
|
-
};
|
|
1080
|
-
};
|
|
1081
|
-
readonly additionalProperties: false;
|
|
1082
|
-
};
|
|
1083
|
-
readonly description: "Items of the invoice";
|
|
1084
779
|
};
|
|
1085
780
|
};
|
|
781
|
+
readonly required: readonly ["created", "period_start", "period_end"];
|
|
1086
782
|
readonly additionalProperties: false;
|
|
1087
783
|
};
|
|
1088
784
|
export declare const MarketplaceListingSchema: {
|
|
@@ -1282,12 +978,12 @@ export declare const OrganizationSchema: {
|
|
|
1282
978
|
readonly id: {
|
|
1283
979
|
readonly type: "string";
|
|
1284
980
|
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1285
|
-
readonly example: "1.
|
|
981
|
+
readonly example: "1.33.x-cfke.x";
|
|
1286
982
|
};
|
|
1287
983
|
readonly label: {
|
|
1288
984
|
readonly type: "string";
|
|
1289
985
|
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1290
|
-
readonly example: "1.
|
|
986
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
1291
987
|
};
|
|
1292
988
|
};
|
|
1293
989
|
readonly required: readonly ["id", "label"];
|
|
@@ -1363,6 +1059,261 @@ export declare const PaymentMethodSchema: {
|
|
|
1363
1059
|
readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
|
|
1364
1060
|
readonly additionalProperties: false;
|
|
1365
1061
|
};
|
|
1062
|
+
export declare const PlatformQuotaSchema: {
|
|
1063
|
+
readonly type: "object";
|
|
1064
|
+
readonly properties: {
|
|
1065
|
+
readonly basic_clusters_max: {
|
|
1066
|
+
readonly type: "integer";
|
|
1067
|
+
readonly minimum: 0;
|
|
1068
|
+
readonly description: "Maximum number of Basic clusters that can be created.";
|
|
1069
|
+
readonly example: 999;
|
|
1070
|
+
};
|
|
1071
|
+
readonly basic_clusters_available: {
|
|
1072
|
+
readonly type: "integer";
|
|
1073
|
+
readonly description: "Available number of Basic clusters that can be created.";
|
|
1074
|
+
readonly example: 999;
|
|
1075
|
+
};
|
|
1076
|
+
readonly pro_clusters_max: {
|
|
1077
|
+
readonly type: "integer";
|
|
1078
|
+
readonly minimum: 0;
|
|
1079
|
+
readonly description: "Maximum number of Pro clusters that can be created.";
|
|
1080
|
+
readonly example: 999;
|
|
1081
|
+
};
|
|
1082
|
+
readonly pro_clusters_available: {
|
|
1083
|
+
readonly type: "integer";
|
|
1084
|
+
readonly description: "Available number of Pro clusters that can be created.";
|
|
1085
|
+
readonly example: 999;
|
|
1086
|
+
};
|
|
1087
|
+
readonly fleets_max: {
|
|
1088
|
+
readonly type: "integer";
|
|
1089
|
+
readonly minimum: 0;
|
|
1090
|
+
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1091
|
+
readonly example: 999;
|
|
1092
|
+
};
|
|
1093
|
+
readonly cluster_tiers: {
|
|
1094
|
+
readonly type: "array";
|
|
1095
|
+
readonly items: {
|
|
1096
|
+
readonly type: "string";
|
|
1097
|
+
readonly example: "basic";
|
|
1098
|
+
};
|
|
1099
|
+
readonly minItems: 0;
|
|
1100
|
+
readonly description: "List of Cloudfleet cluster tiers available for the organization.";
|
|
1101
|
+
};
|
|
1102
|
+
readonly regions: {
|
|
1103
|
+
readonly type: "array";
|
|
1104
|
+
readonly items: {
|
|
1105
|
+
readonly type: "string";
|
|
1106
|
+
readonly example: "northamerica-central-1";
|
|
1107
|
+
};
|
|
1108
|
+
readonly minItems: 1;
|
|
1109
|
+
readonly description: "List of Cloudfleet control plane regions available for the organization.";
|
|
1110
|
+
};
|
|
1111
|
+
readonly versions: {
|
|
1112
|
+
readonly type: "array";
|
|
1113
|
+
readonly items: {
|
|
1114
|
+
readonly type: "object";
|
|
1115
|
+
readonly properties: {
|
|
1116
|
+
readonly id: {
|
|
1117
|
+
readonly type: "string";
|
|
1118
|
+
readonly description: "Id of the control plane version. Used in API calls.";
|
|
1119
|
+
readonly example: "1.33.x-cfke.x";
|
|
1120
|
+
};
|
|
1121
|
+
readonly label: {
|
|
1122
|
+
readonly type: "string";
|
|
1123
|
+
readonly description: "Label of the control plane version. Used in frontent UI.";
|
|
1124
|
+
readonly example: "1.33.x (Always latest 1.33 patch version)";
|
|
1125
|
+
};
|
|
1126
|
+
};
|
|
1127
|
+
readonly required: readonly ["id", "label"];
|
|
1128
|
+
readonly additionalProperties: false;
|
|
1129
|
+
};
|
|
1130
|
+
readonly minItems: 1;
|
|
1131
|
+
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1132
|
+
};
|
|
1133
|
+
};
|
|
1134
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
|
|
1135
|
+
readonly additionalProperties: false;
|
|
1136
|
+
};
|
|
1137
|
+
export declare const RegistryRepositorySchema: {
|
|
1138
|
+
readonly type: "object";
|
|
1139
|
+
readonly properties: {
|
|
1140
|
+
readonly name: {
|
|
1141
|
+
readonly type: "string";
|
|
1142
|
+
readonly description: "Repository name.";
|
|
1143
|
+
readonly example: "my-app";
|
|
1144
|
+
};
|
|
1145
|
+
readonly region: {
|
|
1146
|
+
readonly type: "string";
|
|
1147
|
+
readonly description: "Registry region.";
|
|
1148
|
+
readonly example: "northamerica";
|
|
1149
|
+
};
|
|
1150
|
+
readonly uri: {
|
|
1151
|
+
readonly type: "string";
|
|
1152
|
+
readonly description: "Full URI of the repository.";
|
|
1153
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/v2/my-app";
|
|
1154
|
+
};
|
|
1155
|
+
};
|
|
1156
|
+
readonly required: readonly ["name", "region", "uri"];
|
|
1157
|
+
readonly additionalProperties: false;
|
|
1158
|
+
};
|
|
1159
|
+
export declare const RegistryRepositoryWithTagsSchema: {
|
|
1160
|
+
readonly type: "object";
|
|
1161
|
+
readonly properties: {
|
|
1162
|
+
readonly name: {
|
|
1163
|
+
readonly type: "string";
|
|
1164
|
+
readonly description: "Repository name.";
|
|
1165
|
+
readonly example: "my-app";
|
|
1166
|
+
};
|
|
1167
|
+
readonly region: {
|
|
1168
|
+
readonly type: "string";
|
|
1169
|
+
readonly description: "Registry region.";
|
|
1170
|
+
readonly example: "northamerica";
|
|
1171
|
+
};
|
|
1172
|
+
readonly uri: {
|
|
1173
|
+
readonly type: "string";
|
|
1174
|
+
readonly description: "Full URI of the repository.";
|
|
1175
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/v2/my-app";
|
|
1176
|
+
};
|
|
1177
|
+
readonly tags: {
|
|
1178
|
+
readonly type: "array";
|
|
1179
|
+
readonly items: {
|
|
1180
|
+
readonly type: "object";
|
|
1181
|
+
readonly properties: {
|
|
1182
|
+
readonly name: {
|
|
1183
|
+
readonly type: "string";
|
|
1184
|
+
readonly description: "Tag name.";
|
|
1185
|
+
readonly example: "latest";
|
|
1186
|
+
};
|
|
1187
|
+
readonly size: {
|
|
1188
|
+
readonly type: "number";
|
|
1189
|
+
readonly format: "float";
|
|
1190
|
+
readonly description: "Size of the tag in bytes.";
|
|
1191
|
+
readonly example: 123456789;
|
|
1192
|
+
};
|
|
1193
|
+
readonly mediaType: {
|
|
1194
|
+
readonly type: "string";
|
|
1195
|
+
readonly description: "Media type of the manifest.";
|
|
1196
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1197
|
+
};
|
|
1198
|
+
};
|
|
1199
|
+
readonly required: readonly ["name", "size"];
|
|
1200
|
+
readonly additionalProperties: false;
|
|
1201
|
+
};
|
|
1202
|
+
readonly description: "Array of tags in the repository.";
|
|
1203
|
+
};
|
|
1204
|
+
readonly totalSize: {
|
|
1205
|
+
readonly type: "number";
|
|
1206
|
+
readonly format: "float";
|
|
1207
|
+
readonly description: "Total size of all tags in the repository in bytes.";
|
|
1208
|
+
readonly example: 987654321;
|
|
1209
|
+
};
|
|
1210
|
+
};
|
|
1211
|
+
readonly required: readonly ["name", "region", "uri", "tags", "totalSize"];
|
|
1212
|
+
readonly additionalProperties: false;
|
|
1213
|
+
};
|
|
1214
|
+
export declare const RegistryTagSchema: {
|
|
1215
|
+
readonly type: "object";
|
|
1216
|
+
readonly properties: {
|
|
1217
|
+
readonly name: {
|
|
1218
|
+
readonly type: "string";
|
|
1219
|
+
readonly description: "Tag name.";
|
|
1220
|
+
readonly example: "latest";
|
|
1221
|
+
};
|
|
1222
|
+
readonly mediaType: {
|
|
1223
|
+
readonly type: "string";
|
|
1224
|
+
readonly description: "Media type of the manifest.";
|
|
1225
|
+
readonly example: "application/vnd.docker.distribution.manifest.v2+json";
|
|
1226
|
+
};
|
|
1227
|
+
readonly config: {
|
|
1228
|
+
readonly type: "object";
|
|
1229
|
+
readonly properties: {
|
|
1230
|
+
readonly size: {
|
|
1231
|
+
readonly type: "number";
|
|
1232
|
+
readonly format: "float";
|
|
1233
|
+
readonly description: "Size of the config in bytes.";
|
|
1234
|
+
readonly example: 1234;
|
|
1235
|
+
};
|
|
1236
|
+
};
|
|
1237
|
+
readonly required: readonly ["size"];
|
|
1238
|
+
readonly additionalProperties: false;
|
|
1239
|
+
readonly description: "Manifest config metadata.";
|
|
1240
|
+
};
|
|
1241
|
+
readonly layers: {
|
|
1242
|
+
readonly type: "array";
|
|
1243
|
+
readonly items: {
|
|
1244
|
+
readonly type: "object";
|
|
1245
|
+
readonly properties: {
|
|
1246
|
+
readonly size: {
|
|
1247
|
+
readonly type: "number";
|
|
1248
|
+
readonly format: "float";
|
|
1249
|
+
readonly description: "Size of the layer in bytes.";
|
|
1250
|
+
readonly example: 5678;
|
|
1251
|
+
};
|
|
1252
|
+
};
|
|
1253
|
+
readonly required: readonly ["size"];
|
|
1254
|
+
readonly additionalProperties: false;
|
|
1255
|
+
};
|
|
1256
|
+
readonly description: "Array of layer metadata.";
|
|
1257
|
+
};
|
|
1258
|
+
readonly manifests: {
|
|
1259
|
+
readonly type: "array";
|
|
1260
|
+
readonly items: {
|
|
1261
|
+
readonly type: "object";
|
|
1262
|
+
readonly properties: {
|
|
1263
|
+
readonly digest: {
|
|
1264
|
+
readonly type: "string";
|
|
1265
|
+
readonly description: "Digest of the manifest.";
|
|
1266
|
+
readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
|
|
1267
|
+
};
|
|
1268
|
+
readonly platform: {
|
|
1269
|
+
readonly type: "object";
|
|
1270
|
+
readonly properties: {
|
|
1271
|
+
readonly architecture: {
|
|
1272
|
+
readonly type: "string";
|
|
1273
|
+
readonly description: "Architecture of the platform.";
|
|
1274
|
+
readonly example: "amd64";
|
|
1275
|
+
};
|
|
1276
|
+
readonly os: {
|
|
1277
|
+
readonly type: "string";
|
|
1278
|
+
readonly description: "Operating system of the platform.";
|
|
1279
|
+
readonly example: "linux";
|
|
1280
|
+
};
|
|
1281
|
+
};
|
|
1282
|
+
readonly required: readonly ["architecture", "os"];
|
|
1283
|
+
readonly additionalProperties: false;
|
|
1284
|
+
readonly description: "Platform information for the manifest.";
|
|
1285
|
+
};
|
|
1286
|
+
};
|
|
1287
|
+
readonly required: readonly ["digest"];
|
|
1288
|
+
readonly additionalProperties: false;
|
|
1289
|
+
};
|
|
1290
|
+
readonly description: "Array of manifests for multi-arch images.";
|
|
1291
|
+
};
|
|
1292
|
+
readonly size: {
|
|
1293
|
+
readonly type: "number";
|
|
1294
|
+
readonly format: "float";
|
|
1295
|
+
readonly description: "Total size of the tag in bytes.";
|
|
1296
|
+
readonly example: 123456789;
|
|
1297
|
+
};
|
|
1298
|
+
readonly region: {
|
|
1299
|
+
readonly type: "string";
|
|
1300
|
+
readonly description: "Registry region.";
|
|
1301
|
+
readonly example: "northamerica";
|
|
1302
|
+
};
|
|
1303
|
+
readonly repository: {
|
|
1304
|
+
readonly type: "string";
|
|
1305
|
+
readonly description: "Repository name.";
|
|
1306
|
+
readonly example: "my-app";
|
|
1307
|
+
};
|
|
1308
|
+
readonly uri: {
|
|
1309
|
+
readonly type: "string";
|
|
1310
|
+
readonly description: "Full URI of the tag.";
|
|
1311
|
+
readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app:latest";
|
|
1312
|
+
};
|
|
1313
|
+
};
|
|
1314
|
+
readonly required: readonly ["name", "size", "region", "repository", "uri"];
|
|
1315
|
+
readonly additionalProperties: false;
|
|
1316
|
+
};
|
|
1366
1317
|
export declare const TokenCreateInputSchema: {
|
|
1367
1318
|
readonly type: "object";
|
|
1368
1319
|
readonly properties: {
|
|
@@ -1441,6 +1392,101 @@ export declare const TokenUpdateInputSchema: {
|
|
|
1441
1392
|
};
|
|
1442
1393
|
readonly additionalProperties: false;
|
|
1443
1394
|
};
|
|
1395
|
+
export declare const UsageFacetsSchema: {
|
|
1396
|
+
readonly type: "object";
|
|
1397
|
+
readonly properties: {
|
|
1398
|
+
readonly cluster_id: {
|
|
1399
|
+
readonly type: "array";
|
|
1400
|
+
readonly items: {
|
|
1401
|
+
readonly type: "string";
|
|
1402
|
+
};
|
|
1403
|
+
readonly description: "List of unique cluster IDs";
|
|
1404
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
1405
|
+
};
|
|
1406
|
+
readonly product: {
|
|
1407
|
+
readonly type: "array";
|
|
1408
|
+
readonly items: {
|
|
1409
|
+
readonly type: "string";
|
|
1410
|
+
};
|
|
1411
|
+
readonly description: "List of unique products";
|
|
1412
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
1413
|
+
};
|
|
1414
|
+
};
|
|
1415
|
+
readonly additionalProperties: false;
|
|
1416
|
+
};
|
|
1417
|
+
export declare const UsageResponseSchema: {
|
|
1418
|
+
readonly type: "object";
|
|
1419
|
+
readonly properties: {
|
|
1420
|
+
readonly data: {
|
|
1421
|
+
readonly type: "array";
|
|
1422
|
+
readonly items: {
|
|
1423
|
+
readonly type: "object";
|
|
1424
|
+
readonly properties: {
|
|
1425
|
+
readonly hour: {
|
|
1426
|
+
readonly type: "string";
|
|
1427
|
+
readonly description: "Hour of the usage";
|
|
1428
|
+
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1429
|
+
};
|
|
1430
|
+
readonly cluster_id: {
|
|
1431
|
+
readonly type: "string";
|
|
1432
|
+
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
1433
|
+
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
1434
|
+
};
|
|
1435
|
+
readonly product: {
|
|
1436
|
+
readonly type: "string";
|
|
1437
|
+
readonly description: "The product the usage is associated with";
|
|
1438
|
+
readonly example: "cfke_controlplane";
|
|
1439
|
+
};
|
|
1440
|
+
readonly value: {
|
|
1441
|
+
readonly type: "number";
|
|
1442
|
+
readonly format: "float";
|
|
1443
|
+
readonly description: "Consumption";
|
|
1444
|
+
readonly example: 4;
|
|
1445
|
+
};
|
|
1446
|
+
readonly price: {
|
|
1447
|
+
readonly type: "number";
|
|
1448
|
+
readonly format: "float";
|
|
1449
|
+
readonly description: "Price per unit";
|
|
1450
|
+
readonly example: 0.01;
|
|
1451
|
+
};
|
|
1452
|
+
readonly total: {
|
|
1453
|
+
readonly type: "number";
|
|
1454
|
+
readonly format: "float";
|
|
1455
|
+
readonly description: "Total cost";
|
|
1456
|
+
};
|
|
1457
|
+
};
|
|
1458
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
1459
|
+
readonly additionalProperties: false;
|
|
1460
|
+
};
|
|
1461
|
+
readonly description: "Usage data";
|
|
1462
|
+
};
|
|
1463
|
+
readonly facets: {
|
|
1464
|
+
readonly type: "object";
|
|
1465
|
+
readonly properties: {
|
|
1466
|
+
readonly cluster_id: {
|
|
1467
|
+
readonly type: "array";
|
|
1468
|
+
readonly items: {
|
|
1469
|
+
readonly type: "string";
|
|
1470
|
+
};
|
|
1471
|
+
readonly description: "List of unique cluster IDs";
|
|
1472
|
+
readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
|
|
1473
|
+
};
|
|
1474
|
+
readonly product: {
|
|
1475
|
+
readonly type: "array";
|
|
1476
|
+
readonly items: {
|
|
1477
|
+
readonly type: "string";
|
|
1478
|
+
};
|
|
1479
|
+
readonly description: "List of unique products";
|
|
1480
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
|
|
1481
|
+
};
|
|
1482
|
+
};
|
|
1483
|
+
readonly additionalProperties: false;
|
|
1484
|
+
readonly description: "Facets for filtering";
|
|
1485
|
+
};
|
|
1486
|
+
};
|
|
1487
|
+
readonly required: readonly ["data", "facets"];
|
|
1488
|
+
readonly additionalProperties: false;
|
|
1489
|
+
};
|
|
1444
1490
|
export declare const UsageSchema: {
|
|
1445
1491
|
readonly type: "object";
|
|
1446
1492
|
readonly properties: {
|
|
@@ -1451,78 +1497,33 @@ export declare const UsageSchema: {
|
|
|
1451
1497
|
};
|
|
1452
1498
|
readonly cluster_id: {
|
|
1453
1499
|
readonly type: "string";
|
|
1454
|
-
readonly format: "uuid";
|
|
1455
1500
|
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
1456
1501
|
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
1457
1502
|
};
|
|
1458
|
-
readonly cluster_tier: {
|
|
1459
|
-
readonly type: "string";
|
|
1460
|
-
readonly description: "Tier of the cluster.";
|
|
1461
|
-
readonly example: "pro";
|
|
1462
|
-
readonly enum: readonly ["basic", "pro", ""];
|
|
1463
|
-
};
|
|
1464
1503
|
readonly product: {
|
|
1465
1504
|
readonly type: "string";
|
|
1466
1505
|
readonly description: "The product the usage is associated with";
|
|
1467
1506
|
readonly example: "cfke_controlplane";
|
|
1468
|
-
readonly enum: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
|
|
1469
|
-
};
|
|
1470
|
-
readonly node_name: {
|
|
1471
|
-
readonly type: "string";
|
|
1472
|
-
readonly description: "Name of the Kubernetes node";
|
|
1473
|
-
readonly example: "flexible-moth-956037384";
|
|
1474
1507
|
};
|
|
1475
|
-
readonly
|
|
1476
|
-
readonly type: "
|
|
1477
|
-
readonly
|
|
1478
|
-
readonly
|
|
1479
|
-
|
|
1480
|
-
readonly cpu: {
|
|
1481
|
-
readonly anyOf: readonly [{
|
|
1482
|
-
readonly type: "number";
|
|
1483
|
-
readonly format: "float";
|
|
1484
|
-
readonly description: "CPU core count of the node";
|
|
1485
|
-
readonly example: 4;
|
|
1486
|
-
}, {
|
|
1487
|
-
readonly type: "string";
|
|
1488
|
-
readonly enum: readonly [""];
|
|
1489
|
-
}];
|
|
1508
|
+
readonly value: {
|
|
1509
|
+
readonly type: "number";
|
|
1510
|
+
readonly format: "float";
|
|
1511
|
+
readonly description: "Consumption";
|
|
1512
|
+
readonly example: 4;
|
|
1490
1513
|
};
|
|
1491
1514
|
readonly price: {
|
|
1492
|
-
readonly
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
readonly example: 4;
|
|
1497
|
-
}, {
|
|
1498
|
-
readonly type: "string";
|
|
1499
|
-
readonly enum: readonly [""];
|
|
1500
|
-
}];
|
|
1501
|
-
};
|
|
1502
|
-
readonly value: {
|
|
1503
|
-
readonly anyOf: readonly [{
|
|
1504
|
-
readonly type: "number";
|
|
1505
|
-
readonly format: "float";
|
|
1506
|
-
readonly description: "Value";
|
|
1507
|
-
readonly example: 4;
|
|
1508
|
-
}, {
|
|
1509
|
-
readonly type: "string";
|
|
1510
|
-
readonly enum: readonly [""];
|
|
1511
|
-
}];
|
|
1515
|
+
readonly type: "number";
|
|
1516
|
+
readonly format: "float";
|
|
1517
|
+
readonly description: "Price per unit";
|
|
1518
|
+
readonly example: 0.01;
|
|
1512
1519
|
};
|
|
1513
1520
|
readonly total: {
|
|
1514
|
-
readonly
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
readonly description: "Total";
|
|
1518
|
-
readonly example: 4;
|
|
1519
|
-
}, {
|
|
1520
|
-
readonly type: "string";
|
|
1521
|
-
readonly enum: readonly [""];
|
|
1522
|
-
}];
|
|
1521
|
+
readonly type: "number";
|
|
1522
|
+
readonly format: "float";
|
|
1523
|
+
readonly description: "Total cost";
|
|
1523
1524
|
};
|
|
1524
1525
|
};
|
|
1525
|
-
readonly required: readonly ["
|
|
1526
|
+
readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
|
|
1526
1527
|
readonly additionalProperties: false;
|
|
1527
1528
|
};
|
|
1528
1529
|
export declare const UserCreateInputSchema: {
|