@cloudfleet/sdk 0.0.1-a0f38b2 → 0.0.1-a3b700e

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