@cloudfleet/sdk 0.0.1-cfddf24 → 0.0.1-d3aa845

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk.gen.js CHANGED
@@ -1,61 +1,69 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
2
  import { formDataBodySerializer } from './client';
3
3
  import { client } from './client.gen';
4
- export class BillingService {
4
+ export class UsersService {
5
5
  /**
6
- * Get billing usage information.
7
- *
8
- * Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
9
- *
6
+ * Get a list of organizations the user belongs to. Used during authentication process.
10
7
  */
11
- static getUsage(options) {
12
- return (options?.client ?? client).get({ url: '/billing/usage', ...options });
8
+ static listUserOrganizations(options) {
9
+ return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
13
10
  }
14
11
  /**
15
- * Get organization payment method information.
12
+ * List users in organization.
16
13
  *
17
- * Returns the information about the payment card associated with the organization with sensitive information redacted. Payment details can be updated in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to all users in the organization.
14
+ * Returns a list of user details and their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
15
+ *
16
+ * This endpoint is available to all users in the organization.
18
17
  *
19
18
  */
20
- static getPaymentMethod(options) {
21
- return (options?.client ?? client).get({ url: '/billing/payment-method', ...options });
19
+ static listUsers(options) {
20
+ return (options?.client ?? client).get({ url: '/users', ...options });
22
21
  }
23
22
  /**
24
- * Get Stripe client secret.
23
+ * Create a new user.
25
24
  *
26
- * Endpoint returns the Stripe secret key for the organization. This key is used to securely update the payment method in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to administrators of the organization only.
25
+ * Create a new user in your Cloudfleet organization. Requires a valid invite code generated by the `invites create` command. The invite code is a unique string that can be used only once to create a new user. The invite code is generated by the `POST /invites` endpoint.
27
26
  *
28
27
  */
29
- static getPaymentMethodSecret(options) {
30
- return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
28
+ static createUser(options) {
29
+ return (options.client ?? client).post({
30
+ url: '/users',
31
+ ...options,
32
+ headers: {
33
+ 'Content-Type': 'application/json',
34
+ ...options.headers
35
+ }
36
+ });
31
37
  }
32
38
  /**
33
- * List issued invoices.
39
+ * Delete user by id.
34
40
  *
35
- * Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
41
+ * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
36
42
  *
37
43
  */
38
- static listInvoices(options) {
39
- return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
44
+ static deleteUser(options) {
45
+ return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
40
46
  }
41
47
  /**
42
- * Get organization contact and billing address information.
48
+ * Get user profile information by id.
43
49
  *
44
- * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
50
+ * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
51
+ *
52
+ * This endpoint is available to all users in the organization.
45
53
  *
46
54
  */
47
- static getContact(options) {
48
- return (options?.client ?? client).get({ url: '/billing/contact', ...options });
55
+ static getUser(options) {
56
+ return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
49
57
  }
50
58
  /**
51
- * Update organization contact information and billing address.
59
+ * Update user profile information.
52
60
  *
53
- * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
61
+ * Update user profile information: email, first name, last name, role. This endpoint can be accessed by administrators and the user itself. Role and status can be changed by administrators only.
54
62
  *
55
63
  */
56
- static updateContact(options) {
64
+ static updateUser(options) {
57
65
  return (options.client ?? client).put({
58
- url: '/billing/contact',
66
+ url: '/users/{user_id}',
59
67
  ...options,
60
68
  headers: {
61
69
  'Content-Type': 'application/json',
@@ -63,24 +71,28 @@ export class BillingService {
63
71
  }
64
72
  });
65
73
  }
74
+ }
75
+ export class TokensService {
66
76
  /**
67
- * Get applied promotional credits
77
+ * List access tokens in organization.
68
78
  *
69
- * Returns applied promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
79
+ * This endpoint allows you to get a list of all access tokens details in organization. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
70
80
  *
71
81
  */
72
- static getCredits(options) {
73
- return (options?.client ?? client).get({ url: '/billing/credits', ...options });
82
+ static listTokens(options) {
83
+ return (options?.client ?? client).get({ url: '/tokens', ...options });
74
84
  }
75
85
  /**
76
- * Redeem promotional credits code.
86
+ * Create a new access token.
77
87
  *
78
- * Applies promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
88
+ * This endpoint allows you to create a new access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
89
+ *
90
+ * This endpoint is available to administrators of the organization only.
79
91
  *
80
92
  */
81
- static redeemCredits(options) {
93
+ static createToken(options) {
82
94
  return (options.client ?? client).post({
83
- url: '/billing/credits',
95
+ url: '/tokens',
84
96
  ...options,
85
97
  headers: {
86
98
  'Content-Type': 'application/json',
@@ -88,30 +100,35 @@ export class BillingService {
88
100
  }
89
101
  });
90
102
  }
91
- }
92
- export class ClustersService {
93
103
  /**
94
- * List charts.
104
+ * Permanently delete access token.
95
105
  *
96
- * Returns a list of charts in the cluster.
106
+ * This endpoint allows you to delete an access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to administrators of the organization only.
97
107
  *
98
- * This endpoint is available to all users in the organization.
108
+ */
109
+ static deleteToken(options) {
110
+ return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
111
+ }
112
+ /**
113
+ * Get access token information.
114
+ *
115
+ * This endpoint allows you to get access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
99
116
  *
100
117
  */
101
- static listCharts(options) {
102
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
118
+ static getToken(options) {
119
+ return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
103
120
  }
104
121
  /**
105
- * Create a new chart.
122
+ * Update access token information.
106
123
  *
107
- * Create a new chart deployment.
124
+ * This endpoint allows you to update access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
108
125
  *
109
126
  * This endpoint is available to administrators of the organization only.
110
127
  *
111
128
  */
112
- static createChart(options) {
113
- return (options.client ?? client).post({
114
- url: '/clusters/{cluster_id}/charts',
129
+ static updateToken(options) {
130
+ return (options.client ?? client).put({
131
+ url: '/tokens/{token_id}',
115
132
  ...options,
116
133
  headers: {
117
134
  'Content-Type': 'application/json',
@@ -120,148 +137,139 @@ export class ClustersService {
120
137
  });
121
138
  }
122
139
  /**
123
- * Permanently delete the chart deployment from the cluster.
124
- *
125
- * This endpoint will permanently delete chart. This operation cannot be undone.
126
- *
127
- * This endpoint is available to administrators of the organization only.
140
+ * Regenerate access token secret key.
128
141
  *
142
+ * Generates a new access token secret. Old secret will not be valid anymore.
129
143
  */
130
- static deleteChart(options) {
131
- return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
144
+ static regenerateToken(options) {
145
+ return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
132
146
  }
147
+ }
148
+ export class TicketsService {
133
149
  /**
134
- * Get chart information.
135
- *
136
- * Returns the details of the chart deployment.
150
+ * List tickets for the current organization.
137
151
  *
138
- * This endpoint is available to all users in the organization.
152
+ * Returns all tickets belonging to the caller's organization, newest first.
139
153
  *
140
154
  */
141
- static getChart(options) {
142
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
155
+ static listTickets(options) {
156
+ return (options?.client ?? client).get({ url: '/tickets', ...options });
143
157
  }
144
158
  /**
145
- * Update chart information.
146
- *
147
- * This endpoint allows you to update the values of a chart deployment.
159
+ * Create a new support ticket.
148
160
  *
149
- * This endpoint is available to administrators of the organization only.
161
+ * Creates a new support ticket with an initial customer message. The request is `multipart/form-data` with a JSON-encoded `payload` field carrying `category`, `body`, and optional `properties`, plus up to 3 `attachments` files (10 MB max each).
150
162
  *
151
163
  */
152
- static updateChart(options) {
153
- return (options.client ?? client).put({
154
- url: '/clusters/{cluster_id}/charts/{chart_name}',
164
+ static createTicket(options) {
165
+ return (options.client ?? client).post({
166
+ ...formDataBodySerializer,
167
+ url: '/tickets',
155
168
  ...options,
156
169
  headers: {
157
- 'Content-Type': 'application/json',
170
+ 'Content-Type': null,
158
171
  ...options.headers
159
172
  }
160
173
  });
161
174
  }
162
175
  /**
163
- * List fleets.
164
- *
165
- * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
176
+ * Close a ticket (soft close).
166
177
  *
167
- * This endpoint is available to all users in the organization.
178
+ * Marks the ticket as closed. Closed is a terminal state users cannot reply to a closed ticket; a new ticket must be opened instead.
168
179
  *
169
180
  */
170
- static listFleets(options) {
171
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
181
+ static closeTicket(options) {
182
+ return (options.client ?? client).delete({ url: '/tickets/{ticket_id}', ...options });
172
183
  }
173
184
  /**
174
- * Create a new fleet.
175
- *
176
- * Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
185
+ * Get a ticket and its messages.
186
+ */
187
+ static getTicket(options) {
188
+ return (options.client ?? client).get({ url: '/tickets/{ticket_id}', ...options });
189
+ }
190
+ /**
191
+ * Append a customer reply to a ticket.
177
192
  *
178
- * This endpoint is available to administrators of the organization only.
193
+ * Multipart form-data with a JSON-encoded `payload` field carrying `body`, plus up to 3 `attachments` files. Returns 409 if the ticket is closed.
179
194
  *
180
195
  */
181
- static createFleet(options) {
196
+ static replyTicket(options) {
182
197
  return (options.client ?? client).post({
183
- url: '/clusters/{cluster_id}/fleets',
198
+ ...formDataBodySerializer,
199
+ url: '/tickets/{ticket_id}/messages',
184
200
  ...options,
185
201
  headers: {
186
- 'Content-Type': 'application/json',
202
+ 'Content-Type': null,
187
203
  ...options.headers
188
204
  }
189
205
  });
190
206
  }
191
207
  /**
192
- * Permanently delete fleet.
193
- *
194
- * This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
195
- *
196
- * This endpoint is available to administrators of the organization only.
197
- *
208
+ * Download a ticket attachment.
198
209
  */
199
- static deleteFleet(options) {
200
- return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
210
+ static getTicketAttachment(options) {
211
+ return (options.client ?? client).get({ url: '/tickets/{ticket_id}/attachments/{attachment_id}', ...options });
201
212
  }
213
+ }
214
+ export class RegistryService {
202
215
  /**
203
- * Get fleet information.
204
- *
205
- * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
216
+ * List repositories
206
217
  *
207
- * This endpoint is available to all users in the organization.
218
+ * Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
208
219
  *
209
220
  */
210
- static getFleet(options) {
211
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
221
+ static listRepositories(options) {
222
+ return (options?.client ?? client).get({ url: '/registry', ...options });
212
223
  }
213
224
  /**
214
- * Update fleet information.
215
- *
216
- * This endpoint allows you to update fleet details.
225
+ * List tags for a repository
217
226
  *
218
- * Setting status to `deleted` will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. If you want to keep using the Fleet until the end of the billing period, set the status to `cancelling`.
227
+ * Returns a list of tags for a specific repository, including size and metadata for each tag. This endpoint is available to all users in the organization.
219
228
  *
220
- * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
229
+ */
230
+ static listTags(options) {
231
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
232
+ }
233
+ /**
234
+ * Delete tag
221
235
  *
222
- * This endpoint is available to administrators of the organization only.
236
+ * Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
223
237
  *
224
238
  */
225
- static updateFleet(options) {
226
- return (options.client ?? client).put({
227
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
228
- ...options,
229
- headers: {
230
- 'Content-Type': 'application/json',
231
- ...options.headers
232
- }
233
- });
239
+ static deleteTag(options) {
240
+ return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
234
241
  }
235
242
  /**
236
- * Query Kubernetes cluster API
243
+ * Get tag details
244
+ *
245
+ * Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
237
246
  *
238
- * An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
239
247
  */
240
- static queryCluster(options) {
241
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
248
+ static getTag(options) {
249
+ return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
242
250
  }
251
+ }
252
+ export class OrganizationService {
243
253
  /**
244
- * List clusters.
254
+ * Get organization information.
245
255
  *
246
- * Returns a list of clusters under the current organization, including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
256
+ * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
247
257
  *
248
258
  * This endpoint is available to all users in the organization.
249
259
  *
250
260
  */
251
- static listClusters(options) {
252
- return (options?.client ?? client).get({ url: '/clusters', ...options });
261
+ static getOrganization(options) {
262
+ return (options?.client ?? client).get({ url: '/organization', ...options });
253
263
  }
254
264
  /**
255
- * Create a new cluster.
256
- *
257
- * Create a new cluster under the current organization. Clusters allow you to group resources and you can create multiple clusters under the same organization, with billing delegated to the parent organization.
265
+ * Create a new organization / Cloudfleet account signup.
258
266
  *
259
- * This endpoint is available to administrators of the organization only.
267
+ * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
260
268
  *
261
269
  */
262
- static createCluster(options) {
270
+ static createOrganization(options) {
263
271
  return (options.client ?? client).post({
264
- url: '/clusters',
272
+ url: '/organization',
265
273
  ...options,
266
274
  headers: {
267
275
  'Content-Type': 'application/json',
@@ -269,61 +277,55 @@ export class ClustersService {
269
277
  }
270
278
  });
271
279
  }
280
+ }
281
+ export class McpService {
272
282
  /**
273
- * Permanently delete cluster.
274
- *
275
- * This endpoint will permanently delete the cluster. This operation cannot be undone.
276
- *
277
- * This endpoint is available to administrators of the organization only.
283
+ * MCP endpoint
278
284
  *
285
+ * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
279
286
  */
280
- static deleteCluster(options) {
281
- return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
287
+ static postMcp(options) {
288
+ return (options.client ?? client).post({
289
+ url: '/mcp',
290
+ ...options,
291
+ headers: {
292
+ 'Content-Type': 'application/json',
293
+ ...options.headers
294
+ }
295
+ });
282
296
  }
297
+ }
298
+ export class ChartsMarketplaceService {
283
299
  /**
284
- * Get cluster information.
300
+ * List chart listings available in the marketplace.
285
301
  *
286
- * Returns cluster details including quota. Quota is a set of filters defined by the admin of the organization that will be applied to all resources created in the cluster. Quota information returned here does not take into account quota set on organization or platform level. For calculated quota applied to this account, use /clusters/{cluster_id}/quota endpoint. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
302
+ * Returns a list of available charts in the marketplace.
287
303
  *
288
304
  * This endpoint is available to all users in the organization.
289
305
  *
290
306
  */
291
- static getCluster(options) {
292
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
307
+ static listMarketplaceCharts(options) {
308
+ return (options?.client ?? client).get({ url: '/marketplace', ...options });
293
309
  }
294
310
  /**
295
- * Update cluster information.
296
- *
297
- * This endpoint allows you to update cluster details, including quota and cluster status. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentaiton.
311
+ * Get chart files for a specific version channel.
298
312
  *
299
- * This endpoint is available to administrators of the organization only.
313
+ * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
300
314
  *
301
- */
302
- static updateCluster(options) {
303
- return (options.client ?? client).put({
304
- url: '/clusters/{cluster_id}',
305
- ...options,
306
- headers: {
307
- 'Content-Type': 'application/json',
308
- ...options.headers
309
- }
310
- });
311
- }
312
- /**
313
- * Node join information for the cluster
315
+ * Version channels use patterns like "1.31.x-cfke.x" to match the latest patch version, or "1.x.x-cfke.x" to match the latest minor version.
314
316
  *
315
- * Returns the join information for the cluster. This information is used to add a self-managed nodes to the CFKE cluster. This endpoint is available to only admins of the organization.
317
+ * This endpoint is available to all users in the organization.
316
318
  *
317
319
  */
318
- static getJoinInformation(options) {
319
- return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
320
+ static getMarketplaceChartFiles(options) {
321
+ return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
320
322
  }
321
323
  }
322
324
  export class InvitesService {
323
325
  /**
324
326
  * List invites.
325
327
  *
326
- * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
328
+ * Returns a list of pending (non-expired) invites under the current organization. This endpoint is available to administrators of the organization only.
327
329
  *
328
330
  */
329
331
  static listInvites(options) {
@@ -348,7 +350,7 @@ export class InvitesService {
348
350
  /**
349
351
  * Get invite information.
350
352
  *
351
- * Returns invite details.
353
+ * Validates an invitation code and returns the email address it was issued to (to pre-fill the signup form) and the organization it grants access to. This endpoint is unauthenticated, so no other invite details (such as the invited role) are disclosed.
352
354
  *
353
355
  */
354
356
  static getInvite(options) {
@@ -364,41 +366,39 @@ export class InvitesService {
364
366
  return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
365
367
  }
366
368
  }
367
- export class ChartsMarketplaceService {
369
+ export class ClustersService {
368
370
  /**
369
- * List chart listings available in the marketplace.
370
- *
371
- * Returns a list of available charts in the marketplace.
372
- *
373
- * This endpoint is available to all users in the organization.
371
+ * Query Kubernetes cluster API
374
372
  *
373
+ * An API endpoint for directly querying a Kubernetes cluster API without requiring kubectl or other tools. This endpoint is ideal for automation and scripting, as well as for internal use in fetching data for the Cloudfleet Console. It acts as a passthrough to the Kubernetes API, allowing access to any valid Kubernetes API endpoint, including those not exposed in the Cloudfleet Console. The endpoint is strictly read-only, ensuring no modifications to the cluster state. It is accessible to all users within the organization and uses the same authentication mechanisms as other Cloudfleet API endpoints.
375
374
  */
376
- static listMarketplaceCharts(options) {
377
- return (options?.client ?? client).get({ url: '/marketplace', ...options });
375
+ static queryCluster(options) {
376
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
378
377
  }
379
378
  /**
380
- * Get chart files for a specific version channel.
381
- *
382
- * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
379
+ * List fleets.
383
380
  *
384
- * Version channels use patterns like "1.31.x-cfke.x" to match the latest patch version, or "1.x.x-cfke.x" to match the latest minor version.
381
+ * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
385
382
  *
386
383
  * This endpoint is available to all users in the organization.
387
384
  *
388
385
  */
389
- static getMarketplaceChartFiles(options) {
390
- return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
386
+ static listFleets(options) {
387
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
391
388
  }
392
- }
393
- export class McpService {
394
389
  /**
395
- * MCP endpoint
390
+ * Create a new fleet.
391
+ *
392
+ * Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
393
+ *
394
+ * The cluster must be ready (status `deployed`) before a fleet can be added. Adding a fleet while the cluster is still provisioning returns `409`.
395
+ *
396
+ * This endpoint is available to administrators of the organization only.
396
397
  *
397
- * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
398
398
  */
399
- static postMcp(options) {
399
+ static createFleet(options) {
400
400
  return (options.client ?? client).post({
401
- url: '/mcp',
401
+ url: '/clusters/{cluster_id}/fleets',
402
402
  ...options,
403
403
  headers: {
404
404
  'Content-Type': 'application/json',
@@ -406,28 +406,45 @@ export class McpService {
406
406
  }
407
407
  });
408
408
  }
409
- }
410
- export class OrganizationService {
411
409
  /**
412
- * Get organization information.
410
+ * Permanently delete fleet.
413
411
  *
414
- * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
412
+ * This endpoint will permanently delete fleet. This operation cannot be undone. Your subscription will end by the end of the current billing period and you will not be able to receive credit for unused time. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
413
+ *
414
+ * Deleting a fleet does not deprovision the cloud infrastructure it provisioned: nodes and other resources keep running. Scale the cluster down first, or remove the infrastructure manually, to avoid orphaned resources.
415
+ *
416
+ * This endpoint is available to administrators of the organization only.
417
+ *
418
+ */
419
+ static deleteFleet(options) {
420
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
421
+ }
422
+ /**
423
+ * Get fleet information.
424
+ *
425
+ * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
415
426
  *
416
427
  * This endpoint is available to all users in the organization.
417
428
  *
418
429
  */
419
- static getOrganization(options) {
420
- return (options?.client ?? client).get({ url: '/organization', ...options });
430
+ static getFleet(options) {
431
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
421
432
  }
422
433
  /**
423
- * Create a new organization / Cloudfleet account signup.
434
+ * Update fleet information.
424
435
  *
425
- * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
436
+ * This endpoint allows you to update fleet details.
437
+ *
438
+ * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
439
+ *
440
+ * This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged. The Hetzner API key is the exception: it is kept when omitted (send a new value to rotate it).
441
+ *
442
+ * This endpoint is available to administrators of the organization only.
426
443
  *
427
444
  */
428
- static createOrganization(options) {
429
- return (options.client ?? client).post({
430
- url: '/organization',
445
+ static updateFleet(options) {
446
+ return (options.client ?? client).put({
447
+ url: '/clusters/{cluster_id}/fleets/{fleet_name}',
431
448
  ...options,
432
449
  headers: {
433
450
  'Content-Type': 'application/json',
@@ -435,132 +452,141 @@ export class OrganizationService {
435
452
  }
436
453
  });
437
454
  }
438
- }
439
- export class RegistryService {
440
455
  /**
441
- * List repositories
442
- *
443
- * Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
456
+ * List charts.
444
457
  *
445
- */
446
- static listRepositories(options) {
447
- return (options?.client ?? client).get({ url: '/registry', ...options });
448
- }
449
- /**
450
- * List tags for a repository
458
+ * Returns a list of charts in the cluster.
451
459
  *
452
- * Returns a list of tags for a specific repository, including size and metadata for each tag. This endpoint is available to all users in the organization.
460
+ * This endpoint is available to all users in the organization.
453
461
  *
454
462
  */
455
- static listTags(options) {
456
- return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
463
+ static listCharts(options) {
464
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
457
465
  }
458
466
  /**
459
- * Delete tag
467
+ * Create a new chart.
460
468
  *
461
- * Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
469
+ * Create a new chart deployment.
470
+ *
471
+ * This endpoint is available to administrators of the organization only.
462
472
  *
463
473
  */
464
- static deleteTag(options) {
465
- return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
474
+ static createChart(options) {
475
+ return (options.client ?? client).post({
476
+ url: '/clusters/{cluster_id}/charts',
477
+ ...options,
478
+ headers: {
479
+ 'Content-Type': 'application/json',
480
+ ...options.headers
481
+ }
482
+ });
466
483
  }
467
484
  /**
468
- * Get tag details
485
+ * Permanently delete the chart deployment from the cluster.
469
486
  *
470
- * Returns detailed information for a specific tag in a repository, including manifest details, size, and URI. This endpoint is available to all users in the organization.
487
+ * This endpoint will permanently delete chart. This operation cannot be undone.
488
+ *
489
+ * This endpoint is available to administrators of the organization only.
471
490
  *
472
491
  */
473
- static getTag(options) {
474
- return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
492
+ static deleteChart(options) {
493
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
475
494
  }
476
- }
477
- export class TicketsService {
478
495
  /**
479
- * List tickets for the current organization.
496
+ * Get chart information.
480
497
  *
481
- * Returns all tickets belonging to the caller's organization, newest first.
498
+ * Returns the details of the chart deployment.
499
+ *
500
+ * This endpoint is available to all users in the organization.
482
501
  *
483
502
  */
484
- static listTickets(options) {
485
- return (options?.client ?? client).get({ url: '/tickets', ...options });
503
+ static getChart(options) {
504
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
486
505
  }
487
506
  /**
488
- * Create a new support ticket.
507
+ * Update chart information.
489
508
  *
490
- * Creates a new support ticket with an initial customer message. The request is `multipart/form-data` with a JSON-encoded `payload` field carrying `category`, `body`, and optional `properties`, plus up to 3 `attachments` files (10 MB max each).
509
+ * This endpoint allows you to update the values of a chart deployment.
510
+ *
511
+ * This endpoint is available to administrators of the organization only.
491
512
  *
492
513
  */
493
- static createTicket(options) {
494
- return (options.client ?? client).post({
495
- ...formDataBodySerializer,
496
- url: '/tickets',
514
+ static updateChart(options) {
515
+ return (options.client ?? client).put({
516
+ url: '/clusters/{cluster_id}/charts/{chart_name}',
497
517
  ...options,
498
518
  headers: {
499
- 'Content-Type': null,
519
+ 'Content-Type': 'application/json',
500
520
  ...options.headers
501
521
  }
502
522
  });
503
523
  }
504
524
  /**
505
- * Close a ticket (soft close).
525
+ * List clusters.
506
526
  *
507
- * Marks the ticket as closed. Closed is a terminal state users cannot reply to a closed ticket; a new ticket must be opened instead.
527
+ * Returns a list of clusters under the current organization.
528
+ *
529
+ * This endpoint is available to all users in the organization.
508
530
  *
509
531
  */
510
- static closeTicket(options) {
511
- return (options.client ?? client).delete({ url: '/tickets/{ticket_id}', ...options });
512
- }
513
- /**
514
- * Get a ticket and its messages.
515
- */
516
- static getTicket(options) {
517
- return (options.client ?? client).get({ url: '/tickets/{ticket_id}', ...options });
532
+ static listClusters(options) {
533
+ return (options?.client ?? client).get({ url: '/clusters', ...options });
518
534
  }
519
535
  /**
520
- * Append a customer reply to a ticket.
536
+ * Create a new cluster.
521
537
  *
522
- * Multipart form-data with a JSON-encoded `payload` field carrying `body`, plus up to 3 `attachments` files. Returns 409 if the ticket is closed.
538
+ * Create a new cluster under the current organization. Clusters allow you to group resources and you can create multiple clusters under the same organization, with billing delegated to the parent organization.
539
+ *
540
+ * This endpoint is available to administrators of the organization only.
523
541
  *
524
542
  */
525
- static replyTicket(options) {
543
+ static createCluster(options) {
526
544
  return (options.client ?? client).post({
527
- ...formDataBodySerializer,
528
- url: '/tickets/{ticket_id}/messages',
545
+ url: '/clusters',
529
546
  ...options,
530
547
  headers: {
531
- 'Content-Type': null,
548
+ 'Content-Type': 'application/json',
532
549
  ...options.headers
533
550
  }
534
551
  });
535
552
  }
536
553
  /**
537
- * Download a ticket attachment.
554
+ * Permanently delete cluster.
555
+ *
556
+ * This endpoint will permanently delete the cluster. This operation cannot be undone.
557
+ *
558
+ * Deleting a cluster also deletes its fleets. This does not deprovision the cloud infrastructure those fleets provisioned: nodes and other resources keep running. Scale the cluster down first, or remove the infrastructure manually, to avoid orphaned resources.
559
+ *
560
+ * This endpoint is available to administrators of the organization only.
561
+ *
538
562
  */
539
- static getTicketAttachment(options) {
540
- return (options.client ?? client).get({ url: '/tickets/{ticket_id}/attachments/{attachment_id}', ...options });
563
+ static deleteCluster(options) {
564
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
541
565
  }
542
- }
543
- export class TokensService {
544
566
  /**
545
- * List access tokens in organization.
567
+ * Get cluster information.
546
568
  *
547
- * This endpoint allows you to get a list of all access tokens details in organization. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
569
+ * Returns cluster details.
570
+ *
571
+ * This endpoint is available to all users in the organization.
548
572
  *
549
573
  */
550
- static listTokens(options) {
551
- return (options?.client ?? client).get({ url: '/tokens', ...options });
574
+ static getCluster(options) {
575
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
552
576
  }
553
577
  /**
554
- * Create a new access token.
578
+ * Update cluster information.
555
579
  *
556
- * This endpoint allows you to create a new access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
580
+ * This endpoint allows you to update cluster details. For more information about clusters, see [Clusters](https://cloudfleet.ai/docs/cluster-management/cluster-types/) section of documentation.
581
+ *
582
+ * This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged.
557
583
  *
558
584
  * This endpoint is available to administrators of the organization only.
559
585
  *
560
586
  */
561
- static createToken(options) {
562
- return (options.client ?? client).post({
563
- url: '/tokens',
587
+ static updateCluster(options) {
588
+ return (options.client ?? client).put({
589
+ url: '/clusters/{cluster_id}',
564
590
  ...options,
565
591
  headers: {
566
592
  'Content-Type': 'application/json',
@@ -569,77 +595,88 @@ export class TokensService {
569
595
  });
570
596
  }
571
597
  /**
572
- * Permanently delete access token.
598
+ * Node join information for the cluster
573
599
  *
574
- * This endpoint allows you to delete an access token. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to administrators of the organization only.
600
+ * Returns the join information for the cluster. This information is used to add a self-managed nodes to the CFKE cluster. This endpoint is available to only admins of the organization.
575
601
  *
576
602
  */
577
- static deleteToken(options) {
578
- return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
603
+ static getJoinInformation(options) {
604
+ return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
579
605
  }
606
+ }
607
+ export class BillingService {
580
608
  /**
581
- * Get access token information.
609
+ * Get billing usage information.
582
610
  *
583
- * This endpoint allows you to get access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton. This endpoint is available to all users in the organization.
611
+ * Returns aggregated usage information for the organization with facets for filtering. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
584
612
  *
585
613
  */
586
- static getToken(options) {
587
- return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
614
+ static getUsage(options) {
615
+ return (options?.client ?? client).get({ url: '/billing/usage', ...options });
588
616
  }
589
617
  /**
590
- * Update access token information.
618
+ * Get Stripe client secret.
591
619
  *
592
- * This endpoint allows you to update access token details. For more information about identity access management and security, see [Service Accounts](https://cloudfleet.ai/docs/organization/api-tokens/) section of documentaiton.
620
+ * Endpoint returns the Stripe secret key for the organization. This key is used to securely update the payment method in the Cloudfleet console only, please visit https://console.cloudfleet.ai. This endpoint is available to administrators of the organization only.
593
621
  *
594
- * This endpoint is available to administrators of the organization only.
622
+ */
623
+ static getPaymentMethodSecret(options) {
624
+ return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
625
+ }
626
+ /**
627
+ * List organization payment methods.
628
+ *
629
+ * Returns all payment methods (cards and SEPA Direct Debit) attached to the organization, most recently added first, with the default flagged. This endpoint is available to all users in the organization.
595
630
  *
596
631
  */
597
- static updateToken(options) {
598
- return (options.client ?? client).put({
599
- url: '/tokens/{token_id}',
600
- ...options,
601
- headers: {
602
- 'Content-Type': 'application/json',
603
- ...options.headers
604
- }
605
- });
632
+ static listPaymentMethods(options) {
633
+ return (options?.client ?? client).get({ url: '/billing/payment-methods', ...options });
606
634
  }
607
635
  /**
608
- * Regenerate access token secret key.
636
+ * Set the default payment method.
637
+ *
638
+ * Sets the given payment method as the default used for invoices and active subscriptions. Requires the Administrator role.
609
639
  *
610
- * Generates a new access token secret. Old secret will not be valid anymore.
611
640
  */
612
- static regenerateToken(options) {
613
- return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
641
+ static setDefaultPaymentMethod(options) {
642
+ return (options.client ?? client).put({ url: '/billing/payment-methods/{paymentMethodId}/default', ...options });
614
643
  }
615
- }
616
- export class UsersService {
617
644
  /**
618
- * Get a list of organizations the user belongs to. Used during authentication process.
645
+ * Delete a payment method.
646
+ *
647
+ * Detaches the given payment method from the organization. Requires the Administrator role. An organization must keep at least one payment method, so deleting the only remaining method is rejected.
648
+ *
619
649
  */
620
- static listUserOrganizations(options) {
621
- return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
650
+ static deletePaymentMethod(options) {
651
+ return (options.client ?? client).delete({ url: '/billing/payment-methods/{paymentMethodId}', ...options });
622
652
  }
623
653
  /**
624
- * List users in organization.
654
+ * List issued invoices.
625
655
  *
626
- * Returns a list of user details and their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
656
+ * Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
627
657
  *
628
- * This endpoint is available to all users in the organization.
658
+ */
659
+ static listInvoices(options) {
660
+ return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
661
+ }
662
+ /**
663
+ * Get organization contact and billing address information.
664
+ *
665
+ * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
629
666
  *
630
667
  */
631
- static listUsers(options) {
632
- return (options?.client ?? client).get({ url: '/users', ...options });
668
+ static getContact(options) {
669
+ return (options?.client ?? client).get({ url: '/billing/contact', ...options });
633
670
  }
634
671
  /**
635
- * Create a new user.
672
+ * Update organization contact information and billing address.
636
673
  *
637
- * Create a new user in your Cloudfleet organization. Requires a valid invite code generated by the `invites create` command. The invite code is a unique string that can be used only once to create a new user. The invite code is generated by the `POST /invites` endpoint.
674
+ * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
638
675
  *
639
676
  */
640
- static createUser(options) {
641
- return (options.client ?? client).post({
642
- url: '/users',
677
+ static updateContact(options) {
678
+ return (options.client ?? client).put({
679
+ url: '/billing/contact',
643
680
  ...options,
644
681
  headers: {
645
682
  'Content-Type': 'application/json',
@@ -648,34 +685,23 @@ export class UsersService {
648
685
  });
649
686
  }
650
687
  /**
651
- * Delete user by id.
652
- *
653
- * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
654
- *
655
- */
656
- static deleteUser(options) {
657
- return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
658
- }
659
- /**
660
- * Get user profile information by id.
661
- *
662
- * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
688
+ * Get applied promotional credits
663
689
  *
664
- * This endpoint is available to all users in the organization.
690
+ * Returns applied promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
665
691
  *
666
692
  */
667
- static getUser(options) {
668
- return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
693
+ static getCredits(options) {
694
+ return (options?.client ?? client).get({ url: '/billing/credits', ...options });
669
695
  }
670
696
  /**
671
- * Update user profile information.
697
+ * Redeem promotional credits code.
672
698
  *
673
- * Update user profile information: email, first name, last name, role. This endpoint can be accessed by administrators and the user itself. Role and status can be changed by administrators only.
699
+ * Applies promotional credits for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
674
700
  *
675
701
  */
676
- static updateUser(options) {
677
- return (options.client ?? client).put({
678
- url: '/users/{user_id}',
702
+ static redeemCredits(options) {
703
+ return (options.client ?? client).post({
704
+ url: '/billing/credits',
679
705
  ...options,
680
706
  headers: {
681
707
  'Content-Type': 'application/json',