@cloudfleet/sdk 0.0.1-7a6b7de → 0.0.1-7aa2bb2
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 +1149 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1165 -0
- package/dist/@tanstack/react-query.gen.js.map +1 -0
- package/dist/client/client.gen.d.ts.map +1 -1
- package/dist/client/client.gen.js +103 -119
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +5 -2
- package/dist/client/types.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.d.ts +5 -1
- package/dist/client/utils.gen.d.ts.map +1 -1
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/core/serverSentEvents.gen.d.ts +1 -1
- package/dist/core/serverSentEvents.gen.d.ts.map +1 -1
- package/dist/core/serverSentEvents.gen.js +3 -4
- package/dist/core/serverSentEvents.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +716 -77
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1558 -106
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +63 -20
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +96 -22
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +632 -105
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2176 -129
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +927 -64
- package/dist/zod.gen.js.map +1 -1
- package/package.json +23 -4
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
type: z.ZodEnum<{
|
|
4
|
+
business: "business";
|
|
5
|
+
personal: "personal";
|
|
6
|
+
}>;
|
|
3
7
|
company: z.ZodOptional<z.ZodString>;
|
|
4
8
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
9
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -199,23 +203,24 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
203
|
basic: "basic";
|
|
200
204
|
pro: "pro";
|
|
201
205
|
}>;
|
|
202
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
206
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
207
|
"staging-1a": "staging-1a";
|
|
204
208
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
209
|
"europe-central-1a": "europe-central-1a";
|
|
206
210
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
|
-
}
|
|
208
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
211
|
+
}>>>;
|
|
212
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
213
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
214
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
215
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
216
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
-
}
|
|
217
|
+
}>>>;
|
|
214
218
|
}, z.core.$strip>;
|
|
215
219
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
220
|
certificate_authority: z.ZodString;
|
|
217
221
|
endpoint: z.ZodURL;
|
|
218
222
|
cluster_dns: z.ZodString;
|
|
223
|
+
pod_cidr: z.ZodString;
|
|
219
224
|
auth_key: z.ZodString;
|
|
220
225
|
bootstrap_token: z.ZodString;
|
|
221
226
|
versions: z.ZodObject<{
|
|
@@ -236,12 +241,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
236
241
|
basic: "basic";
|
|
237
242
|
pro: "pro";
|
|
238
243
|
}>;
|
|
239
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
244
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
240
245
|
"staging-1a": "staging-1a";
|
|
241
246
|
"northamerica-central-1": "northamerica-central-1";
|
|
242
247
|
"europe-central-1a": "europe-central-1a";
|
|
243
248
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
244
|
-
}
|
|
249
|
+
}>>>;
|
|
245
250
|
id: z.ZodUUID;
|
|
246
251
|
status: z.ZodEnum<{
|
|
247
252
|
deleted: "deleted";
|
|
@@ -255,6 +260,9 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
260
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
256
261
|
"": "";
|
|
257
262
|
}>]>>;
|
|
263
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
264
|
+
"": "";
|
|
265
|
+
}>]>>;
|
|
258
266
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
259
267
|
version_current: z.ZodOptional<z.ZodString>;
|
|
260
268
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -272,56 +280,783 @@ export declare const zClusterUpdateInput: z.ZodObject<{
|
|
|
272
280
|
}, z.core.$strip>;
|
|
273
281
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
274
282
|
limits: z.ZodOptional<z.ZodObject<{
|
|
275
|
-
cpu: z.
|
|
283
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
276
284
|
}, z.core.$strip>>;
|
|
277
285
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
278
|
-
enabled: z.
|
|
279
|
-
project: z.ZodString
|
|
286
|
+
enabled: z.ZodBoolean;
|
|
287
|
+
project: z.ZodOptional<z.ZodString>;
|
|
280
288
|
}, z.core.$strip>>;
|
|
281
289
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
282
|
-
enabled: z.
|
|
283
|
-
apiKey: z.ZodString
|
|
290
|
+
enabled: z.ZodBoolean;
|
|
291
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
284
292
|
}, z.core.$strip>>;
|
|
285
293
|
aws: z.ZodOptional<z.ZodObject<{
|
|
286
|
-
enabled: z.
|
|
287
|
-
controllerRoleArn: z.ZodString
|
|
294
|
+
enabled: z.ZodBoolean;
|
|
295
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
288
296
|
}, z.core.$strip>>;
|
|
297
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
298
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
299
|
+
"on-demand": "on-demand";
|
|
300
|
+
spot: "spot";
|
|
301
|
+
}>>>>;
|
|
302
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
303
|
+
amd64: "amd64";
|
|
304
|
+
arm64: "arm64";
|
|
305
|
+
}>>>>;
|
|
306
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
307
|
+
p3: "p3";
|
|
308
|
+
cx: "cx";
|
|
309
|
+
h1: "h1";
|
|
310
|
+
h3: "h3";
|
|
311
|
+
a1: "a1";
|
|
312
|
+
a2: "a2";
|
|
313
|
+
a3: "a3";
|
|
314
|
+
a4: "a4";
|
|
315
|
+
c1: "c1";
|
|
316
|
+
c2: "c2";
|
|
317
|
+
c2d: "c2d";
|
|
318
|
+
c3: "c3";
|
|
319
|
+
c3d: "c3d";
|
|
320
|
+
c4: "c4";
|
|
321
|
+
c4a: "c4a";
|
|
322
|
+
c4d: "c4d";
|
|
323
|
+
c5: "c5";
|
|
324
|
+
c5a: "c5a";
|
|
325
|
+
c5ad: "c5ad";
|
|
326
|
+
c5d: "c5d";
|
|
327
|
+
c5n: "c5n";
|
|
328
|
+
c6a: "c6a";
|
|
329
|
+
c6g: "c6g";
|
|
330
|
+
c6gd: "c6gd";
|
|
331
|
+
c6gn: "c6gn";
|
|
332
|
+
c6i: "c6i";
|
|
333
|
+
c6id: "c6id";
|
|
334
|
+
c6in: "c6in";
|
|
335
|
+
c7a: "c7a";
|
|
336
|
+
c7g: "c7g";
|
|
337
|
+
c7gd: "c7gd";
|
|
338
|
+
c7gn: "c7gn";
|
|
339
|
+
c7i: "c7i";
|
|
340
|
+
"c7i-flex": "c7i-flex";
|
|
341
|
+
c8g: "c8g";
|
|
342
|
+
c8gd: "c8gd";
|
|
343
|
+
cax: "cax";
|
|
344
|
+
ccx: "ccx";
|
|
345
|
+
cpx: "cpx";
|
|
346
|
+
d2: "d2";
|
|
347
|
+
d3: "d3";
|
|
348
|
+
d3en: "d3en";
|
|
349
|
+
dl1: "dl1";
|
|
350
|
+
dl2q: "dl2q";
|
|
351
|
+
e2: "e2";
|
|
352
|
+
f1: "f1";
|
|
353
|
+
f2: "f2";
|
|
354
|
+
g1: "g1";
|
|
355
|
+
g2: "g2";
|
|
356
|
+
g4ad: "g4ad";
|
|
357
|
+
g4dn: "g4dn";
|
|
358
|
+
g5: "g5";
|
|
359
|
+
g5g: "g5g";
|
|
360
|
+
g6: "g6";
|
|
361
|
+
g6e: "g6e";
|
|
362
|
+
gr6: "gr6";
|
|
363
|
+
hpc6a: "hpc6a";
|
|
364
|
+
hpc6id: "hpc6id";
|
|
365
|
+
hpc7a: "hpc7a";
|
|
366
|
+
hpc7g: "hpc7g";
|
|
367
|
+
i2: "i2";
|
|
368
|
+
i3: "i3";
|
|
369
|
+
i3en: "i3en";
|
|
370
|
+
i4g: "i4g";
|
|
371
|
+
i4i: "i4i";
|
|
372
|
+
i7i: "i7i";
|
|
373
|
+
i7ie: "i7ie";
|
|
374
|
+
i8g: "i8g";
|
|
375
|
+
im4gn: "im4gn";
|
|
376
|
+
inf1: "inf1";
|
|
377
|
+
inf2: "inf2";
|
|
378
|
+
is4gen: "is4gen";
|
|
379
|
+
m1: "m1";
|
|
380
|
+
m2: "m2";
|
|
381
|
+
m3: "m3";
|
|
382
|
+
m4: "m4";
|
|
383
|
+
m5: "m5";
|
|
384
|
+
m5a: "m5a";
|
|
385
|
+
m5ad: "m5ad";
|
|
386
|
+
m5d: "m5d";
|
|
387
|
+
m5dn: "m5dn";
|
|
388
|
+
m5n: "m5n";
|
|
389
|
+
m5zn: "m5zn";
|
|
390
|
+
m6a: "m6a";
|
|
391
|
+
m6g: "m6g";
|
|
392
|
+
m6gd: "m6gd";
|
|
393
|
+
m6i: "m6i";
|
|
394
|
+
m6id: "m6id";
|
|
395
|
+
m6idn: "m6idn";
|
|
396
|
+
m6in: "m6in";
|
|
397
|
+
m7a: "m7a";
|
|
398
|
+
m7g: "m7g";
|
|
399
|
+
m7gd: "m7gd";
|
|
400
|
+
m7i: "m7i";
|
|
401
|
+
"m7i-flex": "m7i-flex";
|
|
402
|
+
m8g: "m8g";
|
|
403
|
+
m8gd: "m8gd";
|
|
404
|
+
n1: "n1";
|
|
405
|
+
n2: "n2";
|
|
406
|
+
n2d: "n2d";
|
|
407
|
+
n4: "n4";
|
|
408
|
+
p3dn: "p3dn";
|
|
409
|
+
p4d: "p4d";
|
|
410
|
+
p4de: "p4de";
|
|
411
|
+
p5: "p5";
|
|
412
|
+
p5e: "p5e";
|
|
413
|
+
p5en: "p5en";
|
|
414
|
+
"p6-b200": "p6-b200";
|
|
415
|
+
r3: "r3";
|
|
416
|
+
r4: "r4";
|
|
417
|
+
r5: "r5";
|
|
418
|
+
r5a: "r5a";
|
|
419
|
+
r5ad: "r5ad";
|
|
420
|
+
r5b: "r5b";
|
|
421
|
+
r5d: "r5d";
|
|
422
|
+
r5dn: "r5dn";
|
|
423
|
+
r5n: "r5n";
|
|
424
|
+
r6a: "r6a";
|
|
425
|
+
r6g: "r6g";
|
|
426
|
+
r6gd: "r6gd";
|
|
427
|
+
r6i: "r6i";
|
|
428
|
+
r6id: "r6id";
|
|
429
|
+
r6idn: "r6idn";
|
|
430
|
+
r6in: "r6in";
|
|
431
|
+
r7a: "r7a";
|
|
432
|
+
r7g: "r7g";
|
|
433
|
+
r7gd: "r7gd";
|
|
434
|
+
r7i: "r7i";
|
|
435
|
+
r7iz: "r7iz";
|
|
436
|
+
r8g: "r8g";
|
|
437
|
+
r8gd: "r8gd";
|
|
438
|
+
t2: "t2";
|
|
439
|
+
t2a: "t2a";
|
|
440
|
+
t2d: "t2d";
|
|
441
|
+
t3: "t3";
|
|
442
|
+
t3a: "t3a";
|
|
443
|
+
t4g: "t4g";
|
|
444
|
+
trn1: "trn1";
|
|
445
|
+
trn1n: "trn1n";
|
|
446
|
+
"u-3tb1": "u-3tb1";
|
|
447
|
+
"u-6tb1": "u-6tb1";
|
|
448
|
+
"u7i-12tb": "u7i-12tb";
|
|
449
|
+
"u7i-6tb": "u7i-6tb";
|
|
450
|
+
"u7i-8tb": "u7i-8tb";
|
|
451
|
+
"u7in-16tb": "u7in-16tb";
|
|
452
|
+
"u7in-24tb": "u7in-24tb";
|
|
453
|
+
"u7in-32tb": "u7in-32tb";
|
|
454
|
+
vt1: "vt1";
|
|
455
|
+
x1: "x1";
|
|
456
|
+
x1e: "x1e";
|
|
457
|
+
x2gd: "x2gd";
|
|
458
|
+
x2idn: "x2idn";
|
|
459
|
+
x2iedn: "x2iedn";
|
|
460
|
+
x2iezn: "x2iezn";
|
|
461
|
+
x4: "x4";
|
|
462
|
+
x8g: "x8g";
|
|
463
|
+
z1d: "z1d";
|
|
464
|
+
z3: "z3";
|
|
465
|
+
}>>>;
|
|
466
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
467
|
+
"africa-south1": "africa-south1";
|
|
468
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
469
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
470
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
471
|
+
"ap-south-1": "ap-south-1";
|
|
472
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
473
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
474
|
+
ash: "ash";
|
|
475
|
+
"asia-east1": "asia-east1";
|
|
476
|
+
"asia-east2": "asia-east2";
|
|
477
|
+
"asia-northeast1": "asia-northeast1";
|
|
478
|
+
"asia-northeast2": "asia-northeast2";
|
|
479
|
+
"asia-northeast3": "asia-northeast3";
|
|
480
|
+
"asia-south1": "asia-south1";
|
|
481
|
+
"asia-south2": "asia-south2";
|
|
482
|
+
"asia-southeast1": "asia-southeast1";
|
|
483
|
+
"asia-southeast2": "asia-southeast2";
|
|
484
|
+
"australia-southeast1": "australia-southeast1";
|
|
485
|
+
"australia-southeast2": "australia-southeast2";
|
|
486
|
+
"ca-central-1": "ca-central-1";
|
|
487
|
+
"eu-central-1": "eu-central-1";
|
|
488
|
+
"eu-central-2": "eu-central-2";
|
|
489
|
+
"eu-north-1": "eu-north-1";
|
|
490
|
+
"eu-west-1": "eu-west-1";
|
|
491
|
+
"eu-west-2": "eu-west-2";
|
|
492
|
+
"eu-west-3": "eu-west-3";
|
|
493
|
+
"europe-central2": "europe-central2";
|
|
494
|
+
"europe-north1": "europe-north1";
|
|
495
|
+
"europe-southwest1": "europe-southwest1";
|
|
496
|
+
"europe-west1": "europe-west1";
|
|
497
|
+
"europe-west10": "europe-west10";
|
|
498
|
+
"europe-west12": "europe-west12";
|
|
499
|
+
"europe-west2": "europe-west2";
|
|
500
|
+
"europe-west3": "europe-west3";
|
|
501
|
+
"europe-west4": "europe-west4";
|
|
502
|
+
"europe-west6": "europe-west6";
|
|
503
|
+
"europe-west8": "europe-west8";
|
|
504
|
+
"europe-west9": "europe-west9";
|
|
505
|
+
fsn1: "fsn1";
|
|
506
|
+
hel1: "hel1";
|
|
507
|
+
hil: "hil";
|
|
508
|
+
"me-central1": "me-central1";
|
|
509
|
+
"me-central2": "me-central2";
|
|
510
|
+
"me-west1": "me-west1";
|
|
511
|
+
nbg1: "nbg1";
|
|
512
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
513
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
514
|
+
"sa-east-1": "sa-east-1";
|
|
515
|
+
sin: "sin";
|
|
516
|
+
"southamerica-east1": "southamerica-east1";
|
|
517
|
+
"southamerica-west1": "southamerica-west1";
|
|
518
|
+
"us-central1": "us-central1";
|
|
519
|
+
"us-east-1": "us-east-1";
|
|
520
|
+
"us-east-2": "us-east-2";
|
|
521
|
+
"us-east1": "us-east1";
|
|
522
|
+
"us-east4": "us-east4";
|
|
523
|
+
"us-east5": "us-east5";
|
|
524
|
+
"us-south1": "us-south1";
|
|
525
|
+
"us-west-1": "us-west-1";
|
|
526
|
+
"us-west-2": "us-west-2";
|
|
527
|
+
"us-west1": "us-west1";
|
|
528
|
+
"us-west2": "us-west2";
|
|
529
|
+
"us-west3": "us-west3";
|
|
530
|
+
"us-west4": "us-west4";
|
|
531
|
+
}>>>;
|
|
532
|
+
}, z.core.$strip>>;
|
|
533
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
534
|
+
aggressive: "aggressive";
|
|
535
|
+
conservative: "conservative";
|
|
536
|
+
}>>>;
|
|
289
537
|
id: z.ZodString;
|
|
290
538
|
}, z.core.$strip>;
|
|
291
539
|
export declare const zFleet: z.ZodObject<{
|
|
292
540
|
limits: z.ZodOptional<z.ZodObject<{
|
|
293
|
-
cpu: z.
|
|
541
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
294
542
|
}, z.core.$strip>>;
|
|
295
543
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
296
|
-
enabled: z.
|
|
297
|
-
project: z.ZodString
|
|
544
|
+
enabled: z.ZodBoolean;
|
|
545
|
+
project: z.ZodOptional<z.ZodString>;
|
|
298
546
|
}, z.core.$strip>>;
|
|
299
547
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
300
|
-
enabled: z.
|
|
301
|
-
apiKey: z.ZodString
|
|
548
|
+
enabled: z.ZodBoolean;
|
|
549
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
302
550
|
}, z.core.$strip>>;
|
|
303
551
|
aws: z.ZodOptional<z.ZodObject<{
|
|
304
|
-
enabled: z.
|
|
305
|
-
controllerRoleArn: z.ZodString
|
|
552
|
+
enabled: z.ZodBoolean;
|
|
553
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
554
|
+
}, z.core.$strip>>;
|
|
555
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
556
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
557
|
+
"on-demand": "on-demand";
|
|
558
|
+
spot: "spot";
|
|
559
|
+
}>>>>;
|
|
560
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
561
|
+
amd64: "amd64";
|
|
562
|
+
arm64: "arm64";
|
|
563
|
+
}>>>>;
|
|
564
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
565
|
+
p3: "p3";
|
|
566
|
+
cx: "cx";
|
|
567
|
+
h1: "h1";
|
|
568
|
+
h3: "h3";
|
|
569
|
+
a1: "a1";
|
|
570
|
+
a2: "a2";
|
|
571
|
+
a3: "a3";
|
|
572
|
+
a4: "a4";
|
|
573
|
+
c1: "c1";
|
|
574
|
+
c2: "c2";
|
|
575
|
+
c2d: "c2d";
|
|
576
|
+
c3: "c3";
|
|
577
|
+
c3d: "c3d";
|
|
578
|
+
c4: "c4";
|
|
579
|
+
c4a: "c4a";
|
|
580
|
+
c4d: "c4d";
|
|
581
|
+
c5: "c5";
|
|
582
|
+
c5a: "c5a";
|
|
583
|
+
c5ad: "c5ad";
|
|
584
|
+
c5d: "c5d";
|
|
585
|
+
c5n: "c5n";
|
|
586
|
+
c6a: "c6a";
|
|
587
|
+
c6g: "c6g";
|
|
588
|
+
c6gd: "c6gd";
|
|
589
|
+
c6gn: "c6gn";
|
|
590
|
+
c6i: "c6i";
|
|
591
|
+
c6id: "c6id";
|
|
592
|
+
c6in: "c6in";
|
|
593
|
+
c7a: "c7a";
|
|
594
|
+
c7g: "c7g";
|
|
595
|
+
c7gd: "c7gd";
|
|
596
|
+
c7gn: "c7gn";
|
|
597
|
+
c7i: "c7i";
|
|
598
|
+
"c7i-flex": "c7i-flex";
|
|
599
|
+
c8g: "c8g";
|
|
600
|
+
c8gd: "c8gd";
|
|
601
|
+
cax: "cax";
|
|
602
|
+
ccx: "ccx";
|
|
603
|
+
cpx: "cpx";
|
|
604
|
+
d2: "d2";
|
|
605
|
+
d3: "d3";
|
|
606
|
+
d3en: "d3en";
|
|
607
|
+
dl1: "dl1";
|
|
608
|
+
dl2q: "dl2q";
|
|
609
|
+
e2: "e2";
|
|
610
|
+
f1: "f1";
|
|
611
|
+
f2: "f2";
|
|
612
|
+
g1: "g1";
|
|
613
|
+
g2: "g2";
|
|
614
|
+
g4ad: "g4ad";
|
|
615
|
+
g4dn: "g4dn";
|
|
616
|
+
g5: "g5";
|
|
617
|
+
g5g: "g5g";
|
|
618
|
+
g6: "g6";
|
|
619
|
+
g6e: "g6e";
|
|
620
|
+
gr6: "gr6";
|
|
621
|
+
hpc6a: "hpc6a";
|
|
622
|
+
hpc6id: "hpc6id";
|
|
623
|
+
hpc7a: "hpc7a";
|
|
624
|
+
hpc7g: "hpc7g";
|
|
625
|
+
i2: "i2";
|
|
626
|
+
i3: "i3";
|
|
627
|
+
i3en: "i3en";
|
|
628
|
+
i4g: "i4g";
|
|
629
|
+
i4i: "i4i";
|
|
630
|
+
i7i: "i7i";
|
|
631
|
+
i7ie: "i7ie";
|
|
632
|
+
i8g: "i8g";
|
|
633
|
+
im4gn: "im4gn";
|
|
634
|
+
inf1: "inf1";
|
|
635
|
+
inf2: "inf2";
|
|
636
|
+
is4gen: "is4gen";
|
|
637
|
+
m1: "m1";
|
|
638
|
+
m2: "m2";
|
|
639
|
+
m3: "m3";
|
|
640
|
+
m4: "m4";
|
|
641
|
+
m5: "m5";
|
|
642
|
+
m5a: "m5a";
|
|
643
|
+
m5ad: "m5ad";
|
|
644
|
+
m5d: "m5d";
|
|
645
|
+
m5dn: "m5dn";
|
|
646
|
+
m5n: "m5n";
|
|
647
|
+
m5zn: "m5zn";
|
|
648
|
+
m6a: "m6a";
|
|
649
|
+
m6g: "m6g";
|
|
650
|
+
m6gd: "m6gd";
|
|
651
|
+
m6i: "m6i";
|
|
652
|
+
m6id: "m6id";
|
|
653
|
+
m6idn: "m6idn";
|
|
654
|
+
m6in: "m6in";
|
|
655
|
+
m7a: "m7a";
|
|
656
|
+
m7g: "m7g";
|
|
657
|
+
m7gd: "m7gd";
|
|
658
|
+
m7i: "m7i";
|
|
659
|
+
"m7i-flex": "m7i-flex";
|
|
660
|
+
m8g: "m8g";
|
|
661
|
+
m8gd: "m8gd";
|
|
662
|
+
n1: "n1";
|
|
663
|
+
n2: "n2";
|
|
664
|
+
n2d: "n2d";
|
|
665
|
+
n4: "n4";
|
|
666
|
+
p3dn: "p3dn";
|
|
667
|
+
p4d: "p4d";
|
|
668
|
+
p4de: "p4de";
|
|
669
|
+
p5: "p5";
|
|
670
|
+
p5e: "p5e";
|
|
671
|
+
p5en: "p5en";
|
|
672
|
+
"p6-b200": "p6-b200";
|
|
673
|
+
r3: "r3";
|
|
674
|
+
r4: "r4";
|
|
675
|
+
r5: "r5";
|
|
676
|
+
r5a: "r5a";
|
|
677
|
+
r5ad: "r5ad";
|
|
678
|
+
r5b: "r5b";
|
|
679
|
+
r5d: "r5d";
|
|
680
|
+
r5dn: "r5dn";
|
|
681
|
+
r5n: "r5n";
|
|
682
|
+
r6a: "r6a";
|
|
683
|
+
r6g: "r6g";
|
|
684
|
+
r6gd: "r6gd";
|
|
685
|
+
r6i: "r6i";
|
|
686
|
+
r6id: "r6id";
|
|
687
|
+
r6idn: "r6idn";
|
|
688
|
+
r6in: "r6in";
|
|
689
|
+
r7a: "r7a";
|
|
690
|
+
r7g: "r7g";
|
|
691
|
+
r7gd: "r7gd";
|
|
692
|
+
r7i: "r7i";
|
|
693
|
+
r7iz: "r7iz";
|
|
694
|
+
r8g: "r8g";
|
|
695
|
+
r8gd: "r8gd";
|
|
696
|
+
t2: "t2";
|
|
697
|
+
t2a: "t2a";
|
|
698
|
+
t2d: "t2d";
|
|
699
|
+
t3: "t3";
|
|
700
|
+
t3a: "t3a";
|
|
701
|
+
t4g: "t4g";
|
|
702
|
+
trn1: "trn1";
|
|
703
|
+
trn1n: "trn1n";
|
|
704
|
+
"u-3tb1": "u-3tb1";
|
|
705
|
+
"u-6tb1": "u-6tb1";
|
|
706
|
+
"u7i-12tb": "u7i-12tb";
|
|
707
|
+
"u7i-6tb": "u7i-6tb";
|
|
708
|
+
"u7i-8tb": "u7i-8tb";
|
|
709
|
+
"u7in-16tb": "u7in-16tb";
|
|
710
|
+
"u7in-24tb": "u7in-24tb";
|
|
711
|
+
"u7in-32tb": "u7in-32tb";
|
|
712
|
+
vt1: "vt1";
|
|
713
|
+
x1: "x1";
|
|
714
|
+
x1e: "x1e";
|
|
715
|
+
x2gd: "x2gd";
|
|
716
|
+
x2idn: "x2idn";
|
|
717
|
+
x2iedn: "x2iedn";
|
|
718
|
+
x2iezn: "x2iezn";
|
|
719
|
+
x4: "x4";
|
|
720
|
+
x8g: "x8g";
|
|
721
|
+
z1d: "z1d";
|
|
722
|
+
z3: "z3";
|
|
723
|
+
}>>>;
|
|
724
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
725
|
+
"africa-south1": "africa-south1";
|
|
726
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
727
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
728
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
729
|
+
"ap-south-1": "ap-south-1";
|
|
730
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
731
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
732
|
+
ash: "ash";
|
|
733
|
+
"asia-east1": "asia-east1";
|
|
734
|
+
"asia-east2": "asia-east2";
|
|
735
|
+
"asia-northeast1": "asia-northeast1";
|
|
736
|
+
"asia-northeast2": "asia-northeast2";
|
|
737
|
+
"asia-northeast3": "asia-northeast3";
|
|
738
|
+
"asia-south1": "asia-south1";
|
|
739
|
+
"asia-south2": "asia-south2";
|
|
740
|
+
"asia-southeast1": "asia-southeast1";
|
|
741
|
+
"asia-southeast2": "asia-southeast2";
|
|
742
|
+
"australia-southeast1": "australia-southeast1";
|
|
743
|
+
"australia-southeast2": "australia-southeast2";
|
|
744
|
+
"ca-central-1": "ca-central-1";
|
|
745
|
+
"eu-central-1": "eu-central-1";
|
|
746
|
+
"eu-central-2": "eu-central-2";
|
|
747
|
+
"eu-north-1": "eu-north-1";
|
|
748
|
+
"eu-west-1": "eu-west-1";
|
|
749
|
+
"eu-west-2": "eu-west-2";
|
|
750
|
+
"eu-west-3": "eu-west-3";
|
|
751
|
+
"europe-central2": "europe-central2";
|
|
752
|
+
"europe-north1": "europe-north1";
|
|
753
|
+
"europe-southwest1": "europe-southwest1";
|
|
754
|
+
"europe-west1": "europe-west1";
|
|
755
|
+
"europe-west10": "europe-west10";
|
|
756
|
+
"europe-west12": "europe-west12";
|
|
757
|
+
"europe-west2": "europe-west2";
|
|
758
|
+
"europe-west3": "europe-west3";
|
|
759
|
+
"europe-west4": "europe-west4";
|
|
760
|
+
"europe-west6": "europe-west6";
|
|
761
|
+
"europe-west8": "europe-west8";
|
|
762
|
+
"europe-west9": "europe-west9";
|
|
763
|
+
fsn1: "fsn1";
|
|
764
|
+
hel1: "hel1";
|
|
765
|
+
hil: "hil";
|
|
766
|
+
"me-central1": "me-central1";
|
|
767
|
+
"me-central2": "me-central2";
|
|
768
|
+
"me-west1": "me-west1";
|
|
769
|
+
nbg1: "nbg1";
|
|
770
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
771
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
772
|
+
"sa-east-1": "sa-east-1";
|
|
773
|
+
sin: "sin";
|
|
774
|
+
"southamerica-east1": "southamerica-east1";
|
|
775
|
+
"southamerica-west1": "southamerica-west1";
|
|
776
|
+
"us-central1": "us-central1";
|
|
777
|
+
"us-east-1": "us-east-1";
|
|
778
|
+
"us-east-2": "us-east-2";
|
|
779
|
+
"us-east1": "us-east1";
|
|
780
|
+
"us-east4": "us-east4";
|
|
781
|
+
"us-east5": "us-east5";
|
|
782
|
+
"us-south1": "us-south1";
|
|
783
|
+
"us-west-1": "us-west-1";
|
|
784
|
+
"us-west-2": "us-west-2";
|
|
785
|
+
"us-west1": "us-west1";
|
|
786
|
+
"us-west2": "us-west2";
|
|
787
|
+
"us-west3": "us-west3";
|
|
788
|
+
"us-west4": "us-west4";
|
|
789
|
+
}>>>;
|
|
306
790
|
}, z.core.$strip>>;
|
|
791
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
792
|
+
aggressive: "aggressive";
|
|
793
|
+
conservative: "conservative";
|
|
794
|
+
}>>;
|
|
307
795
|
id: z.ZodString;
|
|
308
796
|
}, z.core.$strip>;
|
|
309
797
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
310
798
|
limits: z.ZodOptional<z.ZodObject<{
|
|
311
|
-
cpu: z.
|
|
799
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
312
800
|
}, z.core.$strip>>;
|
|
313
801
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
314
|
-
enabled: z.
|
|
315
|
-
project: z.ZodString
|
|
802
|
+
enabled: z.ZodBoolean;
|
|
803
|
+
project: z.ZodOptional<z.ZodString>;
|
|
316
804
|
}, z.core.$strip>>;
|
|
317
805
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
318
|
-
enabled: z.
|
|
319
|
-
apiKey: z.ZodString
|
|
806
|
+
enabled: z.ZodBoolean;
|
|
807
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
320
808
|
}, z.core.$strip>>;
|
|
321
809
|
aws: z.ZodOptional<z.ZodObject<{
|
|
322
|
-
enabled: z.
|
|
323
|
-
controllerRoleArn: z.ZodString
|
|
810
|
+
enabled: z.ZodBoolean;
|
|
811
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
324
812
|
}, z.core.$strip>>;
|
|
813
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
814
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
815
|
+
"on-demand": "on-demand";
|
|
816
|
+
spot: "spot";
|
|
817
|
+
}>>>;
|
|
818
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
819
|
+
amd64: "amd64";
|
|
820
|
+
arm64: "arm64";
|
|
821
|
+
}>>>;
|
|
822
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
823
|
+
p3: "p3";
|
|
824
|
+
cx: "cx";
|
|
825
|
+
h1: "h1";
|
|
826
|
+
h3: "h3";
|
|
827
|
+
a1: "a1";
|
|
828
|
+
a2: "a2";
|
|
829
|
+
a3: "a3";
|
|
830
|
+
a4: "a4";
|
|
831
|
+
c1: "c1";
|
|
832
|
+
c2: "c2";
|
|
833
|
+
c2d: "c2d";
|
|
834
|
+
c3: "c3";
|
|
835
|
+
c3d: "c3d";
|
|
836
|
+
c4: "c4";
|
|
837
|
+
c4a: "c4a";
|
|
838
|
+
c4d: "c4d";
|
|
839
|
+
c5: "c5";
|
|
840
|
+
c5a: "c5a";
|
|
841
|
+
c5ad: "c5ad";
|
|
842
|
+
c5d: "c5d";
|
|
843
|
+
c5n: "c5n";
|
|
844
|
+
c6a: "c6a";
|
|
845
|
+
c6g: "c6g";
|
|
846
|
+
c6gd: "c6gd";
|
|
847
|
+
c6gn: "c6gn";
|
|
848
|
+
c6i: "c6i";
|
|
849
|
+
c6id: "c6id";
|
|
850
|
+
c6in: "c6in";
|
|
851
|
+
c7a: "c7a";
|
|
852
|
+
c7g: "c7g";
|
|
853
|
+
c7gd: "c7gd";
|
|
854
|
+
c7gn: "c7gn";
|
|
855
|
+
c7i: "c7i";
|
|
856
|
+
"c7i-flex": "c7i-flex";
|
|
857
|
+
c8g: "c8g";
|
|
858
|
+
c8gd: "c8gd";
|
|
859
|
+
cax: "cax";
|
|
860
|
+
ccx: "ccx";
|
|
861
|
+
cpx: "cpx";
|
|
862
|
+
d2: "d2";
|
|
863
|
+
d3: "d3";
|
|
864
|
+
d3en: "d3en";
|
|
865
|
+
dl1: "dl1";
|
|
866
|
+
dl2q: "dl2q";
|
|
867
|
+
e2: "e2";
|
|
868
|
+
f1: "f1";
|
|
869
|
+
f2: "f2";
|
|
870
|
+
g1: "g1";
|
|
871
|
+
g2: "g2";
|
|
872
|
+
g4ad: "g4ad";
|
|
873
|
+
g4dn: "g4dn";
|
|
874
|
+
g5: "g5";
|
|
875
|
+
g5g: "g5g";
|
|
876
|
+
g6: "g6";
|
|
877
|
+
g6e: "g6e";
|
|
878
|
+
gr6: "gr6";
|
|
879
|
+
hpc6a: "hpc6a";
|
|
880
|
+
hpc6id: "hpc6id";
|
|
881
|
+
hpc7a: "hpc7a";
|
|
882
|
+
hpc7g: "hpc7g";
|
|
883
|
+
i2: "i2";
|
|
884
|
+
i3: "i3";
|
|
885
|
+
i3en: "i3en";
|
|
886
|
+
i4g: "i4g";
|
|
887
|
+
i4i: "i4i";
|
|
888
|
+
i7i: "i7i";
|
|
889
|
+
i7ie: "i7ie";
|
|
890
|
+
i8g: "i8g";
|
|
891
|
+
im4gn: "im4gn";
|
|
892
|
+
inf1: "inf1";
|
|
893
|
+
inf2: "inf2";
|
|
894
|
+
is4gen: "is4gen";
|
|
895
|
+
m1: "m1";
|
|
896
|
+
m2: "m2";
|
|
897
|
+
m3: "m3";
|
|
898
|
+
m4: "m4";
|
|
899
|
+
m5: "m5";
|
|
900
|
+
m5a: "m5a";
|
|
901
|
+
m5ad: "m5ad";
|
|
902
|
+
m5d: "m5d";
|
|
903
|
+
m5dn: "m5dn";
|
|
904
|
+
m5n: "m5n";
|
|
905
|
+
m5zn: "m5zn";
|
|
906
|
+
m6a: "m6a";
|
|
907
|
+
m6g: "m6g";
|
|
908
|
+
m6gd: "m6gd";
|
|
909
|
+
m6i: "m6i";
|
|
910
|
+
m6id: "m6id";
|
|
911
|
+
m6idn: "m6idn";
|
|
912
|
+
m6in: "m6in";
|
|
913
|
+
m7a: "m7a";
|
|
914
|
+
m7g: "m7g";
|
|
915
|
+
m7gd: "m7gd";
|
|
916
|
+
m7i: "m7i";
|
|
917
|
+
"m7i-flex": "m7i-flex";
|
|
918
|
+
m8g: "m8g";
|
|
919
|
+
m8gd: "m8gd";
|
|
920
|
+
n1: "n1";
|
|
921
|
+
n2: "n2";
|
|
922
|
+
n2d: "n2d";
|
|
923
|
+
n4: "n4";
|
|
924
|
+
p3dn: "p3dn";
|
|
925
|
+
p4d: "p4d";
|
|
926
|
+
p4de: "p4de";
|
|
927
|
+
p5: "p5";
|
|
928
|
+
p5e: "p5e";
|
|
929
|
+
p5en: "p5en";
|
|
930
|
+
"p6-b200": "p6-b200";
|
|
931
|
+
r3: "r3";
|
|
932
|
+
r4: "r4";
|
|
933
|
+
r5: "r5";
|
|
934
|
+
r5a: "r5a";
|
|
935
|
+
r5ad: "r5ad";
|
|
936
|
+
r5b: "r5b";
|
|
937
|
+
r5d: "r5d";
|
|
938
|
+
r5dn: "r5dn";
|
|
939
|
+
r5n: "r5n";
|
|
940
|
+
r6a: "r6a";
|
|
941
|
+
r6g: "r6g";
|
|
942
|
+
r6gd: "r6gd";
|
|
943
|
+
r6i: "r6i";
|
|
944
|
+
r6id: "r6id";
|
|
945
|
+
r6idn: "r6idn";
|
|
946
|
+
r6in: "r6in";
|
|
947
|
+
r7a: "r7a";
|
|
948
|
+
r7g: "r7g";
|
|
949
|
+
r7gd: "r7gd";
|
|
950
|
+
r7i: "r7i";
|
|
951
|
+
r7iz: "r7iz";
|
|
952
|
+
r8g: "r8g";
|
|
953
|
+
r8gd: "r8gd";
|
|
954
|
+
t2: "t2";
|
|
955
|
+
t2a: "t2a";
|
|
956
|
+
t2d: "t2d";
|
|
957
|
+
t3: "t3";
|
|
958
|
+
t3a: "t3a";
|
|
959
|
+
t4g: "t4g";
|
|
960
|
+
trn1: "trn1";
|
|
961
|
+
trn1n: "trn1n";
|
|
962
|
+
"u-3tb1": "u-3tb1";
|
|
963
|
+
"u-6tb1": "u-6tb1";
|
|
964
|
+
"u7i-12tb": "u7i-12tb";
|
|
965
|
+
"u7i-6tb": "u7i-6tb";
|
|
966
|
+
"u7i-8tb": "u7i-8tb";
|
|
967
|
+
"u7in-16tb": "u7in-16tb";
|
|
968
|
+
"u7in-24tb": "u7in-24tb";
|
|
969
|
+
"u7in-32tb": "u7in-32tb";
|
|
970
|
+
vt1: "vt1";
|
|
971
|
+
x1: "x1";
|
|
972
|
+
x1e: "x1e";
|
|
973
|
+
x2gd: "x2gd";
|
|
974
|
+
x2idn: "x2idn";
|
|
975
|
+
x2iedn: "x2iedn";
|
|
976
|
+
x2iezn: "x2iezn";
|
|
977
|
+
x4: "x4";
|
|
978
|
+
x8g: "x8g";
|
|
979
|
+
z1d: "z1d";
|
|
980
|
+
z3: "z3";
|
|
981
|
+
}>>>;
|
|
982
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
983
|
+
"africa-south1": "africa-south1";
|
|
984
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
985
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
986
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
987
|
+
"ap-south-1": "ap-south-1";
|
|
988
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
989
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
990
|
+
ash: "ash";
|
|
991
|
+
"asia-east1": "asia-east1";
|
|
992
|
+
"asia-east2": "asia-east2";
|
|
993
|
+
"asia-northeast1": "asia-northeast1";
|
|
994
|
+
"asia-northeast2": "asia-northeast2";
|
|
995
|
+
"asia-northeast3": "asia-northeast3";
|
|
996
|
+
"asia-south1": "asia-south1";
|
|
997
|
+
"asia-south2": "asia-south2";
|
|
998
|
+
"asia-southeast1": "asia-southeast1";
|
|
999
|
+
"asia-southeast2": "asia-southeast2";
|
|
1000
|
+
"australia-southeast1": "australia-southeast1";
|
|
1001
|
+
"australia-southeast2": "australia-southeast2";
|
|
1002
|
+
"ca-central-1": "ca-central-1";
|
|
1003
|
+
"eu-central-1": "eu-central-1";
|
|
1004
|
+
"eu-central-2": "eu-central-2";
|
|
1005
|
+
"eu-north-1": "eu-north-1";
|
|
1006
|
+
"eu-west-1": "eu-west-1";
|
|
1007
|
+
"eu-west-2": "eu-west-2";
|
|
1008
|
+
"eu-west-3": "eu-west-3";
|
|
1009
|
+
"europe-central2": "europe-central2";
|
|
1010
|
+
"europe-north1": "europe-north1";
|
|
1011
|
+
"europe-southwest1": "europe-southwest1";
|
|
1012
|
+
"europe-west1": "europe-west1";
|
|
1013
|
+
"europe-west10": "europe-west10";
|
|
1014
|
+
"europe-west12": "europe-west12";
|
|
1015
|
+
"europe-west2": "europe-west2";
|
|
1016
|
+
"europe-west3": "europe-west3";
|
|
1017
|
+
"europe-west4": "europe-west4";
|
|
1018
|
+
"europe-west6": "europe-west6";
|
|
1019
|
+
"europe-west8": "europe-west8";
|
|
1020
|
+
"europe-west9": "europe-west9";
|
|
1021
|
+
fsn1: "fsn1";
|
|
1022
|
+
hel1: "hel1";
|
|
1023
|
+
hil: "hil";
|
|
1024
|
+
"me-central1": "me-central1";
|
|
1025
|
+
"me-central2": "me-central2";
|
|
1026
|
+
"me-west1": "me-west1";
|
|
1027
|
+
nbg1: "nbg1";
|
|
1028
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
1029
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
1030
|
+
"sa-east-1": "sa-east-1";
|
|
1031
|
+
sin: "sin";
|
|
1032
|
+
"southamerica-east1": "southamerica-east1";
|
|
1033
|
+
"southamerica-west1": "southamerica-west1";
|
|
1034
|
+
"us-central1": "us-central1";
|
|
1035
|
+
"us-east-1": "us-east-1";
|
|
1036
|
+
"us-east-2": "us-east-2";
|
|
1037
|
+
"us-east1": "us-east1";
|
|
1038
|
+
"us-east4": "us-east4";
|
|
1039
|
+
"us-east5": "us-east5";
|
|
1040
|
+
"us-south1": "us-south1";
|
|
1041
|
+
"us-west-1": "us-west-1";
|
|
1042
|
+
"us-west-2": "us-west-2";
|
|
1043
|
+
"us-west1": "us-west1";
|
|
1044
|
+
"us-west2": "us-west2";
|
|
1045
|
+
"us-west3": "us-west3";
|
|
1046
|
+
"us-west4": "us-west4";
|
|
1047
|
+
}>>>;
|
|
1048
|
+
}, z.core.$strip>>;
|
|
1049
|
+
scalingProfile: z.ZodEnum<{
|
|
1050
|
+
aggressive: "aggressive";
|
|
1051
|
+
conservative: "conservative";
|
|
1052
|
+
}>;
|
|
1053
|
+
}, z.core.$strip>;
|
|
1054
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1055
|
+
email: z.ZodEmail;
|
|
1056
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1057
|
+
Administrator: "Administrator";
|
|
1058
|
+
User: "User";
|
|
1059
|
+
}>>>;
|
|
325
1060
|
}, z.core.$strip>;
|
|
326
1061
|
export declare const zInvite: z.ZodObject<{
|
|
327
1062
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -329,6 +1064,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
329
1064
|
date_created: z.ZodISODateTime;
|
|
330
1065
|
email: z.ZodOptional<z.ZodEmail>;
|
|
331
1066
|
code: z.ZodOptional<z.ZodString>;
|
|
1067
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1068
|
+
Administrator: "Administrator";
|
|
1069
|
+
User: "User";
|
|
1070
|
+
}>>>;
|
|
332
1071
|
}, z.core.$strip>;
|
|
333
1072
|
export declare const zInvoice: z.ZodObject<{
|
|
334
1073
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -368,15 +1107,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
368
1107
|
}, z.core.$strip>>;
|
|
369
1108
|
}, z.core.$strip>;
|
|
370
1109
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1110
|
+
type: z.ZodEnum<{
|
|
1111
|
+
business: "business";
|
|
1112
|
+
personal: "personal";
|
|
1113
|
+
}>;
|
|
371
1114
|
email: z.ZodEmail;
|
|
372
1115
|
first_name: z.ZodString;
|
|
373
1116
|
last_name: z.ZodString;
|
|
374
1117
|
company_name: z.ZodString;
|
|
375
1118
|
password: z.ZodString;
|
|
376
1119
|
}, z.core.$strip>;
|
|
1120
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1121
|
+
id: z.ZodString;
|
|
1122
|
+
}, z.core.$strip>;
|
|
377
1123
|
export declare const zOrganization: z.ZodObject<{
|
|
378
1124
|
id: z.ZodUUID;
|
|
379
1125
|
name: z.ZodOptional<z.ZodString>;
|
|
1126
|
+
type: z.ZodEnum<{
|
|
1127
|
+
business: "business";
|
|
1128
|
+
personal: "personal";
|
|
1129
|
+
}>;
|
|
380
1130
|
date_created: z.ZodISODateTime;
|
|
381
1131
|
quota: z.ZodObject<{
|
|
382
1132
|
basic_clusters_max: z.ZodInt;
|
|
@@ -397,27 +1147,27 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
397
1147
|
closed: "closed";
|
|
398
1148
|
suspended: "suspended";
|
|
399
1149
|
}>;
|
|
1150
|
+
verification: z.ZodEnum<{
|
|
1151
|
+
none: "none";
|
|
1152
|
+
submitted: "submitted";
|
|
1153
|
+
verified: "verified";
|
|
1154
|
+
}>;
|
|
400
1155
|
}, z.core.$strip>;
|
|
401
1156
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
402
|
-
id: z.
|
|
403
|
-
setup: z.ZodBoolean;
|
|
1157
|
+
id: z.ZodString;
|
|
404
1158
|
type: z.ZodEnum<{
|
|
405
1159
|
card: "card";
|
|
1160
|
+
sepa_debit: "sepa_debit";
|
|
1161
|
+
bank_transfer: "bank_transfer";
|
|
406
1162
|
}>;
|
|
407
1163
|
last4: z.ZodString;
|
|
408
1164
|
exp_month: z.ZodInt;
|
|
409
1165
|
exp_year: z.ZodInt;
|
|
410
|
-
brand: z.
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
eftpos_au: "eftpos_au";
|
|
416
|
-
jcb: "jcb";
|
|
417
|
-
mastercard: "mastercard";
|
|
418
|
-
unionpay: "unionpay";
|
|
419
|
-
visa: "visa";
|
|
420
|
-
}>;
|
|
1166
|
+
brand: z.ZodString;
|
|
1167
|
+
iban: z.ZodString;
|
|
1168
|
+
bic: z.ZodString;
|
|
1169
|
+
account_holder_name: z.ZodString;
|
|
1170
|
+
is_default: z.ZodBoolean;
|
|
421
1171
|
}, z.core.$strip>;
|
|
422
1172
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
423
1173
|
basic_clusters_max: z.ZodInt;
|
|
@@ -479,6 +1229,111 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
479
1229
|
repository: z.ZodString;
|
|
480
1230
|
uri: z.ZodString;
|
|
481
1231
|
}, z.core.$strip>;
|
|
1232
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
1233
|
+
id: z.ZodString;
|
|
1234
|
+
filename: z.ZodString;
|
|
1235
|
+
content_type: z.ZodString;
|
|
1236
|
+
size: z.ZodInt;
|
|
1237
|
+
}, z.core.$strip>;
|
|
1238
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
1239
|
+
category: z.ZodEnum<{
|
|
1240
|
+
billing: "billing";
|
|
1241
|
+
technical: "technical";
|
|
1242
|
+
general: "general";
|
|
1243
|
+
}>;
|
|
1244
|
+
body: z.ZodString;
|
|
1245
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1246
|
+
}, z.core.$strip>;
|
|
1247
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
1248
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1249
|
+
id: z.ZodString;
|
|
1250
|
+
status: z.ZodEnum<{
|
|
1251
|
+
closed: "closed";
|
|
1252
|
+
waiting_on_us: "waiting_on_us";
|
|
1253
|
+
waiting_on_user: "waiting_on_user";
|
|
1254
|
+
}>;
|
|
1255
|
+
category: z.ZodEnum<{
|
|
1256
|
+
billing: "billing";
|
|
1257
|
+
technical: "technical";
|
|
1258
|
+
general: "general";
|
|
1259
|
+
}>;
|
|
1260
|
+
summary: z.ZodString;
|
|
1261
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1262
|
+
date_created: z.ZodISODateTime;
|
|
1263
|
+
date_updated: z.ZodISODateTime;
|
|
1264
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1265
|
+
id: z.ZodString;
|
|
1266
|
+
type: z.ZodEnum<{
|
|
1267
|
+
customer_reply: "customer_reply";
|
|
1268
|
+
agent_reply: "agent_reply";
|
|
1269
|
+
}>;
|
|
1270
|
+
body: z.ZodString;
|
|
1271
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1272
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1273
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1274
|
+
id: z.ZodString;
|
|
1275
|
+
filename: z.ZodString;
|
|
1276
|
+
content_type: z.ZodString;
|
|
1277
|
+
size: z.ZodInt;
|
|
1278
|
+
}, z.core.$strip>>>;
|
|
1279
|
+
date_created: z.ZodISODateTime;
|
|
1280
|
+
}, z.core.$strip>>>;
|
|
1281
|
+
}, z.core.$strip>>;
|
|
1282
|
+
}, z.core.$strip>;
|
|
1283
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1284
|
+
body: z.ZodString;
|
|
1285
|
+
}, z.core.$strip>;
|
|
1286
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
1287
|
+
id: z.ZodString;
|
|
1288
|
+
type: z.ZodEnum<{
|
|
1289
|
+
customer_reply: "customer_reply";
|
|
1290
|
+
agent_reply: "agent_reply";
|
|
1291
|
+
}>;
|
|
1292
|
+
body: z.ZodString;
|
|
1293
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1294
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1295
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1296
|
+
id: z.ZodString;
|
|
1297
|
+
filename: z.ZodString;
|
|
1298
|
+
content_type: z.ZodString;
|
|
1299
|
+
size: z.ZodInt;
|
|
1300
|
+
}, z.core.$strip>>>;
|
|
1301
|
+
date_created: z.ZodISODateTime;
|
|
1302
|
+
}, z.core.$strip>;
|
|
1303
|
+
export declare const zTicket: z.ZodObject<{
|
|
1304
|
+
id: z.ZodString;
|
|
1305
|
+
status: z.ZodEnum<{
|
|
1306
|
+
closed: "closed";
|
|
1307
|
+
waiting_on_us: "waiting_on_us";
|
|
1308
|
+
waiting_on_user: "waiting_on_user";
|
|
1309
|
+
}>;
|
|
1310
|
+
category: z.ZodEnum<{
|
|
1311
|
+
billing: "billing";
|
|
1312
|
+
technical: "technical";
|
|
1313
|
+
general: "general";
|
|
1314
|
+
}>;
|
|
1315
|
+
summary: z.ZodString;
|
|
1316
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1317
|
+
date_created: z.ZodISODateTime;
|
|
1318
|
+
date_updated: z.ZodISODateTime;
|
|
1319
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1320
|
+
id: z.ZodString;
|
|
1321
|
+
type: z.ZodEnum<{
|
|
1322
|
+
customer_reply: "customer_reply";
|
|
1323
|
+
agent_reply: "agent_reply";
|
|
1324
|
+
}>;
|
|
1325
|
+
body: z.ZodString;
|
|
1326
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1327
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1328
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1329
|
+
id: z.ZodString;
|
|
1330
|
+
filename: z.ZodString;
|
|
1331
|
+
content_type: z.ZodString;
|
|
1332
|
+
size: z.ZodInt;
|
|
1333
|
+
}, z.core.$strip>>>;
|
|
1334
|
+
date_created: z.ZodISODateTime;
|
|
1335
|
+
}, z.core.$strip>>>;
|
|
1336
|
+
}, z.core.$strip>;
|
|
482
1337
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
483
1338
|
name: z.ZodString;
|
|
484
1339
|
role: z.ZodEnum<{
|
|
@@ -535,14 +1390,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
535
1390
|
last_name: z.ZodString;
|
|
536
1391
|
code: z.ZodString;
|
|
537
1392
|
password: z.ZodString;
|
|
538
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
539
|
-
active: "active";
|
|
540
|
-
inactive: "inactive";
|
|
541
|
-
}>>;
|
|
542
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
543
|
-
Administrator: "Administrator";
|
|
544
|
-
User: "User";
|
|
545
|
-
}>>;
|
|
546
1393
|
}, z.core.$strip>;
|
|
547
1394
|
export declare const zUser: z.ZodObject<{
|
|
548
1395
|
email: z.ZodEmail;
|
|
@@ -573,11 +1420,11 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
573
1420
|
}>>;
|
|
574
1421
|
}, z.core.$strip>;
|
|
575
1422
|
export declare const zGetUsageQuery: z.ZodObject<{
|
|
576
|
-
granularity: z.ZodOptional<z.ZodEnum<{
|
|
1423
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
577
1424
|
hourly: "hourly";
|
|
578
1425
|
daily: "daily";
|
|
579
1426
|
monthly: "monthly";
|
|
580
|
-
}
|
|
1427
|
+
}>>>;
|
|
581
1428
|
}, z.core.$strip>;
|
|
582
1429
|
/**
|
|
583
1430
|
* Usage data with facets for filtering
|
|
@@ -597,36 +1444,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
597
1444
|
}, z.core.$strip>;
|
|
598
1445
|
}, z.core.$strip>;
|
|
599
1446
|
/**
|
|
600
|
-
*
|
|
1447
|
+
* 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.
|
|
1448
|
+
*
|
|
601
1449
|
*/
|
|
602
|
-
export declare const
|
|
603
|
-
id: z.
|
|
604
|
-
|
|
1450
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1451
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1452
|
+
}, z.core.$strip>;
|
|
1453
|
+
/**
|
|
1454
|
+
* An array of payment methods.
|
|
1455
|
+
*/
|
|
1456
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
1457
|
+
id: z.ZodString;
|
|
605
1458
|
type: z.ZodEnum<{
|
|
606
1459
|
card: "card";
|
|
1460
|
+
sepa_debit: "sepa_debit";
|
|
1461
|
+
bank_transfer: "bank_transfer";
|
|
607
1462
|
}>;
|
|
608
1463
|
last4: z.ZodString;
|
|
609
1464
|
exp_month: z.ZodInt;
|
|
610
1465
|
exp_year: z.ZodInt;
|
|
611
|
-
brand: z.
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
unionpay: "unionpay";
|
|
620
|
-
visa: "visa";
|
|
621
|
-
}>;
|
|
1466
|
+
brand: z.ZodString;
|
|
1467
|
+
iban: z.ZodString;
|
|
1468
|
+
bic: z.ZodString;
|
|
1469
|
+
account_holder_name: z.ZodString;
|
|
1470
|
+
is_default: z.ZodBoolean;
|
|
1471
|
+
}, z.core.$strip>>;
|
|
1472
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
1473
|
+
paymentMethodId: z.ZodString;
|
|
622
1474
|
}, z.core.$strip>;
|
|
623
1475
|
/**
|
|
624
|
-
*
|
|
625
|
-
*
|
|
1476
|
+
* Default payment method updated.
|
|
626
1477
|
*/
|
|
627
|
-
export declare const
|
|
628
|
-
|
|
1478
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
1479
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
1480
|
+
paymentMethodId: z.ZodString;
|
|
629
1481
|
}, z.core.$strip>;
|
|
1482
|
+
/**
|
|
1483
|
+
* Payment method deleted.
|
|
1484
|
+
*/
|
|
1485
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
630
1486
|
/**
|
|
631
1487
|
* An array of usage records.
|
|
632
1488
|
*/
|
|
@@ -645,6 +1501,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
645
1501
|
* Returns a single object containing organization contact and billing address details.
|
|
646
1502
|
*/
|
|
647
1503
|
export declare const zGetContactResponse: z.ZodObject<{
|
|
1504
|
+
type: z.ZodEnum<{
|
|
1505
|
+
business: "business";
|
|
1506
|
+
personal: "personal";
|
|
1507
|
+
}>;
|
|
648
1508
|
company: z.ZodOptional<z.ZodString>;
|
|
649
1509
|
address1: z.ZodOptional<z.ZodString>;
|
|
650
1510
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -788,6 +1648,10 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
788
1648
|
}>>;
|
|
789
1649
|
}, z.core.$strip>;
|
|
790
1650
|
export declare const zUpdateContactBody: z.ZodObject<{
|
|
1651
|
+
type: z.ZodEnum<{
|
|
1652
|
+
business: "business";
|
|
1653
|
+
personal: "personal";
|
|
1654
|
+
}>;
|
|
791
1655
|
company: z.ZodOptional<z.ZodString>;
|
|
792
1656
|
address1: z.ZodOptional<z.ZodString>;
|
|
793
1657
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -934,6 +1798,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
|
|
|
934
1798
|
* Successfully updated. Returns updated organization details.
|
|
935
1799
|
*/
|
|
936
1800
|
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1801
|
+
type: z.ZodEnum<{
|
|
1802
|
+
business: "business";
|
|
1803
|
+
personal: "personal";
|
|
1804
|
+
}>;
|
|
937
1805
|
company: z.ZodOptional<z.ZodString>;
|
|
938
1806
|
address1: z.ZodOptional<z.ZodString>;
|
|
939
1807
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1204,38 +2072,518 @@ export declare const zListFleetsPath: z.ZodObject<{
|
|
|
1204
2072
|
*/
|
|
1205
2073
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1206
2074
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1207
|
-
cpu: z.
|
|
2075
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1208
2076
|
}, z.core.$strip>>;
|
|
1209
2077
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1210
|
-
enabled: z.
|
|
1211
|
-
project: z.ZodString
|
|
2078
|
+
enabled: z.ZodBoolean;
|
|
2079
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1212
2080
|
}, z.core.$strip>>;
|
|
1213
2081
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1214
|
-
enabled: z.
|
|
1215
|
-
apiKey: z.ZodString
|
|
2082
|
+
enabled: z.ZodBoolean;
|
|
2083
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1216
2084
|
}, z.core.$strip>>;
|
|
1217
2085
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1218
|
-
enabled: z.
|
|
1219
|
-
controllerRoleArn: z.ZodString
|
|
2086
|
+
enabled: z.ZodBoolean;
|
|
2087
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
1220
2088
|
}, z.core.$strip>>;
|
|
2089
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2090
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2091
|
+
"on-demand": "on-demand";
|
|
2092
|
+
spot: "spot";
|
|
2093
|
+
}>>>>;
|
|
2094
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2095
|
+
amd64: "amd64";
|
|
2096
|
+
arm64: "arm64";
|
|
2097
|
+
}>>>>;
|
|
2098
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2099
|
+
p3: "p3";
|
|
2100
|
+
cx: "cx";
|
|
2101
|
+
h1: "h1";
|
|
2102
|
+
h3: "h3";
|
|
2103
|
+
a1: "a1";
|
|
2104
|
+
a2: "a2";
|
|
2105
|
+
a3: "a3";
|
|
2106
|
+
a4: "a4";
|
|
2107
|
+
c1: "c1";
|
|
2108
|
+
c2: "c2";
|
|
2109
|
+
c2d: "c2d";
|
|
2110
|
+
c3: "c3";
|
|
2111
|
+
c3d: "c3d";
|
|
2112
|
+
c4: "c4";
|
|
2113
|
+
c4a: "c4a";
|
|
2114
|
+
c4d: "c4d";
|
|
2115
|
+
c5: "c5";
|
|
2116
|
+
c5a: "c5a";
|
|
2117
|
+
c5ad: "c5ad";
|
|
2118
|
+
c5d: "c5d";
|
|
2119
|
+
c5n: "c5n";
|
|
2120
|
+
c6a: "c6a";
|
|
2121
|
+
c6g: "c6g";
|
|
2122
|
+
c6gd: "c6gd";
|
|
2123
|
+
c6gn: "c6gn";
|
|
2124
|
+
c6i: "c6i";
|
|
2125
|
+
c6id: "c6id";
|
|
2126
|
+
c6in: "c6in";
|
|
2127
|
+
c7a: "c7a";
|
|
2128
|
+
c7g: "c7g";
|
|
2129
|
+
c7gd: "c7gd";
|
|
2130
|
+
c7gn: "c7gn";
|
|
2131
|
+
c7i: "c7i";
|
|
2132
|
+
"c7i-flex": "c7i-flex";
|
|
2133
|
+
c8g: "c8g";
|
|
2134
|
+
c8gd: "c8gd";
|
|
2135
|
+
cax: "cax";
|
|
2136
|
+
ccx: "ccx";
|
|
2137
|
+
cpx: "cpx";
|
|
2138
|
+
d2: "d2";
|
|
2139
|
+
d3: "d3";
|
|
2140
|
+
d3en: "d3en";
|
|
2141
|
+
dl1: "dl1";
|
|
2142
|
+
dl2q: "dl2q";
|
|
2143
|
+
e2: "e2";
|
|
2144
|
+
f1: "f1";
|
|
2145
|
+
f2: "f2";
|
|
2146
|
+
g1: "g1";
|
|
2147
|
+
g2: "g2";
|
|
2148
|
+
g4ad: "g4ad";
|
|
2149
|
+
g4dn: "g4dn";
|
|
2150
|
+
g5: "g5";
|
|
2151
|
+
g5g: "g5g";
|
|
2152
|
+
g6: "g6";
|
|
2153
|
+
g6e: "g6e";
|
|
2154
|
+
gr6: "gr6";
|
|
2155
|
+
hpc6a: "hpc6a";
|
|
2156
|
+
hpc6id: "hpc6id";
|
|
2157
|
+
hpc7a: "hpc7a";
|
|
2158
|
+
hpc7g: "hpc7g";
|
|
2159
|
+
i2: "i2";
|
|
2160
|
+
i3: "i3";
|
|
2161
|
+
i3en: "i3en";
|
|
2162
|
+
i4g: "i4g";
|
|
2163
|
+
i4i: "i4i";
|
|
2164
|
+
i7i: "i7i";
|
|
2165
|
+
i7ie: "i7ie";
|
|
2166
|
+
i8g: "i8g";
|
|
2167
|
+
im4gn: "im4gn";
|
|
2168
|
+
inf1: "inf1";
|
|
2169
|
+
inf2: "inf2";
|
|
2170
|
+
is4gen: "is4gen";
|
|
2171
|
+
m1: "m1";
|
|
2172
|
+
m2: "m2";
|
|
2173
|
+
m3: "m3";
|
|
2174
|
+
m4: "m4";
|
|
2175
|
+
m5: "m5";
|
|
2176
|
+
m5a: "m5a";
|
|
2177
|
+
m5ad: "m5ad";
|
|
2178
|
+
m5d: "m5d";
|
|
2179
|
+
m5dn: "m5dn";
|
|
2180
|
+
m5n: "m5n";
|
|
2181
|
+
m5zn: "m5zn";
|
|
2182
|
+
m6a: "m6a";
|
|
2183
|
+
m6g: "m6g";
|
|
2184
|
+
m6gd: "m6gd";
|
|
2185
|
+
m6i: "m6i";
|
|
2186
|
+
m6id: "m6id";
|
|
2187
|
+
m6idn: "m6idn";
|
|
2188
|
+
m6in: "m6in";
|
|
2189
|
+
m7a: "m7a";
|
|
2190
|
+
m7g: "m7g";
|
|
2191
|
+
m7gd: "m7gd";
|
|
2192
|
+
m7i: "m7i";
|
|
2193
|
+
"m7i-flex": "m7i-flex";
|
|
2194
|
+
m8g: "m8g";
|
|
2195
|
+
m8gd: "m8gd";
|
|
2196
|
+
n1: "n1";
|
|
2197
|
+
n2: "n2";
|
|
2198
|
+
n2d: "n2d";
|
|
2199
|
+
n4: "n4";
|
|
2200
|
+
p3dn: "p3dn";
|
|
2201
|
+
p4d: "p4d";
|
|
2202
|
+
p4de: "p4de";
|
|
2203
|
+
p5: "p5";
|
|
2204
|
+
p5e: "p5e";
|
|
2205
|
+
p5en: "p5en";
|
|
2206
|
+
"p6-b200": "p6-b200";
|
|
2207
|
+
r3: "r3";
|
|
2208
|
+
r4: "r4";
|
|
2209
|
+
r5: "r5";
|
|
2210
|
+
r5a: "r5a";
|
|
2211
|
+
r5ad: "r5ad";
|
|
2212
|
+
r5b: "r5b";
|
|
2213
|
+
r5d: "r5d";
|
|
2214
|
+
r5dn: "r5dn";
|
|
2215
|
+
r5n: "r5n";
|
|
2216
|
+
r6a: "r6a";
|
|
2217
|
+
r6g: "r6g";
|
|
2218
|
+
r6gd: "r6gd";
|
|
2219
|
+
r6i: "r6i";
|
|
2220
|
+
r6id: "r6id";
|
|
2221
|
+
r6idn: "r6idn";
|
|
2222
|
+
r6in: "r6in";
|
|
2223
|
+
r7a: "r7a";
|
|
2224
|
+
r7g: "r7g";
|
|
2225
|
+
r7gd: "r7gd";
|
|
2226
|
+
r7i: "r7i";
|
|
2227
|
+
r7iz: "r7iz";
|
|
2228
|
+
r8g: "r8g";
|
|
2229
|
+
r8gd: "r8gd";
|
|
2230
|
+
t2: "t2";
|
|
2231
|
+
t2a: "t2a";
|
|
2232
|
+
t2d: "t2d";
|
|
2233
|
+
t3: "t3";
|
|
2234
|
+
t3a: "t3a";
|
|
2235
|
+
t4g: "t4g";
|
|
2236
|
+
trn1: "trn1";
|
|
2237
|
+
trn1n: "trn1n";
|
|
2238
|
+
"u-3tb1": "u-3tb1";
|
|
2239
|
+
"u-6tb1": "u-6tb1";
|
|
2240
|
+
"u7i-12tb": "u7i-12tb";
|
|
2241
|
+
"u7i-6tb": "u7i-6tb";
|
|
2242
|
+
"u7i-8tb": "u7i-8tb";
|
|
2243
|
+
"u7in-16tb": "u7in-16tb";
|
|
2244
|
+
"u7in-24tb": "u7in-24tb";
|
|
2245
|
+
"u7in-32tb": "u7in-32tb";
|
|
2246
|
+
vt1: "vt1";
|
|
2247
|
+
x1: "x1";
|
|
2248
|
+
x1e: "x1e";
|
|
2249
|
+
x2gd: "x2gd";
|
|
2250
|
+
x2idn: "x2idn";
|
|
2251
|
+
x2iedn: "x2iedn";
|
|
2252
|
+
x2iezn: "x2iezn";
|
|
2253
|
+
x4: "x4";
|
|
2254
|
+
x8g: "x8g";
|
|
2255
|
+
z1d: "z1d";
|
|
2256
|
+
z3: "z3";
|
|
2257
|
+
}>>>;
|
|
2258
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2259
|
+
"africa-south1": "africa-south1";
|
|
2260
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2261
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2262
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2263
|
+
"ap-south-1": "ap-south-1";
|
|
2264
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2265
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2266
|
+
ash: "ash";
|
|
2267
|
+
"asia-east1": "asia-east1";
|
|
2268
|
+
"asia-east2": "asia-east2";
|
|
2269
|
+
"asia-northeast1": "asia-northeast1";
|
|
2270
|
+
"asia-northeast2": "asia-northeast2";
|
|
2271
|
+
"asia-northeast3": "asia-northeast3";
|
|
2272
|
+
"asia-south1": "asia-south1";
|
|
2273
|
+
"asia-south2": "asia-south2";
|
|
2274
|
+
"asia-southeast1": "asia-southeast1";
|
|
2275
|
+
"asia-southeast2": "asia-southeast2";
|
|
2276
|
+
"australia-southeast1": "australia-southeast1";
|
|
2277
|
+
"australia-southeast2": "australia-southeast2";
|
|
2278
|
+
"ca-central-1": "ca-central-1";
|
|
2279
|
+
"eu-central-1": "eu-central-1";
|
|
2280
|
+
"eu-central-2": "eu-central-2";
|
|
2281
|
+
"eu-north-1": "eu-north-1";
|
|
2282
|
+
"eu-west-1": "eu-west-1";
|
|
2283
|
+
"eu-west-2": "eu-west-2";
|
|
2284
|
+
"eu-west-3": "eu-west-3";
|
|
2285
|
+
"europe-central2": "europe-central2";
|
|
2286
|
+
"europe-north1": "europe-north1";
|
|
2287
|
+
"europe-southwest1": "europe-southwest1";
|
|
2288
|
+
"europe-west1": "europe-west1";
|
|
2289
|
+
"europe-west10": "europe-west10";
|
|
2290
|
+
"europe-west12": "europe-west12";
|
|
2291
|
+
"europe-west2": "europe-west2";
|
|
2292
|
+
"europe-west3": "europe-west3";
|
|
2293
|
+
"europe-west4": "europe-west4";
|
|
2294
|
+
"europe-west6": "europe-west6";
|
|
2295
|
+
"europe-west8": "europe-west8";
|
|
2296
|
+
"europe-west9": "europe-west9";
|
|
2297
|
+
fsn1: "fsn1";
|
|
2298
|
+
hel1: "hel1";
|
|
2299
|
+
hil: "hil";
|
|
2300
|
+
"me-central1": "me-central1";
|
|
2301
|
+
"me-central2": "me-central2";
|
|
2302
|
+
"me-west1": "me-west1";
|
|
2303
|
+
nbg1: "nbg1";
|
|
2304
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2305
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2306
|
+
"sa-east-1": "sa-east-1";
|
|
2307
|
+
sin: "sin";
|
|
2308
|
+
"southamerica-east1": "southamerica-east1";
|
|
2309
|
+
"southamerica-west1": "southamerica-west1";
|
|
2310
|
+
"us-central1": "us-central1";
|
|
2311
|
+
"us-east-1": "us-east-1";
|
|
2312
|
+
"us-east-2": "us-east-2";
|
|
2313
|
+
"us-east1": "us-east1";
|
|
2314
|
+
"us-east4": "us-east4";
|
|
2315
|
+
"us-east5": "us-east5";
|
|
2316
|
+
"us-south1": "us-south1";
|
|
2317
|
+
"us-west-1": "us-west-1";
|
|
2318
|
+
"us-west-2": "us-west-2";
|
|
2319
|
+
"us-west1": "us-west1";
|
|
2320
|
+
"us-west2": "us-west2";
|
|
2321
|
+
"us-west3": "us-west3";
|
|
2322
|
+
"us-west4": "us-west4";
|
|
2323
|
+
}>>>;
|
|
2324
|
+
}, z.core.$strip>>;
|
|
2325
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2326
|
+
aggressive: "aggressive";
|
|
2327
|
+
conservative: "conservative";
|
|
2328
|
+
}>>;
|
|
1221
2329
|
id: z.ZodString;
|
|
1222
2330
|
}, z.core.$strip>>;
|
|
1223
2331
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
1224
2332
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1225
|
-
cpu: z.
|
|
2333
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1226
2334
|
}, z.core.$strip>>;
|
|
1227
2335
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1228
|
-
enabled: z.
|
|
1229
|
-
project: z.ZodString
|
|
2336
|
+
enabled: z.ZodBoolean;
|
|
2337
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1230
2338
|
}, z.core.$strip>>;
|
|
1231
2339
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1232
|
-
enabled: z.
|
|
1233
|
-
apiKey: z.ZodString
|
|
2340
|
+
enabled: z.ZodBoolean;
|
|
2341
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1234
2342
|
}, z.core.$strip>>;
|
|
1235
2343
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1236
|
-
enabled: z.
|
|
1237
|
-
controllerRoleArn: z.ZodString
|
|
2344
|
+
enabled: z.ZodBoolean;
|
|
2345
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2346
|
+
}, z.core.$strip>>;
|
|
2347
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2348
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2349
|
+
"on-demand": "on-demand";
|
|
2350
|
+
spot: "spot";
|
|
2351
|
+
}>>>>;
|
|
2352
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2353
|
+
amd64: "amd64";
|
|
2354
|
+
arm64: "arm64";
|
|
2355
|
+
}>>>>;
|
|
2356
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2357
|
+
p3: "p3";
|
|
2358
|
+
cx: "cx";
|
|
2359
|
+
h1: "h1";
|
|
2360
|
+
h3: "h3";
|
|
2361
|
+
a1: "a1";
|
|
2362
|
+
a2: "a2";
|
|
2363
|
+
a3: "a3";
|
|
2364
|
+
a4: "a4";
|
|
2365
|
+
c1: "c1";
|
|
2366
|
+
c2: "c2";
|
|
2367
|
+
c2d: "c2d";
|
|
2368
|
+
c3: "c3";
|
|
2369
|
+
c3d: "c3d";
|
|
2370
|
+
c4: "c4";
|
|
2371
|
+
c4a: "c4a";
|
|
2372
|
+
c4d: "c4d";
|
|
2373
|
+
c5: "c5";
|
|
2374
|
+
c5a: "c5a";
|
|
2375
|
+
c5ad: "c5ad";
|
|
2376
|
+
c5d: "c5d";
|
|
2377
|
+
c5n: "c5n";
|
|
2378
|
+
c6a: "c6a";
|
|
2379
|
+
c6g: "c6g";
|
|
2380
|
+
c6gd: "c6gd";
|
|
2381
|
+
c6gn: "c6gn";
|
|
2382
|
+
c6i: "c6i";
|
|
2383
|
+
c6id: "c6id";
|
|
2384
|
+
c6in: "c6in";
|
|
2385
|
+
c7a: "c7a";
|
|
2386
|
+
c7g: "c7g";
|
|
2387
|
+
c7gd: "c7gd";
|
|
2388
|
+
c7gn: "c7gn";
|
|
2389
|
+
c7i: "c7i";
|
|
2390
|
+
"c7i-flex": "c7i-flex";
|
|
2391
|
+
c8g: "c8g";
|
|
2392
|
+
c8gd: "c8gd";
|
|
2393
|
+
cax: "cax";
|
|
2394
|
+
ccx: "ccx";
|
|
2395
|
+
cpx: "cpx";
|
|
2396
|
+
d2: "d2";
|
|
2397
|
+
d3: "d3";
|
|
2398
|
+
d3en: "d3en";
|
|
2399
|
+
dl1: "dl1";
|
|
2400
|
+
dl2q: "dl2q";
|
|
2401
|
+
e2: "e2";
|
|
2402
|
+
f1: "f1";
|
|
2403
|
+
f2: "f2";
|
|
2404
|
+
g1: "g1";
|
|
2405
|
+
g2: "g2";
|
|
2406
|
+
g4ad: "g4ad";
|
|
2407
|
+
g4dn: "g4dn";
|
|
2408
|
+
g5: "g5";
|
|
2409
|
+
g5g: "g5g";
|
|
2410
|
+
g6: "g6";
|
|
2411
|
+
g6e: "g6e";
|
|
2412
|
+
gr6: "gr6";
|
|
2413
|
+
hpc6a: "hpc6a";
|
|
2414
|
+
hpc6id: "hpc6id";
|
|
2415
|
+
hpc7a: "hpc7a";
|
|
2416
|
+
hpc7g: "hpc7g";
|
|
2417
|
+
i2: "i2";
|
|
2418
|
+
i3: "i3";
|
|
2419
|
+
i3en: "i3en";
|
|
2420
|
+
i4g: "i4g";
|
|
2421
|
+
i4i: "i4i";
|
|
2422
|
+
i7i: "i7i";
|
|
2423
|
+
i7ie: "i7ie";
|
|
2424
|
+
i8g: "i8g";
|
|
2425
|
+
im4gn: "im4gn";
|
|
2426
|
+
inf1: "inf1";
|
|
2427
|
+
inf2: "inf2";
|
|
2428
|
+
is4gen: "is4gen";
|
|
2429
|
+
m1: "m1";
|
|
2430
|
+
m2: "m2";
|
|
2431
|
+
m3: "m3";
|
|
2432
|
+
m4: "m4";
|
|
2433
|
+
m5: "m5";
|
|
2434
|
+
m5a: "m5a";
|
|
2435
|
+
m5ad: "m5ad";
|
|
2436
|
+
m5d: "m5d";
|
|
2437
|
+
m5dn: "m5dn";
|
|
2438
|
+
m5n: "m5n";
|
|
2439
|
+
m5zn: "m5zn";
|
|
2440
|
+
m6a: "m6a";
|
|
2441
|
+
m6g: "m6g";
|
|
2442
|
+
m6gd: "m6gd";
|
|
2443
|
+
m6i: "m6i";
|
|
2444
|
+
m6id: "m6id";
|
|
2445
|
+
m6idn: "m6idn";
|
|
2446
|
+
m6in: "m6in";
|
|
2447
|
+
m7a: "m7a";
|
|
2448
|
+
m7g: "m7g";
|
|
2449
|
+
m7gd: "m7gd";
|
|
2450
|
+
m7i: "m7i";
|
|
2451
|
+
"m7i-flex": "m7i-flex";
|
|
2452
|
+
m8g: "m8g";
|
|
2453
|
+
m8gd: "m8gd";
|
|
2454
|
+
n1: "n1";
|
|
2455
|
+
n2: "n2";
|
|
2456
|
+
n2d: "n2d";
|
|
2457
|
+
n4: "n4";
|
|
2458
|
+
p3dn: "p3dn";
|
|
2459
|
+
p4d: "p4d";
|
|
2460
|
+
p4de: "p4de";
|
|
2461
|
+
p5: "p5";
|
|
2462
|
+
p5e: "p5e";
|
|
2463
|
+
p5en: "p5en";
|
|
2464
|
+
"p6-b200": "p6-b200";
|
|
2465
|
+
r3: "r3";
|
|
2466
|
+
r4: "r4";
|
|
2467
|
+
r5: "r5";
|
|
2468
|
+
r5a: "r5a";
|
|
2469
|
+
r5ad: "r5ad";
|
|
2470
|
+
r5b: "r5b";
|
|
2471
|
+
r5d: "r5d";
|
|
2472
|
+
r5dn: "r5dn";
|
|
2473
|
+
r5n: "r5n";
|
|
2474
|
+
r6a: "r6a";
|
|
2475
|
+
r6g: "r6g";
|
|
2476
|
+
r6gd: "r6gd";
|
|
2477
|
+
r6i: "r6i";
|
|
2478
|
+
r6id: "r6id";
|
|
2479
|
+
r6idn: "r6idn";
|
|
2480
|
+
r6in: "r6in";
|
|
2481
|
+
r7a: "r7a";
|
|
2482
|
+
r7g: "r7g";
|
|
2483
|
+
r7gd: "r7gd";
|
|
2484
|
+
r7i: "r7i";
|
|
2485
|
+
r7iz: "r7iz";
|
|
2486
|
+
r8g: "r8g";
|
|
2487
|
+
r8gd: "r8gd";
|
|
2488
|
+
t2: "t2";
|
|
2489
|
+
t2a: "t2a";
|
|
2490
|
+
t2d: "t2d";
|
|
2491
|
+
t3: "t3";
|
|
2492
|
+
t3a: "t3a";
|
|
2493
|
+
t4g: "t4g";
|
|
2494
|
+
trn1: "trn1";
|
|
2495
|
+
trn1n: "trn1n";
|
|
2496
|
+
"u-3tb1": "u-3tb1";
|
|
2497
|
+
"u-6tb1": "u-6tb1";
|
|
2498
|
+
"u7i-12tb": "u7i-12tb";
|
|
2499
|
+
"u7i-6tb": "u7i-6tb";
|
|
2500
|
+
"u7i-8tb": "u7i-8tb";
|
|
2501
|
+
"u7in-16tb": "u7in-16tb";
|
|
2502
|
+
"u7in-24tb": "u7in-24tb";
|
|
2503
|
+
"u7in-32tb": "u7in-32tb";
|
|
2504
|
+
vt1: "vt1";
|
|
2505
|
+
x1: "x1";
|
|
2506
|
+
x1e: "x1e";
|
|
2507
|
+
x2gd: "x2gd";
|
|
2508
|
+
x2idn: "x2idn";
|
|
2509
|
+
x2iedn: "x2iedn";
|
|
2510
|
+
x2iezn: "x2iezn";
|
|
2511
|
+
x4: "x4";
|
|
2512
|
+
x8g: "x8g";
|
|
2513
|
+
z1d: "z1d";
|
|
2514
|
+
z3: "z3";
|
|
2515
|
+
}>>>;
|
|
2516
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2517
|
+
"africa-south1": "africa-south1";
|
|
2518
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2519
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2520
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2521
|
+
"ap-south-1": "ap-south-1";
|
|
2522
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2523
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2524
|
+
ash: "ash";
|
|
2525
|
+
"asia-east1": "asia-east1";
|
|
2526
|
+
"asia-east2": "asia-east2";
|
|
2527
|
+
"asia-northeast1": "asia-northeast1";
|
|
2528
|
+
"asia-northeast2": "asia-northeast2";
|
|
2529
|
+
"asia-northeast3": "asia-northeast3";
|
|
2530
|
+
"asia-south1": "asia-south1";
|
|
2531
|
+
"asia-south2": "asia-south2";
|
|
2532
|
+
"asia-southeast1": "asia-southeast1";
|
|
2533
|
+
"asia-southeast2": "asia-southeast2";
|
|
2534
|
+
"australia-southeast1": "australia-southeast1";
|
|
2535
|
+
"australia-southeast2": "australia-southeast2";
|
|
2536
|
+
"ca-central-1": "ca-central-1";
|
|
2537
|
+
"eu-central-1": "eu-central-1";
|
|
2538
|
+
"eu-central-2": "eu-central-2";
|
|
2539
|
+
"eu-north-1": "eu-north-1";
|
|
2540
|
+
"eu-west-1": "eu-west-1";
|
|
2541
|
+
"eu-west-2": "eu-west-2";
|
|
2542
|
+
"eu-west-3": "eu-west-3";
|
|
2543
|
+
"europe-central2": "europe-central2";
|
|
2544
|
+
"europe-north1": "europe-north1";
|
|
2545
|
+
"europe-southwest1": "europe-southwest1";
|
|
2546
|
+
"europe-west1": "europe-west1";
|
|
2547
|
+
"europe-west10": "europe-west10";
|
|
2548
|
+
"europe-west12": "europe-west12";
|
|
2549
|
+
"europe-west2": "europe-west2";
|
|
2550
|
+
"europe-west3": "europe-west3";
|
|
2551
|
+
"europe-west4": "europe-west4";
|
|
2552
|
+
"europe-west6": "europe-west6";
|
|
2553
|
+
"europe-west8": "europe-west8";
|
|
2554
|
+
"europe-west9": "europe-west9";
|
|
2555
|
+
fsn1: "fsn1";
|
|
2556
|
+
hel1: "hel1";
|
|
2557
|
+
hil: "hil";
|
|
2558
|
+
"me-central1": "me-central1";
|
|
2559
|
+
"me-central2": "me-central2";
|
|
2560
|
+
"me-west1": "me-west1";
|
|
2561
|
+
nbg1: "nbg1";
|
|
2562
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2563
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2564
|
+
"sa-east-1": "sa-east-1";
|
|
2565
|
+
sin: "sin";
|
|
2566
|
+
"southamerica-east1": "southamerica-east1";
|
|
2567
|
+
"southamerica-west1": "southamerica-west1";
|
|
2568
|
+
"us-central1": "us-central1";
|
|
2569
|
+
"us-east-1": "us-east-1";
|
|
2570
|
+
"us-east-2": "us-east-2";
|
|
2571
|
+
"us-east1": "us-east1";
|
|
2572
|
+
"us-east4": "us-east4";
|
|
2573
|
+
"us-east5": "us-east5";
|
|
2574
|
+
"us-south1": "us-south1";
|
|
2575
|
+
"us-west-1": "us-west-1";
|
|
2576
|
+
"us-west-2": "us-west-2";
|
|
2577
|
+
"us-west1": "us-west1";
|
|
2578
|
+
"us-west2": "us-west2";
|
|
2579
|
+
"us-west3": "us-west3";
|
|
2580
|
+
"us-west4": "us-west4";
|
|
2581
|
+
}>>>;
|
|
1238
2582
|
}, z.core.$strip>>;
|
|
2583
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2584
|
+
aggressive: "aggressive";
|
|
2585
|
+
conservative: "conservative";
|
|
2586
|
+
}>>>;
|
|
1239
2587
|
id: z.ZodString;
|
|
1240
2588
|
}, z.core.$strip>;
|
|
1241
2589
|
export declare const zCreateFleetPath: z.ZodObject<{
|
|
@@ -1262,38 +2610,518 @@ export declare const zGetFleetPath: z.ZodObject<{
|
|
|
1262
2610
|
*/
|
|
1263
2611
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1264
2612
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1265
|
-
cpu: z.
|
|
2613
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1266
2614
|
}, z.core.$strip>>;
|
|
1267
2615
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1268
|
-
enabled: z.
|
|
1269
|
-
project: z.ZodString
|
|
2616
|
+
enabled: z.ZodBoolean;
|
|
2617
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1270
2618
|
}, z.core.$strip>>;
|
|
1271
2619
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1272
|
-
enabled: z.
|
|
1273
|
-
apiKey: z.ZodString
|
|
2620
|
+
enabled: z.ZodBoolean;
|
|
2621
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1274
2622
|
}, z.core.$strip>>;
|
|
1275
2623
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1276
|
-
enabled: z.
|
|
1277
|
-
controllerRoleArn: z.ZodString
|
|
2624
|
+
enabled: z.ZodBoolean;
|
|
2625
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
1278
2626
|
}, z.core.$strip>>;
|
|
2627
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2628
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2629
|
+
"on-demand": "on-demand";
|
|
2630
|
+
spot: "spot";
|
|
2631
|
+
}>>>>;
|
|
2632
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2633
|
+
amd64: "amd64";
|
|
2634
|
+
arm64: "arm64";
|
|
2635
|
+
}>>>>;
|
|
2636
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2637
|
+
p3: "p3";
|
|
2638
|
+
cx: "cx";
|
|
2639
|
+
h1: "h1";
|
|
2640
|
+
h3: "h3";
|
|
2641
|
+
a1: "a1";
|
|
2642
|
+
a2: "a2";
|
|
2643
|
+
a3: "a3";
|
|
2644
|
+
a4: "a4";
|
|
2645
|
+
c1: "c1";
|
|
2646
|
+
c2: "c2";
|
|
2647
|
+
c2d: "c2d";
|
|
2648
|
+
c3: "c3";
|
|
2649
|
+
c3d: "c3d";
|
|
2650
|
+
c4: "c4";
|
|
2651
|
+
c4a: "c4a";
|
|
2652
|
+
c4d: "c4d";
|
|
2653
|
+
c5: "c5";
|
|
2654
|
+
c5a: "c5a";
|
|
2655
|
+
c5ad: "c5ad";
|
|
2656
|
+
c5d: "c5d";
|
|
2657
|
+
c5n: "c5n";
|
|
2658
|
+
c6a: "c6a";
|
|
2659
|
+
c6g: "c6g";
|
|
2660
|
+
c6gd: "c6gd";
|
|
2661
|
+
c6gn: "c6gn";
|
|
2662
|
+
c6i: "c6i";
|
|
2663
|
+
c6id: "c6id";
|
|
2664
|
+
c6in: "c6in";
|
|
2665
|
+
c7a: "c7a";
|
|
2666
|
+
c7g: "c7g";
|
|
2667
|
+
c7gd: "c7gd";
|
|
2668
|
+
c7gn: "c7gn";
|
|
2669
|
+
c7i: "c7i";
|
|
2670
|
+
"c7i-flex": "c7i-flex";
|
|
2671
|
+
c8g: "c8g";
|
|
2672
|
+
c8gd: "c8gd";
|
|
2673
|
+
cax: "cax";
|
|
2674
|
+
ccx: "ccx";
|
|
2675
|
+
cpx: "cpx";
|
|
2676
|
+
d2: "d2";
|
|
2677
|
+
d3: "d3";
|
|
2678
|
+
d3en: "d3en";
|
|
2679
|
+
dl1: "dl1";
|
|
2680
|
+
dl2q: "dl2q";
|
|
2681
|
+
e2: "e2";
|
|
2682
|
+
f1: "f1";
|
|
2683
|
+
f2: "f2";
|
|
2684
|
+
g1: "g1";
|
|
2685
|
+
g2: "g2";
|
|
2686
|
+
g4ad: "g4ad";
|
|
2687
|
+
g4dn: "g4dn";
|
|
2688
|
+
g5: "g5";
|
|
2689
|
+
g5g: "g5g";
|
|
2690
|
+
g6: "g6";
|
|
2691
|
+
g6e: "g6e";
|
|
2692
|
+
gr6: "gr6";
|
|
2693
|
+
hpc6a: "hpc6a";
|
|
2694
|
+
hpc6id: "hpc6id";
|
|
2695
|
+
hpc7a: "hpc7a";
|
|
2696
|
+
hpc7g: "hpc7g";
|
|
2697
|
+
i2: "i2";
|
|
2698
|
+
i3: "i3";
|
|
2699
|
+
i3en: "i3en";
|
|
2700
|
+
i4g: "i4g";
|
|
2701
|
+
i4i: "i4i";
|
|
2702
|
+
i7i: "i7i";
|
|
2703
|
+
i7ie: "i7ie";
|
|
2704
|
+
i8g: "i8g";
|
|
2705
|
+
im4gn: "im4gn";
|
|
2706
|
+
inf1: "inf1";
|
|
2707
|
+
inf2: "inf2";
|
|
2708
|
+
is4gen: "is4gen";
|
|
2709
|
+
m1: "m1";
|
|
2710
|
+
m2: "m2";
|
|
2711
|
+
m3: "m3";
|
|
2712
|
+
m4: "m4";
|
|
2713
|
+
m5: "m5";
|
|
2714
|
+
m5a: "m5a";
|
|
2715
|
+
m5ad: "m5ad";
|
|
2716
|
+
m5d: "m5d";
|
|
2717
|
+
m5dn: "m5dn";
|
|
2718
|
+
m5n: "m5n";
|
|
2719
|
+
m5zn: "m5zn";
|
|
2720
|
+
m6a: "m6a";
|
|
2721
|
+
m6g: "m6g";
|
|
2722
|
+
m6gd: "m6gd";
|
|
2723
|
+
m6i: "m6i";
|
|
2724
|
+
m6id: "m6id";
|
|
2725
|
+
m6idn: "m6idn";
|
|
2726
|
+
m6in: "m6in";
|
|
2727
|
+
m7a: "m7a";
|
|
2728
|
+
m7g: "m7g";
|
|
2729
|
+
m7gd: "m7gd";
|
|
2730
|
+
m7i: "m7i";
|
|
2731
|
+
"m7i-flex": "m7i-flex";
|
|
2732
|
+
m8g: "m8g";
|
|
2733
|
+
m8gd: "m8gd";
|
|
2734
|
+
n1: "n1";
|
|
2735
|
+
n2: "n2";
|
|
2736
|
+
n2d: "n2d";
|
|
2737
|
+
n4: "n4";
|
|
2738
|
+
p3dn: "p3dn";
|
|
2739
|
+
p4d: "p4d";
|
|
2740
|
+
p4de: "p4de";
|
|
2741
|
+
p5: "p5";
|
|
2742
|
+
p5e: "p5e";
|
|
2743
|
+
p5en: "p5en";
|
|
2744
|
+
"p6-b200": "p6-b200";
|
|
2745
|
+
r3: "r3";
|
|
2746
|
+
r4: "r4";
|
|
2747
|
+
r5: "r5";
|
|
2748
|
+
r5a: "r5a";
|
|
2749
|
+
r5ad: "r5ad";
|
|
2750
|
+
r5b: "r5b";
|
|
2751
|
+
r5d: "r5d";
|
|
2752
|
+
r5dn: "r5dn";
|
|
2753
|
+
r5n: "r5n";
|
|
2754
|
+
r6a: "r6a";
|
|
2755
|
+
r6g: "r6g";
|
|
2756
|
+
r6gd: "r6gd";
|
|
2757
|
+
r6i: "r6i";
|
|
2758
|
+
r6id: "r6id";
|
|
2759
|
+
r6idn: "r6idn";
|
|
2760
|
+
r6in: "r6in";
|
|
2761
|
+
r7a: "r7a";
|
|
2762
|
+
r7g: "r7g";
|
|
2763
|
+
r7gd: "r7gd";
|
|
2764
|
+
r7i: "r7i";
|
|
2765
|
+
r7iz: "r7iz";
|
|
2766
|
+
r8g: "r8g";
|
|
2767
|
+
r8gd: "r8gd";
|
|
2768
|
+
t2: "t2";
|
|
2769
|
+
t2a: "t2a";
|
|
2770
|
+
t2d: "t2d";
|
|
2771
|
+
t3: "t3";
|
|
2772
|
+
t3a: "t3a";
|
|
2773
|
+
t4g: "t4g";
|
|
2774
|
+
trn1: "trn1";
|
|
2775
|
+
trn1n: "trn1n";
|
|
2776
|
+
"u-3tb1": "u-3tb1";
|
|
2777
|
+
"u-6tb1": "u-6tb1";
|
|
2778
|
+
"u7i-12tb": "u7i-12tb";
|
|
2779
|
+
"u7i-6tb": "u7i-6tb";
|
|
2780
|
+
"u7i-8tb": "u7i-8tb";
|
|
2781
|
+
"u7in-16tb": "u7in-16tb";
|
|
2782
|
+
"u7in-24tb": "u7in-24tb";
|
|
2783
|
+
"u7in-32tb": "u7in-32tb";
|
|
2784
|
+
vt1: "vt1";
|
|
2785
|
+
x1: "x1";
|
|
2786
|
+
x1e: "x1e";
|
|
2787
|
+
x2gd: "x2gd";
|
|
2788
|
+
x2idn: "x2idn";
|
|
2789
|
+
x2iedn: "x2iedn";
|
|
2790
|
+
x2iezn: "x2iezn";
|
|
2791
|
+
x4: "x4";
|
|
2792
|
+
x8g: "x8g";
|
|
2793
|
+
z1d: "z1d";
|
|
2794
|
+
z3: "z3";
|
|
2795
|
+
}>>>;
|
|
2796
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2797
|
+
"africa-south1": "africa-south1";
|
|
2798
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2799
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2800
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2801
|
+
"ap-south-1": "ap-south-1";
|
|
2802
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2803
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2804
|
+
ash: "ash";
|
|
2805
|
+
"asia-east1": "asia-east1";
|
|
2806
|
+
"asia-east2": "asia-east2";
|
|
2807
|
+
"asia-northeast1": "asia-northeast1";
|
|
2808
|
+
"asia-northeast2": "asia-northeast2";
|
|
2809
|
+
"asia-northeast3": "asia-northeast3";
|
|
2810
|
+
"asia-south1": "asia-south1";
|
|
2811
|
+
"asia-south2": "asia-south2";
|
|
2812
|
+
"asia-southeast1": "asia-southeast1";
|
|
2813
|
+
"asia-southeast2": "asia-southeast2";
|
|
2814
|
+
"australia-southeast1": "australia-southeast1";
|
|
2815
|
+
"australia-southeast2": "australia-southeast2";
|
|
2816
|
+
"ca-central-1": "ca-central-1";
|
|
2817
|
+
"eu-central-1": "eu-central-1";
|
|
2818
|
+
"eu-central-2": "eu-central-2";
|
|
2819
|
+
"eu-north-1": "eu-north-1";
|
|
2820
|
+
"eu-west-1": "eu-west-1";
|
|
2821
|
+
"eu-west-2": "eu-west-2";
|
|
2822
|
+
"eu-west-3": "eu-west-3";
|
|
2823
|
+
"europe-central2": "europe-central2";
|
|
2824
|
+
"europe-north1": "europe-north1";
|
|
2825
|
+
"europe-southwest1": "europe-southwest1";
|
|
2826
|
+
"europe-west1": "europe-west1";
|
|
2827
|
+
"europe-west10": "europe-west10";
|
|
2828
|
+
"europe-west12": "europe-west12";
|
|
2829
|
+
"europe-west2": "europe-west2";
|
|
2830
|
+
"europe-west3": "europe-west3";
|
|
2831
|
+
"europe-west4": "europe-west4";
|
|
2832
|
+
"europe-west6": "europe-west6";
|
|
2833
|
+
"europe-west8": "europe-west8";
|
|
2834
|
+
"europe-west9": "europe-west9";
|
|
2835
|
+
fsn1: "fsn1";
|
|
2836
|
+
hel1: "hel1";
|
|
2837
|
+
hil: "hil";
|
|
2838
|
+
"me-central1": "me-central1";
|
|
2839
|
+
"me-central2": "me-central2";
|
|
2840
|
+
"me-west1": "me-west1";
|
|
2841
|
+
nbg1: "nbg1";
|
|
2842
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2843
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2844
|
+
"sa-east-1": "sa-east-1";
|
|
2845
|
+
sin: "sin";
|
|
2846
|
+
"southamerica-east1": "southamerica-east1";
|
|
2847
|
+
"southamerica-west1": "southamerica-west1";
|
|
2848
|
+
"us-central1": "us-central1";
|
|
2849
|
+
"us-east-1": "us-east-1";
|
|
2850
|
+
"us-east-2": "us-east-2";
|
|
2851
|
+
"us-east1": "us-east1";
|
|
2852
|
+
"us-east4": "us-east4";
|
|
2853
|
+
"us-east5": "us-east5";
|
|
2854
|
+
"us-south1": "us-south1";
|
|
2855
|
+
"us-west-1": "us-west-1";
|
|
2856
|
+
"us-west-2": "us-west-2";
|
|
2857
|
+
"us-west1": "us-west1";
|
|
2858
|
+
"us-west2": "us-west2";
|
|
2859
|
+
"us-west3": "us-west3";
|
|
2860
|
+
"us-west4": "us-west4";
|
|
2861
|
+
}>>>;
|
|
2862
|
+
}, z.core.$strip>>;
|
|
2863
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2864
|
+
aggressive: "aggressive";
|
|
2865
|
+
conservative: "conservative";
|
|
2866
|
+
}>>;
|
|
1279
2867
|
id: z.ZodString;
|
|
1280
2868
|
}, z.core.$strip>;
|
|
1281
2869
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
1282
2870
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1283
|
-
cpu: z.
|
|
2871
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
1284
2872
|
}, z.core.$strip>>;
|
|
1285
2873
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1286
|
-
enabled: z.
|
|
1287
|
-
project: z.ZodString
|
|
2874
|
+
enabled: z.ZodBoolean;
|
|
2875
|
+
project: z.ZodOptional<z.ZodString>;
|
|
1288
2876
|
}, z.core.$strip>>;
|
|
1289
2877
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1290
|
-
enabled: z.
|
|
1291
|
-
apiKey: z.ZodString
|
|
2878
|
+
enabled: z.ZodBoolean;
|
|
2879
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1292
2880
|
}, z.core.$strip>>;
|
|
1293
2881
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1294
|
-
enabled: z.
|
|
1295
|
-
controllerRoleArn: z.ZodString
|
|
2882
|
+
enabled: z.ZodBoolean;
|
|
2883
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2884
|
+
}, z.core.$strip>>;
|
|
2885
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2886
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2887
|
+
"on-demand": "on-demand";
|
|
2888
|
+
spot: "spot";
|
|
2889
|
+
}>>>;
|
|
2890
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2891
|
+
amd64: "amd64";
|
|
2892
|
+
arm64: "arm64";
|
|
2893
|
+
}>>>;
|
|
2894
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2895
|
+
p3: "p3";
|
|
2896
|
+
cx: "cx";
|
|
2897
|
+
h1: "h1";
|
|
2898
|
+
h3: "h3";
|
|
2899
|
+
a1: "a1";
|
|
2900
|
+
a2: "a2";
|
|
2901
|
+
a3: "a3";
|
|
2902
|
+
a4: "a4";
|
|
2903
|
+
c1: "c1";
|
|
2904
|
+
c2: "c2";
|
|
2905
|
+
c2d: "c2d";
|
|
2906
|
+
c3: "c3";
|
|
2907
|
+
c3d: "c3d";
|
|
2908
|
+
c4: "c4";
|
|
2909
|
+
c4a: "c4a";
|
|
2910
|
+
c4d: "c4d";
|
|
2911
|
+
c5: "c5";
|
|
2912
|
+
c5a: "c5a";
|
|
2913
|
+
c5ad: "c5ad";
|
|
2914
|
+
c5d: "c5d";
|
|
2915
|
+
c5n: "c5n";
|
|
2916
|
+
c6a: "c6a";
|
|
2917
|
+
c6g: "c6g";
|
|
2918
|
+
c6gd: "c6gd";
|
|
2919
|
+
c6gn: "c6gn";
|
|
2920
|
+
c6i: "c6i";
|
|
2921
|
+
c6id: "c6id";
|
|
2922
|
+
c6in: "c6in";
|
|
2923
|
+
c7a: "c7a";
|
|
2924
|
+
c7g: "c7g";
|
|
2925
|
+
c7gd: "c7gd";
|
|
2926
|
+
c7gn: "c7gn";
|
|
2927
|
+
c7i: "c7i";
|
|
2928
|
+
"c7i-flex": "c7i-flex";
|
|
2929
|
+
c8g: "c8g";
|
|
2930
|
+
c8gd: "c8gd";
|
|
2931
|
+
cax: "cax";
|
|
2932
|
+
ccx: "ccx";
|
|
2933
|
+
cpx: "cpx";
|
|
2934
|
+
d2: "d2";
|
|
2935
|
+
d3: "d3";
|
|
2936
|
+
d3en: "d3en";
|
|
2937
|
+
dl1: "dl1";
|
|
2938
|
+
dl2q: "dl2q";
|
|
2939
|
+
e2: "e2";
|
|
2940
|
+
f1: "f1";
|
|
2941
|
+
f2: "f2";
|
|
2942
|
+
g1: "g1";
|
|
2943
|
+
g2: "g2";
|
|
2944
|
+
g4ad: "g4ad";
|
|
2945
|
+
g4dn: "g4dn";
|
|
2946
|
+
g5: "g5";
|
|
2947
|
+
g5g: "g5g";
|
|
2948
|
+
g6: "g6";
|
|
2949
|
+
g6e: "g6e";
|
|
2950
|
+
gr6: "gr6";
|
|
2951
|
+
hpc6a: "hpc6a";
|
|
2952
|
+
hpc6id: "hpc6id";
|
|
2953
|
+
hpc7a: "hpc7a";
|
|
2954
|
+
hpc7g: "hpc7g";
|
|
2955
|
+
i2: "i2";
|
|
2956
|
+
i3: "i3";
|
|
2957
|
+
i3en: "i3en";
|
|
2958
|
+
i4g: "i4g";
|
|
2959
|
+
i4i: "i4i";
|
|
2960
|
+
i7i: "i7i";
|
|
2961
|
+
i7ie: "i7ie";
|
|
2962
|
+
i8g: "i8g";
|
|
2963
|
+
im4gn: "im4gn";
|
|
2964
|
+
inf1: "inf1";
|
|
2965
|
+
inf2: "inf2";
|
|
2966
|
+
is4gen: "is4gen";
|
|
2967
|
+
m1: "m1";
|
|
2968
|
+
m2: "m2";
|
|
2969
|
+
m3: "m3";
|
|
2970
|
+
m4: "m4";
|
|
2971
|
+
m5: "m5";
|
|
2972
|
+
m5a: "m5a";
|
|
2973
|
+
m5ad: "m5ad";
|
|
2974
|
+
m5d: "m5d";
|
|
2975
|
+
m5dn: "m5dn";
|
|
2976
|
+
m5n: "m5n";
|
|
2977
|
+
m5zn: "m5zn";
|
|
2978
|
+
m6a: "m6a";
|
|
2979
|
+
m6g: "m6g";
|
|
2980
|
+
m6gd: "m6gd";
|
|
2981
|
+
m6i: "m6i";
|
|
2982
|
+
m6id: "m6id";
|
|
2983
|
+
m6idn: "m6idn";
|
|
2984
|
+
m6in: "m6in";
|
|
2985
|
+
m7a: "m7a";
|
|
2986
|
+
m7g: "m7g";
|
|
2987
|
+
m7gd: "m7gd";
|
|
2988
|
+
m7i: "m7i";
|
|
2989
|
+
"m7i-flex": "m7i-flex";
|
|
2990
|
+
m8g: "m8g";
|
|
2991
|
+
m8gd: "m8gd";
|
|
2992
|
+
n1: "n1";
|
|
2993
|
+
n2: "n2";
|
|
2994
|
+
n2d: "n2d";
|
|
2995
|
+
n4: "n4";
|
|
2996
|
+
p3dn: "p3dn";
|
|
2997
|
+
p4d: "p4d";
|
|
2998
|
+
p4de: "p4de";
|
|
2999
|
+
p5: "p5";
|
|
3000
|
+
p5e: "p5e";
|
|
3001
|
+
p5en: "p5en";
|
|
3002
|
+
"p6-b200": "p6-b200";
|
|
3003
|
+
r3: "r3";
|
|
3004
|
+
r4: "r4";
|
|
3005
|
+
r5: "r5";
|
|
3006
|
+
r5a: "r5a";
|
|
3007
|
+
r5ad: "r5ad";
|
|
3008
|
+
r5b: "r5b";
|
|
3009
|
+
r5d: "r5d";
|
|
3010
|
+
r5dn: "r5dn";
|
|
3011
|
+
r5n: "r5n";
|
|
3012
|
+
r6a: "r6a";
|
|
3013
|
+
r6g: "r6g";
|
|
3014
|
+
r6gd: "r6gd";
|
|
3015
|
+
r6i: "r6i";
|
|
3016
|
+
r6id: "r6id";
|
|
3017
|
+
r6idn: "r6idn";
|
|
3018
|
+
r6in: "r6in";
|
|
3019
|
+
r7a: "r7a";
|
|
3020
|
+
r7g: "r7g";
|
|
3021
|
+
r7gd: "r7gd";
|
|
3022
|
+
r7i: "r7i";
|
|
3023
|
+
r7iz: "r7iz";
|
|
3024
|
+
r8g: "r8g";
|
|
3025
|
+
r8gd: "r8gd";
|
|
3026
|
+
t2: "t2";
|
|
3027
|
+
t2a: "t2a";
|
|
3028
|
+
t2d: "t2d";
|
|
3029
|
+
t3: "t3";
|
|
3030
|
+
t3a: "t3a";
|
|
3031
|
+
t4g: "t4g";
|
|
3032
|
+
trn1: "trn1";
|
|
3033
|
+
trn1n: "trn1n";
|
|
3034
|
+
"u-3tb1": "u-3tb1";
|
|
3035
|
+
"u-6tb1": "u-6tb1";
|
|
3036
|
+
"u7i-12tb": "u7i-12tb";
|
|
3037
|
+
"u7i-6tb": "u7i-6tb";
|
|
3038
|
+
"u7i-8tb": "u7i-8tb";
|
|
3039
|
+
"u7in-16tb": "u7in-16tb";
|
|
3040
|
+
"u7in-24tb": "u7in-24tb";
|
|
3041
|
+
"u7in-32tb": "u7in-32tb";
|
|
3042
|
+
vt1: "vt1";
|
|
3043
|
+
x1: "x1";
|
|
3044
|
+
x1e: "x1e";
|
|
3045
|
+
x2gd: "x2gd";
|
|
3046
|
+
x2idn: "x2idn";
|
|
3047
|
+
x2iedn: "x2iedn";
|
|
3048
|
+
x2iezn: "x2iezn";
|
|
3049
|
+
x4: "x4";
|
|
3050
|
+
x8g: "x8g";
|
|
3051
|
+
z1d: "z1d";
|
|
3052
|
+
z3: "z3";
|
|
3053
|
+
}>>>;
|
|
3054
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3055
|
+
"africa-south1": "africa-south1";
|
|
3056
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
3057
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
3058
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
3059
|
+
"ap-south-1": "ap-south-1";
|
|
3060
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
3061
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
3062
|
+
ash: "ash";
|
|
3063
|
+
"asia-east1": "asia-east1";
|
|
3064
|
+
"asia-east2": "asia-east2";
|
|
3065
|
+
"asia-northeast1": "asia-northeast1";
|
|
3066
|
+
"asia-northeast2": "asia-northeast2";
|
|
3067
|
+
"asia-northeast3": "asia-northeast3";
|
|
3068
|
+
"asia-south1": "asia-south1";
|
|
3069
|
+
"asia-south2": "asia-south2";
|
|
3070
|
+
"asia-southeast1": "asia-southeast1";
|
|
3071
|
+
"asia-southeast2": "asia-southeast2";
|
|
3072
|
+
"australia-southeast1": "australia-southeast1";
|
|
3073
|
+
"australia-southeast2": "australia-southeast2";
|
|
3074
|
+
"ca-central-1": "ca-central-1";
|
|
3075
|
+
"eu-central-1": "eu-central-1";
|
|
3076
|
+
"eu-central-2": "eu-central-2";
|
|
3077
|
+
"eu-north-1": "eu-north-1";
|
|
3078
|
+
"eu-west-1": "eu-west-1";
|
|
3079
|
+
"eu-west-2": "eu-west-2";
|
|
3080
|
+
"eu-west-3": "eu-west-3";
|
|
3081
|
+
"europe-central2": "europe-central2";
|
|
3082
|
+
"europe-north1": "europe-north1";
|
|
3083
|
+
"europe-southwest1": "europe-southwest1";
|
|
3084
|
+
"europe-west1": "europe-west1";
|
|
3085
|
+
"europe-west10": "europe-west10";
|
|
3086
|
+
"europe-west12": "europe-west12";
|
|
3087
|
+
"europe-west2": "europe-west2";
|
|
3088
|
+
"europe-west3": "europe-west3";
|
|
3089
|
+
"europe-west4": "europe-west4";
|
|
3090
|
+
"europe-west6": "europe-west6";
|
|
3091
|
+
"europe-west8": "europe-west8";
|
|
3092
|
+
"europe-west9": "europe-west9";
|
|
3093
|
+
fsn1: "fsn1";
|
|
3094
|
+
hel1: "hel1";
|
|
3095
|
+
hil: "hil";
|
|
3096
|
+
"me-central1": "me-central1";
|
|
3097
|
+
"me-central2": "me-central2";
|
|
3098
|
+
"me-west1": "me-west1";
|
|
3099
|
+
nbg1: "nbg1";
|
|
3100
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
3101
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
3102
|
+
"sa-east-1": "sa-east-1";
|
|
3103
|
+
sin: "sin";
|
|
3104
|
+
"southamerica-east1": "southamerica-east1";
|
|
3105
|
+
"southamerica-west1": "southamerica-west1";
|
|
3106
|
+
"us-central1": "us-central1";
|
|
3107
|
+
"us-east-1": "us-east-1";
|
|
3108
|
+
"us-east-2": "us-east-2";
|
|
3109
|
+
"us-east1": "us-east1";
|
|
3110
|
+
"us-east4": "us-east4";
|
|
3111
|
+
"us-east5": "us-east5";
|
|
3112
|
+
"us-south1": "us-south1";
|
|
3113
|
+
"us-west-1": "us-west-1";
|
|
3114
|
+
"us-west-2": "us-west-2";
|
|
3115
|
+
"us-west1": "us-west1";
|
|
3116
|
+
"us-west2": "us-west2";
|
|
3117
|
+
"us-west3": "us-west3";
|
|
3118
|
+
"us-west4": "us-west4";
|
|
3119
|
+
}>>>;
|
|
1296
3120
|
}, z.core.$strip>>;
|
|
3121
|
+
scalingProfile: z.ZodEnum<{
|
|
3122
|
+
aggressive: "aggressive";
|
|
3123
|
+
conservative: "conservative";
|
|
3124
|
+
}>;
|
|
1297
3125
|
}, z.core.$strip>;
|
|
1298
3126
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
1299
3127
|
cluster_id: z.ZodString;
|
|
@@ -1315,12 +3143,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1315
3143
|
basic: "basic";
|
|
1316
3144
|
pro: "pro";
|
|
1317
3145
|
}>;
|
|
1318
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3146
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1319
3147
|
"staging-1a": "staging-1a";
|
|
1320
3148
|
"northamerica-central-1": "northamerica-central-1";
|
|
1321
3149
|
"europe-central-1a": "europe-central-1a";
|
|
1322
3150
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1323
|
-
}
|
|
3151
|
+
}>>>;
|
|
1324
3152
|
id: z.ZodUUID;
|
|
1325
3153
|
status: z.ZodEnum<{
|
|
1326
3154
|
deleted: "deleted";
|
|
@@ -1334,6 +3162,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1334
3162
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1335
3163
|
"": "";
|
|
1336
3164
|
}>]>>;
|
|
3165
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3166
|
+
"": "";
|
|
3167
|
+
}>]>>;
|
|
1337
3168
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1338
3169
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1339
3170
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1347,18 +3178,18 @@ export declare const zCreateClusterBody: z.ZodObject<{
|
|
|
1347
3178
|
basic: "basic";
|
|
1348
3179
|
pro: "pro";
|
|
1349
3180
|
}>;
|
|
1350
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3181
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1351
3182
|
"staging-1a": "staging-1a";
|
|
1352
3183
|
"northamerica-central-1": "northamerica-central-1";
|
|
1353
3184
|
"europe-central-1a": "europe-central-1a";
|
|
1354
3185
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1355
|
-
}
|
|
1356
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
3186
|
+
}>>>;
|
|
3187
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1357
3188
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
1358
3189
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
1359
3190
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
1360
3191
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
1361
|
-
}
|
|
3192
|
+
}>>>;
|
|
1362
3193
|
}, z.core.$strip>;
|
|
1363
3194
|
/**
|
|
1364
3195
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -1383,12 +3214,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1383
3214
|
basic: "basic";
|
|
1384
3215
|
pro: "pro";
|
|
1385
3216
|
}>;
|
|
1386
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3217
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1387
3218
|
"staging-1a": "staging-1a";
|
|
1388
3219
|
"northamerica-central-1": "northamerica-central-1";
|
|
1389
3220
|
"europe-central-1a": "europe-central-1a";
|
|
1390
3221
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1391
|
-
}
|
|
3222
|
+
}>>>;
|
|
1392
3223
|
id: z.ZodUUID;
|
|
1393
3224
|
status: z.ZodEnum<{
|
|
1394
3225
|
deleted: "deleted";
|
|
@@ -1402,6 +3233,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1402
3233
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1403
3234
|
"": "";
|
|
1404
3235
|
}>]>>;
|
|
3236
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3237
|
+
"": "";
|
|
3238
|
+
}>]>>;
|
|
1405
3239
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1406
3240
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1407
3241
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1429,12 +3263,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1429
3263
|
basic: "basic";
|
|
1430
3264
|
pro: "pro";
|
|
1431
3265
|
}>;
|
|
1432
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3266
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1433
3267
|
"staging-1a": "staging-1a";
|
|
1434
3268
|
"northamerica-central-1": "northamerica-central-1";
|
|
1435
3269
|
"europe-central-1a": "europe-central-1a";
|
|
1436
3270
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1437
|
-
}
|
|
3271
|
+
}>>>;
|
|
1438
3272
|
id: z.ZodUUID;
|
|
1439
3273
|
status: z.ZodEnum<{
|
|
1440
3274
|
deleted: "deleted";
|
|
@@ -1448,6 +3282,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1448
3282
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
1449
3283
|
"": "";
|
|
1450
3284
|
}>]>>;
|
|
3285
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3286
|
+
"": "";
|
|
3287
|
+
}>]>>;
|
|
1451
3288
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
1452
3289
|
version_current: z.ZodOptional<z.ZodString>;
|
|
1453
3290
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -1455,13 +3292,6 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1455
3292
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1456
3293
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1457
3294
|
}, z.core.$strip>;
|
|
1458
|
-
export declare const zGetClusterCaPath: z.ZodObject<{
|
|
1459
|
-
cluster_id: z.ZodString;
|
|
1460
|
-
}, z.core.$strip>;
|
|
1461
|
-
/**
|
|
1462
|
-
* PEM-encoded certificate authority of the cluster.
|
|
1463
|
-
*/
|
|
1464
|
-
export declare const zGetClusterCaResponse: z.ZodString;
|
|
1465
3295
|
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
1466
3296
|
cluster_id: z.ZodString;
|
|
1467
3297
|
}, z.core.$strip>;
|
|
@@ -1472,6 +3302,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1472
3302
|
certificate_authority: z.ZodString;
|
|
1473
3303
|
endpoint: z.ZodURL;
|
|
1474
3304
|
cluster_dns: z.ZodString;
|
|
3305
|
+
pod_cidr: z.ZodString;
|
|
1475
3306
|
auth_key: z.ZodString;
|
|
1476
3307
|
bootstrap_token: z.ZodString;
|
|
1477
3308
|
versions: z.ZodObject<{
|
|
@@ -1495,9 +3326,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1495
3326
|
date_created: z.ZodISODateTime;
|
|
1496
3327
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1497
3328
|
code: z.ZodOptional<z.ZodString>;
|
|
3329
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3330
|
+
Administrator: "Administrator";
|
|
3331
|
+
User: "User";
|
|
3332
|
+
}>>>;
|
|
1498
3333
|
}, z.core.$strip>>;
|
|
1499
3334
|
export declare const zCreateInviteBody: z.ZodObject<{
|
|
1500
|
-
email: z.
|
|
3335
|
+
email: z.ZodEmail;
|
|
3336
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
Administrator: "Administrator";
|
|
3338
|
+
User: "User";
|
|
3339
|
+
}>>>;
|
|
1501
3340
|
}, z.core.$strip>;
|
|
1502
3341
|
/**
|
|
1503
3342
|
* Successfully created. Returns created invite details.
|
|
@@ -1508,22 +3347,23 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1508
3347
|
date_created: z.ZodISODateTime;
|
|
1509
3348
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1510
3349
|
code: z.ZodOptional<z.ZodString>;
|
|
3350
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3351
|
+
Administrator: "Administrator";
|
|
3352
|
+
User: "User";
|
|
3353
|
+
}>>>;
|
|
1511
3354
|
}, z.core.$strip>;
|
|
1512
3355
|
export declare const zGetInvitePath: z.ZodObject<{
|
|
1513
3356
|
code: z.ZodString;
|
|
1514
3357
|
}, z.core.$strip>;
|
|
1515
3358
|
/**
|
|
1516
|
-
* Returns
|
|
3359
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
1517
3360
|
*/
|
|
1518
3361
|
export declare const zGetInviteResponse: z.ZodObject<{
|
|
1519
|
-
id: z.ZodOptional<z.ZodString>;
|
|
1520
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
1521
|
-
date_created: z.ZodISODateTime;
|
|
1522
3362
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1523
|
-
|
|
3363
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
1524
3364
|
}, z.core.$strip>;
|
|
1525
3365
|
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
1526
|
-
email: z.
|
|
3366
|
+
email: z.ZodEmail;
|
|
1527
3367
|
}, z.core.$strip>;
|
|
1528
3368
|
/**
|
|
1529
3369
|
* An array of chart listings in the marketplace.
|
|
@@ -1588,6 +3428,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1588
3428
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
1589
3429
|
id: z.ZodUUID;
|
|
1590
3430
|
name: z.ZodOptional<z.ZodString>;
|
|
3431
|
+
type: z.ZodEnum<{
|
|
3432
|
+
business: "business";
|
|
3433
|
+
personal: "personal";
|
|
3434
|
+
}>;
|
|
1591
3435
|
date_created: z.ZodISODateTime;
|
|
1592
3436
|
quota: z.ZodObject<{
|
|
1593
3437
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1608,14 +3452,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1608
3452
|
closed: "closed";
|
|
1609
3453
|
suspended: "suspended";
|
|
1610
3454
|
}>;
|
|
3455
|
+
verification: z.ZodEnum<{
|
|
3456
|
+
none: "none";
|
|
3457
|
+
submitted: "submitted";
|
|
3458
|
+
verified: "verified";
|
|
3459
|
+
}>;
|
|
1611
3460
|
}, z.core.$strip>;
|
|
1612
3461
|
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3462
|
+
type: z.ZodEnum<{
|
|
3463
|
+
business: "business";
|
|
3464
|
+
personal: "personal";
|
|
3465
|
+
}>;
|
|
1613
3466
|
email: z.ZodEmail;
|
|
1614
3467
|
first_name: z.ZodString;
|
|
1615
3468
|
last_name: z.ZodString;
|
|
1616
3469
|
company_name: z.ZodString;
|
|
1617
3470
|
password: z.ZodString;
|
|
1618
3471
|
}, z.core.$strip>;
|
|
3472
|
+
/**
|
|
3473
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
3474
|
+
*
|
|
3475
|
+
*/
|
|
3476
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
3477
|
+
id: z.ZodString;
|
|
3478
|
+
}, z.core.$strip>;
|
|
1619
3479
|
/**
|
|
1620
3480
|
* List of repositories
|
|
1621
3481
|
*/
|
|
@@ -1685,6 +3545,201 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1685
3545
|
repository: z.ZodString;
|
|
1686
3546
|
uri: z.ZodString;
|
|
1687
3547
|
}, z.core.$strip>;
|
|
3548
|
+
/**
|
|
3549
|
+
* Tickets for the organization.
|
|
3550
|
+
*/
|
|
3551
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
3552
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3553
|
+
id: z.ZodString;
|
|
3554
|
+
status: z.ZodEnum<{
|
|
3555
|
+
closed: "closed";
|
|
3556
|
+
waiting_on_us: "waiting_on_us";
|
|
3557
|
+
waiting_on_user: "waiting_on_user";
|
|
3558
|
+
}>;
|
|
3559
|
+
category: z.ZodEnum<{
|
|
3560
|
+
billing: "billing";
|
|
3561
|
+
technical: "technical";
|
|
3562
|
+
general: "general";
|
|
3563
|
+
}>;
|
|
3564
|
+
summary: z.ZodString;
|
|
3565
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3566
|
+
date_created: z.ZodISODateTime;
|
|
3567
|
+
date_updated: z.ZodISODateTime;
|
|
3568
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3569
|
+
id: z.ZodString;
|
|
3570
|
+
type: z.ZodEnum<{
|
|
3571
|
+
customer_reply: "customer_reply";
|
|
3572
|
+
agent_reply: "agent_reply";
|
|
3573
|
+
}>;
|
|
3574
|
+
body: z.ZodString;
|
|
3575
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3576
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3577
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3578
|
+
id: z.ZodString;
|
|
3579
|
+
filename: z.ZodString;
|
|
3580
|
+
content_type: z.ZodString;
|
|
3581
|
+
size: z.ZodInt;
|
|
3582
|
+
}, z.core.$strip>>>;
|
|
3583
|
+
date_created: z.ZodISODateTime;
|
|
3584
|
+
}, z.core.$strip>>>;
|
|
3585
|
+
}, z.core.$strip>>;
|
|
3586
|
+
}, z.core.$strip>;
|
|
3587
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
3588
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3589
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3590
|
+
}, z.core.$strip>;
|
|
3591
|
+
/**
|
|
3592
|
+
* Ticket created.
|
|
3593
|
+
*/
|
|
3594
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
3595
|
+
id: z.ZodString;
|
|
3596
|
+
status: z.ZodEnum<{
|
|
3597
|
+
closed: "closed";
|
|
3598
|
+
waiting_on_us: "waiting_on_us";
|
|
3599
|
+
waiting_on_user: "waiting_on_user";
|
|
3600
|
+
}>;
|
|
3601
|
+
category: z.ZodEnum<{
|
|
3602
|
+
billing: "billing";
|
|
3603
|
+
technical: "technical";
|
|
3604
|
+
general: "general";
|
|
3605
|
+
}>;
|
|
3606
|
+
summary: z.ZodString;
|
|
3607
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3608
|
+
date_created: z.ZodISODateTime;
|
|
3609
|
+
date_updated: z.ZodISODateTime;
|
|
3610
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3611
|
+
id: z.ZodString;
|
|
3612
|
+
type: z.ZodEnum<{
|
|
3613
|
+
customer_reply: "customer_reply";
|
|
3614
|
+
agent_reply: "agent_reply";
|
|
3615
|
+
}>;
|
|
3616
|
+
body: z.ZodString;
|
|
3617
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3618
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3619
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3620
|
+
id: z.ZodString;
|
|
3621
|
+
filename: z.ZodString;
|
|
3622
|
+
content_type: z.ZodString;
|
|
3623
|
+
size: z.ZodInt;
|
|
3624
|
+
}, z.core.$strip>>>;
|
|
3625
|
+
date_created: z.ZodISODateTime;
|
|
3626
|
+
}, z.core.$strip>>>;
|
|
3627
|
+
}, z.core.$strip>;
|
|
3628
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
3629
|
+
ticket_id: z.ZodString;
|
|
3630
|
+
}, z.core.$strip>;
|
|
3631
|
+
/**
|
|
3632
|
+
* Ticket closed.
|
|
3633
|
+
*/
|
|
3634
|
+
export declare const zCloseTicketResponse: z.ZodObject<{
|
|
3635
|
+
id: z.ZodString;
|
|
3636
|
+
status: z.ZodEnum<{
|
|
3637
|
+
closed: "closed";
|
|
3638
|
+
waiting_on_us: "waiting_on_us";
|
|
3639
|
+
waiting_on_user: "waiting_on_user";
|
|
3640
|
+
}>;
|
|
3641
|
+
category: z.ZodEnum<{
|
|
3642
|
+
billing: "billing";
|
|
3643
|
+
technical: "technical";
|
|
3644
|
+
general: "general";
|
|
3645
|
+
}>;
|
|
3646
|
+
summary: z.ZodString;
|
|
3647
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3648
|
+
date_created: z.ZodISODateTime;
|
|
3649
|
+
date_updated: z.ZodISODateTime;
|
|
3650
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3651
|
+
id: z.ZodString;
|
|
3652
|
+
type: z.ZodEnum<{
|
|
3653
|
+
customer_reply: "customer_reply";
|
|
3654
|
+
agent_reply: "agent_reply";
|
|
3655
|
+
}>;
|
|
3656
|
+
body: z.ZodString;
|
|
3657
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3658
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3659
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3660
|
+
id: z.ZodString;
|
|
3661
|
+
filename: z.ZodString;
|
|
3662
|
+
content_type: z.ZodString;
|
|
3663
|
+
size: z.ZodInt;
|
|
3664
|
+
}, z.core.$strip>>>;
|
|
3665
|
+
date_created: z.ZodISODateTime;
|
|
3666
|
+
}, z.core.$strip>>>;
|
|
3667
|
+
}, z.core.$strip>;
|
|
3668
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
3669
|
+
ticket_id: z.ZodString;
|
|
3670
|
+
}, z.core.$strip>;
|
|
3671
|
+
/**
|
|
3672
|
+
* Ticket with messages (internal notes excluded).
|
|
3673
|
+
*/
|
|
3674
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
3675
|
+
id: z.ZodString;
|
|
3676
|
+
status: z.ZodEnum<{
|
|
3677
|
+
closed: "closed";
|
|
3678
|
+
waiting_on_us: "waiting_on_us";
|
|
3679
|
+
waiting_on_user: "waiting_on_user";
|
|
3680
|
+
}>;
|
|
3681
|
+
category: z.ZodEnum<{
|
|
3682
|
+
billing: "billing";
|
|
3683
|
+
technical: "technical";
|
|
3684
|
+
general: "general";
|
|
3685
|
+
}>;
|
|
3686
|
+
summary: z.ZodString;
|
|
3687
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3688
|
+
date_created: z.ZodISODateTime;
|
|
3689
|
+
date_updated: z.ZodISODateTime;
|
|
3690
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3691
|
+
id: z.ZodString;
|
|
3692
|
+
type: z.ZodEnum<{
|
|
3693
|
+
customer_reply: "customer_reply";
|
|
3694
|
+
agent_reply: "agent_reply";
|
|
3695
|
+
}>;
|
|
3696
|
+
body: z.ZodString;
|
|
3697
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3698
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3699
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3700
|
+
id: z.ZodString;
|
|
3701
|
+
filename: z.ZodString;
|
|
3702
|
+
content_type: z.ZodString;
|
|
3703
|
+
size: z.ZodInt;
|
|
3704
|
+
}, z.core.$strip>>>;
|
|
3705
|
+
date_created: z.ZodISODateTime;
|
|
3706
|
+
}, z.core.$strip>>>;
|
|
3707
|
+
}, z.core.$strip>;
|
|
3708
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
3709
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3710
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3711
|
+
}, z.core.$strip>;
|
|
3712
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
3713
|
+
ticket_id: z.ZodString;
|
|
3714
|
+
}, z.core.$strip>;
|
|
3715
|
+
/**
|
|
3716
|
+
* Reply appended.
|
|
3717
|
+
*/
|
|
3718
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
3719
|
+
id: z.ZodString;
|
|
3720
|
+
type: z.ZodEnum<{
|
|
3721
|
+
customer_reply: "customer_reply";
|
|
3722
|
+
agent_reply: "agent_reply";
|
|
3723
|
+
}>;
|
|
3724
|
+
body: z.ZodString;
|
|
3725
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3726
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3727
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3728
|
+
id: z.ZodString;
|
|
3729
|
+
filename: z.ZodString;
|
|
3730
|
+
content_type: z.ZodString;
|
|
3731
|
+
size: z.ZodInt;
|
|
3732
|
+
}, z.core.$strip>>>;
|
|
3733
|
+
date_created: z.ZodISODateTime;
|
|
3734
|
+
}, z.core.$strip>;
|
|
3735
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
3736
|
+
ticket_id: z.ZodString;
|
|
3737
|
+
attachment_id: z.ZodString;
|
|
3738
|
+
}, z.core.$strip>;
|
|
3739
|
+
/**
|
|
3740
|
+
* Attachment binary stream.
|
|
3741
|
+
*/
|
|
3742
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1688
3743
|
/**
|
|
1689
3744
|
* Returns a list of access token details with masked secrets.
|
|
1690
3745
|
*/
|
|
@@ -1810,14 +3865,6 @@ export declare const zCreateUserBody: z.ZodObject<{
|
|
|
1810
3865
|
last_name: z.ZodString;
|
|
1811
3866
|
code: z.ZodString;
|
|
1812
3867
|
password: z.ZodString;
|
|
1813
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
1814
|
-
active: "active";
|
|
1815
|
-
inactive: "inactive";
|
|
1816
|
-
}>>;
|
|
1817
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
1818
|
-
Administrator: "Administrator";
|
|
1819
|
-
User: "User";
|
|
1820
|
-
}>>;
|
|
1821
3868
|
}, z.core.$strip>;
|
|
1822
3869
|
/**
|
|
1823
3870
|
* Successfully created. Returns created user details.
|