@cloudfleet/sdk 0.0.1-f55e163 → 0.0.1-fd8cadf

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.
Files changed (83) hide show
  1. package/dist/client/client.gen.d.ts +3 -0
  2. package/dist/client/client.gen.d.ts.map +1 -0
  3. package/dist/client/client.gen.js +205 -0
  4. package/dist/client/client.gen.js.map +1 -0
  5. package/dist/client/index.d.ts +9 -0
  6. package/dist/client/index.d.ts.map +1 -0
  7. package/dist/client/index.js +7 -0
  8. package/dist/client/index.js.map +1 -0
  9. package/dist/client/types.gen.d.ts +125 -0
  10. package/dist/client/types.gen.d.ts.map +1 -0
  11. package/dist/client/types.gen.js +3 -0
  12. package/dist/client/types.gen.js.map +1 -0
  13. package/dist/client/utils.gen.d.ts +34 -0
  14. package/dist/client/utils.gen.d.ts.map +1 -0
  15. package/dist/client/utils.gen.js +231 -0
  16. package/dist/client/utils.gen.js.map +1 -0
  17. package/dist/client.gen.d.ts +4 -4
  18. package/dist/client.gen.d.ts.map +1 -1
  19. package/dist/client.gen.js +1 -1
  20. package/dist/client.gen.js.map +1 -1
  21. package/dist/core/auth.gen.d.ts +19 -0
  22. package/dist/core/auth.gen.d.ts.map +1 -0
  23. package/dist/core/auth.gen.js +15 -0
  24. package/dist/core/auth.gen.js.map +1 -0
  25. package/dist/core/bodySerializer.gen.d.ts +18 -0
  26. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  27. package/dist/core/bodySerializer.gen.js +58 -0
  28. package/dist/core/bodySerializer.gen.js.map +1 -0
  29. package/dist/core/params.gen.d.ts +34 -0
  30. package/dist/core/params.gen.d.ts.map +1 -0
  31. package/dist/core/params.gen.js +89 -0
  32. package/dist/core/params.gen.js.map +1 -0
  33. package/dist/core/pathSerializer.gen.d.ts +34 -0
  34. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  35. package/dist/core/pathSerializer.gen.js +115 -0
  36. package/dist/core/pathSerializer.gen.js.map +1 -0
  37. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  38. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  39. package/dist/core/queryKeySerializer.gen.js +100 -0
  40. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  41. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  42. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  43. package/dist/core/serverSentEvents.gen.js +136 -0
  44. package/dist/core/serverSentEvents.gen.js.map +1 -0
  45. package/dist/core/types.gen.d.ts +79 -0
  46. package/dist/core/types.gen.d.ts.map +1 -0
  47. package/dist/core/types.gen.js +3 -0
  48. package/dist/core/types.gen.js.map +1 -0
  49. package/dist/core/utils.gen.d.ts +20 -0
  50. package/dist/core/utils.gen.d.ts.map +1 -0
  51. package/dist/core/utils.gen.js +88 -0
  52. package/dist/core/utils.gen.js.map +1 -0
  53. package/dist/index.d.ts +2 -0
  54. package/dist/index.d.ts.map +1 -1
  55. package/dist/index.js +2 -0
  56. package/dist/index.js.map +1 -1
  57. package/dist/schemas.gen.d.ts +761 -491
  58. package/dist/schemas.gen.d.ts.map +1 -1
  59. package/dist/schemas.gen.js +772 -529
  60. package/dist/schemas.gen.js.map +1 -1
  61. package/dist/sdk.gen.d.ts +202 -81
  62. package/dist/sdk.gen.d.ts.map +1 -1
  63. package/dist/sdk.gen.js +298 -108
  64. package/dist/sdk.gen.js.map +1 -1
  65. package/dist/services/kubernetes/api.d.ts +196 -0
  66. package/dist/services/kubernetes/api.d.ts.map +1 -0
  67. package/dist/services/kubernetes/api.js +140 -0
  68. package/dist/services/kubernetes/api.js.map +1 -0
  69. package/dist/services/kubernetes/index.d.ts +44 -0
  70. package/dist/services/kubernetes/index.d.ts.map +1 -0
  71. package/dist/services/kubernetes/index.js +68 -0
  72. package/dist/services/kubernetes/index.js.map +1 -0
  73. package/dist/services/kubernetes/types.d.ts +1335 -0
  74. package/dist/services/kubernetes/types.d.ts.map +1 -0
  75. package/dist/services/kubernetes/types.js +2 -0
  76. package/dist/services/kubernetes/types.js.map +1 -0
  77. package/dist/types.gen.d.ts +838 -359
  78. package/dist/types.gen.d.ts.map +1 -1
  79. package/dist/zod.gen.d.ts +1836 -2092
  80. package/dist/zod.gen.d.ts.map +1 -1
  81. package/dist/zod.gen.js +907 -772
  82. package/dist/zod.gen.js.map +1 -1
  83. package/package.json +8 -5
@@ -57,18 +57,203 @@ 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 first_name: {
60
+ readonly individual_name: {
61
61
  readonly type: "string";
62
- readonly description: "First name of the billing contact person.";
63
- readonly example: "John";
62
+ readonly description: "Name of the billing contact person.";
63
+ readonly example: "John Doe";
64
64
  };
65
- readonly last_name: {
65
+ readonly tax_id: {
66
66
  readonly type: "string";
67
- readonly description: "Last name of the billing contact person.";
68
- readonly example: "Doe";
67
+ readonly nullable: true;
68
+ readonly description: "Tax ID of the organization.";
69
+ readonly example: "DE123456789";
70
+ };
71
+ readonly tax_id_type: {
72
+ readonly type: "string";
73
+ readonly nullable: true;
74
+ readonly description: "Type of the tax ID.";
75
+ readonly example: "de_vat";
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", ""];
77
+ };
78
+ };
79
+ readonly required: readonly ["email", "individual_name"];
80
+ readonly additionalProperties: false;
81
+ };
82
+ export declare const BillingCreditsSchema: {
83
+ readonly type: "object";
84
+ readonly properties: {
85
+ readonly id: {
86
+ readonly type: "string";
87
+ readonly description: "Generated unique identifier of the promotional code.";
88
+ readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
89
+ };
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: {
97
+ readonly type: "string";
98
+ readonly format: "date-time";
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.";
106
+ readonly example: "2023-12-20T13:53:32.000Z";
107
+ };
108
+ readonly code: {
109
+ readonly type: "string";
110
+ readonly description: "Promotional code used by the customer.";
111
+ readonly example: "VQ4SCMB";
112
+ };
113
+ readonly description: {
114
+ readonly type: "string";
115
+ readonly description: "Description of the promotional code.";
116
+ readonly example: "10% off on all products";
117
+ };
118
+ readonly value_total: {
119
+ readonly type: "number";
120
+ readonly format: "float";
121
+ readonly description: "Total value of the promotional code.";
122
+ readonly example: 10;
123
+ };
124
+ readonly value_remaining: {
125
+ readonly type: "number";
126
+ readonly format: "float";
127
+ readonly description: "Remaining value of the promotional code.";
128
+ readonly example: 8;
129
+ };
130
+ };
131
+ readonly required: readonly ["type", "date_start", "code", "value_total"];
132
+ readonly additionalProperties: false;
133
+ };
134
+ export declare const ChartCreateInputSchema: {
135
+ readonly type: "object";
136
+ readonly properties: {
137
+ readonly values: {
138
+ readonly type: "string";
139
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
140
+ };
141
+ readonly version_channel: {
142
+ readonly type: "string";
143
+ 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-]+)*))?$";
144
+ readonly description: "Desired version range or channel for the chart.";
145
+ readonly example: "2.x.x-cfke.x";
146
+ };
147
+ readonly name: {
148
+ readonly type: "string";
149
+ readonly maxLength: 63;
150
+ readonly minLength: 1;
151
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
152
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
153
+ readonly example: "postgresql-0";
154
+ };
155
+ readonly namespace: {
156
+ readonly type: "string";
157
+ readonly maxLength: 63;
158
+ readonly minLength: 1;
159
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
160
+ readonly description: "Namespace of the chart deployment";
161
+ readonly example: "default";
162
+ };
163
+ readonly chart: {
164
+ readonly type: "string";
165
+ readonly maxLength: 63;
166
+ readonly minLength: 1;
167
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
168
+ readonly description: "Name of the chart listing";
169
+ readonly example: "postgresql";
170
+ };
171
+ };
172
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart"];
173
+ readonly additionalProperties: false;
174
+ };
175
+ export declare const ChartSchema: {
176
+ readonly type: "object";
177
+ readonly properties: {
178
+ readonly values: {
179
+ readonly type: "string";
180
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
181
+ };
182
+ readonly version_channel: {
183
+ readonly type: "string";
184
+ 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-]+)*))?$";
185
+ readonly description: "Desired version range or channel for the chart.";
186
+ readonly example: "2.x.x-cfke.x";
187
+ };
188
+ readonly name: {
189
+ readonly type: "string";
190
+ readonly maxLength: 63;
191
+ readonly minLength: 1;
192
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
193
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
194
+ readonly example: "postgresql-0";
195
+ };
196
+ readonly namespace: {
197
+ readonly type: "string";
198
+ readonly maxLength: 63;
199
+ readonly minLength: 1;
200
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
201
+ readonly description: "Namespace of the chart deployment";
202
+ readonly example: "default";
203
+ };
204
+ readonly chart: {
205
+ readonly type: "string";
206
+ readonly maxLength: 63;
207
+ readonly minLength: 1;
208
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
209
+ readonly description: "Name of the chart listing";
210
+ readonly example: "postgresql";
211
+ };
212
+ readonly status: {
213
+ readonly type: "string";
214
+ readonly description: "Status of the chart deployment.";
215
+ readonly example: "active";
216
+ readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"];
217
+ };
218
+ readonly version_current: {
219
+ readonly type: "string";
220
+ readonly description: "Current version of the chart deployment.";
221
+ readonly example: "2.1.33-cfke.11";
222
+ };
223
+ readonly created_at: {
224
+ readonly type: "string";
225
+ readonly description: "Creation date and time of the chart deployment.";
226
+ readonly example: "2024-09-12T09:11:27Z";
227
+ };
228
+ readonly updated_at: {
229
+ readonly type: "string";
230
+ readonly description: "Last update date and time of the chart deployment.";
231
+ readonly example: "2024-09-12T09:11:27Z";
232
+ };
233
+ readonly ready: {
234
+ readonly type: "boolean";
235
+ readonly description: "Indicates if the chart deployment is ready to be used.";
236
+ readonly example: true;
237
+ };
238
+ };
239
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart", "status", "version_current", "created_at", "updated_at", "ready"];
240
+ readonly additionalProperties: false;
241
+ };
242
+ export declare const ChartUpdateInputSchema: {
243
+ readonly type: "object";
244
+ readonly properties: {
245
+ readonly values: {
246
+ readonly type: "string";
247
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
248
+ };
249
+ readonly version_channel: {
250
+ readonly type: "string";
251
+ 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-]+)*))?$";
252
+ readonly description: "Desired version range or channel for the chart.";
253
+ readonly example: "2.x.x-cfke.x";
69
254
  };
70
255
  };
71
- readonly required: readonly ["email", "first_name", "last_name"];
256
+ readonly required: readonly ["values", "version_channel"];
72
257
  readonly additionalProperties: false;
73
258
  };
74
259
  export declare const ClusterCreateInputSchema: {
@@ -82,25 +267,25 @@ export declare const ClusterCreateInputSchema: {
82
267
  readonly description: "Name of the cluster.";
83
268
  readonly example: "production-cluster";
84
269
  };
85
- readonly region: {
86
- readonly type: "string";
87
- readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
88
- readonly default: "staging";
89
- readonly example: "northamerica-central-1";
90
- readonly enum: readonly ["staging", "northamerica-central-1"];
91
- };
92
270
  readonly tier: {
93
271
  readonly type: "string";
94
272
  readonly description: "Tier of the cluster.";
95
273
  readonly example: "pro";
96
274
  readonly enum: readonly ["basic", "pro"];
97
275
  };
276
+ readonly region: {
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";
280
+ readonly example: "northamerica-central-1a";
281
+ readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
282
+ };
98
283
  readonly version_channel: {
99
284
  readonly type: "string";
100
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-]+)*))?$";
101
286
  readonly description: "Version of the kubernetes cluster.";
102
287
  readonly default: "1.x.x-cfke.x";
103
- readonly example: "1.29.x-cfke.x";
288
+ readonly example: "1.33.x-cfke.x";
104
289
  };
105
290
  };
106
291
  readonly required: readonly ["name", "tier"];
@@ -136,7 +321,7 @@ export declare const ClusterJoinInformationSchema: {
136
321
  readonly kubernetes: {
137
322
  readonly type: "string";
138
323
  readonly description: "Kubernetes version of the cluster.";
139
- readonly example: "1.29.3";
324
+ readonly example: "1.33.7";
140
325
  };
141
326
  readonly tailscale: {
142
327
  readonly type: "string";
@@ -148,8 +333,13 @@ export declare const ClusterJoinInformationSchema: {
148
333
  readonly description: "Containerd version of the cluster.";
149
334
  readonly example: "1.7.19";
150
335
  };
336
+ readonly nvidia_driver: {
337
+ readonly type: "string";
338
+ readonly description: "NVIDIA driver version of the cluster.";
339
+ readonly example: "565.0.0";
340
+ };
151
341
  };
152
- readonly required: readonly ["kubernetes", "tailscale", "containerd"];
342
+ readonly required: readonly ["kubernetes", "tailscale", "containerd", "nvidia_driver"];
153
343
  readonly additionalProperties: false;
154
344
  readonly description: "Versions of the different components of the cluster.";
155
345
  };
@@ -191,25 +381,25 @@ export declare const ClusterSchema: {
191
381
  readonly description: "Name of the cluster.";
192
382
  readonly example: "production-cluster";
193
383
  };
194
- readonly region: {
195
- readonly type: "string";
196
- readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
197
- readonly default: "staging";
198
- readonly example: "northamerica-central-1";
199
- readonly enum: readonly ["staging", "northamerica-central-1"];
200
- };
201
384
  readonly tier: {
202
385
  readonly type: "string";
203
386
  readonly description: "Tier of the cluster.";
204
387
  readonly example: "pro";
205
388
  readonly enum: readonly ["basic", "pro"];
206
389
  };
390
+ readonly region: {
391
+ 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";
394
+ readonly example: "northamerica-central-1a";
395
+ readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
396
+ };
207
397
  readonly version_channel: {
208
398
  readonly type: "string";
209
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-]+)*))?$";
210
400
  readonly description: "Version of the kubernetes cluster.";
211
401
  readonly default: "1.x.x-cfke.x";
212
- readonly example: "1.29.x-cfke.x";
402
+ readonly example: "1.33.x-cfke.x";
213
403
  };
214
404
  readonly id: {
215
405
  readonly type: "string";
@@ -221,7 +411,7 @@ export declare const ClusterSchema: {
221
411
  readonly type: "string";
222
412
  readonly description: "Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.";
223
413
  readonly example: "active";
224
- readonly enum: readonly ["active", "deleted", "creating", "deployed", "failed", "updating"];
414
+ readonly enum: readonly ["active", "disabled", "deleted", "creating", "deployed", "failed", "updating"];
225
415
  };
226
416
  readonly endpoint: {
227
417
  readonly anyOf: readonly [{
@@ -242,7 +432,7 @@ export declare const ClusterSchema: {
242
432
  readonly version_current: {
243
433
  readonly type: "string";
244
434
  readonly description: "Current version of the cluster.";
245
- readonly example: "1.29.3-cfke.52";
435
+ readonly example: "1.33.7-cfke.264";
246
436
  };
247
437
  readonly created_at: {
248
438
  readonly type: "string";
@@ -274,13 +464,20 @@ export declare const ClusterUpdateInputSchema: {
274
464
  readonly description: "Name of the cluster.";
275
465
  readonly example: "production-cluster";
276
466
  };
467
+ readonly tier: {
468
+ readonly type: "string";
469
+ readonly description: "Tier of the cluster.";
470
+ readonly example: "pro";
471
+ readonly enum: readonly ["basic", "pro"];
472
+ };
277
473
  readonly version_channel: {
278
474
  readonly type: "string";
279
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-]+)*))?$";
280
476
  readonly description: "Version of the kubernetes cluster.";
281
- readonly example: "1.29.x-cfke.x";
477
+ readonly example: "1.33.x-cfke.x";
282
478
  };
283
479
  };
480
+ readonly required: readonly ["tier"];
284
481
  readonly additionalProperties: false;
285
482
  };
286
483
  export declare const FleetCreateInputSchema: {
@@ -316,31 +513,19 @@ export declare const FleetCreateInputSchema: {
316
513
  readonly additionalProperties: false;
317
514
  };
318
515
  readonly hetzner: {
319
- readonly oneOf: readonly [{
320
- readonly type: "object";
321
- readonly properties: {
322
- readonly enabled: {
323
- readonly type: "boolean";
324
- readonly default: true;
325
- };
326
- readonly apiKey: {
327
- readonly type: "string";
328
- };
516
+ readonly type: "object";
517
+ readonly properties: {
518
+ readonly enabled: {
519
+ readonly type: "boolean";
520
+ readonly default: true;
329
521
  };
330
- readonly additionalProperties: false;
331
- }, {
332
- readonly type: "object";
333
- readonly properties: {
334
- readonly apiKey: {
335
- readonly type: "string";
336
- };
337
- readonly enabled: {
338
- readonly type: "boolean";
339
- readonly default: true;
340
- };
522
+ readonly apiKey: {
523
+ readonly type: "string";
524
+ readonly description: "Hetzner Cloud API key with read / write access";
341
525
  };
342
- readonly additionalProperties: false;
343
- }];
526
+ };
527
+ readonly required: readonly ["apiKey"];
528
+ readonly additionalProperties: false;
344
529
  };
345
530
  readonly aws: {
346
531
  readonly type: "object";
@@ -365,13 +550,8 @@ export declare const FleetCreateInputSchema: {
365
550
  readonly description: "Unique identifier of the kubernetes fleet.";
366
551
  readonly example: "new-clouds-fleet";
367
552
  };
368
- readonly type: {
369
- readonly type: "string";
370
- readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
371
- readonly enum: readonly ["managed", "connected"];
372
- };
373
553
  };
374
- readonly required: readonly ["id", "type"];
554
+ readonly required: readonly ["id"];
375
555
  readonly additionalProperties: false;
376
556
  };
377
557
  export declare const FleetSchema: {
@@ -407,31 +587,19 @@ export declare const FleetSchema: {
407
587
  readonly additionalProperties: false;
408
588
  };
409
589
  readonly hetzner: {
410
- readonly oneOf: readonly [{
411
- readonly type: "object";
412
- readonly properties: {
413
- readonly enabled: {
414
- readonly type: "boolean";
415
- readonly default: true;
416
- };
417
- readonly apiKey: {
418
- readonly type: "string";
419
- };
590
+ readonly type: "object";
591
+ readonly properties: {
592
+ readonly enabled: {
593
+ readonly type: "boolean";
594
+ readonly default: true;
420
595
  };
421
- readonly additionalProperties: false;
422
- }, {
423
- readonly type: "object";
424
- readonly properties: {
425
- readonly apiKey: {
426
- readonly type: "string";
427
- };
428
- readonly enabled: {
429
- readonly type: "boolean";
430
- readonly default: true;
431
- };
596
+ readonly apiKey: {
597
+ readonly type: "string";
598
+ readonly description: "Hetzner Cloud API key with read / write access";
432
599
  };
433
- readonly additionalProperties: false;
434
- }];
600
+ };
601
+ readonly required: readonly ["apiKey"];
602
+ readonly additionalProperties: false;
435
603
  };
436
604
  readonly aws: {
437
605
  readonly type: "object";
@@ -456,13 +624,8 @@ export declare const FleetSchema: {
456
624
  readonly description: "Unique identifier of the kubernetes fleet.";
457
625
  readonly example: "new-clouds-fleet";
458
626
  };
459
- readonly type: {
460
- readonly type: "string";
461
- readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
462
- readonly enum: readonly ["managed", "connected"];
463
- };
464
627
  };
465
- readonly required: readonly ["id", "type"];
628
+ readonly required: readonly ["id"];
466
629
  readonly additionalProperties: false;
467
630
  };
468
631
  export declare const FleetUpdateInputSchema: {
@@ -498,31 +661,19 @@ export declare const FleetUpdateInputSchema: {
498
661
  readonly additionalProperties: false;
499
662
  };
500
663
  readonly hetzner: {
501
- readonly oneOf: readonly [{
502
- readonly type: "object";
503
- readonly properties: {
504
- readonly enabled: {
505
- readonly type: "boolean";
506
- readonly default: true;
507
- };
508
- readonly apiKey: {
509
- readonly type: "string";
510
- };
664
+ readonly type: "object";
665
+ readonly properties: {
666
+ readonly enabled: {
667
+ readonly type: "boolean";
668
+ readonly default: true;
511
669
  };
512
- readonly additionalProperties: false;
513
- }, {
514
- readonly type: "object";
515
- readonly properties: {
516
- readonly apiKey: {
517
- readonly type: "string";
518
- };
519
- readonly enabled: {
520
- readonly type: "boolean";
521
- readonly default: true;
522
- };
670
+ readonly apiKey: {
671
+ readonly type: "string";
672
+ readonly description: "Hetzner Cloud API key with read / write access";
523
673
  };
524
- readonly additionalProperties: false;
525
- }];
674
+ };
675
+ readonly required: readonly ["apiKey"];
676
+ readonly additionalProperties: false;
526
677
  };
527
678
  readonly aws: {
528
679
  readonly type: "object";
@@ -586,19 +737,15 @@ export declare const InvoiceSchema: {
586
737
  readonly description: "Unique identifier of the invoice. UUID v4 string in canonical form";
587
738
  readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
588
739
  };
589
- readonly organizationId: {
740
+ readonly number: {
590
741
  readonly type: "string";
591
- readonly format: "uuid";
592
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
593
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
594
742
  };
595
743
  readonly status: {
596
744
  readonly type: "string";
597
745
  readonly description: "Status of the invoice";
598
- readonly example: "DRAFT";
599
- readonly enum: readonly ["DRAFT", "COMMITTED", "VOID"];
746
+ readonly example: "paid";
600
747
  };
601
- readonly amount: {
748
+ readonly total: {
602
749
  readonly type: "number";
603
750
  readonly format: "float";
604
751
  readonly description: "Total amount of the invoice";
@@ -607,318 +754,164 @@ export declare const InvoiceSchema: {
607
754
  readonly currency: {
608
755
  readonly type: "string";
609
756
  readonly description: "Currency of the invoice";
610
- readonly example: "USD";
611
- 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"];
757
+ readonly example: "usd";
612
758
  };
613
- readonly creditAdj: {
614
- readonly type: "number";
615
- readonly format: "float";
616
- readonly description: "Total amount of credit adjustments";
617
- readonly example: 0;
759
+ readonly created: {
760
+ readonly type: "string";
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";
618
764
  };
619
- readonly refundAdj: {
620
- readonly type: "number";
621
- readonly format: "float";
622
- readonly description: "Total amount of refund adjustments";
623
- readonly example: 0;
765
+ readonly period_start: {
766
+ readonly type: "string";
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";
624
770
  };
625
- readonly invoiceDate: {
771
+ readonly period_end: {
626
772
  readonly type: "string";
627
- readonly description: "Date of the invoice";
628
- readonly example: "2019-01-01T00:00:00.000Z";
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";
629
776
  };
630
- readonly targetDate: {
777
+ readonly invoice_pdf: {
631
778
  readonly type: "string";
632
- readonly description: "Target date of the invoice";
633
- readonly example: "2019-01-01T00:00:00.000Z";
634
779
  };
635
- readonly invoiceNumber: {
780
+ };
781
+ readonly required: readonly ["created", "period_start", "period_end"];
782
+ readonly additionalProperties: false;
783
+ };
784
+ export declare const MarketplaceListingFilesSchema: {
785
+ readonly type: "object";
786
+ readonly properties: {
787
+ readonly chartYaml: {
636
788
  readonly type: "string";
637
- readonly description: "Number of the invoice";
638
- readonly example: "INV-0001";
789
+ readonly description: "Raw Chart.yaml content from the Helm chart";
790
+ readonly example: "apiVersion: v2\nname: nginx-ingress\nversion: 1.18.2-cfke.45\nappVersion: 1.9.4";
639
791
  };
640
- readonly balance: {
641
- readonly type: "number";
642
- readonly format: "float";
643
- readonly description: "Balance of the invoice";
644
- readonly example: 100;
792
+ readonly valuesYaml: {
793
+ readonly type: "string";
794
+ readonly description: "Raw values.yaml content from the Helm chart";
795
+ readonly example: "replicaCount: 1\nimage:\n repository: nginx\n tag: latest";
645
796
  };
646
- readonly bundleKeys: {
797
+ readonly valuesSchemaJson: {
647
798
  readonly type: "string";
648
- readonly description: "Bundle keys of the invoice";
649
- readonly example: "bundleKey1,bundleKey2";
799
+ readonly description: "JSON schema for values.yaml as a string";
800
+ readonly example: "{\"type\":\"object\",\"properties\":{\"replicaCount\":{\"type\":\"number\"}}}";
650
801
  };
651
- readonly credits: {
652
- readonly type: "array";
653
- readonly items: {
654
- readonly type: "object";
655
- readonly properties: {
656
- readonly id: {
657
- readonly type: "string";
658
- readonly format: "uuid";
659
- readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
660
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
661
- };
662
- readonly linkedInvoiceItemId: {
663
- readonly type: "string";
664
- readonly format: "uuid";
665
- readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
666
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
667
- };
668
- readonly productName: {
669
- readonly type: "string";
670
- readonly description: "Name of the product";
671
- readonly example: "Research team";
672
- };
673
- readonly planName: {
674
- readonly type: "string";
675
- readonly description: "Name of the plan";
676
- readonly example: "Plan A";
677
- };
678
- readonly phaseName: {
679
- readonly type: "string";
680
- readonly description: "Name of the phase";
681
- readonly example: "Phase A";
682
- };
683
- readonly usageName: {
684
- readonly type: "string";
685
- readonly description: "Name of the usage";
686
- readonly example: "Usage A";
687
- };
688
- readonly prettyProductName: {
689
- readonly type: "string";
690
- readonly description: "Pretty name of the product";
691
- readonly example: "Research team";
692
- };
693
- readonly prettyPlanName: {
694
- readonly type: "string";
695
- readonly description: "Pretty name of the plan";
696
- readonly example: "Plan A";
697
- };
698
- readonly prettyPhaseName: {
699
- readonly type: "string";
700
- readonly description: "Pretty name of the phase";
701
- readonly example: "Phase A";
702
- };
703
- readonly prettyUsageName: {
704
- readonly type: "string";
705
- readonly description: "Pretty name of the usage";
706
- readonly example: "Usage A";
707
- };
708
- readonly itemType: {
709
- readonly type: "string";
710
- readonly description: "Type of the invoice item";
711
- readonly example: "EXTERNAL_CHARGE";
712
- readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
713
- };
714
- readonly description: {
715
- readonly type: "string";
716
- readonly description: "Description of the invoice item";
717
- readonly example: "Description of the invoice item";
718
- };
719
- readonly startDate: {
720
- readonly type: "string";
721
- readonly description: "Start date of the invoice item";
722
- readonly example: "2019-01-01T00:00:00.000Z";
723
- };
724
- readonly endDate: {
725
- readonly type: "string";
726
- readonly description: "End date of the invoice item";
727
- readonly example: "2019-01-01T00:00:00.000Z";
728
- };
729
- readonly amount: {
730
- readonly type: "number";
731
- readonly format: "float";
732
- readonly description: "Amount of the invoice item";
733
- readonly example: 100;
734
- };
735
- readonly rate: {
736
- readonly type: "number";
737
- readonly format: "float";
738
- readonly description: "Rate of the invoice item";
739
- readonly example: 100;
740
- };
741
- readonly currency: {
742
- readonly type: "string";
743
- readonly description: "Currency of the invoice item";
744
- readonly example: "USD";
745
- 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"];
746
- };
747
- readonly quantity: {
748
- readonly type: "number";
749
- readonly format: "float";
750
- readonly description: "Quantity of the invoice item";
751
- readonly example: 1;
752
- };
753
- readonly itemDetails: {
754
- readonly type: "string";
755
- readonly description: "Details of the invoice item";
756
- readonly example: "Details of the invoice item";
757
- };
758
- readonly catalogEffectiveDate: {
759
- readonly type: "string";
760
- readonly description: "Effective date of the catalog";
761
- readonly example: "2019-01-01T00:00:00.000Z";
762
- };
763
- readonly childItems: {
764
- readonly type: "array";
765
- readonly items: {
766
- readonly oneOf: readonly [{
767
- readonly type: "array";
768
- }, {
769
- readonly type: "boolean";
770
- }, {
771
- readonly type: "number";
772
- }, {
773
- readonly type: "object";
774
- readonly additionalProperties: true;
775
- }, {
776
- readonly type: "string";
777
- }];
778
- };
779
- readonly description: "Child items of the invoice item";
780
- };
781
- };
782
- readonly additionalProperties: false;
802
+ };
803
+ readonly additionalProperties: false;
804
+ };
805
+ export declare const MarketplaceListingSchema: {
806
+ readonly type: "object";
807
+ readonly properties: {
808
+ readonly name: {
809
+ readonly type: "string";
810
+ readonly description: "Name of the chart";
811
+ readonly example: "nginx-ingress";
812
+ };
813
+ readonly versions: {
814
+ readonly type: "array";
815
+ readonly items: {
816
+ readonly type: "string";
817
+ 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-]+)*))?$";
818
+ readonly description: "Specific version of the chart";
819
+ readonly example: "1.18.2-cfke.45";
783
820
  };
784
- readonly description: "Credits of the invoice";
821
+ readonly description: "Available versions of the chart";
785
822
  };
786
- readonly items: {
823
+ readonly version_channels: {
787
824
  readonly type: "array";
788
825
  readonly items: {
789
- readonly type: "object";
790
- readonly properties: {
791
- readonly id: {
792
- readonly type: "string";
793
- readonly format: "uuid";
794
- readonly description: "Unique identifier of the invoice item. UUID v4 string in canonical form";
795
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
796
- };
797
- readonly linkedInvoiceItemId: {
798
- readonly type: "string";
799
- readonly format: "uuid";
800
- readonly description: "Unique identifier of the linked invoice item. UUID v4 string in canonical form";
801
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
802
- };
803
- readonly productName: {
804
- readonly type: "string";
805
- readonly description: "Name of the product";
806
- readonly example: "Research team";
807
- };
808
- readonly planName: {
809
- readonly type: "string";
810
- readonly description: "Name of the plan";
811
- readonly example: "Plan A";
812
- };
813
- readonly phaseName: {
814
- readonly type: "string";
815
- readonly description: "Name of the phase";
816
- readonly example: "Phase A";
817
- };
818
- readonly usageName: {
819
- readonly type: "string";
820
- readonly description: "Name of the usage";
821
- readonly example: "Usage A";
822
- };
823
- readonly prettyProductName: {
824
- readonly type: "string";
825
- readonly description: "Pretty name of the product";
826
- readonly example: "Research team";
827
- };
828
- readonly prettyPlanName: {
829
- readonly type: "string";
830
- readonly description: "Pretty name of the plan";
831
- readonly example: "Plan A";
832
- };
833
- readonly prettyPhaseName: {
834
- readonly type: "string";
835
- readonly description: "Pretty name of the phase";
836
- readonly example: "Phase A";
837
- };
838
- readonly prettyUsageName: {
839
- readonly type: "string";
840
- readonly description: "Pretty name of the usage";
841
- readonly example: "Usage A";
842
- };
843
- readonly itemType: {
844
- readonly type: "string";
845
- readonly description: "Type of the invoice item";
846
- readonly example: "EXTERNAL_CHARGE";
847
- readonly enum: readonly ["EXTERNAL_CHARGE", "FIXED", "RECURRING", "REPAIR_ADJ", "CBA_ADJ", "CREDIT_ADJ", "ITEM_ADJ", "USAGE", "TAX", "PARENT_SUMMARY"];
848
- };
849
- readonly description: {
850
- readonly type: "string";
851
- readonly description: "Description of the invoice item";
852
- readonly example: "Description of the invoice item";
853
- };
854
- readonly startDate: {
855
- readonly type: "string";
856
- readonly description: "Start date of the invoice item";
857
- readonly example: "2019-01-01T00:00:00.000Z";
858
- };
859
- readonly endDate: {
860
- readonly type: "string";
861
- readonly description: "End date of the invoice item";
862
- readonly example: "2019-01-01T00:00:00.000Z";
863
- };
864
- readonly amount: {
865
- readonly type: "number";
866
- readonly format: "float";
867
- readonly description: "Amount of the invoice item";
868
- readonly example: 100;
869
- };
870
- readonly rate: {
871
- readonly type: "number";
872
- readonly format: "float";
873
- readonly description: "Rate of the invoice item";
874
- readonly example: 100;
875
- };
876
- readonly currency: {
877
- readonly type: "string";
878
- readonly description: "Currency of the invoice item";
879
- readonly example: "USD";
880
- 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"];
881
- };
882
- readonly quantity: {
883
- readonly type: "number";
884
- readonly format: "float";
885
- readonly description: "Quantity of the invoice item";
886
- readonly example: 1;
887
- };
888
- readonly itemDetails: {
826
+ readonly type: "string";
827
+ 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-]+)*))?$";
828
+ readonly description: "Version channel pattern";
829
+ readonly example: "1.18.x-cfke.x";
830
+ };
831
+ readonly description: "Version channels for the chart";
832
+ };
833
+ readonly latestVersion: {
834
+ readonly type: "string";
835
+ readonly description: "Latest version of the chart";
836
+ readonly example: "1.18.2-cfke.45";
837
+ };
838
+ readonly metadata: {
839
+ readonly type: "object";
840
+ readonly properties: {
841
+ readonly name: {
842
+ readonly type: "string";
843
+ readonly description: "Chart name from metadata";
844
+ readonly example: "nginx-ingress";
845
+ };
846
+ readonly version: {
847
+ readonly type: "string";
848
+ readonly description: "Chart version from metadata";
849
+ readonly example: "1.18.2-cfke.45";
850
+ };
851
+ readonly description: {
852
+ readonly type: "string";
853
+ readonly description: "Chart description";
854
+ readonly example: "NGINX Ingress Controller for Kubernetes";
855
+ };
856
+ readonly appVersion: {
857
+ readonly type: "string";
858
+ readonly description: "Application version";
859
+ readonly example: "1.9.4";
860
+ };
861
+ readonly apiVersion: {
862
+ readonly type: "string";
863
+ readonly description: "Helm API version";
864
+ readonly example: "v2";
865
+ };
866
+ readonly keywords: {
867
+ readonly type: "array";
868
+ readonly items: {
889
869
  readonly type: "string";
890
- readonly description: "Details of the invoice item";
891
- readonly example: "Details of the invoice item";
892
870
  };
893
- readonly catalogEffectiveDate: {
871
+ readonly description: "Chart keywords";
872
+ readonly example: readonly ["ingress", "nginx", "load-balancer"];
873
+ };
874
+ readonly home: {
875
+ readonly type: "string";
876
+ readonly description: "Chart home URL";
877
+ readonly example: "https://kubernetes.github.io/ingress-nginx/";
878
+ };
879
+ readonly sources: {
880
+ readonly type: "array";
881
+ readonly items: {
894
882
  readonly type: "string";
895
- readonly description: "Effective date of the catalog";
896
- readonly example: "2019-01-01T00:00:00.000Z";
897
883
  };
898
- readonly childItems: {
899
- readonly type: "array";
900
- readonly items: {
901
- readonly oneOf: readonly [{
902
- readonly type: "array";
903
- }, {
904
- readonly type: "boolean";
905
- }, {
906
- readonly type: "number";
907
- }, {
908
- readonly type: "object";
909
- readonly additionalProperties: true;
910
- }, {
884
+ readonly description: "Chart source URLs";
885
+ readonly example: readonly ["https://github.com/kubernetes/ingress-nginx"];
886
+ };
887
+ readonly maintainers: {
888
+ readonly type: "array";
889
+ readonly items: {
890
+ readonly type: "object";
891
+ readonly properties: {
892
+ readonly name: {
893
+ readonly type: "string";
894
+ readonly description: "Maintainer name";
895
+ readonly example: "NGINX Team";
896
+ };
897
+ readonly email: {
911
898
  readonly type: "string";
912
- }];
899
+ readonly description: "Maintainer email";
900
+ readonly example: "support@nginx.org";
901
+ };
913
902
  };
914
- readonly description: "Child items of the invoice item";
903
+ readonly required: readonly ["name"];
904
+ readonly additionalProperties: false;
915
905
  };
906
+ readonly description: "Chart maintainers";
916
907
  };
917
- readonly additionalProperties: false;
918
908
  };
919
- readonly description: "Items of the invoice";
909
+ readonly required: readonly ["name", "version"];
910
+ readonly additionalProperties: false;
911
+ readonly description: "Chart metadata";
920
912
  };
921
913
  };
914
+ readonly required: readonly ["name", "versions", "version_channels", "latestVersion"];
922
915
  readonly additionalProperties: false;
923
916
  };
924
917
  export declare const OrganizationCreateInputSchema: {
@@ -1010,12 +1003,6 @@ export declare const OrganizationSchema: {
1010
1003
  readonly description: "Maximum number of fleets that can be created per cluster.";
1011
1004
  readonly example: 999;
1012
1005
  };
1013
- readonly managed_fleets_cpu_max: {
1014
- readonly type: "integer";
1015
- readonly minimum: 0;
1016
- readonly description: "Maximum number of CPU cores per managed fleet.";
1017
- readonly example: 999;
1018
- };
1019
1006
  readonly cluster_tiers: {
1020
1007
  readonly type: "array";
1021
1008
  readonly items: {
@@ -1042,12 +1029,12 @@ export declare const OrganizationSchema: {
1042
1029
  readonly id: {
1043
1030
  readonly type: "string";
1044
1031
  readonly description: "Id of the control plane version. Used in API calls.";
1045
- readonly example: "1.29.x-cfke.x";
1032
+ readonly example: "1.33.x-cfke.x";
1046
1033
  };
1047
1034
  readonly label: {
1048
1035
  readonly type: "string";
1049
1036
  readonly description: "Label of the control plane version. Used in frontent UI.";
1050
- readonly example: "1.29.x (Always latest 1.29 patch version)";
1037
+ readonly example: "1.33.x (Always latest 1.33 patch version)";
1051
1038
  };
1052
1039
  };
1053
1040
  readonly required: readonly ["id", "label"];
@@ -1057,7 +1044,7 @@ export declare const OrganizationSchema: {
1057
1044
  readonly description: "List of CFKE control plane versions available for the organization.";
1058
1045
  };
1059
1046
  };
1060
- readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "managed_fleets_cpu_max", "cluster_tiers", "regions", "versions"];
1047
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
1061
1048
  readonly additionalProperties: false;
1062
1049
  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.";
1063
1050
  };
@@ -1123,6 +1110,261 @@ export declare const PaymentMethodSchema: {
1123
1110
  readonly required: readonly ["id", "setup", "type", "last4", "exp_month", "exp_year", "brand"];
1124
1111
  readonly additionalProperties: false;
1125
1112
  };
1113
+ export declare const PlatformQuotaSchema: {
1114
+ readonly type: "object";
1115
+ readonly properties: {
1116
+ readonly basic_clusters_max: {
1117
+ readonly type: "integer";
1118
+ readonly minimum: 0;
1119
+ readonly description: "Maximum number of Basic clusters that can be created.";
1120
+ readonly example: 999;
1121
+ };
1122
+ readonly basic_clusters_available: {
1123
+ readonly type: "integer";
1124
+ readonly description: "Available number of Basic clusters that can be created.";
1125
+ readonly example: 999;
1126
+ };
1127
+ readonly pro_clusters_max: {
1128
+ readonly type: "integer";
1129
+ readonly minimum: 0;
1130
+ readonly description: "Maximum number of Pro clusters that can be created.";
1131
+ readonly example: 999;
1132
+ };
1133
+ readonly pro_clusters_available: {
1134
+ readonly type: "integer";
1135
+ readonly description: "Available number of Pro clusters that can be created.";
1136
+ readonly example: 999;
1137
+ };
1138
+ readonly fleets_max: {
1139
+ readonly type: "integer";
1140
+ readonly minimum: 0;
1141
+ readonly description: "Maximum number of fleets that can be created per cluster.";
1142
+ readonly example: 999;
1143
+ };
1144
+ readonly cluster_tiers: {
1145
+ readonly type: "array";
1146
+ readonly items: {
1147
+ readonly type: "string";
1148
+ readonly example: "basic";
1149
+ };
1150
+ readonly minItems: 0;
1151
+ readonly description: "List of Cloudfleet cluster tiers available for the organization.";
1152
+ };
1153
+ readonly regions: {
1154
+ readonly type: "array";
1155
+ readonly items: {
1156
+ readonly type: "string";
1157
+ readonly example: "northamerica-central-1";
1158
+ };
1159
+ readonly minItems: 1;
1160
+ readonly description: "List of Cloudfleet control plane regions available for the organization.";
1161
+ };
1162
+ readonly versions: {
1163
+ readonly type: "array";
1164
+ readonly items: {
1165
+ readonly type: "object";
1166
+ readonly properties: {
1167
+ readonly id: {
1168
+ readonly type: "string";
1169
+ readonly description: "Id of the control plane version. Used in API calls.";
1170
+ readonly example: "1.33.x-cfke.x";
1171
+ };
1172
+ readonly label: {
1173
+ readonly type: "string";
1174
+ readonly description: "Label of the control plane version. Used in frontent UI.";
1175
+ readonly example: "1.33.x (Always latest 1.33 patch version)";
1176
+ };
1177
+ };
1178
+ readonly required: readonly ["id", "label"];
1179
+ readonly additionalProperties: false;
1180
+ };
1181
+ readonly minItems: 1;
1182
+ readonly description: "List of CFKE control plane versions available for the organization.";
1183
+ };
1184
+ };
1185
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
1186
+ readonly additionalProperties: false;
1187
+ };
1188
+ export declare const RegistryRepositorySchema: {
1189
+ readonly type: "object";
1190
+ readonly properties: {
1191
+ readonly name: {
1192
+ readonly type: "string";
1193
+ readonly description: "Repository name.";
1194
+ readonly example: "my-app";
1195
+ };
1196
+ readonly region: {
1197
+ readonly type: "string";
1198
+ readonly description: "Registry region.";
1199
+ readonly example: "northamerica";
1200
+ };
1201
+ readonly uri: {
1202
+ readonly type: "string";
1203
+ readonly description: "Full URI of the repository.";
1204
+ readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/v2/my-app";
1205
+ };
1206
+ };
1207
+ readonly required: readonly ["name", "region", "uri"];
1208
+ readonly additionalProperties: false;
1209
+ };
1210
+ export declare const RegistryRepositoryWithTagsSchema: {
1211
+ readonly type: "object";
1212
+ readonly properties: {
1213
+ readonly name: {
1214
+ readonly type: "string";
1215
+ readonly description: "Repository name.";
1216
+ readonly example: "my-app";
1217
+ };
1218
+ readonly region: {
1219
+ readonly type: "string";
1220
+ readonly description: "Registry region.";
1221
+ readonly example: "northamerica";
1222
+ };
1223
+ readonly uri: {
1224
+ readonly type: "string";
1225
+ readonly description: "Full URI of the repository.";
1226
+ readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/v2/my-app";
1227
+ };
1228
+ readonly tags: {
1229
+ readonly type: "array";
1230
+ readonly items: {
1231
+ readonly type: "object";
1232
+ readonly properties: {
1233
+ readonly name: {
1234
+ readonly type: "string";
1235
+ readonly description: "Tag name.";
1236
+ readonly example: "latest";
1237
+ };
1238
+ readonly size: {
1239
+ readonly type: "number";
1240
+ readonly format: "float";
1241
+ readonly description: "Size of the tag in bytes.";
1242
+ readonly example: 123456789;
1243
+ };
1244
+ readonly mediaType: {
1245
+ readonly type: "string";
1246
+ readonly description: "Media type of the manifest.";
1247
+ readonly example: "application/vnd.docker.distribution.manifest.v2+json";
1248
+ };
1249
+ };
1250
+ readonly required: readonly ["name", "size"];
1251
+ readonly additionalProperties: false;
1252
+ };
1253
+ readonly description: "Array of tags in the repository.";
1254
+ };
1255
+ readonly totalSize: {
1256
+ readonly type: "number";
1257
+ readonly format: "float";
1258
+ readonly description: "Total size of all tags in the repository in bytes.";
1259
+ readonly example: 987654321;
1260
+ };
1261
+ };
1262
+ readonly required: readonly ["name", "region", "uri", "tags", "totalSize"];
1263
+ readonly additionalProperties: false;
1264
+ };
1265
+ export declare const RegistryTagSchema: {
1266
+ readonly type: "object";
1267
+ readonly properties: {
1268
+ readonly name: {
1269
+ readonly type: "string";
1270
+ readonly description: "Tag name.";
1271
+ readonly example: "latest";
1272
+ };
1273
+ readonly mediaType: {
1274
+ readonly type: "string";
1275
+ readonly description: "Media type of the manifest.";
1276
+ readonly example: "application/vnd.docker.distribution.manifest.v2+json";
1277
+ };
1278
+ readonly config: {
1279
+ readonly type: "object";
1280
+ readonly properties: {
1281
+ readonly size: {
1282
+ readonly type: "number";
1283
+ readonly format: "float";
1284
+ readonly description: "Size of the config in bytes.";
1285
+ readonly example: 1234;
1286
+ };
1287
+ };
1288
+ readonly required: readonly ["size"];
1289
+ readonly additionalProperties: false;
1290
+ readonly description: "Manifest config metadata.";
1291
+ };
1292
+ readonly layers: {
1293
+ readonly type: "array";
1294
+ readonly items: {
1295
+ readonly type: "object";
1296
+ readonly properties: {
1297
+ readonly size: {
1298
+ readonly type: "number";
1299
+ readonly format: "float";
1300
+ readonly description: "Size of the layer in bytes.";
1301
+ readonly example: 5678;
1302
+ };
1303
+ };
1304
+ readonly required: readonly ["size"];
1305
+ readonly additionalProperties: false;
1306
+ };
1307
+ readonly description: "Array of layer metadata.";
1308
+ };
1309
+ readonly manifests: {
1310
+ readonly type: "array";
1311
+ readonly items: {
1312
+ readonly type: "object";
1313
+ readonly properties: {
1314
+ readonly digest: {
1315
+ readonly type: "string";
1316
+ readonly description: "Digest of the manifest.";
1317
+ readonly example: "sha256:abcd1234ef567890abcd1234ef567890abcd1234ef567890abcd1234ef567890";
1318
+ };
1319
+ readonly platform: {
1320
+ readonly type: "object";
1321
+ readonly properties: {
1322
+ readonly architecture: {
1323
+ readonly type: "string";
1324
+ readonly description: "Architecture of the platform.";
1325
+ readonly example: "amd64";
1326
+ };
1327
+ readonly os: {
1328
+ readonly type: "string";
1329
+ readonly description: "Operating system of the platform.";
1330
+ readonly example: "linux";
1331
+ };
1332
+ };
1333
+ readonly required: readonly ["architecture", "os"];
1334
+ readonly additionalProperties: false;
1335
+ readonly description: "Platform information for the manifest.";
1336
+ };
1337
+ };
1338
+ readonly required: readonly ["digest"];
1339
+ readonly additionalProperties: false;
1340
+ };
1341
+ readonly description: "Array of manifests for multi-arch images.";
1342
+ };
1343
+ readonly size: {
1344
+ readonly type: "number";
1345
+ readonly format: "float";
1346
+ readonly description: "Total size of the tag in bytes.";
1347
+ readonly example: 123456789;
1348
+ };
1349
+ readonly region: {
1350
+ readonly type: "string";
1351
+ readonly description: "Registry region.";
1352
+ readonly example: "northamerica";
1353
+ };
1354
+ readonly repository: {
1355
+ readonly type: "string";
1356
+ readonly description: "Repository name.";
1357
+ readonly example: "my-app";
1358
+ };
1359
+ readonly uri: {
1360
+ readonly type: "string";
1361
+ readonly description: "Full URI of the tag.";
1362
+ readonly example: "ssds123e-6651-4e5d-9c04-079f6532989b.northamerica.registry.cloudfleet.dev/my-app:latest";
1363
+ };
1364
+ };
1365
+ readonly required: readonly ["name", "size", "region", "repository", "uri"];
1366
+ readonly additionalProperties: false;
1367
+ };
1126
1368
  export declare const TokenCreateInputSchema: {
1127
1369
  readonly type: "object";
1128
1370
  readonly properties: {
@@ -1201,6 +1443,101 @@ export declare const TokenUpdateInputSchema: {
1201
1443
  };
1202
1444
  readonly additionalProperties: false;
1203
1445
  };
1446
+ export declare const UsageFacetsSchema: {
1447
+ readonly type: "object";
1448
+ readonly properties: {
1449
+ readonly cluster_id: {
1450
+ readonly type: "array";
1451
+ readonly items: {
1452
+ readonly type: "string";
1453
+ };
1454
+ readonly description: "List of unique cluster IDs";
1455
+ readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
1456
+ };
1457
+ readonly product: {
1458
+ readonly type: "array";
1459
+ readonly items: {
1460
+ readonly type: "string";
1461
+ };
1462
+ readonly description: "List of unique products";
1463
+ readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
1464
+ };
1465
+ };
1466
+ readonly additionalProperties: false;
1467
+ };
1468
+ export declare const UsageResponseSchema: {
1469
+ readonly type: "object";
1470
+ readonly properties: {
1471
+ readonly data: {
1472
+ readonly type: "array";
1473
+ readonly items: {
1474
+ readonly type: "object";
1475
+ readonly properties: {
1476
+ readonly hour: {
1477
+ readonly type: "string";
1478
+ readonly description: "Hour of the usage";
1479
+ readonly example: "2019-01-01T00:00:00.000Z";
1480
+ };
1481
+ readonly cluster_id: {
1482
+ readonly type: "string";
1483
+ readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1484
+ readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1485
+ };
1486
+ readonly product: {
1487
+ readonly type: "string";
1488
+ readonly description: "The product the usage is associated with";
1489
+ readonly example: "cfke_controlplane";
1490
+ };
1491
+ readonly value: {
1492
+ readonly type: "number";
1493
+ readonly format: "float";
1494
+ readonly description: "Consumption";
1495
+ readonly example: 4;
1496
+ };
1497
+ readonly price: {
1498
+ readonly type: "number";
1499
+ readonly format: "float";
1500
+ readonly description: "Price per unit";
1501
+ readonly example: 0.01;
1502
+ };
1503
+ readonly total: {
1504
+ readonly type: "number";
1505
+ readonly format: "float";
1506
+ readonly description: "Total cost";
1507
+ };
1508
+ };
1509
+ readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
1510
+ readonly additionalProperties: false;
1511
+ };
1512
+ readonly description: "Usage data";
1513
+ };
1514
+ readonly facets: {
1515
+ readonly type: "object";
1516
+ readonly properties: {
1517
+ readonly cluster_id: {
1518
+ readonly type: "array";
1519
+ readonly items: {
1520
+ readonly type: "string";
1521
+ };
1522
+ readonly description: "List of unique cluster IDs";
1523
+ readonly example: readonly ["6b5439b1-923a-4f2b-a371-d554e5ea23fa"];
1524
+ };
1525
+ readonly product: {
1526
+ readonly type: "array";
1527
+ readonly items: {
1528
+ readonly type: "string";
1529
+ };
1530
+ readonly description: "List of unique products";
1531
+ readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes"];
1532
+ };
1533
+ };
1534
+ readonly additionalProperties: false;
1535
+ readonly description: "Facets for filtering";
1536
+ };
1537
+ };
1538
+ readonly required: readonly ["data", "facets"];
1539
+ readonly additionalProperties: false;
1540
+ };
1204
1541
  export declare const UsageSchema: {
1205
1542
  readonly type: "object";
1206
1543
  readonly properties: {
@@ -1211,78 +1548,33 @@ export declare const UsageSchema: {
1211
1548
  };
1212
1549
  readonly cluster_id: {
1213
1550
  readonly type: "string";
1214
- readonly format: "uuid";
1215
1551
  readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1216
1552
  readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1217
1553
  };
1218
- readonly cluster_tier: {
1219
- readonly type: "string";
1220
- readonly description: "Tier of the cluster.";
1221
- readonly example: "pro";
1222
- readonly enum: readonly [""];
1223
- };
1224
1554
  readonly product: {
1225
1555
  readonly type: "string";
1226
1556
  readonly description: "The product the usage is associated with";
1227
- readonly example: "cfke_infra_compute";
1228
- readonly enum: readonly ["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"];
1229
- };
1230
- readonly node_name: {
1231
- readonly type: "string";
1232
- readonly description: "Name of the Kubernetes node";
1233
- readonly example: "flexible-moth-956037384";
1234
- };
1235
- readonly sku: {
1236
- readonly type: "string";
1237
- readonly description: "SKU of the Kubernetes node";
1238
- readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
1557
+ readonly example: "cfke_controlplane";
1239
1558
  };
1240
- readonly cpu: {
1241
- readonly anyOf: readonly [{
1242
- readonly type: "number";
1243
- readonly format: "float";
1244
- readonly description: "CPU core count of the node";
1245
- readonly example: 4;
1246
- }, {
1247
- readonly type: "string";
1248
- readonly enum: readonly [""];
1249
- }];
1559
+ readonly value: {
1560
+ readonly type: "number";
1561
+ readonly format: "float";
1562
+ readonly description: "Consumption";
1563
+ readonly example: 4;
1250
1564
  };
1251
1565
  readonly price: {
1252
- readonly anyOf: readonly [{
1253
- readonly type: "number";
1254
- readonly format: "float";
1255
- readonly description: "Price";
1256
- readonly example: 4;
1257
- }, {
1258
- readonly type: "string";
1259
- readonly enum: readonly [""];
1260
- }];
1261
- };
1262
- readonly value: {
1263
- readonly anyOf: readonly [{
1264
- readonly type: "number";
1265
- readonly format: "float";
1266
- readonly description: "Value";
1267
- readonly example: 4;
1268
- }, {
1269
- readonly type: "string";
1270
- readonly enum: readonly [""];
1271
- }];
1566
+ readonly type: "number";
1567
+ readonly format: "float";
1568
+ readonly description: "Price per unit";
1569
+ readonly example: 0.01;
1272
1570
  };
1273
1571
  readonly total: {
1274
- readonly anyOf: readonly [{
1275
- readonly type: "number";
1276
- readonly format: "float";
1277
- readonly description: "Total";
1278
- readonly example: 4;
1279
- }, {
1280
- readonly type: "string";
1281
- readonly enum: readonly [""];
1282
- }];
1572
+ readonly type: "number";
1573
+ readonly format: "float";
1574
+ readonly description: "Total cost";
1283
1575
  };
1284
1576
  };
1285
- readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1577
+ readonly required: readonly ["hour", "cluster_id", "product", "value", "price", "total"];
1286
1578
  readonly additionalProperties: false;
1287
1579
  };
1288
1580
  export declare const UserCreateInputSchema: {
@@ -1382,28 +1674,6 @@ export declare const UserSchema: {
1382
1674
  readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
1383
1675
  readonly example: "2023-11-02T16:08:14.338Z";
1384
1676
  };
1385
- readonly cluster_permissions: {
1386
- readonly type: "array";
1387
- readonly items: {
1388
- readonly type: "object";
1389
- readonly properties: {
1390
- readonly cluster_id: {
1391
- readonly type: "string";
1392
- readonly format: "uuid";
1393
- readonly description: "Unique identifier of the cluster. UUID v4 string in canonical form";
1394
- readonly example: "035ce46d-44d8-4e58-a8a2-b0192d1c27df";
1395
- };
1396
- readonly permissions: {
1397
- readonly type: "string";
1398
- readonly description: "User permissions to access the cluster. Can be `readwrite` or `readonly`.";
1399
- readonly example: "readwrite";
1400
- readonly enum: readonly ["readwrite", "readonly"];
1401
- };
1402
- };
1403
- readonly required: readonly ["cluster_id", "permissions"];
1404
- readonly additionalProperties: false;
1405
- };
1406
- };
1407
1677
  };
1408
1678
  readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
1409
1679
  readonly additionalProperties: false;