@cloudfleet/sdk 0.6.26 → 0.6.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/sdk.gen.d.ts CHANGED
@@ -16,60 +16,70 @@ export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends
16
16
  export declare class BillingService {
17
17
  /**
18
18
  * Get billing usage information.
19
+ *
19
20
  * Returns aggregated usage information 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.
20
21
  *
21
22
  */
22
23
  static getUsage<ThrowOnError extends boolean = false>(options?: Options<GetUsageData, ThrowOnError>): import("./client").RequestResult<GetUsageResponses, GetUsageErrors, ThrowOnError, "fields">;
23
24
  /**
24
25
  * Get billing balance information.
26
+ *
25
27
  * 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.
26
28
  *
27
29
  */
28
30
  static getBalance<ThrowOnError extends boolean = false>(options?: Options<GetBalanceData, ThrowOnError>): import("./client").RequestResult<GetBalanceResponses, unknown, ThrowOnError, "fields">;
29
31
  /**
30
32
  * Get organization payment method information.
33
+ *
31
34
  * 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.
32
35
  *
33
36
  */
34
37
  static getPaymentMethod<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodData, ThrowOnError>): import("./client").RequestResult<GetPaymentMethodResponses, GetPaymentMethodErrors, ThrowOnError, "fields">;
35
38
  /**
36
39
  * Get Stripe client secret.
40
+ *
37
41
  * 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.
38
42
  *
39
43
  */
40
44
  static getPaymentMethodSecret<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodSecretData, ThrowOnError>): import("./client").RequestResult<GetPaymentMethodSecretResponses, unknown, ThrowOnError, "fields">;
41
45
  /**
42
46
  * List issued invoices.
47
+ *
43
48
  * 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.
44
49
  *
45
50
  */
46
51
  static listInvoices<ThrowOnError extends boolean = false>(options: Options<ListInvoicesData, ThrowOnError>): import("./client").RequestResult<ListInvoicesResponses, ListInvoicesErrors, ThrowOnError, "fields">;
47
52
  /**
48
53
  * Get invoice information.
54
+ *
49
55
  * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
50
56
  *
51
57
  */
52
58
  static getInvoice<ThrowOnError extends boolean = false>(options: Options<GetInvoiceData, ThrowOnError>): import("./client").RequestResult<GetInvoiceResponses, unknown, ThrowOnError, "fields">;
53
59
  /**
54
60
  * Get organization contact and billing address information.
61
+ *
55
62
  * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
56
63
  *
57
64
  */
58
65
  static getContact<ThrowOnError extends boolean = false>(options?: Options<GetContactData, ThrowOnError>): import("./client").RequestResult<GetContactResponses, unknown, ThrowOnError, "fields">;
59
66
  /**
60
67
  * Update organization contact information and billing address.
68
+ *
61
69
  * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
62
70
  *
63
71
  */
64
72
  static updateContact<ThrowOnError extends boolean = false>(options: Options<UpdateContactData, ThrowOnError>): import("./client").RequestResult<UpdateContactResponses, unknown, ThrowOnError, "fields">;
65
73
  /**
66
74
  * Get applied promotional credits
75
+ *
67
76
  * 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.
68
77
  *
69
78
  */
70
79
  static getCredits<ThrowOnError extends boolean = false>(options?: Options<GetCreditsData, ThrowOnError>): import("./client").RequestResult<GetCreditsResponses, GetCreditsErrors, ThrowOnError, "fields">;
71
80
  /**
72
81
  * Redeem promotional credits code.
82
+ *
73
83
  * 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.
74
84
  *
75
85
  */
@@ -78,6 +88,7 @@ export declare class BillingService {
78
88
  export declare class ClustersService {
79
89
  /**
80
90
  * List charts.
91
+ *
81
92
  * Returns a list of charts in the cluster.
82
93
  *
83
94
  * This endpoint is available to all users in the organization.
@@ -86,6 +97,7 @@ export declare class ClustersService {
86
97
  static listCharts<ThrowOnError extends boolean = false>(options: Options<ListChartsData, ThrowOnError>): import("./client").RequestResult<ListChartsResponses, ListChartsErrors, ThrowOnError, "fields">;
87
98
  /**
88
99
  * Create a new chart.
100
+ *
89
101
  * Create a new chart deployment.
90
102
  *
91
103
  * This endpoint is available to administrators of the organization only.
@@ -94,6 +106,7 @@ export declare class ClustersService {
94
106
  static createChart<ThrowOnError extends boolean = false>(options: Options<CreateChartData, ThrowOnError>): import("./client").RequestResult<CreateChartResponses, unknown, ThrowOnError, "fields">;
95
107
  /**
96
108
  * Permanently delete the chart deployment from the cluster.
109
+ *
97
110
  * This endpoint will permanently delete chart. This operation cannot be undone.
98
111
  *
99
112
  * This endpoint is available to administrators of the organization only.
@@ -102,6 +115,7 @@ export declare class ClustersService {
102
115
  static deleteChart<ThrowOnError extends boolean = false>(options: Options<DeleteChartData, ThrowOnError>): import("./client").RequestResult<DeleteChartResponses, unknown, ThrowOnError, "fields">;
103
116
  /**
104
117
  * Get chart information.
118
+ *
105
119
  * Returns the details of the chart deployment.
106
120
  *
107
121
  * This endpoint is available to all users in the organization.
@@ -110,6 +124,7 @@ export declare class ClustersService {
110
124
  static getChart<ThrowOnError extends boolean = false>(options: Options<GetChartData, ThrowOnError>): import("./client").RequestResult<GetChartResponses, unknown, ThrowOnError, "fields">;
111
125
  /**
112
126
  * Update chart information.
127
+ *
113
128
  * This endpoint allows you to update the values of a chart deployment.
114
129
  *
115
130
  * This endpoint is available to administrators of the organization only.
@@ -118,6 +133,7 @@ export declare class ClustersService {
118
133
  static updateChart<ThrowOnError extends boolean = false>(options: Options<UpdateChartData, ThrowOnError>): import("./client").RequestResult<UpdateChartResponses, unknown, ThrowOnError, "fields">;
119
134
  /**
120
135
  * List fleets.
136
+ *
121
137
  * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
122
138
  *
123
139
  * This endpoint is available to all users in the organization.
@@ -126,6 +142,7 @@ export declare class ClustersService {
126
142
  static listFleets<ThrowOnError extends boolean = false>(options: Options<ListFleetsData, ThrowOnError>): import("./client").RequestResult<ListFleetsResponses, ListFleetsErrors, ThrowOnError, "fields">;
127
143
  /**
128
144
  * Create a new fleet.
145
+ *
129
146
  * 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.
130
147
  *
131
148
  * This endpoint is available to administrators of the organization only.
@@ -134,6 +151,7 @@ export declare class ClustersService {
134
151
  static createFleet<ThrowOnError extends boolean = false>(options: Options<CreateFleetData, ThrowOnError>): import("./client").RequestResult<CreateFleetResponses, CreateFleetErrors, ThrowOnError, "fields">;
135
152
  /**
136
153
  * Permanently delete fleet.
154
+ *
137
155
  * 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.
138
156
  *
139
157
  * This endpoint is available to administrators of the organization only.
@@ -142,6 +160,7 @@ export declare class ClustersService {
142
160
  static deleteFleet<ThrowOnError extends boolean = false>(options: Options<DeleteFleetData, ThrowOnError>): import("./client").RequestResult<DeleteFleetResponses, unknown, ThrowOnError, "fields">;
143
161
  /**
144
162
  * Get fleet information.
163
+ *
145
164
  * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
146
165
  *
147
166
  * This endpoint is available to all users in the organization.
@@ -150,6 +169,7 @@ export declare class ClustersService {
150
169
  static getFleet<ThrowOnError extends boolean = false>(options: Options<GetFleetData, ThrowOnError>): import("./client").RequestResult<GetFleetResponses, unknown, ThrowOnError, "fields">;
151
170
  /**
152
171
  * Update fleet information.
172
+ *
153
173
  * This endpoint allows you to update fleet details.
154
174
  *
155
175
  * 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`.
@@ -162,11 +182,13 @@ export declare class ClustersService {
162
182
  static updateFleet<ThrowOnError extends boolean = false>(options: Options<UpdateFleetData, ThrowOnError>): import("./client").RequestResult<UpdateFleetResponses, UpdateFleetErrors, ThrowOnError, "fields">;
163
183
  /**
164
184
  * Query Kubernetes cluster API
185
+ *
165
186
  * 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.
166
187
  */
167
188
  static queryCluster<ThrowOnError extends boolean = false>(options: Options<QueryClusterData, ThrowOnError>): import("./client").RequestResult<QueryClusterResponses, QueryClusterErrors, ThrowOnError, "fields">;
168
189
  /**
169
190
  * List clusters.
191
+ *
170
192
  * 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.
171
193
  *
172
194
  * This endpoint is available to all users in the organization.
@@ -175,6 +197,7 @@ export declare class ClustersService {
175
197
  static listClusters<ThrowOnError extends boolean = false>(options?: Options<ListClustersData, ThrowOnError>): import("./client").RequestResult<ListClustersResponses, ListClustersErrors, ThrowOnError, "fields">;
176
198
  /**
177
199
  * Create a new cluster.
200
+ *
178
201
  * 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.
179
202
  *
180
203
  * This endpoint is available to administrators of the organization only.
@@ -183,6 +206,7 @@ export declare class ClustersService {
183
206
  static createCluster<ThrowOnError extends boolean = false>(options: Options<CreateClusterData, ThrowOnError>): import("./client").RequestResult<CreateClusterResponses, CreateClusterErrors, ThrowOnError, "fields">;
184
207
  /**
185
208
  * Permanently delete cluster.
209
+ *
186
210
  * This endpoint will permanently delete the cluster. This operation cannot be undone.
187
211
  *
188
212
  * This endpoint is available to administrators of the organization only.
@@ -191,6 +215,7 @@ export declare class ClustersService {
191
215
  static deleteCluster<ThrowOnError extends boolean = false>(options: Options<DeleteClusterData, ThrowOnError>): import("./client").RequestResult<DeleteClusterResponses, unknown, ThrowOnError, "fields">;
192
216
  /**
193
217
  * Get cluster information.
218
+ *
194
219
  * 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.
195
220
  *
196
221
  * This endpoint is available to all users in the organization.
@@ -199,6 +224,7 @@ export declare class ClustersService {
199
224
  static getCluster<ThrowOnError extends boolean = false>(options: Options<GetClusterData, ThrowOnError>): import("./client").RequestResult<GetClusterResponses, unknown, ThrowOnError, "fields">;
200
225
  /**
201
226
  * Update cluster information.
227
+ *
202
228
  * 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.
203
229
  *
204
230
  * This endpoint is available to administrators of the organization only.
@@ -207,6 +233,7 @@ export declare class ClustersService {
207
233
  static updateCluster<ThrowOnError extends boolean = false>(options: Options<UpdateClusterData, ThrowOnError>): import("./client").RequestResult<UpdateClusterResponses, unknown, ThrowOnError, "fields">;
208
234
  /**
209
235
  * Node join information for the cluster
236
+ *
210
237
  * 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.
211
238
  *
212
239
  */
@@ -215,24 +242,28 @@ export declare class ClustersService {
215
242
  export declare class InvitesService {
216
243
  /**
217
244
  * List invites.
245
+ *
218
246
  * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
219
247
  *
220
248
  */
221
249
  static listInvites<ThrowOnError extends boolean = false>(options?: Options<ListInvitesData, ThrowOnError>): import("./client").RequestResult<ListInvitesResponses, ListInvitesErrors, ThrowOnError, "fields">;
222
250
  /**
223
251
  * Create a new invite.
252
+ *
224
253
  * Invite a new user to your Cloudfleet 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.
225
254
  *
226
255
  */
227
256
  static createInvite<ThrowOnError extends boolean = false>(options: Options<CreateInviteData, ThrowOnError>): import("./client").RequestResult<CreateInviteResponses, unknown, ThrowOnError, "fields">;
228
257
  /**
229
258
  * Get invite information.
259
+ *
230
260
  * Returns invite details.
231
261
  *
232
262
  */
233
263
  static getInvite<ThrowOnError extends boolean = false>(options: Options<GetInviteData, ThrowOnError>): import("./client").RequestResult<GetInviteResponses, unknown, ThrowOnError, "fields">;
234
264
  /**
235
265
  * Permanently delete invite.
266
+ *
236
267
  * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
237
268
  *
238
269
  */
@@ -241,6 +272,7 @@ export declare class InvitesService {
241
272
  export declare class ChartsMarketplaceService {
242
273
  /**
243
274
  * List chart listings available in the marketplace.
275
+ *
244
276
  * Returns a list of available charts in the marketplace.
245
277
  *
246
278
  * This endpoint is available to all users in the organization.
@@ -249,6 +281,7 @@ export declare class ChartsMarketplaceService {
249
281
  static listMarketplaceCharts<ThrowOnError extends boolean = false>(options?: Options<ListMarketplaceChartsData, ThrowOnError>): import("./client").RequestResult<ListMarketplaceChartsResponses, ListMarketplaceChartsErrors, ThrowOnError, "fields">;
250
282
  /**
251
283
  * Get chart listing details.
284
+ *
252
285
  * Returns details of the chart listing.
253
286
  *
254
287
  * This endpoint is available to all users in the organization.
@@ -259,6 +292,7 @@ export declare class ChartsMarketplaceService {
259
292
  export declare class OrganizationService {
260
293
  /**
261
294
  * Get organization information.
295
+ *
262
296
  * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
263
297
  *
264
298
  * This endpoint is available to all users in the organization.
@@ -267,6 +301,7 @@ export declare class OrganizationService {
267
301
  static getOrganization<ThrowOnError extends boolean = false>(options?: Options<GetOrganizationData, ThrowOnError>): import("./client").RequestResult<GetOrganizationResponses, unknown, ThrowOnError, "fields">;
268
302
  /**
269
303
  * Create a new organization / Cloudfleet account signup.
304
+ *
270
305
  * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
271
306
  *
272
307
  */
@@ -275,12 +310,14 @@ export declare class OrganizationService {
275
310
  export declare class TokensService {
276
311
  /**
277
312
  * List access tokens in organization.
313
+ *
278
314
  * 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.
279
315
  *
280
316
  */
281
317
  static listTokens<ThrowOnError extends boolean = false>(options?: Options<ListTokensData, ThrowOnError>): import("./client").RequestResult<ListTokensResponses, ListTokensErrors, ThrowOnError, "fields">;
282
318
  /**
283
319
  * Create a new access token.
320
+ *
284
321
  * 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.
285
322
  *
286
323
  * This endpoint is available to administrators of the organization only.
@@ -289,18 +326,21 @@ export declare class TokensService {
289
326
  static createToken<ThrowOnError extends boolean = false>(options: Options<CreateTokenData, ThrowOnError>): import("./client").RequestResult<CreateTokenResponses, CreateTokenErrors, ThrowOnError, "fields">;
290
327
  /**
291
328
  * Permanently delete access token.
329
+ *
292
330
  * 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.
293
331
  *
294
332
  */
295
333
  static deleteToken<ThrowOnError extends boolean = false>(options: Options<DeleteTokenData, ThrowOnError>): import("./client").RequestResult<DeleteTokenResponses, unknown, ThrowOnError, "fields">;
296
334
  /**
297
335
  * Get access token information.
336
+ *
298
337
  * 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.
299
338
  *
300
339
  */
301
340
  static getToken<ThrowOnError extends boolean = false>(options: Options<GetTokenData, ThrowOnError>): import("./client").RequestResult<GetTokenResponses, GetTokenErrors, ThrowOnError, "fields">;
302
341
  /**
303
342
  * Update access token information.
343
+ *
304
344
  * 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.
305
345
  *
306
346
  * This endpoint is available to administrators of the organization only.
@@ -309,6 +349,7 @@ export declare class TokensService {
309
349
  static updateToken<ThrowOnError extends boolean = false>(options: Options<UpdateTokenData, ThrowOnError>): import("./client").RequestResult<UpdateTokenResponses, UpdateTokenErrors, ThrowOnError, "fields">;
310
350
  /**
311
351
  * Regenerate access token secret key.
352
+ *
312
353
  * Generates a new access token secret. Old secret will not be valid anymore.
313
354
  */
314
355
  static regenerateToken<ThrowOnError extends boolean = false>(options: Options<RegenerateTokenData, ThrowOnError>): import("./client").RequestResult<RegenerateTokenResponses, RegenerateTokenErrors, ThrowOnError, "fields">;
@@ -320,6 +361,7 @@ export declare class UsersService {
320
361
  static listUserOrganizations<ThrowOnError extends boolean = false>(options: Options<ListUserOrganizationsData, ThrowOnError>): import("./client").RequestResult<ListUserOrganizationsResponses, unknown, ThrowOnError, "fields">;
321
362
  /**
322
363
  * List users in organization.
364
+ *
323
365
  * 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.
324
366
  *
325
367
  * This endpoint is available to all users in the organization.
@@ -328,18 +370,21 @@ export declare class UsersService {
328
370
  static listUsers<ThrowOnError extends boolean = false>(options?: Options<ListUsersData, ThrowOnError>): import("./client").RequestResult<ListUsersResponses, ListUsersErrors, ThrowOnError, "fields">;
329
371
  /**
330
372
  * Create a new user.
373
+ *
331
374
  * 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.
332
375
  *
333
376
  */
334
377
  static createUser<ThrowOnError extends boolean = false>(options: Options<CreateUserData, ThrowOnError>): import("./client").RequestResult<CreateUserResponses, unknown, ThrowOnError, "fields">;
335
378
  /**
336
379
  * Delete user by id.
380
+ *
337
381
  * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
338
382
  *
339
383
  */
340
384
  static deleteUser<ThrowOnError extends boolean = false>(options: Options<DeleteUserData, ThrowOnError>): import("./client").RequestResult<DeleteUserResponses, DeleteUserErrors, ThrowOnError, "fields">;
341
385
  /**
342
386
  * Get user profile information by id.
387
+ *
343
388
  * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
344
389
  *
345
390
  * This endpoint is available to all users in the organization.
@@ -348,6 +393,7 @@ export declare class UsersService {
348
393
  static getUser<ThrowOnError extends boolean = false>(options: Options<GetUserData, ThrowOnError>): import("./client").RequestResult<GetUserResponses, GetUserErrors, ThrowOnError, "fields">;
349
394
  /**
350
395
  * Update user profile information.
396
+ *
351
397
  * 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.
352
398
  *
353
399
  */
@@ -1 +1 @@
1
- {"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,OAAO,IAAI,QAAQ,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAExE,OAAO,KAAK,EAAE,eAAe,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,eAAe,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,2BAA2B,EAAE,eAAe,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,cAAc,EAAE,mBAAmB,EAAE,eAAe,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,eAAe,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,qBAAqB,EAAE,eAAe,EAAE,oBAAoB,EAAE,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,cAAc,EAAE,mBAAmB,EAAE,YAAY,EAAE,iBAAiB,EAAE,cAAc,EAAE,mBAAmB,EAAE,cAAc,EAAE,mBAAmB,EAAE,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,YAAY,EAAE,iBAAiB,EAAE,aAAa,EAAE,kBAAkB,EAAE,cAAc,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,wBAAwB,EAAE,2BAA2B,EAAE,uBAAuB,EAAE,4BAA4B,EAAE,mBAAmB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,+BAA+B,EAAE,YAAY,EAAE,cAAc,EAAE,iBAAiB,EAAE,YAAY,EAAE,cAAc,EAAE,iBAAiB,EAAE,WAAW,EAAE,aAAa,EAAE,gBAAgB,EAAE,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,eAAe,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,yBAAyB,EAAE,2BAA2B,EAAE,8BAA8B,EAAE,cAAc,EAAE,gBAAgB,EAAE,mBAAmB,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,aAAa,EAAE,eAAe,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,qBAAqB,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,qBAAqB,EAAE,wBAAwB,EAAE,eAAe,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,iBAAiB,EAAE,sBAAsB,EAAE,eAAe,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,eAAe,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,cAAc,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AAEp3E,MAAM,MAAM,OAAO,CAAC,KAAK,SAAS,UAAU,GAAG,UAAU,EAAE,YAAY,SAAS,OAAO,GAAG,OAAO,IAAI,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC,GAAG;IACjI;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;OAGG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAClC,CAAC;AAEF,qBAAa,cAAc;IACvB;;;;OAIG;WACW,QAAQ,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,EAAE,YAAY,CAAC;IAO1G;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO9G;;;;OAIG;WACW,gBAAgB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,oBAAoB,EAAE,YAAY,CAAC;IAO1H;;;;OAIG;WACW,sBAAsB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,0BAA0B,EAAE,YAAY,CAAC;IAOtI;;;;OAIG;WACW,YAAY,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,gBAAgB,EAAE,YAAY,CAAC;IAOjH;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO7G;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO9G;;;;OAIG;WACW,aAAa,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC;IAWnH;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO9G;;;;OAIG;WACW,aAAa,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC;CAUtH;AAED,qBAAa,eAAe;IACxB;;;;;;OAMG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO7G;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAO/G;;;;;;OAMG;WACW,QAAQ,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,YAAY,CAAC;IAOzG;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;;;;OAMG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO7G;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAO/G;;;;;;OAMG;WACW,QAAQ,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,YAAY,CAAC;IAOzG;;;;;;;;;;OAUG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;OAGG;WACW,YAAY,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,gBAAgB,EAAE,YAAY,CAAC;IAOjH;;;;;;OAMG;WACW,YAAY,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,gBAAgB,EAAE,YAAY,CAAC;IAOlH;;;;;;OAMG;WACW,aAAa,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC;IAWnH;;;;;;OAMG;WACW,aAAa,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC;IAOnH;;;;;;OAMG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO7G;;;;;;OAMG;WACW,aAAa,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,iBAAiB,EAAE,YAAY,CAAC;IAWnH;;;;OAIG;WACW,kBAAkB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,sBAAsB,EAAE,YAAY,CAAC;CAMhI;AAED,qBAAa,cAAc;IACvB;;;;OAIG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAOhH;;;;OAIG;WACW,YAAY,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,gBAAgB,EAAE,YAAY,CAAC;IAWjH;;;;OAIG;WACW,SAAS,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,aAAa,EAAE,YAAY,CAAC;IAO3G;;;;OAIG;WACW,YAAY,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,gBAAgB,EAAE,YAAY,CAAC;CAMpH;AAED,qBAAa,wBAAwB;IACjC;;;;;;OAMG;WACW,qBAAqB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,yBAAyB,EAAE,YAAY,CAAC;IAOpI;;;;;;OAMG;WACW,mBAAmB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,uBAAuB,EAAE,YAAY,CAAC;CAMlI;AAED,qBAAa,mBAAmB;IAC5B;;;;;;OAMG;WACW,eAAe,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,mBAAmB,EAAE,YAAY,CAAC;IAOxH;;;;OAIG;WACW,kBAAkB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,sBAAsB,EAAE,YAAY,CAAC;CAUhI;AAED,qBAAa,aAAa;IACtB;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO9G;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;;OAIG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAO/G;;;;OAIG;WACW,QAAQ,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,YAAY,EAAE,YAAY,CAAC;IAOzG;;;;;;OAMG;WACW,WAAW,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,eAAe,EAAE,YAAY,CAAC;IAW/G;;;OAGG;WACW,eAAe,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,mBAAmB,EAAE,YAAY,CAAC;CAM1H;AAED,qBAAa,YAAY;IACrB;;OAEG;WACW,qBAAqB,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,yBAAyB,EAAE,YAAY,CAAC;IAOnI;;;;;;OAMG;WACW,SAAS,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,CAAC,EAAE,OAAO,CAAC,aAAa,EAAE,YAAY,CAAC;IAO5G;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAW7G;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;IAO7G;;;;;;OAMG;WACW,OAAO,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,WAAW,EAAE,YAAY,CAAC;IAOvG;;;;OAIG;WACW,UAAU,CAAC,YAAY,SAAS,OAAO,GAAG,KAAK,EAAE,OAAO,EAAE,OAAO,CAAC,cAAc,EAAE,YAAY,CAAC;CAUhH"}
1
+ {"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
package/dist/sdk.gen.js CHANGED
@@ -3,6 +3,7 @@ import { client } from './client.gen';
3
3
  export class BillingService {
4
4
  /**
5
5
  * Get billing usage information.
6
+ *
6
7
  * Returns aggregated usage information 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.
7
8
  *
8
9
  */
@@ -14,6 +15,7 @@ export class BillingService {
14
15
  }
15
16
  /**
16
17
  * Get billing balance information.
18
+ *
17
19
  * 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.
18
20
  *
19
21
  */
@@ -25,6 +27,7 @@ export class BillingService {
25
27
  }
26
28
  /**
27
29
  * Get organization payment method information.
30
+ *
28
31
  * 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.
29
32
  *
30
33
  */
@@ -36,6 +39,7 @@ export class BillingService {
36
39
  }
37
40
  /**
38
41
  * Get Stripe client secret.
42
+ *
39
43
  * 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.
40
44
  *
41
45
  */
@@ -47,6 +51,7 @@ export class BillingService {
47
51
  }
48
52
  /**
49
53
  * List issued invoices.
54
+ *
50
55
  * 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.
51
56
  *
52
57
  */
@@ -58,6 +63,7 @@ export class BillingService {
58
63
  }
59
64
  /**
60
65
  * Get invoice information.
66
+ *
61
67
  * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
62
68
  *
63
69
  */
@@ -69,6 +75,7 @@ export class BillingService {
69
75
  }
70
76
  /**
71
77
  * Get organization contact and billing address information.
78
+ *
72
79
  * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
73
80
  *
74
81
  */
@@ -80,6 +87,7 @@ export class BillingService {
80
87
  }
81
88
  /**
82
89
  * Update organization contact information and billing address.
90
+ *
83
91
  * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
84
92
  *
85
93
  */
@@ -95,6 +103,7 @@ export class BillingService {
95
103
  }
96
104
  /**
97
105
  * Get applied promotional credits
106
+ *
98
107
  * 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.
99
108
  *
100
109
  */
@@ -106,6 +115,7 @@ export class BillingService {
106
115
  }
107
116
  /**
108
117
  * Redeem promotional credits code.
118
+ *
109
119
  * 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.
110
120
  *
111
121
  */
@@ -123,6 +133,7 @@ export class BillingService {
123
133
  export class ClustersService {
124
134
  /**
125
135
  * List charts.
136
+ *
126
137
  * Returns a list of charts in the cluster.
127
138
  *
128
139
  * This endpoint is available to all users in the organization.
@@ -136,6 +147,7 @@ export class ClustersService {
136
147
  }
137
148
  /**
138
149
  * Create a new chart.
150
+ *
139
151
  * Create a new chart deployment.
140
152
  *
141
153
  * This endpoint is available to administrators of the organization only.
@@ -153,6 +165,7 @@ export class ClustersService {
153
165
  }
154
166
  /**
155
167
  * Permanently delete the chart deployment from the cluster.
168
+ *
156
169
  * This endpoint will permanently delete chart. This operation cannot be undone.
157
170
  *
158
171
  * This endpoint is available to administrators of the organization only.
@@ -166,6 +179,7 @@ export class ClustersService {
166
179
  }
167
180
  /**
168
181
  * Get chart information.
182
+ *
169
183
  * Returns the details of the chart deployment.
170
184
  *
171
185
  * This endpoint is available to all users in the organization.
@@ -179,6 +193,7 @@ export class ClustersService {
179
193
  }
180
194
  /**
181
195
  * Update chart information.
196
+ *
182
197
  * This endpoint allows you to update the values of a chart deployment.
183
198
  *
184
199
  * This endpoint is available to administrators of the organization only.
@@ -196,6 +211,7 @@ export class ClustersService {
196
211
  }
197
212
  /**
198
213
  * List fleets.
214
+ *
199
215
  * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
200
216
  *
201
217
  * This endpoint is available to all users in the organization.
@@ -209,6 +225,7 @@ export class ClustersService {
209
225
  }
210
226
  /**
211
227
  * Create a new fleet.
228
+ *
212
229
  * 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.
213
230
  *
214
231
  * This endpoint is available to administrators of the organization only.
@@ -226,6 +243,7 @@ export class ClustersService {
226
243
  }
227
244
  /**
228
245
  * Permanently delete fleet.
246
+ *
229
247
  * 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.
230
248
  *
231
249
  * This endpoint is available to administrators of the organization only.
@@ -239,6 +257,7 @@ export class ClustersService {
239
257
  }
240
258
  /**
241
259
  * Get fleet information.
260
+ *
242
261
  * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
243
262
  *
244
263
  * This endpoint is available to all users in the organization.
@@ -252,6 +271,7 @@ export class ClustersService {
252
271
  }
253
272
  /**
254
273
  * Update fleet information.
274
+ *
255
275
  * This endpoint allows you to update fleet details.
256
276
  *
257
277
  * 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`.
@@ -273,6 +293,7 @@ export class ClustersService {
273
293
  }
274
294
  /**
275
295
  * Query Kubernetes cluster API
296
+ *
276
297
  * 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.
277
298
  */
278
299
  static queryCluster(options) {
@@ -283,6 +304,7 @@ export class ClustersService {
283
304
  }
284
305
  /**
285
306
  * List clusters.
307
+ *
286
308
  * 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.
287
309
  *
288
310
  * This endpoint is available to all users in the organization.
@@ -296,6 +318,7 @@ export class ClustersService {
296
318
  }
297
319
  /**
298
320
  * Create a new cluster.
321
+ *
299
322
  * 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.
300
323
  *
301
324
  * This endpoint is available to administrators of the organization only.
@@ -313,6 +336,7 @@ export class ClustersService {
313
336
  }
314
337
  /**
315
338
  * Permanently delete cluster.
339
+ *
316
340
  * This endpoint will permanently delete the cluster. This operation cannot be undone.
317
341
  *
318
342
  * This endpoint is available to administrators of the organization only.
@@ -326,6 +350,7 @@ export class ClustersService {
326
350
  }
327
351
  /**
328
352
  * Get cluster information.
353
+ *
329
354
  * 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.
330
355
  *
331
356
  * This endpoint is available to all users in the organization.
@@ -339,6 +364,7 @@ export class ClustersService {
339
364
  }
340
365
  /**
341
366
  * Update cluster information.
367
+ *
342
368
  * 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.
343
369
  *
344
370
  * This endpoint is available to administrators of the organization only.
@@ -356,6 +382,7 @@ export class ClustersService {
356
382
  }
357
383
  /**
358
384
  * Node join information for the cluster
385
+ *
359
386
  * 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.
360
387
  *
361
388
  */
@@ -369,6 +396,7 @@ export class ClustersService {
369
396
  export class InvitesService {
370
397
  /**
371
398
  * List invites.
399
+ *
372
400
  * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
373
401
  *
374
402
  */
@@ -380,6 +408,7 @@ export class InvitesService {
380
408
  }
381
409
  /**
382
410
  * Create a new invite.
411
+ *
383
412
  * Invite a new user to your Cloudfleet 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.
384
413
  *
385
414
  */
@@ -395,6 +424,7 @@ export class InvitesService {
395
424
  }
396
425
  /**
397
426
  * Get invite information.
427
+ *
398
428
  * Returns invite details.
399
429
  *
400
430
  */
@@ -406,6 +436,7 @@ export class InvitesService {
406
436
  }
407
437
  /**
408
438
  * Permanently delete invite.
439
+ *
409
440
  * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
410
441
  *
411
442
  */
@@ -419,6 +450,7 @@ export class InvitesService {
419
450
  export class ChartsMarketplaceService {
420
451
  /**
421
452
  * List chart listings available in the marketplace.
453
+ *
422
454
  * Returns a list of available charts in the marketplace.
423
455
  *
424
456
  * This endpoint is available to all users in the organization.
@@ -432,6 +464,7 @@ export class ChartsMarketplaceService {
432
464
  }
433
465
  /**
434
466
  * Get chart listing details.
467
+ *
435
468
  * Returns details of the chart listing.
436
469
  *
437
470
  * This endpoint is available to all users in the organization.
@@ -447,6 +480,7 @@ export class ChartsMarketplaceService {
447
480
  export class OrganizationService {
448
481
  /**
449
482
  * Get organization information.
483
+ *
450
484
  * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
451
485
  *
452
486
  * This endpoint is available to all users in the organization.
@@ -460,6 +494,7 @@ export class OrganizationService {
460
494
  }
461
495
  /**
462
496
  * Create a new organization / Cloudfleet account signup.
497
+ *
463
498
  * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
464
499
  *
465
500
  */
@@ -477,6 +512,7 @@ export class OrganizationService {
477
512
  export class TokensService {
478
513
  /**
479
514
  * List access tokens in organization.
515
+ *
480
516
  * 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.
481
517
  *
482
518
  */
@@ -488,6 +524,7 @@ export class TokensService {
488
524
  }
489
525
  /**
490
526
  * Create a new access token.
527
+ *
491
528
  * 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.
492
529
  *
493
530
  * This endpoint is available to administrators of the organization only.
@@ -505,6 +542,7 @@ export class TokensService {
505
542
  }
506
543
  /**
507
544
  * Permanently delete access token.
545
+ *
508
546
  * 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.
509
547
  *
510
548
  */
@@ -516,6 +554,7 @@ export class TokensService {
516
554
  }
517
555
  /**
518
556
  * Get access token information.
557
+ *
519
558
  * 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.
520
559
  *
521
560
  */
@@ -527,6 +566,7 @@ export class TokensService {
527
566
  }
528
567
  /**
529
568
  * Update access token information.
569
+ *
530
570
  * 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.
531
571
  *
532
572
  * This endpoint is available to administrators of the organization only.
@@ -544,6 +584,7 @@ export class TokensService {
544
584
  }
545
585
  /**
546
586
  * Regenerate access token secret key.
587
+ *
547
588
  * Generates a new access token secret. Old secret will not be valid anymore.
548
589
  */
549
590
  static regenerateToken(options) {
@@ -565,6 +606,7 @@ export class UsersService {
565
606
  }
566
607
  /**
567
608
  * List users in organization.
609
+ *
568
610
  * 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.
569
611
  *
570
612
  * This endpoint is available to all users in the organization.
@@ -578,6 +620,7 @@ export class UsersService {
578
620
  }
579
621
  /**
580
622
  * Create a new user.
623
+ *
581
624
  * 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.
582
625
  *
583
626
  */
@@ -593,6 +636,7 @@ export class UsersService {
593
636
  }
594
637
  /**
595
638
  * Delete user by id.
639
+ *
596
640
  * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
597
641
  *
598
642
  */
@@ -604,6 +648,7 @@ export class UsersService {
604
648
  }
605
649
  /**
606
650
  * Get user profile information by id.
651
+ *
607
652
  * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
608
653
  *
609
654
  * This endpoint is available to all users in the organization.
@@ -617,6 +662,7 @@ export class UsersService {
617
662
  }
618
663
  /**
619
664
  * Update user profile information.
665
+ *
620
666
  * 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.
621
667
  *
622
668
  */
@@ -1 +1 @@
1
- {"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"sdk.gen.js","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloudfleet/sdk",
3
3
  "description": "Cloudfleet API SDK",
4
- "version": "0.6.26",
4
+ "version": "0.6.28",
5
5
  "author": "Cloudfleet <info@example.com>",
6
6
  "license": "MIT",
7
7
  "publishConfig": {
@@ -23,7 +23,7 @@
23
23
  "devDependencies": {
24
24
  "@types/json-patch": "^0.0.33",
25
25
  "@types/lodash": "^4.17.20",
26
- "@types/node": "^24.9.0",
26
+ "@types/node": "^24.10.1",
27
27
  "typescript": "^5.9.3"
28
28
  },
29
29
  "files": [