@cloudfleet/sdk 0.0.1-7bf9c12 → 0.0.1-7d337a1

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