@cloudfleet/sdk 0.0.1-7d8c04e → 0.0.1-869c561

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
@@ -1,98 +1,170 @@
1
- import { type Options } from '@hey-api/client-fetch';
2
- import type { GetUsageData, GetBalanceData, GetPaymentMethodData, GetPaymentMethodSecretData, ListInvoicesData, GetInvoiceData, ListFleetsData, CreateFleetData, DeleteFleetData, GetFleetData, UpdateFleetData, QueryClusterData, ListClustersData, CreateClusterData, DeleteClusterData, GetClusterData, UpdateClusterData, GetJoinInformationData, GetInfrastructureData, GetFacetsData, GetRegionsData, ListInvitesData, CreateInviteData, GetInviteData, DeleteInviteData, GetOrganizationData, CreateOrganizationData, UpdateOrganizationData, ListTokensData, CreateTokenData, DeleteTokenData, GetTokenData, UpdateTokenData, RegenerateTokenData, ListUserOrganizationsData, ListUsersData, CreateUserData, DeleteUserData, GetUserData, UpdateUserData, DeleteClusterPermissionsData, SetClusterPermissionsData } from './types.gen';
3
- export declare const client: import("@hey-api/client-fetch").Client<Request, Response, unknown, import("@hey-api/client-fetch").RequestOptions<boolean, string>>;
1
+ import type { Options as ClientOptions, TDataShape, Client } from '@hey-api/client-fetch';
2
+ import type { GetUsageData, GetUsageResponses, GetUsageErrors, GetBalanceData, GetBalanceResponses, GetPaymentMethodData, GetPaymentMethodResponses, GetPaymentMethodErrors, GetPaymentMethodSecretData, GetPaymentMethodSecretResponses, ListInvoicesData, ListInvoicesResponses, ListInvoicesErrors, GetInvoiceData, GetInvoiceResponses, GetContactData, GetContactResponses, UpdateContactData, UpdateContactResponses, GetCreditsData, GetCreditsResponses, GetCreditsErrors, RedeemCreditsData, RedeemCreditsResponses, RedeemCreditsErrors, ListChartsData, ListChartsResponses, ListChartsErrors, CreateChartData, CreateChartResponses, DeleteChartData, DeleteChartResponses, GetChartData, GetChartResponses, UpdateChartData, UpdateChartResponses, ListFleetsData, ListFleetsResponses, ListFleetsErrors, CreateFleetData, CreateFleetResponses, CreateFleetErrors, DeleteFleetData, DeleteFleetResponses, GetFleetData, GetFleetResponses, UpdateFleetData, UpdateFleetResponses, UpdateFleetErrors, QueryClusterData, QueryClusterResponses, QueryClusterErrors, ListClustersData, ListClustersResponses, ListClustersErrors, CreateClusterData, CreateClusterResponses, CreateClusterErrors, DeleteClusterData, DeleteClusterResponses, GetClusterData, GetClusterResponses, UpdateClusterData, UpdateClusterResponses, GetJoinInformationData, GetJoinInformationResponses, GetJoinInformationErrors, ListInvitesData, ListInvitesResponses, ListInvitesErrors, CreateInviteData, CreateInviteResponses, GetInviteData, GetInviteResponses, DeleteInviteData, DeleteInviteResponses, ListMarketplaceChartsData, ListMarketplaceChartsResponses, ListMarketplaceChartsErrors, GetMarketplaceChartData, GetMarketplaceChartResponses, GetOrganizationData, GetOrganizationResponses, CreateOrganizationData, CreateOrganizationResponses, ListTokensData, ListTokensResponses, ListTokensErrors, CreateTokenData, CreateTokenResponses, CreateTokenErrors, DeleteTokenData, DeleteTokenResponses, GetTokenData, GetTokenResponses, GetTokenErrors, UpdateTokenData, UpdateTokenResponses, UpdateTokenErrors, RegenerateTokenData, RegenerateTokenResponses, RegenerateTokenErrors, ListUserOrganizationsData, ListUserOrganizationsResponses, ListUsersData, ListUsersResponses, ListUsersErrors, CreateUserData, CreateUserResponses, DeleteUserData, DeleteUserResponses, DeleteUserErrors, GetUserData, GetUserResponses, GetUserErrors, UpdateUserData, UpdateUserResponses } from './types.gen';
3
+ export type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean> = ClientOptions<TData, ThrowOnError> & {
4
+ /**
5
+ * You can provide a client instance returned by `createClient()` instead of
6
+ * individual options. This might be also useful if you want to implement a
7
+ * custom client.
8
+ */
9
+ client?: Client;
10
+ /**
11
+ * You can pass arbitrary values through the `meta` object. This can be
12
+ * used to access values that aren't defined as part of the SDK function.
13
+ */
14
+ meta?: Record<string, unknown>;
15
+ };
4
16
  export declare class BillingService {
5
17
  /**
6
18
  * 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.
19
+ * 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.
8
20
  *
9
21
  */
10
- static getUsage<ThrowOnError extends boolean = false>(options: Options<GetUsageData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Usage[], unknown, ThrowOnError>;
22
+ static getUsage<ThrowOnError extends boolean = false>(options?: Options<GetUsageData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetUsageResponses, GetUsageErrors, ThrowOnError, "fields">;
11
23
  /**
12
24
  * Get billing balance information.
13
25
  * 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.
14
26
  *
15
27
  */
16
- static getBalance<ThrowOnError extends boolean = false>(options?: Options<GetBalanceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<number, unknown, ThrowOnError>;
28
+ static getBalance<ThrowOnError extends boolean = false>(options?: Options<GetBalanceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetBalanceResponses, unknown, ThrowOnError, "fields">;
17
29
  /**
18
30
  * Get organization payment method information.
19
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.
20
32
  *
21
33
  */
22
- static getPaymentMethod<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").PaymentMethod, unknown, ThrowOnError>;
34
+ static getPaymentMethod<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetPaymentMethodResponses, GetPaymentMethodErrors, ThrowOnError, "fields">;
23
35
  /**
24
36
  * Get Stripe client secret.
25
37
  * 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.
26
38
  *
27
39
  */
28
- static getPaymentMethodSecret<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodSecretData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
29
- id?: string;
30
- }, unknown, ThrowOnError>;
40
+ static getPaymentMethodSecret<ThrowOnError extends boolean = false>(options?: Options<GetPaymentMethodSecretData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetPaymentMethodSecretResponses, unknown, ThrowOnError, "fields">;
31
41
  /**
32
42
  * List issued invoices.
33
43
  * Returns a list of invoices for the organization. For more information on billing and payments, see [Billing and pricing](https://cloudfleet.ai/docs/organization/billing/) section of documentaiton. This endpoint is available to all users in the organization.
34
44
  *
35
45
  */
36
- static listInvoices<ThrowOnError extends boolean = false>(options: Options<ListInvoicesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Invoice[], unknown, ThrowOnError>;
46
+ static listInvoices<ThrowOnError extends boolean = false>(options: Options<ListInvoicesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListInvoicesResponses, ListInvoicesErrors, ThrowOnError, "fields">;
37
47
  /**
38
48
  * Get invoice information.
39
49
  * Returns a single Invoice as HTML referenced by id. This endpoint is available to all users in the organization.
40
50
  *
41
51
  */
42
- static getInvoice<ThrowOnError extends boolean = false>(options: Options<GetInvoiceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
43
- html?: string;
44
- }, unknown, ThrowOnError>;
52
+ static getInvoice<ThrowOnError extends boolean = false>(options: Options<GetInvoiceData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetInvoiceResponses, unknown, ThrowOnError, "fields">;
53
+ /**
54
+ * Get organization contact and billing address information.
55
+ * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
56
+ *
57
+ */
58
+ static getContact<ThrowOnError extends boolean = false>(options?: Options<GetContactData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetContactResponses, unknown, ThrowOnError, "fields">;
59
+ /**
60
+ * Update organization contact information and billing address.
61
+ * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
62
+ *
63
+ */
64
+ static updateContact<ThrowOnError extends boolean = false>(options: Options<UpdateContactData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateContactResponses, unknown, ThrowOnError, "fields">;
65
+ /**
66
+ * Get applied promotional credits
67
+ * 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
+ *
69
+ */
70
+ static getCredits<ThrowOnError extends boolean = false>(options?: Options<GetCreditsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetCreditsResponses, GetCreditsErrors, ThrowOnError, "fields">;
71
+ /**
72
+ * Redeem promotional credits code.
73
+ * 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
+ *
75
+ */
76
+ static redeemCredits<ThrowOnError extends boolean = false>(options: Options<RedeemCreditsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<RedeemCreditsResponses, RedeemCreditsErrors, ThrowOnError, "fields">;
45
77
  }
46
78
  export declare class ClustersService {
79
+ /**
80
+ * List charts.
81
+ * Returns a list of charts in the cluster.
82
+ *
83
+ * This endpoint is available to all users in the organization.
84
+ *
85
+ */
86
+ static listCharts<ThrowOnError extends boolean = false>(options: Options<ListChartsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListChartsResponses, ListChartsErrors, ThrowOnError, "fields">;
87
+ /**
88
+ * Create a new chart.
89
+ * Create a new chart deployment.
90
+ *
91
+ * This endpoint is available to administrators of the organization only.
92
+ *
93
+ */
94
+ static createChart<ThrowOnError extends boolean = false>(options: Options<CreateChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateChartResponses, unknown, ThrowOnError, "fields">;
95
+ /**
96
+ * Permanently delete the chart deployment from the cluster.
97
+ * This endpoint will permanently delete chart. This operation cannot be undone.
98
+ *
99
+ * This endpoint is available to administrators of the organization only.
100
+ *
101
+ */
102
+ static deleteChart<ThrowOnError extends boolean = false>(options: Options<DeleteChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteChartResponses, unknown, ThrowOnError, "fields">;
103
+ /**
104
+ * Get chart information.
105
+ * Returns the details of the chart deployment.
106
+ *
107
+ * This endpoint is available to all users in the organization.
108
+ *
109
+ */
110
+ static getChart<ThrowOnError extends boolean = false>(options: Options<GetChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetChartResponses, unknown, ThrowOnError, "fields">;
111
+ /**
112
+ * Update chart information.
113
+ * This endpoint allows you to update the values of a chart deployment.
114
+ *
115
+ * This endpoint is available to administrators of the organization only.
116
+ *
117
+ */
118
+ static updateChart<ThrowOnError extends boolean = false>(options: Options<UpdateChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateChartResponses, unknown, ThrowOnError, "fields">;
47
119
  /**
48
120
  * List fleets.
49
- * 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.
121
+ * Returns a list of fleets belonging to the cluster. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
50
122
  *
51
123
  * This endpoint is available to all users in the organization.
52
124
  *
53
125
  */
54
- static listFleets<ThrowOnError extends boolean = false>(options: Options<ListFleetsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Fleet[], unknown, ThrowOnError>;
126
+ static listFleets<ThrowOnError extends boolean = false>(options: Options<ListFleetsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListFleetsResponses, ListFleetsErrors, ThrowOnError, "fields">;
55
127
  /**
56
128
  * Create a new fleet.
57
- * 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 and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
129
+ * 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.
58
130
  *
59
131
  * This endpoint is available to administrators of the organization only.
60
132
  *
61
133
  */
62
- static createFleet<ThrowOnError extends boolean = false>(options: Options<CreateFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<string, string, ThrowOnError>;
134
+ static createFleet<ThrowOnError extends boolean = false>(options: Options<CreateFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateFleetResponses, CreateFleetErrors, ThrowOnError, "fields">;
63
135
  /**
64
136
  * Permanently delete fleet.
65
- * 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.
137
+ * 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.
66
138
  *
67
139
  * This endpoint is available to administrators of the organization only.
68
140
  *
69
141
  */
70
- static deleteFleet<ThrowOnError extends boolean = false>(options: Options<DeleteFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<string, unknown, ThrowOnError>;
142
+ static deleteFleet<ThrowOnError extends boolean = false>(options: Options<DeleteFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteFleetResponses, unknown, ThrowOnError, "fields">;
71
143
  /**
72
144
  * Get fleet information.
73
- * Returns fleet details. For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
145
+ * Returns fleet details. For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
74
146
  *
75
147
  * This endpoint is available to all users in the organization.
76
148
  *
77
149
  */
78
- static getFleet<ThrowOnError extends boolean = false>(options: Options<GetFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Fleet, unknown, ThrowOnError>;
150
+ static getFleet<ThrowOnError extends boolean = false>(options: Options<GetFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetFleetResponses, unknown, ThrowOnError, "fields">;
79
151
  /**
80
152
  * Update fleet information.
81
153
  * This endpoint allows you to update fleet details.
82
154
  *
83
- * 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`.
155
+ * 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`.
84
156
  *
85
- * For more information, see [Fleets and fleet types](https://cloudfleet.ai/docs/cloud-infrastructure/fleets-and-fleet-types/) section of documentaiton.
157
+ * For more information, see [Fleets](https://cloudfleet.ai/docs/cloud-infrastructure/fleets/) section of documentaiton.
86
158
  *
87
159
  * This endpoint is available to administrators of the organization only.
88
160
  *
89
161
  */
90
- static updateFleet<ThrowOnError extends boolean = false>(options: Options<UpdateFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<string, string, ThrowOnError>;
162
+ static updateFleet<ThrowOnError extends boolean = false>(options: Options<UpdateFleetData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateFleetResponses, UpdateFleetErrors, ThrowOnError, "fields">;
91
163
  /**
92
164
  * Query Kubernetes cluster API
93
165
  * 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.
94
166
  */
95
- static queryCluster<ThrowOnError extends boolean = false>(options: Options<QueryClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<unknown, unknown, ThrowOnError>;
167
+ static queryCluster<ThrowOnError extends boolean = false>(options: Options<QueryClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<QueryClusterResponses, QueryClusterErrors, ThrowOnError, "fields">;
96
168
  /**
97
169
  * List clusters.
98
170
  * 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.
@@ -100,7 +172,7 @@ export declare class ClustersService {
100
172
  * This endpoint is available to all users in the organization.
101
173
  *
102
174
  */
103
- static listClusters<ThrowOnError extends boolean = false>(options?: Options<ListClustersData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Cluster[], unknown, ThrowOnError>;
175
+ static listClusters<ThrowOnError extends boolean = false>(options?: Options<ListClustersData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListClustersResponses, ListClustersErrors, ThrowOnError, "fields">;
104
176
  /**
105
177
  * Create a new cluster.
106
178
  * 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.
@@ -108,7 +180,7 @@ export declare class ClustersService {
108
180
  * This endpoint is available to administrators of the organization only.
109
181
  *
110
182
  */
111
- static createCluster<ThrowOnError extends boolean = false>(options: Options<CreateClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<string, string, ThrowOnError>;
183
+ static createCluster<ThrowOnError extends boolean = false>(options: Options<CreateClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateClusterResponses, CreateClusterErrors, ThrowOnError, "fields">;
112
184
  /**
113
185
  * Permanently delete cluster.
114
186
  * This endpoint will permanently delete the cluster. This operation cannot be undone.
@@ -116,7 +188,7 @@ export declare class ClustersService {
116
188
  * This endpoint is available to administrators of the organization only.
117
189
  *
118
190
  */
119
- static deleteCluster<ThrowOnError extends boolean = false>(options: Options<DeleteClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<string, unknown, ThrowOnError>;
191
+ static deleteCluster<ThrowOnError extends boolean = false>(options: Options<DeleteClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteClusterResponses, unknown, ThrowOnError, "fields">;
120
192
  /**
121
193
  * Get cluster information.
122
194
  * 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.
@@ -124,7 +196,7 @@ export declare class ClustersService {
124
196
  * This endpoint is available to all users in the organization.
125
197
  *
126
198
  */
127
- static getCluster<ThrowOnError extends boolean = false>(options: Options<GetClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Cluster, unknown, ThrowOnError>;
199
+ static getCluster<ThrowOnError extends boolean = false>(options: Options<GetClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetClusterResponses, unknown, ThrowOnError, "fields">;
128
200
  /**
129
201
  * Update cluster information.
130
202
  * 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.
@@ -132,74 +204,13 @@ export declare class ClustersService {
132
204
  * This endpoint is available to administrators of the organization only.
133
205
  *
134
206
  */
135
- static updateCluster<ThrowOnError extends boolean = false>(options: Options<UpdateClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Cluster, unknown, ThrowOnError>;
207
+ static updateCluster<ThrowOnError extends boolean = false>(options: Options<UpdateClusterData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateClusterResponses, unknown, ThrowOnError, "fields">;
136
208
  /**
137
209
  * Node join information for the cluster
138
- * 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.
210
+ * 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.
139
211
  *
140
212
  */
141
- static getJoinInformation<ThrowOnError extends boolean = false>(options: Options<GetJoinInformationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Cluster, unknown, ThrowOnError>;
142
- }
143
- export declare class InfrastructureService {
144
- /**
145
- * Search infrastructure catalog.
146
- * 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:
147
- *
148
- * `GET /infrastructure?accelerator_name=A100&region=northamerica`
149
- *
150
- * 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.
151
- *
152
- * **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.
153
- *
154
- * For full documentation of the infrastructure catalog, see [Cloud providers and instance types](https://cloudfleet.ai/docs/cloud-infrastructure/) section of the documentation.
155
- *
156
- */
157
- static getInfrastructure<ThrowOnError extends boolean = false>(options?: Options<GetInfrastructureData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").InfrastructureInstance[], Blob | File, ThrowOnError>;
158
- /**
159
- * Infrastructure catalog facets.
160
- * This endpoint returns calculated search facets from the infrastructure catalog.
161
- *
162
- */
163
- static getFacets<ThrowOnError extends boolean = false>(options?: Options<GetFacetsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
164
- provider?: Array<string>;
165
- region?: Array<string>;
166
- sub_region?: Array<string>;
167
- csp_region?: Array<string>;
168
- vcpu_min?: number;
169
- vcpu_max?: number;
170
- memory_min?: number;
171
- memory_max?: number;
172
- storage_local_min?: number;
173
- storage_local_max?: number;
174
- accelerator_name?: Array<string>;
175
- accelerator_manufacturer?: Array<string>;
176
- accelerator_count_min?: number;
177
- accelerator_count_max?: number;
178
- accelerator_memory_min?: number;
179
- accelerator_memory_max?: number;
180
- price_min?: number;
181
- price_max?: number;
182
- regions_struct?: Array<{
183
- region?: string;
184
- sub_region?: Array<string>;
185
- }>;
186
- accelerators_struct?: Array<{
187
- accelerator_manufacturer?: string;
188
- accelerator_name?: Array<string>;
189
- }>;
190
- count_total?: number;
191
- count_accelerators?: number;
192
- count_instance_types?: number;
193
- count_accelerators_instance_types?: number;
194
- }[], unknown, ThrowOnError>;
195
- /**
196
- * Available Cloudfleet regions and Kubernetes versions.
197
- * Available Cloudfleet regions and Kubernetes versions.
198
- *
199
- */
200
- static getRegions<ThrowOnError extends boolean = false>(options?: Options<GetRegionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
201
- [key: string]: unknown;
202
- }, unknown, ThrowOnError>;
213
+ static getJoinInformation<ThrowOnError extends boolean = false>(options: Options<GetJoinInformationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetJoinInformationResponses, GetJoinInformationErrors, ThrowOnError, "fields">;
203
214
  }
204
215
  export declare class InvitesService {
205
216
  /**
@@ -207,49 +218,59 @@ export declare class InvitesService {
207
218
  * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
208
219
  *
209
220
  */
210
- static listInvites<ThrowOnError extends boolean = false>(options?: Options<ListInvitesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Invite[], unknown, ThrowOnError>;
221
+ static listInvites<ThrowOnError extends boolean = false>(options?: Options<ListInvitesData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListInvitesResponses, ListInvitesErrors, ThrowOnError, "fields">;
211
222
  /**
212
223
  * Create a new invite.
213
- * 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.
224
+ * 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.
214
225
  *
215
226
  */
216
- static createInvite<ThrowOnError extends boolean = false>(options: Options<CreateInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Invite, unknown, ThrowOnError>;
227
+ static createInvite<ThrowOnError extends boolean = false>(options: Options<CreateInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateInviteResponses, unknown, ThrowOnError, "fields">;
217
228
  /**
218
229
  * Get invite information.
219
230
  * Returns invite details.
220
231
  *
221
232
  */
222
- static getInvite<ThrowOnError extends boolean = false>(options: Options<GetInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Invite, unknown, ThrowOnError>;
233
+ static getInvite<ThrowOnError extends boolean = false>(options: Options<GetInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetInviteResponses, unknown, ThrowOnError, "fields">;
223
234
  /**
224
235
  * Permanently delete invite.
225
236
  * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
226
237
  *
227
238
  */
228
- static deleteInvite<ThrowOnError extends boolean = false>(options: Options<DeleteInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<unknown, unknown, ThrowOnError>;
239
+ static deleteInvite<ThrowOnError extends boolean = false>(options: Options<DeleteInviteData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteInviteResponses, unknown, ThrowOnError, "fields">;
229
240
  }
230
- export declare class OrganizationService {
241
+ export declare class ChartsMarketplaceService {
231
242
  /**
232
- * Get organization information.
233
- * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
243
+ * List chart listings available in the marketplace.
244
+ * Returns a list of available charts in the marketplace.
234
245
  *
235
246
  * This endpoint is available to all users in the organization.
236
247
  *
237
248
  */
238
- static getOrganization<ThrowOnError extends boolean = false>(options?: Options<GetOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Organization, unknown, ThrowOnError>;
249
+ static listMarketplaceCharts<ThrowOnError extends boolean = false>(options?: Options<ListMarketplaceChartsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListMarketplaceChartsResponses, ListMarketplaceChartsErrors, ThrowOnError, "fields">;
239
250
  /**
240
- * Create a new organization / Cloudfleet account signup.
241
- * 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.
251
+ * Get chart listing details.
252
+ * Returns details of the chart listing.
253
+ *
254
+ * This endpoint is available to all users in the organization.
242
255
  *
243
256
  */
244
- static createOrganization<ThrowOnError extends boolean = false>(options: Options<CreateOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Organization, unknown, ThrowOnError>;
257
+ static getMarketplaceChart<ThrowOnError extends boolean = false>(options: Options<GetMarketplaceChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetMarketplaceChartResponses, unknown, ThrowOnError, "fields">;
258
+ }
259
+ export declare class OrganizationService {
245
260
  /**
246
- * Update organization information.
247
- * 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.
261
+ * Get organization information.
262
+ * Returns organization details including quota. For more information about quotas, see [Quotas and limits](https://cloudfleet.ai/docs/organization/quotas/) section of documentaiton.
248
263
  *
249
- * This endpoint is available to administrators of the organization only.
264
+ * This endpoint is available to all users in the organization.
265
+ *
266
+ */
267
+ static getOrganization<ThrowOnError extends boolean = false>(options?: Options<GetOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetOrganizationResponses, unknown, ThrowOnError, "fields">;
268
+ /**
269
+ * Create a new organization / Cloudfleet account signup.
270
+ * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
250
271
  *
251
272
  */
252
- static updateOrganization<ThrowOnError extends boolean = false>(options: Options<UpdateOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Organization, unknown, ThrowOnError>;
273
+ static createOrganization<ThrowOnError extends boolean = false>(options: Options<CreateOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateOrganizationResponses, unknown, ThrowOnError, "fields">;
253
274
  }
254
275
  export declare class TokensService {
255
276
  /**
@@ -257,7 +278,7 @@ export declare class TokensService {
257
278
  * 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.
258
279
  *
259
280
  */
260
- static listTokens<ThrowOnError extends boolean = false>(options?: Options<ListTokensData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Token[], unknown, ThrowOnError>;
281
+ static listTokens<ThrowOnError extends boolean = false>(options?: Options<ListTokensData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListTokensResponses, ListTokensErrors, ThrowOnError, "fields">;
261
282
  /**
262
283
  * Create a new access token.
263
284
  * 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.
@@ -265,19 +286,19 @@ export declare class TokensService {
265
286
  * This endpoint is available to administrators of the organization only.
266
287
  *
267
288
  */
268
- static createToken<ThrowOnError extends boolean = false>(options: Options<CreateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Token, unknown, ThrowOnError>;
289
+ static createToken<ThrowOnError extends boolean = false>(options: Options<CreateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateTokenResponses, CreateTokenErrors, ThrowOnError, "fields">;
269
290
  /**
270
291
  * Permanently delete access token.
271
292
  * 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.
272
293
  *
273
294
  */
274
- static deleteToken<ThrowOnError extends boolean = false>(options: Options<DeleteTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<unknown, unknown, ThrowOnError>;
295
+ static deleteToken<ThrowOnError extends boolean = false>(options: Options<DeleteTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteTokenResponses, unknown, ThrowOnError, "fields">;
275
296
  /**
276
297
  * Get access token information.
277
298
  * 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.
278
299
  *
279
300
  */
280
- static getToken<ThrowOnError extends boolean = false>(options: Options<GetTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Token, unknown, ThrowOnError>;
301
+ static getToken<ThrowOnError extends boolean = false>(options: Options<GetTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetTokenResponses, GetTokenErrors, ThrowOnError, "fields">;
281
302
  /**
282
303
  * Update access token information.
283
304
  * 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.
@@ -285,66 +306,51 @@ export declare class TokensService {
285
306
  * This endpoint is available to administrators of the organization only.
286
307
  *
287
308
  */
288
- static updateToken<ThrowOnError extends boolean = false>(options: Options<UpdateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Token, unknown, ThrowOnError>;
309
+ static updateToken<ThrowOnError extends boolean = false>(options: Options<UpdateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateTokenResponses, UpdateTokenErrors, ThrowOnError, "fields">;
289
310
  /**
290
311
  * Regenerate access token secret key.
291
312
  * Generates a new access token secret. Old secret will not be valid anymore.
292
313
  */
293
- static regenerateToken<ThrowOnError extends boolean = false>(options: Options<RegenerateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Token, unknown, ThrowOnError>;
314
+ static regenerateToken<ThrowOnError extends boolean = false>(options: Options<RegenerateTokenData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<RegenerateTokenResponses, RegenerateTokenErrors, ThrowOnError, "fields">;
294
315
  }
295
316
  export declare class UsersService {
296
317
  /**
297
318
  * Get a list of organizations the user belongs to. Used during authentication process.
298
319
  */
299
- static listUserOrganizations<ThrowOnError extends boolean = false>(options: Options<ListUserOrganizationsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
300
- realm?: string;
301
- displayName?: string;
302
- }[], unknown, ThrowOnError>;
320
+ static listUserOrganizations<ThrowOnError extends boolean = false>(options: Options<ListUserOrganizationsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListUserOrganizationsResponses, unknown, ThrowOnError, "fields">;
303
321
  /**
304
322
  * List users in organization.
305
- * 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.
323
+ * 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.
306
324
  *
307
325
  * This endpoint is available to all users in the organization.
308
326
  *
309
327
  */
310
- static listUsers<ThrowOnError extends boolean = false>(options?: Options<ListUsersData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User[], unknown, ThrowOnError>;
328
+ static listUsers<ThrowOnError extends boolean = false>(options?: Options<ListUsersData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListUsersResponses, ListUsersErrors, ThrowOnError, "fields">;
311
329
  /**
312
330
  * Create a new user.
313
- * 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.
331
+ * 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.
314
332
  *
315
333
  */
316
- static createUser<ThrowOnError extends boolean = false>(options: Options<CreateUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
334
+ static createUser<ThrowOnError extends boolean = false>(options: Options<CreateUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateUserResponses, unknown, ThrowOnError, "fields">;
317
335
  /**
318
336
  * Delete user by id.
319
337
  * Sets user status to `inactive`. Inactive users cannot log in and manage organization resources. This endpoint is available to administrators of the organization only.
320
338
  *
321
339
  */
322
- static deleteUser<ThrowOnError extends boolean = false>(options: Options<DeleteUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
340
+ static deleteUser<ThrowOnError extends boolean = false>(options: Options<DeleteUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<DeleteUserResponses, DeleteUserErrors, ThrowOnError, "fields">;
323
341
  /**
324
342
  * Get user profile information by id.
325
- * 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.
343
+ * Returns user details including their roles. For more information on identity access management, see [Users](https://cloudfleet.ai/docs/organization/users/) section of documentaiton.
326
344
  *
327
345
  * This endpoint is available to all users in the organization.
328
346
  *
329
347
  */
330
- static getUser<ThrowOnError extends boolean = false>(options: Options<GetUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
348
+ static getUser<ThrowOnError extends boolean = false>(options: Options<GetUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetUserResponses, GetUserErrors, ThrowOnError, "fields">;
331
349
  /**
332
350
  * Update user profile information.
333
351
  * 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.
334
352
  *
335
353
  */
336
- static updateUser<ThrowOnError extends boolean = false>(options: Options<UpdateUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
337
- /**
338
- * Remove user from cluster.
339
- * 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.
340
- *
341
- */
342
- static deleteClusterPermissions<ThrowOnError extends boolean = false>(options: Options<DeleteClusterPermissionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
343
- /**
344
- * Add user to cluster and set permissions.
345
- * Add user to the cluster and set / update access permissions. This endpoint is available to administrators of the organization only.
346
- *
347
- */
348
- static setClusterPermissions<ThrowOnError extends boolean = false>(options: Options<SetClusterPermissionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
354
+ static updateUser<ThrowOnError extends boolean = false>(options: Options<UpdateUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<UpdateUserResponses, unknown, ThrowOnError, "fields">;
349
355
  }
350
356
  //# sourceMappingURL=sdk.gen.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"sdk.gen.d.ts","sourceRoot":"","sources":["../src/sdk.gen.ts"],"names":[],"mappings":"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"}