@cloudfleet/sdk 0.0.1-f1ad1a5 → 0.0.1-f55e163
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.
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +180 -549
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +193 -550
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +31 -76
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -102
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +124 -633
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +295 -1002
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +63 -147
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -5
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -1,3 +1,76 @@
|
|
|
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
|
+
};
|
|
1
74
|
export declare const ClusterCreateInputSchema: {
|
|
2
75
|
readonly type: "object";
|
|
3
76
|
readonly properties: {
|
|
@@ -80,8 +153,31 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
80
153
|
readonly additionalProperties: false;
|
|
81
154
|
readonly description: "Versions of the different components of the cluster.";
|
|
82
155
|
};
|
|
156
|
+
readonly third_party_api_access_config: {
|
|
157
|
+
readonly type: "object";
|
|
158
|
+
readonly properties: {
|
|
159
|
+
readonly metadata_url: {
|
|
160
|
+
readonly type: "string";
|
|
161
|
+
readonly description: "Kubernetes metadata server.";
|
|
162
|
+
readonly example: "https://10.31.64.4";
|
|
163
|
+
};
|
|
164
|
+
readonly aws_role_arn: {
|
|
165
|
+
readonly type: "string";
|
|
166
|
+
readonly description: "AWS Role ARN.";
|
|
167
|
+
readonly example: "arn:aws:iam::891376988828:role/0371f8fd-e164-48e1-b9e7-c3bdc3b4f403";
|
|
168
|
+
};
|
|
169
|
+
readonly gcp_workload_identity_provider: {
|
|
170
|
+
readonly type: "string";
|
|
171
|
+
readonly description: "GCP Workload Identity provider.";
|
|
172
|
+
readonly example: "//iam.googleapis.com/projects/89014267864/locations/global/workloadIdentityPools/cfke/providers/oidc";
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
readonly required: readonly ["metadata_url", "aws_role_arn", "gcp_workload_identity_provider"];
|
|
176
|
+
readonly additionalProperties: false;
|
|
177
|
+
readonly description: "OIDC Information for hosts to access to third party API's.";
|
|
178
|
+
};
|
|
83
179
|
};
|
|
84
|
-
readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions"];
|
|
180
|
+
readonly required: readonly ["certificate_authority", "endpoint", "auth_key", "bootstrap_token", "versions", "third_party_api_access_config"];
|
|
85
181
|
readonly additionalProperties: false;
|
|
86
182
|
};
|
|
87
183
|
export declare const ClusterSchema: {
|
|
@@ -446,276 +542,6 @@ export declare const FleetUpdateInputSchema: {
|
|
|
446
542
|
};
|
|
447
543
|
readonly additionalProperties: false;
|
|
448
544
|
};
|
|
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;
|
|
709
|
-
};
|
|
710
|
-
readonly available: {
|
|
711
|
-
readonly type: "boolean";
|
|
712
|
-
readonly description: "Whether this instance type is available.";
|
|
713
|
-
readonly example: true;
|
|
714
|
-
};
|
|
715
|
-
};
|
|
716
|
-
readonly required: readonly ["sku", "provider", "region", "sub_region", "csp_region", "csp_zone", "instance_type", "architecture", "os", "vcpu", "memory", "local_storage", "price"];
|
|
717
|
-
readonly additionalProperties: false;
|
|
718
|
-
};
|
|
719
545
|
export declare const InviteSchema: {
|
|
720
546
|
readonly type: "object";
|
|
721
547
|
readonly properties: {
|
|
@@ -1095,51 +921,9 @@ export declare const InvoiceSchema: {
|
|
|
1095
921
|
};
|
|
1096
922
|
readonly additionalProperties: false;
|
|
1097
923
|
};
|
|
1098
|
-
export declare const
|
|
924
|
+
export declare const OrganizationCreateInputSchema: {
|
|
1099
925
|
readonly type: "object";
|
|
1100
926
|
readonly properties: {
|
|
1101
|
-
readonly address1: {
|
|
1102
|
-
readonly type: "string";
|
|
1103
|
-
readonly nullable: true;
|
|
1104
|
-
readonly description: "Street address, P.O. box, c/o";
|
|
1105
|
-
readonly example: "123 Main St.";
|
|
1106
|
-
};
|
|
1107
|
-
readonly address2: {
|
|
1108
|
-
readonly type: "string";
|
|
1109
|
-
readonly nullable: true;
|
|
1110
|
-
readonly description: "Apartment, suite, unit, building, floor, etc.";
|
|
1111
|
-
readonly example: "Suite 100";
|
|
1112
|
-
};
|
|
1113
|
-
readonly postalCode: {
|
|
1114
|
-
readonly type: "string";
|
|
1115
|
-
readonly nullable: true;
|
|
1116
|
-
readonly description: "Postal code as a string.";
|
|
1117
|
-
readonly example: "94105";
|
|
1118
|
-
};
|
|
1119
|
-
readonly city: {
|
|
1120
|
-
readonly type: "string";
|
|
1121
|
-
readonly nullable: true;
|
|
1122
|
-
readonly description: "City or town name.";
|
|
1123
|
-
readonly example: "San Francisco";
|
|
1124
|
-
};
|
|
1125
|
-
readonly state: {
|
|
1126
|
-
readonly type: "string";
|
|
1127
|
-
readonly nullable: true;
|
|
1128
|
-
readonly description: "State, province, or region name.";
|
|
1129
|
-
readonly example: "CA";
|
|
1130
|
-
};
|
|
1131
|
-
readonly country: {
|
|
1132
|
-
readonly type: "string";
|
|
1133
|
-
readonly nullable: true;
|
|
1134
|
-
readonly description: "Country as a ISO 3166-1 alpha-2 country code.";
|
|
1135
|
-
readonly example: "US";
|
|
1136
|
-
};
|
|
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";
|
|
1142
|
-
};
|
|
1143
927
|
readonly email: {
|
|
1144
928
|
readonly type: "string";
|
|
1145
929
|
readonly format: "email";
|
|
@@ -1156,165 +940,39 @@ export declare const OrganizationContactInfoSchema: {
|
|
|
1156
940
|
readonly description: "Last name of the billing contact person.";
|
|
1157
941
|
readonly example: "Doe";
|
|
1158
942
|
};
|
|
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: {
|
|
943
|
+
readonly company_name: {
|
|
1167
944
|
readonly type: "string";
|
|
1168
945
|
readonly maxLength: 120;
|
|
1169
|
-
readonly minLength:
|
|
946
|
+
readonly minLength: 2;
|
|
1170
947
|
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,}$";
|
|
1171
948
|
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1172
949
|
readonly example: "ACME Corp.";
|
|
1173
950
|
};
|
|
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
951
|
readonly password: {
|
|
1234
952
|
readonly type: "string";
|
|
1235
953
|
readonly minLength: 8;
|
|
1236
954
|
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
955
|
};
|
|
1238
956
|
};
|
|
1239
|
-
readonly required: readonly ["
|
|
957
|
+
readonly required: readonly ["email", "first_name", "last_name", "company_name", "password"];
|
|
1240
958
|
readonly additionalProperties: false;
|
|
1241
959
|
};
|
|
1242
960
|
export declare const OrganizationSchema: {
|
|
1243
961
|
readonly type: "object";
|
|
1244
962
|
readonly properties: {
|
|
1245
|
-
readonly name: {
|
|
1246
|
-
readonly type: "string";
|
|
1247
|
-
readonly maxLength: 120;
|
|
1248
|
-
readonly minLength: 5;
|
|
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
|
-
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
1251
|
-
readonly example: "ACME Corp.";
|
|
1252
|
-
};
|
|
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
963
|
readonly id: {
|
|
1313
964
|
readonly type: "string";
|
|
1314
965
|
readonly format: "uuid";
|
|
1315
966
|
readonly description: "Unique identifier of the organization. UUID v4 string in canonical form";
|
|
1316
967
|
readonly example: "e94d30ec-a2dd-4dcb-832c-ac2be144ba91";
|
|
1317
968
|
};
|
|
969
|
+
readonly name: {
|
|
970
|
+
readonly type: "string";
|
|
971
|
+
readonly maxLength: 120;
|
|
972
|
+
readonly minLength: 2;
|
|
973
|
+
readonly description: "Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.";
|
|
974
|
+
readonly example: "ACME Corp.";
|
|
975
|
+
};
|
|
1318
976
|
readonly date_created: {
|
|
1319
977
|
readonly type: "string";
|
|
1320
978
|
readonly format: "date-time";
|
|
@@ -1403,96 +1061,13 @@ export declare const OrganizationSchema: {
|
|
|
1403
1061
|
readonly additionalProperties: false;
|
|
1404
1062
|
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
1063
|
};
|
|
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
1064
|
readonly status: {
|
|
1416
1065
|
readonly type: "string";
|
|
1417
1066
|
readonly description: "Status of the organization. Can be `active` or `closed`, or `suspended`.";
|
|
1418
1067
|
readonly enum: readonly ["active", "closed", "suspended"];
|
|
1419
1068
|
};
|
|
1420
1069
|
};
|
|
1421
|
-
readonly required: readonly ["
|
|
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: 5;
|
|
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"];
|
|
1070
|
+
readonly required: readonly ["id", "date_created", "quota", "status"];
|
|
1496
1071
|
readonly additionalProperties: false;
|
|
1497
1072
|
};
|
|
1498
1073
|
export declare const PaymentMethodSchema: {
|
|
@@ -1629,29 +1204,85 @@ export declare const TokenUpdateInputSchema: {
|
|
|
1629
1204
|
export declare const UsageSchema: {
|
|
1630
1205
|
readonly type: "object";
|
|
1631
1206
|
readonly properties: {
|
|
1632
|
-
readonly
|
|
1207
|
+
readonly hour: {
|
|
1633
1208
|
readonly type: "string";
|
|
1634
|
-
readonly
|
|
1635
|
-
readonly
|
|
1636
|
-
readonly example: "8897e84c-2ba1-42fa-9d35-964c80a4ff0f";
|
|
1209
|
+
readonly description: "Hour of the usage";
|
|
1210
|
+
readonly example: "2019-01-01T00:00:00.000Z";
|
|
1637
1211
|
};
|
|
1638
|
-
readonly
|
|
1212
|
+
readonly cluster_id: {
|
|
1639
1213
|
readonly type: "string";
|
|
1640
1214
|
readonly format: "uuid";
|
|
1641
|
-
readonly description: "Unique identifier of the
|
|
1642
|
-
readonly example: "
|
|
1215
|
+
readonly description: "Unique identifier of the kubernetes cluster. UUID v4 string in canonical form";
|
|
1216
|
+
readonly example: "6b5439b1-923a-4f2b-a371-d554e5ea23fa";
|
|
1643
1217
|
};
|
|
1644
|
-
readonly
|
|
1218
|
+
readonly cluster_tier: {
|
|
1645
1219
|
readonly type: "string";
|
|
1646
|
-
readonly description: "
|
|
1647
|
-
readonly example: "
|
|
1220
|
+
readonly description: "Tier of the cluster.";
|
|
1221
|
+
readonly example: "pro";
|
|
1222
|
+
readonly enum: readonly [""];
|
|
1648
1223
|
};
|
|
1649
|
-
readonly
|
|
1650
|
-
readonly type: "
|
|
1651
|
-
readonly
|
|
1224
|
+
readonly product: {
|
|
1225
|
+
readonly type: "string";
|
|
1226
|
+
readonly description: "The product the usage is associated with";
|
|
1227
|
+
readonly example: "cfke_infra_compute";
|
|
1228
|
+
readonly enum: readonly ["cfke_infra_compute", "cfke_nodes", "cfke_controlplane"];
|
|
1229
|
+
};
|
|
1230
|
+
readonly node_name: {
|
|
1231
|
+
readonly type: "string";
|
|
1232
|
+
readonly description: "Name of the Kubernetes node";
|
|
1233
|
+
readonly example: "flexible-moth-956037384";
|
|
1234
|
+
};
|
|
1235
|
+
readonly sku: {
|
|
1236
|
+
readonly type: "string";
|
|
1237
|
+
readonly description: "SKU of the Kubernetes node";
|
|
1238
|
+
readonly example: "GCP-NORTHAMERICA-NORTHEAST1-A-G1-SMALL-SPOT";
|
|
1239
|
+
};
|
|
1240
|
+
readonly cpu: {
|
|
1241
|
+
readonly anyOf: readonly [{
|
|
1242
|
+
readonly type: "number";
|
|
1243
|
+
readonly format: "float";
|
|
1244
|
+
readonly description: "CPU core count of the node";
|
|
1245
|
+
readonly example: 4;
|
|
1246
|
+
}, {
|
|
1247
|
+
readonly type: "string";
|
|
1248
|
+
readonly enum: readonly [""];
|
|
1249
|
+
}];
|
|
1250
|
+
};
|
|
1251
|
+
readonly price: {
|
|
1252
|
+
readonly anyOf: readonly [{
|
|
1253
|
+
readonly type: "number";
|
|
1254
|
+
readonly format: "float";
|
|
1255
|
+
readonly description: "Price";
|
|
1256
|
+
readonly example: 4;
|
|
1257
|
+
}, {
|
|
1258
|
+
readonly type: "string";
|
|
1259
|
+
readonly enum: readonly [""];
|
|
1260
|
+
}];
|
|
1261
|
+
};
|
|
1262
|
+
readonly value: {
|
|
1263
|
+
readonly anyOf: readonly [{
|
|
1264
|
+
readonly type: "number";
|
|
1265
|
+
readonly format: "float";
|
|
1266
|
+
readonly description: "Value";
|
|
1267
|
+
readonly example: 4;
|
|
1268
|
+
}, {
|
|
1269
|
+
readonly type: "string";
|
|
1270
|
+
readonly enum: readonly [""];
|
|
1271
|
+
}];
|
|
1272
|
+
};
|
|
1273
|
+
readonly total: {
|
|
1274
|
+
readonly anyOf: readonly [{
|
|
1275
|
+
readonly type: "number";
|
|
1276
|
+
readonly format: "float";
|
|
1277
|
+
readonly description: "Total";
|
|
1278
|
+
readonly example: 4;
|
|
1279
|
+
}, {
|
|
1280
|
+
readonly type: "string";
|
|
1281
|
+
readonly enum: readonly [""];
|
|
1282
|
+
}];
|
|
1652
1283
|
};
|
|
1653
1284
|
};
|
|
1654
|
-
readonly required: readonly ["
|
|
1285
|
+
readonly required: readonly ["cluster_id", "cluster_tier", "product", "node_name", "sku", "cpu", "price", "value", "total"];
|
|
1655
1286
|
readonly additionalProperties: false;
|
|
1656
1287
|
};
|
|
1657
1288
|
export declare const UserCreateInputSchema: {
|
|
@@ -1686,7 +1317,7 @@ export declare const UserCreateInputSchema: {
|
|
|
1686
1317
|
readonly password: {
|
|
1687
1318
|
readonly type: "string";
|
|
1688
1319
|
readonly minLength: 8;
|
|
1689
|
-
readonly description: "User password. Must be at least 8 characters long
|
|
1320
|
+
readonly description: "User password. Must be at least 8 characters long.";
|
|
1690
1321
|
};
|
|
1691
1322
|
readonly status: {
|
|
1692
1323
|
readonly type: "string";
|