@cloudfleet/sdk 0.0.1-7f36848 → 0.0.1-8116a0a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/client.gen.d.ts +3 -0
- package/dist/client/client.gen.d.ts.map +1 -0
- package/dist/client/client.gen.js +205 -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 +125 -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 +34 -0
- package/dist/client/utils.gen.d.ts.map +1 -0
- package/dist/client/utils.gen.js +231 -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 +1 -1
- 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 +18 -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 +34 -0
- package/dist/core/params.gen.d.ts.map +1 -0
- package/dist/core/params.gen.js +89 -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 +115 -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 +100 -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 +136 -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/schemas.gen.d.ts +122 -115
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +123 -124
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +57 -64
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +69 -69
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +12 -12
- package/dist/types.gen.d.ts +65 -46
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2699 -1996
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +786 -218
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -6
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
// This file is auto-generated by @hey-api/openapi-ts
|
|
2
|
+
import { serializeArrayParam, serializeObjectParam, serializePrimitiveParam, } from './pathSerializer.gen';
|
|
3
|
+
export const PATH_PARAM_RE = /\{[^{}]+\}/g;
|
|
4
|
+
export const defaultPathSerializer = ({ path, url: _url }) => {
|
|
5
|
+
let url = _url;
|
|
6
|
+
const matches = _url.match(PATH_PARAM_RE);
|
|
7
|
+
if (matches) {
|
|
8
|
+
for (const match of matches) {
|
|
9
|
+
let explode = false;
|
|
10
|
+
let name = match.substring(1, match.length - 1);
|
|
11
|
+
let style = 'simple';
|
|
12
|
+
if (name.endsWith('*')) {
|
|
13
|
+
explode = true;
|
|
14
|
+
name = name.substring(0, name.length - 1);
|
|
15
|
+
}
|
|
16
|
+
if (name.startsWith('.')) {
|
|
17
|
+
name = name.substring(1);
|
|
18
|
+
style = 'label';
|
|
19
|
+
}
|
|
20
|
+
else if (name.startsWith(';')) {
|
|
21
|
+
name = name.substring(1);
|
|
22
|
+
style = 'matrix';
|
|
23
|
+
}
|
|
24
|
+
const value = path[name];
|
|
25
|
+
if (value === undefined || value === null) {
|
|
26
|
+
continue;
|
|
27
|
+
}
|
|
28
|
+
if (Array.isArray(value)) {
|
|
29
|
+
url = url.replace(match, serializeArrayParam({ explode, name, style, value }));
|
|
30
|
+
continue;
|
|
31
|
+
}
|
|
32
|
+
if (typeof value === 'object') {
|
|
33
|
+
url = url.replace(match, serializeObjectParam({
|
|
34
|
+
explode,
|
|
35
|
+
name,
|
|
36
|
+
style,
|
|
37
|
+
value: value,
|
|
38
|
+
valueOnly: true,
|
|
39
|
+
}));
|
|
40
|
+
continue;
|
|
41
|
+
}
|
|
42
|
+
if (style === 'matrix') {
|
|
43
|
+
url = url.replace(match, `;${serializePrimitiveParam({
|
|
44
|
+
name,
|
|
45
|
+
value: value,
|
|
46
|
+
})}`);
|
|
47
|
+
continue;
|
|
48
|
+
}
|
|
49
|
+
const replaceValue = encodeURIComponent(style === 'label' ? `.${value}` : value);
|
|
50
|
+
url = url.replace(match, replaceValue);
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
return url;
|
|
54
|
+
};
|
|
55
|
+
export const getUrl = ({ baseUrl, path, query, querySerializer, url: _url, }) => {
|
|
56
|
+
const pathUrl = _url.startsWith('/') ? _url : `/${_url}`;
|
|
57
|
+
let url = (baseUrl ?? '') + pathUrl;
|
|
58
|
+
if (path) {
|
|
59
|
+
url = defaultPathSerializer({ path, url });
|
|
60
|
+
}
|
|
61
|
+
let search = query ? querySerializer(query) : '';
|
|
62
|
+
if (search.startsWith('?')) {
|
|
63
|
+
search = search.substring(1);
|
|
64
|
+
}
|
|
65
|
+
if (search) {
|
|
66
|
+
url += `?${search}`;
|
|
67
|
+
}
|
|
68
|
+
return url;
|
|
69
|
+
};
|
|
70
|
+
export function getValidRequestBody(options) {
|
|
71
|
+
const hasBody = options.body !== undefined;
|
|
72
|
+
const isSerializedBody = hasBody && options.bodySerializer;
|
|
73
|
+
if (isSerializedBody) {
|
|
74
|
+
if ('serializedBody' in options) {
|
|
75
|
+
const hasSerializedBody = options.serializedBody !== undefined && options.serializedBody !== '';
|
|
76
|
+
return hasSerializedBody ? options.serializedBody : null;
|
|
77
|
+
}
|
|
78
|
+
// not all clients implement a serializedBody property (i.e. client-axios)
|
|
79
|
+
return options.body !== '' ? options.body : null;
|
|
80
|
+
}
|
|
81
|
+
// plain/text body
|
|
82
|
+
if (hasBody) {
|
|
83
|
+
return options.body;
|
|
84
|
+
}
|
|
85
|
+
// no body was provided
|
|
86
|
+
return undefined;
|
|
87
|
+
}
|
|
88
|
+
//# sourceMappingURL=utils.gen.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"utils.gen.js","sourceRoot":"","sources":["../../src/core/utils.gen.ts"],"names":[],"mappings":"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"}
|
package/dist/schemas.gen.d.ts
CHANGED
|
@@ -67,6 +67,19 @@ export declare const BillingContactSchema: {
|
|
|
67
67
|
readonly description: "Last name of the billing contact person.";
|
|
68
68
|
readonly example: "Doe";
|
|
69
69
|
};
|
|
70
|
+
readonly tax_id: {
|
|
71
|
+
readonly type: "string";
|
|
72
|
+
readonly nullable: true;
|
|
73
|
+
readonly description: "Tax ID of the organization.";
|
|
74
|
+
readonly example: "DE123456789";
|
|
75
|
+
};
|
|
76
|
+
readonly tax_id_type: {
|
|
77
|
+
readonly type: "string";
|
|
78
|
+
readonly nullable: true;
|
|
79
|
+
readonly description: "Type of the tax ID.";
|
|
80
|
+
readonly example: "de_vat";
|
|
81
|
+
readonly enum: readonly ["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", ""];
|
|
82
|
+
};
|
|
70
83
|
};
|
|
71
84
|
readonly required: readonly ["email", "first_name", "last_name"];
|
|
72
85
|
readonly additionalProperties: false;
|
|
@@ -101,7 +114,7 @@ export declare const BillingCreditsSchema: {
|
|
|
101
114
|
readonly type: "string";
|
|
102
115
|
};
|
|
103
116
|
readonly description: "List of product SKUs that the promotional code can be used on.";
|
|
104
|
-
readonly example: readonly ["
|
|
117
|
+
readonly example: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
|
|
105
118
|
};
|
|
106
119
|
readonly type: {
|
|
107
120
|
readonly type: "string";
|
|
@@ -136,12 +149,12 @@ export declare const ChartCreateInputSchema: {
|
|
|
136
149
|
readonly properties: {
|
|
137
150
|
readonly values: {
|
|
138
151
|
readonly type: "string";
|
|
139
|
-
readonly description: "Values to be used in the chart.";
|
|
152
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
140
153
|
};
|
|
141
154
|
readonly version_channel: {
|
|
142
155
|
readonly type: "string";
|
|
143
156
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
144
|
-
readonly description: "
|
|
157
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
145
158
|
readonly example: "2.x.x-cfke.x";
|
|
146
159
|
};
|
|
147
160
|
readonly name: {
|
|
@@ -177,12 +190,12 @@ export declare const ChartSchema: {
|
|
|
177
190
|
readonly properties: {
|
|
178
191
|
readonly values: {
|
|
179
192
|
readonly type: "string";
|
|
180
|
-
readonly description: "Values to be used in the chart.";
|
|
193
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
181
194
|
};
|
|
182
195
|
readonly version_channel: {
|
|
183
196
|
readonly type: "string";
|
|
184
197
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
185
|
-
readonly description: "
|
|
198
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
186
199
|
readonly example: "2.x.x-cfke.x";
|
|
187
200
|
};
|
|
188
201
|
readonly name: {
|
|
@@ -213,7 +226,7 @@ export declare const ChartSchema: {
|
|
|
213
226
|
readonly type: "string";
|
|
214
227
|
readonly description: "Status of the chart deployment.";
|
|
215
228
|
readonly example: "active";
|
|
216
|
-
readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady"];
|
|
229
|
+
readonly enum: readonly ["InstallSucceeded", "InstallFailed", "UpgradeSucceeded", "UpgradeFailed", "TestSucceeded", "TestFailed", "RollbackSucceeded", "RollbackFailed", "UninstallSucceeded", "UninstallFailed", "ArtifactFailed", "DependencyNotReady", "Progressing", "SourceNotReady"];
|
|
217
230
|
};
|
|
218
231
|
readonly version_current: {
|
|
219
232
|
readonly type: "string";
|
|
@@ -244,12 +257,12 @@ export declare const ChartUpdateInputSchema: {
|
|
|
244
257
|
readonly properties: {
|
|
245
258
|
readonly values: {
|
|
246
259
|
readonly type: "string";
|
|
247
|
-
readonly description: "Values to be used in the chart.";
|
|
260
|
+
readonly description: "Values to be used in the chart encoded as a JSON string.";
|
|
248
261
|
};
|
|
249
262
|
readonly version_channel: {
|
|
250
263
|
readonly type: "string";
|
|
251
264
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
252
|
-
readonly description: "
|
|
265
|
+
readonly description: "Desired version range or channel for the chart.";
|
|
253
266
|
readonly example: "2.x.x-cfke.x";
|
|
254
267
|
};
|
|
255
268
|
};
|
|
@@ -267,19 +280,19 @@ export declare const ClusterCreateInputSchema: {
|
|
|
267
280
|
readonly description: "Name of the cluster.";
|
|
268
281
|
readonly example: "production-cluster";
|
|
269
282
|
};
|
|
270
|
-
readonly region: {
|
|
271
|
-
readonly type: "string";
|
|
272
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
273
|
-
readonly default: "staging";
|
|
274
|
-
readonly example: "northamerica-central-1";
|
|
275
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
276
|
-
};
|
|
277
283
|
readonly tier: {
|
|
278
284
|
readonly type: "string";
|
|
279
285
|
readonly description: "Tier of the cluster.";
|
|
280
286
|
readonly example: "pro";
|
|
281
287
|
readonly enum: readonly ["basic", "pro"];
|
|
282
288
|
};
|
|
289
|
+
readonly region: {
|
|
290
|
+
readonly type: "string";
|
|
291
|
+
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
292
|
+
readonly default: "staging";
|
|
293
|
+
readonly example: "northamerica-central-1a";
|
|
294
|
+
readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
295
|
+
};
|
|
283
296
|
readonly version_channel: {
|
|
284
297
|
readonly type: "string";
|
|
285
298
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
@@ -333,8 +346,13 @@ export declare const ClusterJoinInformationSchema: {
|
|
|
333
346
|
readonly description: "Containerd version of the cluster.";
|
|
334
347
|
readonly example: "1.7.19";
|
|
335
348
|
};
|
|
349
|
+
readonly nvidia_driver: {
|
|
350
|
+
readonly type: "string";
|
|
351
|
+
readonly description: "NVIDIA driver version of the cluster.";
|
|
352
|
+
readonly example: "565.0.0";
|
|
353
|
+
};
|
|
336
354
|
};
|
|
337
|
-
readonly required: readonly ["kubernetes", "tailscale", "containerd"];
|
|
355
|
+
readonly required: readonly ["kubernetes", "tailscale", "containerd", "nvidia_driver"];
|
|
338
356
|
readonly additionalProperties: false;
|
|
339
357
|
readonly description: "Versions of the different components of the cluster.";
|
|
340
358
|
};
|
|
@@ -376,19 +394,19 @@ export declare const ClusterSchema: {
|
|
|
376
394
|
readonly description: "Name of the cluster.";
|
|
377
395
|
readonly example: "production-cluster";
|
|
378
396
|
};
|
|
379
|
-
readonly region: {
|
|
380
|
-
readonly type: "string";
|
|
381
|
-
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\". This field can not be updated after creation.";
|
|
382
|
-
readonly default: "staging";
|
|
383
|
-
readonly example: "northamerica-central-1";
|
|
384
|
-
readonly enum: readonly ["staging", "northamerica-central-1"];
|
|
385
|
-
};
|
|
386
397
|
readonly tier: {
|
|
387
398
|
readonly type: "string";
|
|
388
399
|
readonly description: "Tier of the cluster.";
|
|
389
400
|
readonly example: "pro";
|
|
390
401
|
readonly enum: readonly ["basic", "pro"];
|
|
391
402
|
};
|
|
403
|
+
readonly region: {
|
|
404
|
+
readonly type: "string";
|
|
405
|
+
readonly description: "Cloudfleet control plane region. One of \"staging\", \"northamerica-central-1\", \"europe-central-1a\", \"northamerica-central-1a\". This field can not be updated after creation.";
|
|
406
|
+
readonly default: "staging";
|
|
407
|
+
readonly example: "northamerica-central-1a";
|
|
408
|
+
readonly enum: readonly ["staging", "northamerica-central-1", "europe-central-1a", "northamerica-central-1a"];
|
|
409
|
+
};
|
|
392
410
|
readonly version_channel: {
|
|
393
411
|
readonly type: "string";
|
|
394
412
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
@@ -459,6 +477,12 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
459
477
|
readonly description: "Name of the cluster.";
|
|
460
478
|
readonly example: "production-cluster";
|
|
461
479
|
};
|
|
480
|
+
readonly tier: {
|
|
481
|
+
readonly type: "string";
|
|
482
|
+
readonly description: "Tier of the cluster.";
|
|
483
|
+
readonly example: "pro";
|
|
484
|
+
readonly enum: readonly ["basic", "pro"];
|
|
485
|
+
};
|
|
462
486
|
readonly version_channel: {
|
|
463
487
|
readonly type: "string";
|
|
464
488
|
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
@@ -466,6 +490,7 @@ export declare const ClusterUpdateInputSchema: {
|
|
|
466
490
|
readonly example: "1.29.x-cfke.x";
|
|
467
491
|
};
|
|
468
492
|
};
|
|
493
|
+
readonly required: readonly ["tier"];
|
|
469
494
|
readonly additionalProperties: false;
|
|
470
495
|
};
|
|
471
496
|
export declare const FleetCreateInputSchema: {
|
|
@@ -501,31 +526,19 @@ export declare const FleetCreateInputSchema: {
|
|
|
501
526
|
readonly additionalProperties: false;
|
|
502
527
|
};
|
|
503
528
|
readonly hetzner: {
|
|
504
|
-
readonly
|
|
505
|
-
|
|
506
|
-
readonly
|
|
507
|
-
readonly
|
|
508
|
-
|
|
509
|
-
readonly default: true;
|
|
510
|
-
};
|
|
511
|
-
readonly apiKey: {
|
|
512
|
-
readonly type: "string";
|
|
513
|
-
};
|
|
529
|
+
readonly type: "object";
|
|
530
|
+
readonly properties: {
|
|
531
|
+
readonly enabled: {
|
|
532
|
+
readonly type: "boolean";
|
|
533
|
+
readonly default: true;
|
|
514
534
|
};
|
|
515
|
-
readonly
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
readonly properties: {
|
|
519
|
-
readonly apiKey: {
|
|
520
|
-
readonly type: "string";
|
|
521
|
-
};
|
|
522
|
-
readonly enabled: {
|
|
523
|
-
readonly type: "boolean";
|
|
524
|
-
readonly default: true;
|
|
525
|
-
};
|
|
535
|
+
readonly apiKey: {
|
|
536
|
+
readonly type: "string";
|
|
537
|
+
readonly description: "Hetzner Cloud API key with read / write access";
|
|
526
538
|
};
|
|
527
|
-
|
|
528
|
-
|
|
539
|
+
};
|
|
540
|
+
readonly required: readonly ["apiKey"];
|
|
541
|
+
readonly additionalProperties: false;
|
|
529
542
|
};
|
|
530
543
|
readonly aws: {
|
|
531
544
|
readonly type: "object";
|
|
@@ -550,13 +563,8 @@ export declare const FleetCreateInputSchema: {
|
|
|
550
563
|
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
551
564
|
readonly example: "new-clouds-fleet";
|
|
552
565
|
};
|
|
553
|
-
readonly type: {
|
|
554
|
-
readonly type: "string";
|
|
555
|
-
readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
|
|
556
|
-
readonly enum: readonly ["managed", "connected"];
|
|
557
|
-
};
|
|
558
566
|
};
|
|
559
|
-
readonly required: readonly ["id"
|
|
567
|
+
readonly required: readonly ["id"];
|
|
560
568
|
readonly additionalProperties: false;
|
|
561
569
|
};
|
|
562
570
|
export declare const FleetSchema: {
|
|
@@ -592,31 +600,19 @@ export declare const FleetSchema: {
|
|
|
592
600
|
readonly additionalProperties: false;
|
|
593
601
|
};
|
|
594
602
|
readonly hetzner: {
|
|
595
|
-
readonly
|
|
596
|
-
|
|
597
|
-
readonly
|
|
598
|
-
readonly
|
|
599
|
-
|
|
600
|
-
readonly default: true;
|
|
601
|
-
};
|
|
602
|
-
readonly apiKey: {
|
|
603
|
-
readonly type: "string";
|
|
604
|
-
};
|
|
603
|
+
readonly type: "object";
|
|
604
|
+
readonly properties: {
|
|
605
|
+
readonly enabled: {
|
|
606
|
+
readonly type: "boolean";
|
|
607
|
+
readonly default: true;
|
|
605
608
|
};
|
|
606
|
-
readonly
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
readonly properties: {
|
|
610
|
-
readonly apiKey: {
|
|
611
|
-
readonly type: "string";
|
|
612
|
-
};
|
|
613
|
-
readonly enabled: {
|
|
614
|
-
readonly type: "boolean";
|
|
615
|
-
readonly default: true;
|
|
616
|
-
};
|
|
609
|
+
readonly apiKey: {
|
|
610
|
+
readonly type: "string";
|
|
611
|
+
readonly description: "Hetzner Cloud API key with read / write access";
|
|
617
612
|
};
|
|
618
|
-
|
|
619
|
-
|
|
613
|
+
};
|
|
614
|
+
readonly required: readonly ["apiKey"];
|
|
615
|
+
readonly additionalProperties: false;
|
|
620
616
|
};
|
|
621
617
|
readonly aws: {
|
|
622
618
|
readonly type: "object";
|
|
@@ -641,13 +637,8 @@ export declare const FleetSchema: {
|
|
|
641
637
|
readonly description: "Unique identifier of the kubernetes fleet.";
|
|
642
638
|
readonly example: "new-clouds-fleet";
|
|
643
639
|
};
|
|
644
|
-
readonly type: {
|
|
645
|
-
readonly type: "string";
|
|
646
|
-
readonly description: "Specifies the fleet type: infrastructure managed by Cloudfleet or Connected Fleets.";
|
|
647
|
-
readonly enum: readonly ["managed", "connected"];
|
|
648
|
-
};
|
|
649
640
|
};
|
|
650
|
-
readonly required: readonly ["id"
|
|
641
|
+
readonly required: readonly ["id"];
|
|
651
642
|
readonly additionalProperties: false;
|
|
652
643
|
};
|
|
653
644
|
export declare const FleetUpdateInputSchema: {
|
|
@@ -683,31 +674,19 @@ export declare const FleetUpdateInputSchema: {
|
|
|
683
674
|
readonly additionalProperties: false;
|
|
684
675
|
};
|
|
685
676
|
readonly hetzner: {
|
|
686
|
-
readonly
|
|
687
|
-
|
|
688
|
-
readonly
|
|
689
|
-
readonly
|
|
690
|
-
|
|
691
|
-
readonly default: true;
|
|
692
|
-
};
|
|
693
|
-
readonly apiKey: {
|
|
694
|
-
readonly type: "string";
|
|
695
|
-
};
|
|
677
|
+
readonly type: "object";
|
|
678
|
+
readonly properties: {
|
|
679
|
+
readonly enabled: {
|
|
680
|
+
readonly type: "boolean";
|
|
681
|
+
readonly default: true;
|
|
696
682
|
};
|
|
697
|
-
readonly
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
readonly properties: {
|
|
701
|
-
readonly apiKey: {
|
|
702
|
-
readonly type: "string";
|
|
703
|
-
};
|
|
704
|
-
readonly enabled: {
|
|
705
|
-
readonly type: "boolean";
|
|
706
|
-
readonly default: true;
|
|
707
|
-
};
|
|
683
|
+
readonly apiKey: {
|
|
684
|
+
readonly type: "string";
|
|
685
|
+
readonly description: "Hetzner Cloud API key with read / write access";
|
|
708
686
|
};
|
|
709
|
-
|
|
710
|
-
|
|
687
|
+
};
|
|
688
|
+
readonly required: readonly ["apiKey"];
|
|
689
|
+
readonly additionalProperties: false;
|
|
711
690
|
};
|
|
712
691
|
readonly aws: {
|
|
713
692
|
readonly type: "object";
|
|
@@ -1150,8 +1129,42 @@ export declare const MarketplaceListingSchema: {
|
|
|
1150
1129
|
};
|
|
1151
1130
|
readonly description: "Tags of the chart";
|
|
1152
1131
|
};
|
|
1132
|
+
readonly version_channels: {
|
|
1133
|
+
readonly type: "array";
|
|
1134
|
+
readonly items: {
|
|
1135
|
+
readonly type: "string";
|
|
1136
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
1137
|
+
readonly description: "Version of the chart.";
|
|
1138
|
+
readonly example: "2.x.x-cfke.x";
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
readonly value_schemas: {
|
|
1142
|
+
readonly type: "array";
|
|
1143
|
+
readonly items: {
|
|
1144
|
+
readonly type: "object";
|
|
1145
|
+
readonly properties: {
|
|
1146
|
+
readonly version: {
|
|
1147
|
+
readonly type: "string";
|
|
1148
|
+
readonly pattern: "^(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)\\.(x|X|0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$";
|
|
1149
|
+
readonly description: "Version of the chart.";
|
|
1150
|
+
readonly example: "2.1.1-cfke.123";
|
|
1151
|
+
};
|
|
1152
|
+
readonly schema: {
|
|
1153
|
+
readonly type: "string";
|
|
1154
|
+
readonly description: "Schema of the chart values. JSON Schema as string";
|
|
1155
|
+
};
|
|
1156
|
+
readonly placeholder: {
|
|
1157
|
+
readonly type: "string";
|
|
1158
|
+
readonly description: "Schema of the chart values";
|
|
1159
|
+
readonly example: "foo: 1\nbar: example";
|
|
1160
|
+
};
|
|
1161
|
+
};
|
|
1162
|
+
readonly required: readonly ["version", "schema", "placeholder"];
|
|
1163
|
+
readonly additionalProperties: false;
|
|
1164
|
+
};
|
|
1165
|
+
};
|
|
1153
1166
|
};
|
|
1154
|
-
readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription"];
|
|
1167
|
+
readonly required: readonly ["id", "name", "developer", "description", "logoUrl", "longDescription", "categories", "version_channels", "value_schemas"];
|
|
1155
1168
|
readonly additionalProperties: false;
|
|
1156
1169
|
};
|
|
1157
1170
|
export declare const OrganizationCreateInputSchema: {
|
|
@@ -1243,12 +1256,6 @@ export declare const OrganizationSchema: {
|
|
|
1243
1256
|
readonly description: "Maximum number of fleets that can be created per cluster.";
|
|
1244
1257
|
readonly example: 999;
|
|
1245
1258
|
};
|
|
1246
|
-
readonly managed_fleets_cpu_max: {
|
|
1247
|
-
readonly type: "integer";
|
|
1248
|
-
readonly minimum: 0;
|
|
1249
|
-
readonly description: "Maximum number of CPU cores per managed fleet.";
|
|
1250
|
-
readonly example: 999;
|
|
1251
|
-
};
|
|
1252
1259
|
readonly cluster_tiers: {
|
|
1253
1260
|
readonly type: "array";
|
|
1254
1261
|
readonly items: {
|
|
@@ -1290,7 +1297,7 @@ export declare const OrganizationSchema: {
|
|
|
1290
1297
|
readonly description: "List of CFKE control plane versions available for the organization.";
|
|
1291
1298
|
};
|
|
1292
1299
|
};
|
|
1293
|
-
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "
|
|
1300
|
+
readonly required: readonly ["basic_clusters_max", "basic_clusters_available", "pro_clusters_max", "pro_clusters_available", "fleets_max", "cluster_tiers", "regions", "versions"];
|
|
1294
1301
|
readonly additionalProperties: false;
|
|
1295
1302
|
readonly description: "For security reasons, platform quota is controlled by Cloudfleet and can be updated only by Cloudfleet administrators. Please open a support ticket if you need to change the platform quota.";
|
|
1296
1303
|
};
|
|
@@ -1452,13 +1459,13 @@ export declare const UsageSchema: {
|
|
|
1452
1459
|
readonly type: "string";
|
|
1453
1460
|
readonly description: "Tier of the cluster.";
|
|
1454
1461
|
readonly example: "pro";
|
|
1455
|
-
readonly enum: readonly [""];
|
|
1462
|
+
readonly enum: readonly ["basic", "pro", ""];
|
|
1456
1463
|
};
|
|
1457
1464
|
readonly product: {
|
|
1458
1465
|
readonly type: "string";
|
|
1459
1466
|
readonly description: "The product the usage is associated with";
|
|
1460
|
-
readonly example: "
|
|
1461
|
-
readonly enum: readonly ["
|
|
1467
|
+
readonly example: "cfke_controlplane";
|
|
1468
|
+
readonly enum: readonly ["cfke_controlplane", "cfke_connected_nodes", "infra_compute", "infra_storage", "infra_loadbalancing", "infra_traffic", "cfcr_storage"];
|
|
1462
1469
|
};
|
|
1463
1470
|
readonly node_name: {
|
|
1464
1471
|
readonly type: "string";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,oBAAoB
|
|
1
|
+
{"version":3,"file":"schemas.gen.d.ts","sourceRoot":"","sources":["../src/schemas.gen.ts"],"names":[],"mappings":"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"}
|