@cloudfleet/sdk 0.3.39 → 0.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +84 -532
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +85 -533
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +28 -73
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +66 -101
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +82 -613
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +220 -835
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +22 -142
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -5
package/dist/sdk.gen.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
-
import {
|
|
3
|
-
export const client = createClient(createConfig());
|
|
2
|
+
import { client as _heyApiClient } from './client.gen';
|
|
4
3
|
export class BillingService {
|
|
5
4
|
/**
|
|
6
5
|
* Get billing usage information.
|
|
@@ -8,7 +7,7 @@ export class BillingService {
|
|
|
8
7
|
*
|
|
9
8
|
*/
|
|
10
9
|
static getUsage(options) {
|
|
11
|
-
return (options?.client ??
|
|
10
|
+
return (options?.client ?? _heyApiClient).get({
|
|
12
11
|
url: '/billing/usage',
|
|
13
12
|
...options
|
|
14
13
|
});
|
|
@@ -19,7 +18,7 @@ export class BillingService {
|
|
|
19
18
|
*
|
|
20
19
|
*/
|
|
21
20
|
static getBalance(options) {
|
|
22
|
-
return (options?.client ??
|
|
21
|
+
return (options?.client ?? _heyApiClient).get({
|
|
23
22
|
url: '/billing/balance',
|
|
24
23
|
...options
|
|
25
24
|
});
|
|
@@ -30,7 +29,7 @@ export class BillingService {
|
|
|
30
29
|
*
|
|
31
30
|
*/
|
|
32
31
|
static getPaymentMethod(options) {
|
|
33
|
-
return (options?.client ??
|
|
32
|
+
return (options?.client ?? _heyApiClient).get({
|
|
34
33
|
url: '/billing/payment-method',
|
|
35
34
|
...options
|
|
36
35
|
});
|
|
@@ -41,7 +40,7 @@ export class BillingService {
|
|
|
41
40
|
*
|
|
42
41
|
*/
|
|
43
42
|
static getPaymentMethodSecret(options) {
|
|
44
|
-
return (options?.client ??
|
|
43
|
+
return (options?.client ?? _heyApiClient).put({
|
|
45
44
|
url: '/billing/payment-method',
|
|
46
45
|
...options
|
|
47
46
|
});
|
|
@@ -52,7 +51,7 @@ export class BillingService {
|
|
|
52
51
|
*
|
|
53
52
|
*/
|
|
54
53
|
static listInvoices(options) {
|
|
55
|
-
return (options
|
|
54
|
+
return (options.client ?? _heyApiClient).get({
|
|
56
55
|
url: '/billing/invoices',
|
|
57
56
|
...options
|
|
58
57
|
});
|
|
@@ -63,11 +62,37 @@ export class BillingService {
|
|
|
63
62
|
*
|
|
64
63
|
*/
|
|
65
64
|
static getInvoice(options) {
|
|
66
|
-
return (options
|
|
65
|
+
return (options.client ?? _heyApiClient).get({
|
|
67
66
|
url: '/billing/invoices/{id}',
|
|
68
67
|
...options
|
|
69
68
|
});
|
|
70
69
|
}
|
|
70
|
+
/**
|
|
71
|
+
* Get organization contact and billing address information.
|
|
72
|
+
* Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
|
|
73
|
+
*
|
|
74
|
+
*/
|
|
75
|
+
static getContact(options) {
|
|
76
|
+
return (options?.client ?? _heyApiClient).get({
|
|
77
|
+
url: '/billing/contact',
|
|
78
|
+
...options
|
|
79
|
+
});
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Update organization contact information and billing address.
|
|
83
|
+
* This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
|
|
84
|
+
*
|
|
85
|
+
*/
|
|
86
|
+
static updateContact(options) {
|
|
87
|
+
return (options.client ?? _heyApiClient).put({
|
|
88
|
+
url: '/billing/contact',
|
|
89
|
+
...options,
|
|
90
|
+
headers: {
|
|
91
|
+
'Content-Type': 'application/json',
|
|
92
|
+
...options?.headers
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
}
|
|
71
96
|
}
|
|
72
97
|
export class ClustersService {
|
|
73
98
|
/**
|
|
@@ -78,7 +103,7 @@ export class ClustersService {
|
|
|
78
103
|
*
|
|
79
104
|
*/
|
|
80
105
|
static listFleets(options) {
|
|
81
|
-
return (options
|
|
106
|
+
return (options.client ?? _heyApiClient).get({
|
|
82
107
|
url: '/clusters/{cluster_id}/fleets',
|
|
83
108
|
...options
|
|
84
109
|
});
|
|
@@ -91,7 +116,7 @@ export class ClustersService {
|
|
|
91
116
|
*
|
|
92
117
|
*/
|
|
93
118
|
static createFleet(options) {
|
|
94
|
-
return (options
|
|
119
|
+
return (options.client ?? _heyApiClient).post({
|
|
95
120
|
url: '/clusters/{cluster_id}/fleets',
|
|
96
121
|
...options,
|
|
97
122
|
headers: {
|
|
@@ -108,7 +133,7 @@ export class ClustersService {
|
|
|
108
133
|
*
|
|
109
134
|
*/
|
|
110
135
|
static deleteFleet(options) {
|
|
111
|
-
return (options
|
|
136
|
+
return (options.client ?? _heyApiClient).delete({
|
|
112
137
|
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
113
138
|
...options
|
|
114
139
|
});
|
|
@@ -121,7 +146,7 @@ export class ClustersService {
|
|
|
121
146
|
*
|
|
122
147
|
*/
|
|
123
148
|
static getFleet(options) {
|
|
124
|
-
return (options
|
|
149
|
+
return (options.client ?? _heyApiClient).get({
|
|
125
150
|
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
126
151
|
...options
|
|
127
152
|
});
|
|
@@ -138,7 +163,7 @@ export class ClustersService {
|
|
|
138
163
|
*
|
|
139
164
|
*/
|
|
140
165
|
static updateFleet(options) {
|
|
141
|
-
return (options
|
|
166
|
+
return (options.client ?? _heyApiClient).put({
|
|
142
167
|
url: '/clusters/{cluster_id}/fleets/{fleet_name}',
|
|
143
168
|
...options,
|
|
144
169
|
headers: {
|
|
@@ -152,7 +177,7 @@ export class ClustersService {
|
|
|
152
177
|
* 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
178
|
*/
|
|
154
179
|
static queryCluster(options) {
|
|
155
|
-
return (options
|
|
180
|
+
return (options.client ?? _heyApiClient).get({
|
|
156
181
|
url: '/clusters/{cluster_id}/query',
|
|
157
182
|
...options
|
|
158
183
|
});
|
|
@@ -165,7 +190,7 @@ export class ClustersService {
|
|
|
165
190
|
*
|
|
166
191
|
*/
|
|
167
192
|
static listClusters(options) {
|
|
168
|
-
return (options?.client ??
|
|
193
|
+
return (options?.client ?? _heyApiClient).get({
|
|
169
194
|
url: '/clusters',
|
|
170
195
|
...options
|
|
171
196
|
});
|
|
@@ -178,7 +203,7 @@ export class ClustersService {
|
|
|
178
203
|
*
|
|
179
204
|
*/
|
|
180
205
|
static createCluster(options) {
|
|
181
|
-
return (options
|
|
206
|
+
return (options.client ?? _heyApiClient).post({
|
|
182
207
|
url: '/clusters',
|
|
183
208
|
...options,
|
|
184
209
|
headers: {
|
|
@@ -195,7 +220,7 @@ export class ClustersService {
|
|
|
195
220
|
*
|
|
196
221
|
*/
|
|
197
222
|
static deleteCluster(options) {
|
|
198
|
-
return (options
|
|
223
|
+
return (options.client ?? _heyApiClient).delete({
|
|
199
224
|
url: '/clusters/{cluster_id}',
|
|
200
225
|
...options
|
|
201
226
|
});
|
|
@@ -208,7 +233,7 @@ export class ClustersService {
|
|
|
208
233
|
*
|
|
209
234
|
*/
|
|
210
235
|
static getCluster(options) {
|
|
211
|
-
return (options
|
|
236
|
+
return (options.client ?? _heyApiClient).get({
|
|
212
237
|
url: '/clusters/{cluster_id}',
|
|
213
238
|
...options
|
|
214
239
|
});
|
|
@@ -221,7 +246,7 @@ export class ClustersService {
|
|
|
221
246
|
*
|
|
222
247
|
*/
|
|
223
248
|
static updateCluster(options) {
|
|
224
|
-
return (options
|
|
249
|
+
return (options.client ?? _heyApiClient).put({
|
|
225
250
|
url: '/clusters/{cluster_id}',
|
|
226
251
|
...options,
|
|
227
252
|
headers: {
|
|
@@ -236,55 +261,12 @@ export class ClustersService {
|
|
|
236
261
|
*
|
|
237
262
|
*/
|
|
238
263
|
static getJoinInformation(options) {
|
|
239
|
-
return (options
|
|
264
|
+
return (options.client ?? _heyApiClient).post({
|
|
240
265
|
url: '/clusters/{cluster_id}/join_information',
|
|
241
266
|
...options
|
|
242
267
|
});
|
|
243
268
|
}
|
|
244
269
|
}
|
|
245
|
-
export class InfrastructureService {
|
|
246
|
-
/**
|
|
247
|
-
* Search infrastructure catalog.
|
|
248
|
-
* 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:
|
|
249
|
-
*
|
|
250
|
-
* `GET /infrastructure?accelerator_name=A100®ion=northamerica`
|
|
251
|
-
*
|
|
252
|
-
* 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.
|
|
253
|
-
*
|
|
254
|
-
* **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.
|
|
255
|
-
*
|
|
256
|
-
* For full documentation of the infrastructure catalog, see [Cloud providers and instance types](https://cloudfleet.ai/docs/cloud-infrastructure/) section of the documentation.
|
|
257
|
-
*
|
|
258
|
-
*/
|
|
259
|
-
static getInfrastructure(options) {
|
|
260
|
-
return (options?.client ?? client).get({
|
|
261
|
-
url: '/infrastructure',
|
|
262
|
-
...options
|
|
263
|
-
});
|
|
264
|
-
}
|
|
265
|
-
/**
|
|
266
|
-
* Infrastructure catalog facets.
|
|
267
|
-
* This endpoint returns calculated search facets from the infrastructure catalog.
|
|
268
|
-
*
|
|
269
|
-
*/
|
|
270
|
-
static getFacets(options) {
|
|
271
|
-
return (options?.client ?? client).get({
|
|
272
|
-
url: '/infrastructure/facets',
|
|
273
|
-
...options
|
|
274
|
-
});
|
|
275
|
-
}
|
|
276
|
-
/**
|
|
277
|
-
* Available Cloudfleet regions and Kubernetes versions.
|
|
278
|
-
* Available Cloudfleet regions and Kubernetes versions.
|
|
279
|
-
*
|
|
280
|
-
*/
|
|
281
|
-
static getRegions(options) {
|
|
282
|
-
return (options?.client ?? client).get({
|
|
283
|
-
url: '/infrastructure/regions',
|
|
284
|
-
...options
|
|
285
|
-
});
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
270
|
export class InvitesService {
|
|
289
271
|
/**
|
|
290
272
|
* List invites.
|
|
@@ -292,7 +274,7 @@ export class InvitesService {
|
|
|
292
274
|
*
|
|
293
275
|
*/
|
|
294
276
|
static listInvites(options) {
|
|
295
|
-
return (options?.client ??
|
|
277
|
+
return (options?.client ?? _heyApiClient).get({
|
|
296
278
|
url: '/invites',
|
|
297
279
|
...options
|
|
298
280
|
});
|
|
@@ -303,7 +285,7 @@ export class InvitesService {
|
|
|
303
285
|
*
|
|
304
286
|
*/
|
|
305
287
|
static createInvite(options) {
|
|
306
|
-
return (options
|
|
288
|
+
return (options.client ?? _heyApiClient).post({
|
|
307
289
|
url: '/invites',
|
|
308
290
|
...options,
|
|
309
291
|
headers: {
|
|
@@ -318,7 +300,7 @@ export class InvitesService {
|
|
|
318
300
|
*
|
|
319
301
|
*/
|
|
320
302
|
static getInvite(options) {
|
|
321
|
-
return (options
|
|
303
|
+
return (options.client ?? _heyApiClient).get({
|
|
322
304
|
url: '/invites/{code}',
|
|
323
305
|
...options
|
|
324
306
|
});
|
|
@@ -329,7 +311,7 @@ export class InvitesService {
|
|
|
329
311
|
*
|
|
330
312
|
*/
|
|
331
313
|
static deleteInvite(options) {
|
|
332
|
-
return (options
|
|
314
|
+
return (options.client ?? _heyApiClient).delete({
|
|
333
315
|
url: '/invites/{email}',
|
|
334
316
|
...options
|
|
335
317
|
});
|
|
@@ -344,35 +326,18 @@ export class OrganizationService {
|
|
|
344
326
|
*
|
|
345
327
|
*/
|
|
346
328
|
static getOrganization(options) {
|
|
347
|
-
return (options?.client ??
|
|
329
|
+
return (options?.client ?? _heyApiClient).get({
|
|
348
330
|
url: '/organization',
|
|
349
331
|
...options
|
|
350
332
|
});
|
|
351
333
|
}
|
|
352
334
|
/**
|
|
353
335
|
* Create a new organization / Cloudfleet account signup.
|
|
354
|
-
* This endpoint allows you to create a new Cloudfleet organization
|
|
336
|
+
* This endpoint allows you to create a new Cloudfleet organization and an administrator user.
|
|
355
337
|
*
|
|
356
338
|
*/
|
|
357
339
|
static createOrganization(options) {
|
|
358
|
-
return (options
|
|
359
|
-
url: '/organization',
|
|
360
|
-
...options,
|
|
361
|
-
headers: {
|
|
362
|
-
'Content-Type': 'application/json',
|
|
363
|
-
...options?.headers
|
|
364
|
-
}
|
|
365
|
-
});
|
|
366
|
-
}
|
|
367
|
-
/**
|
|
368
|
-
* Update organization information.
|
|
369
|
-
* 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.
|
|
370
|
-
*
|
|
371
|
-
* This endpoint is available to administrators of the organization only.
|
|
372
|
-
*
|
|
373
|
-
*/
|
|
374
|
-
static updateOrganization(options) {
|
|
375
|
-
return (options?.client ?? client).put({
|
|
340
|
+
return (options.client ?? _heyApiClient).post({
|
|
376
341
|
url: '/organization',
|
|
377
342
|
...options,
|
|
378
343
|
headers: {
|
|
@@ -389,7 +354,7 @@ export class TokensService {
|
|
|
389
354
|
*
|
|
390
355
|
*/
|
|
391
356
|
static listTokens(options) {
|
|
392
|
-
return (options?.client ??
|
|
357
|
+
return (options?.client ?? _heyApiClient).get({
|
|
393
358
|
url: '/tokens',
|
|
394
359
|
...options
|
|
395
360
|
});
|
|
@@ -402,7 +367,7 @@ export class TokensService {
|
|
|
402
367
|
*
|
|
403
368
|
*/
|
|
404
369
|
static createToken(options) {
|
|
405
|
-
return (options
|
|
370
|
+
return (options.client ?? _heyApiClient).post({
|
|
406
371
|
url: '/tokens',
|
|
407
372
|
...options,
|
|
408
373
|
headers: {
|
|
@@ -417,7 +382,7 @@ export class TokensService {
|
|
|
417
382
|
*
|
|
418
383
|
*/
|
|
419
384
|
static deleteToken(options) {
|
|
420
|
-
return (options
|
|
385
|
+
return (options.client ?? _heyApiClient).delete({
|
|
421
386
|
url: '/tokens/{token_id}',
|
|
422
387
|
...options
|
|
423
388
|
});
|
|
@@ -428,7 +393,7 @@ export class TokensService {
|
|
|
428
393
|
*
|
|
429
394
|
*/
|
|
430
395
|
static getToken(options) {
|
|
431
|
-
return (options
|
|
396
|
+
return (options.client ?? _heyApiClient).get({
|
|
432
397
|
url: '/tokens/{token_id}',
|
|
433
398
|
...options
|
|
434
399
|
});
|
|
@@ -441,7 +406,7 @@ export class TokensService {
|
|
|
441
406
|
*
|
|
442
407
|
*/
|
|
443
408
|
static updateToken(options) {
|
|
444
|
-
return (options
|
|
409
|
+
return (options.client ?? _heyApiClient).put({
|
|
445
410
|
url: '/tokens/{token_id}',
|
|
446
411
|
...options,
|
|
447
412
|
headers: {
|
|
@@ -455,7 +420,7 @@ export class TokensService {
|
|
|
455
420
|
* Generates a new access token secret. Old secret will not be valid anymore.
|
|
456
421
|
*/
|
|
457
422
|
static regenerateToken(options) {
|
|
458
|
-
return (options
|
|
423
|
+
return (options.client ?? _heyApiClient).put({
|
|
459
424
|
url: '/tokens/{token_id}/secret',
|
|
460
425
|
...options
|
|
461
426
|
});
|
|
@@ -466,7 +431,7 @@ export class UsersService {
|
|
|
466
431
|
* Get a list of organizations the user belongs to. Used during authentication process.
|
|
467
432
|
*/
|
|
468
433
|
static listUserOrganizations(options) {
|
|
469
|
-
return (options
|
|
434
|
+
return (options.client ?? _heyApiClient).get({
|
|
470
435
|
url: '/users/organizations/{email}',
|
|
471
436
|
...options
|
|
472
437
|
});
|
|
@@ -479,7 +444,7 @@ export class UsersService {
|
|
|
479
444
|
*
|
|
480
445
|
*/
|
|
481
446
|
static listUsers(options) {
|
|
482
|
-
return (options?.client ??
|
|
447
|
+
return (options?.client ?? _heyApiClient).get({
|
|
483
448
|
url: '/users',
|
|
484
449
|
...options
|
|
485
450
|
});
|
|
@@ -490,7 +455,7 @@ export class UsersService {
|
|
|
490
455
|
*
|
|
491
456
|
*/
|
|
492
457
|
static createUser(options) {
|
|
493
|
-
return (options
|
|
458
|
+
return (options.client ?? _heyApiClient).post({
|
|
494
459
|
url: '/users',
|
|
495
460
|
...options,
|
|
496
461
|
headers: {
|
|
@@ -505,7 +470,7 @@ export class UsersService {
|
|
|
505
470
|
*
|
|
506
471
|
*/
|
|
507
472
|
static deleteUser(options) {
|
|
508
|
-
return (options
|
|
473
|
+
return (options.client ?? _heyApiClient).delete({
|
|
509
474
|
url: '/users/{user_id}',
|
|
510
475
|
...options
|
|
511
476
|
});
|
|
@@ -518,7 +483,7 @@ export class UsersService {
|
|
|
518
483
|
*
|
|
519
484
|
*/
|
|
520
485
|
static getUser(options) {
|
|
521
|
-
return (options
|
|
486
|
+
return (options.client ?? _heyApiClient).get({
|
|
522
487
|
url: '/users/{user_id}',
|
|
523
488
|
...options
|
|
524
489
|
});
|
|
@@ -529,7 +494,7 @@ export class UsersService {
|
|
|
529
494
|
*
|
|
530
495
|
*/
|
|
531
496
|
static updateUser(options) {
|
|
532
|
-
return (options
|
|
497
|
+
return (options.client ?? _heyApiClient).put({
|
|
533
498
|
url: '/users/{user_id}',
|
|
534
499
|
...options,
|
|
535
500
|
headers: {
|
|
@@ -544,7 +509,7 @@ export class UsersService {
|
|
|
544
509
|
*
|
|
545
510
|
*/
|
|
546
511
|
static deleteClusterPermissions(options) {
|
|
547
|
-
return (options
|
|
512
|
+
return (options.client ?? _heyApiClient).delete({
|
|
548
513
|
url: '/users/{user_id}/clusters/{cluster_id}',
|
|
549
514
|
...options
|
|
550
515
|
});
|
|
@@ -555,7 +520,7 @@ export class UsersService {
|
|
|
555
520
|
*
|
|
556
521
|
*/
|
|
557
522
|
static setClusterPermissions(options) {
|
|
558
|
-
return (options
|
|
523
|
+
return (options.client ?? _heyApiClient).put({
|
|
559
524
|
url: '/users/{user_id}/clusters/{cluster_id}',
|
|
560
525
|
...options,
|
|
561
526
|
headers: {
|
package/dist/sdk.gen.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"AAAA,qDAAqD;
|
|
1
|
+
{"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
|