@cloudfleet/sdk 0.0.1-e644e0d → 0.0.1-e9052b2

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,110 +1,170 @@
1
- import { type Options } from '@hey-api/client-fetch';
2
- import type { GetUsageData, GetBalanceData, GetPaymentMethodData, GetPaymentMethodSecretData, ListInvoicesData, GetInvoiceData, GetContactData, UpdateContactData, ListFleetsData, CreateFleetData, DeleteFleetData, GetFleetData, UpdateFleetData, QueryClusterData, ListClustersData, CreateClusterData, DeleteClusterData, GetClusterData, UpdateClusterData, GetJoinInformationData, GetInfrastructureData, GetFacetsData, GetRegionsData, ListInvitesData, CreateInviteData, GetInviteData, DeleteInviteData, GetOrganizationData, CreateOrganizationData, 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
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">;
45
53
  /**
46
54
  * Get organization contact and billing address information.
47
55
  * Returns the organization contact and billing address information. This endpoint is available to all users in the organization.
48
56
  *
49
57
  */
50
- static getContact<ThrowOnError extends boolean = false>(options?: Options<GetContactData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").BillingContact, unknown, ThrowOnError>;
58
+ static getContact<ThrowOnError extends boolean = false>(options?: Options<GetContactData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetContactResponses, unknown, ThrowOnError, "fields">;
51
59
  /**
52
60
  * Update organization contact information and billing address.
53
61
  * This endpoint allows you to update organization details with its contact information. This endpoint is available to administrators of the organization only.
54
62
  *
55
63
  */
56
- static updateContact<ThrowOnError extends boolean = false>(options: Options<UpdateContactData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").BillingContact, unknown, ThrowOnError>;
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">;
57
77
  }
58
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">;
59
119
  /**
60
120
  * List fleets.
61
- * 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.
62
122
  *
63
123
  * This endpoint is available to all users in the organization.
64
124
  *
65
125
  */
66
- 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">;
67
127
  /**
68
128
  * Create a new fleet.
69
- * 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.
70
130
  *
71
131
  * This endpoint is available to administrators of the organization only.
72
132
  *
73
133
  */
74
- 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">;
75
135
  /**
76
136
  * Permanently delete fleet.
77
- * 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.
78
138
  *
79
139
  * This endpoint is available to administrators of the organization only.
80
140
  *
81
141
  */
82
- 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">;
83
143
  /**
84
144
  * Get fleet information.
85
- * 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.
86
146
  *
87
147
  * This endpoint is available to all users in the organization.
88
148
  *
89
149
  */
90
- 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">;
91
151
  /**
92
152
  * Update fleet information.
93
153
  * This endpoint allows you to update fleet details.
94
154
  *
95
- * 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`.
96
156
  *
97
- * 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.
98
158
  *
99
159
  * This endpoint is available to administrators of the organization only.
100
160
  *
101
161
  */
102
- 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">;
103
163
  /**
104
164
  * Query Kubernetes cluster API
105
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.
106
166
  */
107
- 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">;
108
168
  /**
109
169
  * List clusters.
110
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.
@@ -112,7 +172,7 @@ export declare class ClustersService {
112
172
  * This endpoint is available to all users in the organization.
113
173
  *
114
174
  */
115
- 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">;
116
176
  /**
117
177
  * Create a new cluster.
118
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.
@@ -120,7 +180,7 @@ export declare class ClustersService {
120
180
  * This endpoint is available to administrators of the organization only.
121
181
  *
122
182
  */
123
- 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">;
124
184
  /**
125
185
  * Permanently delete cluster.
126
186
  * This endpoint will permanently delete the cluster. This operation cannot be undone.
@@ -128,7 +188,7 @@ export declare class ClustersService {
128
188
  * This endpoint is available to administrators of the organization only.
129
189
  *
130
190
  */
131
- 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">;
132
192
  /**
133
193
  * Get cluster information.
134
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.
@@ -136,7 +196,7 @@ export declare class ClustersService {
136
196
  * This endpoint is available to all users in the organization.
137
197
  *
138
198
  */
139
- 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">;
140
200
  /**
141
201
  * Update cluster information.
142
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.
@@ -144,74 +204,13 @@ export declare class ClustersService {
144
204
  * This endpoint is available to administrators of the organization only.
145
205
  *
146
206
  */
147
- 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">;
148
208
  /**
149
209
  * Node join information for the cluster
150
- * 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.
151
211
  *
152
212
  */
153
- static getJoinInformation<ThrowOnError extends boolean = false>(options: Options<GetJoinInformationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Cluster, unknown, ThrowOnError>;
154
- }
155
- export declare class InfrastructureService {
156
- /**
157
- * Search infrastructure catalog.
158
- * 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:
159
- *
160
- * `GET /infrastructure?accelerator_name=A100&region=northamerica`
161
- *
162
- * 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.
163
- *
164
- * **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.
165
- *
166
- * For full documentation of the infrastructure catalog, see [Cloud providers and instance types](https://cloudfleet.ai/docs/cloud-infrastructure/) section of the documentation.
167
- *
168
- */
169
- static getInfrastructure<ThrowOnError extends boolean = false>(options?: Options<GetInfrastructureData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").InfrastructureInstance[], Blob | File, ThrowOnError>;
170
- /**
171
- * Infrastructure catalog facets.
172
- * This endpoint returns calculated search facets from the infrastructure catalog.
173
- *
174
- */
175
- static getFacets<ThrowOnError extends boolean = false>(options?: Options<GetFacetsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
176
- provider?: Array<string>;
177
- region?: Array<string>;
178
- sub_region?: Array<string>;
179
- csp_region?: Array<string>;
180
- vcpu_min?: number;
181
- vcpu_max?: number;
182
- memory_min?: number;
183
- memory_max?: number;
184
- storage_local_min?: number;
185
- storage_local_max?: number;
186
- accelerator_name?: Array<string>;
187
- accelerator_manufacturer?: Array<string>;
188
- accelerator_count_min?: number;
189
- accelerator_count_max?: number;
190
- accelerator_memory_min?: number;
191
- accelerator_memory_max?: number;
192
- price_min?: number;
193
- price_max?: number;
194
- regions_struct?: Array<{
195
- region?: string;
196
- sub_region?: Array<string>;
197
- }>;
198
- accelerators_struct?: Array<{
199
- accelerator_manufacturer?: string;
200
- accelerator_name?: Array<string>;
201
- }>;
202
- count_total?: number;
203
- count_accelerators?: number;
204
- count_instance_types?: number;
205
- count_accelerators_instance_types?: number;
206
- }[], unknown, ThrowOnError>;
207
- /**
208
- * Available Cloudfleet regions and Kubernetes versions.
209
- * Available Cloudfleet regions and Kubernetes versions.
210
- *
211
- */
212
- static getRegions<ThrowOnError extends boolean = false>(options?: Options<GetRegionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
213
- [key: string]: unknown;
214
- }, unknown, ThrowOnError>;
213
+ static getJoinInformation<ThrowOnError extends boolean = false>(options: Options<GetJoinInformationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetJoinInformationResponses, GetJoinInformationErrors, ThrowOnError, "fields">;
215
214
  }
216
215
  export declare class InvitesService {
217
216
  /**
@@ -219,25 +218,43 @@ export declare class InvitesService {
219
218
  * Returns a list of invites under the current organization. This endpoint is available to all users in the organization.
220
219
  *
221
220
  */
222
- 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">;
223
222
  /**
224
223
  * Create a new invite.
225
- * 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.
226
225
  *
227
226
  */
228
- 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">;
229
228
  /**
230
229
  * Get invite information.
231
230
  * Returns invite details.
232
231
  *
233
232
  */
234
- 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">;
235
234
  /**
236
235
  * Permanently delete invite.
237
236
  * Permanently deletes invite from the organization. This endpoint is available to administrators of the organization only.
238
237
  *
239
238
  */
240
- 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">;
240
+ }
241
+ export declare class ChartsMarketplaceService {
242
+ /**
243
+ * List chart listings available in the marketplace.
244
+ * Returns a list of available charts in the marketplace.
245
+ *
246
+ * This endpoint is available to all users in the organization.
247
+ *
248
+ */
249
+ static listMarketplaceCharts<ThrowOnError extends boolean = false>(options?: Options<ListMarketplaceChartsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListMarketplaceChartsResponses, ListMarketplaceChartsErrors, ThrowOnError, "fields">;
250
+ /**
251
+ * Get chart listing details.
252
+ * Returns details of the chart listing.
253
+ *
254
+ * This endpoint is available to all users in the organization.
255
+ *
256
+ */
257
+ static getMarketplaceChart<ThrowOnError extends boolean = false>(options: Options<GetMarketplaceChartData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetMarketplaceChartResponses, unknown, ThrowOnError, "fields">;
241
258
  }
242
259
  export declare class OrganizationService {
243
260
  /**
@@ -247,13 +264,13 @@ export declare class OrganizationService {
247
264
  * This endpoint is available to all users in the organization.
248
265
  *
249
266
  */
250
- static getOrganization<ThrowOnError extends boolean = false>(options?: Options<GetOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").Organization, unknown, ThrowOnError>;
267
+ static getOrganization<ThrowOnError extends boolean = false>(options?: Options<GetOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<GetOrganizationResponses, unknown, ThrowOnError, "fields">;
251
268
  /**
252
269
  * Create a new organization / Cloudfleet account signup.
253
- * 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.
270
+ * This endpoint allows you to create a new Cloudfleet organization and an administrator user.
254
271
  *
255
272
  */
256
- static createOrganization<ThrowOnError extends boolean = false>(options: Options<CreateOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<unknown, unknown, ThrowOnError>;
273
+ static createOrganization<ThrowOnError extends boolean = false>(options: Options<CreateOrganizationData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<CreateOrganizationResponses, unknown, ThrowOnError, "fields">;
257
274
  }
258
275
  export declare class TokensService {
259
276
  /**
@@ -261,7 +278,7 @@ export declare class TokensService {
261
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.
262
279
  *
263
280
  */
264
- 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">;
265
282
  /**
266
283
  * Create a new access token.
267
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.
@@ -269,19 +286,19 @@ export declare class TokensService {
269
286
  * This endpoint is available to administrators of the organization only.
270
287
  *
271
288
  */
272
- 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">;
273
290
  /**
274
291
  * Permanently delete access token.
275
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.
276
293
  *
277
294
  */
278
- 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">;
279
296
  /**
280
297
  * Get access token information.
281
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.
282
299
  *
283
300
  */
284
- 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">;
285
302
  /**
286
303
  * Update access token information.
287
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.
@@ -289,66 +306,51 @@ export declare class TokensService {
289
306
  * This endpoint is available to administrators of the organization only.
290
307
  *
291
308
  */
292
- 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">;
293
310
  /**
294
311
  * Regenerate access token secret key.
295
312
  * Generates a new access token secret. Old secret will not be valid anymore.
296
313
  */
297
- 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">;
298
315
  }
299
316
  export declare class UsersService {
300
317
  /**
301
318
  * Get a list of organizations the user belongs to. Used during authentication process.
302
319
  */
303
- static listUserOrganizations<ThrowOnError extends boolean = false>(options: Options<ListUserOrganizationsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<{
304
- realm?: string;
305
- displayName?: string;
306
- }[], unknown, ThrowOnError>;
320
+ static listUserOrganizations<ThrowOnError extends boolean = false>(options: Options<ListUserOrganizationsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<ListUserOrganizationsResponses, unknown, ThrowOnError, "fields">;
307
321
  /**
308
322
  * List users in organization.
309
- * 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.
310
324
  *
311
325
  * This endpoint is available to all users in the organization.
312
326
  *
313
327
  */
314
- 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">;
315
329
  /**
316
330
  * Create a new user.
317
- * 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.
318
332
  *
319
333
  */
320
- 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">;
321
335
  /**
322
336
  * Delete user by id.
323
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.
324
338
  *
325
339
  */
326
- 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">;
327
341
  /**
328
342
  * Get user profile information by id.
329
- * 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.
330
344
  *
331
345
  * This endpoint is available to all users in the organization.
332
346
  *
333
347
  */
334
- 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">;
335
349
  /**
336
350
  * Update user profile information.
337
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.
338
352
  *
339
353
  */
340
- static updateUser<ThrowOnError extends boolean = false>(options: Options<UpdateUserData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
341
- /**
342
- * Remove user from cluster.
343
- * 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.
344
- *
345
- */
346
- static deleteClusterPermissions<ThrowOnError extends boolean = false>(options: Options<DeleteClusterPermissionsData, ThrowOnError>): import("@hey-api/client-fetch").RequestResult<import("./types.gen").User, unknown, ThrowOnError>;
347
- /**
348
- * Add user to cluster and set permissions.
349
- * Add user to the cluster and set / update access permissions. This endpoint is available to administrators of the organization only.
350
- *
351
- */
352
- 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">;
353
355
  }
354
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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"}