@cloudfleet/sdk 0.0.1-ca1b7df → 0.0.1-cb875c6

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.
Files changed (83) hide show
  1. package/dist/client/client.gen.d.ts +3 -0
  2. package/dist/client/client.gen.d.ts.map +1 -0
  3. package/dist/client/client.gen.js +205 -0
  4. package/dist/client/client.gen.js.map +1 -0
  5. package/dist/client/index.d.ts +9 -0
  6. package/dist/client/index.d.ts.map +1 -0
  7. package/dist/client/index.js +7 -0
  8. package/dist/client/index.js.map +1 -0
  9. package/dist/client/types.gen.d.ts +125 -0
  10. package/dist/client/types.gen.d.ts.map +1 -0
  11. package/dist/client/types.gen.js +3 -0
  12. package/dist/client/types.gen.js.map +1 -0
  13. package/dist/client/utils.gen.d.ts +34 -0
  14. package/dist/client/utils.gen.d.ts.map +1 -0
  15. package/dist/client/utils.gen.js +231 -0
  16. package/dist/client/utils.gen.js.map +1 -0
  17. package/dist/client.gen.d.ts +13 -0
  18. package/dist/client.gen.d.ts.map +1 -0
  19. package/dist/client.gen.js +6 -0
  20. package/dist/client.gen.js.map +1 -0
  21. package/dist/core/auth.gen.d.ts +19 -0
  22. package/dist/core/auth.gen.d.ts.map +1 -0
  23. package/dist/core/auth.gen.js +15 -0
  24. package/dist/core/auth.gen.js.map +1 -0
  25. package/dist/core/bodySerializer.gen.d.ts +18 -0
  26. package/dist/core/bodySerializer.gen.d.ts.map +1 -0
  27. package/dist/core/bodySerializer.gen.js +58 -0
  28. package/dist/core/bodySerializer.gen.js.map +1 -0
  29. package/dist/core/params.gen.d.ts +34 -0
  30. package/dist/core/params.gen.d.ts.map +1 -0
  31. package/dist/core/params.gen.js +89 -0
  32. package/dist/core/params.gen.js.map +1 -0
  33. package/dist/core/pathSerializer.gen.d.ts +34 -0
  34. package/dist/core/pathSerializer.gen.d.ts.map +1 -0
  35. package/dist/core/pathSerializer.gen.js +115 -0
  36. package/dist/core/pathSerializer.gen.js.map +1 -0
  37. package/dist/core/queryKeySerializer.gen.d.ts +19 -0
  38. package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
  39. package/dist/core/queryKeySerializer.gen.js +100 -0
  40. package/dist/core/queryKeySerializer.gen.js.map +1 -0
  41. package/dist/core/serverSentEvents.gen.d.ts +72 -0
  42. package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
  43. package/dist/core/serverSentEvents.gen.js +136 -0
  44. package/dist/core/serverSentEvents.gen.js.map +1 -0
  45. package/dist/core/types.gen.d.ts +79 -0
  46. package/dist/core/types.gen.d.ts.map +1 -0
  47. package/dist/core/types.gen.js +3 -0
  48. package/dist/core/types.gen.js.map +1 -0
  49. package/dist/core/utils.gen.d.ts +20 -0
  50. package/dist/core/utils.gen.d.ts.map +1 -0
  51. package/dist/core/utils.gen.js +88 -0
  52. package/dist/core/utils.gen.js.map +1 -0
  53. package/dist/index.d.ts +3 -0
  54. package/dist/index.d.ts.map +1 -1
  55. package/dist/index.js +3 -0
  56. package/dist/index.js.map +1 -1
  57. package/dist/schemas.gen.d.ts +831 -1060
  58. package/dist/schemas.gen.d.ts.map +1 -1
  59. package/dist/schemas.gen.js +828 -1089
  60. package/dist/schemas.gen.js.map +1 -1
  61. package/dist/sdk.gen.d.ts +218 -142
  62. package/dist/sdk.gen.d.ts.map +1 -1
  63. package/dist/sdk.gen.js +300 -145
  64. package/dist/sdk.gen.js.map +1 -1
  65. package/dist/services/kubernetes/api.d.ts +196 -0
  66. package/dist/services/kubernetes/api.d.ts.map +1 -0
  67. package/dist/services/kubernetes/api.js +140 -0
  68. package/dist/services/kubernetes/api.js.map +1 -0
  69. package/dist/services/kubernetes/index.d.ts +44 -0
  70. package/dist/services/kubernetes/index.d.ts.map +1 -0
  71. package/dist/services/kubernetes/index.js +68 -0
  72. package/dist/services/kubernetes/index.js.map +1 -0
  73. package/dist/services/kubernetes/types.d.ts +1335 -0
  74. package/dist/services/kubernetes/types.d.ts.map +1 -0
  75. package/dist/services/kubernetes/types.js +2 -0
  76. package/dist/services/kubernetes/types.js.map +1 -0
  77. package/dist/types.gen.d.ts +909 -1009
  78. package/dist/types.gen.d.ts.map +1 -1
  79. package/dist/zod.gen.d.ts +1856 -2884
  80. package/dist/zod.gen.d.ts.map +1 -1
  81. package/dist/zod.gen.js +903 -900
  82. package/dist/zod.gen.js.map +1 -1
  83. package/package.json +8 -5
@@ -1,16 +1,177 @@
1
- export type ClusterCreateInput = {
1
+ export type ClientOptions = {
2
+ baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
3
+ };
4
+ export type BillingContact = {
2
5
  /**
3
- * Name of the cluster.
6
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
7
+ */
8
+ company?: string;
9
+ /**
10
+ * Street address, P.O. box, c/o
11
+ */
12
+ address1?: string;
13
+ /**
14
+ * Apartment, suite, unit, building, floor, etc.
15
+ */
16
+ address2?: string;
17
+ /**
18
+ * Postal code as a string.
19
+ */
20
+ postalCode?: string;
21
+ /**
22
+ * City or town name.
23
+ */
24
+ city?: string;
25
+ /**
26
+ * State, province, or region name.
27
+ */
28
+ state?: string;
29
+ /**
30
+ * Country as a ISO 3166-1 alpha-2 country code.
31
+ */
32
+ country?: string;
33
+ /**
34
+ * Phone number as a string.
35
+ */
36
+ phone?: string;
37
+ /**
38
+ * Email address used for billing as a string.
39
+ */
40
+ email: string;
41
+ /**
42
+ * Name of the billing contact person.
43
+ */
44
+ individual_name: string;
45
+ /**
46
+ * Tax ID of the organization.
47
+ */
48
+ tax_id?: string;
49
+ /**
50
+ * Type of the tax ID.
51
+ */
52
+ tax_id_type?: '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' | '';
53
+ };
54
+ export type BillingCredits = {
55
+ /**
56
+ * Generated unique identifier of the promotional code.
57
+ */
58
+ id?: string;
59
+ /**
60
+ * Type of the promotional code.
61
+ */
62
+ type: 'credit' | 'discount';
63
+ /**
64
+ * Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
65
+ */
66
+ date_start: string;
67
+ /**
68
+ * Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.
69
+ */
70
+ date_end?: string;
71
+ /**
72
+ * Promotional code used by the customer.
73
+ */
74
+ code: string;
75
+ /**
76
+ * Description of the promotional code.
77
+ */
78
+ description?: string;
79
+ /**
80
+ * Total value of the promotional code.
81
+ */
82
+ value_total: number;
83
+ /**
84
+ * Remaining value of the promotional code.
85
+ */
86
+ value_remaining?: number;
87
+ };
88
+ export type ChartCreateInput = {
89
+ /**
90
+ * Values to be used in the chart encoded as a JSON string.
91
+ */
92
+ values: string;
93
+ /**
94
+ * Desired version range or channel for the chart.
95
+ */
96
+ version_channel: string;
97
+ /**
98
+ * Unique identifier of the chart deployment aka name of the helm release.
99
+ */
100
+ name: string;
101
+ /**
102
+ * Namespace of the chart deployment
103
+ */
104
+ namespace: string;
105
+ /**
106
+ * Name of the chart listing
107
+ */
108
+ chart: string;
109
+ };
110
+ export type Chart = {
111
+ /**
112
+ * Values to be used in the chart encoded as a JSON string.
113
+ */
114
+ values: string;
115
+ /**
116
+ * Desired version range or channel for the chart.
117
+ */
118
+ version_channel: string;
119
+ /**
120
+ * Unique identifier of the chart deployment aka name of the helm release.
4
121
  */
5
122
  name: string;
6
123
  /**
7
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
124
+ * Namespace of the chart deployment
125
+ */
126
+ namespace: string;
127
+ /**
128
+ * Name of the chart listing
129
+ */
130
+ chart: string;
131
+ /**
132
+ * Status of the chart deployment.
133
+ */
134
+ status: 'InstallSucceeded' | 'InstallFailed' | 'UpgradeSucceeded' | 'UpgradeFailed' | 'TestSucceeded' | 'TestFailed' | 'RollbackSucceeded' | 'RollbackFailed' | 'UninstallSucceeded' | 'UninstallFailed' | 'ArtifactFailed' | 'DependencyNotReady' | 'Progressing' | 'SourceNotReady';
135
+ /**
136
+ * Current version of the chart deployment.
137
+ */
138
+ version_current: string;
139
+ /**
140
+ * Creation date and time of the chart deployment.
141
+ */
142
+ created_at: string;
143
+ /**
144
+ * Last update date and time of the chart deployment.
145
+ */
146
+ updated_at: string;
147
+ /**
148
+ * Indicates if the chart deployment is ready to be used.
149
+ */
150
+ ready: boolean;
151
+ };
152
+ export type ChartUpdateInput = {
153
+ /**
154
+ * Values to be used in the chart encoded as a JSON string.
155
+ */
156
+ values: string;
157
+ /**
158
+ * Desired version range or channel for the chart.
159
+ */
160
+ version_channel: string;
161
+ };
162
+ export type ClusterCreateInput = {
163
+ /**
164
+ * Name of the cluster.
8
165
  */
9
- region?: 'staging' | 'northamerica-central-1';
166
+ name: string;
10
167
  /**
11
168
  * Tier of the cluster.
12
169
  */
13
170
  tier: 'basic' | 'pro';
171
+ /**
172
+ * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
173
+ */
174
+ region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
14
175
  /**
15
176
  * Version of the kubernetes cluster.
16
177
  */
@@ -49,6 +210,10 @@ export type ClusterJoinInformation = {
49
210
  * Containerd version of the cluster.
50
211
  */
51
212
  containerd: string;
213
+ /**
214
+ * NVIDIA driver version of the cluster.
215
+ */
216
+ nvidia_driver: string;
52
217
  };
53
218
  /**
54
219
  * OIDC Information for hosts to access to third party API's.
@@ -73,14 +238,14 @@ export type Cluster = {
73
238
  * Name of the cluster.
74
239
  */
75
240
  name: string;
76
- /**
77
- * Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
78
- */
79
- region?: 'staging' | 'northamerica-central-1';
80
241
  /**
81
242
  * Tier of the cluster.
82
243
  */
83
244
  tier: 'basic' | 'pro';
245
+ /**
246
+ * Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
247
+ */
248
+ region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
84
249
  /**
85
250
  * Version of the kubernetes cluster.
86
251
  */
@@ -92,7 +257,7 @@ export type Cluster = {
92
257
  /**
93
258
  * Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
94
259
  */
95
- status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
260
+ status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
96
261
  endpoint?: string | '';
97
262
  /**
98
263
  * Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
@@ -120,6 +285,10 @@ export type ClusterUpdateInput = {
120
285
  * Name of the cluster.
121
286
  */
122
287
  name?: string;
288
+ /**
289
+ * Tier of the cluster.
290
+ */
291
+ tier: 'basic' | 'pro';
123
292
  /**
124
293
  * Version of the kubernetes cluster.
125
294
  */
@@ -144,10 +313,10 @@ export type FleetCreateInput = {
144
313
  };
145
314
  hetzner?: {
146
315
  enabled?: boolean;
147
- apiKey?: string;
148
- } | {
149
- apiKey?: string;
150
- enabled?: boolean;
316
+ /**
317
+ * Hetzner Cloud API key with read / write access
318
+ */
319
+ apiKey: string;
151
320
  };
152
321
  aws?: {
153
322
  enabled?: boolean;
@@ -160,10 +329,6 @@ export type FleetCreateInput = {
160
329
  * Unique identifier of the kubernetes fleet.
161
330
  */
162
331
  id: string;
163
- /**
164
- * Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
165
- */
166
- type: 'managed' | 'connected';
167
332
  };
168
333
  export type Fleet = {
169
334
  /**
@@ -184,10 +349,10 @@ export type Fleet = {
184
349
  };
185
350
  hetzner?: {
186
351
  enabled?: boolean;
187
- apiKey?: string;
188
- } | {
189
- apiKey?: string;
190
- enabled?: boolean;
352
+ /**
353
+ * Hetzner Cloud API key with read / write access
354
+ */
355
+ apiKey: string;
191
356
  };
192
357
  aws?: {
193
358
  enabled?: boolean;
@@ -200,10 +365,6 @@ export type Fleet = {
200
365
  * Unique identifier of the kubernetes fleet.
201
366
  */
202
367
  id: string;
203
- /**
204
- * Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
205
- */
206
- type: 'managed' | 'connected';
207
368
  };
208
369
  export type FleetUpdateInput = {
209
370
  /**
@@ -224,10 +385,10 @@ export type FleetUpdateInput = {
224
385
  };
225
386
  hetzner?: {
226
387
  enabled?: boolean;
227
- apiKey?: string;
228
- } | {
229
- apiKey?: string;
230
- enabled?: boolean;
388
+ /**
389
+ * Hetzner Cloud API key with read / write access
390
+ */
391
+ apiKey: string;
231
392
  };
232
393
  aws?: {
233
394
  enabled?: boolean;
@@ -237,726 +398,378 @@ export type FleetUpdateInput = {
237
398
  controllerRoleArn: string;
238
399
  };
239
400
  };
240
- export type InfrastructureFilter = {
401
+ export type Invite = {
402
+ /**
403
+ * Unique identifier of the invitation.
404
+ */
405
+ id?: string;
406
+ /**
407
+ * Unique identifier of the organization the project belongs to. UUID v4 string in canonical form
408
+ */
409
+ organization_id?: string;
241
410
  /**
242
- * Version of the infrastructure filter definition. Currently only version 1 is supported.
411
+ * Creation date of the project. ISO 8601 date string in UTC timezone
243
412
  */
244
- version?: 1;
413
+ date_created: string;
245
414
  /**
246
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
415
+ * User email address.
247
416
  */
248
- provider?: Array<string>;
417
+ email?: string;
249
418
  /**
250
- * 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/)
419
+ * Generated unique invite code.
251
420
  */
252
- region?: Array<string>;
421
+ code?: string;
422
+ };
423
+ export type Invoice = {
253
424
  /**
254
- * 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/)
425
+ * Unique identifier of the invoice. UUID v4 string in canonical form
255
426
  */
256
- sub_region?: Array<string>;
427
+ id?: string;
428
+ number?: string;
257
429
  /**
258
- * Limits selection of cloud regions to this list of canonical provider regions
430
+ * Status of the invoice
259
431
  */
260
- csp_region?: Array<string>;
432
+ status?: string;
261
433
  /**
262
- * Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
434
+ * Total amount of the invoice
263
435
  */
264
- instance_type?: Array<string>;
436
+ total?: number;
265
437
  /**
266
- * 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
438
+ * Currency of the invoice
267
439
  */
268
- accelerator_name?: Array<string>;
440
+ currency?: string;
269
441
  /**
270
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
442
+ * Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
271
443
  */
272
- accelerator_manufacturer?: Array<string>;
444
+ created: string;
273
445
  /**
274
- * 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.
446
+ * Billing period start timestamp. ISO 8601 date string in the UTC timezone.
275
447
  */
276
- accelerator_count_min?: number;
448
+ period_start: string;
277
449
  /**
278
- * 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.
450
+ * Billing period end timestamp. ISO 8601 date string in the UTC timezone.
279
451
  */
280
- accelerator_count_max?: number;
452
+ period_end: string;
453
+ invoice_pdf?: string;
454
+ };
455
+ export type MarketplaceListing = {
281
456
  /**
282
- * 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
457
+ * Id of the chart listing
283
458
  */
284
- accelerator_memory_min?: number;
459
+ id: string;
285
460
  /**
286
- * 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
461
+ * Name of the chart listing
287
462
  */
288
- accelerator_memory_max?: number;
463
+ name: string;
289
464
  /**
290
- * Minimum amount of RAM in gibibytes (GiB)
465
+ * Author of the chart listing
291
466
  */
292
- memory_min?: number;
467
+ developer: string;
293
468
  /**
294
- * Maximum amount of RAM in gibibytes (GiB)
469
+ * Short description of the chart listing
295
470
  */
296
- memory_max?: number;
471
+ description: string;
297
472
  /**
298
- * 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.
473
+ * Logo of the chart listing
299
474
  */
300
- vcpu_min?: number;
475
+ logoUrl: string;
301
476
  /**
302
- * 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.
477
+ * Long description of the chart listing
303
478
  */
304
- vcpu_max?: number;
479
+ longDescription: string;
305
480
  /**
306
- * Minimum total storage in GiB (attached and local)
481
+ * Tags of the chart
307
482
  */
308
- storage_total_min?: number;
483
+ categories: Array<string>;
484
+ version_channels: Array<string>;
485
+ value_schemas: Array<{
486
+ /**
487
+ * Version of the chart.
488
+ */
489
+ version: string;
490
+ /**
491
+ * Schema of the chart values. JSON Schema as string
492
+ */
493
+ schema: string;
494
+ /**
495
+ * Schema of the chart values
496
+ */
497
+ placeholder: string;
498
+ }>;
499
+ };
500
+ export type OrganizationCreateInput = {
309
501
  /**
310
- * Maximum total storage in GiB (attached and local)
502
+ * Email address used for billing as a string.
311
503
  */
312
- storage_total_max?: number;
504
+ email: string;
313
505
  /**
314
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
506
+ * First name of the billing contact person.
315
507
  */
316
- storage_local_min?: number;
508
+ first_name: string;
317
509
  /**
318
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
510
+ * Last name of the billing contact person.
319
511
  */
320
- storage_local_max?: number;
512
+ last_name: string;
321
513
  /**
322
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
514
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
323
515
  */
324
- price_min?: number;
516
+ company_name: string;
325
517
  /**
326
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
518
+ * 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.
327
519
  */
328
- price_max?: number;
520
+ password: string;
329
521
  };
330
- export type InfrastructureInstance = {
522
+ export type Organization = {
331
523
  /**
332
- * Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.
524
+ * Unique identifier of the organization. UUID v4 string in canonical form
333
525
  */
334
- sku: string;
526
+ id: string;
335
527
  /**
336
- * Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
528
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
337
529
  */
338
- provider: string;
530
+ name?: string;
339
531
  /**
340
- * 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/)
532
+ * Creation date of the organization. ISO 8601 date string in UTC timezone
341
533
  */
342
- region: string;
534
+ date_created: string;
343
535
  /**
344
- * 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/)
536
+ * 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.
345
537
  */
346
- sub_region: string;
538
+ quota: {
539
+ /**
540
+ * Maximum number of Basic clusters that can be created.
541
+ */
542
+ basic_clusters_max: number;
543
+ /**
544
+ * Available number of Basic clusters that can be created.
545
+ */
546
+ basic_clusters_available: number;
547
+ /**
548
+ * Maximum number of Pro clusters that can be created.
549
+ */
550
+ pro_clusters_max: number;
551
+ /**
552
+ * Available number of Pro clusters that can be created.
553
+ */
554
+ pro_clusters_available: number;
555
+ /**
556
+ * Maximum number of fleets that can be created per cluster.
557
+ */
558
+ fleets_max: number;
559
+ /**
560
+ * List of Cloudfleet cluster tiers available for the organization.
561
+ */
562
+ cluster_tiers: Array<string>;
563
+ /**
564
+ * List of Cloudfleet control plane regions available for the organization.
565
+ */
566
+ regions: Array<string>;
567
+ /**
568
+ * List of CFKE control plane versions available for the organization.
569
+ */
570
+ versions: Array<{
571
+ /**
572
+ * Id of the control plane version. Used in API calls.
573
+ */
574
+ id: string;
575
+ /**
576
+ * Label of the control plane version. Used in frontent UI.
577
+ */
578
+ label: string;
579
+ }>;
580
+ };
347
581
  /**
348
- * Region as defined by the cloud service provider
582
+ * Status of the organization. Can be `active` or `closed`, or `suspended`.
349
583
  */
350
- csp_region: string;
584
+ status: 'active' | 'closed' | 'suspended';
585
+ };
586
+ export type PaymentMethod = {
351
587
  /**
352
- * Availability zone as defined by the cloud service provider
588
+ * Unique identifier of the organization. UUID v4 string in canonical form.
353
589
  */
354
- csp_zone: string;
590
+ id: string;
355
591
  /**
356
- * Instance / VM type as defined by the cloud service provider
592
+ * Whether organization payment method was set up and ready to use for payments.
357
593
  */
358
- instance_type: string;
594
+ setup: boolean;
359
595
  /**
360
- * Instance CPU architecture
596
+ * Payment method type type. Only `card` payments supported at the moment.
361
597
  */
362
- architecture: string;
598
+ type: 'card';
363
599
  /**
364
- * Instance operating system
600
+ * Last 4 digits of the payment card number.
365
601
  */
366
- os: string;
602
+ last4: string;
367
603
  /**
368
- * 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.
604
+ * Two-digit number representing the card's expiration month.
369
605
  */
370
- vcpu: number;
606
+ exp_month: number;
371
607
  /**
372
- * Total amount of RAM in gibibytes (GiB)
608
+ * Four-digit number representing the card's expiration year.
373
609
  */
374
- memory: number;
610
+ exp_year: number;
375
611
  /**
376
- * Volume of directly attached, block-device local storage in gibibytes (GiB)
612
+ * Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
377
613
  */
378
- local_storage: number;
614
+ brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
615
+ };
616
+ export type PlatformQuota = {
379
617
  /**
380
- * 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
618
+ * Maximum number of Basic clusters that can be created.
381
619
  */
382
- accelerator_name?: string;
620
+ basic_clusters_max: number;
383
621
  /**
384
- * Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
622
+ * Available number of Basic clusters that can be created.
385
623
  */
386
- accelerator_manufacturer?: string;
624
+ basic_clusters_available: number;
387
625
  /**
388
- * 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.
626
+ * Maximum number of Pro clusters that can be created.
389
627
  */
390
- accelerator_count?: number;
628
+ pro_clusters_max: number;
391
629
  /**
392
- * 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
630
+ * Available number of Pro clusters that can be created.
393
631
  */
394
- accelerator_memory?: number;
632
+ pro_clusters_available: number;
395
633
  /**
396
- * Maximum number of pods that can be run on this instance type.
634
+ * Maximum number of fleets that can be created per cluster.
397
635
  */
398
- pods_capacity?: number;
636
+ fleets_max: number;
399
637
  /**
400
- * Capacity type of the instance. E.g. `on-demand`, `spot`.
638
+ * List of Cloudfleet cluster tiers available for the organization.
401
639
  */
402
- capacity_type?: string;
640
+ cluster_tiers: Array<string>;
403
641
  /**
404
- * Price of running the inctance per hour in USD as defined by the cloud service provider
642
+ * List of Cloudfleet control plane regions available for the organization.
405
643
  */
406
- price: number;
644
+ regions: Array<string>;
407
645
  /**
408
- * Whether this instance type is available.
646
+ * List of CFKE control plane versions available for the organization.
409
647
  */
410
- available?: boolean;
648
+ versions: Array<{
649
+ /**
650
+ * Id of the control plane version. Used in API calls.
651
+ */
652
+ id: string;
653
+ /**
654
+ * Label of the control plane version. Used in frontent UI.
655
+ */
656
+ label: string;
657
+ }>;
411
658
  };
412
- export type Invite = {
659
+ export type RegistryRepository = {
413
660
  /**
414
- * Unique identifier of the invitation.
661
+ * Repository name.
415
662
  */
416
- id?: string;
663
+ name: string;
417
664
  /**
418
- * Unique identifier of the organization the project belongs to. UUID v4 string in canonical form
665
+ * Registry region.
419
666
  */
420
- organization_id?: string;
667
+ region: string;
421
668
  /**
422
- * Creation date of the project. ISO 8601 date string in UTC timezone
423
- */
424
- date_created: string;
425
- /**
426
- * User email address.
669
+ * Full URI of the repository.
427
670
  */
428
- email?: string;
429
- /**
430
- * Generated unique invite code.
431
- */
432
- code?: string;
671
+ uri: string;
433
672
  };
434
- export type Invoice = {
435
- /**
436
- * Unique identifier of the invoice. UUID v4 string in canonical form
437
- */
438
- id?: string;
439
- /**
440
- * Unique identifier of the organization. UUID v4 string in canonical form
441
- */
442
- organizationId?: string;
443
- /**
444
- * Status of the invoice
445
- */
446
- status?: 'DRAFT' | 'COMMITTED' | 'VOID';
673
+ export type RegistryRepositoryWithTags = {
447
674
  /**
448
- * Total amount of the invoice
449
- */
450
- amount?: number;
451
- /**
452
- * Currency of the invoice
453
- */
454
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
455
- /**
456
- * Total amount of credit adjustments
675
+ * Repository name.
457
676
  */
458
- creditAdj?: number;
459
- /**
460
- * Total amount of refund adjustments
461
- */
462
- refundAdj?: number;
463
- /**
464
- * Date of the invoice
465
- */
466
- invoiceDate?: string;
467
- /**
468
- * Target date of the invoice
469
- */
470
- targetDate?: string;
471
- /**
472
- * Number of the invoice
473
- */
474
- invoiceNumber?: string;
677
+ name: string;
475
678
  /**
476
- * Balance of the invoice
679
+ * Registry region.
477
680
  */
478
- balance?: number;
681
+ region: string;
479
682
  /**
480
- * Bundle keys of the invoice
683
+ * Full URI of the repository.
481
684
  */
482
- bundleKeys?: string;
685
+ uri: string;
483
686
  /**
484
- * Credits of the invoice
687
+ * Array of tags in the repository.
485
688
  */
486
- credits?: Array<{
487
- /**
488
- * Unique identifier of the invoice item. UUID v4 string in canonical form
489
- */
490
- id?: string;
491
- /**
492
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
493
- */
494
- linkedInvoiceItemId?: string;
689
+ tags: Array<{
495
690
  /**
496
- * Name of the product
691
+ * Tag name.
497
692
  */
498
- productName?: string;
693
+ name: string;
499
694
  /**
500
- * Name of the plan
695
+ * Size of the tag in bytes.
501
696
  */
502
- planName?: string;
697
+ size: number;
503
698
  /**
504
- * Name of the phase
699
+ * Media type of the manifest.
505
700
  */
506
- phaseName?: string;
507
- /**
508
- * Name of the usage
509
- */
510
- usageName?: string;
511
- /**
512
- * Pretty name of the product
513
- */
514
- prettyProductName?: string;
515
- /**
516
- * Pretty name of the plan
517
- */
518
- prettyPlanName?: string;
519
- /**
520
- * Pretty name of the phase
521
- */
522
- prettyPhaseName?: string;
523
- /**
524
- * Pretty name of the usage
525
- */
526
- prettyUsageName?: string;
527
- /**
528
- * Type of the invoice item
529
- */
530
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
531
- /**
532
- * Description of the invoice item
533
- */
534
- description?: string;
535
- /**
536
- * Start date of the invoice item
537
- */
538
- startDate?: string;
539
- /**
540
- * End date of the invoice item
541
- */
542
- endDate?: string;
543
- /**
544
- * Amount of the invoice item
545
- */
546
- amount?: number;
547
- /**
548
- * Rate of the invoice item
549
- */
550
- rate?: number;
551
- /**
552
- * Currency of the invoice item
553
- */
554
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
555
- /**
556
- * Quantity of the invoice item
557
- */
558
- quantity?: number;
559
- /**
560
- * Details of the invoice item
561
- */
562
- itemDetails?: string;
563
- /**
564
- * Effective date of the catalog
565
- */
566
- catalogEffectiveDate?: string;
567
- /**
568
- * Child items of the invoice item
569
- */
570
- childItems?: Array<Array<unknown> | boolean | number | {
571
- [key: string]: unknown;
572
- } | string>;
701
+ mediaType?: string;
573
702
  }>;
574
703
  /**
575
- * Items of the invoice
704
+ * Total size of all tags in the repository in bytes.
576
705
  */
577
- items?: Array<{
578
- /**
579
- * Unique identifier of the invoice item. UUID v4 string in canonical form
580
- */
581
- id?: string;
582
- /**
583
- * Unique identifier of the linked invoice item. UUID v4 string in canonical form
584
- */
585
- linkedInvoiceItemId?: string;
586
- /**
587
- * Name of the product
588
- */
589
- productName?: string;
590
- /**
591
- * Name of the plan
592
- */
593
- planName?: string;
594
- /**
595
- * Name of the phase
596
- */
597
- phaseName?: string;
598
- /**
599
- * Name of the usage
600
- */
601
- usageName?: string;
602
- /**
603
- * Pretty name of the product
604
- */
605
- prettyProductName?: string;
606
- /**
607
- * Pretty name of the plan
608
- */
609
- prettyPlanName?: string;
610
- /**
611
- * Pretty name of the phase
612
- */
613
- prettyPhaseName?: string;
614
- /**
615
- * Pretty name of the usage
616
- */
617
- prettyUsageName?: string;
618
- /**
619
- * Type of the invoice item
620
- */
621
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
622
- /**
623
- * Description of the invoice item
624
- */
625
- description?: string;
626
- /**
627
- * Start date of the invoice item
628
- */
629
- startDate?: string;
630
- /**
631
- * End date of the invoice item
632
- */
633
- endDate?: string;
634
- /**
635
- * Amount of the invoice item
636
- */
637
- amount?: number;
638
- /**
639
- * Rate of the invoice item
640
- */
641
- rate?: number;
642
- /**
643
- * Currency of the invoice item
644
- */
645
- currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
646
- /**
647
- * Quantity of the invoice item
648
- */
649
- quantity?: number;
650
- /**
651
- * Details of the invoice item
652
- */
653
- itemDetails?: string;
654
- /**
655
- * Effective date of the catalog
656
- */
657
- catalogEffectiveDate?: string;
658
- /**
659
- * Child items of the invoice item
660
- */
661
- childItems?: Array<Array<unknown> | boolean | number | {
662
- [key: string]: unknown;
663
- } | string>;
664
- }>;
706
+ totalSize: number;
665
707
  };
666
- export type OrganizationContactInfo = {
667
- /**
668
- * Street address, P.O. box, c/o
669
- */
670
- address1?: string;
671
- /**
672
- * Apartment, suite, unit, building, floor, etc.
673
- */
674
- address2?: string;
675
- /**
676
- * Postal code as a string.
677
- */
678
- postalCode?: string;
679
- /**
680
- * City or town name.
681
- */
682
- city?: string;
683
- /**
684
- * State, province, or region name.
685
- */
686
- state?: string;
687
- /**
688
- * Country as a ISO 3166-1 alpha-2 country code.
689
- */
690
- country?: string;
691
- /**
692
- * Phone number as a string.
693
- */
694
- phone?: string;
695
- /**
696
- * Email address used for billing as a string.
697
- */
698
- email: string;
708
+ export type RegistryTag = {
699
709
  /**
700
- * First name of the billing contact person.
710
+ * Tag name.
701
711
  */
702
- first_name: string;
703
- /**
704
- * Last name of the billing contact person.
705
- */
706
- last_name: string;
707
- };
708
- export type OrganizationCreateInput = {
712
+ name: string;
709
713
  /**
710
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
714
+ * Media type of the manifest.
711
715
  */
712
- name: string;
716
+ mediaType?: string;
713
717
  /**
714
- * Organization contact information and billing address.
718
+ * Manifest config metadata.
715
719
  */
716
- contactInfo: {
720
+ config?: {
717
721
  /**
718
- * Street address, P.O. box, c/o
722
+ * Size of the config in bytes.
719
723
  */
720
- address1?: string;
721
- /**
722
- * Apartment, suite, unit, building, floor, etc.
723
- */
724
- address2?: string;
725
- /**
726
- * Postal code as a string.
727
- */
728
- postalCode?: string;
729
- /**
730
- * City or town name.
731
- */
732
- city?: string;
733
- /**
734
- * State, province, or region name.
735
- */
736
- state?: string;
737
- /**
738
- * Country as a ISO 3166-1 alpha-2 country code.
739
- */
740
- country?: string;
741
- /**
742
- * Phone number as a string.
743
- */
744
- phone?: string;
745
- /**
746
- * Email address used for billing as a string.
747
- */
748
- email: string;
749
- /**
750
- * First name of the billing contact person.
751
- */
752
- first_name: string;
753
- /**
754
- * Last name of the billing contact person.
755
- */
756
- last_name: string;
724
+ size: number;
757
725
  };
758
726
  /**
759
- * 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.
760
- */
761
- password: string;
762
- };
763
- export type Organization = {
764
- /**
765
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
766
- */
767
- name: string;
768
- /**
769
- * Organization contact information and billing address.
727
+ * Array of layer metadata.
770
728
  */
771
- contactInfo: {
772
- /**
773
- * Street address, P.O. box, c/o
774
- */
775
- address1?: string;
776
- /**
777
- * Apartment, suite, unit, building, floor, etc.
778
- */
779
- address2?: string;
780
- /**
781
- * Postal code as a string.
782
- */
783
- postalCode?: string;
784
- /**
785
- * City or town name.
786
- */
787
- city?: string;
788
- /**
789
- * State, province, or region name.
790
- */
791
- state?: string;
792
- /**
793
- * Country as a ISO 3166-1 alpha-2 country code.
794
- */
795
- country?: string;
796
- /**
797
- * Phone number as a string.
798
- */
799
- phone?: string;
800
- /**
801
- * Email address used for billing as a string.
802
- */
803
- email: string;
804
- /**
805
- * First name of the billing contact person.
806
- */
807
- first_name: string;
729
+ layers?: Array<{
808
730
  /**
809
- * Last name of the billing contact person.
731
+ * Size of the layer in bytes.
810
732
  */
811
- last_name: string;
812
- };
813
- /**
814
- * Unique identifier of the organization. UUID v4 string in canonical form
815
- */
816
- id: string;
733
+ size: number;
734
+ }>;
817
735
  /**
818
- * Creation date of the organization. ISO 8601 date string in UTC timezone
736
+ * Array of manifests for multi-arch images.
819
737
  */
820
- date_created: string;
821
- /**
822
- * 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.
823
- */
824
- quota: {
825
- /**
826
- * Maximum number of Basic clusters that can be created.
827
- */
828
- basic_clusters_max: number;
829
- /**
830
- * Available number of Basic clusters that can be created.
831
- */
832
- basic_clusters_available: number;
738
+ manifests?: Array<{
833
739
  /**
834
- * Maximum number of Pro clusters that can be created.
835
- */
836
- pro_clusters_max: number;
837
- /**
838
- * Available number of Pro clusters that can be created.
740
+ * Digest of the manifest.
839
741
  */
840
- pro_clusters_available: number;
742
+ digest: string;
841
743
  /**
842
- * Maximum number of fleets that can be created per cluster.
843
- */
844
- fleets_max: number;
845
- /**
846
- * Maximum number of CPU cores per managed fleet.
847
- */
848
- managed_fleets_cpu_max: number;
849
- /**
850
- * List of Cloudfleet cluster tiers available for the organization.
851
- */
852
- cluster_tiers: Array<string>;
853
- /**
854
- * List of Cloudfleet control plane regions available for the organization.
855
- */
856
- regions: Array<string>;
857
- /**
858
- * List of CFKE control plane versions available for the organization.
744
+ * Platform information for the manifest.
859
745
  */
860
- versions: Array<{
746
+ platform?: {
861
747
  /**
862
- * Id of the control plane version. Used in API calls.
748
+ * Architecture of the platform.
863
749
  */
864
- id: string;
750
+ architecture: string;
865
751
  /**
866
- * Label of the control plane version. Used in frontent UI.
752
+ * Operating system of the platform.
867
753
  */
868
- label: string;
869
- }>;
870
- };
871
- /**
872
- * List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.
873
- */
874
- pending_actions: Array<'signup-billing-address' | 'signup-payment-method' | 'signup-invite-team' | 'signup-create-cluster'>;
875
- /**
876
- * Status of the organization. Can be `active` or `closed`, or `suspended`.
877
- */
878
- status: 'active' | 'closed' | 'suspended';
879
- };
880
- export type OrganizationUpdateInput = {
881
- /**
882
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
883
- */
884
- name?: string;
885
- /**
886
- * Organization contact information and billing address.
887
- */
888
- contactInfo: {
889
- /**
890
- * Street address, P.O. box, c/o
891
- */
892
- address1?: string;
893
- /**
894
- * Apartment, suite, unit, building, floor, etc.
895
- */
896
- address2?: string;
897
- /**
898
- * Postal code as a string.
899
- */
900
- postalCode?: string;
901
- /**
902
- * City or town name.
903
- */
904
- city?: string;
905
- /**
906
- * State, province, or region name.
907
- */
908
- state?: string;
909
- /**
910
- * Country as a ISO 3166-1 alpha-2 country code.
911
- */
912
- country?: string;
913
- /**
914
- * Phone number as a string.
915
- */
916
- phone?: string;
917
- /**
918
- * Email address used for billing as a string.
919
- */
920
- email: string;
921
- /**
922
- * First name of the billing contact person.
923
- */
924
- first_name: string;
925
- /**
926
- * Last name of the billing contact person.
927
- */
928
- last_name: string;
929
- };
930
- };
931
- export type PaymentMethod = {
932
- /**
933
- * Unique identifier of the organization. UUID v4 string in canonical form.
934
- */
935
- id: string;
754
+ os: string;
755
+ };
756
+ }>;
936
757
  /**
937
- * Whether organization payment method was set up and ready to use for payments.
758
+ * Total size of the tag in bytes.
938
759
  */
939
- setup: boolean;
760
+ size: number;
940
761
  /**
941
- * Payment method type type. Only `card` payments supported at the moment.
762
+ * Registry region.
942
763
  */
943
- type: 'card';
944
- /**
945
- * Last 4 digits of the payment card number.
946
- */
947
- last4: string;
764
+ region: string;
948
765
  /**
949
- * Two-digit number representing the card's expiration month.
766
+ * Repository name.
950
767
  */
951
- exp_month: number;
768
+ repository: string;
952
769
  /**
953
- * Four-digit number representing the card's expiration year.
770
+ * Full URI of the tag.
954
771
  */
955
- exp_year: number;
956
- /**
957
- * Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
958
- */
959
- brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
772
+ uri: string;
960
773
  };
961
774
  export type TokenCreateInput = {
962
775
  /**
@@ -986,49 +799,99 @@ export type Token = {
986
799
  */
987
800
  secret?: string;
988
801
  /**
989
- * Creation date of the access token. ISO 8601 date string in UTC timezone
802
+ * Creation date of the access token. ISO 8601 date string in UTC timezone
803
+ */
804
+ date_created: string;
805
+ };
806
+ export type TokenUpdateInput = {
807
+ /**
808
+ * Human readable access token name.
809
+ */
810
+ name?: string;
811
+ /**
812
+ * Role assumed by the token.
813
+ */
814
+ role?: 'Administrator' | 'User';
815
+ };
816
+ export type UsageFacets = {
817
+ /**
818
+ * List of unique cluster IDs
819
+ */
820
+ cluster_id?: Array<string>;
821
+ /**
822
+ * List of unique products
990
823
  */
991
- date_created: string;
824
+ product?: Array<string>;
992
825
  };
993
- export type TokenUpdateInput = {
826
+ export type UsageResponse = {
994
827
  /**
995
- * Human readable access token name.
828
+ * Usage data
996
829
  */
997
- name?: string;
830
+ data: Array<{
831
+ /**
832
+ * Hour of the usage
833
+ */
834
+ hour: string;
835
+ /**
836
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
837
+ */
838
+ cluster_id: string;
839
+ /**
840
+ * The product the usage is associated with
841
+ */
842
+ product: string;
843
+ /**
844
+ * Consumption
845
+ */
846
+ value: number;
847
+ /**
848
+ * Price per unit
849
+ */
850
+ price: number;
851
+ /**
852
+ * Total cost
853
+ */
854
+ total: number;
855
+ }>;
998
856
  /**
999
- * Role assumed by the token.
857
+ * Facets for filtering
1000
858
  */
1001
- role?: 'Administrator' | 'User';
859
+ facets: {
860
+ /**
861
+ * List of unique cluster IDs
862
+ */
863
+ cluster_id?: Array<string>;
864
+ /**
865
+ * List of unique products
866
+ */
867
+ product?: Array<string>;
868
+ };
1002
869
  };
1003
870
  export type Usage = {
1004
871
  /**
1005
- * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
872
+ * Hour of the usage
1006
873
  */
1007
- cluster_id: string;
874
+ hour: string;
1008
875
  /**
1009
- * Hour of the usage
876
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
1010
877
  */
1011
- hour?: string;
878
+ cluster_id: string;
1012
879
  /**
1013
- * Tier of the cluster.
880
+ * The product the usage is associated with
1014
881
  */
1015
- cluster_tier: '';
882
+ product: string;
1016
883
  /**
1017
- * Name of the Kubernetes node
884
+ * Consumption
1018
885
  */
1019
- node_name: string;
886
+ value: number;
1020
887
  /**
1021
- * SKU of the Kubernetes node
888
+ * Price per unit
1022
889
  */
1023
- sku: string;
1024
- cpu: number | '';
1025
- price: number | '';
1026
- volume: number | '';
1027
- total: number | '';
890
+ price: number;
1028
891
  /**
1029
- * Type of usage.
892
+ * Total cost
1030
893
  */
1031
- usage_type: 'managed-compute' | 'control-plane-nodes' | 'control-plane';
894
+ total: number;
1032
895
  };
1033
896
  export type UserCreateInput = {
1034
897
  /**
@@ -1048,7 +911,7 @@ export type UserCreateInput = {
1048
911
  */
1049
912
  code: string;
1050
913
  /**
1051
- * 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.
914
+ * User password. Must be at least 8 characters long.
1052
915
  */
1053
916
  password: string;
1054
917
  /**
@@ -1089,16 +952,6 @@ export type User = {
1089
952
  * Creation date of the user. ISO 8601 date string in UTC timezone
1090
953
  */
1091
954
  date_created: string;
1092
- cluster_permissions?: Array<{
1093
- /**
1094
- * Unique identifier of the cluster. UUID v4 string in canonical form
1095
- */
1096
- cluster_id: string;
1097
- /**
1098
- * User permissions to access the cluster. Can be `readwrite` or `readonly`.
1099
- */
1100
- permissions: 'readwrite' | 'readonly';
1101
- }>;
1102
955
  };
1103
956
  export type UserUpdateInput = {
1104
957
  /**
@@ -1125,7 +978,12 @@ export type UserUpdateInput = {
1125
978
  export type GetUsageData = {
1126
979
  body?: never;
1127
980
  path?: never;
1128
- query?: never;
981
+ query?: {
982
+ /**
983
+ * Time granularity for usage aggregation - hourly (Past 48 hours aggregated by hour), daily (Past 30 days aggregated by day), monthly (Past 12 months aggregated by month)
984
+ */
985
+ granularity?: 'hourly' | 'daily' | 'monthly';
986
+ };
1129
987
  url: '/billing/usage';
1130
988
  };
1131
989
  export type GetUsageErrors = {
@@ -1136,24 +994,11 @@ export type GetUsageErrors = {
1136
994
  };
1137
995
  export type GetUsageResponses = {
1138
996
  /**
1139
- * An array of usage records.
997
+ * Usage data with facets for filtering
1140
998
  */
1141
- 200: Array<Usage>;
999
+ 200: UsageResponse;
1142
1000
  };
1143
1001
  export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
1144
- export type GetBalanceData = {
1145
- body?: never;
1146
- path?: never;
1147
- query?: never;
1148
- url: '/billing/balance';
1149
- };
1150
- export type GetBalanceResponses = {
1151
- /**
1152
- * Current balance of the organization in USD as a floating-point number.
1153
- */
1154
- 200: number;
1155
- };
1156
- export type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
1157
1002
  export type GetPaymentMethodData = {
1158
1003
  body?: never;
1159
1004
  path?: never;
@@ -1195,16 +1040,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
1195
1040
  export type ListInvoicesData = {
1196
1041
  body?: never;
1197
1042
  path?: never;
1198
- query: {
1199
- /**
1200
- * Start date for the usage. Date of oldest data point to retrieve.
1201
- */
1202
- start_date: string;
1203
- /**
1204
- * End date for the usage. Date of newest data point to retrieve.
1205
- */
1206
- end_date: string;
1207
- };
1043
+ query?: never;
1208
1044
  url: '/billing/invoices';
1209
1045
  };
1210
1046
  export type ListInvoicesErrors = {
@@ -1220,26 +1056,182 @@ export type ListInvoicesResponses = {
1220
1056
  200: Array<Invoice>;
1221
1057
  };
1222
1058
  export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1223
- export type GetInvoiceData = {
1059
+ export type GetContactData = {
1060
+ body?: never;
1061
+ path?: never;
1062
+ query?: never;
1063
+ url: '/billing/contact';
1064
+ };
1065
+ export type GetContactResponses = {
1066
+ /**
1067
+ * Returns a single object containing organization contact and billing address details.
1068
+ */
1069
+ 200: BillingContact;
1070
+ };
1071
+ export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
1072
+ export type UpdateContactData = {
1073
+ body: BillingContact;
1074
+ path?: never;
1075
+ query?: never;
1076
+ url: '/billing/contact';
1077
+ };
1078
+ export type UpdateContactResponses = {
1079
+ /**
1080
+ * Successfully updated. Returns updated organization details.
1081
+ */
1082
+ 200: BillingContact;
1083
+ };
1084
+ export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
1085
+ export type GetCreditsData = {
1086
+ body?: never;
1087
+ path?: never;
1088
+ query?: never;
1089
+ url: '/billing/credits';
1090
+ };
1091
+ export type GetCreditsErrors = {
1092
+ /**
1093
+ * Not authenticated
1094
+ */
1095
+ 401: unknown;
1096
+ };
1097
+ export type GetCreditsResponses = {
1098
+ /**
1099
+ * An array of the applied promotional credits records.
1100
+ */
1101
+ 200: Array<BillingCredits>;
1102
+ };
1103
+ export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
1104
+ export type RedeemCreditsData = {
1105
+ body: {
1106
+ /**
1107
+ * Promotional code to redeem
1108
+ */
1109
+ code?: string;
1110
+ };
1111
+ path?: never;
1112
+ query?: never;
1113
+ url: '/billing/credits';
1114
+ };
1115
+ export type RedeemCreditsErrors = {
1116
+ /**
1117
+ * Not authenticated
1118
+ */
1119
+ 401: unknown;
1120
+ };
1121
+ export type RedeemCreditsResponses = {
1122
+ /**
1123
+ * Successfully created a new organization.
1124
+ */
1125
+ 200: unknown;
1126
+ };
1127
+ export type ListChartsData = {
1224
1128
  body?: never;
1225
1129
  path: {
1226
1130
  /**
1227
- * Unique invoice identifier. UUID v4 string in canonical form
1131
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1228
1132
  */
1229
- id: string;
1133
+ cluster_id: string;
1230
1134
  };
1231
1135
  query?: never;
1232
- url: '/billing/invoices/{id}';
1136
+ url: '/clusters/{cluster_id}/charts';
1233
1137
  };
1234
- export type GetInvoiceResponses = {
1138
+ export type ListChartsErrors = {
1235
1139
  /**
1236
- * Returns a single Invoice HTML representation under `html` property.
1140
+ * Not authenticated
1237
1141
  */
1238
- 200: {
1239
- html?: string;
1142
+ 401: unknown;
1143
+ };
1144
+ export type ListChartsResponses = {
1145
+ /**
1146
+ * An array of charts
1147
+ */
1148
+ 200: Array<Chart>;
1149
+ };
1150
+ export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
1151
+ export type CreateChartData = {
1152
+ body: ChartCreateInput;
1153
+ path: {
1154
+ /**
1155
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1156
+ */
1157
+ cluster_id: string;
1158
+ };
1159
+ query?: never;
1160
+ url: '/clusters/{cluster_id}/charts';
1161
+ };
1162
+ export type CreateChartResponses = {
1163
+ /**
1164
+ * Successfully created. Returns created Chart ID.
1165
+ */
1166
+ 200: string;
1167
+ };
1168
+ export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
1169
+ export type DeleteChartData = {
1170
+ body?: never;
1171
+ path: {
1172
+ /**
1173
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1174
+ */
1175
+ cluster_id: string;
1176
+ /**
1177
+ * Chart deployment name as the unique identifier of the chart.
1178
+ */
1179
+ chart_name: string;
1180
+ };
1181
+ query?: never;
1182
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1183
+ };
1184
+ export type DeleteChartResponses = {
1185
+ /**
1186
+ * Successfully deleted.
1187
+ */
1188
+ 200: string;
1189
+ };
1190
+ export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
1191
+ export type GetChartData = {
1192
+ body?: never;
1193
+ path: {
1194
+ /**
1195
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1196
+ */
1197
+ cluster_id: string;
1198
+ /**
1199
+ * Chart deployment name as the unique identifier of the chart.
1200
+ */
1201
+ chart_name: string;
1202
+ };
1203
+ query?: never;
1204
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1205
+ };
1206
+ export type GetChartResponses = {
1207
+ /**
1208
+ * Returns a single object containing chart details.
1209
+ */
1210
+ 200: Chart;
1211
+ };
1212
+ export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
1213
+ export type UpdateChartData = {
1214
+ body: ChartUpdateInput;
1215
+ path: {
1216
+ /**
1217
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1218
+ */
1219
+ cluster_id: string;
1220
+ /**
1221
+ * Chart deployment name as the unique identifier of the chart.
1222
+ */
1223
+ chart_name: string;
1240
1224
  };
1225
+ query?: never;
1226
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1227
+ };
1228
+ export type UpdateChartResponses = {
1229
+ /**
1230
+ * Successfully updated.
1231
+ */
1232
+ 200: string;
1241
1233
  };
1242
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1234
+ export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
1243
1235
  export type ListFleetsData = {
1244
1236
  body?: never;
1245
1237
  path: {
@@ -1458,296 +1450,50 @@ export type GetClusterResponses = {
1458
1450
  * Returns a single object containing cluster details.
1459
1451
  */
1460
1452
  200: Cluster;
1461
- };
1462
- export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
1463
- export type UpdateClusterData = {
1464
- body: ClusterUpdateInput;
1465
- path: {
1466
- /**
1467
- * Unique identifier of the cluster. UUID v4 string in canonical form
1468
- */
1469
- cluster_id: string;
1470
- };
1471
- query?: never;
1472
- url: '/clusters/{cluster_id}';
1473
- };
1474
- export type UpdateClusterResponses = {
1475
- /**
1476
- * Successfully updated. Returns updated cluster details.
1477
- */
1478
- 200: Cluster;
1479
- };
1480
- export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
1481
- export type GetJoinInformationData = {
1482
- body?: never;
1483
- path: {
1484
- /**
1485
- * Unique identifier of the cluster. UUID v4 string in canonical form
1486
- */
1487
- cluster_id: string;
1488
- };
1489
- query?: never;
1490
- url: '/clusters/{cluster_id}/join_information';
1491
- };
1492
- export type GetJoinInformationErrors = {
1493
- /**
1494
- * Not authenticated
1495
- */
1496
- 401: unknown;
1497
- };
1498
- export type GetJoinInformationResponses = {
1499
- /**
1500
- * An object of cluster join information
1501
- */
1502
- 200: Cluster;
1503
- };
1504
- export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1505
- export type GetInfrastructureData = {
1506
- body?: never;
1507
- path?: never;
1508
- query?: {
1509
- /**
1510
- * Version of the task definition. Currently only version 1 is supported.
1511
- */
1512
- version?: 1;
1513
- /**
1514
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
1515
- */
1516
- provider?: Array<string>;
1517
- /**
1518
- * 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/)
1519
- */
1520
- region?: Array<string>;
1521
- /**
1522
- * 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/)
1523
- */
1524
- sub_region?: Array<string>;
1525
- /**
1526
- * Limits selection of cloud regions to this list of canonical provider regions
1527
- */
1528
- csp_region?: Array<string>;
1529
- /**
1530
- * Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
1531
- */
1532
- instance_type?: Array<string>;
1533
- /**
1534
- * 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
1535
- */
1536
- accelerator_name?: Array<string>;
1537
- /**
1538
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1539
- */
1540
- accelerator_manufacturer?: Array<string>;
1541
- /**
1542
- * 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.
1543
- */
1544
- accelerator_count_min?: number;
1545
- /**
1546
- * 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.
1547
- */
1548
- accelerator_count_max?: number;
1549
- /**
1550
- * 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
1551
- */
1552
- accelerator_memory_min?: number;
1553
- /**
1554
- * 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
1555
- */
1556
- accelerator_memory_max?: number;
1557
- /**
1558
- * Minimum amount of RAM in gibibytes (GiB)
1559
- */
1560
- memory_min?: number;
1561
- /**
1562
- * Maximum amount of RAM in gibibytes (GiB)
1563
- */
1564
- memory_max?: number;
1565
- /**
1566
- * 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.
1567
- */
1568
- vcpu_min?: number;
1569
- /**
1570
- * 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.
1571
- */
1572
- vcpu_max?: number;
1573
- /**
1574
- * Minimum total storage in GiB (attached and local)
1575
- */
1576
- storage_total_min?: number;
1577
- /**
1578
- * Maximum total storage in GiB (attached and local)
1579
- */
1580
- storage_total_max?: number;
1581
- /**
1582
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
1583
- */
1584
- storage_local_min?: number;
1585
- /**
1586
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
1587
- */
1588
- storage_local_max?: number;
1589
- /**
1590
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1591
- */
1592
- price_min?: number;
1453
+ };
1454
+ export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
1455
+ export type UpdateClusterData = {
1456
+ body: ClusterUpdateInput;
1457
+ path: {
1593
1458
  /**
1594
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1459
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1595
1460
  */
1596
- price_max?: number;
1461
+ cluster_id: string;
1597
1462
  };
1598
- url: '/infrastructure';
1599
- };
1600
- export type GetInfrastructureErrors = {
1601
- /**
1602
- * Returns a validation error if any of the search parameters in the request are invalid
1603
- */
1604
- 400: Blob | File;
1463
+ query?: never;
1464
+ url: '/clusters/{cluster_id}';
1605
1465
  };
1606
- export type GetInfrastructureError = GetInfrastructureErrors[keyof GetInfrastructureErrors];
1607
- export type GetInfrastructureResponses = {
1466
+ export type UpdateClusterResponses = {
1608
1467
  /**
1609
- * An array of instances returned by the search
1468
+ * Successfully updated. Returns updated cluster details.
1610
1469
  */
1611
- 200: Array<InfrastructureInstance>;
1470
+ 200: Cluster;
1612
1471
  };
1613
- export type GetInfrastructureResponse = GetInfrastructureResponses[keyof GetInfrastructureResponses];
1614
- export type GetFacetsData = {
1472
+ export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
1473
+ export type GetJoinInformationData = {
1615
1474
  body?: never;
1616
- path?: never;
1475
+ path: {
1476
+ /**
1477
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1478
+ */
1479
+ cluster_id: string;
1480
+ };
1617
1481
  query?: never;
1618
- url: '/infrastructure/facets';
1482
+ url: '/clusters/{cluster_id}/join_information';
1619
1483
  };
1620
- export type GetFacetsResponses = {
1484
+ export type GetJoinInformationErrors = {
1621
1485
  /**
1622
- * Calculates search facets of the infrastructure catalog
1486
+ * Not authenticated
1623
1487
  */
1624
- 200: Array<{
1625
- /**
1626
- * Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
1627
- */
1628
- provider?: Array<string>;
1629
- /**
1630
- * 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/)
1631
- */
1632
- region?: Array<string>;
1633
- /**
1634
- * Limits selection of cloud sub-regions to this list of Cloudfleet sub-regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
1635
- */
1636
- sub_region?: Array<string>;
1637
- /**
1638
- * Limits selection of cloud regions to this list of canonical provider regions
1639
- */
1640
- csp_region?: Array<string>;
1641
- /**
1642
- * 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.
1643
- */
1644
- vcpu_min?: number;
1645
- /**
1646
- * 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.
1647
- */
1648
- vcpu_max?: number;
1649
- /**
1650
- * Minimum amount of RAM in gibibytes (GiB)
1651
- */
1652
- memory_min?: number;
1653
- /**
1654
- * Maximum amount of RAM in gibibytes (GiB)
1655
- */
1656
- memory_max?: number;
1657
- /**
1658
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
1659
- */
1660
- storage_local_min?: number;
1661
- /**
1662
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
1663
- */
1664
- storage_local_max?: number;
1665
- /**
1666
- * 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
1667
- */
1668
- accelerator_name?: Array<string>;
1669
- /**
1670
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1671
- */
1672
- accelerator_manufacturer?: Array<string>;
1673
- /**
1674
- * 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.
1675
- */
1676
- accelerator_count_min?: number;
1677
- /**
1678
- * 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.
1679
- */
1680
- accelerator_count_max?: number;
1681
- /**
1682
- * 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
1683
- */
1684
- accelerator_memory_min?: number;
1685
- /**
1686
- * 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
1687
- */
1688
- accelerator_memory_max?: number;
1689
- /**
1690
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1691
- */
1692
- price_min?: number;
1693
- /**
1694
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1695
- */
1696
- price_max?: number;
1697
- /**
1698
- * Structured array of regions and sub-regions
1699
- */
1700
- regions_struct?: Array<{
1701
- /**
1702
- * 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/)
1703
- */
1704
- region?: string;
1705
- sub_region?: Array<string>;
1706
- }>;
1707
- /**
1708
- * Structured array of regions and sub-regions
1709
- */
1710
- accelerators_struct?: Array<{
1711
- /**
1712
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
1713
- */
1714
- accelerator_manufacturer?: string;
1715
- accelerator_name?: Array<string>;
1716
- }>;
1717
- /**
1718
- * Total number of instances in the catalog
1719
- */
1720
- count_total?: number;
1721
- /**
1722
- * Total number of instances in the catalog with at least 1 accelerator
1723
- */
1724
- count_accelerators?: number;
1725
- /**
1726
- * Total number of unique instances types in the catalog
1727
- */
1728
- count_instance_types?: number;
1729
- /**
1730
- * Total number of unique instances types in the catalog with at least 1 accelerator
1731
- */
1732
- count_accelerators_instance_types?: number;
1733
- }>;
1734
- };
1735
- export type GetFacetsResponse = GetFacetsResponses[keyof GetFacetsResponses];
1736
- export type GetRegionsData = {
1737
- body?: never;
1738
- path?: never;
1739
- query?: never;
1740
- url: '/infrastructure/regions';
1488
+ 401: unknown;
1741
1489
  };
1742
- export type GetRegionsResponses = {
1490
+ export type GetJoinInformationResponses = {
1743
1491
  /**
1744
- * Available Cloudfleet regions and Kubernetes versions.
1492
+ * An object of cluster join information
1745
1493
  */
1746
- 200: {
1747
- [key: string]: unknown;
1748
- };
1494
+ 200: ClusterJoinInformation;
1749
1495
  };
1750
- export type GetRegionsResponse = GetRegionsResponses[keyof GetRegionsResponses];
1496
+ export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1751
1497
  export type ListInvitesData = {
1752
1498
  body?: never;
1753
1499
  path?: never;
@@ -1820,6 +1566,85 @@ export type DeleteInviteResponses = {
1820
1566
  */
1821
1567
  200: unknown;
1822
1568
  };
1569
+ export type ListMarketplaceChartsData = {
1570
+ body?: never;
1571
+ path?: never;
1572
+ query?: never;
1573
+ url: '/marketplace';
1574
+ };
1575
+ export type ListMarketplaceChartsErrors = {
1576
+ /**
1577
+ * Not authenticated
1578
+ */
1579
+ 401: unknown;
1580
+ };
1581
+ export type ListMarketplaceChartsResponses = {
1582
+ /**
1583
+ * An array of chart listings in the marketplace.
1584
+ */
1585
+ 200: Array<MarketplaceListing>;
1586
+ };
1587
+ export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1588
+ export type GetMarketplaceChartData = {
1589
+ body?: never;
1590
+ path: {
1591
+ /**
1592
+ * Unique identifier of the chart listing in the marketplace.
1593
+ */
1594
+ listing_id: string;
1595
+ };
1596
+ query?: never;
1597
+ url: '/marketplace/{listing_id}';
1598
+ };
1599
+ export type GetMarketplaceChartResponses = {
1600
+ /**
1601
+ * Returns an object containing the chart listing details.
1602
+ */
1603
+ 200: MarketplaceListing;
1604
+ };
1605
+ export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
1606
+ export type PostMcpData = {
1607
+ /**
1608
+ * JSON-RPC 2.0 request payload
1609
+ */
1610
+ body: {
1611
+ jsonrpc?: string;
1612
+ method?: string;
1613
+ id?: string | number;
1614
+ /**
1615
+ * Method-specific parameters
1616
+ */
1617
+ params?: {
1618
+ [key: string]: unknown;
1619
+ };
1620
+ };
1621
+ path?: never;
1622
+ query?: never;
1623
+ url: '/mcp';
1624
+ };
1625
+ export type PostMcpErrors = {
1626
+ /**
1627
+ * Not authenticated
1628
+ */
1629
+ 401: unknown;
1630
+ };
1631
+ export type PostMcpResponses = {
1632
+ /**
1633
+ * JSON-RPC 2.0 success or error response
1634
+ */
1635
+ 200: {
1636
+ jsonrpc?: string;
1637
+ id?: string | number;
1638
+ result?: {
1639
+ [key: string]: unknown;
1640
+ };
1641
+ error?: {
1642
+ code?: number;
1643
+ message?: string;
1644
+ };
1645
+ };
1646
+ };
1647
+ export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
1823
1648
  export type GetOrganizationData = {
1824
1649
  body?: never;
1825
1650
  path?: never;
@@ -1841,24 +1666,148 @@ export type CreateOrganizationData = {
1841
1666
  };
1842
1667
  export type CreateOrganizationResponses = {
1843
1668
  /**
1844
- * Successfully created a new organization. Returns organization details.
1669
+ * Successfully created a new organization.
1845
1670
  */
1846
- 200: Organization;
1671
+ 200: unknown;
1847
1672
  };
1848
- export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
1849
- export type UpdateOrganizationData = {
1850
- body: OrganizationUpdateInput;
1673
+ export type ListRepositoriesData = {
1674
+ body?: never;
1851
1675
  path?: never;
1852
1676
  query?: never;
1853
- url: '/organization';
1677
+ url: '/registry';
1854
1678
  };
1855
- export type UpdateOrganizationResponses = {
1679
+ export type ListRepositoriesErrors = {
1856
1680
  /**
1857
- * Successfully updated. Returns updated organization details.
1681
+ * Not authenticated
1858
1682
  */
1859
- 200: Organization;
1683
+ 401: unknown;
1684
+ /**
1685
+ * Internal server error
1686
+ */
1687
+ 500: unknown;
1688
+ };
1689
+ export type ListRepositoriesResponses = {
1690
+ /**
1691
+ * List of repositories
1692
+ */
1693
+ 200: Array<RegistryRepository>;
1694
+ };
1695
+ export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
1696
+ export type ListTagsData = {
1697
+ body?: never;
1698
+ path: {
1699
+ /**
1700
+ * Region where the repository is located
1701
+ */
1702
+ region: string;
1703
+ /**
1704
+ * Name of the repository
1705
+ */
1706
+ repository: string;
1707
+ };
1708
+ query?: never;
1709
+ url: '/registry/{region}/{repository}';
1710
+ };
1711
+ export type ListTagsErrors = {
1712
+ /**
1713
+ * Not authenticated
1714
+ */
1715
+ 401: unknown;
1716
+ /**
1717
+ * Repository not found
1718
+ */
1719
+ 404: unknown;
1720
+ /**
1721
+ * Internal server error
1722
+ */
1723
+ 500: unknown;
1724
+ };
1725
+ export type ListTagsResponses = {
1726
+ /**
1727
+ * Repository with tags
1728
+ */
1729
+ 200: RegistryRepositoryWithTags;
1730
+ };
1731
+ export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
1732
+ export type DeleteTagData = {
1733
+ body?: never;
1734
+ path: {
1735
+ /**
1736
+ * Region where the repository is located
1737
+ */
1738
+ region: string;
1739
+ /**
1740
+ * Name of the repository
1741
+ */
1742
+ repository: string;
1743
+ /**
1744
+ * Name of the tag
1745
+ */
1746
+ tag: string;
1747
+ };
1748
+ query?: never;
1749
+ url: '/registry/{region}/{repository}/{tag}';
1750
+ };
1751
+ export type DeleteTagErrors = {
1752
+ /**
1753
+ * Not authenticated
1754
+ */
1755
+ 401: unknown;
1756
+ /**
1757
+ * Tag not found
1758
+ */
1759
+ 404: unknown;
1760
+ /**
1761
+ * Internal server error
1762
+ */
1763
+ 500: unknown;
1860
1764
  };
1861
- export type UpdateOrganizationResponse = UpdateOrganizationResponses[keyof UpdateOrganizationResponses];
1765
+ export type DeleteTagResponses = {
1766
+ /**
1767
+ * Tag successfully deleted
1768
+ */
1769
+ 200: unknown;
1770
+ };
1771
+ export type GetTagData = {
1772
+ body?: never;
1773
+ path: {
1774
+ /**
1775
+ * Region where the repository is located
1776
+ */
1777
+ region: string;
1778
+ /**
1779
+ * Name of the repository
1780
+ */
1781
+ repository: string;
1782
+ /**
1783
+ * Name of the tag
1784
+ */
1785
+ tag: string;
1786
+ };
1787
+ query?: never;
1788
+ url: '/registry/{region}/{repository}/{tag}';
1789
+ };
1790
+ export type GetTagErrors = {
1791
+ /**
1792
+ * Not authenticated
1793
+ */
1794
+ 401: unknown;
1795
+ /**
1796
+ * Tag not found
1797
+ */
1798
+ 404: unknown;
1799
+ /**
1800
+ * Internal server error
1801
+ */
1802
+ 500: unknown;
1803
+ };
1804
+ export type GetTagResponses = {
1805
+ /**
1806
+ * Tag details
1807
+ */
1808
+ 200: RegistryTag;
1809
+ };
1810
+ export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
1862
1811
  export type ListTokensData = {
1863
1812
  body?: never;
1864
1813
  path?: never;
@@ -2115,53 +2064,4 @@ export type UpdateUserResponses = {
2115
2064
  200: User;
2116
2065
  };
2117
2066
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
2118
- export type DeleteClusterPermissionsData = {
2119
- body?: never;
2120
- path: {
2121
- /**
2122
- * Unique user identifier. UUID v4 string in canonical form
2123
- */
2124
- user_id: string;
2125
- /**
2126
- * Unique cluster identifier. UUID v4 string in canonical form
2127
- */
2128
- cluster_id: string;
2129
- };
2130
- query?: never;
2131
- url: '/users/{user_id}/clusters/{cluster_id}';
2132
- };
2133
- export type DeleteClusterPermissionsResponses = {
2134
- /**
2135
- * Successfully removed user from the cluster. Returns updated user details.
2136
- */
2137
- 200: User;
2138
- };
2139
- export type DeleteClusterPermissionsResponse = DeleteClusterPermissionsResponses[keyof DeleteClusterPermissionsResponses];
2140
- export type SetClusterPermissionsData = {
2141
- body: {
2142
- /**
2143
- * Level of permissions for the user to access the cluster
2144
- */
2145
- permissions?: 'readwrite' | 'readonly';
2146
- };
2147
- path: {
2148
- /**
2149
- * Unique user identifier. UUID v4 string in canonical form
2150
- */
2151
- user_id: string;
2152
- /**
2153
- * Unique cluster identifier. UUID v4 string in canonical form
2154
- */
2155
- cluster_id: string;
2156
- };
2157
- query?: never;
2158
- url: '/users/{user_id}/clusters/{cluster_id}';
2159
- };
2160
- export type SetClusterPermissionsResponses = {
2161
- /**
2162
- * Successfully created. Returns created user details.
2163
- */
2164
- 200: User;
2165
- };
2166
- export type SetClusterPermissionsResponse = SetClusterPermissionsResponses[keyof SetClusterPermissionsResponses];
2167
2067
  //# sourceMappingURL=types.gen.d.ts.map