@cloudfleet/sdk 0.0.1-23a36bd → 0.0.1-253c998
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 +4 -4
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/client.gen.js +2 -4
- package/dist/client.gen.js.map +1 -1
- 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 +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/schemas.gen.d.ts +841 -477
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1349 -564
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +207 -65
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +274 -152
- 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 +917 -306
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +1679 -1901
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +676 -752
- package/dist/zod.gen.js.map +1 -1
- package/package.json +31 -5
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
export type ClientOptions = {
|
|
2
|
+
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
3
|
+
};
|
|
1
4
|
export type BillingContact = {
|
|
2
5
|
/**
|
|
3
6
|
* Name of the legal entity. This name will be used in invoices. Use your first and last name for individual accounts.
|
|
@@ -36,31 +39,143 @@ export type BillingContact = {
|
|
|
36
39
|
*/
|
|
37
40
|
email: string;
|
|
38
41
|
/**
|
|
39
|
-
*
|
|
42
|
+
* Name of the billing contact person.
|
|
40
43
|
*/
|
|
41
|
-
|
|
44
|
+
individual_name: string;
|
|
42
45
|
/**
|
|
43
|
-
*
|
|
46
|
+
* Tax ID of the organization.
|
|
44
47
|
*/
|
|
45
|
-
|
|
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' | '';
|
|
46
53
|
};
|
|
47
|
-
export type
|
|
54
|
+
export type BillingCredits = {
|
|
48
55
|
/**
|
|
49
|
-
*
|
|
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.
|
|
50
121
|
*/
|
|
51
122
|
name: string;
|
|
52
123
|
/**
|
|
53
|
-
*
|
|
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.
|
|
54
137
|
*/
|
|
55
|
-
|
|
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.
|
|
165
|
+
*/
|
|
166
|
+
name: string;
|
|
56
167
|
/**
|
|
57
168
|
* Tier of the cluster.
|
|
58
169
|
*/
|
|
59
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';
|
|
60
175
|
/**
|
|
61
176
|
* Version of the kubernetes cluster.
|
|
62
177
|
*/
|
|
63
|
-
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';
|
|
64
179
|
};
|
|
65
180
|
export type ClusterJoinInformation = {
|
|
66
181
|
/**
|
|
@@ -71,6 +186,10 @@ export type ClusterJoinInformation = {
|
|
|
71
186
|
* Internal URL of the Kubernetes cluster control plane. This is the endpoint that kubelet uses to connect to the cluster.
|
|
72
187
|
*/
|
|
73
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;
|
|
74
193
|
/**
|
|
75
194
|
* Authentication key for the cluster.
|
|
76
195
|
*/
|
|
@@ -95,6 +214,10 @@ export type ClusterJoinInformation = {
|
|
|
95
214
|
* Containerd version of the cluster.
|
|
96
215
|
*/
|
|
97
216
|
containerd: string;
|
|
217
|
+
/**
|
|
218
|
+
* NVIDIA driver version of the cluster.
|
|
219
|
+
*/
|
|
220
|
+
nvidia_driver: string;
|
|
98
221
|
};
|
|
99
222
|
/**
|
|
100
223
|
* OIDC Information for hosts to access to third party API's.
|
|
@@ -119,18 +242,14 @@ export type Cluster = {
|
|
|
119
242
|
* Name of the cluster.
|
|
120
243
|
*/
|
|
121
244
|
name: string;
|
|
122
|
-
/**
|
|
123
|
-
* Cloudfleet control plane region. One of "staging", "northamerica-central-1". This field can not be updated after creation.
|
|
124
|
-
*/
|
|
125
|
-
region?: 'staging' | 'northamerica-central-1';
|
|
126
245
|
/**
|
|
127
246
|
* Tier of the cluster.
|
|
128
247
|
*/
|
|
129
248
|
tier: 'basic' | 'pro';
|
|
130
249
|
/**
|
|
131
|
-
*
|
|
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.
|
|
132
251
|
*/
|
|
133
|
-
|
|
252
|
+
region?: 'staging-1a' | 'northamerica-central-1' | 'europe-central-1a' | 'northamerica-central-1a';
|
|
134
253
|
/**
|
|
135
254
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
136
255
|
*/
|
|
@@ -138,7 +257,7 @@ export type Cluster = {
|
|
|
138
257
|
/**
|
|
139
258
|
* Status of the cluster. When creating a new cluster, set to `active`. When deleting a clusters, set to `deleted`.
|
|
140
259
|
*/
|
|
141
|
-
status: 'active' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
|
|
260
|
+
status: 'active' | 'disabled' | 'deleted' | 'creating' | 'deployed' | 'failed' | 'updating';
|
|
142
261
|
endpoint?: string | '';
|
|
143
262
|
/**
|
|
144
263
|
* Certificate authority data for the kubernetes cluster. This is the root certificate authority for the cluster.
|
|
@@ -160,12 +279,20 @@ export type Cluster = {
|
|
|
160
279
|
* Indicates if the cluster is ready to be used.
|
|
161
280
|
*/
|
|
162
281
|
ready?: boolean;
|
|
282
|
+
/**
|
|
283
|
+
* Version of the kubernetes cluster.
|
|
284
|
+
*/
|
|
285
|
+
version_channel?: string;
|
|
163
286
|
};
|
|
164
287
|
export type ClusterUpdateInput = {
|
|
165
288
|
/**
|
|
166
289
|
* Name of the cluster.
|
|
167
290
|
*/
|
|
168
291
|
name?: string;
|
|
292
|
+
/**
|
|
293
|
+
* Tier of the cluster.
|
|
294
|
+
*/
|
|
295
|
+
tier: 'basic' | 'pro';
|
|
169
296
|
/**
|
|
170
297
|
* Version of the kubernetes cluster.
|
|
171
298
|
*/
|
|
@@ -190,10 +317,10 @@ export type FleetCreateInput = {
|
|
|
190
317
|
};
|
|
191
318
|
hetzner?: {
|
|
192
319
|
enabled?: boolean;
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
320
|
+
/**
|
|
321
|
+
* Hetzner Cloud API key with read / write access
|
|
322
|
+
*/
|
|
323
|
+
apiKey: string;
|
|
197
324
|
};
|
|
198
325
|
aws?: {
|
|
199
326
|
enabled?: boolean;
|
|
@@ -206,10 +333,6 @@ export type FleetCreateInput = {
|
|
|
206
333
|
* Unique identifier of the kubernetes fleet.
|
|
207
334
|
*/
|
|
208
335
|
id: string;
|
|
209
|
-
/**
|
|
210
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
211
|
-
*/
|
|
212
|
-
type: 'managed' | 'connected';
|
|
213
336
|
};
|
|
214
337
|
export type Fleet = {
|
|
215
338
|
/**
|
|
@@ -230,10 +353,10 @@ export type Fleet = {
|
|
|
230
353
|
};
|
|
231
354
|
hetzner?: {
|
|
232
355
|
enabled?: boolean;
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
356
|
+
/**
|
|
357
|
+
* Hetzner Cloud API key with read / write access
|
|
358
|
+
*/
|
|
359
|
+
apiKey: string;
|
|
237
360
|
};
|
|
238
361
|
aws?: {
|
|
239
362
|
enabled?: boolean;
|
|
@@ -246,10 +369,6 @@ export type Fleet = {
|
|
|
246
369
|
* Unique identifier of the kubernetes fleet.
|
|
247
370
|
*/
|
|
248
371
|
id: string;
|
|
249
|
-
/**
|
|
250
|
-
* Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.
|
|
251
|
-
*/
|
|
252
|
-
type: 'managed' | 'connected';
|
|
253
372
|
};
|
|
254
373
|
export type FleetUpdateInput = {
|
|
255
374
|
/**
|
|
@@ -270,10 +389,10 @@ export type FleetUpdateInput = {
|
|
|
270
389
|
};
|
|
271
390
|
hetzner?: {
|
|
272
391
|
enabled?: boolean;
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
392
|
+
/**
|
|
393
|
+
* Hetzner Cloud API key with read / write access
|
|
394
|
+
*/
|
|
395
|
+
apiKey: string;
|
|
277
396
|
};
|
|
278
397
|
aws?: {
|
|
279
398
|
enabled?: boolean;
|
|
@@ -307,235 +426,121 @@ export type Invite = {
|
|
|
307
426
|
};
|
|
308
427
|
export type Invoice = {
|
|
309
428
|
/**
|
|
310
|
-
* Unique identifier of the invoice.
|
|
429
|
+
* Unique identifier of the invoice.
|
|
311
430
|
*/
|
|
312
431
|
id?: string;
|
|
313
|
-
|
|
314
|
-
* Unique identifier of the organization. UUID v4 string in canonical form
|
|
315
|
-
*/
|
|
316
|
-
organizationId?: string;
|
|
432
|
+
number?: string;
|
|
317
433
|
/**
|
|
318
434
|
* Status of the invoice
|
|
319
435
|
*/
|
|
320
|
-
status?:
|
|
436
|
+
status?: string;
|
|
321
437
|
/**
|
|
322
438
|
* Total amount of the invoice
|
|
323
439
|
*/
|
|
324
|
-
|
|
440
|
+
total?: number;
|
|
325
441
|
/**
|
|
326
442
|
* Currency of the invoice
|
|
327
443
|
*/
|
|
328
|
-
currency?:
|
|
444
|
+
currency?: string;
|
|
329
445
|
/**
|
|
330
|
-
*
|
|
446
|
+
* Timestamp when the invoice was issued. ISO 8601 date string in the UTC timezone.
|
|
331
447
|
*/
|
|
332
|
-
|
|
448
|
+
created: string;
|
|
333
449
|
/**
|
|
334
|
-
*
|
|
450
|
+
* Billing period start timestamp. ISO 8601 date string in the UTC timezone.
|
|
335
451
|
*/
|
|
336
|
-
|
|
452
|
+
period_start: string;
|
|
337
453
|
/**
|
|
338
|
-
*
|
|
454
|
+
* Billing period end timestamp. ISO 8601 date string in the UTC timezone.
|
|
339
455
|
*/
|
|
340
|
-
|
|
456
|
+
period_end: string;
|
|
457
|
+
invoice_pdf?: string;
|
|
458
|
+
};
|
|
459
|
+
export type MarketplaceListingFiles = {
|
|
341
460
|
/**
|
|
342
|
-
*
|
|
461
|
+
* Raw Chart.yaml content from the Helm chart
|
|
343
462
|
*/
|
|
344
|
-
|
|
463
|
+
chartYaml?: string;
|
|
345
464
|
/**
|
|
346
|
-
*
|
|
465
|
+
* Raw values.yaml content from the Helm chart
|
|
347
466
|
*/
|
|
348
|
-
|
|
467
|
+
valuesYaml?: string;
|
|
349
468
|
/**
|
|
350
|
-
*
|
|
469
|
+
* JSON schema for values.yaml as a string
|
|
351
470
|
*/
|
|
352
|
-
|
|
471
|
+
valuesSchemaJson?: string;
|
|
472
|
+
};
|
|
473
|
+
export type MarketplaceListing = {
|
|
353
474
|
/**
|
|
354
|
-
*
|
|
475
|
+
* Name of the chart
|
|
355
476
|
*/
|
|
356
|
-
|
|
477
|
+
name: string;
|
|
357
478
|
/**
|
|
358
|
-
*
|
|
479
|
+
* Available versions of the chart
|
|
359
480
|
*/
|
|
360
|
-
|
|
361
|
-
/**
|
|
362
|
-
* Unique identifier of the invoice item. UUID v4 string in canonical form
|
|
363
|
-
*/
|
|
364
|
-
id?: string;
|
|
365
|
-
/**
|
|
366
|
-
* Unique identifier of the linked invoice item. UUID v4 string in canonical form
|
|
367
|
-
*/
|
|
368
|
-
linkedInvoiceItemId?: string;
|
|
369
|
-
/**
|
|
370
|
-
* Name of the product
|
|
371
|
-
*/
|
|
372
|
-
productName?: string;
|
|
373
|
-
/**
|
|
374
|
-
* Name of the plan
|
|
375
|
-
*/
|
|
376
|
-
planName?: string;
|
|
377
|
-
/**
|
|
378
|
-
* Name of the phase
|
|
379
|
-
*/
|
|
380
|
-
phaseName?: string;
|
|
381
|
-
/**
|
|
382
|
-
* Name of the usage
|
|
383
|
-
*/
|
|
384
|
-
usageName?: string;
|
|
385
|
-
/**
|
|
386
|
-
* Pretty name of the product
|
|
387
|
-
*/
|
|
388
|
-
prettyProductName?: string;
|
|
389
|
-
/**
|
|
390
|
-
* Pretty name of the plan
|
|
391
|
-
*/
|
|
392
|
-
prettyPlanName?: string;
|
|
393
|
-
/**
|
|
394
|
-
* Pretty name of the phase
|
|
395
|
-
*/
|
|
396
|
-
prettyPhaseName?: string;
|
|
397
|
-
/**
|
|
398
|
-
* Pretty name of the usage
|
|
399
|
-
*/
|
|
400
|
-
prettyUsageName?: string;
|
|
401
|
-
/**
|
|
402
|
-
* Type of the invoice item
|
|
403
|
-
*/
|
|
404
|
-
itemType?: 'EXTERNAL_CHARGE' | 'FIXED' | 'RECURRING' | 'REPAIR_ADJ' | 'CBA_ADJ' | 'CREDIT_ADJ' | 'ITEM_ADJ' | 'USAGE' | 'TAX' | 'PARENT_SUMMARY';
|
|
405
|
-
/**
|
|
406
|
-
* Description of the invoice item
|
|
407
|
-
*/
|
|
408
|
-
description?: string;
|
|
409
|
-
/**
|
|
410
|
-
* Start date of the invoice item
|
|
411
|
-
*/
|
|
412
|
-
startDate?: string;
|
|
413
|
-
/**
|
|
414
|
-
* End date of the invoice item
|
|
415
|
-
*/
|
|
416
|
-
endDate?: string;
|
|
417
|
-
/**
|
|
418
|
-
* Amount of the invoice item
|
|
419
|
-
*/
|
|
420
|
-
amount?: number;
|
|
421
|
-
/**
|
|
422
|
-
* Rate of the invoice item
|
|
423
|
-
*/
|
|
424
|
-
rate?: number;
|
|
425
|
-
/**
|
|
426
|
-
* Currency of the invoice item
|
|
427
|
-
*/
|
|
428
|
-
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';
|
|
429
|
-
/**
|
|
430
|
-
* Quantity of the invoice item
|
|
431
|
-
*/
|
|
432
|
-
quantity?: number;
|
|
433
|
-
/**
|
|
434
|
-
* Details of the invoice item
|
|
435
|
-
*/
|
|
436
|
-
itemDetails?: string;
|
|
437
|
-
/**
|
|
438
|
-
* Effective date of the catalog
|
|
439
|
-
*/
|
|
440
|
-
catalogEffectiveDate?: string;
|
|
441
|
-
/**
|
|
442
|
-
* Child items of the invoice item
|
|
443
|
-
*/
|
|
444
|
-
childItems?: Array<Array<unknown> | boolean | number | {
|
|
445
|
-
[key: string]: unknown;
|
|
446
|
-
} | string>;
|
|
447
|
-
}>;
|
|
481
|
+
versions: Array<string>;
|
|
448
482
|
/**
|
|
449
|
-
*
|
|
483
|
+
* Version channels for the chart
|
|
450
484
|
*/
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
/**
|
|
461
|
-
* Name of the product
|
|
462
|
-
*/
|
|
463
|
-
productName?: string;
|
|
464
|
-
/**
|
|
465
|
-
* Name of the plan
|
|
466
|
-
*/
|
|
467
|
-
planName?: string;
|
|
468
|
-
/**
|
|
469
|
-
* Name of the phase
|
|
470
|
-
*/
|
|
471
|
-
phaseName?: string;
|
|
472
|
-
/**
|
|
473
|
-
* Name of the usage
|
|
474
|
-
*/
|
|
475
|
-
usageName?: string;
|
|
476
|
-
/**
|
|
477
|
-
* Pretty name of the product
|
|
478
|
-
*/
|
|
479
|
-
prettyProductName?: string;
|
|
480
|
-
/**
|
|
481
|
-
* Pretty name of the plan
|
|
482
|
-
*/
|
|
483
|
-
prettyPlanName?: string;
|
|
484
|
-
/**
|
|
485
|
-
* Pretty name of the phase
|
|
486
|
-
*/
|
|
487
|
-
prettyPhaseName?: string;
|
|
485
|
+
version_channels: Array<string>;
|
|
486
|
+
/**
|
|
487
|
+
* Latest version of the chart
|
|
488
|
+
*/
|
|
489
|
+
latestVersion: string;
|
|
490
|
+
/**
|
|
491
|
+
* Chart metadata
|
|
492
|
+
*/
|
|
493
|
+
metadata?: {
|
|
488
494
|
/**
|
|
489
|
-
*
|
|
495
|
+
* Chart name from metadata
|
|
490
496
|
*/
|
|
491
|
-
|
|
497
|
+
name: string;
|
|
492
498
|
/**
|
|
493
|
-
*
|
|
499
|
+
* Chart version from metadata
|
|
494
500
|
*/
|
|
495
|
-
|
|
501
|
+
version: string;
|
|
496
502
|
/**
|
|
497
|
-
*
|
|
503
|
+
* Chart description
|
|
498
504
|
*/
|
|
499
505
|
description?: string;
|
|
500
506
|
/**
|
|
501
|
-
*
|
|
502
|
-
*/
|
|
503
|
-
startDate?: string;
|
|
504
|
-
/**
|
|
505
|
-
* End date of the invoice item
|
|
506
|
-
*/
|
|
507
|
-
endDate?: string;
|
|
508
|
-
/**
|
|
509
|
-
* Amount of the invoice item
|
|
507
|
+
* Application version
|
|
510
508
|
*/
|
|
511
|
-
|
|
509
|
+
appVersion?: string;
|
|
512
510
|
/**
|
|
513
|
-
*
|
|
511
|
+
* Helm API version
|
|
514
512
|
*/
|
|
515
|
-
|
|
513
|
+
apiVersion?: string;
|
|
516
514
|
/**
|
|
517
|
-
*
|
|
515
|
+
* Chart keywords
|
|
518
516
|
*/
|
|
519
|
-
|
|
517
|
+
keywords?: Array<string>;
|
|
520
518
|
/**
|
|
521
|
-
*
|
|
519
|
+
* Chart home URL
|
|
522
520
|
*/
|
|
523
|
-
|
|
521
|
+
home?: string;
|
|
524
522
|
/**
|
|
525
|
-
*
|
|
523
|
+
* A URL to an SVG or PNG image to be used as an icon
|
|
526
524
|
*/
|
|
527
|
-
|
|
525
|
+
icon?: string;
|
|
528
526
|
/**
|
|
529
|
-
*
|
|
527
|
+
* Chart source URLs
|
|
530
528
|
*/
|
|
531
|
-
|
|
529
|
+
sources?: Array<string>;
|
|
532
530
|
/**
|
|
533
|
-
*
|
|
531
|
+
* Chart maintainers
|
|
534
532
|
*/
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
533
|
+
maintainers?: Array<{
|
|
534
|
+
/**
|
|
535
|
+
* Maintainer name
|
|
536
|
+
*/
|
|
537
|
+
name: string;
|
|
538
|
+
/**
|
|
539
|
+
* Maintainer email
|
|
540
|
+
*/
|
|
541
|
+
email?: string;
|
|
542
|
+
}>;
|
|
543
|
+
};
|
|
539
544
|
};
|
|
540
545
|
export type OrganizationCreateInput = {
|
|
541
546
|
/**
|
|
@@ -596,10 +601,6 @@ export type Organization = {
|
|
|
596
601
|
* Maximum number of fleets that can be created per cluster.
|
|
597
602
|
*/
|
|
598
603
|
fleets_max: number;
|
|
599
|
-
/**
|
|
600
|
-
* Maximum number of CPU cores per managed fleet.
|
|
601
|
-
*/
|
|
602
|
-
managed_fleets_cpu_max: number;
|
|
603
604
|
/**
|
|
604
605
|
* List of Cloudfleet cluster tiers available for the organization.
|
|
605
606
|
*/
|
|
@@ -621,6 +622,10 @@ export type Organization = {
|
|
|
621
622
|
*/
|
|
622
623
|
label: string;
|
|
623
624
|
}>;
|
|
625
|
+
/**
|
|
626
|
+
* Organization-level maximum CFCR storage volume in GB. -1 means no limit.
|
|
627
|
+
*/
|
|
628
|
+
cfcr_storage_gb: number;
|
|
624
629
|
};
|
|
625
630
|
/**
|
|
626
631
|
* Status of the organization. Can be `active` or `closed`, or `suspended`.
|
|
@@ -657,6 +662,201 @@ export type PaymentMethod = {
|
|
|
657
662
|
*/
|
|
658
663
|
brand: 'amex' | 'diners' | 'discover' | 'eftpos_au' | 'jcb' | 'mastercard' | 'unionpay' | 'visa' | 'unknown';
|
|
659
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<{
|
|
698
|
+
/**
|
|
699
|
+
* Id of the control plane version. Used in API calls.
|
|
700
|
+
*/
|
|
701
|
+
id: string;
|
|
702
|
+
/**
|
|
703
|
+
* Label of the control plane version. Used in frontent UI.
|
|
704
|
+
*/
|
|
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<{
|
|
743
|
+
/**
|
|
744
|
+
* Tag name.
|
|
745
|
+
*/
|
|
746
|
+
name: string;
|
|
747
|
+
/**
|
|
748
|
+
* Size of the tag in bytes.
|
|
749
|
+
*/
|
|
750
|
+
size: number;
|
|
751
|
+
/**
|
|
752
|
+
* Media type of the manifest.
|
|
753
|
+
*/
|
|
754
|
+
mediaType?: string;
|
|
755
|
+
/**
|
|
756
|
+
* Array of platform strings for multi-arch images (e.g., linux/amd64, linux/arm64).
|
|
757
|
+
*/
|
|
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?: {
|
|
782
|
+
/**
|
|
783
|
+
* Size of the config in bytes.
|
|
784
|
+
*/
|
|
785
|
+
size: number;
|
|
786
|
+
};
|
|
787
|
+
/**
|
|
788
|
+
* Array of layer metadata.
|
|
789
|
+
*/
|
|
790
|
+
layers?: Array<{
|
|
791
|
+
/**
|
|
792
|
+
* Digest of the layer.
|
|
793
|
+
*/
|
|
794
|
+
digest?: string;
|
|
795
|
+
/**
|
|
796
|
+
* Size of the layer in bytes.
|
|
797
|
+
*/
|
|
798
|
+
size: number;
|
|
799
|
+
}>;
|
|
800
|
+
/**
|
|
801
|
+
* Array of manifests for multi-arch images.
|
|
802
|
+
*/
|
|
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
|
+
}>;
|
|
843
|
+
/**
|
|
844
|
+
* Total size of the tag in bytes.
|
|
845
|
+
*/
|
|
846
|
+
size: number;
|
|
847
|
+
/**
|
|
848
|
+
* Registry region.
|
|
849
|
+
*/
|
|
850
|
+
region: string;
|
|
851
|
+
/**
|
|
852
|
+
* Repository name.
|
|
853
|
+
*/
|
|
854
|
+
repository: string;
|
|
855
|
+
/**
|
|
856
|
+
* Full URI of the tag.
|
|
857
|
+
*/
|
|
858
|
+
uri: string;
|
|
859
|
+
};
|
|
660
860
|
export type TokenCreateInput = {
|
|
661
861
|
/**
|
|
662
862
|
* Human readable access token name.
|
|
@@ -699,35 +899,85 @@ export type TokenUpdateInput = {
|
|
|
699
899
|
*/
|
|
700
900
|
role?: 'Administrator' | 'User';
|
|
701
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
|
+
};
|
|
702
956
|
export type Usage = {
|
|
703
957
|
/**
|
|
704
958
|
* Hour of the usage
|
|
705
959
|
*/
|
|
706
|
-
hour
|
|
960
|
+
hour: string;
|
|
707
961
|
/**
|
|
708
962
|
* Unique identifier of the kubernetes cluster. UUID v4 string in canonical form
|
|
709
963
|
*/
|
|
710
964
|
cluster_id: string;
|
|
711
965
|
/**
|
|
712
|
-
*
|
|
966
|
+
* The product the usage is associated with
|
|
713
967
|
*/
|
|
714
|
-
|
|
968
|
+
product: string;
|
|
715
969
|
/**
|
|
716
|
-
*
|
|
970
|
+
* Consumption
|
|
717
971
|
*/
|
|
718
|
-
|
|
972
|
+
value: number;
|
|
719
973
|
/**
|
|
720
|
-
*
|
|
974
|
+
* Price per unit
|
|
721
975
|
*/
|
|
722
|
-
|
|
976
|
+
price: number;
|
|
723
977
|
/**
|
|
724
|
-
*
|
|
978
|
+
* Total cost
|
|
725
979
|
*/
|
|
726
|
-
|
|
727
|
-
cpu: number | '';
|
|
728
|
-
price: number | '';
|
|
729
|
-
value: number | '';
|
|
730
|
-
total: number | '';
|
|
980
|
+
total: number;
|
|
731
981
|
};
|
|
732
982
|
export type UserCreateInput = {
|
|
733
983
|
/**
|
|
@@ -814,7 +1064,12 @@ export type UserUpdateInput = {
|
|
|
814
1064
|
export type GetUsageData = {
|
|
815
1065
|
body?: never;
|
|
816
1066
|
path?: never;
|
|
817
|
-
query?:
|
|
1067
|
+
query?: {
|
|
1068
|
+
/**
|
|
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)
|
|
1070
|
+
*/
|
|
1071
|
+
granularity?: 'hourly' | 'daily' | 'monthly';
|
|
1072
|
+
};
|
|
818
1073
|
url: '/billing/usage';
|
|
819
1074
|
};
|
|
820
1075
|
export type GetUsageErrors = {
|
|
@@ -825,136 +1080,244 @@ export type GetUsageErrors = {
|
|
|
825
1080
|
};
|
|
826
1081
|
export type GetUsageResponses = {
|
|
827
1082
|
/**
|
|
828
|
-
*
|
|
1083
|
+
* Usage data with facets for filtering
|
|
829
1084
|
*/
|
|
830
|
-
200:
|
|
1085
|
+
200: UsageResponse;
|
|
831
1086
|
};
|
|
832
1087
|
export type GetUsageResponse = GetUsageResponses[keyof GetUsageResponses];
|
|
833
|
-
export type
|
|
1088
|
+
export type GetPaymentMethodData = {
|
|
834
1089
|
body?: never;
|
|
835
1090
|
path?: never;
|
|
836
1091
|
query?: never;
|
|
837
|
-
url: '/billing/
|
|
1092
|
+
url: '/billing/payment-method';
|
|
838
1093
|
};
|
|
839
|
-
export type
|
|
1094
|
+
export type GetPaymentMethodErrors = {
|
|
840
1095
|
/**
|
|
841
|
-
*
|
|
1096
|
+
* Returns 404 Not Found if the organization does not have a payment method set up.
|
|
842
1097
|
*/
|
|
843
|
-
|
|
1098
|
+
404: unknown;
|
|
844
1099
|
};
|
|
845
|
-
export type
|
|
846
|
-
|
|
1100
|
+
export type GetPaymentMethodResponses = {
|
|
1101
|
+
/**
|
|
1102
|
+
* Redacted payment card information.
|
|
1103
|
+
*/
|
|
1104
|
+
200: PaymentMethod;
|
|
1105
|
+
};
|
|
1106
|
+
export type GetPaymentMethodResponse = GetPaymentMethodResponses[keyof GetPaymentMethodResponses];
|
|
1107
|
+
export type GetPaymentMethodSecretData = {
|
|
847
1108
|
body?: never;
|
|
848
1109
|
path?: never;
|
|
849
1110
|
query?: never;
|
|
850
1111
|
url: '/billing/payment-method';
|
|
851
1112
|
};
|
|
852
|
-
export type
|
|
1113
|
+
export type GetPaymentMethodSecretResponses = {
|
|
1114
|
+
/**
|
|
1115
|
+
* 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.
|
|
1116
|
+
*
|
|
1117
|
+
*/
|
|
1118
|
+
200: {
|
|
1119
|
+
/**
|
|
1120
|
+
* The client secret.
|
|
1121
|
+
*/
|
|
1122
|
+
id?: string;
|
|
1123
|
+
};
|
|
1124
|
+
};
|
|
1125
|
+
export type GetPaymentMethodSecretResponse = GetPaymentMethodSecretResponses[keyof GetPaymentMethodSecretResponses];
|
|
1126
|
+
export type ListInvoicesData = {
|
|
1127
|
+
body?: never;
|
|
1128
|
+
path?: never;
|
|
1129
|
+
query?: never;
|
|
1130
|
+
url: '/billing/invoices';
|
|
1131
|
+
};
|
|
1132
|
+
export type ListInvoicesErrors = {
|
|
1133
|
+
/**
|
|
1134
|
+
* Not authenticated
|
|
1135
|
+
*/
|
|
1136
|
+
401: unknown;
|
|
1137
|
+
};
|
|
1138
|
+
export type ListInvoicesResponses = {
|
|
1139
|
+
/**
|
|
1140
|
+
* An array of usage records.
|
|
1141
|
+
*/
|
|
1142
|
+
200: Array<Invoice>;
|
|
1143
|
+
};
|
|
1144
|
+
export type ListInvoicesResponse = ListInvoicesResponses[keyof ListInvoicesResponses];
|
|
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 = {
|
|
853
1178
|
/**
|
|
854
|
-
*
|
|
1179
|
+
* Not authenticated
|
|
855
1180
|
*/
|
|
856
|
-
|
|
1181
|
+
401: unknown;
|
|
857
1182
|
};
|
|
858
|
-
export type
|
|
1183
|
+
export type GetCreditsResponses = {
|
|
859
1184
|
/**
|
|
860
|
-
*
|
|
1185
|
+
* An array of the applied promotional credits records.
|
|
861
1186
|
*/
|
|
862
|
-
200:
|
|
1187
|
+
200: Array<BillingCredits>;
|
|
863
1188
|
};
|
|
864
|
-
export type
|
|
865
|
-
export type
|
|
866
|
-
body
|
|
1189
|
+
export type GetCreditsResponse = GetCreditsResponses[keyof GetCreditsResponses];
|
|
1190
|
+
export type RedeemCreditsData = {
|
|
1191
|
+
body: {
|
|
1192
|
+
/**
|
|
1193
|
+
* Promotional code to redeem
|
|
1194
|
+
*/
|
|
1195
|
+
code?: string;
|
|
1196
|
+
};
|
|
867
1197
|
path?: never;
|
|
868
1198
|
query?: never;
|
|
869
|
-
url: '/billing/
|
|
1199
|
+
url: '/billing/credits';
|
|
870
1200
|
};
|
|
871
|
-
export type
|
|
1201
|
+
export type RedeemCreditsErrors = {
|
|
872
1202
|
/**
|
|
873
|
-
*
|
|
874
|
-
*
|
|
1203
|
+
* Not authenticated
|
|
875
1204
|
*/
|
|
876
|
-
|
|
877
|
-
/**
|
|
878
|
-
* The client secret.
|
|
879
|
-
*/
|
|
880
|
-
id?: string;
|
|
881
|
-
};
|
|
1205
|
+
401: unknown;
|
|
882
1206
|
};
|
|
883
|
-
export type
|
|
884
|
-
|
|
1207
|
+
export type RedeemCreditsResponses = {
|
|
1208
|
+
/**
|
|
1209
|
+
* Successfully created a new organization.
|
|
1210
|
+
*/
|
|
1211
|
+
200: unknown;
|
|
1212
|
+
};
|
|
1213
|
+
export type ListChartsData = {
|
|
885
1214
|
body?: never;
|
|
886
|
-
path
|
|
887
|
-
query: {
|
|
888
|
-
/**
|
|
889
|
-
* Start date for the usage. Date of oldest data point to retrieve.
|
|
890
|
-
*/
|
|
891
|
-
start_date: string;
|
|
1215
|
+
path: {
|
|
892
1216
|
/**
|
|
893
|
-
*
|
|
1217
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
894
1218
|
*/
|
|
895
|
-
|
|
1219
|
+
cluster_id: string;
|
|
896
1220
|
};
|
|
897
|
-
|
|
1221
|
+
query?: never;
|
|
1222
|
+
url: '/clusters/{cluster_id}/charts';
|
|
898
1223
|
};
|
|
899
|
-
export type
|
|
1224
|
+
export type ListChartsErrors = {
|
|
900
1225
|
/**
|
|
901
1226
|
* Not authenticated
|
|
902
1227
|
*/
|
|
903
1228
|
401: unknown;
|
|
904
1229
|
};
|
|
905
|
-
export type
|
|
1230
|
+
export type ListChartsResponses = {
|
|
906
1231
|
/**
|
|
907
|
-
* An array of
|
|
1232
|
+
* An array of charts
|
|
908
1233
|
*/
|
|
909
|
-
200: Array<
|
|
1234
|
+
200: Array<Chart>;
|
|
910
1235
|
};
|
|
911
|
-
export type
|
|
912
|
-
export type
|
|
913
|
-
body
|
|
1236
|
+
export type ListChartsResponse = ListChartsResponses[keyof ListChartsResponses];
|
|
1237
|
+
export type CreateChartData = {
|
|
1238
|
+
body: ChartCreateInput;
|
|
914
1239
|
path: {
|
|
915
1240
|
/**
|
|
916
|
-
* Unique
|
|
1241
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
917
1242
|
*/
|
|
918
|
-
|
|
1243
|
+
cluster_id: string;
|
|
919
1244
|
};
|
|
920
1245
|
query?: never;
|
|
921
|
-
url: '/
|
|
1246
|
+
url: '/clusters/{cluster_id}/charts';
|
|
922
1247
|
};
|
|
923
|
-
export type
|
|
1248
|
+
export type CreateChartResponses = {
|
|
924
1249
|
/**
|
|
925
|
-
*
|
|
1250
|
+
* Successfully created. Returns created Chart ID.
|
|
926
1251
|
*/
|
|
927
|
-
200:
|
|
928
|
-
|
|
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;
|
|
929
1266
|
};
|
|
1267
|
+
query?: never;
|
|
1268
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
930
1269
|
};
|
|
931
|
-
export type
|
|
932
|
-
|
|
1270
|
+
export type DeleteChartResponses = {
|
|
1271
|
+
/**
|
|
1272
|
+
* Successfully deleted.
|
|
1273
|
+
*/
|
|
1274
|
+
200: string;
|
|
1275
|
+
};
|
|
1276
|
+
export type DeleteChartResponse = DeleteChartResponses[keyof DeleteChartResponses];
|
|
1277
|
+
export type GetChartData = {
|
|
933
1278
|
body?: never;
|
|
934
|
-
path
|
|
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
|
+
};
|
|
935
1289
|
query?: never;
|
|
936
|
-
url: '/
|
|
1290
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
937
1291
|
};
|
|
938
|
-
export type
|
|
1292
|
+
export type GetChartResponses = {
|
|
939
1293
|
/**
|
|
940
|
-
* Returns a single object containing
|
|
1294
|
+
* Returns a single object containing chart details.
|
|
941
1295
|
*/
|
|
942
|
-
200:
|
|
1296
|
+
200: Chart;
|
|
943
1297
|
};
|
|
944
|
-
export type
|
|
945
|
-
export type
|
|
946
|
-
body:
|
|
947
|
-
path
|
|
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;
|
|
1310
|
+
};
|
|
948
1311
|
query?: never;
|
|
949
|
-
url: '/
|
|
1312
|
+
url: '/clusters/{cluster_id}/charts/{chart_name}';
|
|
950
1313
|
};
|
|
951
|
-
export type
|
|
1314
|
+
export type UpdateChartResponses = {
|
|
952
1315
|
/**
|
|
953
|
-
* Successfully updated.
|
|
1316
|
+
* Successfully updated.
|
|
954
1317
|
*/
|
|
955
|
-
200:
|
|
1318
|
+
200: string;
|
|
956
1319
|
};
|
|
957
|
-
export type
|
|
1320
|
+
export type UpdateChartResponse = UpdateChartResponses[keyof UpdateChartResponses];
|
|
958
1321
|
export type ListFleetsData = {
|
|
959
1322
|
body?: never;
|
|
960
1323
|
path: {
|
|
@@ -1193,6 +1556,30 @@ export type UpdateClusterResponses = {
|
|
|
1193
1556
|
200: Cluster;
|
|
1194
1557
|
};
|
|
1195
1558
|
export type UpdateClusterResponse = UpdateClusterResponses[keyof UpdateClusterResponses];
|
|
1559
|
+
export type GetClusterCaData = {
|
|
1560
|
+
body?: never;
|
|
1561
|
+
path: {
|
|
1562
|
+
/**
|
|
1563
|
+
* Unique identifier of the cluster. UUID v4 string in canonical form
|
|
1564
|
+
*/
|
|
1565
|
+
cluster_id: string;
|
|
1566
|
+
};
|
|
1567
|
+
query?: never;
|
|
1568
|
+
url: '/clusters/{cluster_id}/ca';
|
|
1569
|
+
};
|
|
1570
|
+
export type GetClusterCaErrors = {
|
|
1571
|
+
/**
|
|
1572
|
+
* Cluster not found, or its certificate authority is not available yet.
|
|
1573
|
+
*/
|
|
1574
|
+
404: unknown;
|
|
1575
|
+
};
|
|
1576
|
+
export type GetClusterCaResponses = {
|
|
1577
|
+
/**
|
|
1578
|
+
* PEM-encoded certificate authority of the cluster.
|
|
1579
|
+
*/
|
|
1580
|
+
200: string;
|
|
1581
|
+
};
|
|
1582
|
+
export type GetClusterCaResponse = GetClusterCaResponses[keyof GetClusterCaResponses];
|
|
1196
1583
|
export type GetJoinInformationData = {
|
|
1197
1584
|
body?: never;
|
|
1198
1585
|
path: {
|
|
@@ -1214,7 +1601,7 @@ export type GetJoinInformationResponses = {
|
|
|
1214
1601
|
/**
|
|
1215
1602
|
* An object of cluster join information
|
|
1216
1603
|
*/
|
|
1217
|
-
200:
|
|
1604
|
+
200: ClusterJoinInformation;
|
|
1218
1605
|
};
|
|
1219
1606
|
export type GetJoinInformationResponse = GetJoinInformationResponses[keyof GetJoinInformationResponses];
|
|
1220
1607
|
export type ListInvitesData = {
|
|
@@ -1289,6 +1676,95 @@ export type DeleteInviteResponses = {
|
|
|
1289
1676
|
*/
|
|
1290
1677
|
200: unknown;
|
|
1291
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];
|
|
1292
1768
|
export type GetOrganizationData = {
|
|
1293
1769
|
body?: never;
|
|
1294
1770
|
path?: never;
|
|
@@ -1314,6 +1790,144 @@ export type CreateOrganizationResponses = {
|
|
|
1314
1790
|
*/
|
|
1315
1791
|
200: unknown;
|
|
1316
1792
|
};
|
|
1793
|
+
export type ListRepositoriesData = {
|
|
1794
|
+
body?: never;
|
|
1795
|
+
path?: never;
|
|
1796
|
+
query?: never;
|
|
1797
|
+
url: '/registry';
|
|
1798
|
+
};
|
|
1799
|
+
export type ListRepositoriesErrors = {
|
|
1800
|
+
/**
|
|
1801
|
+
* Not authenticated
|
|
1802
|
+
*/
|
|
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;
|
|
1884
|
+
};
|
|
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];
|
|
1317
1931
|
export type ListTokensData = {
|
|
1318
1932
|
body?: never;
|
|
1319
1933
|
path?: never;
|
|
@@ -1570,7 +2184,4 @@ export type UpdateUserResponses = {
|
|
|
1570
2184
|
200: User;
|
|
1571
2185
|
};
|
|
1572
2186
|
export type UpdateUserResponse = UpdateUserResponses[keyof UpdateUserResponses];
|
|
1573
|
-
export type ClientOptions = {
|
|
1574
|
-
baseUrl: 'https://api.cloudfleet.ai/v1' | (string & {});
|
|
1575
|
-
};
|
|
1576
2187
|
//# sourceMappingURL=types.gen.d.ts.map
|