@cloudfleet/sdk 0.0.1-ca1b7df → 0.0.1-cdcf1a9

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: {
@@ -416,327 +687,57 @@ export declare const FleetUpdateInputSchema: {
416
687
  readonly type: "boolean";
417
688
  readonly default: true;
418
689
  };
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;
721
- };
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";
690
+ readonly project: {
691
+ readonly type: "string";
692
+ readonly description: "Project GCP Project id to deploy instances into";
693
+ };
694
+ };
695
+ readonly required: readonly ["project"];
696
+ readonly additionalProperties: false;
726
697
  };
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;
698
+ readonly hetzner: {
699
+ readonly oneOf: readonly [{
700
+ readonly type: "object";
701
+ readonly properties: {
702
+ readonly enabled: {
703
+ readonly type: "boolean";
704
+ readonly default: true;
705
+ };
706
+ readonly apiKey: {
707
+ readonly type: "string";
708
+ };
709
+ };
710
+ readonly additionalProperties: false;
711
+ }, {
712
+ readonly type: "object";
713
+ readonly properties: {
714
+ readonly apiKey: {
715
+ readonly type: "string";
716
+ };
717
+ readonly enabled: {
718
+ readonly type: "boolean";
719
+ readonly default: true;
720
+ };
721
+ };
722
+ readonly additionalProperties: false;
723
+ }];
732
724
  };
733
- readonly available: {
734
- readonly type: "boolean";
735
- readonly description: "Whether this instance type is available.";
736
- readonly example: true;
725
+ readonly aws: {
726
+ readonly type: "object";
727
+ readonly properties: {
728
+ readonly enabled: {
729
+ readonly type: "boolean";
730
+ readonly default: true;
731
+ };
732
+ readonly controllerRoleArn: {
733
+ readonly type: "string";
734
+ readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
735
+ };
736
+ };
737
+ readonly required: readonly ["controllerRoleArn"];
738
+ readonly additionalProperties: false;
737
739
  };
738
740
  };
739
- readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
740
741
  readonly additionalProperties: false;
741
742
  };
742
743
  export declare const InviteSchema: {
@@ -1118,51 +1119,91 @@ export declare const InvoiceSchema: {
1118
1119
  };
1119
1120
  readonly additionalProperties: false;
1120
1121
  };
1121
- export declare const OrganizationContactInfoSchema: {
1122
+ export declare const MarketplaceListingSchema: {
1122
1123
  readonly type: "object";
1123
1124
  readonly properties: {
1124
- readonly address1: {
1125
+ readonly id: {
1125
1126
  readonly type: "string";
1126
- readonly nullable: true;
1127
- readonly description: "Street address, P.O. box, c/o";
1128
- readonly example: "123 Main St.";
1127
+ readonly maxLength: 63;
1128
+ readonly minLength: 1;
1129
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
1130
+ readonly description: "Id of the chart listing";
1131
+ readonly example: "portworx-enterprise-disaster-recovery-baremetal";
1129
1132
  };
1130
- readonly address2: {
1133
+ readonly name: {
1131
1134
  readonly type: "string";
1132
- readonly nullable: true;
1133
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1134
- readonly example: "Suite 100";
1135
+ readonly description: "Name of the chart listing";
1136
+ readonly example: "Portworx Enterprise + Disaster Recovery - Baremetal";
1135
1137
  };
1136
- readonly postalCode: {
1138
+ readonly developer: {
1137
1139
  readonly type: "string";
1138
- readonly nullable: true;
1139
- readonly description: "Postal code as a string.";
1140
- readonly example: "94105";
1140
+ readonly description: "Author of the chart listing";
1141
+ readonly example: "Portworx";
1141
1142
  };
1142
- readonly city: {
1143
+ readonly description: {
1143
1144
  readonly type: "string";
1144
- readonly nullable: true;
1145
- readonly description: "City or town name.";
1146
- readonly example: "San Francisco";
1145
+ readonly description: "Short description of the chart listing";
1146
+ readonly example: "Run Kubernetes with unmatched scalability, availability, and self-service access to any storage";
1147
1147
  };
1148
- readonly state: {
1148
+ readonly logoUrl: {
1149
1149
  readonly type: "string";
1150
- readonly nullable: true;
1151
- readonly description: "State, province, or region name.";
1152
- readonly example: "CA";
1150
+ readonly description: "Logo of the chart listing";
1151
+ readonly example: "https://portworx.com/wp-content/themes/portworx/assets/images/header/portworx-logo.png";
1153
1152
  };
1154
- readonly country: {
1153
+ readonly longDescription: {
1155
1154
  readonly type: "string";
1156
- readonly nullable: true;
1157
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1158
- readonly example: "US";
1155
+ readonly description: "Long description of the chart listing";
1156
+ readonly example: "Portworx-Enterprise is the complete multi-cloud ready Kubernetes storage platform for running mission-critical apps in production....";
1159
1157
  };
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";
1158
+ readonly categories: {
1159
+ readonly type: "array";
1160
+ readonly items: {
1161
+ readonly type: "string";
1162
+ readonly example: "AI & Machine Learning";
1163
+ };
1164
+ readonly description: "Tags of the chart";
1165
+ };
1166
+ readonly version_channels: {
1167
+ readonly type: "array";
1168
+ readonly items: {
1169
+ readonly type: "string";
1170
+ 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-]+)*))?$";
1171
+ readonly description: "Version of the chart.";
1172
+ readonly example: "2.x.x-cfke.x";
1173
+ };
1174
+ };
1175
+ readonly value_schemas: {
1176
+ readonly type: "array";
1177
+ readonly items: {
1178
+ readonly type: "object";
1179
+ readonly properties: {
1180
+ readonly version: {
1181
+ readonly type: "string";
1182
+ 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-]+)*))?$";
1183
+ readonly description: "Version of the chart.";
1184
+ readonly example: "2.1.1-cfke.123";
1185
+ };
1186
+ readonly schema: {
1187
+ readonly type: "string";
1188
+ readonly description: "Schema of the chart values. JSON Schema as string";
1189
+ };
1190
+ readonly placeholder: {
1191
+ readonly type: "string";
1192
+ readonly description: "Schema of the chart values";
1193
+ readonly example: "foo: 1\nbar: example";
1194
+ };
1195
+ };
1196
+ readonly required: readonly ["version", "schema", "placeholder"];
1197
+ readonly additionalProperties: false;
1198
+ };
1165
1199
  };
1200
+ };
1201
+ readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription", "categories", "version_channels", "value_schemas"];
1202
+ readonly additionalProperties: false;
1203
+ };
1204
+ export declare const OrganizationCreateInputSchema: {
1205
+ readonly type: "object";
1206
+ readonly properties: {
1166
1207
  readonly email: {
1167
1208
  readonly type: "string";
1168
1209
  readonly format: "email";
@@ -1179,14 +1220,7 @@ export declare const OrganizationContactInfoSchema: {
1179
1220
  readonly description: "Last name of the billing contact person.";
1180
1221
  readonly example: "Doe";
1181
1222
  };
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: {
1223
+ readonly company_name: {
1190
1224
  readonly type: "string";
1191
1225
  readonly maxLength: 120;
1192
1226
  readonly minLength: 2;
@@ -1194,150 +1228,31 @@ export declare const OrganizationCreateInputSchema: {
1194
1228
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1195
1229
  readonly example: "ACME Corp.";
1196
1230
  };
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
1231
  readonly password: {
1257
1232
  readonly type: "string";
1258
1233
  readonly minLength: 8;
1259
1234
  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
1235
  };
1261
1236
  };
1262
- readonly required: readonly ["name", "contactInfo", "password"];
1237
+ readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1263
1238
  readonly additionalProperties: false;
1264
1239
  };
1265
1240
  export declare const OrganizationSchema: {
1266
1241
  readonly type: "object";
1267
1242
  readonly properties: {
1243
+ readonly id: {
1244
+ readonly type: "string";
1245
+ readonly format: "uuid";
1246
+ readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1247
+ readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1248
+ };
1268
1249
  readonly name: {
1269
1250
  readonly type: "string";
1270
1251
  readonly maxLength: 120;
1271
1252
  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
1253
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1274
1254
  readonly example: "ACME Corp.";
1275
1255
  };
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
1256
  readonly date_created: {
1342
1257
  readonly type: "string";
1343
1258
  readonly format: "date-time";
@@ -1426,96 +1341,13 @@ export declare const OrganizationSchema: {
1426
1341
  readonly additionalProperties: false;
1427
1342
  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
1343
  };
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
1344
  readonly status: {
1439
1345
  readonly type: "string";
1440
1346
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1441
1347
  readonly enum: readonly ["active", "closed", "suspended"];
1442
1348
  };
1443
1349
  };
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"];
1350
+ readonly required: readonly ["id", "date_created", "quota", "status"];
1519
1351
  readonly additionalProperties: false;
1520
1352
  };
1521
1353
  export declare const PaymentMethodSchema: {
@@ -1652,22 +1484,28 @@ export declare const TokenUpdateInputSchema: {
1652
1484
  export declare const UsageSchema: {
1653
1485
  readonly type: "object";
1654
1486
  readonly properties: {
1487
+ readonly hour: {
1488
+ readonly type: "string";
1489
+ readonly description: "Hour of the usage";
1490
+ readonly example: "2019-01-01T00:00:00.000Z";
1491
+ };
1655
1492
  readonly cluster_id: {
1656
1493
  readonly type: "string";
1657
1494
  readonly format: "uuid";
1658
1495
  readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1659
1496
  readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1660
1497
  };
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
1498
  readonly cluster_tier: {
1667
1499
  readonly type: "string";
1668
1500
  readonly description: "Tier of the cluster.";
1669
1501
  readonly example: "pro";
1670
- readonly enum: readonly [""];
1502
+ readonly enum: readonly ["basic", "pro", ""];
1503
+ };
1504
+ readonly product: {
1505
+ readonly type: "string";
1506
+ readonly description: "The product the usage is associated with";
1507
+ readonly example: "cfke_controlplane";
1508
+ readonly enum: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
1671
1509
  };
1672
1510
  readonly node_name: {
1673
1511
  readonly type: "string";
@@ -1701,11 +1539,11 @@ export declare const UsageSchema: {
1701
1539
  readonly enum: readonly [""];
1702
1540
  }];
1703
1541
  };
1704
- readonly volume: {
1542
+ readonly value: {
1705
1543
  readonly anyOf: readonly [{
1706
1544
  readonly type: "number";
1707
1545
  readonly format: "float";
1708
- readonly description: "Volume";
1546
+ readonly description: "Value";
1709
1547
  readonly example: 4;
1710
1548
  }, {
1711
1549
  readonly type: "string";
@@ -1723,14 +1561,8 @@ export declare const UsageSchema: {
1723
1561
  readonly enum: readonly [""];
1724
1562
  }];
1725
1563
  };
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
1564
  };
1733
- readonly required: readonly ["cluster_id", "cluster_tier", "node_name", "sku", "cpu", "price", "volume", "total", "usage_type"];
1565
+ readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1734
1566
  readonly additionalProperties: false;
1735
1567
  };
1736
1568
  export declare const UserCreateInputSchema: {
@@ -1765,7 +1597,7 @@ export declare const UserCreateInputSchema: {
1765
1597
  readonly password: {
1766
1598
  readonly type: "string";
1767
1599
  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.";
1600
+ readonly description: "User password. Must be at least 8 characters long.";
1769
1601
  };
1770
1602
  readonly status: {
1771
1603
  readonly type: "string";
@@ -1830,28 +1662,6 @@ export declare const UserSchema: {
1830
1662
  readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
1831
1663
  readonly example: "2023-11-02T16:08:14.338Z";
1832
1664
  };
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
1665
  };
1856
1666
  readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
1857
1667
  readonly additionalProperties: false;