@cloudfleet/sdk 0.0.1-2caaedc → 0.0.1-2d09a49

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 (36) hide show
  1. package/README.md +26 -2
  2. package/dist/@tanstack/react-query.gen.d.ts +1199 -0
  3. package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
  4. package/dist/@tanstack/react-query.gen.js +1215 -0
  5. package/dist/@tanstack/react-query.gen.js.map +1 -0
  6. package/dist/client/client.gen.d.ts.map +1 -1
  7. package/dist/client/client.gen.js +104 -123
  8. package/dist/client/client.gen.js.map +1 -1
  9. package/dist/client/types.gen.d.ts +6 -3
  10. package/dist/client/types.gen.d.ts.map +1 -1
  11. package/dist/client/utils.gen.d.ts +7 -3
  12. package/dist/client/utils.gen.d.ts.map +1 -1
  13. package/dist/client/utils.gen.js +3 -3
  14. package/dist/client/utils.gen.js.map +1 -1
  15. package/dist/core/params.gen.js +4 -4
  16. package/dist/core/params.gen.js.map +1 -1
  17. package/dist/core/serverSentEvents.gen.d.ts +1 -1
  18. package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
  19. package/dist/core/serverSentEvents.gen.js +3 -4
  20. package/dist/core/serverSentEvents.gen.js.map +1 -1
  21. package/dist/schemas.gen.d.ts +932 -140
  22. package/dist/schemas.gen.d.ts.map +1 -1
  23. package/dist/schemas.gen.js +1867 -213
  24. package/dist/schemas.gen.js.map +1 -1
  25. package/dist/sdk.gen.d.ts +262 -186
  26. package/dist/sdk.gen.d.ts.map +1 -1
  27. package/dist/sdk.gen.js +377 -257
  28. package/dist/sdk.gen.js.map +1 -1
  29. package/dist/services/kubernetes/api.d.ts +8 -8
  30. package/dist/types.gen.d.ts +1469 -736
  31. package/dist/types.gen.d.ts.map +1 -1
  32. package/dist/zod.gen.d.ts +3415 -1208
  33. package/dist/zod.gen.d.ts.map +1 -1
  34. package/dist/zod.gen.js +1280 -293
  35. package/dist/zod.gen.js.map +1 -1
  36. package/package.json +27 -11
package/dist/sdk.gen.js CHANGED
@@ -1,60 +1,69 @@
1
1
  // This file is auto-generated by @hey-api/openapi-ts
2
+ import { formDataBodySerializer } from './client';
2
3
  import { client } from './client.gen';
3
- export class BillingService {
4
+ export class UsersService {
4
5
  /**
5
- * Get billing usage information.
6
- *
7
- * 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.
8
- *
6
+ * Get a list of organizations the user belongs to. Used during authentication process.
9
7
  */
10
- static getUsage(options) {
11
- return (options?.client ?? client).get({ url: '/billing/usage', ...options });
8
+ static listUserOrganizations(options) {
9
+ return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
12
10
  }
13
11
  /**
14
- * Get organization payment method information.
12
+ * List users in organization.
15
13
  *
16
- * 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.
17
17
  *
18
18
  */
19
- static getPaymentMethod(options) {
20
- return (options?.client ?? client).get({ url: '/billing/payment-method', ...options });
19
+ static listUsers(options) {
20
+ return (options?.client ?? client).get({ url: '/users', ...options });
21
21
  }
22
22
  /**
23
- * Get Stripe client secret.
23
+ * Create a new user.
24
24
  *
25
- * 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.
26
26
  *
27
27
  */
28
- static getPaymentMethodSecret(options) {
29
- 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
+ });
30
37
  }
31
38
  /**
32
- * List issued invoices.
39
+ * Delete user by id.
33
40
  *
34
- * 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.
35
42
  *
36
43
  */
37
- static listInvoices(options) {
38
- return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
44
+ static deleteUser(options) {
45
+ return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
39
46
  }
40
47
  /**
41
- * Get organization contact and billing address information.
48
+ * Get user profile information by id.
42
49
  *
43
- * 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.
44
53
  *
45
54
  */
46
- static getContact(options) {
47
- return (options?.client ?? client).get({ url: '/billing/contact', ...options });
55
+ static getUser(options) {
56
+ return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
48
57
  }
49
58
  /**
50
- * Update organization contact information and billing address.
59
+ * Update user profile information.
51
60
  *
52
- * 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.
53
62
  *
54
63
  */
55
- static updateContact(options) {
64
+ static updateUser(options) {
56
65
  return (options.client ?? client).put({
57
- url: '/billing/contact',
66
+ url: '/users/{user_id}',
58
67
  ...options,
59
68
  headers: {
60
69
  'Content-Type': 'application/json',
@@ -62,24 +71,28 @@ export class BillingService {
62
71
  }
63
72
  });
64
73
  }
74
+ }
75
+ export class TokensService {
65
76
  /**
66
- * Get applied promotional credits
77
+ * List access tokens in organization.
67
78
  *
68
- * 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.
69
80
  *
70
81
  */
71
- static getCredits(options) {
72
- return (options?.client ?? client).get({ url: '/billing/credits', ...options });
82
+ static listTokens(options) {
83
+ return (options?.client ?? client).get({ url: '/tokens', ...options });
73
84
  }
74
85
  /**
75
- * Redeem promotional credits code.
86
+ * Create a new access token.
76
87
  *
77
- * 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.
78
91
  *
79
92
  */
80
- static redeemCredits(options) {
93
+ static createToken(options) {
81
94
  return (options.client ?? client).post({
82
- url: '/billing/credits',
95
+ url: '/tokens',
83
96
  ...options,
84
97
  headers: {
85
98
  'Content-Type': 'application/json',
@@ -87,30 +100,35 @@ export class BillingService {
87
100
  }
88
101
  });
89
102
  }
90
- }
91
- export class ClustersService {
92
103
  /**
93
- * List charts.
104
+ * Permanently delete access token.
94
105
  *
95
- * 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.
96
107
  *
97
- * 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.
98
116
  *
99
117
  */
100
- static listCharts(options) {
101
- 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 });
102
120
  }
103
121
  /**
104
- * Create a new chart.
122
+ * Update access token information.
105
123
  *
106
- * 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.
107
125
  *
108
126
  * This endpoint is available to administrators of the organization only.
109
127
  *
110
128
  */
111
- static createChart(options) {
112
- return (options.client ?? client).post({
113
- url: '/clusters/{cluster_id}/charts',
129
+ static updateToken(options) {
130
+ return (options.client ?? client).put({
131
+ url: '/tokens/{token_id}',
114
132
  ...options,
115
133
  headers: {
116
134
  'Content-Type': 'application/json',
@@ -119,148 +137,139 @@ export class ClustersService {
119
137
  });
120
138
  }
121
139
  /**
122
- * Permanently delete the chart deployment from the cluster.
123
- *
124
- * This endpoint will permanently delete chart. This operation cannot be undone.
125
- *
126
- * This endpoint is available to administrators of the organization only.
140
+ * Regenerate access token secret key.
127
141
  *
142
+ * Generates a new access token secret. Old secret will not be valid anymore.
128
143
  */
129
- static deleteChart(options) {
130
- 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 });
131
146
  }
147
+ }
148
+ export class TicketsService {
132
149
  /**
133
- * Get chart information.
150
+ * List tickets for the current organization.
134
151
  *
135
- * Returns the details of the chart deployment.
136
- *
137
- * This endpoint is available to all users in the organization.
152
+ * Returns all tickets belonging to the caller's organization, newest first.
138
153
  *
139
154
  */
140
- static getChart(options) {
141
- 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 });
142
157
  }
143
158
  /**
144
- * Update chart information.
145
- *
146
- * This endpoint allows you to update the values of a chart deployment.
159
+ * Create a new support ticket.
147
160
  *
148
- * 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).
149
162
  *
150
163
  */
151
- static updateChart(options) {
152
- return (options.client ?? client).put({
153
- url: '/clusters/{cluster_id}/charts/{chart_name}',
164
+ static createTicket(options) {
165
+ return (options.client ?? client).post({
166
+ ...formDataBodySerializer,
167
+ url: '/tickets',
154
168
  ...options,
155
169
  headers: {
156
- 'Content-Type': 'application/json',
170
+ 'Content-Type': null,
157
171
  ...options.headers
158
172
  }
159
173
  });
160
174
  }
161
175
  /**
162
- * List fleets.
163
- *
164
- * 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).
165
177
  *
166
- * 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.
167
179
  *
168
180
  */
169
- static listFleets(options) {
170
- 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 });
171
183
  }
172
184
  /**
173
- * Create a new fleet.
174
- *
175
- * 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.
176
192
  *
177
- * 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.
178
194
  *
179
195
  */
180
- static createFleet(options) {
196
+ static replyTicket(options) {
181
197
  return (options.client ?? client).post({
182
- url: '/clusters/{cluster_id}/fleets',
198
+ ...formDataBodySerializer,
199
+ url: '/tickets/{ticket_id}/messages',
183
200
  ...options,
184
201
  headers: {
185
- 'Content-Type': 'application/json',
202
+ 'Content-Type': null,
186
203
  ...options.headers
187
204
  }
188
205
  });
189
206
  }
190
207
  /**
191
- * Permanently delete fleet.
192
- *
193
- * 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.
194
- *
195
- * This endpoint is available to administrators of the organization only.
196
- *
208
+ * Download a ticket attachment.
197
209
  */
198
- static deleteFleet(options) {
199
- 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 });
200
212
  }
213
+ }
214
+ export class RegistryService {
201
215
  /**
202
- * Get fleet information.
203
- *
204
- * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
216
+ * List repositories
205
217
  *
206
- * 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.
207
219
  *
208
220
  */
209
- static getFleet(options) {
210
- 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 });
211
223
  }
212
224
  /**
213
- * Update fleet information.
214
- *
215
- * This endpoint allows you to update fleet details.
225
+ * List tags for a repository
216
226
  *
217
- * 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.
218
228
  *
219
- * 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
220
235
  *
221
- * 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.
222
237
  *
223
238
  */
224
- static updateFleet(options) {
225
- return (options.client ?? client).put({
226
- url: '/clusters/{cluster_id}/fleets/{fleet_name}',
227
- ...options,
228
- headers: {
229
- 'Content-Type': 'application/json',
230
- ...options.headers
231
- }
232
- });
239
+ static deleteTag(options) {
240
+ return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
233
241
  }
234
242
  /**
235
- * 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.
236
246
  *
237
- * 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.
238
247
  */
239
- static queryCluster(options) {
240
- 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 });
241
250
  }
251
+ }
252
+ export class OrganizationService {
242
253
  /**
243
- * List clusters.
254
+ * Get organization information.
244
255
  *
245
- * 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.
246
257
  *
247
258
  * This endpoint is available to all users in the organization.
248
259
  *
249
260
  */
250
- static listClusters(options) {
251
- return (options?.client ?? client).get({ url: '/clusters', ...options });
261
+ static getOrganization(options) {
262
+ return (options?.client ?? client).get({ url: '/organization', ...options });
252
263
  }
253
264
  /**
254
- * Create a new cluster.
255
- *
256
- * 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.
257
266
  *
258
- * 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.
259
268
  *
260
269
  */
261
- static createCluster(options) {
270
+ static createOrganization(options) {
262
271
  return (options.client ?? client).post({
263
- url: '/clusters',
272
+ url: '/organization',
264
273
  ...options,
265
274
  headers: {
266
275
  'Content-Type': 'application/json',
@@ -269,38 +278,42 @@ export class ClustersService {
269
278
  });
270
279
  }
271
280
  /**
272
- * Permanently delete cluster.
281
+ * Get the organization's consent status for the new Basic price.
273
282
  *
274
- * This endpoint will permanently delete the cluster. This operation cannot be undone.
283
+ * Returns the organization's consent status for the migration from the free tier to the paid Basic plan. `pending` means an administrator must opt in; `not_applicable` means the organization is not in scope for the migration; `accepted` / `rejected` reflect a recorded decision.
275
284
  *
276
- * This endpoint is available to administrators of the organization only.
285
+ * This endpoint is available to all users in the organization and drives the consent dialog in the console.
277
286
  *
278
287
  */
279
- static deleteCluster(options) {
280
- return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
288
+ static getBasicPriceConsent(options) {
289
+ return (options?.client ?? client).get({ url: '/organization/basic-price-consent', ...options });
281
290
  }
282
291
  /**
283
- * Get cluster information.
292
+ * Record an administrator's decision on the new Basic price.
284
293
  *
285
- * 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.
286
- *
287
- * This endpoint is available to all users in the organization.
294
+ * Records an affirmative decision to continue on the paid Basic plan (`accepted`) or to opt out (`rejected`). This is an organization-binding financial decision, so it is restricted to administrators. Each call appends an immutable audit entry (who and when) and sends a confirmation email to the acting administrator.
288
295
  *
289
296
  */
290
- static getCluster(options) {
291
- return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
297
+ static setBasicPriceConsent(options) {
298
+ return (options.client ?? client).post({
299
+ url: '/organization/basic-price-consent',
300
+ ...options,
301
+ headers: {
302
+ 'Content-Type': 'application/json',
303
+ ...options.headers
304
+ }
305
+ });
292
306
  }
307
+ }
308
+ export class McpService {
293
309
  /**
294
- * Update cluster information.
295
- *
296
- * 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.
297
- *
298
- * This endpoint is available to administrators of the organization only.
310
+ * MCP endpoint
299
311
  *
312
+ * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
300
313
  */
301
- static updateCluster(options) {
302
- return (options.client ?? client).put({
303
- url: '/clusters/{cluster_id}',
314
+ static postMcp(options) {
315
+ return (options.client ?? client).post({
316
+ url: '/mcp',
304
317
  ...options,
305
318
  headers: {
306
319
  'Content-Type': 'application/json',
@@ -308,21 +321,38 @@ export class ClustersService {
308
321
  }
309
322
  });
310
323
  }
324
+ }
325
+ export class ChartsMarketplaceService {
311
326
  /**
312
- * Node join information for the cluster
327
+ * List chart listings available in the marketplace.
313
328
  *
314
- * 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.
329
+ * Returns a list of available charts in the marketplace.
330
+ *
331
+ * This endpoint is available to all users in the organization.
315
332
  *
316
333
  */
317
- static getJoinInformation(options) {
318
- return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
334
+ static listMarketplaceCharts(options) {
335
+ return (options?.client ?? client).get({ url: '/marketplace', ...options });
336
+ }
337
+ /**
338
+ * Get chart files for a specific version channel.
339
+ *
340
+ * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
341
+ *
342
+ * 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.
343
+ *
344
+ * This endpoint is available to all users in the organization.
345
+ *
346
+ */
347
+ static getMarketplaceChartFiles(options) {
348
+ return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
319
349
  }
320
350
  }
321
351
  export class InvitesService {
322
352
  /**
323
353
  * List invites.
324
354
  *
325
- * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
355
+ * Returns a list of pending (non-expired) invites under the current organization. This endpoint is available to administrators of the organization only.
326
356
  *
327
357
  */
328
358
  static listInvites(options) {
@@ -347,7 +377,7 @@ export class InvitesService {
347
377
  /**
348
378
  * Get invite information.
349
379
  *
350
- * Returns invite details.
380
+ * 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.
351
381
  *
352
382
  */
353
383
  static getInvite(options) {
@@ -363,41 +393,39 @@ export class InvitesService {
363
393
  return (options.client ?? client).delete({ url: '/invites/{email}', ...options });
364
394
  }
365
395
  }
366
- export class ChartsMarketplaceService {
396
+ export class ClustersService {
367
397
  /**
368
- * List chart listings available in the marketplace.
369
- *
370
- * Returns a list of available charts in the marketplace.
371
- *
372
- * This endpoint is available to all users in the organization.
398
+ * Query Kubernetes cluster API
373
399
  *
400
+ * 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.
374
401
  */
375
- static listMarketplaceCharts(options) {
376
- return (options?.client ?? client).get({ url: '/marketplace', ...options });
402
+ static queryCluster(options) {
403
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/query', ...options });
377
404
  }
378
405
  /**
379
- * Get chart files for a specific version channel.
380
- *
381
- * Returns the Chart.yaml, values.yaml, and values.schema.json files for the latest version matching the specified version channel.
406
+ * List fleets.
382
407
  *
383
- * 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.
408
+ * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
384
409
  *
385
410
  * This endpoint is available to all users in the organization.
386
411
  *
387
412
  */
388
- static getMarketplaceChartFiles(options) {
389
- return (options.client ?? client).get({ url: '/marketplace/{chart_name}/files/{version_channel}', ...options });
413
+ static listFleets(options) {
414
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets', ...options });
390
415
  }
391
- }
392
- export class McpService {
393
416
  /**
394
- * MCP endpoint
417
+ * Create a new fleet.
418
+ *
419
+ * 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.
420
+ *
421
+ * The cluster must be ready (status `deployed`) before a fleet can be added. Adding a fleet while the cluster is still provisioning returns `409`.
422
+ *
423
+ * This endpoint is available to administrators of the organization only.
395
424
  *
396
- * MCP endpoint for handling Model Context Protocol JSON-RPC 2.0 messages.
397
425
  */
398
- static postMcp(options) {
426
+ static createFleet(options) {
399
427
  return (options.client ?? client).post({
400
- url: '/mcp',
428
+ url: '/clusters/{cluster_id}/fleets',
401
429
  ...options,
402
430
  headers: {
403
431
  'Content-Type': 'application/json',
@@ -405,28 +433,45 @@ export class McpService {
405
433
  }
406
434
  });
407
435
  }
408
- }
409
- export class OrganizationService {
410
436
  /**
411
- * Get organization information.
437
+ * Permanently delete fleet.
412
438
  *
413
- * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
439
+ * 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.
440
+ *
441
+ * 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.
442
+ *
443
+ * This endpoint is available to administrators of the organization only.
444
+ *
445
+ */
446
+ static deleteFleet(options) {
447
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
448
+ }
449
+ /**
450
+ * Get fleet information.
451
+ *
452
+ * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
414
453
  *
415
454
  * This endpoint is available to all users in the organization.
416
455
  *
417
456
  */
418
- static getOrganization(options) {
419
- return (options?.client ?? client).get({ url: '/organization', ...options });
457
+ static getFleet(options) {
458
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/fleets/{fleet_name}', ...options });
420
459
  }
421
460
  /**
422
- * Create a new organization / Cloudfleet account signup.
461
+ * Update fleet information.
423
462
  *
424
- * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
463
+ * This endpoint allows you to update fleet details.
464
+ *
465
+ * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
466
+ *
467
+ * 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).
468
+ *
469
+ * This endpoint is available to administrators of the organization only.
425
470
  *
426
471
  */
427
- static createOrganization(options) {
428
- return (options.client ?? client).post({
429
- url: '/organization',
472
+ static updateFleet(options) {
473
+ return (options.client ?? client).put({
474
+ url: '/clusters/{cluster_id}/fleets/{fleet_name}',
430
475
  ...options,
431
476
  headers: {
432
477
  'Content-Type': 'application/json',
@@ -434,66 +479,97 @@ export class OrganizationService {
434
479
  }
435
480
  });
436
481
  }
437
- }
438
- export class RegistryService {
439
482
  /**
440
- * List repositories
483
+ * List charts.
441
484
  *
442
- * Returns a list of repositories in the registry across all regions. This endpoint is available to all users in the organization.
485
+ * Returns a list of charts in the cluster.
486
+ *
487
+ * This endpoint is available to all users in the organization.
443
488
  *
444
489
  */
445
- static listRepositories(options) {
446
- return (options?.client ?? client).get({ url: '/registry', ...options });
490
+ static listCharts(options) {
491
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts', ...options });
447
492
  }
448
493
  /**
449
- * List tags for a repository
494
+ * Create a new chart.
450
495
  *
451
- * 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.
496
+ * Create a new chart deployment.
497
+ *
498
+ * This endpoint is available to administrators of the organization only.
452
499
  *
453
500
  */
454
- static listTags(options) {
455
- return (options.client ?? client).get({ url: '/registry/{region}/{repository}', ...options });
501
+ static createChart(options) {
502
+ return (options.client ?? client).post({
503
+ url: '/clusters/{cluster_id}/charts',
504
+ ...options,
505
+ headers: {
506
+ 'Content-Type': 'application/json',
507
+ ...options.headers
508
+ }
509
+ });
456
510
  }
457
511
  /**
458
- * Delete tag
512
+ * Permanently delete the chart deployment from the cluster.
459
513
  *
460
- * Permanently deletes a specific tag from a repository. This endpoint is available to administrators of the organization only.
514
+ * This endpoint will permanently delete chart. This operation cannot be undone.
515
+ *
516
+ * This endpoint is available to administrators of the organization only.
461
517
  *
462
518
  */
463
- static deleteTag(options) {
464
- return (options.client ?? client).delete({ url: '/registry/{region}/{repository}/{tag}', ...options });
519
+ static deleteChart(options) {
520
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
465
521
  }
466
522
  /**
467
- * Get tag details
523
+ * Get chart information.
468
524
  *
469
- * 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.
525
+ * Returns the details of the chart deployment.
526
+ *
527
+ * This endpoint is available to all users in the organization.
470
528
  *
471
529
  */
472
- static getTag(options) {
473
- return (options.client ?? client).get({ url: '/registry/{region}/{repository}/{tag}', ...options });
530
+ static getChart(options) {
531
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}/charts/{chart_name}', ...options });
474
532
  }
475
- }
476
- export class TokensService {
477
533
  /**
478
- * List access tokens in organization.
534
+ * Update chart information.
479
535
  *
480
- * 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.
536
+ * This endpoint allows you to update the values of a chart deployment.
537
+ *
538
+ * This endpoint is available to administrators of the organization only.
481
539
  *
482
540
  */
483
- static listTokens(options) {
484
- return (options?.client ?? client).get({ url: '/tokens', ...options });
541
+ static updateChart(options) {
542
+ return (options.client ?? client).put({
543
+ url: '/clusters/{cluster_id}/charts/{chart_name}',
544
+ ...options,
545
+ headers: {
546
+ 'Content-Type': 'application/json',
547
+ ...options.headers
548
+ }
549
+ });
485
550
  }
486
551
  /**
487
- * Create a new access token.
552
+ * List clusters.
488
553
  *
489
- * 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.
554
+ * Returns a list of clusters under the current organization.
555
+ *
556
+ * This endpoint is available to all users in the organization.
557
+ *
558
+ */
559
+ static listClusters(options) {
560
+ return (options?.client ?? client).get({ url: '/clusters', ...options });
561
+ }
562
+ /**
563
+ * Create a new cluster.
564
+ *
565
+ * 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.
490
566
  *
491
567
  * This endpoint is available to administrators of the organization only.
492
568
  *
493
569
  */
494
- static createToken(options) {
570
+ static createCluster(options) {
495
571
  return (options.client ?? client).post({
496
- url: '/tokens',
572
+ url: '/clusters',
497
573
  ...options,
498
574
  headers: {
499
575
  'Content-Type': 'application/json',
@@ -502,34 +578,42 @@ export class TokensService {
502
578
  });
503
579
  }
504
580
  /**
505
- * Permanently delete access token.
581
+ * Permanently delete cluster.
506
582
  *
507
- * 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.
583
+ * This endpoint will permanently delete the cluster. This operation cannot be undone.
584
+ *
585
+ * 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.
586
+ *
587
+ * This endpoint is available to administrators of the organization only.
508
588
  *
509
589
  */
510
- static deleteToken(options) {
511
- return (options.client ?? client).delete({ url: '/tokens/{token_id}', ...options });
590
+ static deleteCluster(options) {
591
+ return (options.client ?? client).delete({ url: '/clusters/{cluster_id}', ...options });
512
592
  }
513
593
  /**
514
- * Get access token information.
594
+ * Get cluster information.
515
595
  *
516
- * 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.
596
+ * Returns cluster details.
597
+ *
598
+ * This endpoint is available to all users in the organization.
517
599
  *
518
600
  */
519
- static getToken(options) {
520
- return (options.client ?? client).get({ url: '/tokens/{token_id}', ...options });
601
+ static getCluster(options) {
602
+ return (options.client ?? client).get({ url: '/clusters/{cluster_id}', ...options });
521
603
  }
522
604
  /**
523
- * Update access token information.
605
+ * Update cluster information.
524
606
  *
525
- * 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.
607
+ * 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.
608
+ *
609
+ * This is a full overwrite: any field omitted from the request is reset to its default rather than left unchanged.
526
610
  *
527
611
  * This endpoint is available to administrators of the organization only.
528
612
  *
529
613
  */
530
- static updateToken(options) {
614
+ static updateCluster(options) {
531
615
  return (options.client ?? client).put({
532
- url: '/tokens/{token_id}',
616
+ url: '/clusters/{cluster_id}',
533
617
  ...options,
534
618
  headers: {
535
619
  'Content-Type': 'application/json',
@@ -538,77 +622,113 @@ export class TokensService {
538
622
  });
539
623
  }
540
624
  /**
541
- * Regenerate access token secret key.
625
+ * Node join information for the cluster
626
+ *
627
+ * 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.
542
628
  *
543
- * Generates a new access token secret. Old secret will not be valid anymore.
544
629
  */
545
- static regenerateToken(options) {
546
- return (options.client ?? client).put({ url: '/tokens/{token_id}/secret', ...options });
630
+ static getJoinInformation(options) {
631
+ return (options.client ?? client).post({ url: '/clusters/{cluster_id}/join_information', ...options });
547
632
  }
548
633
  }
549
- export class UsersService {
634
+ export class BillingService {
550
635
  /**
551
- * Get a list of organizations the user belongs to. Used during authentication process.
636
+ * Get billing usage information.
637
+ *
638
+ * 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.
639
+ *
552
640
  */
553
- static listUserOrganizations(options) {
554
- return (options.client ?? client).get({ url: '/users/organizations/{email}', ...options });
641
+ static getUsage(options) {
642
+ return (options?.client ?? client).get({ url: '/billing/usage', ...options });
555
643
  }
556
644
  /**
557
- * List users in organization.
645
+ * Get Stripe client secret.
558
646
  *
559
- * 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.
647
+ * 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.
560
648
  *
561
- * This endpoint is available to all users in the organization.
649
+ */
650
+ static getPaymentMethodSecret(options) {
651
+ return (options?.client ?? client).put({ url: '/billing/payment-method', ...options });
652
+ }
653
+ /**
654
+ * List organization payment methods.
655
+ *
656
+ * 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.
562
657
  *
563
658
  */
564
- static listUsers(options) {
565
- return (options?.client ?? client).get({ url: '/users', ...options });
659
+ static listPaymentMethods(options) {
660
+ return (options?.client ?? client).get({ url: '/billing/payment-methods', ...options });
566
661
  }
567
662
  /**
568
- * Create a new user.
663
+ * Set the default payment method.
569
664
  *
570
- * 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.
665
+ * Sets the given payment method as the default used for invoices and active subscriptions. Requires the Administrator role.
571
666
  *
572
667
  */
573
- static createUser(options) {
574
- return (options.client ?? client).post({
575
- url: '/users',
576
- ...options,
577
- headers: {
578
- 'Content-Type': 'application/json',
579
- ...options.headers
580
- }
581
- });
668
+ static setDefaultPaymentMethod(options) {
669
+ return (options.client ?? client).put({ url: '/billing/payment-methods/{paymentMethodId}/default', ...options });
582
670
  }
583
671
  /**
584
- * Delete user by id.
672
+ * Delete a payment method.
585
673
  *
586
- * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
674
+ * 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.
587
675
  *
588
676
  */
589
- static deleteUser(options) {
590
- return (options.client ?? client).delete({ url: '/users/{user_id}', ...options });
677
+ static deletePaymentMethod(options) {
678
+ return (options.client ?? client).delete({ url: '/billing/payment-methods/{paymentMethodId}', ...options });
591
679
  }
592
680
  /**
593
- * Get user profile information by id.
681
+ * List issued invoices.
594
682
  *
595
- * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
683
+ * 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.
596
684
  *
597
- * This endpoint is available to all users in the organization.
685
+ */
686
+ static listInvoices(options) {
687
+ return (options?.client ?? client).get({ url: '/billing/invoices', ...options });
688
+ }
689
+ /**
690
+ * Get organization contact and billing address information.
691
+ *
692
+ * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
598
693
  *
599
694
  */
600
- static getUser(options) {
601
- return (options.client ?? client).get({ url: '/users/{user_id}', ...options });
695
+ static getContact(options) {
696
+ return (options?.client ?? client).get({ url: '/billing/contact', ...options });
602
697
  }
603
698
  /**
604
- * Update user profile information.
699
+ * Update organization contact information and billing address.
605
700
  *
606
- * 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.
701
+ * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
607
702
  *
608
703
  */
609
- static updateUser(options) {
704
+ static updateContact(options) {
610
705
  return (options.client ?? client).put({
611
- url: '/users/{user_id}',
706
+ url: '/billing/contact',
707
+ ...options,
708
+ headers: {
709
+ 'Content-Type': 'application/json',
710
+ ...options.headers
711
+ }
712
+ });
713
+ }
714
+ /**
715
+ * Get applied promotional credits
716
+ *
717
+ * 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.
718
+ *
719
+ */
720
+ static getCredits(options) {
721
+ return (options?.client ?? client).get({ url: '/billing/credits', ...options });
722
+ }
723
+ /**
724
+ * Redeem promotional credits code.
725
+ *
726
+ * 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.
727
+ *
728
+ */
729
+ static redeemCredits(options) {
730
+ return (options.client ?? client).post({
731
+ url: '/billing/credits',
612
732
  ...options,
613
733
  headers: {
614
734
  'Content-Type': 'application/json',