@cloudfleet/sdk 0.0.1-7d8c04e → 0.0.1-830b4e3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/client.d.ts +3 -0
- package/dist/client/client.d.ts.map +1 -0
- package/dist/client/client.js +144 -0
- package/dist/client/client.js.map +1 -0
- package/dist/client/index.d.ts +8 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +5 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.d.ts +120 -0
- package/dist/client/types.d.ts.map +1 -0
- package/dist/client/types.js +2 -0
- package/dist/client/types.js.map +1 -0
- package/dist/client/utils.d.ts +46 -0
- package/dist/client/utils.d.ts.map +1 -0
- package/dist/client/utils.js +285 -0
- package/dist/client/utils.js.map +1 -0
- package/dist/client.gen.d.ts +13 -0
- package/dist/client.gen.d.ts.map +1 -0
- package/dist/client.gen.js +6 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/core/auth.d.ts +19 -0
- package/dist/core/auth.d.ts.map +1 -0
- package/dist/core/auth.js +14 -0
- package/dist/core/auth.js.map +1 -0
- package/dist/core/bodySerializer.d.ts +18 -0
- package/dist/core/bodySerializer.d.ts.map +1 -0
- package/dist/core/bodySerializer.js +54 -0
- package/dist/core/bodySerializer.js.map +1 -0
- package/dist/core/params.d.ts +24 -0
- package/dist/core/params.d.ts.map +1 -0
- package/dist/core/params.js +88 -0
- package/dist/core/params.js.map +1 -0
- package/dist/core/pathSerializer.d.ts +34 -0
- package/dist/core/pathSerializer.d.ts.map +1 -0
- package/dist/core/pathSerializer.js +114 -0
- package/dist/core/pathSerializer.js.map +1 -0
- package/dist/core/types.d.ts +74 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +2 -0
- package/dist/core/types.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +494 -668
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +498 -668
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +146 -140
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +213 -147
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +196 -0
- package/dist/services/kubernetes/api.d.ts.map +1 -0
- package/dist/services/kubernetes/api.js +140 -0
- package/dist/services/kubernetes/api.js.map +1 -0
- package/dist/services/kubernetes/index.d.ts +44 -0
- package/dist/services/kubernetes/index.d.ts.map +1 -0
- package/dist/services/kubernetes/index.js +68 -0
- package/dist/services/kubernetes/index.js.map +1 -0
- package/dist/services/kubernetes/types.d.ts +1335 -0
- package/dist/services/kubernetes/types.d.ts.map +1 -0
- package/dist/services/kubernetes/types.js +2 -0
- package/dist/services/kubernetes/types.js.map +1 -0
- package/dist/types.gen.d.ts +510 -747
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2368 -1415
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +745 -210
- package/dist/zod.gen.js.map +1 -1
- package/package.json +8 -5
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,16 +1,182 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type BillingContact = {
|
|
2
2
|
/**
|
|
3
|
-
* Name of the
|
|
3
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
4
|
+
*/
|
|
5
|
+
company?: string;
|
|
6
|
+
/**
|
|
7
|
+
* Street address, P.O. box, c/o
|
|
8
|
+
*/
|
|
9
|
+
address1?: string;
|
|
10
|
+
/**
|
|
11
|
+
* Apartment, suite, unit, building, floor, etc.
|
|
12
|
+
*/
|
|
13
|
+
address2?: string;
|
|
14
|
+
/**
|
|
15
|
+
* Postal code as a string.
|
|
16
|
+
*/
|
|
17
|
+
postalCode?: string;
|
|
18
|
+
/**
|
|
19
|
+
* City or town name.
|
|
20
|
+
*/
|
|
21
|
+
city?: string;
|
|
22
|
+
/**
|
|
23
|
+
* State, province, or region name.
|
|
24
|
+
*/
|
|
25
|
+
state?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Country as a ISO 3166-1 alpha-2 country code.
|
|
28
|
+
*/
|
|
29
|
+
country?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Phone number as a string.
|
|
32
|
+
*/
|
|
33
|
+
phone?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Email address used for billing as a string.
|
|
36
|
+
*/
|
|
37
|
+
email: string;
|
|
38
|
+
/**
|
|
39
|
+
* First name of the billing contact person.
|
|
40
|
+
*/
|
|
41
|
+
first_name: string;
|
|
42
|
+
/**
|
|
43
|
+
* Last name of the billing contact person.
|
|
44
|
+
*/
|
|
45
|
+
last_name: string;
|
|
46
|
+
/**
|
|
47
|
+
* Tax ID of the organization.
|
|
48
|
+
*/
|
|
49
|
+
tax_id?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Type of the tax ID.
|
|
52
|
+
*/
|
|
53
|
+
tax_id_type?: 'ad_nrt' | 'ae_trn' | 'al_tin' | 'am_tin' | 'ao_tin' | 'ar_cuit' | 'at_vat' | 'au_abn' | 'au_arn' | 'ba_tin' | 'bb_tin' | 'be_vat' | 'bg_uic' | 'bg_vat' | 'bh_vat' | 'bo_tin' | 'br_cnpj' | 'br_cpf' | 'bs_tin' | 'by_tin' | 'ca_bn' | 'ca_gst_hst' | 'ca_pst_bc' | 'ca_pst_mb' | 'ca_pst_sk' | 'ca_qst' | 'cd_nif' | 'ch_uid' | 'ch_vat' | 'cl_tin' | 'cn_tin' | 'co_nit' | 'cr_tin' | 'cy_vat' | 'cz_vat' | 'de_stn' | 'de_vat' | 'dk_vat' | 'do_rcn' | 'ec_ruc' | 'ee_vat' | 'eg_tin' | 'es_cif' | 'es_vat' | 'eu_oss_vat' | 'fi_vat' | 'fr_vat' | 'gb_vat' | 'ge_vat' | 'gn_nif' | 'gr_vat' | 'hk_br' | 'hr_oib' | 'hr_vat' | 'hu_tin' | 'hu_vat' | 'id_npwp' | 'ie_vat' | 'il_vat' | 'in_gst' | 'is_vat' | 'it_vat' | 'jp_cn' | 'jp_rn' | 'jp_trn' | 'ke_pin' | 'kh_tin' | 'kr_brn' | 'kz_bin' | 'li_uid' | 'li_vat' | 'lt_vat' | 'lu_vat' | 'lv_vat' | 'ma_vat' | 'md_vat' | 'me_pib' | 'mk_vat' | 'mr_nif' | 'mt_vat' | 'mx_rfc' | 'my_frp' | 'my_itn' | 'my_sst' | 'ng_tin' | 'nl_vat' | 'no_vat' | 'no_voec' | 'np_pan' | 'nz_gst' | 'om_vat' | 'pe_ruc' | 'ph_tin' | 'pl_vat' | 'pt_vat' | 'ro_tin' | 'ro_vat' | 'rs_pib' | 'ru_inn' | 'ru_kpp' | 'sa_vat' | 'se_vat' | 'sg_gst' | 'sg_uen' | 'si_tin' | 'si_vat' | 'sk_vat' | 'sn_ninea' | 'sr_fin' | 'sv_nit' | 'th_vat' | 'tj_tin' | 'tr_tin' | 'tw_vat' | 'tz_vat' | 'ua_vat' | 'ug_tin' | 'us_ein' | 'uy_ruc' | 'uz_tin' | 'uz_vat' | 've_rif' | 'vn_tin' | 'xi_vat' | 'za_vat' | 'zm_tin' | 'zw_tin' | '';
|
|
54
|
+
};
|
|
55
|
+
export type BillingCredits = {
|
|
56
|
+
/**
|
|
57
|
+
* Generated unique identifier of the promotional code.
|
|
58
|
+
*/
|
|
59
|
+
id?: string;
|
|
60
|
+
/**
|
|
61
|
+
* Date of the credit application. ISO 8601 date string in the UTC timezone.
|
|
62
|
+
*/
|
|
63
|
+
date_created: string;
|
|
64
|
+
/**
|
|
65
|
+
* Promotional code used by the customer.
|
|
66
|
+
*/
|
|
67
|
+
code: string;
|
|
68
|
+
/**
|
|
69
|
+
* Description of the promotional code.
|
|
70
|
+
*/
|
|
71
|
+
description?: string;
|
|
72
|
+
/**
|
|
73
|
+
* List of product SKUs that the promotional code can be used on.
|
|
74
|
+
*/
|
|
75
|
+
products?: Array<string>;
|
|
76
|
+
/**
|
|
77
|
+
* Type of the promotional code.
|
|
78
|
+
*/
|
|
79
|
+
type: 'credit' | 'discount';
|
|
80
|
+
/**
|
|
81
|
+
* Value of the promotional code.
|
|
82
|
+
*/
|
|
83
|
+
value: number;
|
|
84
|
+
/**
|
|
85
|
+
* Date of the billing cycle. An ISO 8601 date string in the UTC timezone.
|
|
86
|
+
*/
|
|
87
|
+
billing_period: string;
|
|
88
|
+
/**
|
|
89
|
+
* Value of the promotional code.
|
|
90
|
+
*/
|
|
91
|
+
value_remaining?: number;
|
|
92
|
+
};
|
|
93
|
+
export type ChartCreateInput = {
|
|
94
|
+
/**
|
|
95
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
96
|
+
*/
|
|
97
|
+
values: string;
|
|
98
|
+
/**
|
|
99
|
+
* Desired version range or channel for the chart.
|
|
100
|
+
*/
|
|
101
|
+
version_channel: string;
|
|
102
|
+
/**
|
|
103
|
+
* Unique identifier of the chart deployment aka name of the helm release.
|
|
4
104
|
*/
|
|
5
105
|
name: string;
|
|
6
106
|
/**
|
|
7
|
-
*
|
|
107
|
+
* Namespace of the chart deployment
|
|
108
|
+
*/
|
|
109
|
+
namespace: string;
|
|
110
|
+
/**
|
|
111
|
+
* Name of the chart listing
|
|
112
|
+
*/
|
|
113
|
+
chart: string;
|
|
114
|
+
};
|
|
115
|
+
export type Chart = {
|
|
116
|
+
/**
|
|
117
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
118
|
+
*/
|
|
119
|
+
values: string;
|
|
120
|
+
/**
|
|
121
|
+
* Desired version range or channel for the chart.
|
|
122
|
+
*/
|
|
123
|
+
version_channel: string;
|
|
124
|
+
/**
|
|
125
|
+
* Unique identifier of the chart deployment aka name of the helm release.
|
|
126
|
+
*/
|
|
127
|
+
name: string;
|
|
128
|
+
/**
|
|
129
|
+
* Namespace of the chart deployment
|
|
130
|
+
*/
|
|
131
|
+
namespace: string;
|
|
132
|
+
/**
|
|
133
|
+
* Name of the chart listing
|
|
134
|
+
*/
|
|
135
|
+
chart: string;
|
|
136
|
+
/**
|
|
137
|
+
* Status of the chart deployment.
|
|
138
|
+
*/
|
|
139
|
+
status: 'InstallSucceeded' | 'InstallFailed' | 'UpgradeSucceeded' | 'UpgradeFailed' | 'TestSucceeded' | 'TestFailed' | 'RollbackSucceeded' | 'RollbackFailed' | 'UninstallSucceeded' | 'UninstallFailed' | 'ArtifactFailed' | 'DependencyNotReady' | 'Progressing' | 'SourceNotReady';
|
|
140
|
+
/**
|
|
141
|
+
* Current version of the chart deployment.
|
|
8
142
|
*/
|
|
9
|
-
|
|
143
|
+
version_current: string;
|
|
144
|
+
/**
|
|
145
|
+
* Creation date and time of the chart deployment.
|
|
146
|
+
*/
|
|
147
|
+
created_at: string;
|
|
148
|
+
/**
|
|
149
|
+
* Last update date and time of the chart deployment.
|
|
150
|
+
*/
|
|
151
|
+
updated_at: string;
|
|
152
|
+
/**
|
|
153
|
+
* Indicates if the chart deployment is ready to be used.
|
|
154
|
+
*/
|
|
155
|
+
ready: boolean;
|
|
156
|
+
};
|
|
157
|
+
export type ChartUpdateInput = {
|
|
158
|
+
/**
|
|
159
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
160
|
+
*/
|
|
161
|
+
values: string;
|
|
162
|
+
/**
|
|
163
|
+
* Desired version range or channel for the chart.
|
|
164
|
+
*/
|
|
165
|
+
version_channel: string;
|
|
166
|
+
};
|
|
167
|
+
export type ClusterCreateInput = {
|
|
168
|
+
/**
|
|
169
|
+
* Name of the cluster.
|
|
170
|
+
*/
|
|
171
|
+
name: string;
|
|
10
172
|
/**
|
|
11
173
|
* Tier of the cluster.
|
|
12
174
|
*/
|
|
13
175
|
tier: 'basic' | 'pro';
|
|
176
|
+
/**
|
|
177
|
+
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a". This field can not be updated after creation.
|
|
178
|
+
*/
|
|
179
|
+
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a';
|
|
14
180
|
/**
|
|
15
181
|
* Version of the kubernetes cluster.
|
|
16
182
|
*/
|
|
@@ -49,6 +215,10 @@ export type ClusterJoinInformation = {
|
|
|
49
215
|
* Containerd version of the cluster.
|
|
50
216
|
*/
|
|
51
217
|
containerd: string;
|
|
218
|
+
/**
|
|
219
|
+
* NVIDIA driver version of the cluster.
|
|
220
|
+
*/
|
|
221
|
+
nvidia_driver: string;
|
|
52
222
|
};
|
|
53
223
|
/**
|
|
54
224
|
* OIDC Information for hosts to access to third party API's.
|
|
@@ -73,14 +243,14 @@ export type Cluster = {
|
|
|
73
243
|
* Name of the cluster.
|
|
74
244
|
*/
|
|
75
245
|
name: string;
|
|
76
|
-
/**
|
|
77
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
|
|
78
|
-
*/
|
|
79
|
-
region?: 'staging' | 'northamerica-central-1';
|
|
80
246
|
/**
|
|
81
247
|
* Tier of the cluster.
|
|
82
248
|
*/
|
|
83
249
|
tier: 'basic' | 'pro';
|
|
250
|
+
/**
|
|
251
|
+
* Cloudfleet control plane region. One of "staging", "northamerica-central-1", "europe-central-1a". This field can not be updated after creation.
|
|
252
|
+
*/
|
|
253
|
+
region?: 'staging' | 'northamerica-central-1' | 'europe-central-1a';
|
|
84
254
|
/**
|
|
85
255
|
* Version of the kubernetes cluster.
|
|
86
256
|
*/
|
|
@@ -120,6 +290,10 @@ export type ClusterUpdateInput = {
|
|
|
120
290
|
* Name of the cluster.
|
|
121
291
|
*/
|
|
122
292
|
name?: string;
|
|
293
|
+
/**
|
|
294
|
+
* Tier of the cluster.
|
|
295
|
+
*/
|
|
296
|
+
tier: 'basic' | 'pro';
|
|
123
297
|
/**
|
|
124
298
|
* Version of the kubernetes cluster.
|
|
125
299
|
*/
|
|
@@ -144,10 +318,10 @@ export type FleetCreateInput = {
|
|
|
144
318
|
};
|
|
145
319
|
hetzner?: {
|
|
146
320
|
enabled?: boolean;
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
321
|
+
/**
|
|
322
|
+
* Hetzner Cloud API key with read / write access
|
|
323
|
+
*/
|
|
324
|
+
apiKey: string;
|
|
151
325
|
};
|
|
152
326
|
aws?: {
|
|
153
327
|
enabled?: boolean;
|
|
@@ -160,10 +334,6 @@ export type FleetCreateInput = {
|
|
|
160
334
|
* Unique identifier of the kubernetes fleet.
|
|
161
335
|
*/
|
|
162
336
|
id: string;
|
|
163
|
-
/**
|
|
164
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
165
|
-
*/
|
|
166
|
-
type: 'managed' | 'connected';
|
|
167
337
|
};
|
|
168
338
|
export type Fleet = {
|
|
169
339
|
/**
|
|
@@ -184,10 +354,10 @@ export type Fleet = {
|
|
|
184
354
|
};
|
|
185
355
|
hetzner?: {
|
|
186
356
|
enabled?: boolean;
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
357
|
+
/**
|
|
358
|
+
* Hetzner Cloud API key with read / write access
|
|
359
|
+
*/
|
|
360
|
+
apiKey: string;
|
|
191
361
|
};
|
|
192
362
|
aws?: {
|
|
193
363
|
enabled?: boolean;
|
|
@@ -200,10 +370,6 @@ export type Fleet = {
|
|
|
200
370
|
* Unique identifier of the kubernetes fleet.
|
|
201
371
|
*/
|
|
202
372
|
id: string;
|
|
203
|
-
/**
|
|
204
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
205
|
-
*/
|
|
206
|
-
type: 'managed' | 'connected';
|
|
207
373
|
};
|
|
208
374
|
export type FleetUpdateInput = {
|
|
209
375
|
/**
|
|
@@ -224,10 +390,10 @@ export type FleetUpdateInput = {
|
|
|
224
390
|
};
|
|
225
391
|
hetzner?: {
|
|
226
392
|
enabled?: boolean;
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
393
|
+
/**
|
|
394
|
+
* Hetzner Cloud API key with read / write access
|
|
395
|
+
*/
|
|
396
|
+
apiKey: string;
|
|
231
397
|
};
|
|
232
398
|
aws?: {
|
|
233
399
|
enabled?: boolean;
|
|
@@ -237,178 +403,6 @@ export type FleetUpdateInput = {
|
|
|
237
403
|
controllerRoleArn: string;
|
|
238
404
|
};
|
|
239
405
|
};
|
|
240
|
-
export type InfrastructureFilter = {
|
|
241
|
-
/**
|
|
242
|
-
* Version of the infrastructure filter definition. Currently only version 1 is supported.
|
|
243
|
-
*/
|
|
244
|
-
version?: 1;
|
|
245
|
-
/**
|
|
246
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
247
|
-
*/
|
|
248
|
-
provider?: Array<string>;
|
|
249
|
-
/**
|
|
250
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
251
|
-
*/
|
|
252
|
-
region?: Array<string>;
|
|
253
|
-
/**
|
|
254
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
255
|
-
*/
|
|
256
|
-
sub_region?: Array<string>;
|
|
257
|
-
/**
|
|
258
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
259
|
-
*/
|
|
260
|
-
csp_region?: Array<string>;
|
|
261
|
-
/**
|
|
262
|
-
* Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
|
|
263
|
-
*/
|
|
264
|
-
instance_type?: Array<string>;
|
|
265
|
-
/**
|
|
266
|
-
* List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
|
|
267
|
-
*/
|
|
268
|
-
accelerator_name?: Array<string>;
|
|
269
|
-
/**
|
|
270
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
271
|
-
*/
|
|
272
|
-
accelerator_manufacturer?: Array<string>;
|
|
273
|
-
/**
|
|
274
|
-
* Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
275
|
-
*/
|
|
276
|
-
accelerator_count_min?: number;
|
|
277
|
-
/**
|
|
278
|
-
* Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
279
|
-
*/
|
|
280
|
-
accelerator_count_max?: number;
|
|
281
|
-
/**
|
|
282
|
-
* Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
283
|
-
*/
|
|
284
|
-
accelerator_memory_min?: number;
|
|
285
|
-
/**
|
|
286
|
-
* Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
287
|
-
*/
|
|
288
|
-
accelerator_memory_max?: number;
|
|
289
|
-
/**
|
|
290
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
291
|
-
*/
|
|
292
|
-
memory_min?: number;
|
|
293
|
-
/**
|
|
294
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
295
|
-
*/
|
|
296
|
-
memory_max?: number;
|
|
297
|
-
/**
|
|
298
|
-
* Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
299
|
-
*/
|
|
300
|
-
vcpu_min?: number;
|
|
301
|
-
/**
|
|
302
|
-
* Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
303
|
-
*/
|
|
304
|
-
vcpu_max?: number;
|
|
305
|
-
/**
|
|
306
|
-
* Minimum total storage in GiB (attached and local)
|
|
307
|
-
*/
|
|
308
|
-
storage_total_min?: number;
|
|
309
|
-
/**
|
|
310
|
-
* Maximum total storage in GiB (attached and local)
|
|
311
|
-
*/
|
|
312
|
-
storage_total_max?: number;
|
|
313
|
-
/**
|
|
314
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
315
|
-
*/
|
|
316
|
-
storage_local_min?: number;
|
|
317
|
-
/**
|
|
318
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
319
|
-
*/
|
|
320
|
-
storage_local_max?: number;
|
|
321
|
-
/**
|
|
322
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
323
|
-
*/
|
|
324
|
-
price_min?: number;
|
|
325
|
-
/**
|
|
326
|
-
* Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
327
|
-
*/
|
|
328
|
-
price_max?: number;
|
|
329
|
-
};
|
|
330
|
-
export type InfrastructureInstance = {
|
|
331
|
-
/**
|
|
332
|
-
* Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.
|
|
333
|
-
*/
|
|
334
|
-
sku: string;
|
|
335
|
-
/**
|
|
336
|
-
* Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
337
|
-
*/
|
|
338
|
-
provider: string;
|
|
339
|
-
/**
|
|
340
|
-
* Normalized region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
341
|
-
*/
|
|
342
|
-
region: string;
|
|
343
|
-
/**
|
|
344
|
-
* Normalized sub-region. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
345
|
-
*/
|
|
346
|
-
sub_region: string;
|
|
347
|
-
/**
|
|
348
|
-
* Region as defined by the cloud service provider
|
|
349
|
-
*/
|
|
350
|
-
csp_region: string;
|
|
351
|
-
/**
|
|
352
|
-
* Availability zone as defined by the cloud service provider
|
|
353
|
-
*/
|
|
354
|
-
csp_zone: string;
|
|
355
|
-
/**
|
|
356
|
-
* Instance / VM type as defined by the cloud service provider
|
|
357
|
-
*/
|
|
358
|
-
instance_type: string;
|
|
359
|
-
/**
|
|
360
|
-
* Instance CPU architecture
|
|
361
|
-
*/
|
|
362
|
-
architecture: string;
|
|
363
|
-
/**
|
|
364
|
-
* Instance operating system
|
|
365
|
-
*/
|
|
366
|
-
os: string;
|
|
367
|
-
/**
|
|
368
|
-
* CPU count as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
369
|
-
*/
|
|
370
|
-
vcpu: number;
|
|
371
|
-
/**
|
|
372
|
-
* Total amount of RAM in gibibytes (GiB)
|
|
373
|
-
*/
|
|
374
|
-
memory: number;
|
|
375
|
-
/**
|
|
376
|
-
* Volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
377
|
-
*/
|
|
378
|
-
local_storage: number;
|
|
379
|
-
/**
|
|
380
|
-
* Normalized model name of accelerator. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
|
|
381
|
-
*/
|
|
382
|
-
accelerator_name?: string;
|
|
383
|
-
/**
|
|
384
|
-
* Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
385
|
-
*/
|
|
386
|
-
accelerator_manufacturer?: string;
|
|
387
|
-
/**
|
|
388
|
-
* Number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
389
|
-
*/
|
|
390
|
-
accelerator_count?: number;
|
|
391
|
-
/**
|
|
392
|
-
* Ammount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
393
|
-
*/
|
|
394
|
-
accelerator_memory?: number;
|
|
395
|
-
/**
|
|
396
|
-
* Maximum number of pods that can be run on this instance type.
|
|
397
|
-
*/
|
|
398
|
-
pods_capacity?: number;
|
|
399
|
-
/**
|
|
400
|
-
* Capacity type of the instance. E.g. `on-demand`, `spot`.
|
|
401
|
-
*/
|
|
402
|
-
capacity_type?: string;
|
|
403
|
-
/**
|
|
404
|
-
* Price of running the inctance per hour in USD as defined by the cloud service provider
|
|
405
|
-
*/
|
|
406
|
-
price: number;
|
|
407
|
-
/**
|
|
408
|
-
* Whether this instance type is available.
|
|
409
|
-
*/
|
|
410
|
-
available?: boolean;
|
|
411
|
-
};
|
|
412
406
|
export type Invite = {
|
|
413
407
|
/**
|
|
414
408
|
* Unique identifier of the invitation.
|
|
@@ -663,35 +657,52 @@ export type Invoice = {
|
|
|
663
657
|
} | string>;
|
|
664
658
|
}>;
|
|
665
659
|
};
|
|
666
|
-
export type
|
|
660
|
+
export type MarketplaceListing = {
|
|
667
661
|
/**
|
|
668
|
-
*
|
|
662
|
+
* Id of the chart listing
|
|
669
663
|
*/
|
|
670
|
-
|
|
664
|
+
id: string;
|
|
671
665
|
/**
|
|
672
|
-
*
|
|
666
|
+
* Name of the chart listing
|
|
673
667
|
*/
|
|
674
|
-
|
|
668
|
+
name: string;
|
|
675
669
|
/**
|
|
676
|
-
*
|
|
670
|
+
* Author of the chart listing
|
|
677
671
|
*/
|
|
678
|
-
|
|
672
|
+
developer: string;
|
|
679
673
|
/**
|
|
680
|
-
*
|
|
674
|
+
* Short description of the chart listing
|
|
681
675
|
*/
|
|
682
|
-
|
|
676
|
+
description: string;
|
|
683
677
|
/**
|
|
684
|
-
*
|
|
678
|
+
* Logo of the chart listing
|
|
685
679
|
*/
|
|
686
|
-
|
|
680
|
+
logoUrl: string;
|
|
687
681
|
/**
|
|
688
|
-
*
|
|
682
|
+
* Long description of the chart listing
|
|
689
683
|
*/
|
|
690
|
-
|
|
684
|
+
longDescription: string;
|
|
691
685
|
/**
|
|
692
|
-
*
|
|
686
|
+
* Tags of the chart
|
|
693
687
|
*/
|
|
694
|
-
|
|
688
|
+
categories: Array<string>;
|
|
689
|
+
version_channels: Array<string>;
|
|
690
|
+
value_schemas: Array<{
|
|
691
|
+
/**
|
|
692
|
+
* Version of the chart.
|
|
693
|
+
*/
|
|
694
|
+
version: string;
|
|
695
|
+
/**
|
|
696
|
+
* Schema of the chart values. JSON Schema as string
|
|
697
|
+
*/
|
|
698
|
+
schema: string;
|
|
699
|
+
/**
|
|
700
|
+
* Schema of the chart values
|
|
701
|
+
*/
|
|
702
|
+
placeholder: string;
|
|
703
|
+
}>;
|
|
704
|
+
};
|
|
705
|
+
export type OrganizationCreateInput = {
|
|
695
706
|
/**
|
|
696
707
|
* Email address used for billing as a string.
|
|
697
708
|
*/
|
|
@@ -704,116 +715,24 @@ export type OrganizationContactInfo = {
|
|
|
704
715
|
* Last name of the billing contact person.
|
|
705
716
|
*/
|
|
706
717
|
last_name: string;
|
|
707
|
-
};
|
|
708
|
-
export type OrganizationCreateInput = {
|
|
709
718
|
/**
|
|
710
719
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
711
720
|
*/
|
|
712
|
-
|
|
713
|
-
/**
|
|
714
|
-
* Organization contact information and billing address.
|
|
715
|
-
*/
|
|
716
|
-
contactInfo: {
|
|
717
|
-
/**
|
|
718
|
-
* Street address, P.O. box, c/o
|
|
719
|
-
*/
|
|
720
|
-
address1?: string;
|
|
721
|
-
/**
|
|
722
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
723
|
-
*/
|
|
724
|
-
address2?: string;
|
|
725
|
-
/**
|
|
726
|
-
* Postal code as a string.
|
|
727
|
-
*/
|
|
728
|
-
postalCode?: string;
|
|
729
|
-
/**
|
|
730
|
-
* City or town name.
|
|
731
|
-
*/
|
|
732
|
-
city?: string;
|
|
733
|
-
/**
|
|
734
|
-
* State, province, or region name.
|
|
735
|
-
*/
|
|
736
|
-
state?: string;
|
|
737
|
-
/**
|
|
738
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
739
|
-
*/
|
|
740
|
-
country?: string;
|
|
741
|
-
/**
|
|
742
|
-
* Phone number as a string.
|
|
743
|
-
*/
|
|
744
|
-
phone?: string;
|
|
745
|
-
/**
|
|
746
|
-
* Email address used for billing as a string.
|
|
747
|
-
*/
|
|
748
|
-
email: string;
|
|
749
|
-
/**
|
|
750
|
-
* First name of the billing contact person.
|
|
751
|
-
*/
|
|
752
|
-
first_name: string;
|
|
753
|
-
/**
|
|
754
|
-
* Last name of the billing contact person.
|
|
755
|
-
*/
|
|
756
|
-
last_name: string;
|
|
757
|
-
};
|
|
721
|
+
company_name: string;
|
|
758
722
|
/**
|
|
759
723
|
* Password for the root account. Must be at least 8 characters long and contain at least one uppercase letter, one lowercase letter, one number and one special character.
|
|
760
724
|
*/
|
|
761
725
|
password: string;
|
|
762
726
|
};
|
|
763
727
|
export type Organization = {
|
|
764
|
-
/**
|
|
765
|
-
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
766
|
-
*/
|
|
767
|
-
name: string;
|
|
768
|
-
/**
|
|
769
|
-
* Organization contact information and billing address.
|
|
770
|
-
*/
|
|
771
|
-
contactInfo: {
|
|
772
|
-
/**
|
|
773
|
-
* Street address, P.O. box, c/o
|
|
774
|
-
*/
|
|
775
|
-
address1?: string;
|
|
776
|
-
/**
|
|
777
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
778
|
-
*/
|
|
779
|
-
address2?: string;
|
|
780
|
-
/**
|
|
781
|
-
* Postal code as a string.
|
|
782
|
-
*/
|
|
783
|
-
postalCode?: string;
|
|
784
|
-
/**
|
|
785
|
-
* City or town name.
|
|
786
|
-
*/
|
|
787
|
-
city?: string;
|
|
788
|
-
/**
|
|
789
|
-
* State, province, or region name.
|
|
790
|
-
*/
|
|
791
|
-
state?: string;
|
|
792
|
-
/**
|
|
793
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
794
|
-
*/
|
|
795
|
-
country?: string;
|
|
796
|
-
/**
|
|
797
|
-
* Phone number as a string.
|
|
798
|
-
*/
|
|
799
|
-
phone?: string;
|
|
800
|
-
/**
|
|
801
|
-
* Email address used for billing as a string.
|
|
802
|
-
*/
|
|
803
|
-
email: string;
|
|
804
|
-
/**
|
|
805
|
-
* First name of the billing contact person.
|
|
806
|
-
*/
|
|
807
|
-
first_name: string;
|
|
808
|
-
/**
|
|
809
|
-
* Last name of the billing contact person.
|
|
810
|
-
*/
|
|
811
|
-
last_name: string;
|
|
812
|
-
};
|
|
813
728
|
/**
|
|
814
729
|
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
815
730
|
*/
|
|
816
731
|
id: string;
|
|
732
|
+
/**
|
|
733
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
734
|
+
*/
|
|
735
|
+
name?: string;
|
|
817
736
|
/**
|
|
818
737
|
* Creation date of the organization. ISO 8601 date string in UTC timezone
|
|
819
738
|
*/
|
|
@@ -842,10 +761,6 @@ export type Organization = {
|
|
|
842
761
|
* Maximum number of fleets that can be created per cluster.
|
|
843
762
|
*/
|
|
844
763
|
fleets_max: number;
|
|
845
|
-
/**
|
|
846
|
-
* Maximum number of CPU cores per managed fleet.
|
|
847
|
-
*/
|
|
848
|
-
managed_fleets_cpu_max: number;
|
|
849
764
|
/**
|
|
850
765
|
* List of Cloudfleet cluster tiers available for the organization.
|
|
851
766
|
*/
|
|
@@ -868,66 +783,11 @@ export type Organization = {
|
|
|
868
783
|
label: string;
|
|
869
784
|
}>;
|
|
870
785
|
};
|
|
871
|
-
/**
|
|
872
|
-
* List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.
|
|
873
|
-
*/
|
|
874
|
-
pending_actions: Array<'signup-billing-address' | 'signup-payment-method' | 'signup-invite-team' | 'signup-create-cluster'>;
|
|
875
786
|
/**
|
|
876
787
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
877
788
|
*/
|
|
878
789
|
status: 'active' | 'closed' | 'suspended';
|
|
879
790
|
};
|
|
880
|
-
export type OrganizationUpdateInput = {
|
|
881
|
-
/**
|
|
882
|
-
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
883
|
-
*/
|
|
884
|
-
name?: string;
|
|
885
|
-
/**
|
|
886
|
-
* Organization contact information and billing address.
|
|
887
|
-
*/
|
|
888
|
-
contactInfo: {
|
|
889
|
-
/**
|
|
890
|
-
* Street address, P.O. box, c/o
|
|
891
|
-
*/
|
|
892
|
-
address1?: string;
|
|
893
|
-
/**
|
|
894
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
895
|
-
*/
|
|
896
|
-
address2?: string;
|
|
897
|
-
/**
|
|
898
|
-
* Postal code as a string.
|
|
899
|
-
*/
|
|
900
|
-
postalCode?: string;
|
|
901
|
-
/**
|
|
902
|
-
* City or town name.
|
|
903
|
-
*/
|
|
904
|
-
city?: string;
|
|
905
|
-
/**
|
|
906
|
-
* State, province, or region name.
|
|
907
|
-
*/
|
|
908
|
-
state?: string;
|
|
909
|
-
/**
|
|
910
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
911
|
-
*/
|
|
912
|
-
country?: string;
|
|
913
|
-
/**
|
|
914
|
-
* Phone number as a string.
|
|
915
|
-
*/
|
|
916
|
-
phone?: string;
|
|
917
|
-
/**
|
|
918
|
-
* Email address used for billing as a string.
|
|
919
|
-
*/
|
|
920
|
-
email: string;
|
|
921
|
-
/**
|
|
922
|
-
* First name of the billing contact person.
|
|
923
|
-
*/
|
|
924
|
-
first_name: string;
|
|
925
|
-
/**
|
|
926
|
-
* Last name of the billing contact person.
|
|
927
|
-
*/
|
|
928
|
-
last_name: string;
|
|
929
|
-
};
|
|
930
|
-
};
|
|
931
791
|
export type PaymentMethod = {
|
|
932
792
|
/**
|
|
933
793
|
* Unique identifier of the organization. UUID v4 string in canonical form.
|
|
@@ -1002,18 +862,33 @@ export type TokenUpdateInput = {
|
|
|
1002
862
|
};
|
|
1003
863
|
export type Usage = {
|
|
1004
864
|
/**
|
|
1005
|
-
*
|
|
865
|
+
* Hour of the usage
|
|
1006
866
|
*/
|
|
1007
|
-
|
|
867
|
+
hour?: string;
|
|
868
|
+
/**
|
|
869
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
870
|
+
*/
|
|
871
|
+
cluster_id: string;
|
|
872
|
+
/**
|
|
873
|
+
* Tier of the cluster.
|
|
874
|
+
*/
|
|
875
|
+
cluster_tier: 'basic' | 'pro' | '';
|
|
876
|
+
/**
|
|
877
|
+
* The product the usage is associated with
|
|
878
|
+
*/
|
|
879
|
+
product: 'cfke_controlplane' | 'cfke_connected_nodes' | 'infra_compute' | 'infra_storage' | 'infra_loadbalancing' | 'infra_traffic' | 'cfcr_storage';
|
|
1008
880
|
/**
|
|
1009
|
-
*
|
|
881
|
+
* Name of the Kubernetes node
|
|
1010
882
|
*/
|
|
1011
|
-
|
|
883
|
+
node_name: string;
|
|
1012
884
|
/**
|
|
1013
|
-
*
|
|
885
|
+
* SKU of the Kubernetes node
|
|
1014
886
|
*/
|
|
1015
|
-
|
|
1016
|
-
|
|
887
|
+
sku: string;
|
|
888
|
+
cpu: number | '';
|
|
889
|
+
price: number | '';
|
|
890
|
+
value: number | '';
|
|
891
|
+
total: number | '';
|
|
1017
892
|
};
|
|
1018
893
|
export type UserCreateInput = {
|
|
1019
894
|
/**
|
|
@@ -1033,7 +908,7 @@ export type UserCreateInput = {
|
|
|
1033
908
|
*/
|
|
1034
909
|
code: string;
|
|
1035
910
|
/**
|
|
1036
|
-
* User password. Must be at least 8 characters long
|
|
911
|
+
* User password. Must be at least 8 characters long.
|
|
1037
912
|
*/
|
|
1038
913
|
password: string;
|
|
1039
914
|
/**
|
|
@@ -1074,16 +949,6 @@ export type User = {
|
|
|
1074
949
|
* Creation date of the user. ISO 8601 date string in UTC timezone
|
|
1075
950
|
*/
|
|
1076
951
|
date_created: string;
|
|
1077
|
-
cluster_permissions?: Array<{
|
|
1078
|
-
/**
|
|
1079
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1080
|
-
*/
|
|
1081
|
-
cluster_id: string;
|
|
1082
|
-
/**
|
|
1083
|
-
* User permissions to access the cluster. Can be `readwrite` or `readonly`.
|
|
1084
|
-
*/
|
|
1085
|
-
permissions: 'readwrite' | 'readonly';
|
|
1086
|
-
}>;
|
|
1087
952
|
};
|
|
1088
953
|
export type UserUpdateInput = {
|
|
1089
954
|
/**
|
|
@@ -1110,16 +975,7 @@ export type UserUpdateInput = {
|
|
|
1110
975
|
export type GetUsageData = {
|
|
1111
976
|
body?: never;
|
|
1112
977
|
path?: never;
|
|
1113
|
-
query
|
|
1114
|
-
/**
|
|
1115
|
-
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1116
|
-
*/
|
|
1117
|
-
start_date: string;
|
|
1118
|
-
/**
|
|
1119
|
-
* End date for the usage. Date of newest data point to retrieve.
|
|
1120
|
-
*/
|
|
1121
|
-
end_date: string;
|
|
1122
|
-
};
|
|
978
|
+
query?: never;
|
|
1123
979
|
url: '/billing/usage';
|
|
1124
980
|
};
|
|
1125
981
|
export type GetUsageErrors = {
|
|
@@ -1171,69 +1027,245 @@ export type GetPaymentMethodSecretData = {
|
|
|
1171
1027
|
body?: never;
|
|
1172
1028
|
path?: never;
|
|
1173
1029
|
query?: never;
|
|
1174
|
-
url: '/billing/payment-method';
|
|
1030
|
+
url: '/billing/payment-method';
|
|
1031
|
+
};
|
|
1032
|
+
export type GetPaymentMethodSecretResponses = {
|
|
1033
|
+
/**
|
|
1034
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
1035
|
+
*
|
|
1036
|
+
*/
|
|
1037
|
+
200: {
|
|
1038
|
+
/**
|
|
1039
|
+
* The client secret.
|
|
1040
|
+
*/
|
|
1041
|
+
id?: string;
|
|
1042
|
+
};
|
|
1043
|
+
};
|
|
1044
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
1045
|
+
export type ListInvoicesData = {
|
|
1046
|
+
body?: never;
|
|
1047
|
+
path?: never;
|
|
1048
|
+
query: {
|
|
1049
|
+
/**
|
|
1050
|
+
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1051
|
+
*/
|
|
1052
|
+
start_date: string;
|
|
1053
|
+
/**
|
|
1054
|
+
* End date for the usage. Date of newest data point to retrieve.
|
|
1055
|
+
*/
|
|
1056
|
+
end_date: string;
|
|
1057
|
+
};
|
|
1058
|
+
url: '/billing/invoices';
|
|
1059
|
+
};
|
|
1060
|
+
export type ListInvoicesErrors = {
|
|
1061
|
+
/**
|
|
1062
|
+
* Not authenticated
|
|
1063
|
+
*/
|
|
1064
|
+
401: unknown;
|
|
1065
|
+
};
|
|
1066
|
+
export type ListInvoicesResponses = {
|
|
1067
|
+
/**
|
|
1068
|
+
* An array of usage records.
|
|
1069
|
+
*/
|
|
1070
|
+
200: Array<Invoice>;
|
|
1071
|
+
};
|
|
1072
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
1073
|
+
export type GetInvoiceData = {
|
|
1074
|
+
body?: never;
|
|
1075
|
+
path: {
|
|
1076
|
+
/**
|
|
1077
|
+
* Unique invoice identifier. UUID v4 string in canonical form
|
|
1078
|
+
*/
|
|
1079
|
+
id: string;
|
|
1080
|
+
};
|
|
1081
|
+
query?: never;
|
|
1082
|
+
url: '/billing/invoices/{id}';
|
|
1083
|
+
};
|
|
1084
|
+
export type GetInvoiceResponses = {
|
|
1085
|
+
/**
|
|
1086
|
+
* Returns a single Invoice HTML representation under `html` property.
|
|
1087
|
+
*/
|
|
1088
|
+
200: {
|
|
1089
|
+
html?: string;
|
|
1090
|
+
};
|
|
1091
|
+
};
|
|
1092
|
+
export type GetInvoiceResponse = GetInvoiceResponses[keyof GetInvoiceResponses];
|
|
1093
|
+
export type GetContactData = {
|
|
1094
|
+
body?: never;
|
|
1095
|
+
path?: never;
|
|
1096
|
+
query?: never;
|
|
1097
|
+
url: '/billing/contact';
|
|
1098
|
+
};
|
|
1099
|
+
export type GetContactResponses = {
|
|
1100
|
+
/**
|
|
1101
|
+
* Returns a single object containing organization contact and billing address details.
|
|
1102
|
+
*/
|
|
1103
|
+
200: BillingContact;
|
|
1104
|
+
};
|
|
1105
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
1106
|
+
export type UpdateContactData = {
|
|
1107
|
+
body: BillingContact;
|
|
1108
|
+
path?: never;
|
|
1109
|
+
query?: never;
|
|
1110
|
+
url: '/billing/contact';
|
|
1111
|
+
};
|
|
1112
|
+
export type UpdateContactResponses = {
|
|
1113
|
+
/**
|
|
1114
|
+
* Successfully updated. Returns updated organization details.
|
|
1115
|
+
*/
|
|
1116
|
+
200: BillingContact;
|
|
1117
|
+
};
|
|
1118
|
+
export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
|
|
1119
|
+
export type GetCreditsData = {
|
|
1120
|
+
body?: never;
|
|
1121
|
+
path?: never;
|
|
1122
|
+
query?: never;
|
|
1123
|
+
url: '/billing/credits';
|
|
1124
|
+
};
|
|
1125
|
+
export type GetCreditsErrors = {
|
|
1126
|
+
/**
|
|
1127
|
+
* Not authenticated
|
|
1128
|
+
*/
|
|
1129
|
+
401: unknown;
|
|
1130
|
+
};
|
|
1131
|
+
export type GetCreditsResponses = {
|
|
1132
|
+
/**
|
|
1133
|
+
* An array of the applied promotional credits records.
|
|
1134
|
+
*/
|
|
1135
|
+
200: Array<BillingCredits>;
|
|
1136
|
+
};
|
|
1137
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
1138
|
+
export type RedeemCreditsData = {
|
|
1139
|
+
body: {
|
|
1140
|
+
/**
|
|
1141
|
+
* Promotional code to redeem
|
|
1142
|
+
*/
|
|
1143
|
+
code?: string;
|
|
1144
|
+
};
|
|
1145
|
+
path?: never;
|
|
1146
|
+
query?: never;
|
|
1147
|
+
url: '/billing/credits';
|
|
1148
|
+
};
|
|
1149
|
+
export type RedeemCreditsErrors = {
|
|
1150
|
+
/**
|
|
1151
|
+
* Not authenticated
|
|
1152
|
+
*/
|
|
1153
|
+
401: unknown;
|
|
1154
|
+
};
|
|
1155
|
+
export type RedeemCreditsResponses = {
|
|
1156
|
+
/**
|
|
1157
|
+
* Successfully created a new organization.
|
|
1158
|
+
*/
|
|
1159
|
+
200: unknown;
|
|
1160
|
+
};
|
|
1161
|
+
export type ListChartsData = {
|
|
1162
|
+
body?: never;
|
|
1163
|
+
path: {
|
|
1164
|
+
/**
|
|
1165
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1166
|
+
*/
|
|
1167
|
+
cluster_id: string;
|
|
1168
|
+
};
|
|
1169
|
+
query?: never;
|
|
1170
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1171
|
+
};
|
|
1172
|
+
export type ListChartsErrors = {
|
|
1173
|
+
/**
|
|
1174
|
+
* Not authenticated
|
|
1175
|
+
*/
|
|
1176
|
+
401: unknown;
|
|
1177
|
+
};
|
|
1178
|
+
export type ListChartsResponses = {
|
|
1179
|
+
/**
|
|
1180
|
+
* An array of charts
|
|
1181
|
+
*/
|
|
1182
|
+
200: Array<Chart>;
|
|
1183
|
+
};
|
|
1184
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
1185
|
+
export type CreateChartData = {
|
|
1186
|
+
body: ChartCreateInput;
|
|
1187
|
+
path: {
|
|
1188
|
+
/**
|
|
1189
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1190
|
+
*/
|
|
1191
|
+
cluster_id: string;
|
|
1192
|
+
};
|
|
1193
|
+
query?: never;
|
|
1194
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1175
1195
|
};
|
|
1176
|
-
export type
|
|
1196
|
+
export type CreateChartResponses = {
|
|
1177
1197
|
/**
|
|
1178
|
-
*
|
|
1179
|
-
*
|
|
1198
|
+
* Successfully created. Returns created Chart ID.
|
|
1180
1199
|
*/
|
|
1181
|
-
200:
|
|
1182
|
-
/**
|
|
1183
|
-
* The client secret.
|
|
1184
|
-
*/
|
|
1185
|
-
id?: string;
|
|
1186
|
-
};
|
|
1200
|
+
200: string;
|
|
1187
1201
|
};
|
|
1188
|
-
export type
|
|
1189
|
-
export type
|
|
1202
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
1203
|
+
export type DeleteChartData = {
|
|
1190
1204
|
body?: never;
|
|
1191
|
-
path
|
|
1192
|
-
query: {
|
|
1205
|
+
path: {
|
|
1193
1206
|
/**
|
|
1194
|
-
*
|
|
1207
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1195
1208
|
*/
|
|
1196
|
-
|
|
1209
|
+
cluster_id: string;
|
|
1197
1210
|
/**
|
|
1198
|
-
*
|
|
1211
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1199
1212
|
*/
|
|
1200
|
-
|
|
1213
|
+
chart_name: string;
|
|
1201
1214
|
};
|
|
1202
|
-
|
|
1215
|
+
query?: never;
|
|
1216
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1203
1217
|
};
|
|
1204
|
-
export type
|
|
1218
|
+
export type DeleteChartResponses = {
|
|
1205
1219
|
/**
|
|
1206
|
-
*
|
|
1220
|
+
* Successfully deleted.
|
|
1207
1221
|
*/
|
|
1208
|
-
|
|
1222
|
+
200: string;
|
|
1209
1223
|
};
|
|
1210
|
-
export type
|
|
1224
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
1225
|
+
export type GetChartData = {
|
|
1226
|
+
body?: never;
|
|
1227
|
+
path: {
|
|
1228
|
+
/**
|
|
1229
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1230
|
+
*/
|
|
1231
|
+
cluster_id: string;
|
|
1232
|
+
/**
|
|
1233
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1234
|
+
*/
|
|
1235
|
+
chart_name: string;
|
|
1236
|
+
};
|
|
1237
|
+
query?: never;
|
|
1238
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1239
|
+
};
|
|
1240
|
+
export type GetChartResponses = {
|
|
1211
1241
|
/**
|
|
1212
|
-
*
|
|
1242
|
+
* Returns a single object containing chart details.
|
|
1213
1243
|
*/
|
|
1214
|
-
200:
|
|
1244
|
+
200: Chart;
|
|
1215
1245
|
};
|
|
1216
|
-
export type
|
|
1217
|
-
export type
|
|
1218
|
-
body
|
|
1246
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
1247
|
+
export type UpdateChartData = {
|
|
1248
|
+
body: ChartUpdateInput;
|
|
1219
1249
|
path: {
|
|
1220
1250
|
/**
|
|
1221
|
-
* Unique
|
|
1251
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1222
1252
|
*/
|
|
1223
|
-
|
|
1253
|
+
cluster_id: string;
|
|
1254
|
+
/**
|
|
1255
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1256
|
+
*/
|
|
1257
|
+
chart_name: string;
|
|
1224
1258
|
};
|
|
1225
1259
|
query?: never;
|
|
1226
|
-
url: '/
|
|
1260
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1227
1261
|
};
|
|
1228
|
-
export type
|
|
1262
|
+
export type UpdateChartResponses = {
|
|
1229
1263
|
/**
|
|
1230
|
-
*
|
|
1264
|
+
* Successfully updated.
|
|
1231
1265
|
*/
|
|
1232
|
-
200:
|
|
1233
|
-
html?: string;
|
|
1234
|
-
};
|
|
1266
|
+
200: string;
|
|
1235
1267
|
};
|
|
1236
|
-
export type
|
|
1268
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
1237
1269
|
export type ListFleetsData = {
|
|
1238
1270
|
body?: never;
|
|
1239
1271
|
path: {
|
|
@@ -1493,255 +1525,9 @@ export type GetJoinInformationResponses = {
|
|
|
1493
1525
|
/**
|
|
1494
1526
|
* An object of cluster join information
|
|
1495
1527
|
*/
|
|
1496
|
-
200:
|
|
1528
|
+
200: ClusterJoinInformation;
|
|
1497
1529
|
};
|
|
1498
1530
|
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
1499
|
-
export type GetInfrastructureData = {
|
|
1500
|
-
body?: never;
|
|
1501
|
-
path?: never;
|
|
1502
|
-
query?: {
|
|
1503
|
-
/**
|
|
1504
|
-
* Version of the task definition. Currently only version 1 is supported.
|
|
1505
|
-
*/
|
|
1506
|
-
version?: 1;
|
|
1507
|
-
/**
|
|
1508
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
1509
|
-
*/
|
|
1510
|
-
provider?: Array<string>;
|
|
1511
|
-
/**
|
|
1512
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
1513
|
-
*/
|
|
1514
|
-
region?: Array<string>;
|
|
1515
|
-
/**
|
|
1516
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
1517
|
-
*/
|
|
1518
|
-
sub_region?: Array<string>;
|
|
1519
|
-
/**
|
|
1520
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
1521
|
-
*/
|
|
1522
|
-
csp_region?: Array<string>;
|
|
1523
|
-
/**
|
|
1524
|
-
* Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
|
|
1525
|
-
*/
|
|
1526
|
-
instance_type?: Array<string>;
|
|
1527
|
-
/**
|
|
1528
|
-
* List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
|
|
1529
|
-
*/
|
|
1530
|
-
accelerator_name?: Array<string>;
|
|
1531
|
-
/**
|
|
1532
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1533
|
-
*/
|
|
1534
|
-
accelerator_manufacturer?: Array<string>;
|
|
1535
|
-
/**
|
|
1536
|
-
* Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
1537
|
-
*/
|
|
1538
|
-
accelerator_count_min?: number;
|
|
1539
|
-
/**
|
|
1540
|
-
* Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
1541
|
-
*/
|
|
1542
|
-
accelerator_count_max?: number;
|
|
1543
|
-
/**
|
|
1544
|
-
* Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
1545
|
-
*/
|
|
1546
|
-
accelerator_memory_min?: number;
|
|
1547
|
-
/**
|
|
1548
|
-
* Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
1549
|
-
*/
|
|
1550
|
-
accelerator_memory_max?: number;
|
|
1551
|
-
/**
|
|
1552
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
1553
|
-
*/
|
|
1554
|
-
memory_min?: number;
|
|
1555
|
-
/**
|
|
1556
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
1557
|
-
*/
|
|
1558
|
-
memory_max?: number;
|
|
1559
|
-
/**
|
|
1560
|
-
* Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
1561
|
-
*/
|
|
1562
|
-
vcpu_min?: number;
|
|
1563
|
-
/**
|
|
1564
|
-
* Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
1565
|
-
*/
|
|
1566
|
-
vcpu_max?: number;
|
|
1567
|
-
/**
|
|
1568
|
-
* Minimum total storage in GiB (attached and local)
|
|
1569
|
-
*/
|
|
1570
|
-
storage_total_min?: number;
|
|
1571
|
-
/**
|
|
1572
|
-
* Maximum total storage in GiB (attached and local)
|
|
1573
|
-
*/
|
|
1574
|
-
storage_total_max?: number;
|
|
1575
|
-
/**
|
|
1576
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1577
|
-
*/
|
|
1578
|
-
storage_local_min?: number;
|
|
1579
|
-
/**
|
|
1580
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1581
|
-
*/
|
|
1582
|
-
storage_local_max?: number;
|
|
1583
|
-
/**
|
|
1584
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1585
|
-
*/
|
|
1586
|
-
price_min?: number;
|
|
1587
|
-
/**
|
|
1588
|
-
* Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1589
|
-
*/
|
|
1590
|
-
price_max?: number;
|
|
1591
|
-
};
|
|
1592
|
-
url: '/infrastructure';
|
|
1593
|
-
};
|
|
1594
|
-
export type GetInfrastructureErrors = {
|
|
1595
|
-
/**
|
|
1596
|
-
* Returns a validation error if any of the search parameters in the request are invalid
|
|
1597
|
-
*/
|
|
1598
|
-
400: Blob | File;
|
|
1599
|
-
};
|
|
1600
|
-
export type GetInfrastructureError = GetInfrastructureErrors[keyof GetInfrastructureErrors];
|
|
1601
|
-
export type GetInfrastructureResponses = {
|
|
1602
|
-
/**
|
|
1603
|
-
* An array of instances returned by the search
|
|
1604
|
-
*/
|
|
1605
|
-
200: Array<InfrastructureInstance>;
|
|
1606
|
-
};
|
|
1607
|
-
export type GetInfrastructureResponse = GetInfrastructureResponses[keyof GetInfrastructureResponses];
|
|
1608
|
-
export type GetFacetsData = {
|
|
1609
|
-
body?: never;
|
|
1610
|
-
path?: never;
|
|
1611
|
-
query?: never;
|
|
1612
|
-
url: '/infrastructure/facets';
|
|
1613
|
-
};
|
|
1614
|
-
export type GetFacetsResponses = {
|
|
1615
|
-
/**
|
|
1616
|
-
* Calculates search facets of the infrastructure catalog
|
|
1617
|
-
*/
|
|
1618
|
-
200: Array<{
|
|
1619
|
-
/**
|
|
1620
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
1621
|
-
*/
|
|
1622
|
-
provider?: Array<string>;
|
|
1623
|
-
/**
|
|
1624
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
1625
|
-
*/
|
|
1626
|
-
region?: Array<string>;
|
|
1627
|
-
/**
|
|
1628
|
-
* Limits selection of cloud sub-regions to this list of Cloudfleet sub-regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
1629
|
-
*/
|
|
1630
|
-
sub_region?: Array<string>;
|
|
1631
|
-
/**
|
|
1632
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
1633
|
-
*/
|
|
1634
|
-
csp_region?: Array<string>;
|
|
1635
|
-
/**
|
|
1636
|
-
* Minimum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
1637
|
-
*/
|
|
1638
|
-
vcpu_min?: number;
|
|
1639
|
-
/**
|
|
1640
|
-
* Maximum number of vCPUs as defined by the cloud service provider. Some cloud providers use hyperthreading, so the number of vCPUs may be twice as high as the number of physical cores.
|
|
1641
|
-
*/
|
|
1642
|
-
vcpu_max?: number;
|
|
1643
|
-
/**
|
|
1644
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
1645
|
-
*/
|
|
1646
|
-
memory_min?: number;
|
|
1647
|
-
/**
|
|
1648
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
1649
|
-
*/
|
|
1650
|
-
memory_max?: number;
|
|
1651
|
-
/**
|
|
1652
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1653
|
-
*/
|
|
1654
|
-
storage_local_min?: number;
|
|
1655
|
-
/**
|
|
1656
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1657
|
-
*/
|
|
1658
|
-
storage_local_max?: number;
|
|
1659
|
-
/**
|
|
1660
|
-
* List of Normalized accelerator model names. For example, all variations of Nvidia A100 GPUs will have 'A100' as accelerator name with various memory configurations set in accelerator_memory field
|
|
1661
|
-
*/
|
|
1662
|
-
accelerator_name?: Array<string>;
|
|
1663
|
-
/**
|
|
1664
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1665
|
-
*/
|
|
1666
|
-
accelerator_manufacturer?: Array<string>;
|
|
1667
|
-
/**
|
|
1668
|
-
* Minimum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
1669
|
-
*/
|
|
1670
|
-
accelerator_count_min?: number;
|
|
1671
|
-
/**
|
|
1672
|
-
* Maximum number of accelerators available on the instance. Some cloud providers support shared accelerators, so the number of accelerators may be a fraction of the number of physical accelerators.
|
|
1673
|
-
*/
|
|
1674
|
-
accelerator_count_max?: number;
|
|
1675
|
-
/**
|
|
1676
|
-
* Minimum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
1677
|
-
*/
|
|
1678
|
-
accelerator_memory_min?: number;
|
|
1679
|
-
/**
|
|
1680
|
-
* Maximum amount of accelerator memory available to each accelerator. For example, Nvidia A100 GPUs will typically have '40.0' gibibytes (GiB) of memory, while A100 GPUs with HBM2E memory will have '80.0' gibibytes (GiB) of memory
|
|
1681
|
-
*/
|
|
1682
|
-
accelerator_memory_max?: number;
|
|
1683
|
-
/**
|
|
1684
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1685
|
-
*/
|
|
1686
|
-
price_min?: number;
|
|
1687
|
-
/**
|
|
1688
|
-
* Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1689
|
-
*/
|
|
1690
|
-
price_max?: number;
|
|
1691
|
-
/**
|
|
1692
|
-
* Structured array of regions and sub-regions
|
|
1693
|
-
*/
|
|
1694
|
-
regions_struct?: Array<{
|
|
1695
|
-
/**
|
|
1696
|
-
* Limits selection of cloud regions to this list of Cloudfleet regions. For the full list of normalized regions and their mapping to CSP regions, see [Regions](https://cloudfleet.ai/docs/cloud-infrastructure/node-regions/)
|
|
1697
|
-
*/
|
|
1698
|
-
region?: string;
|
|
1699
|
-
sub_region?: Array<string>;
|
|
1700
|
-
}>;
|
|
1701
|
-
/**
|
|
1702
|
-
* Structured array of regions and sub-regions
|
|
1703
|
-
*/
|
|
1704
|
-
accelerators_struct?: Array<{
|
|
1705
|
-
/**
|
|
1706
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1707
|
-
*/
|
|
1708
|
-
accelerator_manufacturer?: string;
|
|
1709
|
-
accelerator_name?: Array<string>;
|
|
1710
|
-
}>;
|
|
1711
|
-
/**
|
|
1712
|
-
* Total number of instances in the catalog
|
|
1713
|
-
*/
|
|
1714
|
-
count_total?: number;
|
|
1715
|
-
/**
|
|
1716
|
-
* Total number of instances in the catalog with at least 1 accelerator
|
|
1717
|
-
*/
|
|
1718
|
-
count_accelerators?: number;
|
|
1719
|
-
/**
|
|
1720
|
-
* Total number of unique instances types in the catalog
|
|
1721
|
-
*/
|
|
1722
|
-
count_instance_types?: number;
|
|
1723
|
-
/**
|
|
1724
|
-
* Total number of unique instances types in the catalog with at least 1 accelerator
|
|
1725
|
-
*/
|
|
1726
|
-
count_accelerators_instance_types?: number;
|
|
1727
|
-
}>;
|
|
1728
|
-
};
|
|
1729
|
-
export type GetFacetsResponse = GetFacetsResponses[keyof GetFacetsResponses];
|
|
1730
|
-
export type GetRegionsData = {
|
|
1731
|
-
body?: never;
|
|
1732
|
-
path?: never;
|
|
1733
|
-
query?: never;
|
|
1734
|
-
url: '/infrastructure/regions';
|
|
1735
|
-
};
|
|
1736
|
-
export type GetRegionsResponses = {
|
|
1737
|
-
/**
|
|
1738
|
-
* Available Cloudfleet regions and Kubernetes versions.
|
|
1739
|
-
*/
|
|
1740
|
-
200: {
|
|
1741
|
-
[key: string]: unknown;
|
|
1742
|
-
};
|
|
1743
|
-
};
|
|
1744
|
-
export type GetRegionsResponse = GetRegionsResponses[keyof GetRegionsResponses];
|
|
1745
1531
|
export type ListInvitesData = {
|
|
1746
1532
|
body?: never;
|
|
1747
1533
|
path?: never;
|
|
@@ -1814,6 +1600,43 @@ export type DeleteInviteResponses = {
|
|
|
1814
1600
|
*/
|
|
1815
1601
|
200: unknown;
|
|
1816
1602
|
};
|
|
1603
|
+
export type ListMarketplaceChartsData = {
|
|
1604
|
+
body?: never;
|
|
1605
|
+
path?: never;
|
|
1606
|
+
query?: never;
|
|
1607
|
+
url: '/marketplace';
|
|
1608
|
+
};
|
|
1609
|
+
export type ListMarketplaceChartsErrors = {
|
|
1610
|
+
/**
|
|
1611
|
+
* Not authenticated
|
|
1612
|
+
*/
|
|
1613
|
+
401: unknown;
|
|
1614
|
+
};
|
|
1615
|
+
export type ListMarketplaceChartsResponses = {
|
|
1616
|
+
/**
|
|
1617
|
+
* An array of chart listings in the marketplace.
|
|
1618
|
+
*/
|
|
1619
|
+
200: Array<MarketplaceListing>;
|
|
1620
|
+
};
|
|
1621
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
1622
|
+
export type GetMarketplaceChartData = {
|
|
1623
|
+
body?: never;
|
|
1624
|
+
path: {
|
|
1625
|
+
/**
|
|
1626
|
+
* Unique identifier of the chart listing in the marketplace.
|
|
1627
|
+
*/
|
|
1628
|
+
listing_id: string;
|
|
1629
|
+
};
|
|
1630
|
+
query?: never;
|
|
1631
|
+
url: '/marketplace/{listing_id}';
|
|
1632
|
+
};
|
|
1633
|
+
export type GetMarketplaceChartResponses = {
|
|
1634
|
+
/**
|
|
1635
|
+
* Returns an object containing the chart listing details.
|
|
1636
|
+
*/
|
|
1637
|
+
200: MarketplaceListing;
|
|
1638
|
+
};
|
|
1639
|
+
export type GetMarketplaceChartResponse = GetMarketplaceChartResponses[keyof GetMarketplaceChartResponses];
|
|
1817
1640
|
export type GetOrganizationData = {
|
|
1818
1641
|
body?: never;
|
|
1819
1642
|
path?: never;
|
|
@@ -1835,24 +1658,10 @@ export type CreateOrganizationData = {
|
|
|
1835
1658
|
};
|
|
1836
1659
|
export type CreateOrganizationResponses = {
|
|
1837
1660
|
/**
|
|
1838
|
-
* Successfully created a new organization.
|
|
1839
|
-
*/
|
|
1840
|
-
200: Organization;
|
|
1841
|
-
};
|
|
1842
|
-
export type CreateOrganizationResponse = CreateOrganizationResponses[keyof CreateOrganizationResponses];
|
|
1843
|
-
export type UpdateOrganizationData = {
|
|
1844
|
-
body: OrganizationUpdateInput;
|
|
1845
|
-
path?: never;
|
|
1846
|
-
query?: never;
|
|
1847
|
-
url: '/organization';
|
|
1848
|
-
};
|
|
1849
|
-
export type UpdateOrganizationResponses = {
|
|
1850
|
-
/**
|
|
1851
|
-
* Successfully updated. Returns updated organization details.
|
|
1661
|
+
* Successfully created a new organization.
|
|
1852
1662
|
*/
|
|
1853
|
-
200:
|
|
1663
|
+
200: unknown;
|
|
1854
1664
|
};
|
|
1855
|
-
export type UpdateOrganizationResponse = UpdateOrganizationResponses[keyof UpdateOrganizationResponses];
|
|
1856
1665
|
export type ListTokensData = {
|
|
1857
1666
|
body?: never;
|
|
1858
1667
|
path?: never;
|
|
@@ -2109,53 +1918,7 @@ export type UpdateUserResponses = {
|
|
|
2109
1918
|
200: User;
|
|
2110
1919
|
};
|
|
2111
1920
|
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
2112
|
-
export type
|
|
2113
|
-
|
|
2114
|
-
path: {
|
|
2115
|
-
/**
|
|
2116
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2117
|
-
*/
|
|
2118
|
-
user_id: string;
|
|
2119
|
-
/**
|
|
2120
|
-
* Unique cluster identifier. UUID v4 string in canonical form
|
|
2121
|
-
*/
|
|
2122
|
-
cluster_id: string;
|
|
2123
|
-
};
|
|
2124
|
-
query?: never;
|
|
2125
|
-
url: '/users/{user_id}/clusters/{cluster_id}';
|
|
2126
|
-
};
|
|
2127
|
-
export type DeleteClusterPermissionsResponses = {
|
|
2128
|
-
/**
|
|
2129
|
-
* Successfully removed user from the cluster. Returns updated user details.
|
|
2130
|
-
*/
|
|
2131
|
-
200: User;
|
|
2132
|
-
};
|
|
2133
|
-
export type DeleteClusterPermissionsResponse = DeleteClusterPermissionsResponses[keyof DeleteClusterPermissionsResponses];
|
|
2134
|
-
export type SetClusterPermissionsData = {
|
|
2135
|
-
body: {
|
|
2136
|
-
/**
|
|
2137
|
-
* Level of permissions for the user to access the cluster
|
|
2138
|
-
*/
|
|
2139
|
-
permissions?: 'readwrite' | 'readonly';
|
|
2140
|
-
};
|
|
2141
|
-
path: {
|
|
2142
|
-
/**
|
|
2143
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2144
|
-
*/
|
|
2145
|
-
user_id: string;
|
|
2146
|
-
/**
|
|
2147
|
-
* Unique cluster identifier. UUID v4 string in canonical form
|
|
2148
|
-
*/
|
|
2149
|
-
cluster_id: string;
|
|
2150
|
-
};
|
|
2151
|
-
query?: never;
|
|
2152
|
-
url: '/users/{user_id}/clusters/{cluster_id}';
|
|
2153
|
-
};
|
|
2154
|
-
export type SetClusterPermissionsResponses = {
|
|
2155
|
-
/**
|
|
2156
|
-
* Successfully created. Returns created user details.
|
|
2157
|
-
*/
|
|
2158
|
-
200: User;
|
|
1921
|
+
export type ClientOptions = {
|
|
1922
|
+
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
2159
1923
|
};
|
|
2160
|
-
export type SetClusterPermissionsResponse = SetClusterPermissionsResponses[keyof SetClusterPermissionsResponses];
|
|
2161
1924
|
//# sourceMappingURL=types.gen.d.ts.map
|