@cloudfleet/sdk 0.0.1-3c16772 → 0.0.1-3d290f0

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 +899 -1054
  58. package/dist/schemas.gen.d.ts.map +1 -1
  59. package/dist/schemas.gen.js +915 -1097
  60. package/dist/schemas.gen.js.map +1 -1
  61. package/dist/sdk.gen.d.ts +220 -142
  62. package/dist/sdk.gen.d.ts.map +1 -1
  63. package/dist/sdk.gen.js +302 -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 +920 -956
  78. package/dist/types.gen.d.ts.map +1 -1
  79. package/dist/zod.gen.d.ts +1884 -2739
  80. package/dist/zod.gen.d.ts.map +1 -1
  81. package/dist/zod.gen.js +924 -900
  82. package/dist/zod.gen.js.map +1 -1
  83. package/package.json +8 -5
@@ -1,20 +1,181 @@
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
  */
17
- version_channel?: string;
178
+ version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
18
179
  };
19
180
  export type ClusterJoinInformation = {
20
181
  /**
@@ -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,18 +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';
84
245
  /**
85
- * Version of the kubernetes cluster.
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.
86
247
  */
87
- version_channel?: string;
248
+ region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
88
249
  /**
89
250
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
90
251
  */
@@ -92,7 +253,7 @@ export type Cluster = {
92
253
  /**
93
254
  * Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
94
255
  */
95
- status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
256
+ status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
96
257
  endpoint?: string | '';
97
258
  /**
98
259
  * Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
@@ -114,12 +275,20 @@ export type Cluster = {
114
275
  * Indicates if the cluster is ready to be used.
115
276
  */
116
277
  ready?: boolean;
278
+ /**
279
+ * Version of the kubernetes cluster.
280
+ */
281
+ version_channel?: string;
117
282
  };
118
283
  export type ClusterUpdateInput = {
119
284
  /**
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,178 +398,6 @@ export type FleetUpdateInput = {
237
398
  controllerRoleArn: string;
238
399
  };
239
400
  };
240
- export type InfrastructureFilter = {
241
- /**
242
- * Version of the infrastructure filter definition. Currently only version 1 is supported.
243
- */
244
- version?: 1;
245
- /**
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/)
247
- */
248
- provider?: Array<string>;
249
- /**
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/)
251
- */
252
- region?: Array<string>;
253
- /**
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/)
255
- */
256
- sub_region?: Array<string>;
257
- /**
258
- * Limits selection of cloud regions to this list of canonical provider regions
259
- */
260
- csp_region?: Array<string>;
261
- /**
262
- * Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
263
- */
264
- instance_type?: Array<string>;
265
- /**
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
267
- */
268
- accelerator_name?: Array<string>;
269
- /**
270
- * List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
271
- */
272
- accelerator_manufacturer?: Array<string>;
273
- /**
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.
275
- */
276
- accelerator_count_min?: number;
277
- /**
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.
279
- */
280
- accelerator_count_max?: number;
281
- /**
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
283
- */
284
- accelerator_memory_min?: number;
285
- /**
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
287
- */
288
- accelerator_memory_max?: number;
289
- /**
290
- * Minimum amount of RAM in gibibytes (GiB)
291
- */
292
- memory_min?: number;
293
- /**
294
- * Maximum amount of RAM in gibibytes (GiB)
295
- */
296
- memory_max?: number;
297
- /**
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.
299
- */
300
- vcpu_min?: number;
301
- /**
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.
303
- */
304
- vcpu_max?: number;
305
- /**
306
- * Minimum total storage in GiB (attached and local)
307
- */
308
- storage_total_min?: number;
309
- /**
310
- * Maximum total storage in GiB (attached and local)
311
- */
312
- storage_total_max?: number;
313
- /**
314
- * Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
315
- */
316
- storage_local_min?: number;
317
- /**
318
- * Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
319
- */
320
- storage_local_max?: number;
321
- /**
322
- * Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
323
- */
324
- price_min?: number;
325
- /**
326
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
327
- */
328
- price_max?: number;
329
- };
330
- export type InfrastructureInstance = {
331
- /**
332
- * Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.
333
- */
334
- sku: string;
335
- /**
336
- * Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
337
- */
338
- provider: string;
339
- /**
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/)
341
- */
342
- region: string;
343
- /**
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/)
345
- */
346
- sub_region: string;
347
- /**
348
- * Region as defined by the cloud service provider
349
- */
350
- csp_region: string;
351
- /**
352
- * Availability zone as defined by the cloud service provider
353
- */
354
- csp_zone: string;
355
- /**
356
- * Instance / VM type as defined by the cloud service provider
357
- */
358
- instance_type: string;
359
- /**
360
- * Instance CPU architecture
361
- */
362
- architecture: string;
363
- /**
364
- * Instance operating system
365
- */
366
- os: string;
367
- /**
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.
369
- */
370
- vcpu: number;
371
- /**
372
- * Total amount of RAM in gibibytes (GiB)
373
- */
374
- memory: number;
375
- /**
376
- * Volume of directly attached, block-device local storage in gibibytes (GiB)
377
- */
378
- local_storage: number;
379
- /**
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
381
- */
382
- accelerator_name?: string;
383
- /**
384
- * Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
385
- */
386
- accelerator_manufacturer?: string;
387
- /**
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.
389
- */
390
- accelerator_count?: number;
391
- /**
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
393
- */
394
- accelerator_memory?: number;
395
- /**
396
- * Maximum number of pods that can be run on this instance type.
397
- */
398
- pods_capacity?: number;
399
- /**
400
- * Capacity type of the instance. E.g. `on-demand`, `spot`.
401
- */
402
- capacity_type?: string;
403
- /**
404
- * Price of running the inctance per hour in USD as defined by the cloud service provider
405
- */
406
- price: number;
407
- /**
408
- * Whether this instance type is available.
409
- */
410
- available?: boolean;
411
- };
412
401
  export type Invite = {
413
402
  /**
414
403
  * Unique identifier of the invitation.
@@ -433,265 +422,119 @@ export type Invite = {
433
422
  };
434
423
  export type Invoice = {
435
424
  /**
436
- * Unique identifier of the invoice. UUID v4 string in canonical form
425
+ * Unique identifier of the invoice.
437
426
  */
438
427
  id?: string;
439
- /**
440
- * Unique identifier of the organization. UUID v4 string in canonical form
441
- */
442
- organizationId?: string;
428
+ number?: string;
443
429
  /**
444
430
  * Status of the invoice
445
431
  */
446
- status?: 'DRAFT' | 'COMMITTED' | 'VOID';
432
+ status?: string;
447
433
  /**
448
434
  * Total amount of the invoice
449
435
  */
450
- amount?: number;
436
+ total?: number;
451
437
  /**
452
438
  * Currency of the invoice
453
439
  */
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';
440
+ currency?: string;
455
441
  /**
456
- * Total amount of credit adjustments
442
+ * Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
457
443
  */
458
- creditAdj?: number;
444
+ created: string;
459
445
  /**
460
- * Total amount of refund adjustments
446
+ * Billing period start timestamp. ISO 8601 date string in the UTC timezone.
461
447
  */
462
- refundAdj?: number;
448
+ period_start: string;
463
449
  /**
464
- * Date of the invoice
450
+ * Billing period end timestamp. ISO 8601 date string in the UTC timezone.
465
451
  */
466
- invoiceDate?: string;
452
+ period_end: string;
453
+ invoice_pdf?: string;
454
+ };
455
+ export type MarketplaceListingFiles = {
467
456
  /**
468
- * Target date of the invoice
457
+ * Raw Chart.yaml content from the Helm chart
469
458
  */
470
- targetDate?: string;
459
+ chartYaml?: string;
471
460
  /**
472
- * Number of the invoice
461
+ * Raw values.yaml content from the Helm chart
473
462
  */
474
- invoiceNumber?: string;
463
+ valuesYaml?: string;
475
464
  /**
476
- * Balance of the invoice
465
+ * JSON schema for values.yaml as a string
477
466
  */
478
- balance?: number;
467
+ valuesSchemaJson?: string;
468
+ };
469
+ export type MarketplaceListing = {
479
470
  /**
480
- * Bundle keys of the invoice
471
+ * Name of the chart
481
472
  */
482
- bundleKeys?: string;
473
+ name: string;
483
474
  /**
484
- * Credits of the invoice
475
+ * Available versions of the chart
485
476
  */
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;
495
- /**
496
- * Name of the product
497
- */
498
- productName?: string;
499
- /**
500
- * Name of the plan
501
- */
502
- planName?: string;
503
- /**
504
- * Name of the phase
505
- */
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;
477
+ versions: Array<string>;
478
+ /**
479
+ * Version channels for the chart
480
+ */
481
+ version_channels: Array<string>;
482
+ /**
483
+ * Latest version of the chart
484
+ */
485
+ latestVersion: string;
486
+ /**
487
+ * Chart metadata
488
+ */
489
+ metadata?: {
523
490
  /**
524
- * Pretty name of the usage
491
+ * Chart name from metadata
525
492
  */
526
- prettyUsageName?: string;
493
+ name: string;
527
494
  /**
528
- * Type of the invoice item
495
+ * Chart version from metadata
529
496
  */
530
- itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
497
+ version: string;
531
498
  /**
532
- * Description of the invoice item
499
+ * Chart description
533
500
  */
534
501
  description?: string;
535
502
  /**
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
503
+ * Application version
545
504
  */
546
- amount?: number;
505
+ appVersion?: string;
547
506
  /**
548
- * Rate of the invoice item
507
+ * Helm API version
549
508
  */
550
- rate?: number;
509
+ apiVersion?: string;
551
510
  /**
552
- * Currency of the invoice item
511
+ * Chart keywords
553
512
  */
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';
513
+ keywords?: Array<string>;
555
514
  /**
556
- * Quantity of the invoice item
515
+ * Chart home URL
557
516
  */
558
- quantity?: number;
517
+ home?: string;
559
518
  /**
560
- * Details of the invoice item
519
+ * Chart source URLs
561
520
  */
562
- itemDetails?: string;
521
+ sources?: Array<string>;
563
522
  /**
564
- * Effective date of the catalog
523
+ * Chart maintainers
565
524
  */
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>;
573
- }>;
574
- /**
575
- * Items of the invoice
576
- */
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
- }>;
525
+ maintainers?: Array<{
526
+ /**
527
+ * Maintainer name
528
+ */
529
+ name: string;
530
+ /**
531
+ * Maintainer email
532
+ */
533
+ email?: string;
534
+ }>;
535
+ };
665
536
  };
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;
537
+ export type OrganizationCreateInput = {
695
538
  /**
696
539
  * Email address used for billing as a string.
697
540
  */
@@ -704,116 +547,24 @@ export type OrganizationContactInfo = {
704
547
  * Last name of the billing contact person.
705
548
  */
706
549
  last_name: string;
707
- };
708
- export type OrganizationCreateInput = {
709
550
  /**
710
551
  * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
711
552
  */
712
- name: string;
713
- /**
714
- * Organization contact information and billing address.
715
- */
716
- contactInfo: {
717
- /**
718
- * Street address, P.O. box, c/o
719
- */
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;
757
- };
553
+ company_name: string;
758
554
  /**
759
555
  * 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
556
  */
761
557
  password: string;
762
558
  };
763
559
  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.
770
- */
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;
808
- /**
809
- * Last name of the billing contact person.
810
- */
811
- last_name: string;
812
- };
813
560
  /**
814
561
  * Unique identifier of the organization. UUID v4 string in canonical form
815
562
  */
816
563
  id: string;
564
+ /**
565
+ * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
566
+ */
567
+ name?: string;
817
568
  /**
818
569
  * Creation date of the organization. ISO 8601 date string in UTC timezone
819
570
  */
@@ -842,10 +593,6 @@ export type Organization = {
842
593
  * Maximum number of fleets that can be created per cluster.
843
594
  */
844
595
  fleets_max: number;
845
- /**
846
- * Maximum number of CPU cores per managed fleet.
847
- */
848
- managed_fleets_cpu_max: number;
849
596
  /**
850
597
  * List of Cloudfleet cluster tiers available for the organization.
851
598
  */
@@ -867,96 +614,215 @@ export type Organization = {
867
614
  */
868
615
  label: string;
869
616
  }>;
617
+ /**
618
+ * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
619
+ */
620
+ copilot_user_hourly_tokens: number;
621
+ /**
622
+ * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
623
+ */
624
+ copilot_organization_hourly_tokens: number;
870
625
  };
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
626
  /**
876
627
  * Status of the organization. Can be `active` or `closed`, or `suspended`.
877
628
  */
878
629
  status: 'active' | 'closed' | 'suspended';
879
630
  };
880
- export type OrganizationUpdateInput = {
631
+ export type PaymentMethod = {
881
632
  /**
882
- * Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
633
+ * Unique identifier of the organization. UUID v4 string in canonical form.
883
634
  */
884
- name?: string;
635
+ id: string;
885
636
  /**
886
- * Organization contact information and billing address.
637
+ * Whether organization payment method was set up and ready to use for payments.
887
638
  */
888
- contactInfo: {
889
- /**
890
- * Street address, P.O. box, c/o
891
- */
892
- address1?: string;
639
+ setup: boolean;
640
+ /**
641
+ * Payment method type type. Only `card` payments supported at the moment.
642
+ */
643
+ type: 'card';
644
+ /**
645
+ * Last 4 digits of the payment card number.
646
+ */
647
+ last4: string;
648
+ /**
649
+ * Two-digit number representing the card's expiration month.
650
+ */
651
+ exp_month: number;
652
+ /**
653
+ * Four-digit number representing the card's expiration year.
654
+ */
655
+ exp_year: number;
656
+ /**
657
+ * Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
658
+ */
659
+ brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
660
+ };
661
+ export type PlatformQuota = {
662
+ /**
663
+ * Maximum number of Basic clusters that can be created.
664
+ */
665
+ basic_clusters_max: number;
666
+ /**
667
+ * Available number of Basic clusters that can be created.
668
+ */
669
+ basic_clusters_available: number;
670
+ /**
671
+ * Maximum number of Pro clusters that can be created.
672
+ */
673
+ pro_clusters_max: number;
674
+ /**
675
+ * Available number of Pro clusters that can be created.
676
+ */
677
+ pro_clusters_available: number;
678
+ /**
679
+ * Maximum number of fleets that can be created per cluster.
680
+ */
681
+ fleets_max: number;
682
+ /**
683
+ * List of Cloudfleet cluster tiers available for the organization.
684
+ */
685
+ cluster_tiers: Array<string>;
686
+ /**
687
+ * List of Cloudfleet control plane regions available for the organization.
688
+ */
689
+ regions: Array<string>;
690
+ /**
691
+ * List of CFKE control plane versions available for the organization.
692
+ */
693
+ versions: Array<{
893
694
  /**
894
- * Apartment, suite, unit, building, floor, etc.
695
+ * Id of the control plane version. Used in API calls.
895
696
  */
896
- address2?: string;
697
+ id: string;
897
698
  /**
898
- * Postal code as a string.
699
+ * Label of the control plane version. Used in frontent UI.
899
700
  */
900
- postalCode?: string;
701
+ label: string;
702
+ }>;
703
+ /**
704
+ * User-level maximum number of tokens Cloudfleet Copilot can process per hour.
705
+ */
706
+ copilot_user_hourly_tokens: number;
707
+ /**
708
+ * Organization-level maximum number of tokens Cloudfleet Copilot can process per hour.
709
+ */
710
+ copilot_organization_hourly_tokens: number;
711
+ };
712
+ export type RegistryRepository = {
713
+ /**
714
+ * Repository name.
715
+ */
716
+ name: string;
717
+ /**
718
+ * Registry region.
719
+ */
720
+ region: string;
721
+ /**
722
+ * Full URI of the repository.
723
+ */
724
+ uri: string;
725
+ };
726
+ export type RegistryRepositoryWithTags = {
727
+ /**
728
+ * Repository name.
729
+ */
730
+ name: string;
731
+ /**
732
+ * Registry region.
733
+ */
734
+ region: string;
735
+ /**
736
+ * Full URI of the repository.
737
+ */
738
+ uri: string;
739
+ /**
740
+ * Array of tags in the repository.
741
+ */
742
+ tags: Array<{
901
743
  /**
902
- * City or town name.
744
+ * Tag name.
903
745
  */
904
- city?: string;
746
+ name: string;
905
747
  /**
906
- * State, province, or region name.
748
+ * Size of the tag in bytes.
907
749
  */
908
- state?: string;
750
+ size: number;
909
751
  /**
910
- * Country as a ISO 3166-1 alpha-2 country code.
752
+ * Media type of the manifest.
911
753
  */
912
- country?: string;
754
+ mediaType?: string;
755
+ }>;
756
+ /**
757
+ * Total size of all tags in the repository in bytes.
758
+ */
759
+ totalSize: number;
760
+ };
761
+ export type RegistryTag = {
762
+ /**
763
+ * Tag name.
764
+ */
765
+ name: string;
766
+ /**
767
+ * Media type of the manifest.
768
+ */
769
+ mediaType?: string;
770
+ /**
771
+ * Manifest config metadata.
772
+ */
773
+ config?: {
913
774
  /**
914
- * Phone number as a string.
775
+ * Size of the config in bytes.
915
776
  */
916
- phone?: string;
777
+ size: number;
778
+ };
779
+ /**
780
+ * Array of layer metadata.
781
+ */
782
+ layers?: Array<{
917
783
  /**
918
- * Email address used for billing as a string.
784
+ * Size of the layer in bytes.
919
785
  */
920
- email: string;
786
+ size: number;
787
+ }>;
788
+ /**
789
+ * Array of manifests for multi-arch images.
790
+ */
791
+ manifests?: Array<{
921
792
  /**
922
- * First name of the billing contact person.
793
+ * Digest of the manifest.
923
794
  */
924
- first_name: string;
795
+ digest: string;
925
796
  /**
926
- * Last name of the billing contact person.
797
+ * Platform information for the manifest.
927
798
  */
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;
936
- /**
937
- * Whether organization payment method was set up and ready to use for payments.
938
- */
939
- setup: boolean;
940
- /**
941
- * Payment method type type. Only `card` payments supported at the moment.
942
- */
943
- type: 'card';
799
+ platform?: {
800
+ /**
801
+ * Architecture of the platform.
802
+ */
803
+ architecture: string;
804
+ /**
805
+ * Operating system of the platform.
806
+ */
807
+ os: string;
808
+ };
809
+ }>;
944
810
  /**
945
- * Last 4 digits of the payment card number.
811
+ * Total size of the tag in bytes.
946
812
  */
947
- last4: string;
813
+ size: number;
948
814
  /**
949
- * Two-digit number representing the card's expiration month.
815
+ * Registry region.
950
816
  */
951
- exp_month: number;
817
+ region: string;
952
818
  /**
953
- * Four-digit number representing the card's expiration year.
819
+ * Repository name.
954
820
  */
955
- exp_year: number;
821
+ repository: string;
956
822
  /**
957
- * Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
823
+ * Full URI of the tag.
958
824
  */
959
- brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
825
+ uri: string;
960
826
  };
961
827
  export type TokenCreateInput = {
962
828
  /**
@@ -1000,35 +866,85 @@ export type TokenUpdateInput = {
1000
866
  */
1001
867
  role?: 'Administrator' | 'User';
1002
868
  };
869
+ export type UsageFacets = {
870
+ /**
871
+ * List of unique cluster IDs
872
+ */
873
+ cluster_id?: Array<string>;
874
+ /**
875
+ * List of unique products
876
+ */
877
+ product?: Array<string>;
878
+ };
879
+ export type UsageResponse = {
880
+ /**
881
+ * Usage data
882
+ */
883
+ data: Array<{
884
+ /**
885
+ * Hour of the usage
886
+ */
887
+ hour: string;
888
+ /**
889
+ * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
890
+ */
891
+ cluster_id: string;
892
+ /**
893
+ * The product the usage is associated with
894
+ */
895
+ product: string;
896
+ /**
897
+ * Consumption
898
+ */
899
+ value: number;
900
+ /**
901
+ * Price per unit
902
+ */
903
+ price: number;
904
+ /**
905
+ * Total cost
906
+ */
907
+ total: number;
908
+ }>;
909
+ /**
910
+ * Facets for filtering
911
+ */
912
+ facets: {
913
+ /**
914
+ * List of unique cluster IDs
915
+ */
916
+ cluster_id?: Array<string>;
917
+ /**
918
+ * List of unique products
919
+ */
920
+ product?: Array<string>;
921
+ };
922
+ };
1003
923
  export type Usage = {
1004
924
  /**
1005
925
  * Hour of the usage
1006
926
  */
1007
- hour?: string;
927
+ hour: string;
1008
928
  /**
1009
929
  * Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
1010
930
  */
1011
931
  cluster_id: string;
1012
932
  /**
1013
- * Tier of the cluster.
933
+ * The product the usage is associated with
1014
934
  */
1015
- cluster_tier: '';
935
+ product: string;
1016
936
  /**
1017
- * The product the usage is associated with
937
+ * Consumption
1018
938
  */
1019
- product: 'cfke_infra_compute' | 'cfke_nodes' | 'cfke_controlplane';
939
+ value: number;
1020
940
  /**
1021
- * Name of the Kubernetes node
941
+ * Price per unit
1022
942
  */
1023
- node_name: string;
943
+ price: number;
1024
944
  /**
1025
- * SKU of the Kubernetes node
945
+ * Total cost
1026
946
  */
1027
- sku: string;
1028
- cpu: number | '';
1029
- price: number | '';
1030
- value: number | '';
1031
- total: number | '';
947
+ total: number;
1032
948
  };
1033
949
  export type UserCreateInput = {
1034
950
  /**
@@ -1048,7 +964,7 @@ export type UserCreateInput = {
1048
964
  */
1049
965
  code: string;
1050
966
  /**
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.
967
+ * User password. Must be at least 8 characters long.
1052
968
  */
1053
969
  password: string;
1054
970
  /**
@@ -1089,16 +1005,6 @@ export type User = {
1089
1005
  * Creation date of the user. ISO 8601 date string in UTC timezone
1090
1006
  */
1091
1007
  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
1008
  };
1103
1009
  export type UserUpdateInput = {
1104
1010
  /**
@@ -1125,7 +1031,12 @@ export type UserUpdateInput = {
1125
1031
  export type GetUsageData = {
1126
1032
  body?: never;
1127
1033
  path?: never;
1128
- query?: never;
1034
+ query?: {
1035
+ /**
1036
+ * 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)
1037
+ */
1038
+ granularity?: 'hourly' | 'daily' | 'monthly';
1039
+ };
1129
1040
  url: '/billing/usage';
1130
1041
  };
1131
1042
  export type GetUsageErrors = {
@@ -1136,24 +1047,11 @@ export type GetUsageErrors = {
1136
1047
  };
1137
1048
  export type GetUsageResponses = {
1138
1049
  /**
1139
- * An array of usage records.
1050
+ * Usage data with facets for filtering
1140
1051
  */
1141
- 200: Array<Usage>;
1052
+ 200: UsageResponse;
1142
1053
  };
1143
1054
  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
1055
  export type GetPaymentMethodData = {
1158
1056
  body?: never;
1159
1057
  path?: never;
@@ -1195,16 +1093,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
1195
1093
  export type ListInvoicesData = {
1196
1094
  body?: never;
1197
1095
  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
- };
1096
+ query?: never;
1208
1097
  url: '/billing/invoices';
1209
1098
  };
1210
1099
  export type ListInvoicesErrors = {
@@ -1220,26 +1109,182 @@ export type ListInvoicesResponses = {
1220
1109
  200: Array<Invoice>;
1221
1110
  };
1222
1111
  export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
1223
- export type GetInvoiceData = {
1112
+ export type GetContactData = {
1113
+ body?: never;
1114
+ path?: never;
1115
+ query?: never;
1116
+ url: '/billing/contact';
1117
+ };
1118
+ export type GetContactResponses = {
1119
+ /**
1120
+ * Returns a single object containing organization contact and billing address details.
1121
+ */
1122
+ 200: BillingContact;
1123
+ };
1124
+ export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
1125
+ export type UpdateContactData = {
1126
+ body: BillingContact;
1127
+ path?: never;
1128
+ query?: never;
1129
+ url: '/billing/contact';
1130
+ };
1131
+ export type UpdateContactResponses = {
1132
+ /**
1133
+ * Successfully updated. Returns updated organization details.
1134
+ */
1135
+ 200: BillingContact;
1136
+ };
1137
+ export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
1138
+ export type GetCreditsData = {
1139
+ body?: never;
1140
+ path?: never;
1141
+ query?: never;
1142
+ url: '/billing/credits';
1143
+ };
1144
+ export type GetCreditsErrors = {
1145
+ /**
1146
+ * Not authenticated
1147
+ */
1148
+ 401: unknown;
1149
+ };
1150
+ export type GetCreditsResponses = {
1151
+ /**
1152
+ * An array of the applied promotional credits records.
1153
+ */
1154
+ 200: Array<BillingCredits>;
1155
+ };
1156
+ export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
1157
+ export type RedeemCreditsData = {
1158
+ body: {
1159
+ /**
1160
+ * Promotional code to redeem
1161
+ */
1162
+ code?: string;
1163
+ };
1164
+ path?: never;
1165
+ query?: never;
1166
+ url: '/billing/credits';
1167
+ };
1168
+ export type RedeemCreditsErrors = {
1169
+ /**
1170
+ * Not authenticated
1171
+ */
1172
+ 401: unknown;
1173
+ };
1174
+ export type RedeemCreditsResponses = {
1175
+ /**
1176
+ * Successfully created a new organization.
1177
+ */
1178
+ 200: unknown;
1179
+ };
1180
+ export type ListChartsData = {
1224
1181
  body?: never;
1225
1182
  path: {
1226
1183
  /**
1227
- * Unique invoice identifier. UUID v4 string in canonical form
1184
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1228
1185
  */
1229
- id: string;
1186
+ cluster_id: string;
1230
1187
  };
1231
1188
  query?: never;
1232
- url: '/billing/invoices/{id}';
1189
+ url: '/clusters/{cluster_id}/charts';
1233
1190
  };
1234
- export type GetInvoiceResponses = {
1191
+ export type ListChartsErrors = {
1235
1192
  /**
1236
- * Returns a single Invoice HTML representation under `html` property.
1193
+ * Not authenticated
1237
1194
  */
1238
- 200: {
1239
- html?: string;
1195
+ 401: unknown;
1196
+ };
1197
+ export type ListChartsResponses = {
1198
+ /**
1199
+ * An array of charts
1200
+ */
1201
+ 200: Array<Chart>;
1202
+ };
1203
+ export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
1204
+ export type CreateChartData = {
1205
+ body: ChartCreateInput;
1206
+ path: {
1207
+ /**
1208
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1209
+ */
1210
+ cluster_id: string;
1211
+ };
1212
+ query?: never;
1213
+ url: '/clusters/{cluster_id}/charts';
1214
+ };
1215
+ export type CreateChartResponses = {
1216
+ /**
1217
+ * Successfully created. Returns created Chart ID.
1218
+ */
1219
+ 200: string;
1220
+ };
1221
+ export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
1222
+ export type DeleteChartData = {
1223
+ body?: never;
1224
+ path: {
1225
+ /**
1226
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1227
+ */
1228
+ cluster_id: string;
1229
+ /**
1230
+ * Chart deployment name as the unique identifier of the chart.
1231
+ */
1232
+ chart_name: string;
1233
+ };
1234
+ query?: never;
1235
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1236
+ };
1237
+ export type DeleteChartResponses = {
1238
+ /**
1239
+ * Successfully deleted.
1240
+ */
1241
+ 200: string;
1242
+ };
1243
+ export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
1244
+ export type GetChartData = {
1245
+ body?: never;
1246
+ path: {
1247
+ /**
1248
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1249
+ */
1250
+ cluster_id: string;
1251
+ /**
1252
+ * Chart deployment name as the unique identifier of the chart.
1253
+ */
1254
+ chart_name: string;
1255
+ };
1256
+ query?: never;
1257
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1258
+ };
1259
+ export type GetChartResponses = {
1260
+ /**
1261
+ * Returns a single object containing chart details.
1262
+ */
1263
+ 200: Chart;
1264
+ };
1265
+ export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
1266
+ export type UpdateChartData = {
1267
+ body: ChartUpdateInput;
1268
+ path: {
1269
+ /**
1270
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1271
+ */
1272
+ cluster_id: string;
1273
+ /**
1274
+ * Chart deployment name as the unique identifier of the chart.
1275
+ */
1276
+ chart_name: string;
1240
1277
  };
1278
+ query?: never;
1279
+ url: '/clusters/{cluster_id}/charts/{chart_name}';
1280
+ };
1281
+ export type UpdateChartResponses = {
1282
+ /**
1283
+ * Successfully updated.
1284
+ */
1285
+ 200: string;
1241
1286
  };
1242
- export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
1287
+ export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
1243
1288
  export type ListFleetsData = {
1244
1289
  body?: never;
1245
1290
  path: {
@@ -1462,292 +1507,46 @@ export type GetClusterResponses = {
1462
1507
  export type GetClusterResponse = GetClusterResponses[keyof GetClusterResponses];
1463
1508
  export type UpdateClusterData = {
1464
1509
  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;
1510
+ path: {
1593
1511
  /**
1594
- * Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
1512
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1595
1513
  */
1596
- price_max?: number;
1514
+ cluster_id: string;
1597
1515
  };
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;
1516
+ query?: never;
1517
+ url: '/clusters/{cluster_id}';
1605
1518
  };
1606
- export type GetInfrastructureError = GetInfrastructureErrors[keyof GetInfrastructureErrors];
1607
- export type GetInfrastructureResponses = {
1519
+ export type UpdateClusterResponses = {
1608
1520
  /**
1609
- * An array of instances returned by the search
1521
+ * Successfully updated. Returns updated cluster details.
1610
1522
  */
1611
- 200: Array<InfrastructureInstance>;
1523
+ 200: Cluster;
1612
1524
  };
1613
- export type GetInfrastructureResponse = GetInfrastructureResponses[keyof GetInfrastructureResponses];
1614
- export type GetFacetsData = {
1525
+ export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
1526
+ export type GetJoinInformationData = {
1615
1527
  body?: never;
1616
- path?: never;
1528
+ path: {
1529
+ /**
1530
+ * Unique identifier of the cluster. UUID v4 string in canonical form
1531
+ */
1532
+ cluster_id: string;
1533
+ };
1617
1534
  query?: never;
1618
- url: '/infrastructure/facets';
1535
+ url: '/clusters/{cluster_id}/join_information';
1619
1536
  };
1620
- export type GetFacetsResponses = {
1537
+ export type GetJoinInformationErrors = {
1621
1538
  /**
1622
- * Calculates search facets of the infrastructure catalog
1539
+ * Not authenticated
1623
1540
  */
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';
1541
+ 401: unknown;
1741
1542
  };
1742
- export type GetRegionsResponses = {
1543
+ export type GetJoinInformationResponses = {
1743
1544
  /**
1744
- * Available Cloudfleet regions and Kubernetes versions.
1545
+ * An object of cluster join information
1745
1546
  */
1746
- 200: {
1747
- [key: string]: unknown;
1748
- };
1547
+ 200: ClusterJoinInformation;
1749
1548
  };
1750
- export type GetRegionsResponse = GetRegionsResponses[keyof GetRegionsResponses];
1549
+ export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
1751
1550
  export type ListInvitesData = {
1752
1551
  body?: never;
1753
1552
  path?: never;
@@ -1820,6 +1619,95 @@ export type DeleteInviteResponses = {
1820
1619
  */
1821
1620
  200: unknown;
1822
1621
  };
1622
+ export type ListMarketplaceChartsData = {
1623
+ body?: never;
1624
+ path?: never;
1625
+ query?: never;
1626
+ url: '/marketplace';
1627
+ };
1628
+ export type ListMarketplaceChartsErrors = {
1629
+ /**
1630
+ * Not authenticated
1631
+ */
1632
+ 401: unknown;
1633
+ };
1634
+ export type ListMarketplaceChartsResponses = {
1635
+ /**
1636
+ * An array of chart listings in the marketplace.
1637
+ */
1638
+ 200: Array<MarketplaceListing>;
1639
+ };
1640
+ export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
1641
+ export type GetMarketplaceChartFilesData = {
1642
+ body?: never;
1643
+ path: {
1644
+ /**
1645
+ * Name of the chart in the marketplace.
1646
+ */
1647
+ chart_name: string;
1648
+ /**
1649
+ * Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
1650
+ */
1651
+ version_channel: string;
1652
+ };
1653
+ query?: never;
1654
+ url: '/marketplace/{chart_name}/files/{version_channel}';
1655
+ };
1656
+ export type GetMarketplaceChartFilesErrors = {
1657
+ /**
1658
+ * Chart not found or no version matches the channel
1659
+ */
1660
+ 404: unknown;
1661
+ };
1662
+ export type GetMarketplaceChartFilesResponses = {
1663
+ /**
1664
+ * Returns an object containing the chart files for the latest matching version.
1665
+ */
1666
+ 200: MarketplaceListingFiles;
1667
+ };
1668
+ export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
1669
+ export type PostMcpData = {
1670
+ /**
1671
+ * JSON-RPC 2.0 request payload
1672
+ */
1673
+ body: {
1674
+ jsonrpc?: string;
1675
+ method?: string;
1676
+ id?: string | number;
1677
+ /**
1678
+ * Method-specific parameters
1679
+ */
1680
+ params?: {
1681
+ [key: string]: unknown;
1682
+ };
1683
+ };
1684
+ path?: never;
1685
+ query?: never;
1686
+ url: '/mcp';
1687
+ };
1688
+ export type PostMcpErrors = {
1689
+ /**
1690
+ * Not authenticated
1691
+ */
1692
+ 401: unknown;
1693
+ };
1694
+ export type PostMcpResponses = {
1695
+ /**
1696
+ * JSON-RPC 2.0 success or error response
1697
+ */
1698
+ 200: {
1699
+ jsonrpc?: string;
1700
+ id?: string | number;
1701
+ result?: {
1702
+ [key: string]: unknown;
1703
+ };
1704
+ error?: {
1705
+ code?: number;
1706
+ message?: string;
1707
+ };
1708
+ };
1709
+ };
1710
+ export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
1823
1711
  export type GetOrganizationData = {
1824
1712
  body?: never;
1825
1713
  path?: never;
@@ -1845,19 +1733,144 @@ export type CreateOrganizationResponses = {
1845
1733
  */
1846
1734
  200: unknown;
1847
1735
  };
1848
- export type UpdateOrganizationData = {
1849
- body: OrganizationUpdateInput;
1736
+ export type ListRepositoriesData = {
1737
+ body?: never;
1850
1738
  path?: never;
1851
1739
  query?: never;
1852
- url: '/organization';
1740
+ url: '/registry';
1853
1741
  };
1854
- export type UpdateOrganizationResponses = {
1742
+ export type ListRepositoriesErrors = {
1855
1743
  /**
1856
- * Successfully updated. Returns updated organization details.
1744
+ * Not authenticated
1857
1745
  */
1858
- 200: Organization;
1746
+ 401: unknown;
1747
+ /**
1748
+ * Internal server error
1749
+ */
1750
+ 500: unknown;
1751
+ };
1752
+ export type ListRepositoriesResponses = {
1753
+ /**
1754
+ * List of repositories
1755
+ */
1756
+ 200: Array<RegistryRepository>;
1757
+ };
1758
+ export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
1759
+ export type ListTagsData = {
1760
+ body?: never;
1761
+ path: {
1762
+ /**
1763
+ * Region where the repository is located
1764
+ */
1765
+ region: string;
1766
+ /**
1767
+ * Name of the repository
1768
+ */
1769
+ repository: string;
1770
+ };
1771
+ query?: never;
1772
+ url: '/registry/{region}/{repository}';
1773
+ };
1774
+ export type ListTagsErrors = {
1775
+ /**
1776
+ * Not authenticated
1777
+ */
1778
+ 401: unknown;
1779
+ /**
1780
+ * Repository not found
1781
+ */
1782
+ 404: unknown;
1783
+ /**
1784
+ * Internal server error
1785
+ */
1786
+ 500: unknown;
1787
+ };
1788
+ export type ListTagsResponses = {
1789
+ /**
1790
+ * Repository with tags
1791
+ */
1792
+ 200: RegistryRepositoryWithTags;
1793
+ };
1794
+ export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
1795
+ export type DeleteTagData = {
1796
+ body?: never;
1797
+ path: {
1798
+ /**
1799
+ * Region where the repository is located
1800
+ */
1801
+ region: string;
1802
+ /**
1803
+ * Name of the repository
1804
+ */
1805
+ repository: string;
1806
+ /**
1807
+ * Name of the tag
1808
+ */
1809
+ tag: string;
1810
+ };
1811
+ query?: never;
1812
+ url: '/registry/{region}/{repository}/{tag}';
1813
+ };
1814
+ export type DeleteTagErrors = {
1815
+ /**
1816
+ * Not authenticated
1817
+ */
1818
+ 401: unknown;
1819
+ /**
1820
+ * Tag not found
1821
+ */
1822
+ 404: unknown;
1823
+ /**
1824
+ * Internal server error
1825
+ */
1826
+ 500: unknown;
1859
1827
  };
1860
- export type UpdateOrganizationResponse = UpdateOrganizationResponses[keyof UpdateOrganizationResponses];
1828
+ export type DeleteTagResponses = {
1829
+ /**
1830
+ * Tag successfully deleted
1831
+ */
1832
+ 200: unknown;
1833
+ };
1834
+ export type GetTagData = {
1835
+ body?: never;
1836
+ path: {
1837
+ /**
1838
+ * Region where the repository is located
1839
+ */
1840
+ region: string;
1841
+ /**
1842
+ * Name of the repository
1843
+ */
1844
+ repository: string;
1845
+ /**
1846
+ * Name of the tag
1847
+ */
1848
+ tag: string;
1849
+ };
1850
+ query?: never;
1851
+ url: '/registry/{region}/{repository}/{tag}';
1852
+ };
1853
+ export type GetTagErrors = {
1854
+ /**
1855
+ * Not authenticated
1856
+ */
1857
+ 401: unknown;
1858
+ /**
1859
+ * Tag not found
1860
+ */
1861
+ 404: unknown;
1862
+ /**
1863
+ * Internal server error
1864
+ */
1865
+ 500: unknown;
1866
+ };
1867
+ export type GetTagResponses = {
1868
+ /**
1869
+ * Tag details
1870
+ */
1871
+ 200: RegistryTag;
1872
+ };
1873
+ export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
1861
1874
  export type ListTokensData = {
1862
1875
  body?: never;
1863
1876
  path?: never;
@@ -2114,53 +2127,4 @@ export type UpdateUserResponses = {
2114
2127
  200: User;
2115
2128
  };
2116
2129
  export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
2117
- export type DeleteClusterPermissionsData = {
2118
- body?: never;
2119
- path: {
2120
- /**
2121
- * Unique user identifier. UUID v4 string in canonical form
2122
- */
2123
- user_id: string;
2124
- /**
2125
- * Unique cluster identifier. UUID v4 string in canonical form
2126
- */
2127
- cluster_id: string;
2128
- };
2129
- query?: never;
2130
- url: '/users/{user_id}/clusters/{cluster_id}';
2131
- };
2132
- export type DeleteClusterPermissionsResponses = {
2133
- /**
2134
- * Successfully removed user from the cluster. Returns updated user details.
2135
- */
2136
- 200: User;
2137
- };
2138
- export type DeleteClusterPermissionsResponse = DeleteClusterPermissionsResponses[keyof DeleteClusterPermissionsResponses];
2139
- export type SetClusterPermissionsData = {
2140
- body: {
2141
- /**
2142
- * Level of permissions for the user to access the cluster
2143
- */
2144
- permissions?: 'readwrite' | 'readonly';
2145
- };
2146
- path: {
2147
- /**
2148
- * Unique user identifier. UUID v4 string in canonical form
2149
- */
2150
- user_id: string;
2151
- /**
2152
- * Unique cluster identifier. UUID v4 string in canonical form
2153
- */
2154
- cluster_id: string;
2155
- };
2156
- query?: never;
2157
- url: '/users/{user_id}/clusters/{cluster_id}';
2158
- };
2159
- export type SetClusterPermissionsResponses = {
2160
- /**
2161
- * Successfully created. Returns created user details.
2162
- */
2163
- 200: User;
2164
- };
2165
- export type SetClusterPermissionsResponse = SetClusterPermissionsResponses[keyof SetClusterPermissionsResponses];
2166
2130
  //# sourceMappingURL=types.gen.d.ts.map