@cloudfleet/sdk 0.0.3

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.
@@ -0,0 +1,573 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ import { createClient, createConfig } from '@hey-api/client-fetch';
3
+ export const client = createClient(createConfig());
4
+ export class BillingService {
5
+ /**
6
+ * Get billing usage information.
7
+ * Returns rolled-up usage information for the organization. Entries are grouped by task, and billing unit. 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
+ *
9
+ */
10
+ static getUsage(options) {
11
+ return (options?.client ?? client).get({
12
+ url: '/billing/usage',
13
+ ...options
14
+ });
15
+ }
16
+ /**
17
+ * Get billing balance information.
18
+ * Returns the current balance of the organization in USD as a floating-point number. 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.
19
+ *
20
+ */
21
+ static getBalance(options) {
22
+ return (options?.client ?? client).get({
23
+ url: '/billing/balance',
24
+ ...options
25
+ });
26
+ }
27
+ /**
28
+ * Get organization payment method information.
29
+ * 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.
30
+ *
31
+ */
32
+ static getPaymentMethod(options) {
33
+ return (options?.client ?? client).get({
34
+ url: '/billing/payment-method',
35
+ ...options
36
+ });
37
+ }
38
+ /**
39
+ * Get Stripe client secret.
40
+ * 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.
41
+ *
42
+ */
43
+ static getPaymentMethodSecret(options) {
44
+ return (options?.client ?? client).put({
45
+ url: '/billing/payment-method',
46
+ ...options
47
+ });
48
+ }
49
+ /**
50
+ * List issued invoices.
51
+ * 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.
52
+ *
53
+ */
54
+ static listInvoices(options) {
55
+ return (options?.client ?? client).get({
56
+ url: '/billing/invoices',
57
+ ...options
58
+ });
59
+ }
60
+ /**
61
+ * Get invoice information.
62
+ * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
63
+ *
64
+ */
65
+ static getInvoice(options) {
66
+ return (options?.client ?? client).get({
67
+ url: '/billing/invoices/{id}',
68
+ ...options
69
+ });
70
+ }
71
+ }
72
+ export class ClustersService {
73
+ /**
74
+ * List fleets.
75
+ * Returns a list of fleets belonging to the cluster. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
76
+ *
77
+ * This endpoint is available to all users in the organization.
78
+ *
79
+ */
80
+ static listFleets(options) {
81
+ return (options?.client ?? client).get({
82
+ url: '/clusters/{cluster_id}/fleets',
83
+ ...options
84
+ });
85
+ }
86
+ /**
87
+ * Create a new fleet.
88
+ * Create a new fleet under the current organization. fleets allow you to to schedule workloads in cloud service provider accounts owned by you. This endpoint will create a new subscription, and incur an additional charge on your account. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
89
+ *
90
+ * This endpoint is available to administrators of the organization only.
91
+ *
92
+ */
93
+ static createFleet(options) {
94
+ return (options?.client ?? client).post({
95
+ url: '/clusters/{cluster_id}/fleets',
96
+ ...options,
97
+ headers: {
98
+ 'Content-Type': 'application/json',
99
+ ...options?.headers
100
+ }
101
+ });
102
+ }
103
+ /**
104
+ * Permanently delete fleet.
105
+ * 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 Connected Fleet until the end of the billing period, set the status to `cancelling`. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
106
+ *
107
+ * This endpoint is available to administrators of the organization only.
108
+ *
109
+ */
110
+ static deleteFleet(options) {
111
+ return (options?.client ?? client).delete({
112
+ url: '/clusters/{cluster_id}/fleets/{fleet_name}',
113
+ ...options
114
+ });
115
+ }
116
+ /**
117
+ * Get fleet information.
118
+ * Returns fleet details. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
119
+ *
120
+ * This endpoint is available to all users in the organization.
121
+ *
122
+ */
123
+ static getFleet(options) {
124
+ return (options?.client ?? client).get({
125
+ url: '/clusters/{cluster_id}/fleets/{fleet_name}',
126
+ ...options
127
+ });
128
+ }
129
+ /**
130
+ * Update fleet information.
131
+ * This endpoint allows you to update fleet details.
132
+ *
133
+ * 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 Connected Fleet until the end of the billing period, set the status to `cancelling`.
134
+ *
135
+ * For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
136
+ *
137
+ * This endpoint is available to administrators of the organization only.
138
+ *
139
+ */
140
+ static updateFleet(options) {
141
+ return (options?.client ?? client).put({
142
+ url: '/clusters/{cluster_id}/fleets/{fleet_name}',
143
+ ...options,
144
+ headers: {
145
+ 'Content-Type': 'application/json',
146
+ ...options?.headers
147
+ }
148
+ });
149
+ }
150
+ /**
151
+ * Query Kubernetes cluster API
152
+ * 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.
153
+ */
154
+ static queryCluster(options) {
155
+ return (options?.client ?? client).get({
156
+ url: '/clusters/{cluster_id}/query',
157
+ ...options
158
+ });
159
+ }
160
+ /**
161
+ * List clusters.
162
+ * 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.
163
+ *
164
+ * Examples of pagination, sorting and filtering:
165
+ *
166
+ * - `/clusters?sort=["name","ASC"]&range=[0, 24]`
167
+ * - `/clusters?filter={"name":"Research team - Cluster A"}`
168
+ *
169
+ * This endpoint is available to all users in the organization.
170
+ *
171
+ */
172
+ static listClusters(options) {
173
+ return (options?.client ?? client).get({
174
+ url: '/clusters',
175
+ ...options
176
+ });
177
+ }
178
+ /**
179
+ * Create a new cluster.
180
+ * 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.
181
+ *
182
+ * This endpoint is available to administrators of the organization only.
183
+ *
184
+ */
185
+ static createCluster(options) {
186
+ return (options?.client ?? client).post({
187
+ url: '/clusters',
188
+ ...options,
189
+ headers: {
190
+ 'Content-Type': 'application/json',
191
+ ...options?.headers
192
+ }
193
+ });
194
+ }
195
+ /**
196
+ * Permanently delete cluster.
197
+ * This endpoint will permanently delete the cluster. This operation cannot be undone.
198
+ *
199
+ * This endpoint is available to administrators of the organization only.
200
+ *
201
+ */
202
+ static deleteCluster(options) {
203
+ return (options?.client ?? client).delete({
204
+ url: '/clusters/{cluster_id}',
205
+ ...options
206
+ });
207
+ }
208
+ /**
209
+ * Get cluster information.
210
+ * 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.
211
+ *
212
+ * This endpoint is available to all users in the organization.
213
+ *
214
+ */
215
+ static getCluster(options) {
216
+ return (options?.client ?? client).get({
217
+ url: '/clusters/{cluster_id}',
218
+ ...options
219
+ });
220
+ }
221
+ /**
222
+ * Update cluster information.
223
+ * 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.
224
+ *
225
+ * This endpoint is available to administrators of the organization only.
226
+ *
227
+ */
228
+ static updateCluster(options) {
229
+ return (options?.client ?? client).put({
230
+ url: '/clusters/{cluster_id}',
231
+ ...options,
232
+ headers: {
233
+ 'Content-Type': 'application/json',
234
+ ...options?.headers
235
+ }
236
+ });
237
+ }
238
+ /**
239
+ * Node join information for the cluster
240
+ * Returns the join information for the cluster. This information is used to add a self-managed cluster to the CFKE cluster. This endpoint is available to only admins of the organization.
241
+ *
242
+ */
243
+ static getJoinInformation(options) {
244
+ return (options?.client ?? client).post({
245
+ url: '/clusters/{cluster_id}/join_information',
246
+ ...options
247
+ });
248
+ }
249
+ }
250
+ export class InfrastructureService {
251
+ /**
252
+ * Search infrastructure catalog.
253
+ * This endpoint is used to search the infrastructure catalog for the right virtual machine / instance type when creating a new task. The search is performed by specifying a set of filters. The filters are combined using the logical AND operator. For example, if you want to find all available instances with Nvidia A100 GPUs in the US, you would use the following query:
254
+ *
255
+ * `GET /infrastructure?accelerator_name=A100&region=northamerica`
256
+ *
257
+ * Catalog is dynamic and updated regularly to reflect the latest changes in the cloud providers' offerings. Although we try to keep the catalog up to date, it is possible that some instances are missing or that some information is outdated. It is possible that the final price you will see in the billing section will be different from the price shown in the catalog. Additionally, catalog does not account for any limitaitons and quotas set by the cloud providers, as well as current availability of specific instance types.
258
+ *
259
+ * **Note:** This endpoint is available for both authenticated and unauthenticated users. However, unauthenticated users will only see limited results and will be rate limited. To get full access to the catalog, please create a Cloudfleet account and log in.
260
+ *
261
+ * For full documentation of the infrastructure catalog, see [Cloud providers and instance types](https://cloudfleet.ai/docs/cloud-infrastructure/) section of the documentation.
262
+ *
263
+ */
264
+ static getInfrastructure(options) {
265
+ return (options?.client ?? client).get({
266
+ url: '/infrastructure',
267
+ ...options
268
+ });
269
+ }
270
+ /**
271
+ * Infrastructure catalog facets.
272
+ * This endpoint returns calculated search facets from the infrastructure catalog.
273
+ *
274
+ */
275
+ static getFacets(options) {
276
+ return (options?.client ?? client).get({
277
+ url: '/infrastructure/facets',
278
+ ...options
279
+ });
280
+ }
281
+ /**
282
+ * Available Cloudfleet regions and Kubernetes versions.
283
+ * Available Cloudfleet regions and Kubernetes versions.
284
+ *
285
+ */
286
+ static getRegions(options) {
287
+ return (options?.client ?? client).get({
288
+ url: '/infrastructure/regions',
289
+ ...options
290
+ });
291
+ }
292
+ }
293
+ export class InvitesService {
294
+ /**
295
+ * List invites.
296
+ * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
297
+ *
298
+ */
299
+ static listInvites(options) {
300
+ return (options?.client ?? client).get({
301
+ url: '/invites',
302
+ ...options
303
+ });
304
+ }
305
+ /**
306
+ * Create a new invite.
307
+ * Invite a new user to your CloudFlett organization. The user will receive an email with a link to create a new account. This endpoint is available to administrators of the organization only.
308
+ *
309
+ */
310
+ static createInvites(options) {
311
+ return (options?.client ?? client).post({
312
+ url: '/invites',
313
+ ...options,
314
+ headers: {
315
+ 'Content-Type': 'application/json',
316
+ ...options?.headers
317
+ }
318
+ });
319
+ }
320
+ /**
321
+ * Get invite information.
322
+ * Returns invite details.
323
+ *
324
+ */
325
+ static getInvite(options) {
326
+ return (options?.client ?? client).get({
327
+ url: '/invites/{code}',
328
+ ...options
329
+ });
330
+ }
331
+ /**
332
+ * Permanently delete invite.
333
+ * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
334
+ *
335
+ */
336
+ static deleteInvite(options) {
337
+ return (options?.client ?? client).delete({
338
+ url: '/invites/{email}',
339
+ ...options
340
+ });
341
+ }
342
+ }
343
+ export class OrganizationService {
344
+ /**
345
+ * Get organization information.
346
+ * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
347
+ *
348
+ * This endpoint is available to all users in the organization.
349
+ *
350
+ */
351
+ static getOrganization(options) {
352
+ return (options?.client ?? client).get({
353
+ url: '/organization',
354
+ ...options
355
+ });
356
+ }
357
+ /**
358
+ * Create a new organization / Cloudfleet account signup.
359
+ * This endpoint allows you to create a new Cloudfleet organization with its contact information. For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota. For more information about organizations and quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
360
+ *
361
+ */
362
+ static createOrganization(options) {
363
+ return (options?.client ?? client).post({
364
+ url: '/organization',
365
+ ...options,
366
+ headers: {
367
+ 'Content-Type': 'application/json',
368
+ ...options?.headers
369
+ }
370
+ });
371
+ }
372
+ /**
373
+ * Update organization information.
374
+ * This endpoint allows you to update organization details with its contact information. For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota. For more information about organizations and quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
375
+ *
376
+ * This endpoint is available to administrators of the organization only.
377
+ *
378
+ */
379
+ static updateOrganization(options) {
380
+ return (options?.client ?? client).put({
381
+ url: '/organization',
382
+ ...options,
383
+ headers: {
384
+ 'Content-Type': 'application/json',
385
+ ...options?.headers
386
+ }
387
+ });
388
+ }
389
+ }
390
+ export class TokensService {
391
+ /**
392
+ * List access tokens in organization.
393
+ * 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.
394
+ *
395
+ */
396
+ static listTokens(options) {
397
+ return (options?.client ?? client).get({
398
+ url: '/tokens',
399
+ ...options
400
+ });
401
+ }
402
+ /**
403
+ * Create a new access token.
404
+ * 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.
405
+ *
406
+ * This endpoint is available to administrators of the organization only.
407
+ *
408
+ */
409
+ static createToken(options) {
410
+ return (options?.client ?? client).post({
411
+ url: '/tokens',
412
+ ...options,
413
+ headers: {
414
+ 'Content-Type': 'application/json',
415
+ ...options?.headers
416
+ }
417
+ });
418
+ }
419
+ /**
420
+ * Permanently delete access token.
421
+ * 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.
422
+ *
423
+ */
424
+ static deleteToken(options) {
425
+ return (options?.client ?? client).delete({
426
+ url: '/tokens/{token_id}',
427
+ ...options
428
+ });
429
+ }
430
+ /**
431
+ * Get access token information.
432
+ * 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.
433
+ *
434
+ */
435
+ static getToken(options) {
436
+ return (options?.client ?? client).get({
437
+ url: '/tokens/{token_id}',
438
+ ...options
439
+ });
440
+ }
441
+ /**
442
+ * Update access token information.
443
+ * 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.
444
+ *
445
+ * This endpoint is available to administrators of the organization only.
446
+ *
447
+ */
448
+ static updateToken(options) {
449
+ return (options?.client ?? client).put({
450
+ url: '/tokens/{token_id}',
451
+ ...options,
452
+ headers: {
453
+ 'Content-Type': 'application/json',
454
+ ...options?.headers
455
+ }
456
+ });
457
+ }
458
+ /**
459
+ * Regenerate access token secret key.
460
+ * Generates a new access token secret. Old secret will not be valid anymore.
461
+ */
462
+ static regenerateToken(options) {
463
+ return (options?.client ?? client).put({
464
+ url: '/tokens/{token_id}/secret',
465
+ ...options
466
+ });
467
+ }
468
+ }
469
+ export class UsersService {
470
+ /**
471
+ * Get a list of organizations the user belongs to. Used during authentication process.
472
+ */
473
+ static listUserOrganizations(options) {
474
+ return (options?.client ?? client).get({
475
+ url: '/users/organizations/{email}',
476
+ ...options
477
+ });
478
+ }
479
+ /**
480
+ * List users in organization.
481
+ * Returns a list of user details, including roles and cluster permissions. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
482
+ *
483
+ * This endpoint is available to all users in the organization.
484
+ *
485
+ */
486
+ static listUsers(options) {
487
+ return (options?.client ?? client).get({
488
+ url: '/users',
489
+ ...options
490
+ });
491
+ }
492
+ /**
493
+ * Create a new user.
494
+ * Create a new user in your CloudFlett 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.
495
+ *
496
+ */
497
+ static createUser(options) {
498
+ return (options?.client ?? client).post({
499
+ url: '/users',
500
+ ...options,
501
+ headers: {
502
+ 'Content-Type': 'application/json',
503
+ ...options?.headers
504
+ }
505
+ });
506
+ }
507
+ /**
508
+ * Delete user by id.
509
+ * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
510
+ *
511
+ */
512
+ static deleteUser(options) {
513
+ return (options?.client ?? client).delete({
514
+ url: '/users/{user_id}',
515
+ ...options
516
+ });
517
+ }
518
+ /**
519
+ * Get user profile information by id.
520
+ * Returns user details, including roles and cluster permissions. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
521
+ *
522
+ * This endpoint is available to all users in the organization.
523
+ *
524
+ */
525
+ static getUser(options) {
526
+ return (options?.client ?? client).get({
527
+ url: '/users/{user_id}',
528
+ ...options
529
+ });
530
+ }
531
+ /**
532
+ * Update user profile information.
533
+ * 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.
534
+ *
535
+ */
536
+ static updateUser(options) {
537
+ return (options?.client ?? client).put({
538
+ url: '/users/{user_id}',
539
+ ...options,
540
+ headers: {
541
+ 'Content-Type': 'application/json',
542
+ ...options?.headers
543
+ }
544
+ });
545
+ }
546
+ /**
547
+ * Remove user from cluster.
548
+ * Removes user from the cluster. The user will no longer be able to access the cluster and all its resources. This endpoint is available to administrators of the organization only.
549
+ *
550
+ */
551
+ static deleteClusterPermissions(options) {
552
+ return (options?.client ?? client).delete({
553
+ url: '/users/{user_id}/clusters/{cluster_id}',
554
+ ...options
555
+ });
556
+ }
557
+ /**
558
+ * Add user to cluster and set permissions.
559
+ * Add user to the cluster and set / update access permissions. This endpoint is available to administrators of the organization only.
560
+ *
561
+ */
562
+ static setClusterPermissions(options) {
563
+ return (options?.client ?? client).put({
564
+ url: '/users/{user_id}/clusters/{cluster_id}',
565
+ ...options,
566
+ headers: {
567
+ 'Content-Type': 'application/json',
568
+ ...options?.headers
569
+ }
570
+ });
571
+ }
572
+ }
573
+ //# sourceMappingURL=sdk.gen.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}