@cloudfleet/sdk 0.0.1-2564786 → 0.0.1-3818918

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", "Progressing"];
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: {
@@ -80,8 +338,31 @@ export declare const ClusterJoinInformationSchema: {
80
338
  readonly additionalProperties: false;
81
339
  readonly description: "Versions of the different components of the cluster.";
82
340
  };
341
+ readonly third_party_api_access_config: {
342
+ readonly type: "object";
343
+ readonly properties: {
344
+ readonly metadata_url: {
345
+ readonly type: "string";
346
+ readonly description: "Kubernetes metadata server.";
347
+ readonly example: "https://10.31.64.4";
348
+ };
349
+ readonly aws_role_arn: {
350
+ readonly type: "string";
351
+ readonly description: "AWS Role ARN.";
352
+ readonly example: "arn:aws:iam::891376988828:role/0371f8fd-e164-48e1-b9e7-c3bdc3b4f403";
353
+ };
354
+ readonly gcp_workload_identity_provider: {
355
+ readonly type: "string";
356
+ readonly description: "GCP Workload Identity provider.";
357
+ readonly example: "//iam.googleapis.com/projects/89014267864/locations/global/workloadIdentityPools/cfke/providers/oidc";
358
+ };
359
+ };
360
+ readonly required: readonly ["metadata_url", "aws_role_arn", "gcp_workload_identity_provider"];
361
+ readonly additionalProperties: false;
362
+ readonly description: "OIDC Information for hosts to access to third party API's.";
363
+ };
83
364
  };
84
- readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions"];
365
+ readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
85
366
  readonly additionalProperties: false;
86
367
  };
87
368
  export declare const ClusterSchema: {
@@ -419,301 +700,31 @@ export declare const FleetUpdateInputSchema: {
419
700
  readonly properties: {
420
701
  readonly apiKey: {
421
702
  readonly type: "string";
422
- };
423
- readonly enabled: {
424
- readonly type: "boolean";
425
- readonly default: true;
426
- };
427
- };
428
- readonly additionalProperties: false;
429
- }];
430
- };
431
- readonly aws: {
432
- readonly type: "object";
433
- readonly properties: {
434
- readonly enabled: {
435
- readonly type: "boolean";
436
- readonly default: true;
437
- };
438
- readonly controllerRoleArn: {
439
- readonly type: "string";
440
- readonly description: "ControllerRoleArn is the AWS IAM role that Karpenter uses to manage resources.";
441
- };
442
- };
443
- readonly required: readonly ["controllerRoleArn"];
444
- readonly additionalProperties: false;
445
- };
446
- };
447
- readonly additionalProperties: false;
448
- };
449
- export declare const InfrastructureFilterSchema: {
450
- readonly type: "object";
451
- readonly properties: {
452
- readonly version: {
453
- readonly type: "integer";
454
- readonly description: "Version of the infrastructure filter definition. Currently only version 1 is supported.";
455
- readonly default: 1;
456
- readonly example: 1;
457
- readonly enum: readonly [1];
458
- };
459
- readonly provider: {
460
- readonly type: "array";
461
- readonly items: {
462
- readonly type: "string";
463
- };
464
- 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/)";
465
- readonly example: "AWS";
466
- };
467
- readonly region: {
468
- readonly type: "array";
469
- readonly items: {
470
- readonly type: "string";
471
- };
472
- 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/)";
473
- readonly example: "northamerica";
474
- };
475
- readonly sub_region: {
476
- readonly type: "array";
477
- readonly items: {
478
- readonly type: "string";
479
- };
480
- 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/)";
481
- readonly example: "west";
482
- };
483
- readonly csp_region: {
484
- readonly type: "array";
485
- readonly items: {
486
- readonly type: "string";
487
- };
488
- readonly description: "Limits selection of cloud regions to this list of canonical provider regions";
489
- readonly example: "eu-west-1";
490
- };
491
- readonly instance_type: {
492
- readonly type: "array";
493
- readonly items: {
494
- readonly type: "string";
495
- };
496
- readonly description: "Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider";
497
- readonly example: "p4d.24xlarge";
498
- };
499
- readonly accelerator_name: {
500
- readonly type: "array";
501
- readonly items: {
502
- readonly type: "string";
503
- };
504
- 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";
505
- readonly example: "A100";
506
- };
507
- readonly accelerator_manufacturer: {
508
- readonly type: "array";
509
- readonly items: {
510
- readonly type: "string";
511
- };
512
- readonly description: "List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
513
- readonly example: "NVIDIA";
514
- };
515
- readonly accelerator_count_min: {
516
- readonly type: "integer";
517
- readonly minimum: 0;
518
- 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.";
519
- readonly example: 1;
520
- };
521
- readonly accelerator_count_max: {
522
- readonly type: "integer";
523
- readonly minimum: 0;
524
- 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.";
525
- readonly example: 8;
526
- };
527
- readonly accelerator_memory_min: {
528
- readonly type: "number";
529
- readonly format: "float";
530
- 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";
531
- readonly example: 40;
532
- };
533
- readonly accelerator_memory_max: {
534
- readonly type: "number";
535
- readonly format: "float";
536
- 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";
537
- readonly example: 80;
538
- };
539
- readonly memory_min: {
540
- readonly type: "integer";
541
- readonly minimum: 0;
542
- readonly description: "Minimum amount of RAM in gibibytes (GiB)";
543
- readonly example: 32;
544
- };
545
- readonly memory_max: {
546
- readonly type: "integer";
547
- readonly minimum: 0;
548
- readonly description: "Maximum amount of RAM in gibibytes (GiB)";
549
- readonly example: 64;
550
- };
551
- readonly vcpu_min: {
552
- readonly type: "integer";
553
- readonly minimum: 1;
554
- 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.";
555
- readonly example: 32;
556
- };
557
- readonly vcpu_max: {
558
- readonly type: "integer";
559
- readonly minimum: 1;
560
- 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.";
561
- readonly example: 128;
562
- };
563
- readonly storage_total_min: {
564
- readonly type: "number";
565
- readonly format: "float";
566
- readonly minimum: 10;
567
- readonly description: "Minimum total storage in GiB (attached and local)";
568
- readonly example: 128;
569
- };
570
- readonly storage_total_max: {
571
- readonly type: "number";
572
- readonly format: "float";
573
- readonly minimum: 10;
574
- readonly description: "Maximum total storage in GiB (attached and local)";
575
- readonly example: 256;
576
- };
577
- readonly storage_local_min: {
578
- readonly type: "number";
579
- readonly format: "float";
580
- readonly description: "Minimum volume of directly attached, block-device local storage in gibibytes (GiB)";
581
- readonly example: 24;
582
- };
583
- readonly storage_local_max: {
584
- readonly type: "number";
585
- readonly format: "float";
586
- readonly description: "Maximum volume of directly attached, block-device local storage in gibibytes (GiB)";
587
- readonly example: 128;
588
- };
589
- readonly price_min: {
590
- readonly type: "number";
591
- readonly format: "float";
592
- 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.";
593
- readonly example: 10;
594
- };
595
- readonly price_max: {
596
- readonly type: "number";
597
- readonly format: "float";
598
- 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.";
599
- readonly example: 50;
600
- };
601
- };
602
- readonly additionalProperties: false;
603
- };
604
- export declare const InfrastructureInstanceSchema: {
605
- readonly type: "object";
606
- readonly properties: {
607
- readonly sku: {
608
- readonly type: "string";
609
- readonly description: "Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.";
610
- readonly example: "AWS-EU-WEST-1C-P4D.24XLARGE";
611
- };
612
- readonly provider: {
613
- readonly type: "string";
614
- readonly description: "Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)";
615
- readonly example: "AWS";
616
- };
617
- readonly region: {
618
- readonly type: "string";
619
- 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/)";
620
- readonly example: "europe";
621
- };
622
- readonly sub_region: {
623
- readonly type: "string";
624
- 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/)";
625
- readonly example: "west";
626
- };
627
- readonly csp_region: {
628
- readonly type: "string";
629
- readonly description: "Region as defined by the cloud service provider";
630
- readonly example: "eu-west-1";
631
- };
632
- readonly csp_zone: {
633
- readonly type: "string";
634
- readonly description: "Availability zone as defined by the cloud service provider";
635
- readonly example: "eu-west-1a";
636
- };
637
- readonly instance_type: {
638
- readonly type: "string";
639
- readonly description: "Instance / VM type as defined by the cloud service provider";
640
- readonly example: "p4d.24xlarge";
641
- };
642
- readonly architecture: {
643
- readonly type: "string";
644
- readonly description: "Instance CPU architecture";
645
- readonly example: "amd64";
646
- };
647
- readonly os: {
648
- readonly type: "string";
649
- readonly description: "Instance operating system";
650
- readonly example: "linux";
651
- };
652
- readonly vcpu: {
653
- readonly type: "number";
654
- readonly format: "float";
655
- readonly minimum: 1;
656
- 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.";
657
- readonly example: 96;
658
- };
659
- readonly memory: {
660
- readonly type: "number";
661
- readonly format: "float";
662
- readonly minimum: 1;
663
- readonly description: "Total amount of RAM in gibibytes (GiB)";
664
- readonly example: 1152;
665
- };
666
- readonly local_storage: {
667
- readonly type: "number";
668
- readonly format: "float";
669
- readonly description: "Volume of directly attached, block-device local storage in gibibytes (GiB)";
670
- readonly example: 8000;
671
- };
672
- readonly accelerator_name: {
673
- readonly type: "string";
674
- 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";
675
- readonly example: "A100";
676
- };
677
- readonly accelerator_manufacturer: {
678
- readonly type: "string";
679
- readonly description: "Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer";
680
- readonly example: "NVIDIA";
681
- };
682
- readonly accelerator_count: {
683
- readonly type: "integer";
684
- 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.";
685
- readonly example: 8;
686
- };
687
- readonly accelerator_memory: {
688
- readonly type: "number";
689
- readonly format: "float";
690
- 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";
691
- readonly example: 40;
692
- };
693
- readonly pods_capacity: {
694
- readonly type: "number";
695
- readonly format: "float";
696
- readonly description: "Maximum number of pods that can be run on this instance type.";
697
- readonly example: 110;
698
- };
699
- readonly capacity_type: {
700
- readonly type: "string";
701
- readonly description: "Capacity type of the instance. E.g. `on-demand`, `spot`.";
702
- readonly example: "on-demand";
703
- };
704
- readonly price: {
705
- readonly type: "number";
706
- readonly format: "float";
707
- readonly description: "Price of running the inctance per hour in USD as defined by the cloud service provider";
708
- readonly example: 35.39655;
703
+ };
704
+ readonly enabled: {
705
+ readonly type: "boolean";
706
+ readonly default: true;
707
+ };
708
+ };
709
+ readonly additionalProperties: false;
710
+ }];
709
711
  };
710
- readonly available: {
711
- readonly type: "boolean";
712
- readonly description: "Whether this instance type is available.";
713
- readonly example: true;
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;
714
726
  };
715
727
  };
716
- readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
717
728
  readonly additionalProperties: false;
718
729
  };
719
730
  export declare const InviteSchema: {
@@ -1095,51 +1106,91 @@ export declare const InvoiceSchema: {
1095
1106
  };
1096
1107
  readonly additionalProperties: false;
1097
1108
  };
1098
- export declare const OrganizationContactInfoSchema: {
1109
+ export declare const MarketplaceListingSchema: {
1099
1110
  readonly type: "object";
1100
1111
  readonly properties: {
1101
- readonly address1: {
1112
+ readonly id: {
1102
1113
  readonly type: "string";
1103
- readonly nullable: true;
1104
- readonly description: "Street address, P.O. box, c/o";
1105
- 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";
1106
1119
  };
1107
- readonly address2: {
1120
+ readonly name: {
1108
1121
  readonly type: "string";
1109
- readonly nullable: true;
1110
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1111
- readonly example: "Suite 100";
1122
+ readonly description: "Name of the chart listing";
1123
+ readonly example: "Portworx Enterprise + Disaster Recovery - Baremetal";
1112
1124
  };
1113
- readonly postalCode: {
1125
+ readonly developer: {
1114
1126
  readonly type: "string";
1115
- readonly nullable: true;
1116
- readonly description: "Postal code as a string.";
1117
- readonly example: "94105";
1127
+ readonly description: "Author of the chart listing";
1128
+ readonly example: "Portworx";
1118
1129
  };
1119
- readonly city: {
1130
+ readonly description: {
1120
1131
  readonly type: "string";
1121
- readonly nullable: true;
1122
- readonly description: "City or town name.";
1123
- 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";
1124
1134
  };
1125
- readonly state: {
1135
+ readonly logoUrl: {
1126
1136
  readonly type: "string";
1127
- readonly nullable: true;
1128
- readonly description: "State, province, or region name.";
1129
- 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";
1130
1139
  };
1131
- readonly country: {
1140
+ readonly longDescription: {
1132
1141
  readonly type: "string";
1133
- readonly nullable: true;
1134
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1135
- 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....";
1136
1144
  };
1137
- readonly phone: {
1138
- readonly type: "string";
1139
- readonly nullable: true;
1140
- readonly description: "Phone number as a string.";
1141
- 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";
1152
+ };
1153
+ readonly version_channels: {
1154
+ readonly type: "array";
1155
+ readonly items: {
1156
+ readonly type: "string";
1157
+ 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-]+)*))?$";
1158
+ readonly description: "Version of the chart.";
1159
+ readonly example: "2.x.x-cfke.x";
1160
+ };
1161
+ };
1162
+ readonly value_schemas: {
1163
+ readonly type: "array";
1164
+ readonly items: {
1165
+ readonly type: "object";
1166
+ readonly properties: {
1167
+ readonly version: {
1168
+ readonly type: "string";
1169
+ 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-]+)*))?$";
1170
+ readonly description: "Version of the chart.";
1171
+ readonly example: "2.1.1-cfke.123";
1172
+ };
1173
+ readonly schema: {
1174
+ readonly type: "string";
1175
+ readonly description: "Schema of the chart values. JSON Schema as string";
1176
+ };
1177
+ readonly placeholder: {
1178
+ readonly type: "string";
1179
+ readonly description: "Schema of the chart values";
1180
+ readonly example: "foo: 1\nbar: example";
1181
+ };
1182
+ };
1183
+ readonly required: readonly ["version", "schema", "placeholder"];
1184
+ readonly additionalProperties: false;
1185
+ };
1142
1186
  };
1187
+ };
1188
+ readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription", "categories", "version_channels", "value_schemas"];
1189
+ readonly additionalProperties: false;
1190
+ };
1191
+ export declare const OrganizationCreateInputSchema: {
1192
+ readonly type: "object";
1193
+ readonly properties: {
1143
1194
  readonly email: {
1144
1195
  readonly type: "string";
1145
1196
  readonly format: "email";
@@ -1156,14 +1207,7 @@ export declare const OrganizationContactInfoSchema: {
1156
1207
  readonly description: "Last name of the billing contact person.";
1157
1208
  readonly example: "Doe";
1158
1209
  };
1159
- };
1160
- readonly required: readonly ["email", "first_name", "last_name"];
1161
- readonly additionalProperties: false;
1162
- };
1163
- export declare const OrganizationCreateInputSchema: {
1164
- readonly type: "object";
1165
- readonly properties: {
1166
- readonly name: {
1210
+ readonly company_name: {
1167
1211
  readonly type: "string";
1168
1212
  readonly maxLength: 120;
1169
1213
  readonly minLength: 2;
@@ -1171,150 +1215,31 @@ export declare const OrganizationCreateInputSchema: {
1171
1215
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1172
1216
  readonly example: "ACME Corp.";
1173
1217
  };
1174
- readonly contactInfo: {
1175
- readonly type: "object";
1176
- readonly properties: {
1177
- readonly address1: {
1178
- readonly type: "string";
1179
- readonly description: "Street address, P.O. box, c/o";
1180
- readonly example: "123 Main St.";
1181
- };
1182
- readonly address2: {
1183
- readonly type: "string";
1184
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1185
- readonly example: "Suite 100";
1186
- };
1187
- readonly postalCode: {
1188
- readonly type: "string";
1189
- readonly description: "Postal code as a string.";
1190
- readonly example: "94105";
1191
- };
1192
- readonly city: {
1193
- readonly type: "string";
1194
- readonly description: "City or town name.";
1195
- readonly example: "San Francisco";
1196
- };
1197
- readonly state: {
1198
- readonly type: "string";
1199
- readonly description: "State, province, or region name.";
1200
- readonly example: "CA";
1201
- };
1202
- readonly country: {
1203
- readonly type: "string";
1204
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1205
- readonly example: "US";
1206
- };
1207
- readonly phone: {
1208
- readonly type: "string";
1209
- readonly description: "Phone number as a string.";
1210
- readonly example: "+1 555 555 5555";
1211
- };
1212
- readonly email: {
1213
- readonly type: "string";
1214
- readonly format: "email";
1215
- readonly description: "Email address used for billing as a string.";
1216
- readonly example: "email@example.com";
1217
- };
1218
- readonly first_name: {
1219
- readonly type: "string";
1220
- readonly description: "First name of the billing contact person.";
1221
- readonly example: "John";
1222
- };
1223
- readonly last_name: {
1224
- readonly type: "string";
1225
- readonly description: "Last name of the billing contact person.";
1226
- readonly example: "Doe";
1227
- };
1228
- };
1229
- readonly required: readonly ["email", "first_name", "last_name"];
1230
- readonly additionalProperties: false;
1231
- readonly description: "Organization contact information and billing address.";
1232
- };
1233
1218
  readonly password: {
1234
1219
  readonly type: "string";
1235
1220
  readonly minLength: 8;
1236
1221
  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.";
1237
1222
  };
1238
1223
  };
1239
- readonly required: readonly ["name", "contactInfo", "password"];
1224
+ readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
1240
1225
  readonly additionalProperties: false;
1241
1226
  };
1242
1227
  export declare const OrganizationSchema: {
1243
1228
  readonly type: "object";
1244
1229
  readonly properties: {
1230
+ readonly id: {
1231
+ readonly type: "string";
1232
+ readonly format: "uuid";
1233
+ readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1234
+ readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1235
+ };
1245
1236
  readonly name: {
1246
1237
  readonly type: "string";
1247
1238
  readonly maxLength: 120;
1248
1239
  readonly minLength: 2;
1249
- 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,}$";
1250
1240
  readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1251
1241
  readonly example: "ACME Corp.";
1252
1242
  };
1253
- readonly contactInfo: {
1254
- readonly type: "object";
1255
- readonly properties: {
1256
- readonly address1: {
1257
- readonly type: "string";
1258
- readonly description: "Street address, P.O. box, c/o";
1259
- readonly example: "123 Main St.";
1260
- };
1261
- readonly address2: {
1262
- readonly type: "string";
1263
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1264
- readonly example: "Suite 100";
1265
- };
1266
- readonly postalCode: {
1267
- readonly type: "string";
1268
- readonly description: "Postal code as a string.";
1269
- readonly example: "94105";
1270
- };
1271
- readonly city: {
1272
- readonly type: "string";
1273
- readonly description: "City or town name.";
1274
- readonly example: "San Francisco";
1275
- };
1276
- readonly state: {
1277
- readonly type: "string";
1278
- readonly description: "State, province, or region name.";
1279
- readonly example: "CA";
1280
- };
1281
- readonly country: {
1282
- readonly type: "string";
1283
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1284
- readonly example: "US";
1285
- };
1286
- readonly phone: {
1287
- readonly type: "string";
1288
- readonly description: "Phone number as a string.";
1289
- readonly example: "+1 555 555 5555";
1290
- };
1291
- readonly email: {
1292
- readonly type: "string";
1293
- readonly format: "email";
1294
- readonly description: "Email address used for billing as a string.";
1295
- readonly example: "email@example.com";
1296
- };
1297
- readonly first_name: {
1298
- readonly type: "string";
1299
- readonly description: "First name of the billing contact person.";
1300
- readonly example: "John";
1301
- };
1302
- readonly last_name: {
1303
- readonly type: "string";
1304
- readonly description: "Last name of the billing contact person.";
1305
- readonly example: "Doe";
1306
- };
1307
- };
1308
- readonly required: readonly ["email", "first_name", "last_name"];
1309
- readonly additionalProperties: false;
1310
- readonly description: "Organization contact information and billing address.";
1311
- };
1312
- readonly id: {
1313
- readonly type: "string";
1314
- readonly format: "uuid";
1315
- readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
1316
- readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
1317
- };
1318
1243
  readonly date_created: {
1319
1244
  readonly type: "string";
1320
1245
  readonly format: "date-time";
@@ -1403,96 +1328,13 @@ export declare const OrganizationSchema: {
1403
1328
  readonly additionalProperties: false;
1404
1329
  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.";
1405
1330
  };
1406
- readonly pending_actions: {
1407
- readonly type: "array";
1408
- readonly items: {
1409
- readonly type: "string";
1410
- readonly example: "signup-payment-method";
1411
- readonly enum: readonly ["signup-billing-address", "signup-payment-method", "signup-invite-team", "signup-create-cluster"];
1412
- };
1413
- readonly description: "List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.";
1414
- };
1415
1331
  readonly status: {
1416
1332
  readonly type: "string";
1417
1333
  readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
1418
1334
  readonly enum: readonly ["active", "closed", "suspended"];
1419
1335
  };
1420
1336
  };
1421
- readonly required: readonly ["name", "contactInfo", "id", "date_created", "quota", "pending_actions", "status"];
1422
- readonly additionalProperties: false;
1423
- };
1424
- export declare const OrganizationUpdateInputSchema: {
1425
- readonly type: "object";
1426
- readonly properties: {
1427
- readonly name: {
1428
- readonly type: "string";
1429
- readonly maxLength: 120;
1430
- readonly minLength: 2;
1431
- 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,}$";
1432
- readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
1433
- readonly example: "ACME Corp.";
1434
- };
1435
- readonly contactInfo: {
1436
- readonly type: "object";
1437
- readonly properties: {
1438
- readonly address1: {
1439
- readonly type: "string";
1440
- readonly description: "Street address, P.O. box, c/o";
1441
- readonly example: "123 Main St.";
1442
- };
1443
- readonly address2: {
1444
- readonly type: "string";
1445
- readonly description: "Apartment, suite, unit, building, floor, etc.";
1446
- readonly example: "Suite 100";
1447
- };
1448
- readonly postalCode: {
1449
- readonly type: "string";
1450
- readonly description: "Postal code as a string.";
1451
- readonly example: "94105";
1452
- };
1453
- readonly city: {
1454
- readonly type: "string";
1455
- readonly description: "City or town name.";
1456
- readonly example: "San Francisco";
1457
- };
1458
- readonly state: {
1459
- readonly type: "string";
1460
- readonly description: "State, province, or region name.";
1461
- readonly example: "CA";
1462
- };
1463
- readonly country: {
1464
- readonly type: "string";
1465
- readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
1466
- readonly example: "US";
1467
- };
1468
- readonly phone: {
1469
- readonly type: "string";
1470
- readonly description: "Phone number as a string.";
1471
- readonly example: "+1 555 555 5555";
1472
- };
1473
- readonly email: {
1474
- readonly type: "string";
1475
- readonly format: "email";
1476
- readonly description: "Email address used for billing as a string.";
1477
- readonly example: "email@example.com";
1478
- };
1479
- readonly first_name: {
1480
- readonly type: "string";
1481
- readonly description: "First name of the billing contact person.";
1482
- readonly example: "John";
1483
- };
1484
- readonly last_name: {
1485
- readonly type: "string";
1486
- readonly description: "Last name of the billing contact person.";
1487
- readonly example: "Doe";
1488
- };
1489
- };
1490
- readonly required: readonly ["email", "first_name", "last_name"];
1491
- readonly additionalProperties: false;
1492
- readonly description: "Organization contact information and billing address.";
1493
- };
1494
- };
1495
- readonly required: readonly ["contactInfo"];
1337
+ readonly required: readonly ["id", "date_created", "quota", "status"];
1496
1338
  readonly additionalProperties: false;
1497
1339
  };
1498
1340
  export declare const PaymentMethodSchema: {
@@ -1629,29 +1471,85 @@ export declare const TokenUpdateInputSchema: {
1629
1471
  export declare const UsageSchema: {
1630
1472
  readonly type: "object";
1631
1473
  readonly properties: {
1632
- readonly id: {
1474
+ readonly hour: {
1633
1475
  readonly type: "string";
1634
- readonly format: "uuid";
1635
- readonly description: "Unique identifier of the Usage object, equal to subscription id of the task . UUID v4 string in canonical form";
1636
- readonly example: "8897e84c-2ba1-42fa-9d35-964c80a4ff0f";
1476
+ readonly description: "Hour of the usage";
1477
+ readonly example: "2019-01-01T00:00:00.000Z";
1637
1478
  };
1638
- readonly task_id: {
1479
+ readonly cluster_id: {
1639
1480
  readonly type: "string";
1640
1481
  readonly format: "uuid";
1641
- readonly description: "Unique identifier of the project. UUID v4 string in canonical form";
1642
- readonly example: "415026b6-f00f-44f8-968d-fc6ef4d0fc6d";
1482
+ readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
1483
+ readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
1484
+ };
1485
+ readonly cluster_tier: {
1486
+ readonly type: "string";
1487
+ readonly description: "Tier of the cluster.";
1488
+ readonly example: "pro";
1489
+ readonly enum: readonly [""];
1643
1490
  };
1644
- readonly unit: {
1491
+ readonly product: {
1645
1492
  readonly type: "string";
1646
- readonly description: "Unit of measurement. E.g. GiB, seconds, etc";
1647
- readonly example: "second";
1493
+ readonly description: "The product the usage is associated with";
1494
+ readonly example: "cfke_infra_compute";
1495
+ readonly enum: readonly ["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"];
1648
1496
  };
1649
- readonly amount: {
1650
- readonly type: "number";
1651
- readonly format: "float";
1497
+ readonly node_name: {
1498
+ readonly type: "string";
1499
+ readonly description: "Name of the Kubernetes node";
1500
+ readonly example: "flexible-moth-956037384";
1501
+ };
1502
+ readonly sku: {
1503
+ readonly type: "string";
1504
+ readonly description: "SKU of the Kubernetes node";
1505
+ readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
1506
+ };
1507
+ readonly cpu: {
1508
+ readonly anyOf: readonly [{
1509
+ readonly type: "number";
1510
+ readonly format: "float";
1511
+ readonly description: "CPU core count of the node";
1512
+ readonly example: 4;
1513
+ }, {
1514
+ readonly type: "string";
1515
+ readonly enum: readonly [""];
1516
+ }];
1517
+ };
1518
+ readonly price: {
1519
+ readonly anyOf: readonly [{
1520
+ readonly type: "number";
1521
+ readonly format: "float";
1522
+ readonly description: "Price";
1523
+ readonly example: 4;
1524
+ }, {
1525
+ readonly type: "string";
1526
+ readonly enum: readonly [""];
1527
+ }];
1528
+ };
1529
+ readonly value: {
1530
+ readonly anyOf: readonly [{
1531
+ readonly type: "number";
1532
+ readonly format: "float";
1533
+ readonly description: "Value";
1534
+ readonly example: 4;
1535
+ }, {
1536
+ readonly type: "string";
1537
+ readonly enum: readonly [""];
1538
+ }];
1539
+ };
1540
+ readonly total: {
1541
+ readonly anyOf: readonly [{
1542
+ readonly type: "number";
1543
+ readonly format: "float";
1544
+ readonly description: "Total";
1545
+ readonly example: 4;
1546
+ }, {
1547
+ readonly type: "string";
1548
+ readonly enum: readonly [""];
1549
+ }];
1652
1550
  };
1653
1551
  };
1654
- readonly required: readonly ["id", "task_id", "unit", "amount"];
1552
+ readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
1655
1553
  readonly additionalProperties: false;
1656
1554
  };
1657
1555
  export declare const UserCreateInputSchema: {
@@ -1686,7 +1584,7 @@ export declare const UserCreateInputSchema: {
1686
1584
  readonly password: {
1687
1585
  readonly type: "string";
1688
1586
  readonly minLength: 8;
1689
- 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.";
1587
+ readonly description: "User password. Must be at least 8 characters long.";
1690
1588
  };
1691
1589
  readonly status: {
1692
1590
  readonly type: "string";
@@ -1751,28 +1649,6 @@ export declare const UserSchema: {
1751
1649
  readonly description: "Creation date of the user. ISO 8601 date string in UTC timezone";
1752
1650
  readonly example: "2023-11-02T16:08:14.338Z";
1753
1651
  };
1754
- readonly cluster_permissions: {
1755
- readonly type: "array";
1756
- readonly items: {
1757
- readonly type: "object";
1758
- readonly properties: {
1759
- readonly cluster_id: {
1760
- readonly type: "string";
1761
- readonly format: "uuid";
1762
- readonly description: "Unique identifier of the cluster. UUID v4 string in canonical form";
1763
- readonly example: "035ce46d-44d8-4e58-a8a2-b0192d1c27df";
1764
- };
1765
- readonly permissions: {
1766
- readonly type: "string";
1767
- readonly description: "User permissions to access the cluster. Can be `readwrite` or `readonly`.";
1768
- readonly example: "readwrite";
1769
- readonly enum: readonly ["readwrite", "readonly"];
1770
- };
1771
- };
1772
- readonly required: readonly ["cluster_id", "permissions"];
1773
- readonly additionalProperties: false;
1774
- };
1775
- };
1776
1652
  };
1777
1653
  readonly required: readonly ["email", "first_name", "last_name", "role", "status", "id", "date_created"];
1778
1654
  readonly additionalProperties: false;