@cloudfleet/sdk 0.0.1-e2d1408 → 0.0.1-e80cef7

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.
@@ -1,3 +1,274 @@
1
+ export declare const BillingContactSchema: {
2
+ readonly type: "object";
3
+ readonly properties: {
4
+ readonly company: {
5
+ readonly type: "string";
6
+ readonly maxLength: 120;
7
+ readonly minLength: 2;
8
+ readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
9
+ readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
10
+ readonly example: "ACME Corp.";
11
+ };
12
+ readonly address1: {
13
+ readonly type: "string";
14
+ readonly nullable: true;
15
+ readonly description: "Street address, P.O. box, c/o";
16
+ readonly example: "123 Main St.";
17
+ };
18
+ readonly address2: {
19
+ readonly type: "string";
20
+ readonly nullable: true;
21
+ readonly description: "Apartment, suite, unit, building, floor, etc.";
22
+ readonly example: "Suite 100";
23
+ };
24
+ readonly postalCode: {
25
+ readonly type: "string";
26
+ readonly nullable: true;
27
+ readonly description: "Postal code as a string.";
28
+ readonly example: "94105";
29
+ };
30
+ readonly city: {
31
+ readonly type: "string";
32
+ readonly nullable: true;
33
+ readonly description: "City or town name.";
34
+ readonly example: "San Francisco";
35
+ };
36
+ readonly state: {
37
+ readonly type: "string";
38
+ readonly nullable: true;
39
+ readonly description: "State, province, or region name.";
40
+ readonly example: "CA";
41
+ };
42
+ readonly country: {
43
+ readonly type: "string";
44
+ readonly nullable: true;
45
+ readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
46
+ readonly example: "US";
47
+ };
48
+ readonly phone: {
49
+ readonly type: "string";
50
+ readonly nullable: true;
51
+ readonly description: "Phone number as a string.";
52
+ readonly example: "+1 555 555 5555";
53
+ };
54
+ readonly email: {
55
+ readonly type: "string";
56
+ readonly format: "email";
57
+ readonly description: "Email address used for billing as a string.";
58
+ readonly example: "email@example.com";
59
+ };
60
+ readonly first_name: {
61
+ readonly type: "string";
62
+ readonly description: "First name of the billing contact person.";
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";
69
+ };
70
+ readonly tax_id: {
71
+ readonly type: "string";
72
+ readonly nullable: true;
73
+ readonly description: "Tax ID of the organization.";
74
+ readonly example: "DE123456789";
75
+ };
76
+ readonly tax_id_type: {
77
+ readonly type: "string";
78
+ readonly nullable: true;
79
+ readonly description: "Type of the tax ID.";
80
+ readonly example: "de_vat";
81
+ 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
+ };
83
+ };
84
+ readonly required: readonly ["email", "first_name", "last_name"];
85
+ readonly additionalProperties: false;
86
+ };
87
+ export declare const BillingCreditsSchema: {
88
+ readonly type: "object";
89
+ readonly properties: {
90
+ readonly id: {
91
+ readonly type: "string";
92
+ readonly description: "Generated unique identifier of the promotional code.";
93
+ readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
94
+ };
95
+ readonly date_created: {
96
+ readonly type: "string";
97
+ readonly format: "date-time";
98
+ readonly description: "Date of the credit application. ISO 8601 date string in the UTC timezone.";
99
+ readonly example: "2023-12-20T13:53:32.000Z";
100
+ };
101
+ readonly code: {
102
+ readonly type: "string";
103
+ readonly description: "Promotional code used by the customer.";
104
+ readonly example: "VQ4SCMB";
105
+ };
106
+ readonly description: {
107
+ readonly type: "string";
108
+ readonly description: "Description of the promotional code.";
109
+ readonly example: "10% off on all products";
110
+ };
111
+ readonly products: {
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: {
126
+ readonly type: "number";
127
+ readonly format: "float";
128
+ readonly description: "Value of the promotional code.";
129
+ readonly example: 10;
130
+ };
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
+ readonly value_remaining: {
138
+ readonly type: "number";
139
+ readonly format: "float";
140
+ readonly description: "Value of the promotional code.";
141
+ readonly example: 10;
142
+ };
143
+ };
144
+ readonly required: readonly ["date_created", "code", "type", "value", "billing_period"];
145
+ readonly additionalProperties: false;
146
+ };
147
+ export declare const ChartCreateInputSchema: {
148
+ readonly type: "object";
149
+ readonly properties: {
150
+ readonly values: {
151
+ readonly type: "string";
152
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
153
+ };
154
+ readonly version_channel: {
155
+ readonly type: "string";
156
+ 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-]+)*))?$";
157
+ readonly description: "Desired version range or channel for the chart.";
158
+ readonly example: "2.x.x-cfke.x";
159
+ };
160
+ readonly name: {
161
+ readonly type: "string";
162
+ readonly maxLength: 63;
163
+ readonly minLength: 1;
164
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
165
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
166
+ readonly example: "postgresql-0";
167
+ };
168
+ readonly namespace: {
169
+ readonly type: "string";
170
+ readonly maxLength: 63;
171
+ readonly minLength: 1;
172
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
173
+ readonly description: "Namespace of the chart deployment";
174
+ readonly example: "default";
175
+ };
176
+ readonly chart: {
177
+ readonly type: "string";
178
+ readonly maxLength: 63;
179
+ readonly minLength: 1;
180
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
181
+ readonly description: "Name of the chart listing";
182
+ readonly example: "postgresql";
183
+ };
184
+ };
185
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart"];
186
+ readonly additionalProperties: false;
187
+ };
188
+ export declare const ChartSchema: {
189
+ readonly type: "object";
190
+ readonly properties: {
191
+ readonly values: {
192
+ readonly type: "string";
193
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
194
+ };
195
+ readonly version_channel: {
196
+ readonly type: "string";
197
+ 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-]+)*))?$";
198
+ readonly description: "Desired version range or channel for the chart.";
199
+ readonly example: "2.x.x-cfke.x";
200
+ };
201
+ readonly name: {
202
+ readonly type: "string";
203
+ readonly maxLength: 63;
204
+ readonly minLength: 1;
205
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
206
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
207
+ readonly example: "postgresql-0";
208
+ };
209
+ readonly namespace: {
210
+ readonly type: "string";
211
+ readonly maxLength: 63;
212
+ readonly minLength: 1;
213
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
214
+ readonly description: "Namespace of the chart deployment";
215
+ readonly example: "default";
216
+ };
217
+ readonly chart: {
218
+ readonly type: "string";
219
+ readonly maxLength: 63;
220
+ readonly minLength: 1;
221
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
222
+ readonly description: "Name of the chart listing";
223
+ readonly example: "postgresql";
224
+ };
225
+ readonly status: {
226
+ readonly type: "string";
227
+ readonly description: "Status of the chart deployment.";
228
+ readonly example: "active";
229
+ readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"];
230
+ };
231
+ readonly version_current: {
232
+ readonly type: "string";
233
+ readonly description: "Current version of the chart deployment.";
234
+ readonly example: "2.1.33-cfke.11";
235
+ };
236
+ readonly created_at: {
237
+ readonly type: "string";
238
+ readonly description: "Creation date and time of the chart deployment.";
239
+ readonly example: "2024-09-12T09:11:27Z";
240
+ };
241
+ readonly updated_at: {
242
+ readonly type: "string";
243
+ readonly description: "Last update date and time of the chart deployment.";
244
+ readonly example: "2024-09-12T09:11:27Z";
245
+ };
246
+ readonly ready: {
247
+ readonly type: "boolean";
248
+ readonly description: "Indicates if the chart deployment is ready to be used.";
249
+ readonly example: true;
250
+ };
251
+ };
252
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart", "status", "version_current", "created_at", "updated_at", "ready"];
253
+ readonly additionalProperties: false;
254
+ };
255
+ export declare const ChartUpdateInputSchema: {
256
+ readonly type: "object";
257
+ readonly properties: {
258
+ readonly values: {
259
+ readonly type: "string";
260
+ readonly description: "Values to be used in the chart encoded as a JSON string.";
261
+ };
262
+ readonly version_channel: {
263
+ readonly type: "string";
264
+ 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-]+)*))?$";
265
+ readonly description: "Desired version range or channel for the chart.";
266
+ readonly example: "2.x.x-cfke.x";
267
+ };
268
+ };
269
+ readonly required: readonly ["values", "version_channel"];
270
+ readonly additionalProperties: false;
271
+ };
1
272
  export declare const ClusterCreateInputSchema: {
2
273
  readonly type: "object";
3
274
  readonly properties: {
@@ -243,31 +514,19 @@ export declare const FleetCreateInputSchema: {
243
514
  readonly additionalProperties: false;
244
515
  };
245
516
  readonly hetzner: {
246
- readonly oneOf: readonly [{
247
- readonly type: "object";
248
- readonly properties: {
249
- readonly enabled: {
250
- readonly type: "boolean";
251
- readonly default: true;
252
- };
253
- readonly apiKey: {
254
- readonly type: "string";
255
- };
517
+ readonly type: "object";
518
+ readonly properties: {
519
+ readonly enabled: {
520
+ readonly type: "boolean";
521
+ readonly default: true;
256
522
  };
257
- readonly additionalProperties: false;
258
- }, {
259
- readonly type: "object";
260
- readonly properties: {
261
- readonly apiKey: {
262
- readonly type: "string";
263
- };
264
- readonly enabled: {
265
- readonly type: "boolean";
266
- readonly default: true;
267
- };
523
+ readonly apiKey: {
524
+ readonly type: "string";
525
+ readonly description: "Hetzner Cloud API key with read / write access";
268
526
  };
269
- readonly additionalProperties: false;
270
- }];
527
+ };
528
+ readonly required: readonly ["apiKey"];
529
+ readonly additionalProperties: false;
271
530
  };
272
531
  readonly aws: {
273
532
  readonly type: "object";
@@ -292,13 +551,8 @@ export declare const FleetCreateInputSchema: {
292
551
  readonly description: "Unique identifier of the kubernetes fleet.";
293
552
  readonly example: "new-clouds-fleet";
294
553
  };
295
- readonly type: {
296
- readonly type: "string";
297
- readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
298
- readonly enum: readonly ["managed", "connected"];
299
- };
300
554
  };
301
- readonly required: readonly ["id", "type"];
555
+ readonly required: readonly ["id"];
302
556
  readonly additionalProperties: false;
303
557
  };
304
558
  export declare const FleetSchema: {
@@ -334,31 +588,19 @@ export declare const FleetSchema: {
334
588
  readonly additionalProperties: false;
335
589
  };
336
590
  readonly hetzner: {
337
- readonly oneOf: readonly [{
338
- readonly type: "object";
339
- readonly properties: {
340
- readonly enabled: {
341
- readonly type: "boolean";
342
- readonly default: true;
343
- };
344
- readonly apiKey: {
345
- readonly type: "string";
346
- };
591
+ readonly type: "object";
592
+ readonly properties: {
593
+ readonly enabled: {
594
+ readonly type: "boolean";
595
+ readonly default: true;
347
596
  };
348
- readonly additionalProperties: false;
349
- }, {
350
- readonly type: "object";
351
- readonly properties: {
352
- readonly apiKey: {
353
- readonly type: "string";
354
- };
355
- readonly enabled: {
356
- readonly type: "boolean";
357
- readonly default: true;
358
- };
597
+ readonly apiKey: {
598
+ readonly type: "string";
599
+ readonly description: "Hetzner Cloud API key with read / write access";
359
600
  };
360
- readonly additionalProperties: false;
361
- }];
601
+ };
602
+ readonly required: readonly ["apiKey"];
603
+ readonly additionalProperties: false;
362
604
  };
363
605
  readonly aws: {
364
606
  readonly type: "object";
@@ -383,13 +625,8 @@ export declare const FleetSchema: {
383
625
  readonly description: "Unique identifier of the kubernetes fleet.";
384
626
  readonly example: "new-clouds-fleet";
385
627
  };
386
- readonly type: {
387
- readonly type: "string";
388
- readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
389
- readonly enum: readonly ["managed", "connected"];
390
- };
391
628
  };
392
- readonly required: readonly ["id", "type"];
629
+ readonly required: readonly ["id"];
393
630
  readonly additionalProperties: false;
394
631
  };
395
632
  export declare const FleetUpdateInputSchema: {
@@ -405,338 +642,56 @@ export declare const FleetUpdateInputSchema: {
405
642
  readonly description: "CPU limit in cores.";
406
643
  };
407
644
  };
408
- readonly required: readonly ["cpu"];
409
- readonly additionalProperties: false;
410
- readonly description: "Limits define a set of bounds for provisioning capacity.";
411
- };
412
- readonly gcp: {
413
- readonly type: "object";
414
- readonly properties: {
415
- readonly enabled: {
416
- readonly type: "boolean";
417
- readonly default: true;
418
- };
419
- readonly project: {
420
- readonly type: "string";
421
- readonly description: "Project GCP Project id to deploy instances into";
422
- };
423
- };
424
- readonly required: readonly ["project"];
425
- readonly additionalProperties: false;
426
- };
427
- readonly hetzner: {
428
- readonly oneOf: readonly [{
429
- readonly type: "object";
430
- readonly properties: {
431
- readonly enabled: {
432
- readonly type: "boolean";
433
- readonly default: true;
434
- };
435
- readonly apiKey: {
436
- readonly type: "string";
437
- };
438
- };
439
- readonly additionalProperties: false;
440
- }, {
441
- readonly type: "object";
442
- readonly properties: {
443
- readonly apiKey: {
444
- readonly type: "string";
445
- };
446
- readonly enabled: {
447
- readonly type: "boolean";
448
- readonly default: true;
449
- };
450
- };
451
- readonly additionalProperties: false;
452
- }];
453
- };
454
- readonly aws: {
455
- readonly type: "object";
456
- readonly properties: {
457
- readonly enabled: {
458
- readonly type: "boolean";
459
- readonly default: true;
460
- };
461
- readonly controllerRoleArn: {
462
- readonly type: "string";
463
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
464
- };
465
- };
466
- readonly required: readonly ["controllerRoleArn"];
467
- readonly additionalProperties: false;
468
- };
469
- };
470
- readonly additionalProperties: false;
471
- };
472
- export declare const InfrastructureFilterSchema: {
473
- readonly type: "object";
474
- readonly properties: {
475
- readonly version: {
476
- readonly type: "integer";
477
- readonly description: "Version of the infrastructure filter definition. Currently only version 1 is supported.";
478
- readonly default: 1;
479
- readonly example: 1;
480
- readonly enum: readonly [1];
481
- };
482
- readonly provider: {
483
- readonly type: "array";
484
- readonly items: {
485
- readonly type: "string";
486
- };
487
- readonly description: "Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)";
488
- readonly example: "AWS";
489
- };
490
- readonly region: {
491
- readonly type: "array";
492
- readonly items: {
493
- readonly type: "string";
494
- };
495
- readonly description: "Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
496
- readonly example: "northamerica";
497
- };
498
- readonly sub_region: {
499
- readonly type: "array";
500
- readonly items: {
501
- readonly type: "string";
502
- };
503
- readonly description: "Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
504
- readonly example: "west";
505
- };
506
- readonly csp_region: {
507
- readonly type: "array";
508
- readonly items: {
509
- readonly type: "string";
510
- };
511
- readonly description: "Limits selection of cloud regions to this list of canonical provider regions";
512
- readonly example: "eu-west-1";
513
- };
514
- readonly instance_type: {
515
- readonly type: "array";
516
- readonly items: {
517
- readonly type: "string";
518
- };
519
- readonly description: "Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider";
520
- readonly example: "p4d.24xlarge";
521
- };
522
- readonly accelerator_name: {
523
- readonly type: "array";
524
- readonly items: {
525
- readonly type: "string";
526
- };
527
- readonly description: "List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field";
528
- readonly example: "A100";
529
- };
530
- readonly accelerator_manufacturer: {
531
- readonly type: "array";
532
- readonly items: {
533
- readonly type: "string";
534
- };
535
- readonly description: "List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
536
- readonly example: "NVIDIA";
537
- };
538
- readonly accelerator_count_min: {
539
- readonly type: "integer";
540
- readonly minimum: 0;
541
- readonly description: "Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
542
- readonly example: 1;
543
- };
544
- readonly accelerator_count_max: {
545
- readonly type: "integer";
546
- readonly minimum: 0;
547
- readonly description: "Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
548
- readonly example: 8;
549
- };
550
- readonly accelerator_memory_min: {
551
- readonly type: "number";
552
- readonly format: "float";
553
- readonly description: "Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
554
- readonly example: 40;
555
- };
556
- readonly accelerator_memory_max: {
557
- readonly type: "number";
558
- readonly format: "float";
559
- readonly description: "Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
560
- readonly example: 80;
561
- };
562
- readonly memory_min: {
563
- readonly type: "integer";
564
- readonly minimum: 0;
565
- readonly description: "Minimum amount of RAM in gibibytes (GiB)";
566
- readonly example: 32;
567
- };
568
- readonly memory_max: {
569
- readonly type: "integer";
570
- readonly minimum: 0;
571
- readonly description: "Maximum amount of RAM in gibibytes (GiB)";
572
- readonly example: 64;
573
- };
574
- readonly vcpu_min: {
575
- readonly type: "integer";
576
- readonly minimum: 1;
577
- readonly description: "Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
578
- readonly example: 32;
579
- };
580
- readonly vcpu_max: {
581
- readonly type: "integer";
582
- readonly minimum: 1;
583
- readonly description: "Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
584
- readonly example: 128;
585
- };
586
- readonly storage_total_min: {
587
- readonly type: "number";
588
- readonly format: "float";
589
- readonly minimum: 10;
590
- readonly description: "Minimum total storage in GiB (attached and local)";
591
- readonly example: 128;
592
- };
593
- readonly storage_total_max: {
594
- readonly type: "number";
595
- readonly format: "float";
596
- readonly minimum: 10;
597
- readonly description: "Maximum total storage in GiB (attached and local)";
598
- readonly example: 256;
599
- };
600
- readonly storage_local_min: {
601
- readonly type: "number";
602
- readonly format: "float";
603
- readonly description: "Minimum volume of directly attached, block-device local storage in gibibytes (GiB)";
604
- readonly example: 24;
605
- };
606
- readonly storage_local_max: {
607
- readonly type: "number";
608
- readonly format: "float";
609
- readonly description: "Maximum volume of directly attached, block-device local storage in gibibytes (GiB)";
610
- readonly example: 128;
611
- };
612
- readonly price_min: {
613
- readonly type: "number";
614
- readonly format: "float";
615
- readonly description: "Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.";
616
- readonly example: 10;
617
- };
618
- readonly price_max: {
619
- readonly type: "number";
620
- readonly format: "float";
621
- readonly description: "Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.";
622
- readonly example: 50;
623
- };
624
- };
625
- readonly additionalProperties: false;
626
- };
627
- export declare const InfrastructureInstanceSchema: {
628
- readonly type: "object";
629
- readonly properties: {
630
- readonly sku: {
631
- readonly type: "string";
632
- readonly description: "Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.";
633
- readonly example: "AWS-EU-WEST-1C-P4D.24XLARGE";
634
- };
635
- readonly provider: {
636
- readonly type: "string";
637
- readonly description: "Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)";
638
- readonly example: "AWS";
639
- };
640
- readonly region: {
641
- readonly type: "string";
642
- readonly description: "Normalized region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
643
- readonly example: "europe";
644
- };
645
- readonly sub_region: {
646
- readonly type: "string";
647
- readonly description: "Normalized sub-region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)";
648
- readonly example: "west";
649
- };
650
- readonly csp_region: {
651
- readonly type: "string";
652
- readonly description: "Region as defined by the cloud service provider";
653
- readonly example: "eu-west-1";
654
- };
655
- readonly csp_zone: {
656
- readonly type: "string";
657
- readonly description: "Availability zone as defined by the cloud service provider";
658
- readonly example: "eu-west-1a";
659
- };
660
- readonly instance_type: {
661
- readonly type: "string";
662
- readonly description: "Instance / VM type as defined by the cloud service provider";
663
- readonly example: "p4d.24xlarge";
664
- };
665
- readonly architecture: {
666
- readonly type: "string";
667
- readonly description: "Instance CPU architecture";
668
- readonly example: "amd64";
669
- };
670
- readonly os: {
671
- readonly type: "string";
672
- readonly description: "Instance operating system";
673
- readonly example: "linux";
674
- };
675
- readonly vcpu: {
676
- readonly type: "number";
677
- readonly format: "float";
678
- readonly minimum: 1;
679
- readonly description: "CPU count as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.";
680
- readonly example: 96;
681
- };
682
- readonly memory: {
683
- readonly type: "number";
684
- readonly format: "float";
685
- readonly minimum: 1;
686
- readonly description: "Total amount of RAM in gibibytes (GiB)";
687
- readonly example: 1152;
688
- };
689
- readonly local_storage: {
690
- readonly type: "number";
691
- readonly format: "float";
692
- readonly description: "Volume of directly attached, block-device local storage in gibibytes (GiB)";
693
- readonly example: 8000;
694
- };
695
- readonly accelerator_name: {
696
- readonly type: "string";
697
- readonly description: "Normalized model name of accelerator. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field";
698
- readonly example: "A100";
699
- };
700
- readonly accelerator_manufacturer: {
701
- readonly type: "string";
702
- readonly description: "Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
703
- readonly example: "NVIDIA";
704
- };
705
- readonly accelerator_count: {
706
- readonly type: "integer";
707
- readonly description: "Number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.";
708
- readonly example: 8;
709
- };
710
- readonly accelerator_memory: {
711
- readonly type: "number";
712
- readonly format: "float";
713
- readonly description: "Ammount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory";
714
- readonly example: 40;
715
- };
716
- readonly pods_capacity: {
717
- readonly type: "number";
718
- readonly format: "float";
719
- readonly description: "Maximum number of pods that can be run on this instance type.";
720
- readonly example: 110;
645
+ readonly required: readonly ["cpu"];
646
+ readonly additionalProperties: false;
647
+ readonly description: "Limits define a set of bounds for provisioning capacity.";
721
648
  };
722
- readonly capacity_type: {
723
- readonly type: "string";
724
- readonly description: "Capacity type of the instance. E.g. `on-demand`, `spot`.";
725
- readonly example: "on-demand";
649
+ readonly gcp: {
650
+ readonly type: "object";
651
+ readonly properties: {
652
+ readonly enabled: {
653
+ readonly type: "boolean";
654
+ readonly default: true;
655
+ };
656
+ readonly project: {
657
+ readonly type: "string";
658
+ readonly description: "Project GCP Project id to deploy instances into";
659
+ };
660
+ };
661
+ readonly required: readonly ["project"];
662
+ readonly additionalProperties: false;
726
663
  };
727
- readonly price: {
728
- readonly type: "number";
729
- readonly format: "float";
730
- readonly description: "Price of running the inctance per hour in USD as defined by the cloud service provider";
731
- readonly example: 35.39655;
664
+ readonly hetzner: {
665
+ readonly type: "object";
666
+ readonly properties: {
667
+ readonly enabled: {
668
+ readonly type: "boolean";
669
+ readonly default: true;
670
+ };
671
+ readonly apiKey: {
672
+ readonly type: "string";
673
+ readonly description: "Hetzner Cloud API key with read / write access";
674
+ };
675
+ };
676
+ readonly required: readonly ["apiKey"];
677
+ readonly additionalProperties: false;
732
678
  };
733
- readonly available: {
734
- readonly type: "boolean";
735
- readonly description: "Whether this instance type is available.";
736
- readonly example: true;
679
+ readonly aws: {
680
+ readonly type: "object";
681
+ readonly properties: {
682
+ readonly enabled: {
683
+ readonly type: "boolean";
684
+ readonly default: true;
685
+ };
686
+ readonly controllerRoleArn: {
687
+ readonly type: "string";
688
+ readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
689
+ };
690
+ };
691
+ readonly required: readonly ["controllerRoleArn"];
692
+ readonly additionalProperties: false;
737
693
  };
738
694
  };
739
- readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
740
695
  readonly additionalProperties: false;
741
696
  };
742
697
  export declare const InviteSchema: {
@@ -1118,51 +1073,91 @@ export declare const InvoiceSchema: {
1118
1073
  };
1119
1074
  readonly additionalProperties: false;
1120
1075
  };
1121
- export declare const OrganizationContactInfoSchema: {
1076
+ export declare const MarketplaceListingSchema: {
1122
1077
  readonly type: "object";
1123
1078
  readonly properties: {
1124
- readonly address1: {
1079
+ readonly id: {
1125
1080
  readonly type: "string";
1126
- readonly nullable: true;
1127
- readonly description: "Street address, P.O. box, c/o";
1128
- readonly example: "123 Main St.";
1081
+ readonly maxLength: 63;
1082
+ readonly minLength: 1;
1083
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
1084
+ readonly description: "Id of the chart listing";
1085
+ readonly example: "portworx-enterprise-disaster-recovery-baremetal";
1129
1086
  };
1130
- readonly address2: {
1087
+ readonly name: {
1131
1088
  readonly type: "string";
1132
- readonly nullable: true;
1133
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1134
- readonly example: "Suite 100";
1089
+ readonly description: "Name of the chart listing";
1090
+ readonly example: "Portworx Enterprise + Disaster Recovery - Baremetal";
1135
1091
  };
1136
- readonly postalCode: {
1092
+ readonly developer: {
1137
1093
  readonly type: "string";
1138
- readonly nullable: true;
1139
- readonly description: "Postal code as a string.";
1140
- readonly example: "94105";
1094
+ readonly description: "Author of the chart listing";
1095
+ readonly example: "Portworx";
1141
1096
  };
1142
- readonly city: {
1097
+ readonly description: {
1143
1098
  readonly type: "string";
1144
- readonly nullable: true;
1145
- readonly description: "City or town name.";
1146
- readonly example: "San Francisco";
1099
+ readonly description: "Short description of the chart listing";
1100
+ readonly example: "Run Kubernetes with unmatched scalability, availability, and self-service access to any storage";
1147
1101
  };
1148
- readonly state: {
1102
+ readonly logoUrl: {
1149
1103
  readonly type: "string";
1150
- readonly nullable: true;
1151
- readonly description: "State, province, or region name.";
1152
- readonly example: "CA";
1104
+ readonly description: "Logo of the chart listing";
1105
+ readonly example: "https://portworx.com/wp-content/themes/portworx/assets/images/header/portworx-logo.png";
1153
1106
  };
1154
- readonly country: {
1107
+ readonly longDescription: {
1155
1108
  readonly type: "string";
1156
- readonly nullable: true;
1157
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1158
- readonly example: "US";
1109
+ readonly description: "Long description of the chart listing";
1110
+ readonly example: "Portworx-Enterprise is the complete multi-cloud ready Kubernetes storage platform for running mission-critical apps in production....";
1159
1111
  };
1160
- readonly phone: {
1161
- readonly type: "string";
1162
- readonly nullable: true;
1163
- readonly description: "Phone number as a string.";
1164
- readonly example: "+1 555 555 5555";
1112
+ readonly categories: {
1113
+ readonly type: "array";
1114
+ readonly items: {
1115
+ readonly type: "string";
1116
+ readonly example: "AI & Machine Learning";
1117
+ };
1118
+ readonly description: "Tags of the chart";
1119
+ };
1120
+ readonly version_channels: {
1121
+ readonly type: "array";
1122
+ readonly items: {
1123
+ readonly type: "string";
1124
+ 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-]+)*))?$";
1125
+ readonly description: "Version of the chart.";
1126
+ readonly example: "2.x.x-cfke.x";
1127
+ };
1128
+ };
1129
+ readonly value_schemas: {
1130
+ readonly type: "array";
1131
+ readonly items: {
1132
+ readonly type: "object";
1133
+ readonly properties: {
1134
+ readonly version: {
1135
+ readonly type: "string";
1136
+ 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-]+)*))?$";
1137
+ readonly description: "Version of the chart.";
1138
+ readonly example: "2.1.1-cfke.123";
1139
+ };
1140
+ readonly schema: {
1141
+ readonly type: "string";
1142
+ readonly description: "Schema of the chart values. JSON Schema as string";
1143
+ };
1144
+ readonly placeholder: {
1145
+ readonly type: "string";
1146
+ readonly description: "Schema of the chart values";
1147
+ readonly example: "foo: 1\nbar: example";
1148
+ };
1149
+ };
1150
+ readonly required: readonly ["version", "schema", "placeholder"];
1151
+ readonly additionalProperties: false;
1152
+ };
1165
1153
  };
1154
+ };
1155
+ readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription", "categories", "version_channels", "value_schemas"];
1156
+ readonly additionalProperties: false;
1157
+ };
1158
+ export declare const OrganizationCreateInputSchema: {
1159
+ readonly type: "object";
1160
+ readonly properties: {
1166
1161
  readonly email: {
1167
1162
  readonly type: "string";
1168
1163
  readonly format: "email";
@@ -1179,14 +1174,7 @@ export declare const OrganizationContactInfoSchema: {
1179
1174
  readonly description: "Last name of the billing contact person.";
1180
1175
  readonly example: "Doe";
1181
1176
  };
1182
- };
1183
- readonly required: readonly ["email", "first_name", "last_name"];
1184
- readonly additionalProperties: false;
1185
- };
1186
- export declare const OrganizationCreateInputSchema: {
1187
- readonly type: "object";
1188
- readonly properties: {
1189
- readonly name: {
1177
+ readonly company_name: {
1190
1178
  readonly type: "string";
1191
1179
  readonly maxLength: 120;
1192
1180
  readonly minLength: 2;
@@ -1194,150 +1182,31 @@ export declare const OrganizationCreateInputSchema: {
1194
1182
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1195
1183
  readonly example: "ACME Corp.";
1196
1184
  };
1197
- readonly contactInfo: {
1198
- readonly type: "object";
1199
- readonly properties: {
1200
- readonly address1: {
1201
- readonly type: "string";
1202
- readonly description: "Street address, P.O. box, c/o";
1203
- readonly example: "123 Main St.";
1204
- };
1205
- readonly address2: {
1206
- readonly type: "string";
1207
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1208
- readonly example: "Suite 100";
1209
- };
1210
- readonly postalCode: {
1211
- readonly type: "string";
1212
- readonly description: "Postal code as a string.";
1213
- readonly example: "94105";
1214
- };
1215
- readonly city: {
1216
- readonly type: "string";
1217
- readonly description: "City or town name.";
1218
- readonly example: "San Francisco";
1219
- };
1220
- readonly state: {
1221
- readonly type: "string";
1222
- readonly description: "State, province, or region name.";
1223
- readonly example: "CA";
1224
- };
1225
- readonly country: {
1226
- readonly type: "string";
1227
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1228
- readonly example: "US";
1229
- };
1230
- readonly phone: {
1231
- readonly type: "string";
1232
- readonly description: "Phone number as a string.";
1233
- readonly example: "+1 555 555 5555";
1234
- };
1235
- readonly email: {
1236
- readonly type: "string";
1237
- readonly format: "email";
1238
- readonly description: "Email address used for billing as a string.";
1239
- readonly example: "email@example.com";
1240
- };
1241
- readonly first_name: {
1242
- readonly type: "string";
1243
- readonly description: "First name of the billing contact person.";
1244
- readonly example: "John";
1245
- };
1246
- readonly last_name: {
1247
- readonly type: "string";
1248
- readonly description: "Last name of the billing contact person.";
1249
- readonly example: "Doe";
1250
- };
1251
- };
1252
- readonly required: readonly ["email", "first_name", "last_name"];
1253
- readonly additionalProperties: false;
1254
- readonly description: "Organization contact information and billing address.";
1255
- };
1256
1185
  readonly password: {
1257
1186
  readonly type: "string";
1258
1187
  readonly minLength: 8;
1259
1188
  readonly description: "Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
1260
1189
  };
1261
1190
  };
1262
- readonly required: readonly ["name", "contactInfo", "password"];
1191
+ readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1263
1192
  readonly additionalProperties: false;
1264
1193
  };
1265
1194
  export declare const OrganizationSchema: {
1266
1195
  readonly type: "object";
1267
1196
  readonly properties: {
1197
+ readonly id: {
1198
+ readonly type: "string";
1199
+ readonly format: "uuid";
1200
+ readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1201
+ readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1202
+ };
1268
1203
  readonly name: {
1269
1204
  readonly type: "string";
1270
1205
  readonly maxLength: 120;
1271
1206
  readonly minLength: 2;
1272
- readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
1273
1207
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1274
1208
  readonly example: "ACME Corp.";
1275
1209
  };
1276
- readonly contactInfo: {
1277
- readonly type: "object";
1278
- readonly properties: {
1279
- readonly address1: {
1280
- readonly type: "string";
1281
- readonly description: "Street address, P.O. box, c/o";
1282
- readonly example: "123 Main St.";
1283
- };
1284
- readonly address2: {
1285
- readonly type: "string";
1286
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1287
- readonly example: "Suite 100";
1288
- };
1289
- readonly postalCode: {
1290
- readonly type: "string";
1291
- readonly description: "Postal code as a string.";
1292
- readonly example: "94105";
1293
- };
1294
- readonly city: {
1295
- readonly type: "string";
1296
- readonly description: "City or town name.";
1297
- readonly example: "San Francisco";
1298
- };
1299
- readonly state: {
1300
- readonly type: "string";
1301
- readonly description: "State, province, or region name.";
1302
- readonly example: "CA";
1303
- };
1304
- readonly country: {
1305
- readonly type: "string";
1306
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1307
- readonly example: "US";
1308
- };
1309
- readonly phone: {
1310
- readonly type: "string";
1311
- readonly description: "Phone number as a string.";
1312
- readonly example: "+1 555 555 5555";
1313
- };
1314
- readonly email: {
1315
- readonly type: "string";
1316
- readonly format: "email";
1317
- readonly description: "Email address used for billing as a string.";
1318
- readonly example: "email@example.com";
1319
- };
1320
- readonly first_name: {
1321
- readonly type: "string";
1322
- readonly description: "First name of the billing contact person.";
1323
- readonly example: "John";
1324
- };
1325
- readonly last_name: {
1326
- readonly type: "string";
1327
- readonly description: "Last name of the billing contact person.";
1328
- readonly example: "Doe";
1329
- };
1330
- };
1331
- readonly required: readonly ["email", "first_name", "last_name"];
1332
- readonly additionalProperties: false;
1333
- readonly description: "Organization contact information and billing address.";
1334
- };
1335
- readonly id: {
1336
- readonly type: "string";
1337
- readonly format: "uuid";
1338
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1339
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1340
- };
1341
1210
  readonly date_created: {
1342
1211
  readonly type: "string";
1343
1212
  readonly format: "date-time";
@@ -1375,12 +1244,6 @@ export declare const OrganizationSchema: {
1375
1244
  readonly description: "Maximum number of fleets that can be created per cluster.";
1376
1245
  readonly example: 999;
1377
1246
  };
1378
- readonly managed_fleets_cpu_max: {
1379
- readonly type: "integer";
1380
- readonly minimum: 0;
1381
- readonly description: "Maximum number of CPU cores per managed fleet.";
1382
- readonly example: 999;
1383
- };
1384
1247
  readonly cluster_tiers: {
1385
1248
  readonly type: "array";
1386
1249
  readonly items: {
@@ -1422,100 +1285,17 @@ export declare const OrganizationSchema: {
1422
1285
  readonly description: "List of CFKE control plane versions available for the organization.";
1423
1286
  };
1424
1287
  };
1425
- 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"];
1288
+ readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
1426
1289
  readonly additionalProperties: false;
1427
1290
  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.";
1428
1291
  };
1429
- readonly pending_actions: {
1430
- readonly type: "array";
1431
- readonly items: {
1432
- readonly type: "string";
1433
- readonly example: "signup-payment-method";
1434
- readonly enum: readonly ["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"];
1435
- };
1436
- readonly description: "List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.";
1437
- };
1438
1292
  readonly status: {
1439
1293
  readonly type: "string";
1440
1294
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1441
1295
  readonly enum: readonly ["active", "closed", "suspended"];
1442
1296
  };
1443
1297
  };
1444
- readonly required: readonly ["name", "contactInfo", "id", "date_created", "quota", "pending_actions", "status"];
1445
- readonly additionalProperties: false;
1446
- };
1447
- export declare const OrganizationUpdateInputSchema: {
1448
- readonly type: "object";
1449
- readonly properties: {
1450
- readonly name: {
1451
- readonly type: "string";
1452
- readonly maxLength: 120;
1453
- readonly minLength: 2;
1454
- readonly pattern: "^(?!\\s)(?!.*\\s$)(?=.*[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9])[a-zA-ZÆÐƎƏƐƔIJŊŒẞÞǷȜæðǝəɛɣijŋœĸſßþƿȝĄƁÇĐƊĘĦĮƘŁØƠŞȘŢȚŦŲƯY̨Ƴąɓçđɗęħįƙłøơşșţțŧųưy̨ƴÁÀÂÄǍĂĀÃÅǺĄÆǼǢƁĆĊĈČÇĎḌĐƊÐÉÈĖÊËĚĔĒĘẸƎƏƐĠĜǦĞĢƔáàâäǎăāãåǻąæǽǣɓćċĉčçďḍđɗðéèėêëěĕēęẹǝəɛġĝǧğģɣĤḤĦIÍÌİÎÏǏĬĪĨĮỊIJĴĶƘĹĻŁĽĿʼNŃN̈ŇÑŅŊÓÒÔÖǑŎŌÕŐỌØǾƠŒĥḥħıíìiîïǐĭīĩįịijĵķƙĸĺļłľŀʼnńn̈ňñņŋóòôöǒŏōõőọøǿơœŔŘŖŚŜŠŞȘṢẞŤŢṬŦÞÚÙÛÜǓŬŪŨŰŮŲỤƯẂẀŴẄǷÝỲŶŸȲỸƳŹŻŽẒŕřŗſśŝšşșṣßťţṭŧþúùûüǔŭūũűůųụưẃẁŵẅƿýỳŷÿȳỹƴźżžẓ0-9 -.]{2,}$";
1455
- readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1456
- readonly example: "ACME Corp.";
1457
- };
1458
- readonly contactInfo: {
1459
- readonly type: "object";
1460
- readonly properties: {
1461
- readonly address1: {
1462
- readonly type: "string";
1463
- readonly description: "Street address, P.O. box, c/o";
1464
- readonly example: "123 Main St.";
1465
- };
1466
- readonly address2: {
1467
- readonly type: "string";
1468
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1469
- readonly example: "Suite 100";
1470
- };
1471
- readonly postalCode: {
1472
- readonly type: "string";
1473
- readonly description: "Postal code as a string.";
1474
- readonly example: "94105";
1475
- };
1476
- readonly city: {
1477
- readonly type: "string";
1478
- readonly description: "City or town name.";
1479
- readonly example: "San Francisco";
1480
- };
1481
- readonly state: {
1482
- readonly type: "string";
1483
- readonly description: "State, province, or region name.";
1484
- readonly example: "CA";
1485
- };
1486
- readonly country: {
1487
- readonly type: "string";
1488
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1489
- readonly example: "US";
1490
- };
1491
- readonly phone: {
1492
- readonly type: "string";
1493
- readonly description: "Phone number as a string.";
1494
- readonly example: "+1 555 555 5555";
1495
- };
1496
- readonly email: {
1497
- readonly type: "string";
1498
- readonly format: "email";
1499
- readonly description: "Email address used for billing as a string.";
1500
- readonly example: "email@example.com";
1501
- };
1502
- readonly first_name: {
1503
- readonly type: "string";
1504
- readonly description: "First name of the billing contact person.";
1505
- readonly example: "John";
1506
- };
1507
- readonly last_name: {
1508
- readonly type: "string";
1509
- readonly description: "Last name of the billing contact person.";
1510
- readonly example: "Doe";
1511
- };
1512
- };
1513
- readonly required: readonly ["email", "first_name", "last_name"];
1514
- readonly additionalProperties: false;
1515
- readonly description: "Organization contact information and billing address.";
1516
- };
1517
- };
1518
- readonly required: readonly ["contactInfo"];
1298
+ readonly required: readonly ["id", "date_created", "quota", "status"];
1519
1299
  readonly additionalProperties: false;
1520
1300
  };
1521
1301
  export declare const PaymentMethodSchema: {
@@ -1652,22 +1432,28 @@ export declare const TokenUpdateInputSchema: {
1652
1432
  export declare const UsageSchema: {
1653
1433
  readonly type: "object";
1654
1434
  readonly properties: {
1435
+ readonly hour: {
1436
+ readonly type: "string";
1437
+ readonly description: "Hour of the usage";
1438
+ readonly example: "2019-01-01T00:00:00.000Z";
1439
+ };
1655
1440
  readonly cluster_id: {
1656
1441
  readonly type: "string";
1657
1442
  readonly format: "uuid";
1658
1443
  readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1659
1444
  readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1660
1445
  };
1661
- readonly hour: {
1662
- readonly type: "string";
1663
- readonly description: "Hour of the usage";
1664
- readonly example: "2019-01-01T00:00:00.000Z";
1665
- };
1666
1446
  readonly cluster_tier: {
1667
1447
  readonly type: "string";
1668
1448
  readonly description: "Tier of the cluster.";
1669
1449
  readonly example: "pro";
1670
- readonly enum: readonly [""];
1450
+ readonly enum: readonly ["basic", "pro", ""];
1451
+ };
1452
+ readonly product: {
1453
+ readonly type: "string";
1454
+ readonly description: "The product the usage is associated with";
1455
+ readonly example: "cfke_controlplane";
1456
+ readonly enum: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
1671
1457
  };
1672
1458
  readonly node_name: {
1673
1459
  readonly type: "string";
@@ -1701,11 +1487,11 @@ export declare const UsageSchema: {
1701
1487
  readonly enum: readonly [""];
1702
1488
  }];
1703
1489
  };
1704
- readonly volume: {
1490
+ readonly value: {
1705
1491
  readonly anyOf: readonly [{
1706
1492
  readonly type: "number";
1707
1493
  readonly format: "float";
1708
- readonly description: "Volume";
1494
+ readonly description: "Value";
1709
1495
  readonly example: 4;
1710
1496
  }, {
1711
1497
  readonly type: "string";
@@ -1723,14 +1509,8 @@ export declare const UsageSchema: {
1723
1509
  readonly enum: readonly [""];
1724
1510
  }];
1725
1511
  };
1726
- readonly usage_type: {
1727
- readonly type: "string";
1728
- readonly description: "Type of usage.";
1729
- readonly example: "managed-compute";
1730
- readonly enum: readonly ["managed-compute", "control-plane-nodes", "control-plane"];
1731
- };
1732
1512
  };
1733
- readonly required: readonly ["cluster_id", "cluster_tier", "node_name", "sku", "cpu", "price", "volume", "total", "usage_type"];
1513
+ readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1734
1514
  readonly additionalProperties: false;
1735
1515
  };
1736
1516
  export declare const UserCreateInputSchema: {
@@ -1765,7 +1545,7 @@ export declare const UserCreateInputSchema: {
1765
1545
  readonly password: {
1766
1546
  readonly type: "string";
1767
1547
  readonly minLength: 8;
1768
- readonly description: "User password. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.";
1548
+ readonly description: "User password. Must be at least 8 characters long.";
1769
1549
  };
1770
1550
  readonly status: {
1771
1551
  readonly type: "string";
@@ -1830,28 +1610,6 @@ export declare const UserSchema: {
1830
1610
  readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
1831
1611
  readonly example: "2023-11-02T16:08:14.338Z";
1832
1612
  };
1833
- readonly cluster_permissions: {
1834
- readonly type: "array";
1835
- readonly items: {
1836
- readonly type: "object";
1837
- readonly properties: {
1838
- readonly cluster_id: {
1839
- readonly type: "string";
1840
- readonly format: "uuid";
1841
- readonly description: "Unique identifier of the cluster. UUID v4 string in canonical form";
1842
- readonly example: "035ce46d-44d8-4e58-a8a2-b0192d1c27df";
1843
- };
1844
- readonly permissions: {
1845
- readonly type: "string";
1846
- readonly description: "User permissions to access the cluster. Can be `readwrite` or `readonly`.";
1847
- readonly example: "readwrite";
1848
- readonly enum: readonly ["readwrite", "readonly"];
1849
- };
1850
- };
1851
- readonly required: readonly ["cluster_id", "permissions"];
1852
- readonly additionalProperties: false;
1853
- };
1854
- };
1855
1613
  };
1856
1614
  readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
1857
1615
  readonly additionalProperties: false;