@cloudfleet/sdk 0.0.1-96d5fec → 0.0.1-9c683a8
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/@tanstack/react-query.gen.d.ts +1048 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1040 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +220 -0
- package/dist/client/client.gen.js.map +1 -0
- package/dist/client/index.d.ts +9 -0
- package/dist/client/index.d.ts.map +1 -0
- package/dist/client/index.js +7 -0
- package/dist/client/index.js.map +1 -0
- package/dist/client/types.gen.d.ts +121 -0
- package/dist/client/types.gen.d.ts.map +1 -0
- package/dist/client/types.gen.js +3 -0
- package/dist/client/types.gen.js.map +1 -0
- package/dist/client/utils.gen.d.ts +38 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +229 -0
- package/dist/client/utils.gen.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 +4 -0
- package/dist/client.gen.js.map +1 -0
- package/dist/core/auth.gen.d.ts +19 -0
- package/dist/core/auth.gen.d.ts.map +1 -0
- package/dist/core/auth.gen.js +15 -0
- package/dist/core/auth.gen.js.map +1 -0
- package/dist/core/bodySerializer.gen.d.ts +26 -0
- package/dist/core/bodySerializer.gen.d.ts.map +1 -0
- package/dist/core/bodySerializer.gen.js +58 -0
- package/dist/core/bodySerializer.gen.js.map +1 -0
- package/dist/core/params.gen.d.ts +44 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +101 -0
- package/dist/core/params.gen.js.map +1 -0
- package/dist/core/pathSerializer.gen.d.ts +34 -0
- package/dist/core/pathSerializer.gen.d.ts.map +1 -0
- package/dist/core/pathSerializer.gen.js +107 -0
- package/dist/core/pathSerializer.gen.js.map +1 -0
- package/dist/core/queryKeySerializer.gen.d.ts +19 -0
- package/dist/core/queryKeySerializer.gen.d.ts.map +1 -0
- package/dist/core/queryKeySerializer.gen.js +93 -0
- package/dist/core/queryKeySerializer.gen.js.map +1 -0
- package/dist/core/serverSentEvents.gen.d.ts +72 -0
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -0
- package/dist/core/serverSentEvents.gen.js +133 -0
- package/dist/core/serverSentEvents.gen.js.map +1 -0
- package/dist/core/types.gen.d.ts +79 -0
- package/dist/core/types.gen.d.ts.map +1 -0
- package/dist/core/types.gen.js +3 -0
- package/dist/core/types.gen.js.map +1 -0
- package/dist/core/utils.gen.d.ts +20 -0
- package/dist/core/utils.gen.d.ts.map +1 -0
- package/dist/core/utils.gen.js +88 -0
- package/dist/core/utils.gen.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 +1012 -1039
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1476 -1070
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +227 -142
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +284 -223
- 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 +983 -940
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1713 -2836
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +697 -866
- package/dist/zod.gen.js.map +1 -1
- package/package.json +31 -5
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,20 +1,181 @@
|
|
|
1
|
-
export type
|
|
1
|
+
export type ClientOptions = {
|
|
2
|
+
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
3
|
+
};
|
|
4
|
+
export type BillingContact = {
|
|
2
5
|
/**
|
|
3
|
-
* Name of the
|
|
6
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
7
|
+
*/
|
|
8
|
+
company?: string;
|
|
9
|
+
/**
|
|
10
|
+
* Street address, P.O. box, c/o
|
|
11
|
+
*/
|
|
12
|
+
address1?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Apartment, suite, unit, building, floor, etc.
|
|
15
|
+
*/
|
|
16
|
+
address2?: string;
|
|
17
|
+
/**
|
|
18
|
+
* Postal code as a string.
|
|
19
|
+
*/
|
|
20
|
+
postalCode?: string;
|
|
21
|
+
/**
|
|
22
|
+
* City or town name.
|
|
23
|
+
*/
|
|
24
|
+
city?: string;
|
|
25
|
+
/**
|
|
26
|
+
* State, province, or region name.
|
|
27
|
+
*/
|
|
28
|
+
state?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Country as a ISO 3166-1 alpha-2 country code.
|
|
31
|
+
*/
|
|
32
|
+
country?: string;
|
|
33
|
+
/**
|
|
34
|
+
* Phone number as a string.
|
|
35
|
+
*/
|
|
36
|
+
phone?: string;
|
|
37
|
+
/**
|
|
38
|
+
* Email address used for billing as a string.
|
|
39
|
+
*/
|
|
40
|
+
email: string;
|
|
41
|
+
/**
|
|
42
|
+
* Name of the billing contact person.
|
|
43
|
+
*/
|
|
44
|
+
individual_name: string;
|
|
45
|
+
/**
|
|
46
|
+
* Tax ID of the organization.
|
|
47
|
+
*/
|
|
48
|
+
tax_id?: string;
|
|
49
|
+
/**
|
|
50
|
+
* Type of the tax ID.
|
|
51
|
+
*/
|
|
52
|
+
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' | '';
|
|
53
|
+
};
|
|
54
|
+
export type BillingCredits = {
|
|
55
|
+
/**
|
|
56
|
+
* Generated unique identifier of the promotional code.
|
|
57
|
+
*/
|
|
58
|
+
id?: string;
|
|
59
|
+
/**
|
|
60
|
+
* Type of the promotional code.
|
|
61
|
+
*/
|
|
62
|
+
type: 'credit' | 'discount';
|
|
63
|
+
/**
|
|
64
|
+
* Timestamp when the credit becomes active. ISO 8601 date string in the UTC timezone.
|
|
65
|
+
*/
|
|
66
|
+
date_start: string;
|
|
67
|
+
/**
|
|
68
|
+
* Timestamp when the credit expires or becomes inactive. ISO 8601 date string in the UTC timezone.
|
|
69
|
+
*/
|
|
70
|
+
date_end?: string;
|
|
71
|
+
/**
|
|
72
|
+
* Promotional code used by the customer.
|
|
73
|
+
*/
|
|
74
|
+
code: string;
|
|
75
|
+
/**
|
|
76
|
+
* Description of the promotional code.
|
|
77
|
+
*/
|
|
78
|
+
description?: string;
|
|
79
|
+
/**
|
|
80
|
+
* Total value of the promotional code.
|
|
81
|
+
*/
|
|
82
|
+
value_total: number;
|
|
83
|
+
/**
|
|
84
|
+
* Remaining value of the promotional code.
|
|
85
|
+
*/
|
|
86
|
+
value_remaining?: number;
|
|
87
|
+
};
|
|
88
|
+
export type ChartCreateInput = {
|
|
89
|
+
/**
|
|
90
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
91
|
+
*/
|
|
92
|
+
values: string;
|
|
93
|
+
/**
|
|
94
|
+
* Desired version range or channel for the chart.
|
|
95
|
+
*/
|
|
96
|
+
version_channel: string;
|
|
97
|
+
/**
|
|
98
|
+
* Unique identifier of the chart deployment aka name of the helm release.
|
|
99
|
+
*/
|
|
100
|
+
name: string;
|
|
101
|
+
/**
|
|
102
|
+
* Namespace of the chart deployment
|
|
103
|
+
*/
|
|
104
|
+
namespace: string;
|
|
105
|
+
/**
|
|
106
|
+
* Name of the chart listing
|
|
107
|
+
*/
|
|
108
|
+
chart: string;
|
|
109
|
+
};
|
|
110
|
+
export type Chart = {
|
|
111
|
+
/**
|
|
112
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
113
|
+
*/
|
|
114
|
+
values: string;
|
|
115
|
+
/**
|
|
116
|
+
* Desired version range or channel for the chart.
|
|
117
|
+
*/
|
|
118
|
+
version_channel: string;
|
|
119
|
+
/**
|
|
120
|
+
* Unique identifier of the chart deployment aka name of the helm release.
|
|
4
121
|
*/
|
|
5
122
|
name: string;
|
|
6
123
|
/**
|
|
7
|
-
*
|
|
124
|
+
* Namespace of the chart deployment
|
|
125
|
+
*/
|
|
126
|
+
namespace: string;
|
|
127
|
+
/**
|
|
128
|
+
* Name of the chart listing
|
|
129
|
+
*/
|
|
130
|
+
chart: string;
|
|
131
|
+
/**
|
|
132
|
+
* Status of the chart deployment.
|
|
133
|
+
*/
|
|
134
|
+
status: 'InstallSucceeded' | 'InstallFailed' | 'UpgradeSucceeded' | 'UpgradeFailed' | 'TestSucceeded' | 'TestFailed' | 'RollbackSucceeded' | 'RollbackFailed' | 'UninstallSucceeded' | 'UninstallFailed' | 'ArtifactFailed' | 'DependencyNotReady' | 'Progressing' | 'SourceNotReady';
|
|
135
|
+
/**
|
|
136
|
+
* Current version of the chart deployment.
|
|
137
|
+
*/
|
|
138
|
+
version_current: string;
|
|
139
|
+
/**
|
|
140
|
+
* Creation date and time of the chart deployment.
|
|
141
|
+
*/
|
|
142
|
+
created_at: string;
|
|
143
|
+
/**
|
|
144
|
+
* Last update date and time of the chart deployment.
|
|
145
|
+
*/
|
|
146
|
+
updated_at: string;
|
|
147
|
+
/**
|
|
148
|
+
* Indicates if the chart deployment is ready to be used.
|
|
149
|
+
*/
|
|
150
|
+
ready: boolean;
|
|
151
|
+
};
|
|
152
|
+
export type ChartUpdateInput = {
|
|
153
|
+
/**
|
|
154
|
+
* Values to be used in the chart encoded as a JSON string.
|
|
155
|
+
*/
|
|
156
|
+
values: string;
|
|
157
|
+
/**
|
|
158
|
+
* Desired version range or channel for the chart.
|
|
159
|
+
*/
|
|
160
|
+
version_channel: string;
|
|
161
|
+
};
|
|
162
|
+
export type ClusterCreateInput = {
|
|
163
|
+
/**
|
|
164
|
+
* Name of the cluster.
|
|
8
165
|
*/
|
|
9
|
-
|
|
166
|
+
name: string;
|
|
10
167
|
/**
|
|
11
168
|
* Tier of the cluster.
|
|
12
169
|
*/
|
|
13
170
|
tier: 'basic' | 'pro';
|
|
171
|
+
/**
|
|
172
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
173
|
+
*/
|
|
174
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
14
175
|
/**
|
|
15
176
|
* Version of the kubernetes cluster.
|
|
16
177
|
*/
|
|
17
|
-
version_channel?:
|
|
178
|
+
version_channel?: '1.x.x-cfke.x' | '1.31.x-cfke.x' | '1.32.x-cfke.x' | '1.33.x-cfke.x';
|
|
18
179
|
};
|
|
19
180
|
export type ClusterJoinInformation = {
|
|
20
181
|
/**
|
|
@@ -25,6 +186,10 @@ export type ClusterJoinInformation = {
|
|
|
25
186
|
* Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
|
|
26
187
|
*/
|
|
27
188
|
endpoint: string;
|
|
189
|
+
/**
|
|
190
|
+
* Cluster DNS IP address. This is the IP address of the kube-dns service in the cluster.
|
|
191
|
+
*/
|
|
192
|
+
cluster_dns: string;
|
|
28
193
|
/**
|
|
29
194
|
* Authentication key for the cluster.
|
|
30
195
|
*/
|
|
@@ -49,6 +214,27 @@ export type ClusterJoinInformation = {
|
|
|
49
214
|
* Containerd version of the cluster.
|
|
50
215
|
*/
|
|
51
216
|
containerd: string;
|
|
217
|
+
/**
|
|
218
|
+
* NVIDIA driver version of the cluster.
|
|
219
|
+
*/
|
|
220
|
+
nvidia_driver: string;
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* OIDC Information for hosts to access to third party API's.
|
|
224
|
+
*/
|
|
225
|
+
third_party_api_access_config: {
|
|
226
|
+
/**
|
|
227
|
+
* Kubernetes metadata server.
|
|
228
|
+
*/
|
|
229
|
+
metadata_url: string;
|
|
230
|
+
/**
|
|
231
|
+
* AWS Role ARN.
|
|
232
|
+
*/
|
|
233
|
+
aws_role_arn: string;
|
|
234
|
+
/**
|
|
235
|
+
* GCP Workload Identity provider.
|
|
236
|
+
*/
|
|
237
|
+
gcp_workload_identity_provider: string;
|
|
52
238
|
};
|
|
53
239
|
};
|
|
54
240
|
export type Cluster = {
|
|
@@ -56,18 +242,14 @@ export type Cluster = {
|
|
|
56
242
|
* Name of the cluster.
|
|
57
243
|
*/
|
|
58
244
|
name: string;
|
|
59
|
-
/**
|
|
60
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
|
|
61
|
-
*/
|
|
62
|
-
region?: 'staging' | 'northamerica-central-1';
|
|
63
245
|
/**
|
|
64
246
|
* Tier of the cluster.
|
|
65
247
|
*/
|
|
66
248
|
tier: 'basic' | 'pro';
|
|
67
249
|
/**
|
|
68
|
-
*
|
|
250
|
+
* Cloudfleet control plane region. One of "staging-1a", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a". This field can not be updated after creation.
|
|
69
251
|
*/
|
|
70
|
-
|
|
252
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
71
253
|
/**
|
|
72
254
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
73
255
|
*/
|
|
@@ -75,7 +257,7 @@ export type Cluster = {
|
|
|
75
257
|
/**
|
|
76
258
|
* Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
|
|
77
259
|
*/
|
|
78
|
-
status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
|
|
260
|
+
status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
|
|
79
261
|
endpoint?: string | '';
|
|
80
262
|
/**
|
|
81
263
|
* Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
|
|
@@ -97,12 +279,20 @@ export type Cluster = {
|
|
|
97
279
|
* Indicates if the cluster is ready to be used.
|
|
98
280
|
*/
|
|
99
281
|
ready?: boolean;
|
|
282
|
+
/**
|
|
283
|
+
* Version of the kubernetes cluster.
|
|
284
|
+
*/
|
|
285
|
+
version_channel?: string;
|
|
100
286
|
};
|
|
101
287
|
export type ClusterUpdateInput = {
|
|
102
288
|
/**
|
|
103
289
|
* Name of the cluster.
|
|
104
290
|
*/
|
|
105
291
|
name?: string;
|
|
292
|
+
/**
|
|
293
|
+
* Tier of the cluster.
|
|
294
|
+
*/
|
|
295
|
+
tier: 'basic' | 'pro';
|
|
106
296
|
/**
|
|
107
297
|
* Version of the kubernetes cluster.
|
|
108
298
|
*/
|
|
@@ -127,10 +317,10 @@ export type FleetCreateInput = {
|
|
|
127
317
|
};
|
|
128
318
|
hetzner?: {
|
|
129
319
|
enabled?: boolean;
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
320
|
+
/**
|
|
321
|
+
* Hetzner Cloud API key with read / write access
|
|
322
|
+
*/
|
|
323
|
+
apiKey: string;
|
|
134
324
|
};
|
|
135
325
|
aws?: {
|
|
136
326
|
enabled?: boolean;
|
|
@@ -143,10 +333,6 @@ export type FleetCreateInput = {
|
|
|
143
333
|
* Unique identifier of the kubernetes fleet.
|
|
144
334
|
*/
|
|
145
335
|
id: string;
|
|
146
|
-
/**
|
|
147
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
148
|
-
*/
|
|
149
|
-
type: 'managed' | 'connected';
|
|
150
336
|
};
|
|
151
337
|
export type Fleet = {
|
|
152
338
|
/**
|
|
@@ -167,10 +353,10 @@ export type Fleet = {
|
|
|
167
353
|
};
|
|
168
354
|
hetzner?: {
|
|
169
355
|
enabled?: boolean;
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
356
|
+
/**
|
|
357
|
+
* Hetzner Cloud API key with read / write access
|
|
358
|
+
*/
|
|
359
|
+
apiKey: string;
|
|
174
360
|
};
|
|
175
361
|
aws?: {
|
|
176
362
|
enabled?: boolean;
|
|
@@ -183,10 +369,6 @@ export type Fleet = {
|
|
|
183
369
|
* Unique identifier of the kubernetes fleet.
|
|
184
370
|
*/
|
|
185
371
|
id: string;
|
|
186
|
-
/**
|
|
187
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
188
|
-
*/
|
|
189
|
-
type: 'managed' | 'connected';
|
|
190
372
|
};
|
|
191
373
|
export type FleetUpdateInput = {
|
|
192
374
|
/**
|
|
@@ -207,10 +389,10 @@ export type FleetUpdateInput = {
|
|
|
207
389
|
};
|
|
208
390
|
hetzner?: {
|
|
209
391
|
enabled?: boolean;
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
392
|
+
/**
|
|
393
|
+
* Hetzner Cloud API key with read / write access
|
|
394
|
+
*/
|
|
395
|
+
apiKey: string;
|
|
214
396
|
};
|
|
215
397
|
aws?: {
|
|
216
398
|
enabled?: boolean;
|
|
@@ -220,178 +402,6 @@ export type FleetUpdateInput = {
|
|
|
220
402
|
controllerRoleArn: string;
|
|
221
403
|
};
|
|
222
404
|
};
|
|
223
|
-
export type InfrastructureFilter = {
|
|
224
|
-
/**
|
|
225
|
-
* Version of the infrastructure filter definition. Currently only version 1 is supported.
|
|
226
|
-
*/
|
|
227
|
-
version?: 1;
|
|
228
|
-
/**
|
|
229
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
230
|
-
*/
|
|
231
|
-
provider?: Array<string>;
|
|
232
|
-
/**
|
|
233
|
-
* 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/)
|
|
234
|
-
*/
|
|
235
|
-
region?: Array<string>;
|
|
236
|
-
/**
|
|
237
|
-
* 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/)
|
|
238
|
-
*/
|
|
239
|
-
sub_region?: Array<string>;
|
|
240
|
-
/**
|
|
241
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
242
|
-
*/
|
|
243
|
-
csp_region?: Array<string>;
|
|
244
|
-
/**
|
|
245
|
-
* Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
|
|
246
|
-
*/
|
|
247
|
-
instance_type?: Array<string>;
|
|
248
|
-
/**
|
|
249
|
-
* 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
|
|
250
|
-
*/
|
|
251
|
-
accelerator_name?: Array<string>;
|
|
252
|
-
/**
|
|
253
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
254
|
-
*/
|
|
255
|
-
accelerator_manufacturer?: Array<string>;
|
|
256
|
-
/**
|
|
257
|
-
* 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.
|
|
258
|
-
*/
|
|
259
|
-
accelerator_count_min?: number;
|
|
260
|
-
/**
|
|
261
|
-
* 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.
|
|
262
|
-
*/
|
|
263
|
-
accelerator_count_max?: number;
|
|
264
|
-
/**
|
|
265
|
-
* 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
|
|
266
|
-
*/
|
|
267
|
-
accelerator_memory_min?: number;
|
|
268
|
-
/**
|
|
269
|
-
* 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
|
|
270
|
-
*/
|
|
271
|
-
accelerator_memory_max?: number;
|
|
272
|
-
/**
|
|
273
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
274
|
-
*/
|
|
275
|
-
memory_min?: number;
|
|
276
|
-
/**
|
|
277
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
278
|
-
*/
|
|
279
|
-
memory_max?: number;
|
|
280
|
-
/**
|
|
281
|
-
* 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.
|
|
282
|
-
*/
|
|
283
|
-
vcpu_min?: number;
|
|
284
|
-
/**
|
|
285
|
-
* 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.
|
|
286
|
-
*/
|
|
287
|
-
vcpu_max?: number;
|
|
288
|
-
/**
|
|
289
|
-
* Minimum total storage in GiB (attached and local)
|
|
290
|
-
*/
|
|
291
|
-
storage_total_min?: number;
|
|
292
|
-
/**
|
|
293
|
-
* Maximum total storage in GiB (attached and local)
|
|
294
|
-
*/
|
|
295
|
-
storage_total_max?: number;
|
|
296
|
-
/**
|
|
297
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
298
|
-
*/
|
|
299
|
-
storage_local_min?: number;
|
|
300
|
-
/**
|
|
301
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
302
|
-
*/
|
|
303
|
-
storage_local_max?: number;
|
|
304
|
-
/**
|
|
305
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
306
|
-
*/
|
|
307
|
-
price_min?: number;
|
|
308
|
-
/**
|
|
309
|
-
* Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
310
|
-
*/
|
|
311
|
-
price_max?: number;
|
|
312
|
-
};
|
|
313
|
-
export type InfrastructureInstance = {
|
|
314
|
-
/**
|
|
315
|
-
* Cloudfleet instance SKU. Has a format of <provider>-<csp_region>-<instance_type>.
|
|
316
|
-
*/
|
|
317
|
-
sku: string;
|
|
318
|
-
/**
|
|
319
|
-
* Normalized cloud service provider name. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
320
|
-
*/
|
|
321
|
-
provider: string;
|
|
322
|
-
/**
|
|
323
|
-
* 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/)
|
|
324
|
-
*/
|
|
325
|
-
region: string;
|
|
326
|
-
/**
|
|
327
|
-
* 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/)
|
|
328
|
-
*/
|
|
329
|
-
sub_region: string;
|
|
330
|
-
/**
|
|
331
|
-
* Region as defined by the cloud service provider
|
|
332
|
-
*/
|
|
333
|
-
csp_region: string;
|
|
334
|
-
/**
|
|
335
|
-
* Availability zone as defined by the cloud service provider
|
|
336
|
-
*/
|
|
337
|
-
csp_zone: string;
|
|
338
|
-
/**
|
|
339
|
-
* Instance / VM type as defined by the cloud service provider
|
|
340
|
-
*/
|
|
341
|
-
instance_type: string;
|
|
342
|
-
/**
|
|
343
|
-
* Instance CPU architecture
|
|
344
|
-
*/
|
|
345
|
-
architecture: string;
|
|
346
|
-
/**
|
|
347
|
-
* Instance operating system
|
|
348
|
-
*/
|
|
349
|
-
os: string;
|
|
350
|
-
/**
|
|
351
|
-
* 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.
|
|
352
|
-
*/
|
|
353
|
-
vcpu: number;
|
|
354
|
-
/**
|
|
355
|
-
* Total amount of RAM in gibibytes (GiB)
|
|
356
|
-
*/
|
|
357
|
-
memory: number;
|
|
358
|
-
/**
|
|
359
|
-
* Volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
360
|
-
*/
|
|
361
|
-
local_storage: number;
|
|
362
|
-
/**
|
|
363
|
-
* 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
|
|
364
|
-
*/
|
|
365
|
-
accelerator_name?: string;
|
|
366
|
-
/**
|
|
367
|
-
* Normalized manufacturer name of accelerator. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
368
|
-
*/
|
|
369
|
-
accelerator_manufacturer?: string;
|
|
370
|
-
/**
|
|
371
|
-
* 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.
|
|
372
|
-
*/
|
|
373
|
-
accelerator_count?: number;
|
|
374
|
-
/**
|
|
375
|
-
* 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
|
|
376
|
-
*/
|
|
377
|
-
accelerator_memory?: number;
|
|
378
|
-
/**
|
|
379
|
-
* Maximum number of pods that can be run on this instance type.
|
|
380
|
-
*/
|
|
381
|
-
pods_capacity?: number;
|
|
382
|
-
/**
|
|
383
|
-
* Capacity type of the instance. E.g. `on-demand`, `spot`.
|
|
384
|
-
*/
|
|
385
|
-
capacity_type?: string;
|
|
386
|
-
/**
|
|
387
|
-
* Price of running the inctance per hour in USD as defined by the cloud service provider
|
|
388
|
-
*/
|
|
389
|
-
price: number;
|
|
390
|
-
/**
|
|
391
|
-
* Whether this instance type is available.
|
|
392
|
-
*/
|
|
393
|
-
available?: boolean;
|
|
394
|
-
};
|
|
395
405
|
export type Invite = {
|
|
396
406
|
/**
|
|
397
407
|
* Unique identifier of the invitation.
|
|
@@ -416,265 +426,123 @@ export type Invite = {
|
|
|
416
426
|
};
|
|
417
427
|
export type Invoice = {
|
|
418
428
|
/**
|
|
419
|
-
* Unique identifier of the invoice.
|
|
429
|
+
* Unique identifier of the invoice.
|
|
420
430
|
*/
|
|
421
431
|
id?: string;
|
|
422
|
-
|
|
423
|
-
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
424
|
-
*/
|
|
425
|
-
organizationId?: string;
|
|
432
|
+
number?: string;
|
|
426
433
|
/**
|
|
427
434
|
* Status of the invoice
|
|
428
435
|
*/
|
|
429
|
-
status?:
|
|
436
|
+
status?: string;
|
|
430
437
|
/**
|
|
431
438
|
* Total amount of the invoice
|
|
432
439
|
*/
|
|
433
|
-
|
|
440
|
+
total?: number;
|
|
434
441
|
/**
|
|
435
442
|
* Currency of the invoice
|
|
436
443
|
*/
|
|
437
|
-
currency?:
|
|
444
|
+
currency?: string;
|
|
438
445
|
/**
|
|
439
|
-
*
|
|
446
|
+
* Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
|
|
440
447
|
*/
|
|
441
|
-
|
|
448
|
+
created: string;
|
|
442
449
|
/**
|
|
443
|
-
*
|
|
450
|
+
* Billing period start timestamp. ISO 8601 date string in the UTC timezone.
|
|
444
451
|
*/
|
|
445
|
-
|
|
452
|
+
period_start: string;
|
|
446
453
|
/**
|
|
447
|
-
*
|
|
454
|
+
* Billing period end timestamp. ISO 8601 date string in the UTC timezone.
|
|
448
455
|
*/
|
|
449
|
-
|
|
456
|
+
period_end: string;
|
|
457
|
+
invoice_pdf?: string;
|
|
458
|
+
};
|
|
459
|
+
export type MarketplaceListingFiles = {
|
|
450
460
|
/**
|
|
451
|
-
*
|
|
461
|
+
* Raw Chart.yaml content from the Helm chart
|
|
452
462
|
*/
|
|
453
|
-
|
|
463
|
+
chartYaml?: string;
|
|
454
464
|
/**
|
|
455
|
-
*
|
|
465
|
+
* Raw values.yaml content from the Helm chart
|
|
456
466
|
*/
|
|
457
|
-
|
|
467
|
+
valuesYaml?: string;
|
|
458
468
|
/**
|
|
459
|
-
*
|
|
469
|
+
* JSON schema for values.yaml as a string
|
|
460
470
|
*/
|
|
461
|
-
|
|
471
|
+
valuesSchemaJson?: string;
|
|
472
|
+
};
|
|
473
|
+
export type MarketplaceListing = {
|
|
462
474
|
/**
|
|
463
|
-
*
|
|
475
|
+
* Name of the chart
|
|
464
476
|
*/
|
|
465
|
-
|
|
477
|
+
name: string;
|
|
466
478
|
/**
|
|
467
|
-
*
|
|
479
|
+
* Available versions of the chart
|
|
468
480
|
*/
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
/**
|
|
483
|
-
* Name of the plan
|
|
484
|
-
*/
|
|
485
|
-
planName?: string;
|
|
481
|
+
versions: Array<string>;
|
|
482
|
+
/**
|
|
483
|
+
* Version channels for the chart
|
|
484
|
+
*/
|
|
485
|
+
version_channels: Array<string>;
|
|
486
|
+
/**
|
|
487
|
+
* Latest version of the chart
|
|
488
|
+
*/
|
|
489
|
+
latestVersion: string;
|
|
490
|
+
/**
|
|
491
|
+
* Chart metadata
|
|
492
|
+
*/
|
|
493
|
+
metadata?: {
|
|
486
494
|
/**
|
|
487
|
-
*
|
|
495
|
+
* Chart name from metadata
|
|
488
496
|
*/
|
|
489
|
-
|
|
497
|
+
name: string;
|
|
490
498
|
/**
|
|
491
|
-
*
|
|
499
|
+
* Chart version from metadata
|
|
492
500
|
*/
|
|
493
|
-
|
|
501
|
+
version: string;
|
|
494
502
|
/**
|
|
495
|
-
*
|
|
503
|
+
* Chart description
|
|
496
504
|
*/
|
|
497
|
-
|
|
505
|
+
description?: string;
|
|
498
506
|
/**
|
|
499
|
-
*
|
|
507
|
+
* Application version
|
|
500
508
|
*/
|
|
501
|
-
|
|
509
|
+
appVersion?: string;
|
|
502
510
|
/**
|
|
503
|
-
*
|
|
511
|
+
* Helm API version
|
|
504
512
|
*/
|
|
505
|
-
|
|
513
|
+
apiVersion?: string;
|
|
506
514
|
/**
|
|
507
|
-
*
|
|
515
|
+
* Chart keywords
|
|
508
516
|
*/
|
|
509
|
-
|
|
517
|
+
keywords?: Array<string>;
|
|
510
518
|
/**
|
|
511
|
-
*
|
|
519
|
+
* Chart home URL
|
|
512
520
|
*/
|
|
513
|
-
|
|
521
|
+
home?: string;
|
|
514
522
|
/**
|
|
515
|
-
*
|
|
523
|
+
* A URL to an SVG or PNG image to be used as an icon
|
|
516
524
|
*/
|
|
517
|
-
|
|
525
|
+
icon?: string;
|
|
518
526
|
/**
|
|
519
|
-
*
|
|
527
|
+
* Chart source URLs
|
|
520
528
|
*/
|
|
521
|
-
|
|
529
|
+
sources?: Array<string>;
|
|
522
530
|
/**
|
|
523
|
-
*
|
|
531
|
+
* Chart maintainers
|
|
524
532
|
*/
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
*/
|
|
537
|
-
currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
|
|
538
|
-
/**
|
|
539
|
-
* Quantity of the invoice item
|
|
540
|
-
*/
|
|
541
|
-
quantity?: number;
|
|
542
|
-
/**
|
|
543
|
-
* Details of the invoice item
|
|
544
|
-
*/
|
|
545
|
-
itemDetails?: string;
|
|
546
|
-
/**
|
|
547
|
-
* Effective date of the catalog
|
|
548
|
-
*/
|
|
549
|
-
catalogEffectiveDate?: string;
|
|
550
|
-
/**
|
|
551
|
-
* Child items of the invoice item
|
|
552
|
-
*/
|
|
553
|
-
childItems?: Array<Array<unknown> | boolean | number | {
|
|
554
|
-
[key: string]: unknown;
|
|
555
|
-
} | string>;
|
|
556
|
-
}>;
|
|
557
|
-
/**
|
|
558
|
-
* Items of the invoice
|
|
559
|
-
*/
|
|
560
|
-
items?: Array<{
|
|
561
|
-
/**
|
|
562
|
-
* Unique identifier of the invoice item. UUID v4 string in canonical form
|
|
563
|
-
*/
|
|
564
|
-
id?: string;
|
|
565
|
-
/**
|
|
566
|
-
* Unique identifier of the linked invoice item. UUID v4 string in canonical form
|
|
567
|
-
*/
|
|
568
|
-
linkedInvoiceItemId?: string;
|
|
569
|
-
/**
|
|
570
|
-
* Name of the product
|
|
571
|
-
*/
|
|
572
|
-
productName?: string;
|
|
573
|
-
/**
|
|
574
|
-
* Name of the plan
|
|
575
|
-
*/
|
|
576
|
-
planName?: string;
|
|
577
|
-
/**
|
|
578
|
-
* Name of the phase
|
|
579
|
-
*/
|
|
580
|
-
phaseName?: string;
|
|
581
|
-
/**
|
|
582
|
-
* Name of the usage
|
|
583
|
-
*/
|
|
584
|
-
usageName?: string;
|
|
585
|
-
/**
|
|
586
|
-
* Pretty name of the product
|
|
587
|
-
*/
|
|
588
|
-
prettyProductName?: string;
|
|
589
|
-
/**
|
|
590
|
-
* Pretty name of the plan
|
|
591
|
-
*/
|
|
592
|
-
prettyPlanName?: string;
|
|
593
|
-
/**
|
|
594
|
-
* Pretty name of the phase
|
|
595
|
-
*/
|
|
596
|
-
prettyPhaseName?: string;
|
|
597
|
-
/**
|
|
598
|
-
* Pretty name of the usage
|
|
599
|
-
*/
|
|
600
|
-
prettyUsageName?: string;
|
|
601
|
-
/**
|
|
602
|
-
* Type of the invoice item
|
|
603
|
-
*/
|
|
604
|
-
itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
|
|
605
|
-
/**
|
|
606
|
-
* Description of the invoice item
|
|
607
|
-
*/
|
|
608
|
-
description?: string;
|
|
609
|
-
/**
|
|
610
|
-
* Start date of the invoice item
|
|
611
|
-
*/
|
|
612
|
-
startDate?: string;
|
|
613
|
-
/**
|
|
614
|
-
* End date of the invoice item
|
|
615
|
-
*/
|
|
616
|
-
endDate?: string;
|
|
617
|
-
/**
|
|
618
|
-
* Amount of the invoice item
|
|
619
|
-
*/
|
|
620
|
-
amount?: number;
|
|
621
|
-
/**
|
|
622
|
-
* Rate of the invoice item
|
|
623
|
-
*/
|
|
624
|
-
rate?: number;
|
|
625
|
-
/**
|
|
626
|
-
* Currency of the invoice item
|
|
627
|
-
*/
|
|
628
|
-
currency?: 'AED' | 'AFN' | 'ALL' | 'AMD' | 'ANG' | 'AOA' | 'ARS' | 'AUD' | 'AWG' | 'AZN' | 'BAM' | 'BBD' | 'BDT' | 'BGN' | 'BHD' | 'BIF' | 'BMD' | 'BND' | 'BOB' | 'BRL' | 'BSD' | 'BTN' | 'BWP' | 'BYR' | 'BZD' | 'CAD' | 'CDF' | 'CHF' | 'CLP' | 'CNY' | 'COP' | 'CRC' | 'CUC' | 'CUP' | 'CVE' | 'CZK' | 'DJF' | 'DKK' | 'DOP' | 'DZD' | 'EGP' | 'ERN' | 'ETB' | 'EUR' | 'FJD' | 'FKP' | 'GBP' | 'GEL' | 'GGP' | 'GHS' | 'GIP' | 'GMD' | 'GNF' | 'GTQ' | 'GYD' | 'HKD' | 'HNL' | 'HRK' | 'HTG' | 'HUF' | 'IDR' | 'ILS' | 'IMP' | 'INR' | 'IQD' | 'IRR' | 'ISK' | 'JEP' | 'JMD' | 'JOD' | 'JPY' | 'KES' | 'KGS' | 'KHR' | 'KMF' | 'KPW' | 'KRW' | 'KWD' | 'KYD' | 'KZT' | 'LAK' | 'LBP' | 'LKR' | 'LRD' | 'LSL' | 'LTL' | 'LVL' | 'LYD' | 'MAD' | 'MDL' | 'MGA' | 'MKD' | 'MMK' | 'MNT' | 'MOP' | 'MRO' | 'MUR' | 'MVR' | 'MWK' | 'MXN' | 'MYR' | 'MZN' | 'NAD' | 'NGN' | 'NIO' | 'NOK' | 'NPR' | 'NZD' | 'OMR' | 'PAB' | 'PEN' | 'PGK' | 'PHP' | 'PKR' | 'PLN' | 'PYG' | 'QAR' | 'RON' | 'RSD' | 'RUB' | 'RWF' | 'SAR' | 'SBD' | 'SCR' | 'SDG' | 'SEK' | 'SGD' | 'SHP' | 'SLL' | 'SOS' | 'SPL' | 'SRD' | 'STD' | 'SVC' | 'SYP' | 'SZL' | 'THB' | 'TJS' | 'TMT' | 'TND' | 'TOP' | 'TRY' | 'TTD' | 'TVD' | 'TWD' | 'TZS' | 'UAH' | 'UGX' | 'USD' | 'UYU' | 'UZS' | 'VEF' | 'VND' | 'VUV' | 'WST' | 'XAF' | 'XCD' | 'XDR' | 'XOF' | 'XPF' | 'YER' | 'ZAR' | 'ZMW' | 'ZWD' | 'BTC';
|
|
629
|
-
/**
|
|
630
|
-
* Quantity of the invoice item
|
|
631
|
-
*/
|
|
632
|
-
quantity?: number;
|
|
633
|
-
/**
|
|
634
|
-
* Details of the invoice item
|
|
635
|
-
*/
|
|
636
|
-
itemDetails?: string;
|
|
637
|
-
/**
|
|
638
|
-
* Effective date of the catalog
|
|
639
|
-
*/
|
|
640
|
-
catalogEffectiveDate?: string;
|
|
641
|
-
/**
|
|
642
|
-
* Child items of the invoice item
|
|
643
|
-
*/
|
|
644
|
-
childItems?: Array<Array<unknown> | boolean | number | {
|
|
645
|
-
[key: string]: unknown;
|
|
646
|
-
} | string>;
|
|
647
|
-
}>;
|
|
533
|
+
maintainers?: Array<{
|
|
534
|
+
/**
|
|
535
|
+
* Maintainer name
|
|
536
|
+
*/
|
|
537
|
+
name: string;
|
|
538
|
+
/**
|
|
539
|
+
* Maintainer email
|
|
540
|
+
*/
|
|
541
|
+
email?: string;
|
|
542
|
+
}>;
|
|
543
|
+
};
|
|
648
544
|
};
|
|
649
|
-
export type
|
|
650
|
-
/**
|
|
651
|
-
* Street address, P.O. box, c/o
|
|
652
|
-
*/
|
|
653
|
-
address1?: string;
|
|
654
|
-
/**
|
|
655
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
656
|
-
*/
|
|
657
|
-
address2?: string;
|
|
658
|
-
/**
|
|
659
|
-
* Postal code as a string.
|
|
660
|
-
*/
|
|
661
|
-
postalCode?: string;
|
|
662
|
-
/**
|
|
663
|
-
* City or town name.
|
|
664
|
-
*/
|
|
665
|
-
city?: string;
|
|
666
|
-
/**
|
|
667
|
-
* State, province, or region name.
|
|
668
|
-
*/
|
|
669
|
-
state?: string;
|
|
670
|
-
/**
|
|
671
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
672
|
-
*/
|
|
673
|
-
country?: string;
|
|
674
|
-
/**
|
|
675
|
-
* Phone number as a string.
|
|
676
|
-
*/
|
|
677
|
-
phone?: string;
|
|
545
|
+
export type OrganizationCreateInput = {
|
|
678
546
|
/**
|
|
679
547
|
* Email address used for billing as a string.
|
|
680
548
|
*/
|
|
@@ -687,116 +555,24 @@ export type OrganizationContactInfo = {
|
|
|
687
555
|
* Last name of the billing contact person.
|
|
688
556
|
*/
|
|
689
557
|
last_name: string;
|
|
690
|
-
};
|
|
691
|
-
export type OrganizationCreateInput = {
|
|
692
558
|
/**
|
|
693
559
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
694
560
|
*/
|
|
695
|
-
|
|
696
|
-
/**
|
|
697
|
-
* Organization contact information and billing address.
|
|
698
|
-
*/
|
|
699
|
-
contactInfo: {
|
|
700
|
-
/**
|
|
701
|
-
* Street address, P.O. box, c/o
|
|
702
|
-
*/
|
|
703
|
-
address1?: string;
|
|
704
|
-
/**
|
|
705
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
706
|
-
*/
|
|
707
|
-
address2?: string;
|
|
708
|
-
/**
|
|
709
|
-
* Postal code as a string.
|
|
710
|
-
*/
|
|
711
|
-
postalCode?: string;
|
|
712
|
-
/**
|
|
713
|
-
* City or town name.
|
|
714
|
-
*/
|
|
715
|
-
city?: string;
|
|
716
|
-
/**
|
|
717
|
-
* State, province, or region name.
|
|
718
|
-
*/
|
|
719
|
-
state?: string;
|
|
720
|
-
/**
|
|
721
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
722
|
-
*/
|
|
723
|
-
country?: string;
|
|
724
|
-
/**
|
|
725
|
-
* Phone number as a string.
|
|
726
|
-
*/
|
|
727
|
-
phone?: string;
|
|
728
|
-
/**
|
|
729
|
-
* Email address used for billing as a string.
|
|
730
|
-
*/
|
|
731
|
-
email: string;
|
|
732
|
-
/**
|
|
733
|
-
* First name of the billing contact person.
|
|
734
|
-
*/
|
|
735
|
-
first_name: string;
|
|
736
|
-
/**
|
|
737
|
-
* Last name of the billing contact person.
|
|
738
|
-
*/
|
|
739
|
-
last_name: string;
|
|
740
|
-
};
|
|
561
|
+
company_name: string;
|
|
741
562
|
/**
|
|
742
563
|
* 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.
|
|
743
564
|
*/
|
|
744
565
|
password: string;
|
|
745
566
|
};
|
|
746
567
|
export type Organization = {
|
|
747
|
-
/**
|
|
748
|
-
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
749
|
-
*/
|
|
750
|
-
name: string;
|
|
751
|
-
/**
|
|
752
|
-
* Organization contact information and billing address.
|
|
753
|
-
*/
|
|
754
|
-
contactInfo: {
|
|
755
|
-
/**
|
|
756
|
-
* Street address, P.O. box, c/o
|
|
757
|
-
*/
|
|
758
|
-
address1?: string;
|
|
759
|
-
/**
|
|
760
|
-
* Apartment, suite, unit, building, floor, etc.
|
|
761
|
-
*/
|
|
762
|
-
address2?: string;
|
|
763
|
-
/**
|
|
764
|
-
* Postal code as a string.
|
|
765
|
-
*/
|
|
766
|
-
postalCode?: string;
|
|
767
|
-
/**
|
|
768
|
-
* City or town name.
|
|
769
|
-
*/
|
|
770
|
-
city?: string;
|
|
771
|
-
/**
|
|
772
|
-
* State, province, or region name.
|
|
773
|
-
*/
|
|
774
|
-
state?: string;
|
|
775
|
-
/**
|
|
776
|
-
* Country as a ISO 3166-1 alpha-2 country code.
|
|
777
|
-
*/
|
|
778
|
-
country?: string;
|
|
779
|
-
/**
|
|
780
|
-
* Phone number as a string.
|
|
781
|
-
*/
|
|
782
|
-
phone?: string;
|
|
783
|
-
/**
|
|
784
|
-
* Email address used for billing as a string.
|
|
785
|
-
*/
|
|
786
|
-
email: string;
|
|
787
|
-
/**
|
|
788
|
-
* First name of the billing contact person.
|
|
789
|
-
*/
|
|
790
|
-
first_name: string;
|
|
791
|
-
/**
|
|
792
|
-
* Last name of the billing contact person.
|
|
793
|
-
*/
|
|
794
|
-
last_name: string;
|
|
795
|
-
};
|
|
796
568
|
/**
|
|
797
569
|
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
798
570
|
*/
|
|
799
571
|
id: string;
|
|
572
|
+
/**
|
|
573
|
+
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
574
|
+
*/
|
|
575
|
+
name?: string;
|
|
800
576
|
/**
|
|
801
577
|
* Creation date of the organization. ISO 8601 date string in UTC timezone
|
|
802
578
|
*/
|
|
@@ -825,10 +601,6 @@ export type Organization = {
|
|
|
825
601
|
* Maximum number of fleets that can be created per cluster.
|
|
826
602
|
*/
|
|
827
603
|
fleets_max: number;
|
|
828
|
-
/**
|
|
829
|
-
* Maximum number of CPU cores per managed fleet.
|
|
830
|
-
*/
|
|
831
|
-
managed_fleets_cpu_max: number;
|
|
832
604
|
/**
|
|
833
605
|
* List of Cloudfleet cluster tiers available for the organization.
|
|
834
606
|
*/
|
|
@@ -850,96 +622,240 @@ export type Organization = {
|
|
|
850
622
|
*/
|
|
851
623
|
label: string;
|
|
852
624
|
}>;
|
|
625
|
+
/**
|
|
626
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
627
|
+
*/
|
|
628
|
+
cfcr_storage_gb: number;
|
|
853
629
|
};
|
|
854
|
-
/**
|
|
855
|
-
* List of pending actions that the user needs to complete. Used in Cloudfleet console to guide the user through the onboarding process.
|
|
856
|
-
*/
|
|
857
|
-
pending_actions: Array<'signup-billing-address' | 'signup-payment-method' | 'signup-invite-team' | 'signup-create-cluster'>;
|
|
858
630
|
/**
|
|
859
631
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
860
632
|
*/
|
|
861
633
|
status: 'active' | 'closed' | 'suspended';
|
|
862
634
|
};
|
|
863
|
-
export type
|
|
635
|
+
export type PaymentMethod = {
|
|
864
636
|
/**
|
|
865
|
-
*
|
|
637
|
+
* Unique identifier of the organization. UUID v4 string in canonical form.
|
|
866
638
|
*/
|
|
867
|
-
|
|
639
|
+
id: string;
|
|
868
640
|
/**
|
|
869
|
-
*
|
|
641
|
+
* Whether organization payment method was set up and ready to use for payments.
|
|
870
642
|
*/
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
643
|
+
setup: boolean;
|
|
644
|
+
/**
|
|
645
|
+
* Payment method type type. Only `card` payments supported at the moment.
|
|
646
|
+
*/
|
|
647
|
+
type: 'card';
|
|
648
|
+
/**
|
|
649
|
+
* Last 4 digits of the payment card number.
|
|
650
|
+
*/
|
|
651
|
+
last4: string;
|
|
652
|
+
/**
|
|
653
|
+
* Two-digit number representing the card's expiration month.
|
|
654
|
+
*/
|
|
655
|
+
exp_month: number;
|
|
656
|
+
/**
|
|
657
|
+
* Four-digit number representing the card's expiration year.
|
|
658
|
+
*/
|
|
659
|
+
exp_year: number;
|
|
660
|
+
/**
|
|
661
|
+
* Payment card brand. Can be `amex`, `diners`, `discover`, `eftpos_au`, `jcb`, `mastercard`, `unionpay`, `visa`, or `unknown`.
|
|
662
|
+
*/
|
|
663
|
+
brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
664
|
+
};
|
|
665
|
+
export type PlatformQuota = {
|
|
666
|
+
/**
|
|
667
|
+
* Maximum number of Basic clusters that can be created.
|
|
668
|
+
*/
|
|
669
|
+
basic_clusters_max: number;
|
|
670
|
+
/**
|
|
671
|
+
* Available number of Basic clusters that can be created.
|
|
672
|
+
*/
|
|
673
|
+
basic_clusters_available: number;
|
|
674
|
+
/**
|
|
675
|
+
* Maximum number of Pro clusters that can be created.
|
|
676
|
+
*/
|
|
677
|
+
pro_clusters_max: number;
|
|
678
|
+
/**
|
|
679
|
+
* Available number of Pro clusters that can be created.
|
|
680
|
+
*/
|
|
681
|
+
pro_clusters_available: number;
|
|
682
|
+
/**
|
|
683
|
+
* Maximum number of fleets that can be created per cluster.
|
|
684
|
+
*/
|
|
685
|
+
fleets_max: number;
|
|
686
|
+
/**
|
|
687
|
+
* List of Cloudfleet cluster tiers available for the organization.
|
|
688
|
+
*/
|
|
689
|
+
cluster_tiers: Array<string>;
|
|
690
|
+
/**
|
|
691
|
+
* List of Cloudfleet control plane regions available for the organization.
|
|
692
|
+
*/
|
|
693
|
+
regions: Array<string>;
|
|
694
|
+
/**
|
|
695
|
+
* List of CFKE control plane versions available for the organization.
|
|
696
|
+
*/
|
|
697
|
+
versions: Array<{
|
|
876
698
|
/**
|
|
877
|
-
*
|
|
699
|
+
* Id of the control plane version. Used in API calls.
|
|
878
700
|
*/
|
|
879
|
-
|
|
701
|
+
id: string;
|
|
880
702
|
/**
|
|
881
|
-
*
|
|
703
|
+
* Label of the control plane version. Used in frontent UI.
|
|
882
704
|
*/
|
|
883
|
-
|
|
705
|
+
label: string;
|
|
706
|
+
}>;
|
|
707
|
+
/**
|
|
708
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
709
|
+
*/
|
|
710
|
+
cfcr_storage_gb: number;
|
|
711
|
+
};
|
|
712
|
+
export type RegistryRepository = {
|
|
713
|
+
/**
|
|
714
|
+
* Repository name.
|
|
715
|
+
*/
|
|
716
|
+
name: string;
|
|
717
|
+
/**
|
|
718
|
+
* Registry region.
|
|
719
|
+
*/
|
|
720
|
+
region: string;
|
|
721
|
+
/**
|
|
722
|
+
* Full URI of the repository.
|
|
723
|
+
*/
|
|
724
|
+
uri: string;
|
|
725
|
+
};
|
|
726
|
+
export type RegistryRepositoryWithTags = {
|
|
727
|
+
/**
|
|
728
|
+
* Repository name.
|
|
729
|
+
*/
|
|
730
|
+
name: string;
|
|
731
|
+
/**
|
|
732
|
+
* Registry region.
|
|
733
|
+
*/
|
|
734
|
+
region: string;
|
|
735
|
+
/**
|
|
736
|
+
* Full URI of the repository.
|
|
737
|
+
*/
|
|
738
|
+
uri: string;
|
|
739
|
+
/**
|
|
740
|
+
* Array of tags in the repository.
|
|
741
|
+
*/
|
|
742
|
+
tags: Array<{
|
|
884
743
|
/**
|
|
885
|
-
*
|
|
744
|
+
* Tag name.
|
|
886
745
|
*/
|
|
887
|
-
|
|
746
|
+
name: string;
|
|
888
747
|
/**
|
|
889
|
-
*
|
|
748
|
+
* Size of the tag in bytes.
|
|
890
749
|
*/
|
|
891
|
-
|
|
750
|
+
size: number;
|
|
892
751
|
/**
|
|
893
|
-
*
|
|
752
|
+
* Media type of the manifest.
|
|
894
753
|
*/
|
|
895
|
-
|
|
754
|
+
mediaType?: string;
|
|
896
755
|
/**
|
|
897
|
-
*
|
|
756
|
+
* Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
|
|
898
757
|
*/
|
|
899
|
-
|
|
758
|
+
platforms?: Array<string>;
|
|
759
|
+
}>;
|
|
760
|
+
/**
|
|
761
|
+
* Total size of all tags in the repository in bytes.
|
|
762
|
+
*/
|
|
763
|
+
totalSize: number;
|
|
764
|
+
};
|
|
765
|
+
export type RegistryTag = {
|
|
766
|
+
/**
|
|
767
|
+
* Tag name.
|
|
768
|
+
*/
|
|
769
|
+
name: string;
|
|
770
|
+
/**
|
|
771
|
+
* Manifest digest for pulling by digest.
|
|
772
|
+
*/
|
|
773
|
+
digest: string;
|
|
774
|
+
/**
|
|
775
|
+
* Media type of the manifest.
|
|
776
|
+
*/
|
|
777
|
+
mediaType?: string;
|
|
778
|
+
/**
|
|
779
|
+
* Manifest config metadata.
|
|
780
|
+
*/
|
|
781
|
+
config?: {
|
|
900
782
|
/**
|
|
901
|
-
*
|
|
783
|
+
* Size of the config in bytes.
|
|
902
784
|
*/
|
|
903
|
-
|
|
785
|
+
size: number;
|
|
786
|
+
};
|
|
787
|
+
/**
|
|
788
|
+
* Array of layer metadata.
|
|
789
|
+
*/
|
|
790
|
+
layers?: Array<{
|
|
904
791
|
/**
|
|
905
|
-
*
|
|
792
|
+
* Digest of the layer.
|
|
906
793
|
*/
|
|
907
|
-
|
|
794
|
+
digest?: string;
|
|
908
795
|
/**
|
|
909
|
-
*
|
|
796
|
+
* Size of the layer in bytes.
|
|
910
797
|
*/
|
|
911
|
-
|
|
912
|
-
}
|
|
913
|
-
};
|
|
914
|
-
export type PaymentMethod = {
|
|
915
|
-
/**
|
|
916
|
-
* Unique identifier of the organization. UUID v4 string in canonical form.
|
|
917
|
-
*/
|
|
918
|
-
id: string;
|
|
919
|
-
/**
|
|
920
|
-
* Whether organization payment method was set up and ready to use for payments.
|
|
921
|
-
*/
|
|
922
|
-
setup: boolean;
|
|
798
|
+
size: number;
|
|
799
|
+
}>;
|
|
923
800
|
/**
|
|
924
|
-
*
|
|
801
|
+
* Array of manifests for multi-arch images.
|
|
925
802
|
*/
|
|
926
|
-
|
|
803
|
+
manifests?: Array<{
|
|
804
|
+
/**
|
|
805
|
+
* Digest of the manifest.
|
|
806
|
+
*/
|
|
807
|
+
digest: string;
|
|
808
|
+
/**
|
|
809
|
+
* Platform information for the manifest.
|
|
810
|
+
*/
|
|
811
|
+
platform?: {
|
|
812
|
+
/**
|
|
813
|
+
* Architecture of the platform.
|
|
814
|
+
*/
|
|
815
|
+
architecture: string;
|
|
816
|
+
/**
|
|
817
|
+
* Operating system of the platform.
|
|
818
|
+
*/
|
|
819
|
+
os: string;
|
|
820
|
+
/**
|
|
821
|
+
* Variant of the platform (e.g., v7, v8 for ARM).
|
|
822
|
+
*/
|
|
823
|
+
variant?: string;
|
|
824
|
+
};
|
|
825
|
+
/**
|
|
826
|
+
* Layers for this platform.
|
|
827
|
+
*/
|
|
828
|
+
layers?: Array<{
|
|
829
|
+
/**
|
|
830
|
+
* Digest of the layer.
|
|
831
|
+
*/
|
|
832
|
+
digest?: string;
|
|
833
|
+
/**
|
|
834
|
+
* Size of the layer in bytes.
|
|
835
|
+
*/
|
|
836
|
+
size: number;
|
|
837
|
+
}>;
|
|
838
|
+
/**
|
|
839
|
+
* Total size of this platform manifest in bytes.
|
|
840
|
+
*/
|
|
841
|
+
size?: number;
|
|
842
|
+
}>;
|
|
927
843
|
/**
|
|
928
|
-
*
|
|
844
|
+
* Total size of the tag in bytes.
|
|
929
845
|
*/
|
|
930
|
-
|
|
846
|
+
size: number;
|
|
931
847
|
/**
|
|
932
|
-
*
|
|
848
|
+
* Registry region.
|
|
933
849
|
*/
|
|
934
|
-
|
|
850
|
+
region: string;
|
|
935
851
|
/**
|
|
936
|
-
*
|
|
852
|
+
* Repository name.
|
|
937
853
|
*/
|
|
938
|
-
|
|
854
|
+
repository: string;
|
|
939
855
|
/**
|
|
940
|
-
*
|
|
856
|
+
* Full URI of the tag.
|
|
941
857
|
*/
|
|
942
|
-
|
|
858
|
+
uri: string;
|
|
943
859
|
};
|
|
944
860
|
export type TokenCreateInput = {
|
|
945
861
|
/**
|
|
@@ -983,20 +899,85 @@ export type TokenUpdateInput = {
|
|
|
983
899
|
*/
|
|
984
900
|
role?: 'Administrator' | 'User';
|
|
985
901
|
};
|
|
902
|
+
export type UsageFacets = {
|
|
903
|
+
/**
|
|
904
|
+
* List of unique cluster IDs
|
|
905
|
+
*/
|
|
906
|
+
cluster_id?: Array<string>;
|
|
907
|
+
/**
|
|
908
|
+
* List of unique products
|
|
909
|
+
*/
|
|
910
|
+
product?: Array<string>;
|
|
911
|
+
};
|
|
912
|
+
export type UsageResponse = {
|
|
913
|
+
/**
|
|
914
|
+
* Usage data
|
|
915
|
+
*/
|
|
916
|
+
data: Array<{
|
|
917
|
+
/**
|
|
918
|
+
* Hour of the usage
|
|
919
|
+
*/
|
|
920
|
+
hour: string;
|
|
921
|
+
/**
|
|
922
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
923
|
+
*/
|
|
924
|
+
cluster_id: string;
|
|
925
|
+
/**
|
|
926
|
+
* The product the usage is associated with
|
|
927
|
+
*/
|
|
928
|
+
product: string;
|
|
929
|
+
/**
|
|
930
|
+
* Consumption
|
|
931
|
+
*/
|
|
932
|
+
value: number;
|
|
933
|
+
/**
|
|
934
|
+
* Price per unit
|
|
935
|
+
*/
|
|
936
|
+
price: number;
|
|
937
|
+
/**
|
|
938
|
+
* Total cost
|
|
939
|
+
*/
|
|
940
|
+
total: number;
|
|
941
|
+
}>;
|
|
942
|
+
/**
|
|
943
|
+
* Facets for filtering
|
|
944
|
+
*/
|
|
945
|
+
facets: {
|
|
946
|
+
/**
|
|
947
|
+
* List of unique cluster IDs
|
|
948
|
+
*/
|
|
949
|
+
cluster_id?: Array<string>;
|
|
950
|
+
/**
|
|
951
|
+
* List of unique products
|
|
952
|
+
*/
|
|
953
|
+
product?: Array<string>;
|
|
954
|
+
};
|
|
955
|
+
};
|
|
986
956
|
export type Usage = {
|
|
987
957
|
/**
|
|
988
|
-
*
|
|
958
|
+
* Hour of the usage
|
|
989
959
|
*/
|
|
990
|
-
|
|
960
|
+
hour: string;
|
|
961
|
+
/**
|
|
962
|
+
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
963
|
+
*/
|
|
964
|
+
cluster_id: string;
|
|
991
965
|
/**
|
|
992
|
-
*
|
|
966
|
+
* The product the usage is associated with
|
|
993
967
|
*/
|
|
994
|
-
|
|
968
|
+
product: string;
|
|
995
969
|
/**
|
|
996
|
-
*
|
|
970
|
+
* Consumption
|
|
997
971
|
*/
|
|
998
|
-
|
|
999
|
-
|
|
972
|
+
value: number;
|
|
973
|
+
/**
|
|
974
|
+
* Price per unit
|
|
975
|
+
*/
|
|
976
|
+
price: number;
|
|
977
|
+
/**
|
|
978
|
+
* Total cost
|
|
979
|
+
*/
|
|
980
|
+
total: number;
|
|
1000
981
|
};
|
|
1001
982
|
export type UserCreateInput = {
|
|
1002
983
|
/**
|
|
@@ -1016,7 +997,7 @@ export type UserCreateInput = {
|
|
|
1016
997
|
*/
|
|
1017
998
|
code: string;
|
|
1018
999
|
/**
|
|
1019
|
-
* User password. Must be at least 8 characters long
|
|
1000
|
+
* User password. Must be at least 8 characters long.
|
|
1020
1001
|
*/
|
|
1021
1002
|
password: string;
|
|
1022
1003
|
/**
|
|
@@ -1057,16 +1038,6 @@ export type User = {
|
|
|
1057
1038
|
* Creation date of the user. ISO 8601 date string in UTC timezone
|
|
1058
1039
|
*/
|
|
1059
1040
|
date_created: string;
|
|
1060
|
-
cluster_permissions?: Array<{
|
|
1061
|
-
/**
|
|
1062
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1063
|
-
*/
|
|
1064
|
-
cluster_id: string;
|
|
1065
|
-
/**
|
|
1066
|
-
* User permissions to access the cluster. Can be `readwrite` or `readonly`.
|
|
1067
|
-
*/
|
|
1068
|
-
permissions: 'readwrite' | 'readonly';
|
|
1069
|
-
}>;
|
|
1070
1041
|
};
|
|
1071
1042
|
export type UserUpdateInput = {
|
|
1072
1043
|
/**
|
|
@@ -1093,15 +1064,11 @@ export type UserUpdateInput = {
|
|
|
1093
1064
|
export type GetUsageData = {
|
|
1094
1065
|
body?: never;
|
|
1095
1066
|
path?: never;
|
|
1096
|
-
query
|
|
1097
|
-
/**
|
|
1098
|
-
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1099
|
-
*/
|
|
1100
|
-
start_date: string;
|
|
1067
|
+
query?: {
|
|
1101
1068
|
/**
|
|
1102
|
-
*
|
|
1069
|
+
* Time granularity for usage aggregation - hourly (Past 48 hours aggregated by hour), daily (Past 30 days aggregated by day), monthly (Past 12 months aggregated by month)
|
|
1103
1070
|
*/
|
|
1104
|
-
|
|
1071
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
1105
1072
|
};
|
|
1106
1073
|
url: '/billing/usage';
|
|
1107
1074
|
};
|
|
@@ -1113,24 +1080,11 @@ export type GetUsageErrors = {
|
|
|
1113
1080
|
};
|
|
1114
1081
|
export type GetUsageResponses = {
|
|
1115
1082
|
/**
|
|
1116
|
-
*
|
|
1083
|
+
* Usage data with facets for filtering
|
|
1117
1084
|
*/
|
|
1118
|
-
200:
|
|
1085
|
+
200: UsageResponse;
|
|
1119
1086
|
};
|
|
1120
1087
|
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
1121
|
-
export type GetBalanceData = {
|
|
1122
|
-
body?: never;
|
|
1123
|
-
path?: never;
|
|
1124
|
-
query?: never;
|
|
1125
|
-
url: '/billing/balance';
|
|
1126
|
-
};
|
|
1127
|
-
export type GetBalanceResponses = {
|
|
1128
|
-
/**
|
|
1129
|
-
* Current balance of the organization in USD as a floating-point number.
|
|
1130
|
-
*/
|
|
1131
|
-
200: number;
|
|
1132
|
-
};
|
|
1133
|
-
export type GetBalanceResponse = GetBalanceResponses[keyof GetBalanceResponses];
|
|
1134
1088
|
export type GetPaymentMethodData = {
|
|
1135
1089
|
body?: never;
|
|
1136
1090
|
path?: never;
|
|
@@ -1172,16 +1126,7 @@ export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[key
|
|
|
1172
1126
|
export type ListInvoicesData = {
|
|
1173
1127
|
body?: never;
|
|
1174
1128
|
path?: never;
|
|
1175
|
-
query
|
|
1176
|
-
/**
|
|
1177
|
-
* Start date for the usage. Date of oldest data point to retrieve.
|
|
1178
|
-
*/
|
|
1179
|
-
start_date: string;
|
|
1180
|
-
/**
|
|
1181
|
-
* End date for the usage. Date of newest data point to retrieve.
|
|
1182
|
-
*/
|
|
1183
|
-
end_date: string;
|
|
1184
|
-
};
|
|
1129
|
+
query?: never;
|
|
1185
1130
|
url: '/billing/invoices';
|
|
1186
1131
|
};
|
|
1187
1132
|
export type ListInvoicesErrors = {
|
|
@@ -1197,26 +1142,182 @@ export type ListInvoicesResponses = {
|
|
|
1197
1142
|
200: Array<Invoice>;
|
|
1198
1143
|
};
|
|
1199
1144
|
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
1200
|
-
export type
|
|
1145
|
+
export type GetContactData = {
|
|
1146
|
+
body?: never;
|
|
1147
|
+
path?: never;
|
|
1148
|
+
query?: never;
|
|
1149
|
+
url: '/billing/contact';
|
|
1150
|
+
};
|
|
1151
|
+
export type GetContactResponses = {
|
|
1152
|
+
/**
|
|
1153
|
+
* Returns a single object containing organization contact and billing address details.
|
|
1154
|
+
*/
|
|
1155
|
+
200: BillingContact;
|
|
1156
|
+
};
|
|
1157
|
+
export type GetContactResponse = GetContactResponses[keyof GetContactResponses];
|
|
1158
|
+
export type UpdateContactData = {
|
|
1159
|
+
body: BillingContact;
|
|
1160
|
+
path?: never;
|
|
1161
|
+
query?: never;
|
|
1162
|
+
url: '/billing/contact';
|
|
1163
|
+
};
|
|
1164
|
+
export type UpdateContactResponses = {
|
|
1165
|
+
/**
|
|
1166
|
+
* Successfully updated. Returns updated organization details.
|
|
1167
|
+
*/
|
|
1168
|
+
200: BillingContact;
|
|
1169
|
+
};
|
|
1170
|
+
export type UpdateContactResponse = UpdateContactResponses[keyof UpdateContactResponses];
|
|
1171
|
+
export type GetCreditsData = {
|
|
1172
|
+
body?: never;
|
|
1173
|
+
path?: never;
|
|
1174
|
+
query?: never;
|
|
1175
|
+
url: '/billing/credits';
|
|
1176
|
+
};
|
|
1177
|
+
export type GetCreditsErrors = {
|
|
1178
|
+
/**
|
|
1179
|
+
* Not authenticated
|
|
1180
|
+
*/
|
|
1181
|
+
401: unknown;
|
|
1182
|
+
};
|
|
1183
|
+
export type GetCreditsResponses = {
|
|
1184
|
+
/**
|
|
1185
|
+
* An array of the applied promotional credits records.
|
|
1186
|
+
*/
|
|
1187
|
+
200: Array<BillingCredits>;
|
|
1188
|
+
};
|
|
1189
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
1190
|
+
export type RedeemCreditsData = {
|
|
1191
|
+
body: {
|
|
1192
|
+
/**
|
|
1193
|
+
* Promotional code to redeem
|
|
1194
|
+
*/
|
|
1195
|
+
code?: string;
|
|
1196
|
+
};
|
|
1197
|
+
path?: never;
|
|
1198
|
+
query?: never;
|
|
1199
|
+
url: '/billing/credits';
|
|
1200
|
+
};
|
|
1201
|
+
export type RedeemCreditsErrors = {
|
|
1202
|
+
/**
|
|
1203
|
+
* Not authenticated
|
|
1204
|
+
*/
|
|
1205
|
+
401: unknown;
|
|
1206
|
+
};
|
|
1207
|
+
export type RedeemCreditsResponses = {
|
|
1208
|
+
/**
|
|
1209
|
+
* Successfully created a new organization.
|
|
1210
|
+
*/
|
|
1211
|
+
200: unknown;
|
|
1212
|
+
};
|
|
1213
|
+
export type ListChartsData = {
|
|
1201
1214
|
body?: never;
|
|
1202
1215
|
path: {
|
|
1203
1216
|
/**
|
|
1204
|
-
* Unique
|
|
1217
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1205
1218
|
*/
|
|
1206
|
-
|
|
1219
|
+
cluster_id: string;
|
|
1207
1220
|
};
|
|
1208
1221
|
query?: never;
|
|
1209
|
-
url: '/
|
|
1222
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1210
1223
|
};
|
|
1211
|
-
export type
|
|
1224
|
+
export type ListChartsErrors = {
|
|
1212
1225
|
/**
|
|
1213
|
-
*
|
|
1226
|
+
* Not authenticated
|
|
1214
1227
|
*/
|
|
1215
|
-
|
|
1216
|
-
|
|
1228
|
+
401: unknown;
|
|
1229
|
+
};
|
|
1230
|
+
export type ListChartsResponses = {
|
|
1231
|
+
/**
|
|
1232
|
+
* An array of charts
|
|
1233
|
+
*/
|
|
1234
|
+
200: Array<Chart>;
|
|
1235
|
+
};
|
|
1236
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
1237
|
+
export type CreateChartData = {
|
|
1238
|
+
body: ChartCreateInput;
|
|
1239
|
+
path: {
|
|
1240
|
+
/**
|
|
1241
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1242
|
+
*/
|
|
1243
|
+
cluster_id: string;
|
|
1244
|
+
};
|
|
1245
|
+
query?: never;
|
|
1246
|
+
url: '/clusters/{cluster_id}/charts';
|
|
1247
|
+
};
|
|
1248
|
+
export type CreateChartResponses = {
|
|
1249
|
+
/**
|
|
1250
|
+
* Successfully created. Returns created Chart ID.
|
|
1251
|
+
*/
|
|
1252
|
+
200: string;
|
|
1253
|
+
};
|
|
1254
|
+
export type CreateChartResponse = CreateChartResponses[keyof CreateChartResponses];
|
|
1255
|
+
export type DeleteChartData = {
|
|
1256
|
+
body?: never;
|
|
1257
|
+
path: {
|
|
1258
|
+
/**
|
|
1259
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1260
|
+
*/
|
|
1261
|
+
cluster_id: string;
|
|
1262
|
+
/**
|
|
1263
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1264
|
+
*/
|
|
1265
|
+
chart_name: string;
|
|
1266
|
+
};
|
|
1267
|
+
query?: never;
|
|
1268
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1269
|
+
};
|
|
1270
|
+
export type DeleteChartResponses = {
|
|
1271
|
+
/**
|
|
1272
|
+
* Successfully deleted.
|
|
1273
|
+
*/
|
|
1274
|
+
200: string;
|
|
1275
|
+
};
|
|
1276
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
1277
|
+
export type GetChartData = {
|
|
1278
|
+
body?: never;
|
|
1279
|
+
path: {
|
|
1280
|
+
/**
|
|
1281
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1282
|
+
*/
|
|
1283
|
+
cluster_id: string;
|
|
1284
|
+
/**
|
|
1285
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1286
|
+
*/
|
|
1287
|
+
chart_name: string;
|
|
1288
|
+
};
|
|
1289
|
+
query?: never;
|
|
1290
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1291
|
+
};
|
|
1292
|
+
export type GetChartResponses = {
|
|
1293
|
+
/**
|
|
1294
|
+
* Returns a single object containing chart details.
|
|
1295
|
+
*/
|
|
1296
|
+
200: Chart;
|
|
1297
|
+
};
|
|
1298
|
+
export type GetChartResponse = GetChartResponses[keyof GetChartResponses];
|
|
1299
|
+
export type UpdateChartData = {
|
|
1300
|
+
body: ChartUpdateInput;
|
|
1301
|
+
path: {
|
|
1302
|
+
/**
|
|
1303
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1304
|
+
*/
|
|
1305
|
+
cluster_id: string;
|
|
1306
|
+
/**
|
|
1307
|
+
* Chart deployment name as the unique identifier of the chart.
|
|
1308
|
+
*/
|
|
1309
|
+
chart_name: string;
|
|
1217
1310
|
};
|
|
1311
|
+
query?: never;
|
|
1312
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
1313
|
+
};
|
|
1314
|
+
export type UpdateChartResponses = {
|
|
1315
|
+
/**
|
|
1316
|
+
* Successfully updated.
|
|
1317
|
+
*/
|
|
1318
|
+
200: string;
|
|
1218
1319
|
};
|
|
1219
|
-
export type
|
|
1320
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
1220
1321
|
export type ListFleetsData = {
|
|
1221
1322
|
body?: never;
|
|
1222
1323
|
path: {
|
|
@@ -1452,279 +1553,57 @@ export type UpdateClusterResponses = {
|
|
|
1452
1553
|
/**
|
|
1453
1554
|
* Successfully updated. Returns updated cluster details.
|
|
1454
1555
|
*/
|
|
1455
|
-
200: Cluster;
|
|
1456
|
-
};
|
|
1457
|
-
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
1458
|
-
export type
|
|
1459
|
-
body?: never;
|
|
1460
|
-
path: {
|
|
1461
|
-
/**
|
|
1462
|
-
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1463
|
-
*/
|
|
1464
|
-
cluster_id: string;
|
|
1465
|
-
};
|
|
1466
|
-
query?: never;
|
|
1467
|
-
url: '/clusters/{cluster_id}/join_information';
|
|
1468
|
-
};
|
|
1469
|
-
export type GetJoinInformationErrors = {
|
|
1470
|
-
/**
|
|
1471
|
-
* Not authenticated
|
|
1472
|
-
*/
|
|
1473
|
-
401: unknown;
|
|
1474
|
-
};
|
|
1475
|
-
export type GetJoinInformationResponses = {
|
|
1476
|
-
/**
|
|
1477
|
-
* An object of cluster join information
|
|
1478
|
-
*/
|
|
1479
|
-
200: Cluster;
|
|
1480
|
-
};
|
|
1481
|
-
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
1482
|
-
export type GetInfrastructureData = {
|
|
1483
|
-
body?: never;
|
|
1484
|
-
path?: never;
|
|
1485
|
-
query?: {
|
|
1486
|
-
/**
|
|
1487
|
-
* Version of the task definition. Currently only version 1 is supported.
|
|
1488
|
-
*/
|
|
1489
|
-
version?: 1;
|
|
1490
|
-
/**
|
|
1491
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
1492
|
-
*/
|
|
1493
|
-
provider?: Array<string>;
|
|
1494
|
-
/**
|
|
1495
|
-
* 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/)
|
|
1496
|
-
*/
|
|
1497
|
-
region?: Array<string>;
|
|
1498
|
-
/**
|
|
1499
|
-
* 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/)
|
|
1500
|
-
*/
|
|
1501
|
-
sub_region?: Array<string>;
|
|
1502
|
-
/**
|
|
1503
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
1504
|
-
*/
|
|
1505
|
-
csp_region?: Array<string>;
|
|
1506
|
-
/**
|
|
1507
|
-
* Limits selection of instance types to this list. Instance / VM type as defined by the cloud service provider
|
|
1508
|
-
*/
|
|
1509
|
-
instance_type?: Array<string>;
|
|
1510
|
-
/**
|
|
1511
|
-
* 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
|
|
1512
|
-
*/
|
|
1513
|
-
accelerator_name?: Array<string>;
|
|
1514
|
-
/**
|
|
1515
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1516
|
-
*/
|
|
1517
|
-
accelerator_manufacturer?: Array<string>;
|
|
1518
|
-
/**
|
|
1519
|
-
* 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.
|
|
1520
|
-
*/
|
|
1521
|
-
accelerator_count_min?: number;
|
|
1522
|
-
/**
|
|
1523
|
-
* 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.
|
|
1524
|
-
*/
|
|
1525
|
-
accelerator_count_max?: number;
|
|
1526
|
-
/**
|
|
1527
|
-
* 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
|
|
1528
|
-
*/
|
|
1529
|
-
accelerator_memory_min?: number;
|
|
1530
|
-
/**
|
|
1531
|
-
* 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
|
|
1532
|
-
*/
|
|
1533
|
-
accelerator_memory_max?: number;
|
|
1534
|
-
/**
|
|
1535
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
1536
|
-
*/
|
|
1537
|
-
memory_min?: number;
|
|
1538
|
-
/**
|
|
1539
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
1540
|
-
*/
|
|
1541
|
-
memory_max?: number;
|
|
1542
|
-
/**
|
|
1543
|
-
* 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.
|
|
1544
|
-
*/
|
|
1545
|
-
vcpu_min?: number;
|
|
1546
|
-
/**
|
|
1547
|
-
* 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.
|
|
1548
|
-
*/
|
|
1549
|
-
vcpu_max?: number;
|
|
1550
|
-
/**
|
|
1551
|
-
* Minimum total storage in GiB (attached and local)
|
|
1552
|
-
*/
|
|
1553
|
-
storage_total_min?: number;
|
|
1554
|
-
/**
|
|
1555
|
-
* Maximum total storage in GiB (attached and local)
|
|
1556
|
-
*/
|
|
1557
|
-
storage_total_max?: number;
|
|
1558
|
-
/**
|
|
1559
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1560
|
-
*/
|
|
1561
|
-
storage_local_min?: number;
|
|
1562
|
-
/**
|
|
1563
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1564
|
-
*/
|
|
1565
|
-
storage_local_max?: number;
|
|
1566
|
-
/**
|
|
1567
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1568
|
-
*/
|
|
1569
|
-
price_min?: number;
|
|
1556
|
+
200: Cluster;
|
|
1557
|
+
};
|
|
1558
|
+
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
1559
|
+
export type GetClusterCaData = {
|
|
1560
|
+
body?: never;
|
|
1561
|
+
path: {
|
|
1570
1562
|
/**
|
|
1571
|
-
*
|
|
1563
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1572
1564
|
*/
|
|
1573
|
-
|
|
1565
|
+
cluster_id: string;
|
|
1574
1566
|
};
|
|
1575
|
-
|
|
1567
|
+
query?: never;
|
|
1568
|
+
url: '/clusters/{cluster_id}/ca';
|
|
1576
1569
|
};
|
|
1577
|
-
export type
|
|
1570
|
+
export type GetClusterCaErrors = {
|
|
1578
1571
|
/**
|
|
1579
|
-
*
|
|
1572
|
+
* Cluster not found, or its certificate authority is not available yet.
|
|
1580
1573
|
*/
|
|
1581
|
-
|
|
1574
|
+
404: unknown;
|
|
1582
1575
|
};
|
|
1583
|
-
export type
|
|
1584
|
-
export type GetInfrastructureResponses = {
|
|
1576
|
+
export type GetClusterCaResponses = {
|
|
1585
1577
|
/**
|
|
1586
|
-
*
|
|
1578
|
+
* PEM-encoded certificate authority of the cluster.
|
|
1587
1579
|
*/
|
|
1588
|
-
200:
|
|
1580
|
+
200: string;
|
|
1589
1581
|
};
|
|
1590
|
-
export type
|
|
1591
|
-
export type
|
|
1582
|
+
export type GetClusterCaResponse = GetClusterCaResponses[keyof GetClusterCaResponses];
|
|
1583
|
+
export type GetJoinInformationData = {
|
|
1592
1584
|
body?: never;
|
|
1593
|
-
path
|
|
1585
|
+
path: {
|
|
1586
|
+
/**
|
|
1587
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1588
|
+
*/
|
|
1589
|
+
cluster_id: string;
|
|
1590
|
+
};
|
|
1594
1591
|
query?: never;
|
|
1595
|
-
url: '/
|
|
1592
|
+
url: '/clusters/{cluster_id}/join_information';
|
|
1596
1593
|
};
|
|
1597
|
-
export type
|
|
1594
|
+
export type GetJoinInformationErrors = {
|
|
1598
1595
|
/**
|
|
1599
|
-
*
|
|
1596
|
+
* Not authenticated
|
|
1600
1597
|
*/
|
|
1601
|
-
|
|
1602
|
-
/**
|
|
1603
|
-
* Limit selection of cloud providers to this list. For the full list of supported providers, see [Providers](https://cloudfleet.ai/docs/cloud-infrastructure/providers/)
|
|
1604
|
-
*/
|
|
1605
|
-
provider?: Array<string>;
|
|
1606
|
-
/**
|
|
1607
|
-
* 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/)
|
|
1608
|
-
*/
|
|
1609
|
-
region?: Array<string>;
|
|
1610
|
-
/**
|
|
1611
|
-
* 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/)
|
|
1612
|
-
*/
|
|
1613
|
-
sub_region?: Array<string>;
|
|
1614
|
-
/**
|
|
1615
|
-
* Limits selection of cloud regions to this list of canonical provider regions
|
|
1616
|
-
*/
|
|
1617
|
-
csp_region?: Array<string>;
|
|
1618
|
-
/**
|
|
1619
|
-
* 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.
|
|
1620
|
-
*/
|
|
1621
|
-
vcpu_min?: number;
|
|
1622
|
-
/**
|
|
1623
|
-
* 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.
|
|
1624
|
-
*/
|
|
1625
|
-
vcpu_max?: number;
|
|
1626
|
-
/**
|
|
1627
|
-
* Minimum amount of RAM in gibibytes (GiB)
|
|
1628
|
-
*/
|
|
1629
|
-
memory_min?: number;
|
|
1630
|
-
/**
|
|
1631
|
-
* Maximum amount of RAM in gibibytes (GiB)
|
|
1632
|
-
*/
|
|
1633
|
-
memory_max?: number;
|
|
1634
|
-
/**
|
|
1635
|
-
* Minimum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1636
|
-
*/
|
|
1637
|
-
storage_local_min?: number;
|
|
1638
|
-
/**
|
|
1639
|
-
* Maximum volume of directly attached, block-device local storage in gibibytes (GiB)
|
|
1640
|
-
*/
|
|
1641
|
-
storage_local_max?: number;
|
|
1642
|
-
/**
|
|
1643
|
-
* 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
|
|
1644
|
-
*/
|
|
1645
|
-
accelerator_name?: Array<string>;
|
|
1646
|
-
/**
|
|
1647
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1648
|
-
*/
|
|
1649
|
-
accelerator_manufacturer?: Array<string>;
|
|
1650
|
-
/**
|
|
1651
|
-
* 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.
|
|
1652
|
-
*/
|
|
1653
|
-
accelerator_count_min?: number;
|
|
1654
|
-
/**
|
|
1655
|
-
* 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.
|
|
1656
|
-
*/
|
|
1657
|
-
accelerator_count_max?: number;
|
|
1658
|
-
/**
|
|
1659
|
-
* 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
|
|
1660
|
-
*/
|
|
1661
|
-
accelerator_memory_min?: number;
|
|
1662
|
-
/**
|
|
1663
|
-
* 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
|
|
1664
|
-
*/
|
|
1665
|
-
accelerator_memory_max?: number;
|
|
1666
|
-
/**
|
|
1667
|
-
* Minimum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1668
|
-
*/
|
|
1669
|
-
price_min?: number;
|
|
1670
|
-
/**
|
|
1671
|
-
* Maximum price of running the inctance per hour in USD as defined by the cloud service provider. The cheapest instance will be selected.
|
|
1672
|
-
*/
|
|
1673
|
-
price_max?: number;
|
|
1674
|
-
/**
|
|
1675
|
-
* Structured array of regions and sub-regions
|
|
1676
|
-
*/
|
|
1677
|
-
regions_struct?: Array<{
|
|
1678
|
-
/**
|
|
1679
|
-
* 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/)
|
|
1680
|
-
*/
|
|
1681
|
-
region?: string;
|
|
1682
|
-
sub_region?: Array<string>;
|
|
1683
|
-
}>;
|
|
1684
|
-
/**
|
|
1685
|
-
* Structured array of regions and sub-regions
|
|
1686
|
-
*/
|
|
1687
|
-
accelerators_struct?: Array<{
|
|
1688
|
-
/**
|
|
1689
|
-
* List of normalized accelerator manufacturer names. For example, all Nvidia GPUs will have 'NVIDIA' as accelerator manufacturer
|
|
1690
|
-
*/
|
|
1691
|
-
accelerator_manufacturer?: string;
|
|
1692
|
-
accelerator_name?: Array<string>;
|
|
1693
|
-
}>;
|
|
1694
|
-
/**
|
|
1695
|
-
* Total number of instances in the catalog
|
|
1696
|
-
*/
|
|
1697
|
-
count_total?: number;
|
|
1698
|
-
/**
|
|
1699
|
-
* Total number of instances in the catalog with at least 1 accelerator
|
|
1700
|
-
*/
|
|
1701
|
-
count_accelerators?: number;
|
|
1702
|
-
/**
|
|
1703
|
-
* Total number of unique instances types in the catalog
|
|
1704
|
-
*/
|
|
1705
|
-
count_instance_types?: number;
|
|
1706
|
-
/**
|
|
1707
|
-
* Total number of unique instances types in the catalog with at least 1 accelerator
|
|
1708
|
-
*/
|
|
1709
|
-
count_accelerators_instance_types?: number;
|
|
1710
|
-
}>;
|
|
1711
|
-
};
|
|
1712
|
-
export type GetFacetsResponse = GetFacetsResponses[keyof GetFacetsResponses];
|
|
1713
|
-
export type GetRegionsData = {
|
|
1714
|
-
body?: never;
|
|
1715
|
-
path?: never;
|
|
1716
|
-
query?: never;
|
|
1717
|
-
url: '/infrastructure/regions';
|
|
1598
|
+
401: unknown;
|
|
1718
1599
|
};
|
|
1719
|
-
export type
|
|
1600
|
+
export type GetJoinInformationResponses = {
|
|
1720
1601
|
/**
|
|
1721
|
-
*
|
|
1602
|
+
* An object of cluster join information
|
|
1722
1603
|
*/
|
|
1723
|
-
200:
|
|
1724
|
-
[key: string]: unknown;
|
|
1725
|
-
};
|
|
1604
|
+
200: ClusterJoinInformation;
|
|
1726
1605
|
};
|
|
1727
|
-
export type
|
|
1606
|
+
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
1728
1607
|
export type ListInvitesData = {
|
|
1729
1608
|
body?: never;
|
|
1730
1609
|
path?: never;
|
|
@@ -1797,6 +1676,95 @@ export type DeleteInviteResponses = {
|
|
|
1797
1676
|
*/
|
|
1798
1677
|
200: unknown;
|
|
1799
1678
|
};
|
|
1679
|
+
export type ListMarketplaceChartsData = {
|
|
1680
|
+
body?: never;
|
|
1681
|
+
path?: never;
|
|
1682
|
+
query?: never;
|
|
1683
|
+
url: '/marketplace';
|
|
1684
|
+
};
|
|
1685
|
+
export type ListMarketplaceChartsErrors = {
|
|
1686
|
+
/**
|
|
1687
|
+
* Not authenticated
|
|
1688
|
+
*/
|
|
1689
|
+
401: unknown;
|
|
1690
|
+
};
|
|
1691
|
+
export type ListMarketplaceChartsResponses = {
|
|
1692
|
+
/**
|
|
1693
|
+
* An array of chart listings in the marketplace.
|
|
1694
|
+
*/
|
|
1695
|
+
200: Array<MarketplaceListing>;
|
|
1696
|
+
};
|
|
1697
|
+
export type ListMarketplaceChartsResponse = ListMarketplaceChartsResponses[keyof ListMarketplaceChartsResponses];
|
|
1698
|
+
export type GetMarketplaceChartFilesData = {
|
|
1699
|
+
body?: never;
|
|
1700
|
+
path: {
|
|
1701
|
+
/**
|
|
1702
|
+
* Name of the chart in the marketplace.
|
|
1703
|
+
*/
|
|
1704
|
+
chart_name: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Version channel pattern to match (e.g., "1.31.x-cfke.x" for latest 1.31 patch, "1.x.x-cfke.x" for latest 1.x minor).
|
|
1707
|
+
*/
|
|
1708
|
+
version_channel: string;
|
|
1709
|
+
};
|
|
1710
|
+
query?: never;
|
|
1711
|
+
url: '/marketplace/{chart_name}/files/{version_channel}';
|
|
1712
|
+
};
|
|
1713
|
+
export type GetMarketplaceChartFilesErrors = {
|
|
1714
|
+
/**
|
|
1715
|
+
* Chart not found or no version matches the channel
|
|
1716
|
+
*/
|
|
1717
|
+
404: unknown;
|
|
1718
|
+
};
|
|
1719
|
+
export type GetMarketplaceChartFilesResponses = {
|
|
1720
|
+
/**
|
|
1721
|
+
* Returns an object containing the chart files for the latest matching version.
|
|
1722
|
+
*/
|
|
1723
|
+
200: MarketplaceListingFiles;
|
|
1724
|
+
};
|
|
1725
|
+
export type GetMarketplaceChartFilesResponse = GetMarketplaceChartFilesResponses[keyof GetMarketplaceChartFilesResponses];
|
|
1726
|
+
export type PostMcpData = {
|
|
1727
|
+
/**
|
|
1728
|
+
* JSON-RPC 2.0 request payload
|
|
1729
|
+
*/
|
|
1730
|
+
body: {
|
|
1731
|
+
jsonrpc?: string;
|
|
1732
|
+
method?: string;
|
|
1733
|
+
id?: string | number;
|
|
1734
|
+
/**
|
|
1735
|
+
* Method-specific parameters
|
|
1736
|
+
*/
|
|
1737
|
+
params?: {
|
|
1738
|
+
[key: string]: unknown;
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
path?: never;
|
|
1742
|
+
query?: never;
|
|
1743
|
+
url: '/mcp';
|
|
1744
|
+
};
|
|
1745
|
+
export type PostMcpErrors = {
|
|
1746
|
+
/**
|
|
1747
|
+
* Not authenticated
|
|
1748
|
+
*/
|
|
1749
|
+
401: unknown;
|
|
1750
|
+
};
|
|
1751
|
+
export type PostMcpResponses = {
|
|
1752
|
+
/**
|
|
1753
|
+
* JSON-RPC 2.0 success or error response
|
|
1754
|
+
*/
|
|
1755
|
+
200: {
|
|
1756
|
+
jsonrpc?: string;
|
|
1757
|
+
id?: string | number;
|
|
1758
|
+
result?: {
|
|
1759
|
+
[key: string]: unknown;
|
|
1760
|
+
};
|
|
1761
|
+
error?: {
|
|
1762
|
+
code?: number;
|
|
1763
|
+
message?: string;
|
|
1764
|
+
};
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
export type PostMcpResponse = PostMcpResponses[keyof PostMcpResponses];
|
|
1800
1768
|
export type GetOrganizationData = {
|
|
1801
1769
|
body?: never;
|
|
1802
1770
|
path?: never;
|
|
@@ -1818,24 +1786,148 @@ export type CreateOrganizationData = {
|
|
|
1818
1786
|
};
|
|
1819
1787
|
export type CreateOrganizationResponses = {
|
|
1820
1788
|
/**
|
|
1821
|
-
* Successfully created a new organization.
|
|
1789
|
+
* Successfully created a new organization.
|
|
1822
1790
|
*/
|
|
1823
|
-
200:
|
|
1791
|
+
200: unknown;
|
|
1824
1792
|
};
|
|
1825
|
-
export type
|
|
1826
|
-
|
|
1827
|
-
body: OrganizationUpdateInput;
|
|
1793
|
+
export type ListRepositoriesData = {
|
|
1794
|
+
body?: never;
|
|
1828
1795
|
path?: never;
|
|
1829
1796
|
query?: never;
|
|
1830
|
-
url: '/
|
|
1797
|
+
url: '/registry';
|
|
1831
1798
|
};
|
|
1832
|
-
export type
|
|
1799
|
+
export type ListRepositoriesErrors = {
|
|
1833
1800
|
/**
|
|
1834
|
-
*
|
|
1801
|
+
* Not authenticated
|
|
1835
1802
|
*/
|
|
1836
|
-
|
|
1803
|
+
401: unknown;
|
|
1804
|
+
/**
|
|
1805
|
+
* Internal server error
|
|
1806
|
+
*/
|
|
1807
|
+
500: unknown;
|
|
1808
|
+
};
|
|
1809
|
+
export type ListRepositoriesResponses = {
|
|
1810
|
+
/**
|
|
1811
|
+
* List of repositories
|
|
1812
|
+
*/
|
|
1813
|
+
200: Array<RegistryRepository>;
|
|
1814
|
+
};
|
|
1815
|
+
export type ListRepositoriesResponse = ListRepositoriesResponses[keyof ListRepositoriesResponses];
|
|
1816
|
+
export type ListTagsData = {
|
|
1817
|
+
body?: never;
|
|
1818
|
+
path: {
|
|
1819
|
+
/**
|
|
1820
|
+
* Region where the repository is located
|
|
1821
|
+
*/
|
|
1822
|
+
region: string;
|
|
1823
|
+
/**
|
|
1824
|
+
* Name of the repository
|
|
1825
|
+
*/
|
|
1826
|
+
repository: string;
|
|
1827
|
+
};
|
|
1828
|
+
query?: never;
|
|
1829
|
+
url: '/registry/{region}/{repository}';
|
|
1830
|
+
};
|
|
1831
|
+
export type ListTagsErrors = {
|
|
1832
|
+
/**
|
|
1833
|
+
* Not authenticated
|
|
1834
|
+
*/
|
|
1835
|
+
401: unknown;
|
|
1836
|
+
/**
|
|
1837
|
+
* Repository not found
|
|
1838
|
+
*/
|
|
1839
|
+
404: unknown;
|
|
1840
|
+
/**
|
|
1841
|
+
* Internal server error
|
|
1842
|
+
*/
|
|
1843
|
+
500: unknown;
|
|
1844
|
+
};
|
|
1845
|
+
export type ListTagsResponses = {
|
|
1846
|
+
/**
|
|
1847
|
+
* Repository with tags
|
|
1848
|
+
*/
|
|
1849
|
+
200: RegistryRepositoryWithTags;
|
|
1850
|
+
};
|
|
1851
|
+
export type ListTagsResponse = ListTagsResponses[keyof ListTagsResponses];
|
|
1852
|
+
export type DeleteTagData = {
|
|
1853
|
+
body?: never;
|
|
1854
|
+
path: {
|
|
1855
|
+
/**
|
|
1856
|
+
* Region where the repository is located
|
|
1857
|
+
*/
|
|
1858
|
+
region: string;
|
|
1859
|
+
/**
|
|
1860
|
+
* Name of the repository
|
|
1861
|
+
*/
|
|
1862
|
+
repository: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* Name of the tag
|
|
1865
|
+
*/
|
|
1866
|
+
tag: string;
|
|
1867
|
+
};
|
|
1868
|
+
query?: never;
|
|
1869
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1870
|
+
};
|
|
1871
|
+
export type DeleteTagErrors = {
|
|
1872
|
+
/**
|
|
1873
|
+
* Not authenticated
|
|
1874
|
+
*/
|
|
1875
|
+
401: unknown;
|
|
1876
|
+
/**
|
|
1877
|
+
* Tag not found
|
|
1878
|
+
*/
|
|
1879
|
+
404: unknown;
|
|
1880
|
+
/**
|
|
1881
|
+
* Internal server error
|
|
1882
|
+
*/
|
|
1883
|
+
500: unknown;
|
|
1837
1884
|
};
|
|
1838
|
-
export type
|
|
1885
|
+
export type DeleteTagResponses = {
|
|
1886
|
+
/**
|
|
1887
|
+
* Tag successfully deleted
|
|
1888
|
+
*/
|
|
1889
|
+
200: unknown;
|
|
1890
|
+
};
|
|
1891
|
+
export type GetTagData = {
|
|
1892
|
+
body?: never;
|
|
1893
|
+
path: {
|
|
1894
|
+
/**
|
|
1895
|
+
* Region where the repository is located
|
|
1896
|
+
*/
|
|
1897
|
+
region: string;
|
|
1898
|
+
/**
|
|
1899
|
+
* Name of the repository
|
|
1900
|
+
*/
|
|
1901
|
+
repository: string;
|
|
1902
|
+
/**
|
|
1903
|
+
* Name of the tag
|
|
1904
|
+
*/
|
|
1905
|
+
tag: string;
|
|
1906
|
+
};
|
|
1907
|
+
query?: never;
|
|
1908
|
+
url: '/registry/{region}/{repository}/{tag}';
|
|
1909
|
+
};
|
|
1910
|
+
export type GetTagErrors = {
|
|
1911
|
+
/**
|
|
1912
|
+
* Not authenticated
|
|
1913
|
+
*/
|
|
1914
|
+
401: unknown;
|
|
1915
|
+
/**
|
|
1916
|
+
* Tag not found
|
|
1917
|
+
*/
|
|
1918
|
+
404: unknown;
|
|
1919
|
+
/**
|
|
1920
|
+
* Internal server error
|
|
1921
|
+
*/
|
|
1922
|
+
500: unknown;
|
|
1923
|
+
};
|
|
1924
|
+
export type GetTagResponses = {
|
|
1925
|
+
/**
|
|
1926
|
+
* Tag details
|
|
1927
|
+
*/
|
|
1928
|
+
200: RegistryTag;
|
|
1929
|
+
};
|
|
1930
|
+
export type GetTagResponse = GetTagResponses[keyof GetTagResponses];
|
|
1839
1931
|
export type ListTokensData = {
|
|
1840
1932
|
body?: never;
|
|
1841
1933
|
path?: never;
|
|
@@ -2092,53 +2184,4 @@ export type UpdateUserResponses = {
|
|
|
2092
2184
|
200: User;
|
|
2093
2185
|
};
|
|
2094
2186
|
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
2095
|
-
export type DeleteClusterPermissionsData = {
|
|
2096
|
-
body?: never;
|
|
2097
|
-
path: {
|
|
2098
|
-
/**
|
|
2099
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2100
|
-
*/
|
|
2101
|
-
user_id: string;
|
|
2102
|
-
/**
|
|
2103
|
-
* Unique cluster identifier. UUID v4 string in canonical form
|
|
2104
|
-
*/
|
|
2105
|
-
cluster_id: string;
|
|
2106
|
-
};
|
|
2107
|
-
query?: never;
|
|
2108
|
-
url: '/users/{user_id}/clusters/{cluster_id}';
|
|
2109
|
-
};
|
|
2110
|
-
export type DeleteClusterPermissionsResponses = {
|
|
2111
|
-
/**
|
|
2112
|
-
* Successfully removed user from the cluster. Returns updated user details.
|
|
2113
|
-
*/
|
|
2114
|
-
200: User;
|
|
2115
|
-
};
|
|
2116
|
-
export type DeleteClusterPermissionsResponse = DeleteClusterPermissionsResponses[keyof DeleteClusterPermissionsResponses];
|
|
2117
|
-
export type SetClusterPermissionsData = {
|
|
2118
|
-
body: {
|
|
2119
|
-
/**
|
|
2120
|
-
* Level of permissions for the user to access the cluster
|
|
2121
|
-
*/
|
|
2122
|
-
permissions?: 'readwrite' | 'readonly';
|
|
2123
|
-
};
|
|
2124
|
-
path: {
|
|
2125
|
-
/**
|
|
2126
|
-
* Unique user identifier. UUID v4 string in canonical form
|
|
2127
|
-
*/
|
|
2128
|
-
user_id: string;
|
|
2129
|
-
/**
|
|
2130
|
-
* Unique cluster identifier. UUID v4 string in canonical form
|
|
2131
|
-
*/
|
|
2132
|
-
cluster_id: string;
|
|
2133
|
-
};
|
|
2134
|
-
query?: never;
|
|
2135
|
-
url: '/users/{user_id}/clusters/{cluster_id}';
|
|
2136
|
-
};
|
|
2137
|
-
export type SetClusterPermissionsResponses = {
|
|
2138
|
-
/**
|
|
2139
|
-
* Successfully created. Returns created user details.
|
|
2140
|
-
*/
|
|
2141
|
-
200: User;
|
|
2142
|
-
};
|
|
2143
|
-
export type SetClusterPermissionsResponse = SetClusterPermissionsResponses[keyof SetClusterPermissionsResponses];
|
|
2144
2187
|
//# sourceMappingURL=types.gen.d.ts.map
|