@cloudfleet/sdk 0.0.1-69c7f12 → 0.0.1-75259b5

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,261 @@
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
+ };
71
+ readonly required: readonly ["email", "first_name", "last_name"];
72
+ readonly additionalProperties: false;
73
+ };
74
+ export declare const BillingCreditsSchema: {
75
+ readonly type: "object";
76
+ readonly properties: {
77
+ readonly id: {
78
+ readonly type: "string";
79
+ readonly description: "Generated unique identifier of the promotional code.";
80
+ readonly example: "7kUZnH7nnKUFfvc4NK2KQF";
81
+ };
82
+ readonly date_created: {
83
+ readonly type: "string";
84
+ readonly format: "date-time";
85
+ readonly description: "Date of the credit application. ISO 8601 date string in the UTC timezone.";
86
+ readonly example: "2023-12-20T13:53:32.000Z";
87
+ };
88
+ readonly code: {
89
+ readonly type: "string";
90
+ readonly description: "Promotional code used by the customer.";
91
+ readonly example: "VQ4SCMB";
92
+ };
93
+ readonly description: {
94
+ readonly type: "string";
95
+ readonly description: "Description of the promotional code.";
96
+ readonly example: "10% off on all products";
97
+ };
98
+ readonly products: {
99
+ readonly type: "array";
100
+ readonly items: {
101
+ readonly type: "string";
102
+ };
103
+ readonly description: "List of product SKUs that the promotional code can be used on.";
104
+ readonly example: readonly ["SKU123", "SKU456"];
105
+ };
106
+ readonly type: {
107
+ readonly type: "string";
108
+ readonly description: "Type of the promotional code.";
109
+ readonly example: "credit";
110
+ readonly enum: readonly ["credit", "discount"];
111
+ };
112
+ readonly value: {
113
+ readonly type: "number";
114
+ readonly format: "float";
115
+ readonly description: "Value of the promotional code.";
116
+ readonly example: 10;
117
+ };
118
+ readonly billing_period: {
119
+ readonly type: "string";
120
+ readonly format: "date-time";
121
+ readonly description: "Date of the billing cycle. An ISO 8601 date string in the UTC timezone.";
122
+ readonly example: "2023-12-20T13:53:32.000Z";
123
+ };
124
+ readonly value_remaining: {
125
+ readonly type: "number";
126
+ readonly format: "float";
127
+ readonly description: "Value of the promotional code.";
128
+ readonly example: 10;
129
+ };
130
+ };
131
+ readonly required: readonly ["date_created", "code", "type", "value", "billing_period"];
132
+ readonly additionalProperties: false;
133
+ };
134
+ export declare const ChartCreateInputSchema: {
135
+ readonly type: "object";
136
+ readonly properties: {
137
+ readonly values: {
138
+ readonly type: "string";
139
+ readonly description: "Values to be used in the chart.";
140
+ };
141
+ readonly version_channel: {
142
+ readonly type: "string";
143
+ readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
144
+ readonly description: "Version of the chart.";
145
+ readonly example: "2.x.x-cfke.x";
146
+ };
147
+ readonly name: {
148
+ readonly type: "string";
149
+ readonly maxLength: 63;
150
+ readonly minLength: 1;
151
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
152
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
153
+ readonly example: "postgresql-0";
154
+ };
155
+ readonly namespace: {
156
+ readonly type: "string";
157
+ readonly maxLength: 63;
158
+ readonly minLength: 1;
159
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
160
+ readonly description: "Namespace of the chart deployment";
161
+ readonly example: "default";
162
+ };
163
+ readonly chart: {
164
+ readonly type: "string";
165
+ readonly maxLength: 63;
166
+ readonly minLength: 1;
167
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
168
+ readonly description: "Name of the chart listing";
169
+ readonly example: "postgresql";
170
+ };
171
+ };
172
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart"];
173
+ readonly additionalProperties: false;
174
+ };
175
+ export declare const ChartSchema: {
176
+ readonly type: "object";
177
+ readonly properties: {
178
+ readonly values: {
179
+ readonly type: "string";
180
+ readonly description: "Values to be used in the chart.";
181
+ };
182
+ readonly version_channel: {
183
+ readonly type: "string";
184
+ readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
185
+ readonly description: "Version of the chart.";
186
+ readonly example: "2.x.x-cfke.x";
187
+ };
188
+ readonly name: {
189
+ readonly type: "string";
190
+ readonly maxLength: 63;
191
+ readonly minLength: 1;
192
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
193
+ readonly description: "Unique identifier of the chart deployment aka name of the helm release.";
194
+ readonly example: "postgresql-0";
195
+ };
196
+ readonly namespace: {
197
+ readonly type: "string";
198
+ readonly maxLength: 63;
199
+ readonly minLength: 1;
200
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
201
+ readonly description: "Namespace of the chart deployment";
202
+ readonly example: "default";
203
+ };
204
+ readonly chart: {
205
+ readonly type: "string";
206
+ readonly maxLength: 63;
207
+ readonly minLength: 1;
208
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
209
+ readonly description: "Name of the chart listing";
210
+ readonly example: "postgresql";
211
+ };
212
+ readonly status: {
213
+ readonly type: "string";
214
+ readonly description: "Status of the chart deployment.";
215
+ readonly example: "active";
216
+ readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady"];
217
+ };
218
+ readonly version_current: {
219
+ readonly type: "string";
220
+ readonly description: "Current version of the chart deployment.";
221
+ readonly example: "2.1.33-cfke.11";
222
+ };
223
+ readonly created_at: {
224
+ readonly type: "string";
225
+ readonly description: "Creation date and time of the chart deployment.";
226
+ readonly example: "2024-09-12T09:11:27Z";
227
+ };
228
+ readonly updated_at: {
229
+ readonly type: "string";
230
+ readonly description: "Last update date and time of the chart deployment.";
231
+ readonly example: "2024-09-12T09:11:27Z";
232
+ };
233
+ readonly ready: {
234
+ readonly type: "boolean";
235
+ readonly description: "Indicates if the chart deployment is ready to be used.";
236
+ readonly example: true;
237
+ };
238
+ };
239
+ readonly required: readonly ["values", "version_channel", "name", "namespace", "chart", "status", "version_current", "created_at", "updated_at", "ready"];
240
+ readonly additionalProperties: false;
241
+ };
242
+ export declare const ChartUpdateInputSchema: {
243
+ readonly type: "object";
244
+ readonly properties: {
245
+ readonly values: {
246
+ readonly type: "string";
247
+ readonly description: "Values to be used in the chart.";
248
+ };
249
+ readonly version_channel: {
250
+ readonly type: "string";
251
+ readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
252
+ readonly description: "Version of the chart.";
253
+ readonly example: "2.x.x-cfke.x";
254
+ };
255
+ };
256
+ readonly required: readonly ["values", "version_channel"];
257
+ readonly additionalProperties: false;
258
+ };
1
259
  export declare const ClusterCreateInputSchema: {
2
260
  readonly type: "object";
3
261
  readonly properties: {
@@ -424,319 +682,49 @@ export declare const FleetUpdateInputSchema: {
424
682
  readonly required: readonly ["project"];
425
683
  readonly additionalProperties: false;
426
684
  };
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";
726
- };
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;
732
- };
733
- readonly available: {
734
- readonly type: "boolean";
735
- readonly description: "Whether this instance type is available.";
736
- readonly example: true;
685
+ readonly hetzner: {
686
+ readonly oneOf: readonly [{
687
+ readonly type: "object";
688
+ readonly properties: {
689
+ readonly enabled: {
690
+ readonly type: "boolean";
691
+ readonly default: true;
692
+ };
693
+ readonly apiKey: {
694
+ readonly type: "string";
695
+ };
696
+ };
697
+ readonly additionalProperties: false;
698
+ }, {
699
+ readonly type: "object";
700
+ readonly properties: {
701
+ readonly apiKey: {
702
+ readonly type: "string";
703
+ };
704
+ readonly enabled: {
705
+ readonly type: "boolean";
706
+ readonly default: true;
707
+ };
708
+ };
709
+ readonly additionalProperties: false;
710
+ }];
711
+ };
712
+ readonly aws: {
713
+ readonly type: "object";
714
+ readonly properties: {
715
+ readonly enabled: {
716
+ readonly type: "boolean";
717
+ readonly default: true;
718
+ };
719
+ readonly controllerRoleArn: {
720
+ readonly type: "string";
721
+ readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
722
+ };
723
+ };
724
+ readonly required: readonly ["controllerRoleArn"];
725
+ readonly additionalProperties: false;
737
726
  };
738
727
  };
739
- readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
740
728
  readonly additionalProperties: false;
741
729
  };
742
730
  export declare const InviteSchema: {
@@ -1118,51 +1106,57 @@ export declare const InvoiceSchema: {
1118
1106
  };
1119
1107
  readonly additionalProperties: false;
1120
1108
  };
1121
- export declare const OrganizationContactInfoSchema: {
1109
+ export declare const MarketplaceListingSchema: {
1122
1110
  readonly type: "object";
1123
1111
  readonly properties: {
1124
- readonly address1: {
1112
+ readonly id: {
1125
1113
  readonly type: "string";
1126
- readonly nullable: true;
1127
- readonly description: "Street address, P.O. box, c/o";
1128
- readonly example: "123 Main St.";
1114
+ readonly maxLength: 63;
1115
+ readonly minLength: 1;
1116
+ readonly pattern: "^[a-z0-9]([-a-z0-9]*[a-z0-9])?$";
1117
+ readonly description: "Id of the chart listing";
1118
+ readonly example: "portworx-enterprise-disaster-recovery-baremetal";
1129
1119
  };
1130
- readonly address2: {
1120
+ readonly name: {
1131
1121
  readonly type: "string";
1132
- readonly nullable: true;
1133
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1134
- readonly example: "Suite 100";
1122
+ readonly description: "Name of the chart listing";
1123
+ readonly example: "Portworx Enterprise + Disaster Recovery - Baremetal";
1135
1124
  };
1136
- readonly postalCode: {
1125
+ readonly developer: {
1137
1126
  readonly type: "string";
1138
- readonly nullable: true;
1139
- readonly description: "Postal code as a string.";
1140
- readonly example: "94105";
1127
+ readonly description: "Author of the chart listing";
1128
+ readonly example: "Portworx";
1141
1129
  };
1142
- readonly city: {
1130
+ readonly description: {
1143
1131
  readonly type: "string";
1144
- readonly nullable: true;
1145
- readonly description: "City or town name.";
1146
- readonly example: "San Francisco";
1132
+ readonly description: "Short description of the chart listing";
1133
+ readonly example: "Run Kubernetes with unmatched scalability, availability, and self-service access to any storage";
1147
1134
  };
1148
- readonly state: {
1135
+ readonly logoUrl: {
1149
1136
  readonly type: "string";
1150
- readonly nullable: true;
1151
- readonly description: "State, province, or region name.";
1152
- readonly example: "CA";
1137
+ readonly description: "Logo of the chart listing";
1138
+ readonly example: "https://portworx.com/wp-content/themes/portworx/assets/images/header/portworx-logo.png";
1153
1139
  };
1154
- readonly country: {
1140
+ readonly longDescription: {
1155
1141
  readonly type: "string";
1156
- readonly nullable: true;
1157
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1158
- readonly example: "US";
1142
+ readonly description: "Long description of the chart listing";
1143
+ readonly example: "Portworx-Enterprise is the complete multi-cloud ready Kubernetes storage platform for running mission-critical apps in production....";
1159
1144
  };
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";
1145
+ readonly categories: {
1146
+ readonly type: "array";
1147
+ readonly items: {
1148
+ readonly type: "string";
1149
+ readonly example: "AI & Machine Learning";
1150
+ };
1151
+ readonly description: "Tags of the chart";
1165
1152
  };
1153
+ };
1154
+ readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription"];
1155
+ readonly additionalProperties: false;
1156
+ };
1157
+ export declare const OrganizationCreateInputSchema: {
1158
+ readonly type: "object";
1159
+ readonly properties: {
1166
1160
  readonly email: {
1167
1161
  readonly type: "string";
1168
1162
  readonly format: "email";
@@ -1179,14 +1173,7 @@ export declare const OrganizationContactInfoSchema: {
1179
1173
  readonly description: "Last name of the billing contact person.";
1180
1174
  readonly example: "Doe";
1181
1175
  };
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: {
1176
+ readonly company_name: {
1190
1177
  readonly type: "string";
1191
1178
  readonly maxLength: 120;
1192
1179
  readonly minLength: 2;
@@ -1194,150 +1181,31 @@ export declare const OrganizationCreateInputSchema: {
1194
1181
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1195
1182
  readonly example: "ACME Corp.";
1196
1183
  };
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
1184
  readonly password: {
1257
1185
  readonly type: "string";
1258
1186
  readonly minLength: 8;
1259
1187
  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
1188
  };
1261
1189
  };
1262
- readonly required: readonly ["name", "contactInfo", "password"];
1190
+ readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1263
1191
  readonly additionalProperties: false;
1264
1192
  };
1265
1193
  export declare const OrganizationSchema: {
1266
1194
  readonly type: "object";
1267
1195
  readonly properties: {
1196
+ readonly id: {
1197
+ readonly type: "string";
1198
+ readonly format: "uuid";
1199
+ readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1200
+ readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1201
+ };
1268
1202
  readonly name: {
1269
1203
  readonly type: "string";
1270
1204
  readonly maxLength: 120;
1271
1205
  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
1206
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1274
1207
  readonly example: "ACME Corp.";
1275
1208
  };
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
1209
  readonly date_created: {
1342
1210
  readonly type: "string";
1343
1211
  readonly format: "date-time";
@@ -1426,96 +1294,13 @@ export declare const OrganizationSchema: {
1426
1294
  readonly additionalProperties: false;
1427
1295
  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
1296
  };
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
1297
  readonly status: {
1439
1298
  readonly type: "string";
1440
1299
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1441
1300
  readonly enum: readonly ["active", "closed", "suspended"];
1442
1301
  };
1443
1302
  };
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"];
1303
+ readonly required: readonly ["id", "date_created", "quota", "status"];
1519
1304
  readonly additionalProperties: false;
1520
1305
  };
1521
1306
  export declare const PaymentMethodSchema: {
@@ -1652,29 +1437,85 @@ export declare const TokenUpdateInputSchema: {
1652
1437
  export declare const UsageSchema: {
1653
1438
  readonly type: "object";
1654
1439
  readonly properties: {
1655
- readonly id: {
1440
+ readonly hour: {
1656
1441
  readonly type: "string";
1657
- readonly format: "uuid";
1658
- readonly description: "Unique identifier of the Usage object, equal to subscription id of the task . UUID v4 string in canonical form";
1659
- readonly example: "8897e84c-2ba1-42fa-9d35-964c80a4ff0f";
1442
+ readonly description: "Hour of the usage";
1443
+ readonly example: "2019-01-01T00:00:00.000Z";
1660
1444
  };
1661
- readonly task_id: {
1445
+ readonly cluster_id: {
1662
1446
  readonly type: "string";
1663
1447
  readonly format: "uuid";
1664
- readonly description: "Unique identifier of the project. UUID v4 string in canonical form";
1665
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
1448
+ readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1449
+ readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1450
+ };
1451
+ readonly cluster_tier: {
1452
+ readonly type: "string";
1453
+ readonly description: "Tier of the cluster.";
1454
+ readonly example: "pro";
1455
+ readonly enum: readonly [""];
1666
1456
  };
1667
- readonly unit: {
1457
+ readonly product: {
1668
1458
  readonly type: "string";
1669
- readonly description: "Unit of measurement. E.g. GiB, seconds, etc";
1670
- readonly example: "second";
1459
+ readonly description: "The product the usage is associated with";
1460
+ readonly example: "cfke_infra_compute";
1461
+ readonly enum: readonly ["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"];
1671
1462
  };
1672
- readonly amount: {
1673
- readonly type: "number";
1674
- readonly format: "float";
1463
+ readonly node_name: {
1464
+ readonly type: "string";
1465
+ readonly description: "Name of the Kubernetes node";
1466
+ readonly example: "flexible-moth-956037384";
1467
+ };
1468
+ readonly sku: {
1469
+ readonly type: "string";
1470
+ readonly description: "SKU of the Kubernetes node";
1471
+ readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
1472
+ };
1473
+ readonly cpu: {
1474
+ readonly anyOf: readonly [{
1475
+ readonly type: "number";
1476
+ readonly format: "float";
1477
+ readonly description: "CPU core count of the node";
1478
+ readonly example: 4;
1479
+ }, {
1480
+ readonly type: "string";
1481
+ readonly enum: readonly [""];
1482
+ }];
1483
+ };
1484
+ readonly price: {
1485
+ readonly anyOf: readonly [{
1486
+ readonly type: "number";
1487
+ readonly format: "float";
1488
+ readonly description: "Price";
1489
+ readonly example: 4;
1490
+ }, {
1491
+ readonly type: "string";
1492
+ readonly enum: readonly [""];
1493
+ }];
1494
+ };
1495
+ readonly value: {
1496
+ readonly anyOf: readonly [{
1497
+ readonly type: "number";
1498
+ readonly format: "float";
1499
+ readonly description: "Value";
1500
+ readonly example: 4;
1501
+ }, {
1502
+ readonly type: "string";
1503
+ readonly enum: readonly [""];
1504
+ }];
1505
+ };
1506
+ readonly total: {
1507
+ readonly anyOf: readonly [{
1508
+ readonly type: "number";
1509
+ readonly format: "float";
1510
+ readonly description: "Total";
1511
+ readonly example: 4;
1512
+ }, {
1513
+ readonly type: "string";
1514
+ readonly enum: readonly [""];
1515
+ }];
1675
1516
  };
1676
1517
  };
1677
- readonly required: readonly ["id", "task_id", "unit", "amount"];
1518
+ readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1678
1519
  readonly additionalProperties: false;
1679
1520
  };
1680
1521
  export declare const UserCreateInputSchema: {
@@ -1709,7 +1550,7 @@ export declare const UserCreateInputSchema: {
1709
1550
  readonly password: {
1710
1551
  readonly type: "string";
1711
1552
  readonly minLength: 8;
1712
- 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.";
1553
+ readonly description: "User password. Must be at least 8 characters long.";
1713
1554
  };
1714
1555
  readonly status: {
1715
1556
  readonly type: "string";
@@ -1774,28 +1615,6 @@ export declare const UserSchema: {
1774
1615
  readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
1775
1616
  readonly example: "2023-11-02T16:08:14.338Z";
1776
1617
  };
1777
- readonly cluster_permissions: {
1778
- readonly type: "array";
1779
- readonly items: {
1780
- readonly type: "object";
1781
- readonly properties: {
1782
- readonly cluster_id: {
1783
- readonly type: "string";
1784
- readonly format: "uuid";
1785
- readonly description: "Unique identifier of the cluster. UUID v4 string in canonical form";
1786
- readonly example: "035ce46d-44d8-4e58-a8a2-b0192d1c27df";
1787
- };
1788
- readonly permissions: {
1789
- readonly type: "string";
1790
- readonly description: "User permissions to access the cluster. Can be `readwrite` or `readonly`.";
1791
- readonly example: "readwrite";
1792
- readonly enum: readonly ["readwrite", "readonly"];
1793
- };
1794
- };
1795
- readonly required: readonly ["cluster_id", "permissions"];
1796
- readonly additionalProperties: false;
1797
- };
1798
- };
1799
1618
  };
1800
1619
  readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
1801
1620
  readonly additionalProperties: false;