@cloudfleet/sdk 0.0.1-4e38512 → 0.0.1-4ee2c6f
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 +1125 -0
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -0
- package/dist/@tanstack/react-query.gen.js +1129 -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 +108 -123
- package/dist/client/client.gen.js.map +1 -1
- package/dist/client/types.gen.d.ts +7 -4
- 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 +1 -1
- package/dist/client/utils.gen.js.map +1 -1
- package/dist/client.gen.d.ts +1 -1
- package/dist/client.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.gen.d.ts +4 -4
- package/dist/core/bodySerializer.gen.d.ts.map +1 -1
- package/dist/core/bodySerializer.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/core/types.gen.d.ts +1 -1
- package/dist/core/utils.gen.js +1 -1
- package/dist/core/utils.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +544 -38
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +1326 -52
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +41 -3
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +67 -0
- package/dist/sdk.gen.js.map +1 -1
- package/dist/services/kubernetes/api.d.ts +8 -8
- package/dist/types.gen.d.ts +441 -25
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +2350 -578
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +947 -319
- package/dist/zod.gen.js.map +1 -1
- package/package.json +23 -4
package/dist/zod.gen.d.ts
CHANGED
|
@@ -199,18 +199,18 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
199
|
basic: "basic";
|
|
200
200
|
pro: "pro";
|
|
201
201
|
}>;
|
|
202
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
202
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
203
203
|
"staging-1a": "staging-1a";
|
|
204
204
|
"northamerica-central-1": "northamerica-central-1";
|
|
205
205
|
"europe-central-1a": "europe-central-1a";
|
|
206
206
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
207
|
-
}
|
|
208
|
-
version_channel: z.ZodOptional<z.ZodEnum<{
|
|
207
|
+
}>>>;
|
|
208
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
209
|
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
210
|
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
211
|
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
212
|
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
213
|
-
}
|
|
213
|
+
}>>>;
|
|
214
214
|
}, z.core.$strip>;
|
|
215
215
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
216
|
certificate_authority: z.ZodString;
|
|
@@ -236,12 +236,12 @@ export declare const zCluster: z.ZodObject<{
|
|
|
236
236
|
basic: "basic";
|
|
237
237
|
pro: "pro";
|
|
238
238
|
}>;
|
|
239
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
239
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
240
240
|
"staging-1a": "staging-1a";
|
|
241
241
|
"northamerica-central-1": "northamerica-central-1";
|
|
242
242
|
"europe-central-1a": "europe-central-1a";
|
|
243
243
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
244
|
-
}
|
|
244
|
+
}>>>;
|
|
245
245
|
id: z.ZodUUID;
|
|
246
246
|
status: z.ZodEnum<{
|
|
247
247
|
deleted: "deleted";
|
|
@@ -272,7 +272,7 @@ export declare const zClusterUpdateInput: z.ZodObject<{
|
|
|
272
272
|
}, z.core.$strip>;
|
|
273
273
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
274
274
|
limits: z.ZodOptional<z.ZodObject<{
|
|
275
|
-
cpu: z.ZodNumber
|
|
275
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
276
276
|
}, z.core.$strip>>;
|
|
277
277
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
278
278
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -280,17 +280,257 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
280
280
|
}, z.core.$strip>>;
|
|
281
281
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
282
282
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
283
|
-
apiKey: z.ZodString
|
|
283
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
284
284
|
}, z.core.$strip>>;
|
|
285
285
|
aws: z.ZodOptional<z.ZodObject<{
|
|
286
286
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
287
287
|
controllerRoleArn: z.ZodString;
|
|
288
288
|
}, z.core.$strip>>;
|
|
289
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
290
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
291
|
+
"on-demand": "on-demand";
|
|
292
|
+
spot: "spot";
|
|
293
|
+
}>>>;
|
|
294
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
295
|
+
amd64: "amd64";
|
|
296
|
+
arm64: "arm64";
|
|
297
|
+
}>>>;
|
|
298
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
299
|
+
p3: "p3";
|
|
300
|
+
cx: "cx";
|
|
301
|
+
h1: "h1";
|
|
302
|
+
h3: "h3";
|
|
303
|
+
a1: "a1";
|
|
304
|
+
a2: "a2";
|
|
305
|
+
a3: "a3";
|
|
306
|
+
a4: "a4";
|
|
307
|
+
c1: "c1";
|
|
308
|
+
c2: "c2";
|
|
309
|
+
c2d: "c2d";
|
|
310
|
+
c3: "c3";
|
|
311
|
+
c3d: "c3d";
|
|
312
|
+
c4: "c4";
|
|
313
|
+
c4a: "c4a";
|
|
314
|
+
c4d: "c4d";
|
|
315
|
+
c5: "c5";
|
|
316
|
+
c5a: "c5a";
|
|
317
|
+
c5ad: "c5ad";
|
|
318
|
+
c5d: "c5d";
|
|
319
|
+
c5n: "c5n";
|
|
320
|
+
c6a: "c6a";
|
|
321
|
+
c6g: "c6g";
|
|
322
|
+
c6gd: "c6gd";
|
|
323
|
+
c6gn: "c6gn";
|
|
324
|
+
c6i: "c6i";
|
|
325
|
+
c6id: "c6id";
|
|
326
|
+
c6in: "c6in";
|
|
327
|
+
c7a: "c7a";
|
|
328
|
+
c7g: "c7g";
|
|
329
|
+
c7gd: "c7gd";
|
|
330
|
+
c7gn: "c7gn";
|
|
331
|
+
c7i: "c7i";
|
|
332
|
+
"c7i-flex": "c7i-flex";
|
|
333
|
+
c8g: "c8g";
|
|
334
|
+
c8gd: "c8gd";
|
|
335
|
+
cax: "cax";
|
|
336
|
+
ccx: "ccx";
|
|
337
|
+
cpx: "cpx";
|
|
338
|
+
d2: "d2";
|
|
339
|
+
d3: "d3";
|
|
340
|
+
d3en: "d3en";
|
|
341
|
+
dl1: "dl1";
|
|
342
|
+
dl2q: "dl2q";
|
|
343
|
+
e2: "e2";
|
|
344
|
+
f1: "f1";
|
|
345
|
+
f2: "f2";
|
|
346
|
+
g1: "g1";
|
|
347
|
+
g2: "g2";
|
|
348
|
+
g4ad: "g4ad";
|
|
349
|
+
g4dn: "g4dn";
|
|
350
|
+
g5: "g5";
|
|
351
|
+
g5g: "g5g";
|
|
352
|
+
g6: "g6";
|
|
353
|
+
g6e: "g6e";
|
|
354
|
+
gr6: "gr6";
|
|
355
|
+
hpc6a: "hpc6a";
|
|
356
|
+
hpc6id: "hpc6id";
|
|
357
|
+
hpc7a: "hpc7a";
|
|
358
|
+
hpc7g: "hpc7g";
|
|
359
|
+
i2: "i2";
|
|
360
|
+
i3: "i3";
|
|
361
|
+
i3en: "i3en";
|
|
362
|
+
i4g: "i4g";
|
|
363
|
+
i4i: "i4i";
|
|
364
|
+
i7i: "i7i";
|
|
365
|
+
i7ie: "i7ie";
|
|
366
|
+
i8g: "i8g";
|
|
367
|
+
im4gn: "im4gn";
|
|
368
|
+
inf1: "inf1";
|
|
369
|
+
inf2: "inf2";
|
|
370
|
+
is4gen: "is4gen";
|
|
371
|
+
m1: "m1";
|
|
372
|
+
m2: "m2";
|
|
373
|
+
m3: "m3";
|
|
374
|
+
m4: "m4";
|
|
375
|
+
m5: "m5";
|
|
376
|
+
m5a: "m5a";
|
|
377
|
+
m5ad: "m5ad";
|
|
378
|
+
m5d: "m5d";
|
|
379
|
+
m5dn: "m5dn";
|
|
380
|
+
m5n: "m5n";
|
|
381
|
+
m5zn: "m5zn";
|
|
382
|
+
m6a: "m6a";
|
|
383
|
+
m6g: "m6g";
|
|
384
|
+
m6gd: "m6gd";
|
|
385
|
+
m6i: "m6i";
|
|
386
|
+
m6id: "m6id";
|
|
387
|
+
m6idn: "m6idn";
|
|
388
|
+
m6in: "m6in";
|
|
389
|
+
m7a: "m7a";
|
|
390
|
+
m7g: "m7g";
|
|
391
|
+
m7gd: "m7gd";
|
|
392
|
+
m7i: "m7i";
|
|
393
|
+
"m7i-flex": "m7i-flex";
|
|
394
|
+
m8g: "m8g";
|
|
395
|
+
m8gd: "m8gd";
|
|
396
|
+
n1: "n1";
|
|
397
|
+
n2: "n2";
|
|
398
|
+
n2d: "n2d";
|
|
399
|
+
n4: "n4";
|
|
400
|
+
p3dn: "p3dn";
|
|
401
|
+
p4d: "p4d";
|
|
402
|
+
p4de: "p4de";
|
|
403
|
+
p5: "p5";
|
|
404
|
+
p5e: "p5e";
|
|
405
|
+
p5en: "p5en";
|
|
406
|
+
"p6-b200": "p6-b200";
|
|
407
|
+
r3: "r3";
|
|
408
|
+
r4: "r4";
|
|
409
|
+
r5: "r5";
|
|
410
|
+
r5a: "r5a";
|
|
411
|
+
r5ad: "r5ad";
|
|
412
|
+
r5b: "r5b";
|
|
413
|
+
r5d: "r5d";
|
|
414
|
+
r5dn: "r5dn";
|
|
415
|
+
r5n: "r5n";
|
|
416
|
+
r6a: "r6a";
|
|
417
|
+
r6g: "r6g";
|
|
418
|
+
r6gd: "r6gd";
|
|
419
|
+
r6i: "r6i";
|
|
420
|
+
r6id: "r6id";
|
|
421
|
+
r6idn: "r6idn";
|
|
422
|
+
r6in: "r6in";
|
|
423
|
+
r7a: "r7a";
|
|
424
|
+
r7g: "r7g";
|
|
425
|
+
r7gd: "r7gd";
|
|
426
|
+
r7i: "r7i";
|
|
427
|
+
r7iz: "r7iz";
|
|
428
|
+
r8g: "r8g";
|
|
429
|
+
r8gd: "r8gd";
|
|
430
|
+
t2: "t2";
|
|
431
|
+
t2a: "t2a";
|
|
432
|
+
t2d: "t2d";
|
|
433
|
+
t3: "t3";
|
|
434
|
+
t3a: "t3a";
|
|
435
|
+
t4g: "t4g";
|
|
436
|
+
trn1: "trn1";
|
|
437
|
+
trn1n: "trn1n";
|
|
438
|
+
"u-3tb1": "u-3tb1";
|
|
439
|
+
"u-6tb1": "u-6tb1";
|
|
440
|
+
"u7i-12tb": "u7i-12tb";
|
|
441
|
+
"u7i-6tb": "u7i-6tb";
|
|
442
|
+
"u7i-8tb": "u7i-8tb";
|
|
443
|
+
"u7in-16tb": "u7in-16tb";
|
|
444
|
+
"u7in-24tb": "u7in-24tb";
|
|
445
|
+
"u7in-32tb": "u7in-32tb";
|
|
446
|
+
vt1: "vt1";
|
|
447
|
+
x1: "x1";
|
|
448
|
+
x1e: "x1e";
|
|
449
|
+
x2gd: "x2gd";
|
|
450
|
+
x2idn: "x2idn";
|
|
451
|
+
x2iedn: "x2iedn";
|
|
452
|
+
x2iezn: "x2iezn";
|
|
453
|
+
x4: "x4";
|
|
454
|
+
x8g: "x8g";
|
|
455
|
+
z1d: "z1d";
|
|
456
|
+
z3: "z3";
|
|
457
|
+
}>>>;
|
|
458
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
459
|
+
"africa-south1": "africa-south1";
|
|
460
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
461
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
462
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
463
|
+
"ap-south-1": "ap-south-1";
|
|
464
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
465
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
466
|
+
ash: "ash";
|
|
467
|
+
"asia-east1": "asia-east1";
|
|
468
|
+
"asia-east2": "asia-east2";
|
|
469
|
+
"asia-northeast1": "asia-northeast1";
|
|
470
|
+
"asia-northeast2": "asia-northeast2";
|
|
471
|
+
"asia-northeast3": "asia-northeast3";
|
|
472
|
+
"asia-south1": "asia-south1";
|
|
473
|
+
"asia-south2": "asia-south2";
|
|
474
|
+
"asia-southeast1": "asia-southeast1";
|
|
475
|
+
"asia-southeast2": "asia-southeast2";
|
|
476
|
+
"australia-southeast1": "australia-southeast1";
|
|
477
|
+
"australia-southeast2": "australia-southeast2";
|
|
478
|
+
"ca-central-1": "ca-central-1";
|
|
479
|
+
"eu-central-1": "eu-central-1";
|
|
480
|
+
"eu-central-2": "eu-central-2";
|
|
481
|
+
"eu-north-1": "eu-north-1";
|
|
482
|
+
"eu-west-1": "eu-west-1";
|
|
483
|
+
"eu-west-2": "eu-west-2";
|
|
484
|
+
"eu-west-3": "eu-west-3";
|
|
485
|
+
"europe-central2": "europe-central2";
|
|
486
|
+
"europe-north1": "europe-north1";
|
|
487
|
+
"europe-southwest1": "europe-southwest1";
|
|
488
|
+
"europe-west1": "europe-west1";
|
|
489
|
+
"europe-west10": "europe-west10";
|
|
490
|
+
"europe-west12": "europe-west12";
|
|
491
|
+
"europe-west2": "europe-west2";
|
|
492
|
+
"europe-west3": "europe-west3";
|
|
493
|
+
"europe-west4": "europe-west4";
|
|
494
|
+
"europe-west6": "europe-west6";
|
|
495
|
+
"europe-west8": "europe-west8";
|
|
496
|
+
"europe-west9": "europe-west9";
|
|
497
|
+
fsn1: "fsn1";
|
|
498
|
+
hel1: "hel1";
|
|
499
|
+
hil: "hil";
|
|
500
|
+
"me-central1": "me-central1";
|
|
501
|
+
"me-central2": "me-central2";
|
|
502
|
+
"me-west1": "me-west1";
|
|
503
|
+
nbg1: "nbg1";
|
|
504
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
505
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
506
|
+
"sa-east-1": "sa-east-1";
|
|
507
|
+
sin: "sin";
|
|
508
|
+
"southamerica-east1": "southamerica-east1";
|
|
509
|
+
"southamerica-west1": "southamerica-west1";
|
|
510
|
+
"us-central1": "us-central1";
|
|
511
|
+
"us-east-1": "us-east-1";
|
|
512
|
+
"us-east-2": "us-east-2";
|
|
513
|
+
"us-east1": "us-east1";
|
|
514
|
+
"us-east4": "us-east4";
|
|
515
|
+
"us-east5": "us-east5";
|
|
516
|
+
"us-south1": "us-south1";
|
|
517
|
+
"us-west-1": "us-west-1";
|
|
518
|
+
"us-west-2": "us-west-2";
|
|
519
|
+
"us-west1": "us-west1";
|
|
520
|
+
"us-west2": "us-west2";
|
|
521
|
+
"us-west3": "us-west3";
|
|
522
|
+
"us-west4": "us-west4";
|
|
523
|
+
}>>>;
|
|
524
|
+
}, z.core.$strip>>;
|
|
525
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
526
|
+
aggressive: "aggressive";
|
|
527
|
+
conservative: "conservative";
|
|
528
|
+
}>>;
|
|
289
529
|
id: z.ZodString;
|
|
290
530
|
}, z.core.$strip>;
|
|
291
531
|
export declare const zFleet: z.ZodObject<{
|
|
292
532
|
limits: z.ZodOptional<z.ZodObject<{
|
|
293
|
-
cpu: z.ZodNumber
|
|
533
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
294
534
|
}, z.core.$strip>>;
|
|
295
535
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
296
536
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -298,17 +538,257 @@ export declare const zFleet: z.ZodObject<{
|
|
|
298
538
|
}, z.core.$strip>>;
|
|
299
539
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
300
540
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
301
|
-
apiKey: z.ZodString
|
|
541
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
302
542
|
}, z.core.$strip>>;
|
|
303
543
|
aws: z.ZodOptional<z.ZodObject<{
|
|
304
544
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
305
545
|
controllerRoleArn: z.ZodString;
|
|
306
546
|
}, z.core.$strip>>;
|
|
547
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
548
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
549
|
+
"on-demand": "on-demand";
|
|
550
|
+
spot: "spot";
|
|
551
|
+
}>>>;
|
|
552
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
553
|
+
amd64: "amd64";
|
|
554
|
+
arm64: "arm64";
|
|
555
|
+
}>>>;
|
|
556
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
557
|
+
p3: "p3";
|
|
558
|
+
cx: "cx";
|
|
559
|
+
h1: "h1";
|
|
560
|
+
h3: "h3";
|
|
561
|
+
a1: "a1";
|
|
562
|
+
a2: "a2";
|
|
563
|
+
a3: "a3";
|
|
564
|
+
a4: "a4";
|
|
565
|
+
c1: "c1";
|
|
566
|
+
c2: "c2";
|
|
567
|
+
c2d: "c2d";
|
|
568
|
+
c3: "c3";
|
|
569
|
+
c3d: "c3d";
|
|
570
|
+
c4: "c4";
|
|
571
|
+
c4a: "c4a";
|
|
572
|
+
c4d: "c4d";
|
|
573
|
+
c5: "c5";
|
|
574
|
+
c5a: "c5a";
|
|
575
|
+
c5ad: "c5ad";
|
|
576
|
+
c5d: "c5d";
|
|
577
|
+
c5n: "c5n";
|
|
578
|
+
c6a: "c6a";
|
|
579
|
+
c6g: "c6g";
|
|
580
|
+
c6gd: "c6gd";
|
|
581
|
+
c6gn: "c6gn";
|
|
582
|
+
c6i: "c6i";
|
|
583
|
+
c6id: "c6id";
|
|
584
|
+
c6in: "c6in";
|
|
585
|
+
c7a: "c7a";
|
|
586
|
+
c7g: "c7g";
|
|
587
|
+
c7gd: "c7gd";
|
|
588
|
+
c7gn: "c7gn";
|
|
589
|
+
c7i: "c7i";
|
|
590
|
+
"c7i-flex": "c7i-flex";
|
|
591
|
+
c8g: "c8g";
|
|
592
|
+
c8gd: "c8gd";
|
|
593
|
+
cax: "cax";
|
|
594
|
+
ccx: "ccx";
|
|
595
|
+
cpx: "cpx";
|
|
596
|
+
d2: "d2";
|
|
597
|
+
d3: "d3";
|
|
598
|
+
d3en: "d3en";
|
|
599
|
+
dl1: "dl1";
|
|
600
|
+
dl2q: "dl2q";
|
|
601
|
+
e2: "e2";
|
|
602
|
+
f1: "f1";
|
|
603
|
+
f2: "f2";
|
|
604
|
+
g1: "g1";
|
|
605
|
+
g2: "g2";
|
|
606
|
+
g4ad: "g4ad";
|
|
607
|
+
g4dn: "g4dn";
|
|
608
|
+
g5: "g5";
|
|
609
|
+
g5g: "g5g";
|
|
610
|
+
g6: "g6";
|
|
611
|
+
g6e: "g6e";
|
|
612
|
+
gr6: "gr6";
|
|
613
|
+
hpc6a: "hpc6a";
|
|
614
|
+
hpc6id: "hpc6id";
|
|
615
|
+
hpc7a: "hpc7a";
|
|
616
|
+
hpc7g: "hpc7g";
|
|
617
|
+
i2: "i2";
|
|
618
|
+
i3: "i3";
|
|
619
|
+
i3en: "i3en";
|
|
620
|
+
i4g: "i4g";
|
|
621
|
+
i4i: "i4i";
|
|
622
|
+
i7i: "i7i";
|
|
623
|
+
i7ie: "i7ie";
|
|
624
|
+
i8g: "i8g";
|
|
625
|
+
im4gn: "im4gn";
|
|
626
|
+
inf1: "inf1";
|
|
627
|
+
inf2: "inf2";
|
|
628
|
+
is4gen: "is4gen";
|
|
629
|
+
m1: "m1";
|
|
630
|
+
m2: "m2";
|
|
631
|
+
m3: "m3";
|
|
632
|
+
m4: "m4";
|
|
633
|
+
m5: "m5";
|
|
634
|
+
m5a: "m5a";
|
|
635
|
+
m5ad: "m5ad";
|
|
636
|
+
m5d: "m5d";
|
|
637
|
+
m5dn: "m5dn";
|
|
638
|
+
m5n: "m5n";
|
|
639
|
+
m5zn: "m5zn";
|
|
640
|
+
m6a: "m6a";
|
|
641
|
+
m6g: "m6g";
|
|
642
|
+
m6gd: "m6gd";
|
|
643
|
+
m6i: "m6i";
|
|
644
|
+
m6id: "m6id";
|
|
645
|
+
m6idn: "m6idn";
|
|
646
|
+
m6in: "m6in";
|
|
647
|
+
m7a: "m7a";
|
|
648
|
+
m7g: "m7g";
|
|
649
|
+
m7gd: "m7gd";
|
|
650
|
+
m7i: "m7i";
|
|
651
|
+
"m7i-flex": "m7i-flex";
|
|
652
|
+
m8g: "m8g";
|
|
653
|
+
m8gd: "m8gd";
|
|
654
|
+
n1: "n1";
|
|
655
|
+
n2: "n2";
|
|
656
|
+
n2d: "n2d";
|
|
657
|
+
n4: "n4";
|
|
658
|
+
p3dn: "p3dn";
|
|
659
|
+
p4d: "p4d";
|
|
660
|
+
p4de: "p4de";
|
|
661
|
+
p5: "p5";
|
|
662
|
+
p5e: "p5e";
|
|
663
|
+
p5en: "p5en";
|
|
664
|
+
"p6-b200": "p6-b200";
|
|
665
|
+
r3: "r3";
|
|
666
|
+
r4: "r4";
|
|
667
|
+
r5: "r5";
|
|
668
|
+
r5a: "r5a";
|
|
669
|
+
r5ad: "r5ad";
|
|
670
|
+
r5b: "r5b";
|
|
671
|
+
r5d: "r5d";
|
|
672
|
+
r5dn: "r5dn";
|
|
673
|
+
r5n: "r5n";
|
|
674
|
+
r6a: "r6a";
|
|
675
|
+
r6g: "r6g";
|
|
676
|
+
r6gd: "r6gd";
|
|
677
|
+
r6i: "r6i";
|
|
678
|
+
r6id: "r6id";
|
|
679
|
+
r6idn: "r6idn";
|
|
680
|
+
r6in: "r6in";
|
|
681
|
+
r7a: "r7a";
|
|
682
|
+
r7g: "r7g";
|
|
683
|
+
r7gd: "r7gd";
|
|
684
|
+
r7i: "r7i";
|
|
685
|
+
r7iz: "r7iz";
|
|
686
|
+
r8g: "r8g";
|
|
687
|
+
r8gd: "r8gd";
|
|
688
|
+
t2: "t2";
|
|
689
|
+
t2a: "t2a";
|
|
690
|
+
t2d: "t2d";
|
|
691
|
+
t3: "t3";
|
|
692
|
+
t3a: "t3a";
|
|
693
|
+
t4g: "t4g";
|
|
694
|
+
trn1: "trn1";
|
|
695
|
+
trn1n: "trn1n";
|
|
696
|
+
"u-3tb1": "u-3tb1";
|
|
697
|
+
"u-6tb1": "u-6tb1";
|
|
698
|
+
"u7i-12tb": "u7i-12tb";
|
|
699
|
+
"u7i-6tb": "u7i-6tb";
|
|
700
|
+
"u7i-8tb": "u7i-8tb";
|
|
701
|
+
"u7in-16tb": "u7in-16tb";
|
|
702
|
+
"u7in-24tb": "u7in-24tb";
|
|
703
|
+
"u7in-32tb": "u7in-32tb";
|
|
704
|
+
vt1: "vt1";
|
|
705
|
+
x1: "x1";
|
|
706
|
+
x1e: "x1e";
|
|
707
|
+
x2gd: "x2gd";
|
|
708
|
+
x2idn: "x2idn";
|
|
709
|
+
x2iedn: "x2iedn";
|
|
710
|
+
x2iezn: "x2iezn";
|
|
711
|
+
x4: "x4";
|
|
712
|
+
x8g: "x8g";
|
|
713
|
+
z1d: "z1d";
|
|
714
|
+
z3: "z3";
|
|
715
|
+
}>>>;
|
|
716
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
717
|
+
"africa-south1": "africa-south1";
|
|
718
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
719
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
720
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
721
|
+
"ap-south-1": "ap-south-1";
|
|
722
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
723
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
724
|
+
ash: "ash";
|
|
725
|
+
"asia-east1": "asia-east1";
|
|
726
|
+
"asia-east2": "asia-east2";
|
|
727
|
+
"asia-northeast1": "asia-northeast1";
|
|
728
|
+
"asia-northeast2": "asia-northeast2";
|
|
729
|
+
"asia-northeast3": "asia-northeast3";
|
|
730
|
+
"asia-south1": "asia-south1";
|
|
731
|
+
"asia-south2": "asia-south2";
|
|
732
|
+
"asia-southeast1": "asia-southeast1";
|
|
733
|
+
"asia-southeast2": "asia-southeast2";
|
|
734
|
+
"australia-southeast1": "australia-southeast1";
|
|
735
|
+
"australia-southeast2": "australia-southeast2";
|
|
736
|
+
"ca-central-1": "ca-central-1";
|
|
737
|
+
"eu-central-1": "eu-central-1";
|
|
738
|
+
"eu-central-2": "eu-central-2";
|
|
739
|
+
"eu-north-1": "eu-north-1";
|
|
740
|
+
"eu-west-1": "eu-west-1";
|
|
741
|
+
"eu-west-2": "eu-west-2";
|
|
742
|
+
"eu-west-3": "eu-west-3";
|
|
743
|
+
"europe-central2": "europe-central2";
|
|
744
|
+
"europe-north1": "europe-north1";
|
|
745
|
+
"europe-southwest1": "europe-southwest1";
|
|
746
|
+
"europe-west1": "europe-west1";
|
|
747
|
+
"europe-west10": "europe-west10";
|
|
748
|
+
"europe-west12": "europe-west12";
|
|
749
|
+
"europe-west2": "europe-west2";
|
|
750
|
+
"europe-west3": "europe-west3";
|
|
751
|
+
"europe-west4": "europe-west4";
|
|
752
|
+
"europe-west6": "europe-west6";
|
|
753
|
+
"europe-west8": "europe-west8";
|
|
754
|
+
"europe-west9": "europe-west9";
|
|
755
|
+
fsn1: "fsn1";
|
|
756
|
+
hel1: "hel1";
|
|
757
|
+
hil: "hil";
|
|
758
|
+
"me-central1": "me-central1";
|
|
759
|
+
"me-central2": "me-central2";
|
|
760
|
+
"me-west1": "me-west1";
|
|
761
|
+
nbg1: "nbg1";
|
|
762
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
763
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
764
|
+
"sa-east-1": "sa-east-1";
|
|
765
|
+
sin: "sin";
|
|
766
|
+
"southamerica-east1": "southamerica-east1";
|
|
767
|
+
"southamerica-west1": "southamerica-west1";
|
|
768
|
+
"us-central1": "us-central1";
|
|
769
|
+
"us-east-1": "us-east-1";
|
|
770
|
+
"us-east-2": "us-east-2";
|
|
771
|
+
"us-east1": "us-east1";
|
|
772
|
+
"us-east4": "us-east4";
|
|
773
|
+
"us-east5": "us-east5";
|
|
774
|
+
"us-south1": "us-south1";
|
|
775
|
+
"us-west-1": "us-west-1";
|
|
776
|
+
"us-west-2": "us-west-2";
|
|
777
|
+
"us-west1": "us-west1";
|
|
778
|
+
"us-west2": "us-west2";
|
|
779
|
+
"us-west3": "us-west3";
|
|
780
|
+
"us-west4": "us-west4";
|
|
781
|
+
}>>>;
|
|
782
|
+
}, z.core.$strip>>;
|
|
783
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
784
|
+
aggressive: "aggressive";
|
|
785
|
+
conservative: "conservative";
|
|
786
|
+
}>>;
|
|
307
787
|
id: z.ZodString;
|
|
308
788
|
}, z.core.$strip>;
|
|
309
789
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
310
790
|
limits: z.ZodOptional<z.ZodObject<{
|
|
311
|
-
cpu: z.ZodNumber
|
|
791
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
312
792
|
}, z.core.$strip>>;
|
|
313
793
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
314
794
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -316,12 +796,252 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
316
796
|
}, z.core.$strip>>;
|
|
317
797
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
318
798
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
319
|
-
apiKey: z.ZodString
|
|
799
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
320
800
|
}, z.core.$strip>>;
|
|
321
801
|
aws: z.ZodOptional<z.ZodObject<{
|
|
322
802
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
323
803
|
controllerRoleArn: z.ZodString;
|
|
324
804
|
}, z.core.$strip>>;
|
|
805
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
806
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
807
|
+
"on-demand": "on-demand";
|
|
808
|
+
spot: "spot";
|
|
809
|
+
}>>>;
|
|
810
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
811
|
+
amd64: "amd64";
|
|
812
|
+
arm64: "arm64";
|
|
813
|
+
}>>>;
|
|
814
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
815
|
+
p3: "p3";
|
|
816
|
+
cx: "cx";
|
|
817
|
+
h1: "h1";
|
|
818
|
+
h3: "h3";
|
|
819
|
+
a1: "a1";
|
|
820
|
+
a2: "a2";
|
|
821
|
+
a3: "a3";
|
|
822
|
+
a4: "a4";
|
|
823
|
+
c1: "c1";
|
|
824
|
+
c2: "c2";
|
|
825
|
+
c2d: "c2d";
|
|
826
|
+
c3: "c3";
|
|
827
|
+
c3d: "c3d";
|
|
828
|
+
c4: "c4";
|
|
829
|
+
c4a: "c4a";
|
|
830
|
+
c4d: "c4d";
|
|
831
|
+
c5: "c5";
|
|
832
|
+
c5a: "c5a";
|
|
833
|
+
c5ad: "c5ad";
|
|
834
|
+
c5d: "c5d";
|
|
835
|
+
c5n: "c5n";
|
|
836
|
+
c6a: "c6a";
|
|
837
|
+
c6g: "c6g";
|
|
838
|
+
c6gd: "c6gd";
|
|
839
|
+
c6gn: "c6gn";
|
|
840
|
+
c6i: "c6i";
|
|
841
|
+
c6id: "c6id";
|
|
842
|
+
c6in: "c6in";
|
|
843
|
+
c7a: "c7a";
|
|
844
|
+
c7g: "c7g";
|
|
845
|
+
c7gd: "c7gd";
|
|
846
|
+
c7gn: "c7gn";
|
|
847
|
+
c7i: "c7i";
|
|
848
|
+
"c7i-flex": "c7i-flex";
|
|
849
|
+
c8g: "c8g";
|
|
850
|
+
c8gd: "c8gd";
|
|
851
|
+
cax: "cax";
|
|
852
|
+
ccx: "ccx";
|
|
853
|
+
cpx: "cpx";
|
|
854
|
+
d2: "d2";
|
|
855
|
+
d3: "d3";
|
|
856
|
+
d3en: "d3en";
|
|
857
|
+
dl1: "dl1";
|
|
858
|
+
dl2q: "dl2q";
|
|
859
|
+
e2: "e2";
|
|
860
|
+
f1: "f1";
|
|
861
|
+
f2: "f2";
|
|
862
|
+
g1: "g1";
|
|
863
|
+
g2: "g2";
|
|
864
|
+
g4ad: "g4ad";
|
|
865
|
+
g4dn: "g4dn";
|
|
866
|
+
g5: "g5";
|
|
867
|
+
g5g: "g5g";
|
|
868
|
+
g6: "g6";
|
|
869
|
+
g6e: "g6e";
|
|
870
|
+
gr6: "gr6";
|
|
871
|
+
hpc6a: "hpc6a";
|
|
872
|
+
hpc6id: "hpc6id";
|
|
873
|
+
hpc7a: "hpc7a";
|
|
874
|
+
hpc7g: "hpc7g";
|
|
875
|
+
i2: "i2";
|
|
876
|
+
i3: "i3";
|
|
877
|
+
i3en: "i3en";
|
|
878
|
+
i4g: "i4g";
|
|
879
|
+
i4i: "i4i";
|
|
880
|
+
i7i: "i7i";
|
|
881
|
+
i7ie: "i7ie";
|
|
882
|
+
i8g: "i8g";
|
|
883
|
+
im4gn: "im4gn";
|
|
884
|
+
inf1: "inf1";
|
|
885
|
+
inf2: "inf2";
|
|
886
|
+
is4gen: "is4gen";
|
|
887
|
+
m1: "m1";
|
|
888
|
+
m2: "m2";
|
|
889
|
+
m3: "m3";
|
|
890
|
+
m4: "m4";
|
|
891
|
+
m5: "m5";
|
|
892
|
+
m5a: "m5a";
|
|
893
|
+
m5ad: "m5ad";
|
|
894
|
+
m5d: "m5d";
|
|
895
|
+
m5dn: "m5dn";
|
|
896
|
+
m5n: "m5n";
|
|
897
|
+
m5zn: "m5zn";
|
|
898
|
+
m6a: "m6a";
|
|
899
|
+
m6g: "m6g";
|
|
900
|
+
m6gd: "m6gd";
|
|
901
|
+
m6i: "m6i";
|
|
902
|
+
m6id: "m6id";
|
|
903
|
+
m6idn: "m6idn";
|
|
904
|
+
m6in: "m6in";
|
|
905
|
+
m7a: "m7a";
|
|
906
|
+
m7g: "m7g";
|
|
907
|
+
m7gd: "m7gd";
|
|
908
|
+
m7i: "m7i";
|
|
909
|
+
"m7i-flex": "m7i-flex";
|
|
910
|
+
m8g: "m8g";
|
|
911
|
+
m8gd: "m8gd";
|
|
912
|
+
n1: "n1";
|
|
913
|
+
n2: "n2";
|
|
914
|
+
n2d: "n2d";
|
|
915
|
+
n4: "n4";
|
|
916
|
+
p3dn: "p3dn";
|
|
917
|
+
p4d: "p4d";
|
|
918
|
+
p4de: "p4de";
|
|
919
|
+
p5: "p5";
|
|
920
|
+
p5e: "p5e";
|
|
921
|
+
p5en: "p5en";
|
|
922
|
+
"p6-b200": "p6-b200";
|
|
923
|
+
r3: "r3";
|
|
924
|
+
r4: "r4";
|
|
925
|
+
r5: "r5";
|
|
926
|
+
r5a: "r5a";
|
|
927
|
+
r5ad: "r5ad";
|
|
928
|
+
r5b: "r5b";
|
|
929
|
+
r5d: "r5d";
|
|
930
|
+
r5dn: "r5dn";
|
|
931
|
+
r5n: "r5n";
|
|
932
|
+
r6a: "r6a";
|
|
933
|
+
r6g: "r6g";
|
|
934
|
+
r6gd: "r6gd";
|
|
935
|
+
r6i: "r6i";
|
|
936
|
+
r6id: "r6id";
|
|
937
|
+
r6idn: "r6idn";
|
|
938
|
+
r6in: "r6in";
|
|
939
|
+
r7a: "r7a";
|
|
940
|
+
r7g: "r7g";
|
|
941
|
+
r7gd: "r7gd";
|
|
942
|
+
r7i: "r7i";
|
|
943
|
+
r7iz: "r7iz";
|
|
944
|
+
r8g: "r8g";
|
|
945
|
+
r8gd: "r8gd";
|
|
946
|
+
t2: "t2";
|
|
947
|
+
t2a: "t2a";
|
|
948
|
+
t2d: "t2d";
|
|
949
|
+
t3: "t3";
|
|
950
|
+
t3a: "t3a";
|
|
951
|
+
t4g: "t4g";
|
|
952
|
+
trn1: "trn1";
|
|
953
|
+
trn1n: "trn1n";
|
|
954
|
+
"u-3tb1": "u-3tb1";
|
|
955
|
+
"u-6tb1": "u-6tb1";
|
|
956
|
+
"u7i-12tb": "u7i-12tb";
|
|
957
|
+
"u7i-6tb": "u7i-6tb";
|
|
958
|
+
"u7i-8tb": "u7i-8tb";
|
|
959
|
+
"u7in-16tb": "u7in-16tb";
|
|
960
|
+
"u7in-24tb": "u7in-24tb";
|
|
961
|
+
"u7in-32tb": "u7in-32tb";
|
|
962
|
+
vt1: "vt1";
|
|
963
|
+
x1: "x1";
|
|
964
|
+
x1e: "x1e";
|
|
965
|
+
x2gd: "x2gd";
|
|
966
|
+
x2idn: "x2idn";
|
|
967
|
+
x2iedn: "x2iedn";
|
|
968
|
+
x2iezn: "x2iezn";
|
|
969
|
+
x4: "x4";
|
|
970
|
+
x8g: "x8g";
|
|
971
|
+
z1d: "z1d";
|
|
972
|
+
z3: "z3";
|
|
973
|
+
}>>>;
|
|
974
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
975
|
+
"africa-south1": "africa-south1";
|
|
976
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
977
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
978
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
979
|
+
"ap-south-1": "ap-south-1";
|
|
980
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
981
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
982
|
+
ash: "ash";
|
|
983
|
+
"asia-east1": "asia-east1";
|
|
984
|
+
"asia-east2": "asia-east2";
|
|
985
|
+
"asia-northeast1": "asia-northeast1";
|
|
986
|
+
"asia-northeast2": "asia-northeast2";
|
|
987
|
+
"asia-northeast3": "asia-northeast3";
|
|
988
|
+
"asia-south1": "asia-south1";
|
|
989
|
+
"asia-south2": "asia-south2";
|
|
990
|
+
"asia-southeast1": "asia-southeast1";
|
|
991
|
+
"asia-southeast2": "asia-southeast2";
|
|
992
|
+
"australia-southeast1": "australia-southeast1";
|
|
993
|
+
"australia-southeast2": "australia-southeast2";
|
|
994
|
+
"ca-central-1": "ca-central-1";
|
|
995
|
+
"eu-central-1": "eu-central-1";
|
|
996
|
+
"eu-central-2": "eu-central-2";
|
|
997
|
+
"eu-north-1": "eu-north-1";
|
|
998
|
+
"eu-west-1": "eu-west-1";
|
|
999
|
+
"eu-west-2": "eu-west-2";
|
|
1000
|
+
"eu-west-3": "eu-west-3";
|
|
1001
|
+
"europe-central2": "europe-central2";
|
|
1002
|
+
"europe-north1": "europe-north1";
|
|
1003
|
+
"europe-southwest1": "europe-southwest1";
|
|
1004
|
+
"europe-west1": "europe-west1";
|
|
1005
|
+
"europe-west10": "europe-west10";
|
|
1006
|
+
"europe-west12": "europe-west12";
|
|
1007
|
+
"europe-west2": "europe-west2";
|
|
1008
|
+
"europe-west3": "europe-west3";
|
|
1009
|
+
"europe-west4": "europe-west4";
|
|
1010
|
+
"europe-west6": "europe-west6";
|
|
1011
|
+
"europe-west8": "europe-west8";
|
|
1012
|
+
"europe-west9": "europe-west9";
|
|
1013
|
+
fsn1: "fsn1";
|
|
1014
|
+
hel1: "hel1";
|
|
1015
|
+
hil: "hil";
|
|
1016
|
+
"me-central1": "me-central1";
|
|
1017
|
+
"me-central2": "me-central2";
|
|
1018
|
+
"me-west1": "me-west1";
|
|
1019
|
+
nbg1: "nbg1";
|
|
1020
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
1021
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
1022
|
+
"sa-east-1": "sa-east-1";
|
|
1023
|
+
sin: "sin";
|
|
1024
|
+
"southamerica-east1": "southamerica-east1";
|
|
1025
|
+
"southamerica-west1": "southamerica-west1";
|
|
1026
|
+
"us-central1": "us-central1";
|
|
1027
|
+
"us-east-1": "us-east-1";
|
|
1028
|
+
"us-east-2": "us-east-2";
|
|
1029
|
+
"us-east1": "us-east1";
|
|
1030
|
+
"us-east4": "us-east4";
|
|
1031
|
+
"us-east5": "us-east5";
|
|
1032
|
+
"us-south1": "us-south1";
|
|
1033
|
+
"us-west-1": "us-west-1";
|
|
1034
|
+
"us-west-2": "us-west-2";
|
|
1035
|
+
"us-west1": "us-west1";
|
|
1036
|
+
"us-west2": "us-west2";
|
|
1037
|
+
"us-west3": "us-west3";
|
|
1038
|
+
"us-west4": "us-west4";
|
|
1039
|
+
}>>>;
|
|
1040
|
+
}, z.core.$strip>>;
|
|
1041
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
1042
|
+
aggressive: "aggressive";
|
|
1043
|
+
conservative: "conservative";
|
|
1044
|
+
}>>;
|
|
325
1045
|
}, z.core.$strip>;
|
|
326
1046
|
export declare const zInvite: z.ZodObject<{
|
|
327
1047
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -390,8 +1110,6 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
390
1110
|
id: z.ZodString;
|
|
391
1111
|
label: z.ZodString;
|
|
392
1112
|
}, z.core.$strip>>;
|
|
393
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
394
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
395
1113
|
cfcr_storage_gb: z.ZodInt;
|
|
396
1114
|
}, z.core.$strip>;
|
|
397
1115
|
status: z.ZodEnum<{
|
|
@@ -433,8 +1151,6 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
433
1151
|
id: z.ZodString;
|
|
434
1152
|
label: z.ZodString;
|
|
435
1153
|
}, z.core.$strip>>;
|
|
436
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
437
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
438
1154
|
cfcr_storage_gb: z.ZodInt;
|
|
439
1155
|
}, z.core.$strip>;
|
|
440
1156
|
export declare const zRegistryRepository: z.ZodObject<{
|
|
@@ -483,6 +1199,111 @@ export declare const zRegistryTag: z.ZodObject<{
|
|
|
483
1199
|
repository: z.ZodString;
|
|
484
1200
|
uri: z.ZodString;
|
|
485
1201
|
}, z.core.$strip>;
|
|
1202
|
+
export declare const zTicketAttachment: z.ZodObject<{
|
|
1203
|
+
id: z.ZodString;
|
|
1204
|
+
filename: z.ZodString;
|
|
1205
|
+
content_type: z.ZodString;
|
|
1206
|
+
size: z.ZodInt;
|
|
1207
|
+
}, z.core.$strip>;
|
|
1208
|
+
export declare const zTicketCreateInput: z.ZodObject<{
|
|
1209
|
+
category: z.ZodEnum<{
|
|
1210
|
+
billing: "billing";
|
|
1211
|
+
technical: "technical";
|
|
1212
|
+
general: "general";
|
|
1213
|
+
}>;
|
|
1214
|
+
body: z.ZodString;
|
|
1215
|
+
properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1216
|
+
}, z.core.$strip>;
|
|
1217
|
+
export declare const zTicketListResponse: z.ZodObject<{
|
|
1218
|
+
items: z.ZodArray<z.ZodObject<{
|
|
1219
|
+
id: z.ZodString;
|
|
1220
|
+
status: z.ZodEnum<{
|
|
1221
|
+
closed: "closed";
|
|
1222
|
+
waiting_on_us: "waiting_on_us";
|
|
1223
|
+
waiting_on_user: "waiting_on_user";
|
|
1224
|
+
}>;
|
|
1225
|
+
category: z.ZodEnum<{
|
|
1226
|
+
billing: "billing";
|
|
1227
|
+
technical: "technical";
|
|
1228
|
+
general: "general";
|
|
1229
|
+
}>;
|
|
1230
|
+
summary: z.ZodString;
|
|
1231
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1232
|
+
date_created: z.ZodISODateTime;
|
|
1233
|
+
date_updated: z.ZodISODateTime;
|
|
1234
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1235
|
+
id: z.ZodString;
|
|
1236
|
+
type: z.ZodEnum<{
|
|
1237
|
+
customer_reply: "customer_reply";
|
|
1238
|
+
agent_reply: "agent_reply";
|
|
1239
|
+
}>;
|
|
1240
|
+
body: z.ZodString;
|
|
1241
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1242
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1244
|
+
id: z.ZodString;
|
|
1245
|
+
filename: z.ZodString;
|
|
1246
|
+
content_type: z.ZodString;
|
|
1247
|
+
size: z.ZodInt;
|
|
1248
|
+
}, z.core.$strip>>>;
|
|
1249
|
+
date_created: z.ZodISODateTime;
|
|
1250
|
+
}, z.core.$strip>>>;
|
|
1251
|
+
}, z.core.$strip>>;
|
|
1252
|
+
}, z.core.$strip>;
|
|
1253
|
+
export declare const zTicketMessageInput: z.ZodObject<{
|
|
1254
|
+
body: z.ZodString;
|
|
1255
|
+
}, z.core.$strip>;
|
|
1256
|
+
export declare const zTicketMessage: z.ZodObject<{
|
|
1257
|
+
id: z.ZodString;
|
|
1258
|
+
type: z.ZodEnum<{
|
|
1259
|
+
customer_reply: "customer_reply";
|
|
1260
|
+
agent_reply: "agent_reply";
|
|
1261
|
+
}>;
|
|
1262
|
+
body: z.ZodString;
|
|
1263
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1264
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1265
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1266
|
+
id: z.ZodString;
|
|
1267
|
+
filename: z.ZodString;
|
|
1268
|
+
content_type: z.ZodString;
|
|
1269
|
+
size: z.ZodInt;
|
|
1270
|
+
}, z.core.$strip>>>;
|
|
1271
|
+
date_created: z.ZodISODateTime;
|
|
1272
|
+
}, z.core.$strip>;
|
|
1273
|
+
export declare const zTicket: z.ZodObject<{
|
|
1274
|
+
id: z.ZodString;
|
|
1275
|
+
status: z.ZodEnum<{
|
|
1276
|
+
closed: "closed";
|
|
1277
|
+
waiting_on_us: "waiting_on_us";
|
|
1278
|
+
waiting_on_user: "waiting_on_user";
|
|
1279
|
+
}>;
|
|
1280
|
+
category: z.ZodEnum<{
|
|
1281
|
+
billing: "billing";
|
|
1282
|
+
technical: "technical";
|
|
1283
|
+
general: "general";
|
|
1284
|
+
}>;
|
|
1285
|
+
summary: z.ZodString;
|
|
1286
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
1287
|
+
date_created: z.ZodISODateTime;
|
|
1288
|
+
date_updated: z.ZodISODateTime;
|
|
1289
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1290
|
+
id: z.ZodString;
|
|
1291
|
+
type: z.ZodEnum<{
|
|
1292
|
+
customer_reply: "customer_reply";
|
|
1293
|
+
agent_reply: "agent_reply";
|
|
1294
|
+
}>;
|
|
1295
|
+
body: z.ZodString;
|
|
1296
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
1297
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
1298
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1299
|
+
id: z.ZodString;
|
|
1300
|
+
filename: z.ZodString;
|
|
1301
|
+
content_type: z.ZodString;
|
|
1302
|
+
size: z.ZodInt;
|
|
1303
|
+
}, z.core.$strip>>>;
|
|
1304
|
+
date_created: z.ZodISODateTime;
|
|
1305
|
+
}, z.core.$strip>>>;
|
|
1306
|
+
}, z.core.$strip>;
|
|
486
1307
|
export declare const zTokenCreateInput: z.ZodObject<{
|
|
487
1308
|
name: z.ZodString;
|
|
488
1309
|
role: z.ZodEnum<{
|
|
@@ -576,16 +1397,12 @@ export declare const zUserUpdateInput: z.ZodObject<{
|
|
|
576
1397
|
inactive: "inactive";
|
|
577
1398
|
}>>;
|
|
578
1399
|
}, z.core.$strip>;
|
|
579
|
-
export declare const
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
daily: "daily";
|
|
586
|
-
monthly: "monthly";
|
|
587
|
-
}>>;
|
|
588
|
-
}, z.core.$strip>>;
|
|
1400
|
+
export declare const zGetUsageQuery: z.ZodObject<{
|
|
1401
|
+
granularity: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1402
|
+
hourly: "hourly";
|
|
1403
|
+
daily: "daily";
|
|
1404
|
+
monthly: "monthly";
|
|
1405
|
+
}>>>;
|
|
589
1406
|
}, z.core.$strip>;
|
|
590
1407
|
/**
|
|
591
1408
|
* Usage data with facets for filtering
|
|
@@ -604,11 +1421,6 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
604
1421
|
product: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
605
1422
|
}, z.core.$strip>;
|
|
606
1423
|
}, z.core.$strip>;
|
|
607
|
-
export declare const zGetPaymentMethodData: z.ZodObject<{
|
|
608
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
609
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
610
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
611
|
-
}, z.core.$strip>;
|
|
612
1424
|
/**
|
|
613
1425
|
* Redacted payment card information.
|
|
614
1426
|
*/
|
|
@@ -633,11 +1445,6 @@ export declare const zGetPaymentMethodResponse: z.ZodObject<{
|
|
|
633
1445
|
visa: "visa";
|
|
634
1446
|
}>;
|
|
635
1447
|
}, z.core.$strip>;
|
|
636
|
-
export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
637
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
638
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
639
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
640
|
-
}, z.core.$strip>;
|
|
641
1448
|
/**
|
|
642
1449
|
* 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.
|
|
643
1450
|
*
|
|
@@ -645,11 +1452,6 @@ export declare const zGetPaymentMethodSecretData: z.ZodObject<{
|
|
|
645
1452
|
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
646
1453
|
id: z.ZodOptional<z.ZodString>;
|
|
647
1454
|
}, z.core.$strip>;
|
|
648
|
-
export declare const zListInvoicesData: z.ZodObject<{
|
|
649
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
650
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
651
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
652
|
-
}, z.core.$strip>;
|
|
653
1455
|
/**
|
|
654
1456
|
* An array of usage records.
|
|
655
1457
|
*/
|
|
@@ -664,11 +1466,6 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
664
1466
|
period_end: z.ZodISODateTime;
|
|
665
1467
|
invoice_pdf: z.ZodOptional<z.ZodString>;
|
|
666
1468
|
}, z.core.$strip>>;
|
|
667
|
-
export declare const zGetContactData: z.ZodObject<{
|
|
668
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
669
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
670
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
671
|
-
}, z.core.$strip>;
|
|
672
1469
|
/**
|
|
673
1470
|
* Returns a single object containing organization contact and billing address details.
|
|
674
1471
|
*/
|
|
@@ -815,152 +1612,148 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
815
1612
|
zw_tin: "zw_tin";
|
|
816
1613
|
}>>;
|
|
817
1614
|
}, z.core.$strip>;
|
|
818
|
-
export declare const
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
}>>;
|
|
961
|
-
}, z.core.$strip>;
|
|
962
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
963
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1615
|
+
export declare const zUpdateContactBody: z.ZodObject<{
|
|
1616
|
+
company: z.ZodOptional<z.ZodString>;
|
|
1617
|
+
address1: z.ZodOptional<z.ZodString>;
|
|
1618
|
+
address2: z.ZodOptional<z.ZodString>;
|
|
1619
|
+
postalCode: z.ZodOptional<z.ZodString>;
|
|
1620
|
+
city: z.ZodOptional<z.ZodString>;
|
|
1621
|
+
state: z.ZodOptional<z.ZodString>;
|
|
1622
|
+
country: z.ZodOptional<z.ZodString>;
|
|
1623
|
+
phone: z.ZodOptional<z.ZodString>;
|
|
1624
|
+
email: z.ZodEmail;
|
|
1625
|
+
individual_name: z.ZodString;
|
|
1626
|
+
tax_id: z.ZodOptional<z.ZodString>;
|
|
1627
|
+
tax_id_type: z.ZodOptional<z.ZodEnum<{
|
|
1628
|
+
"": "";
|
|
1629
|
+
ad_nrt: "ad_nrt";
|
|
1630
|
+
ae_trn: "ae_trn";
|
|
1631
|
+
al_tin: "al_tin";
|
|
1632
|
+
am_tin: "am_tin";
|
|
1633
|
+
ao_tin: "ao_tin";
|
|
1634
|
+
ar_cuit: "ar_cuit";
|
|
1635
|
+
at_vat: "at_vat";
|
|
1636
|
+
au_abn: "au_abn";
|
|
1637
|
+
au_arn: "au_arn";
|
|
1638
|
+
ba_tin: "ba_tin";
|
|
1639
|
+
bb_tin: "bb_tin";
|
|
1640
|
+
be_vat: "be_vat";
|
|
1641
|
+
bg_uic: "bg_uic";
|
|
1642
|
+
bg_vat: "bg_vat";
|
|
1643
|
+
bh_vat: "bh_vat";
|
|
1644
|
+
bo_tin: "bo_tin";
|
|
1645
|
+
br_cnpj: "br_cnpj";
|
|
1646
|
+
br_cpf: "br_cpf";
|
|
1647
|
+
bs_tin: "bs_tin";
|
|
1648
|
+
by_tin: "by_tin";
|
|
1649
|
+
ca_bn: "ca_bn";
|
|
1650
|
+
ca_gst_hst: "ca_gst_hst";
|
|
1651
|
+
ca_pst_bc: "ca_pst_bc";
|
|
1652
|
+
ca_pst_mb: "ca_pst_mb";
|
|
1653
|
+
ca_pst_sk: "ca_pst_sk";
|
|
1654
|
+
ca_qst: "ca_qst";
|
|
1655
|
+
cd_nif: "cd_nif";
|
|
1656
|
+
ch_uid: "ch_uid";
|
|
1657
|
+
ch_vat: "ch_vat";
|
|
1658
|
+
cl_tin: "cl_tin";
|
|
1659
|
+
cn_tin: "cn_tin";
|
|
1660
|
+
co_nit: "co_nit";
|
|
1661
|
+
cr_tin: "cr_tin";
|
|
1662
|
+
cy_vat: "cy_vat";
|
|
1663
|
+
cz_vat: "cz_vat";
|
|
1664
|
+
de_stn: "de_stn";
|
|
1665
|
+
de_vat: "de_vat";
|
|
1666
|
+
dk_vat: "dk_vat";
|
|
1667
|
+
do_rcn: "do_rcn";
|
|
1668
|
+
ec_ruc: "ec_ruc";
|
|
1669
|
+
ee_vat: "ee_vat";
|
|
1670
|
+
eg_tin: "eg_tin";
|
|
1671
|
+
es_cif: "es_cif";
|
|
1672
|
+
es_vat: "es_vat";
|
|
1673
|
+
eu_oss_vat: "eu_oss_vat";
|
|
1674
|
+
fi_vat: "fi_vat";
|
|
1675
|
+
fr_vat: "fr_vat";
|
|
1676
|
+
gb_vat: "gb_vat";
|
|
1677
|
+
ge_vat: "ge_vat";
|
|
1678
|
+
gn_nif: "gn_nif";
|
|
1679
|
+
gr_vat: "gr_vat";
|
|
1680
|
+
hk_br: "hk_br";
|
|
1681
|
+
hr_oib: "hr_oib";
|
|
1682
|
+
hr_vat: "hr_vat";
|
|
1683
|
+
hu_tin: "hu_tin";
|
|
1684
|
+
hu_vat: "hu_vat";
|
|
1685
|
+
id_npwp: "id_npwp";
|
|
1686
|
+
ie_vat: "ie_vat";
|
|
1687
|
+
il_vat: "il_vat";
|
|
1688
|
+
in_gst: "in_gst";
|
|
1689
|
+
is_vat: "is_vat";
|
|
1690
|
+
it_vat: "it_vat";
|
|
1691
|
+
jp_cn: "jp_cn";
|
|
1692
|
+
jp_rn: "jp_rn";
|
|
1693
|
+
jp_trn: "jp_trn";
|
|
1694
|
+
ke_pin: "ke_pin";
|
|
1695
|
+
kh_tin: "kh_tin";
|
|
1696
|
+
kr_brn: "kr_brn";
|
|
1697
|
+
kz_bin: "kz_bin";
|
|
1698
|
+
li_uid: "li_uid";
|
|
1699
|
+
li_vat: "li_vat";
|
|
1700
|
+
lt_vat: "lt_vat";
|
|
1701
|
+
lu_vat: "lu_vat";
|
|
1702
|
+
lv_vat: "lv_vat";
|
|
1703
|
+
ma_vat: "ma_vat";
|
|
1704
|
+
md_vat: "md_vat";
|
|
1705
|
+
me_pib: "me_pib";
|
|
1706
|
+
mk_vat: "mk_vat";
|
|
1707
|
+
mr_nif: "mr_nif";
|
|
1708
|
+
mt_vat: "mt_vat";
|
|
1709
|
+
mx_rfc: "mx_rfc";
|
|
1710
|
+
my_frp: "my_frp";
|
|
1711
|
+
my_itn: "my_itn";
|
|
1712
|
+
my_sst: "my_sst";
|
|
1713
|
+
ng_tin: "ng_tin";
|
|
1714
|
+
nl_vat: "nl_vat";
|
|
1715
|
+
no_vat: "no_vat";
|
|
1716
|
+
no_voec: "no_voec";
|
|
1717
|
+
np_pan: "np_pan";
|
|
1718
|
+
nz_gst: "nz_gst";
|
|
1719
|
+
om_vat: "om_vat";
|
|
1720
|
+
pe_ruc: "pe_ruc";
|
|
1721
|
+
ph_tin: "ph_tin";
|
|
1722
|
+
pl_vat: "pl_vat";
|
|
1723
|
+
pt_vat: "pt_vat";
|
|
1724
|
+
ro_tin: "ro_tin";
|
|
1725
|
+
ro_vat: "ro_vat";
|
|
1726
|
+
rs_pib: "rs_pib";
|
|
1727
|
+
ru_inn: "ru_inn";
|
|
1728
|
+
ru_kpp: "ru_kpp";
|
|
1729
|
+
sa_vat: "sa_vat";
|
|
1730
|
+
se_vat: "se_vat";
|
|
1731
|
+
sg_gst: "sg_gst";
|
|
1732
|
+
sg_uen: "sg_uen";
|
|
1733
|
+
si_tin: "si_tin";
|
|
1734
|
+
si_vat: "si_vat";
|
|
1735
|
+
sk_vat: "sk_vat";
|
|
1736
|
+
sn_ninea: "sn_ninea";
|
|
1737
|
+
sr_fin: "sr_fin";
|
|
1738
|
+
sv_nit: "sv_nit";
|
|
1739
|
+
th_vat: "th_vat";
|
|
1740
|
+
tj_tin: "tj_tin";
|
|
1741
|
+
tr_tin: "tr_tin";
|
|
1742
|
+
tw_vat: "tw_vat";
|
|
1743
|
+
tz_vat: "tz_vat";
|
|
1744
|
+
ua_vat: "ua_vat";
|
|
1745
|
+
ug_tin: "ug_tin";
|
|
1746
|
+
us_ein: "us_ein";
|
|
1747
|
+
uy_ruc: "uy_ruc";
|
|
1748
|
+
uz_tin: "uz_tin";
|
|
1749
|
+
uz_vat: "uz_vat";
|
|
1750
|
+
ve_rif: "ve_rif";
|
|
1751
|
+
vn_tin: "vn_tin";
|
|
1752
|
+
xi_vat: "xi_vat";
|
|
1753
|
+
za_vat: "za_vat";
|
|
1754
|
+
zm_tin: "zm_tin";
|
|
1755
|
+
zw_tin: "zw_tin";
|
|
1756
|
+
}>>;
|
|
964
1757
|
}, z.core.$strip>;
|
|
965
1758
|
/**
|
|
966
1759
|
* Successfully updated. Returns updated organization details.
|
|
@@ -1108,11 +1901,6 @@ export declare const zUpdateContactResponse: z.ZodObject<{
|
|
|
1108
1901
|
zw_tin: "zw_tin";
|
|
1109
1902
|
}>>;
|
|
1110
1903
|
}, z.core.$strip>;
|
|
1111
|
-
export declare const zGetCreditsData: z.ZodObject<{
|
|
1112
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1113
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1114
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1115
|
-
}, z.core.$strip>;
|
|
1116
1904
|
/**
|
|
1117
1905
|
* An array of the applied promotional credits records.
|
|
1118
1906
|
*/
|
|
@@ -1129,19 +1917,11 @@ export declare const zGetCreditsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1129
1917
|
value_total: z.ZodNumber;
|
|
1130
1918
|
value_remaining: z.ZodOptional<z.ZodNumber>;
|
|
1131
1919
|
}, z.core.$strip>>;
|
|
1132
|
-
export declare const
|
|
1133
|
-
|
|
1134
|
-
code: z.ZodOptional<z.ZodString>;
|
|
1135
|
-
}, z.core.$strip>;
|
|
1136
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1137
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1920
|
+
export declare const zRedeemCreditsBody: z.ZodObject<{
|
|
1921
|
+
code: z.ZodOptional<z.ZodString>;
|
|
1138
1922
|
}, z.core.$strip>;
|
|
1139
|
-
export declare const
|
|
1140
|
-
|
|
1141
|
-
path: z.ZodObject<{
|
|
1142
|
-
cluster_id: z.ZodString;
|
|
1143
|
-
}, z.core.$strip>;
|
|
1144
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1923
|
+
export declare const zListChartsPath: z.ZodObject<{
|
|
1924
|
+
cluster_id: z.ZodString;
|
|
1145
1925
|
}, z.core.$strip>;
|
|
1146
1926
|
/**
|
|
1147
1927
|
* An array of charts
|
|
@@ -1173,42 +1953,31 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1173
1953
|
updated_at: z.ZodString;
|
|
1174
1954
|
ready: z.ZodBoolean;
|
|
1175
1955
|
}, z.core.$strip>>;
|
|
1176
|
-
export declare const
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
cluster_id: z.ZodString;
|
|
1186
|
-
}, z.core.$strip>;
|
|
1187
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1956
|
+
export declare const zCreateChartBody: z.ZodObject<{
|
|
1957
|
+
values: z.ZodString;
|
|
1958
|
+
version_channel: z.ZodString;
|
|
1959
|
+
name: z.ZodString;
|
|
1960
|
+
namespace: z.ZodString;
|
|
1961
|
+
chart: z.ZodString;
|
|
1962
|
+
}, z.core.$strip>;
|
|
1963
|
+
export declare const zCreateChartPath: z.ZodObject<{
|
|
1964
|
+
cluster_id: z.ZodString;
|
|
1188
1965
|
}, z.core.$strip>;
|
|
1189
1966
|
/**
|
|
1190
1967
|
* Successfully created. Returns created Chart ID.
|
|
1191
1968
|
*/
|
|
1192
1969
|
export declare const zCreateChartResponse: z.ZodString;
|
|
1193
|
-
export declare const
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
cluster_id: z.ZodString;
|
|
1197
|
-
chart_name: z.ZodString;
|
|
1198
|
-
}, z.core.$strip>;
|
|
1199
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1970
|
+
export declare const zDeleteChartPath: z.ZodObject<{
|
|
1971
|
+
cluster_id: z.ZodString;
|
|
1972
|
+
chart_name: z.ZodString;
|
|
1200
1973
|
}, z.core.$strip>;
|
|
1201
1974
|
/**
|
|
1202
1975
|
* Successfully deleted.
|
|
1203
1976
|
*/
|
|
1204
1977
|
export declare const zDeleteChartResponse: z.ZodString;
|
|
1205
|
-
export declare const
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
cluster_id: z.ZodString;
|
|
1209
|
-
chart_name: z.ZodString;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1978
|
+
export declare const zGetChartPath: z.ZodObject<{
|
|
1979
|
+
cluster_id: z.ZodString;
|
|
1980
|
+
chart_name: z.ZodString;
|
|
1212
1981
|
}, z.core.$strip>;
|
|
1213
1982
|
/**
|
|
1214
1983
|
* Returns a single object containing chart details.
|
|
@@ -1240,34 +2009,27 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1240
2009
|
updated_at: z.ZodString;
|
|
1241
2010
|
ready: z.ZodBoolean;
|
|
1242
2011
|
}, z.core.$strip>;
|
|
1243
|
-
export declare const
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
chart_name: z.ZodString;
|
|
1251
|
-
}, z.core.$strip>;
|
|
1252
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2012
|
+
export declare const zUpdateChartBody: z.ZodObject<{
|
|
2013
|
+
values: z.ZodString;
|
|
2014
|
+
version_channel: z.ZodString;
|
|
2015
|
+
}, z.core.$strip>;
|
|
2016
|
+
export declare const zUpdateChartPath: z.ZodObject<{
|
|
2017
|
+
cluster_id: z.ZodString;
|
|
2018
|
+
chart_name: z.ZodString;
|
|
1253
2019
|
}, z.core.$strip>;
|
|
1254
2020
|
/**
|
|
1255
2021
|
* Successfully updated.
|
|
1256
2022
|
*/
|
|
1257
2023
|
export declare const zUpdateChartResponse: z.ZodString;
|
|
1258
|
-
export declare const
|
|
1259
|
-
|
|
1260
|
-
path: z.ZodObject<{
|
|
1261
|
-
cluster_id: z.ZodString;
|
|
1262
|
-
}, z.core.$strip>;
|
|
1263
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2024
|
+
export declare const zListFleetsPath: z.ZodObject<{
|
|
2025
|
+
cluster_id: z.ZodString;
|
|
1264
2026
|
}, z.core.$strip>;
|
|
1265
2027
|
/**
|
|
1266
2028
|
* An array of fleets
|
|
1267
2029
|
*/
|
|
1268
2030
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
1269
2031
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1270
|
-
cpu: z.ZodNumber
|
|
2032
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
1271
2033
|
}, z.core.$strip>>;
|
|
1272
2034
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1273
2035
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1275,68 +2037,537 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1275
2037
|
}, z.core.$strip>>;
|
|
1276
2038
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1277
2039
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1278
|
-
apiKey: z.ZodString
|
|
2040
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1279
2041
|
}, z.core.$strip>>;
|
|
1280
2042
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1281
2043
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1282
2044
|
controllerRoleArn: z.ZodString;
|
|
1283
2045
|
}, z.core.$strip>>;
|
|
2046
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2047
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2048
|
+
"on-demand": "on-demand";
|
|
2049
|
+
spot: "spot";
|
|
2050
|
+
}>>>;
|
|
2051
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2052
|
+
amd64: "amd64";
|
|
2053
|
+
arm64: "arm64";
|
|
2054
|
+
}>>>;
|
|
2055
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2056
|
+
p3: "p3";
|
|
2057
|
+
cx: "cx";
|
|
2058
|
+
h1: "h1";
|
|
2059
|
+
h3: "h3";
|
|
2060
|
+
a1: "a1";
|
|
2061
|
+
a2: "a2";
|
|
2062
|
+
a3: "a3";
|
|
2063
|
+
a4: "a4";
|
|
2064
|
+
c1: "c1";
|
|
2065
|
+
c2: "c2";
|
|
2066
|
+
c2d: "c2d";
|
|
2067
|
+
c3: "c3";
|
|
2068
|
+
c3d: "c3d";
|
|
2069
|
+
c4: "c4";
|
|
2070
|
+
c4a: "c4a";
|
|
2071
|
+
c4d: "c4d";
|
|
2072
|
+
c5: "c5";
|
|
2073
|
+
c5a: "c5a";
|
|
2074
|
+
c5ad: "c5ad";
|
|
2075
|
+
c5d: "c5d";
|
|
2076
|
+
c5n: "c5n";
|
|
2077
|
+
c6a: "c6a";
|
|
2078
|
+
c6g: "c6g";
|
|
2079
|
+
c6gd: "c6gd";
|
|
2080
|
+
c6gn: "c6gn";
|
|
2081
|
+
c6i: "c6i";
|
|
2082
|
+
c6id: "c6id";
|
|
2083
|
+
c6in: "c6in";
|
|
2084
|
+
c7a: "c7a";
|
|
2085
|
+
c7g: "c7g";
|
|
2086
|
+
c7gd: "c7gd";
|
|
2087
|
+
c7gn: "c7gn";
|
|
2088
|
+
c7i: "c7i";
|
|
2089
|
+
"c7i-flex": "c7i-flex";
|
|
2090
|
+
c8g: "c8g";
|
|
2091
|
+
c8gd: "c8gd";
|
|
2092
|
+
cax: "cax";
|
|
2093
|
+
ccx: "ccx";
|
|
2094
|
+
cpx: "cpx";
|
|
2095
|
+
d2: "d2";
|
|
2096
|
+
d3: "d3";
|
|
2097
|
+
d3en: "d3en";
|
|
2098
|
+
dl1: "dl1";
|
|
2099
|
+
dl2q: "dl2q";
|
|
2100
|
+
e2: "e2";
|
|
2101
|
+
f1: "f1";
|
|
2102
|
+
f2: "f2";
|
|
2103
|
+
g1: "g1";
|
|
2104
|
+
g2: "g2";
|
|
2105
|
+
g4ad: "g4ad";
|
|
2106
|
+
g4dn: "g4dn";
|
|
2107
|
+
g5: "g5";
|
|
2108
|
+
g5g: "g5g";
|
|
2109
|
+
g6: "g6";
|
|
2110
|
+
g6e: "g6e";
|
|
2111
|
+
gr6: "gr6";
|
|
2112
|
+
hpc6a: "hpc6a";
|
|
2113
|
+
hpc6id: "hpc6id";
|
|
2114
|
+
hpc7a: "hpc7a";
|
|
2115
|
+
hpc7g: "hpc7g";
|
|
2116
|
+
i2: "i2";
|
|
2117
|
+
i3: "i3";
|
|
2118
|
+
i3en: "i3en";
|
|
2119
|
+
i4g: "i4g";
|
|
2120
|
+
i4i: "i4i";
|
|
2121
|
+
i7i: "i7i";
|
|
2122
|
+
i7ie: "i7ie";
|
|
2123
|
+
i8g: "i8g";
|
|
2124
|
+
im4gn: "im4gn";
|
|
2125
|
+
inf1: "inf1";
|
|
2126
|
+
inf2: "inf2";
|
|
2127
|
+
is4gen: "is4gen";
|
|
2128
|
+
m1: "m1";
|
|
2129
|
+
m2: "m2";
|
|
2130
|
+
m3: "m3";
|
|
2131
|
+
m4: "m4";
|
|
2132
|
+
m5: "m5";
|
|
2133
|
+
m5a: "m5a";
|
|
2134
|
+
m5ad: "m5ad";
|
|
2135
|
+
m5d: "m5d";
|
|
2136
|
+
m5dn: "m5dn";
|
|
2137
|
+
m5n: "m5n";
|
|
2138
|
+
m5zn: "m5zn";
|
|
2139
|
+
m6a: "m6a";
|
|
2140
|
+
m6g: "m6g";
|
|
2141
|
+
m6gd: "m6gd";
|
|
2142
|
+
m6i: "m6i";
|
|
2143
|
+
m6id: "m6id";
|
|
2144
|
+
m6idn: "m6idn";
|
|
2145
|
+
m6in: "m6in";
|
|
2146
|
+
m7a: "m7a";
|
|
2147
|
+
m7g: "m7g";
|
|
2148
|
+
m7gd: "m7gd";
|
|
2149
|
+
m7i: "m7i";
|
|
2150
|
+
"m7i-flex": "m7i-flex";
|
|
2151
|
+
m8g: "m8g";
|
|
2152
|
+
m8gd: "m8gd";
|
|
2153
|
+
n1: "n1";
|
|
2154
|
+
n2: "n2";
|
|
2155
|
+
n2d: "n2d";
|
|
2156
|
+
n4: "n4";
|
|
2157
|
+
p3dn: "p3dn";
|
|
2158
|
+
p4d: "p4d";
|
|
2159
|
+
p4de: "p4de";
|
|
2160
|
+
p5: "p5";
|
|
2161
|
+
p5e: "p5e";
|
|
2162
|
+
p5en: "p5en";
|
|
2163
|
+
"p6-b200": "p6-b200";
|
|
2164
|
+
r3: "r3";
|
|
2165
|
+
r4: "r4";
|
|
2166
|
+
r5: "r5";
|
|
2167
|
+
r5a: "r5a";
|
|
2168
|
+
r5ad: "r5ad";
|
|
2169
|
+
r5b: "r5b";
|
|
2170
|
+
r5d: "r5d";
|
|
2171
|
+
r5dn: "r5dn";
|
|
2172
|
+
r5n: "r5n";
|
|
2173
|
+
r6a: "r6a";
|
|
2174
|
+
r6g: "r6g";
|
|
2175
|
+
r6gd: "r6gd";
|
|
2176
|
+
r6i: "r6i";
|
|
2177
|
+
r6id: "r6id";
|
|
2178
|
+
r6idn: "r6idn";
|
|
2179
|
+
r6in: "r6in";
|
|
2180
|
+
r7a: "r7a";
|
|
2181
|
+
r7g: "r7g";
|
|
2182
|
+
r7gd: "r7gd";
|
|
2183
|
+
r7i: "r7i";
|
|
2184
|
+
r7iz: "r7iz";
|
|
2185
|
+
r8g: "r8g";
|
|
2186
|
+
r8gd: "r8gd";
|
|
2187
|
+
t2: "t2";
|
|
2188
|
+
t2a: "t2a";
|
|
2189
|
+
t2d: "t2d";
|
|
2190
|
+
t3: "t3";
|
|
2191
|
+
t3a: "t3a";
|
|
2192
|
+
t4g: "t4g";
|
|
2193
|
+
trn1: "trn1";
|
|
2194
|
+
trn1n: "trn1n";
|
|
2195
|
+
"u-3tb1": "u-3tb1";
|
|
2196
|
+
"u-6tb1": "u-6tb1";
|
|
2197
|
+
"u7i-12tb": "u7i-12tb";
|
|
2198
|
+
"u7i-6tb": "u7i-6tb";
|
|
2199
|
+
"u7i-8tb": "u7i-8tb";
|
|
2200
|
+
"u7in-16tb": "u7in-16tb";
|
|
2201
|
+
"u7in-24tb": "u7in-24tb";
|
|
2202
|
+
"u7in-32tb": "u7in-32tb";
|
|
2203
|
+
vt1: "vt1";
|
|
2204
|
+
x1: "x1";
|
|
2205
|
+
x1e: "x1e";
|
|
2206
|
+
x2gd: "x2gd";
|
|
2207
|
+
x2idn: "x2idn";
|
|
2208
|
+
x2iedn: "x2iedn";
|
|
2209
|
+
x2iezn: "x2iezn";
|
|
2210
|
+
x4: "x4";
|
|
2211
|
+
x8g: "x8g";
|
|
2212
|
+
z1d: "z1d";
|
|
2213
|
+
z3: "z3";
|
|
2214
|
+
}>>>;
|
|
2215
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2216
|
+
"africa-south1": "africa-south1";
|
|
2217
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2218
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2219
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2220
|
+
"ap-south-1": "ap-south-1";
|
|
2221
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2222
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2223
|
+
ash: "ash";
|
|
2224
|
+
"asia-east1": "asia-east1";
|
|
2225
|
+
"asia-east2": "asia-east2";
|
|
2226
|
+
"asia-northeast1": "asia-northeast1";
|
|
2227
|
+
"asia-northeast2": "asia-northeast2";
|
|
2228
|
+
"asia-northeast3": "asia-northeast3";
|
|
2229
|
+
"asia-south1": "asia-south1";
|
|
2230
|
+
"asia-south2": "asia-south2";
|
|
2231
|
+
"asia-southeast1": "asia-southeast1";
|
|
2232
|
+
"asia-southeast2": "asia-southeast2";
|
|
2233
|
+
"australia-southeast1": "australia-southeast1";
|
|
2234
|
+
"australia-southeast2": "australia-southeast2";
|
|
2235
|
+
"ca-central-1": "ca-central-1";
|
|
2236
|
+
"eu-central-1": "eu-central-1";
|
|
2237
|
+
"eu-central-2": "eu-central-2";
|
|
2238
|
+
"eu-north-1": "eu-north-1";
|
|
2239
|
+
"eu-west-1": "eu-west-1";
|
|
2240
|
+
"eu-west-2": "eu-west-2";
|
|
2241
|
+
"eu-west-3": "eu-west-3";
|
|
2242
|
+
"europe-central2": "europe-central2";
|
|
2243
|
+
"europe-north1": "europe-north1";
|
|
2244
|
+
"europe-southwest1": "europe-southwest1";
|
|
2245
|
+
"europe-west1": "europe-west1";
|
|
2246
|
+
"europe-west10": "europe-west10";
|
|
2247
|
+
"europe-west12": "europe-west12";
|
|
2248
|
+
"europe-west2": "europe-west2";
|
|
2249
|
+
"europe-west3": "europe-west3";
|
|
2250
|
+
"europe-west4": "europe-west4";
|
|
2251
|
+
"europe-west6": "europe-west6";
|
|
2252
|
+
"europe-west8": "europe-west8";
|
|
2253
|
+
"europe-west9": "europe-west9";
|
|
2254
|
+
fsn1: "fsn1";
|
|
2255
|
+
hel1: "hel1";
|
|
2256
|
+
hil: "hil";
|
|
2257
|
+
"me-central1": "me-central1";
|
|
2258
|
+
"me-central2": "me-central2";
|
|
2259
|
+
"me-west1": "me-west1";
|
|
2260
|
+
nbg1: "nbg1";
|
|
2261
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2262
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2263
|
+
"sa-east-1": "sa-east-1";
|
|
2264
|
+
sin: "sin";
|
|
2265
|
+
"southamerica-east1": "southamerica-east1";
|
|
2266
|
+
"southamerica-west1": "southamerica-west1";
|
|
2267
|
+
"us-central1": "us-central1";
|
|
2268
|
+
"us-east-1": "us-east-1";
|
|
2269
|
+
"us-east-2": "us-east-2";
|
|
2270
|
+
"us-east1": "us-east1";
|
|
2271
|
+
"us-east4": "us-east4";
|
|
2272
|
+
"us-east5": "us-east5";
|
|
2273
|
+
"us-south1": "us-south1";
|
|
2274
|
+
"us-west-1": "us-west-1";
|
|
2275
|
+
"us-west-2": "us-west-2";
|
|
2276
|
+
"us-west1": "us-west1";
|
|
2277
|
+
"us-west2": "us-west2";
|
|
2278
|
+
"us-west3": "us-west3";
|
|
2279
|
+
"us-west4": "us-west4";
|
|
2280
|
+
}>>>;
|
|
2281
|
+
}, z.core.$strip>>;
|
|
2282
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2283
|
+
aggressive: "aggressive";
|
|
2284
|
+
conservative: "conservative";
|
|
2285
|
+
}>>;
|
|
1284
2286
|
id: z.ZodString;
|
|
1285
2287
|
}, z.core.$strip>>;
|
|
1286
|
-
export declare const
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
2288
|
+
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2289
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2290
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
2291
|
+
}, z.core.$strip>>;
|
|
2292
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2293
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2294
|
+
project: z.ZodString;
|
|
2295
|
+
}, z.core.$strip>>;
|
|
2296
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2297
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2298
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2299
|
+
}, z.core.$strip>>;
|
|
2300
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2302
|
+
controllerRoleArn: z.ZodString;
|
|
2303
|
+
}, z.core.$strip>>;
|
|
2304
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2305
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2306
|
+
"on-demand": "on-demand";
|
|
2307
|
+
spot: "spot";
|
|
2308
|
+
}>>>;
|
|
2309
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2310
|
+
amd64: "amd64";
|
|
2311
|
+
arm64: "arm64";
|
|
2312
|
+
}>>>;
|
|
2313
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2314
|
+
p3: "p3";
|
|
2315
|
+
cx: "cx";
|
|
2316
|
+
h1: "h1";
|
|
2317
|
+
h3: "h3";
|
|
2318
|
+
a1: "a1";
|
|
2319
|
+
a2: "a2";
|
|
2320
|
+
a3: "a3";
|
|
2321
|
+
a4: "a4";
|
|
2322
|
+
c1: "c1";
|
|
2323
|
+
c2: "c2";
|
|
2324
|
+
c2d: "c2d";
|
|
2325
|
+
c3: "c3";
|
|
2326
|
+
c3d: "c3d";
|
|
2327
|
+
c4: "c4";
|
|
2328
|
+
c4a: "c4a";
|
|
2329
|
+
c4d: "c4d";
|
|
2330
|
+
c5: "c5";
|
|
2331
|
+
c5a: "c5a";
|
|
2332
|
+
c5ad: "c5ad";
|
|
2333
|
+
c5d: "c5d";
|
|
2334
|
+
c5n: "c5n";
|
|
2335
|
+
c6a: "c6a";
|
|
2336
|
+
c6g: "c6g";
|
|
2337
|
+
c6gd: "c6gd";
|
|
2338
|
+
c6gn: "c6gn";
|
|
2339
|
+
c6i: "c6i";
|
|
2340
|
+
c6id: "c6id";
|
|
2341
|
+
c6in: "c6in";
|
|
2342
|
+
c7a: "c7a";
|
|
2343
|
+
c7g: "c7g";
|
|
2344
|
+
c7gd: "c7gd";
|
|
2345
|
+
c7gn: "c7gn";
|
|
2346
|
+
c7i: "c7i";
|
|
2347
|
+
"c7i-flex": "c7i-flex";
|
|
2348
|
+
c8g: "c8g";
|
|
2349
|
+
c8gd: "c8gd";
|
|
2350
|
+
cax: "cax";
|
|
2351
|
+
ccx: "ccx";
|
|
2352
|
+
cpx: "cpx";
|
|
2353
|
+
d2: "d2";
|
|
2354
|
+
d3: "d3";
|
|
2355
|
+
d3en: "d3en";
|
|
2356
|
+
dl1: "dl1";
|
|
2357
|
+
dl2q: "dl2q";
|
|
2358
|
+
e2: "e2";
|
|
2359
|
+
f1: "f1";
|
|
2360
|
+
f2: "f2";
|
|
2361
|
+
g1: "g1";
|
|
2362
|
+
g2: "g2";
|
|
2363
|
+
g4ad: "g4ad";
|
|
2364
|
+
g4dn: "g4dn";
|
|
2365
|
+
g5: "g5";
|
|
2366
|
+
g5g: "g5g";
|
|
2367
|
+
g6: "g6";
|
|
2368
|
+
g6e: "g6e";
|
|
2369
|
+
gr6: "gr6";
|
|
2370
|
+
hpc6a: "hpc6a";
|
|
2371
|
+
hpc6id: "hpc6id";
|
|
2372
|
+
hpc7a: "hpc7a";
|
|
2373
|
+
hpc7g: "hpc7g";
|
|
2374
|
+
i2: "i2";
|
|
2375
|
+
i3: "i3";
|
|
2376
|
+
i3en: "i3en";
|
|
2377
|
+
i4g: "i4g";
|
|
2378
|
+
i4i: "i4i";
|
|
2379
|
+
i7i: "i7i";
|
|
2380
|
+
i7ie: "i7ie";
|
|
2381
|
+
i8g: "i8g";
|
|
2382
|
+
im4gn: "im4gn";
|
|
2383
|
+
inf1: "inf1";
|
|
2384
|
+
inf2: "inf2";
|
|
2385
|
+
is4gen: "is4gen";
|
|
2386
|
+
m1: "m1";
|
|
2387
|
+
m2: "m2";
|
|
2388
|
+
m3: "m3";
|
|
2389
|
+
m4: "m4";
|
|
2390
|
+
m5: "m5";
|
|
2391
|
+
m5a: "m5a";
|
|
2392
|
+
m5ad: "m5ad";
|
|
2393
|
+
m5d: "m5d";
|
|
2394
|
+
m5dn: "m5dn";
|
|
2395
|
+
m5n: "m5n";
|
|
2396
|
+
m5zn: "m5zn";
|
|
2397
|
+
m6a: "m6a";
|
|
2398
|
+
m6g: "m6g";
|
|
2399
|
+
m6gd: "m6gd";
|
|
2400
|
+
m6i: "m6i";
|
|
2401
|
+
m6id: "m6id";
|
|
2402
|
+
m6idn: "m6idn";
|
|
2403
|
+
m6in: "m6in";
|
|
2404
|
+
m7a: "m7a";
|
|
2405
|
+
m7g: "m7g";
|
|
2406
|
+
m7gd: "m7gd";
|
|
2407
|
+
m7i: "m7i";
|
|
2408
|
+
"m7i-flex": "m7i-flex";
|
|
2409
|
+
m8g: "m8g";
|
|
2410
|
+
m8gd: "m8gd";
|
|
2411
|
+
n1: "n1";
|
|
2412
|
+
n2: "n2";
|
|
2413
|
+
n2d: "n2d";
|
|
2414
|
+
n4: "n4";
|
|
2415
|
+
p3dn: "p3dn";
|
|
2416
|
+
p4d: "p4d";
|
|
2417
|
+
p4de: "p4de";
|
|
2418
|
+
p5: "p5";
|
|
2419
|
+
p5e: "p5e";
|
|
2420
|
+
p5en: "p5en";
|
|
2421
|
+
"p6-b200": "p6-b200";
|
|
2422
|
+
r3: "r3";
|
|
2423
|
+
r4: "r4";
|
|
2424
|
+
r5: "r5";
|
|
2425
|
+
r5a: "r5a";
|
|
2426
|
+
r5ad: "r5ad";
|
|
2427
|
+
r5b: "r5b";
|
|
2428
|
+
r5d: "r5d";
|
|
2429
|
+
r5dn: "r5dn";
|
|
2430
|
+
r5n: "r5n";
|
|
2431
|
+
r6a: "r6a";
|
|
2432
|
+
r6g: "r6g";
|
|
2433
|
+
r6gd: "r6gd";
|
|
2434
|
+
r6i: "r6i";
|
|
2435
|
+
r6id: "r6id";
|
|
2436
|
+
r6idn: "r6idn";
|
|
2437
|
+
r6in: "r6in";
|
|
2438
|
+
r7a: "r7a";
|
|
2439
|
+
r7g: "r7g";
|
|
2440
|
+
r7gd: "r7gd";
|
|
2441
|
+
r7i: "r7i";
|
|
2442
|
+
r7iz: "r7iz";
|
|
2443
|
+
r8g: "r8g";
|
|
2444
|
+
r8gd: "r8gd";
|
|
2445
|
+
t2: "t2";
|
|
2446
|
+
t2a: "t2a";
|
|
2447
|
+
t2d: "t2d";
|
|
2448
|
+
t3: "t3";
|
|
2449
|
+
t3a: "t3a";
|
|
2450
|
+
t4g: "t4g";
|
|
2451
|
+
trn1: "trn1";
|
|
2452
|
+
trn1n: "trn1n";
|
|
2453
|
+
"u-3tb1": "u-3tb1";
|
|
2454
|
+
"u-6tb1": "u-6tb1";
|
|
2455
|
+
"u7i-12tb": "u7i-12tb";
|
|
2456
|
+
"u7i-6tb": "u7i-6tb";
|
|
2457
|
+
"u7i-8tb": "u7i-8tb";
|
|
2458
|
+
"u7in-16tb": "u7in-16tb";
|
|
2459
|
+
"u7in-24tb": "u7in-24tb";
|
|
2460
|
+
"u7in-32tb": "u7in-32tb";
|
|
2461
|
+
vt1: "vt1";
|
|
2462
|
+
x1: "x1";
|
|
2463
|
+
x1e: "x1e";
|
|
2464
|
+
x2gd: "x2gd";
|
|
2465
|
+
x2idn: "x2idn";
|
|
2466
|
+
x2iedn: "x2iedn";
|
|
2467
|
+
x2iezn: "x2iezn";
|
|
2468
|
+
x4: "x4";
|
|
2469
|
+
x8g: "x8g";
|
|
2470
|
+
z1d: "z1d";
|
|
2471
|
+
z3: "z3";
|
|
2472
|
+
}>>>;
|
|
2473
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2474
|
+
"africa-south1": "africa-south1";
|
|
2475
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2476
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2477
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2478
|
+
"ap-south-1": "ap-south-1";
|
|
2479
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2480
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2481
|
+
ash: "ash";
|
|
2482
|
+
"asia-east1": "asia-east1";
|
|
2483
|
+
"asia-east2": "asia-east2";
|
|
2484
|
+
"asia-northeast1": "asia-northeast1";
|
|
2485
|
+
"asia-northeast2": "asia-northeast2";
|
|
2486
|
+
"asia-northeast3": "asia-northeast3";
|
|
2487
|
+
"asia-south1": "asia-south1";
|
|
2488
|
+
"asia-south2": "asia-south2";
|
|
2489
|
+
"asia-southeast1": "asia-southeast1";
|
|
2490
|
+
"asia-southeast2": "asia-southeast2";
|
|
2491
|
+
"australia-southeast1": "australia-southeast1";
|
|
2492
|
+
"australia-southeast2": "australia-southeast2";
|
|
2493
|
+
"ca-central-1": "ca-central-1";
|
|
2494
|
+
"eu-central-1": "eu-central-1";
|
|
2495
|
+
"eu-central-2": "eu-central-2";
|
|
2496
|
+
"eu-north-1": "eu-north-1";
|
|
2497
|
+
"eu-west-1": "eu-west-1";
|
|
2498
|
+
"eu-west-2": "eu-west-2";
|
|
2499
|
+
"eu-west-3": "eu-west-3";
|
|
2500
|
+
"europe-central2": "europe-central2";
|
|
2501
|
+
"europe-north1": "europe-north1";
|
|
2502
|
+
"europe-southwest1": "europe-southwest1";
|
|
2503
|
+
"europe-west1": "europe-west1";
|
|
2504
|
+
"europe-west10": "europe-west10";
|
|
2505
|
+
"europe-west12": "europe-west12";
|
|
2506
|
+
"europe-west2": "europe-west2";
|
|
2507
|
+
"europe-west3": "europe-west3";
|
|
2508
|
+
"europe-west4": "europe-west4";
|
|
2509
|
+
"europe-west6": "europe-west6";
|
|
2510
|
+
"europe-west8": "europe-west8";
|
|
2511
|
+
"europe-west9": "europe-west9";
|
|
2512
|
+
fsn1: "fsn1";
|
|
2513
|
+
hel1: "hel1";
|
|
2514
|
+
hil: "hil";
|
|
2515
|
+
"me-central1": "me-central1";
|
|
2516
|
+
"me-central2": "me-central2";
|
|
2517
|
+
"me-west1": "me-west1";
|
|
2518
|
+
nbg1: "nbg1";
|
|
2519
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2520
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2521
|
+
"sa-east-1": "sa-east-1";
|
|
2522
|
+
sin: "sin";
|
|
2523
|
+
"southamerica-east1": "southamerica-east1";
|
|
2524
|
+
"southamerica-west1": "southamerica-west1";
|
|
2525
|
+
"us-central1": "us-central1";
|
|
2526
|
+
"us-east-1": "us-east-1";
|
|
2527
|
+
"us-east-2": "us-east-2";
|
|
2528
|
+
"us-east1": "us-east1";
|
|
2529
|
+
"us-east4": "us-east4";
|
|
2530
|
+
"us-east5": "us-east5";
|
|
2531
|
+
"us-south1": "us-south1";
|
|
2532
|
+
"us-west-1": "us-west-1";
|
|
2533
|
+
"us-west-2": "us-west-2";
|
|
2534
|
+
"us-west1": "us-west1";
|
|
2535
|
+
"us-west2": "us-west2";
|
|
2536
|
+
"us-west3": "us-west3";
|
|
2537
|
+
"us-west4": "us-west4";
|
|
2538
|
+
}>>>;
|
|
2539
|
+
}, z.core.$strip>>;
|
|
2540
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2541
|
+
aggressive: "aggressive";
|
|
2542
|
+
conservative: "conservative";
|
|
2543
|
+
}>>;
|
|
2544
|
+
id: z.ZodString;
|
|
2545
|
+
}, z.core.$strip>;
|
|
2546
|
+
export declare const zCreateFleetPath: z.ZodObject<{
|
|
2547
|
+
cluster_id: z.ZodString;
|
|
1309
2548
|
}, z.core.$strip>;
|
|
1310
2549
|
/**
|
|
1311
2550
|
* Successfully created. Returns created Fleet ID.
|
|
1312
2551
|
*/
|
|
1313
2552
|
export declare const zCreateFleetResponse: z.ZodString;
|
|
1314
|
-
export declare const
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
cluster_id: z.ZodString;
|
|
1318
|
-
fleet_name: z.ZodString;
|
|
1319
|
-
}, z.core.$strip>;
|
|
1320
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2553
|
+
export declare const zDeleteFleetPath: z.ZodObject<{
|
|
2554
|
+
cluster_id: z.ZodString;
|
|
2555
|
+
fleet_name: z.ZodString;
|
|
1321
2556
|
}, z.core.$strip>;
|
|
1322
2557
|
/**
|
|
1323
2558
|
* Successfully deleted.
|
|
1324
2559
|
*/
|
|
1325
2560
|
export declare const zDeleteFleetResponse: z.ZodString;
|
|
1326
|
-
export declare const
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
cluster_id: z.ZodString;
|
|
1330
|
-
fleet_name: z.ZodString;
|
|
1331
|
-
}, z.core.$strip>;
|
|
1332
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
2561
|
+
export declare const zGetFleetPath: z.ZodObject<{
|
|
2562
|
+
cluster_id: z.ZodString;
|
|
2563
|
+
fleet_name: z.ZodString;
|
|
1333
2564
|
}, z.core.$strip>;
|
|
1334
2565
|
/**
|
|
1335
2566
|
* Returns a single object containing fleet details.
|
|
1336
2567
|
*/
|
|
1337
2568
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
1338
2569
|
limits: z.ZodOptional<z.ZodObject<{
|
|
1339
|
-
cpu: z.ZodNumber
|
|
2570
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
1340
2571
|
}, z.core.$strip>>;
|
|
1341
2572
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
1342
2573
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1344,53 +2575,521 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
1344
2575
|
}, z.core.$strip>>;
|
|
1345
2576
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
1346
2577
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1347
|
-
apiKey: z.ZodString
|
|
2578
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
1348
2579
|
}, z.core.$strip>>;
|
|
1349
2580
|
aws: z.ZodOptional<z.ZodObject<{
|
|
1350
2581
|
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1351
2582
|
controllerRoleArn: z.ZodString;
|
|
1352
2583
|
}, z.core.$strip>>;
|
|
2584
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2585
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2586
|
+
"on-demand": "on-demand";
|
|
2587
|
+
spot: "spot";
|
|
2588
|
+
}>>>;
|
|
2589
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2590
|
+
amd64: "amd64";
|
|
2591
|
+
arm64: "arm64";
|
|
2592
|
+
}>>>;
|
|
2593
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2594
|
+
p3: "p3";
|
|
2595
|
+
cx: "cx";
|
|
2596
|
+
h1: "h1";
|
|
2597
|
+
h3: "h3";
|
|
2598
|
+
a1: "a1";
|
|
2599
|
+
a2: "a2";
|
|
2600
|
+
a3: "a3";
|
|
2601
|
+
a4: "a4";
|
|
2602
|
+
c1: "c1";
|
|
2603
|
+
c2: "c2";
|
|
2604
|
+
c2d: "c2d";
|
|
2605
|
+
c3: "c3";
|
|
2606
|
+
c3d: "c3d";
|
|
2607
|
+
c4: "c4";
|
|
2608
|
+
c4a: "c4a";
|
|
2609
|
+
c4d: "c4d";
|
|
2610
|
+
c5: "c5";
|
|
2611
|
+
c5a: "c5a";
|
|
2612
|
+
c5ad: "c5ad";
|
|
2613
|
+
c5d: "c5d";
|
|
2614
|
+
c5n: "c5n";
|
|
2615
|
+
c6a: "c6a";
|
|
2616
|
+
c6g: "c6g";
|
|
2617
|
+
c6gd: "c6gd";
|
|
2618
|
+
c6gn: "c6gn";
|
|
2619
|
+
c6i: "c6i";
|
|
2620
|
+
c6id: "c6id";
|
|
2621
|
+
c6in: "c6in";
|
|
2622
|
+
c7a: "c7a";
|
|
2623
|
+
c7g: "c7g";
|
|
2624
|
+
c7gd: "c7gd";
|
|
2625
|
+
c7gn: "c7gn";
|
|
2626
|
+
c7i: "c7i";
|
|
2627
|
+
"c7i-flex": "c7i-flex";
|
|
2628
|
+
c8g: "c8g";
|
|
2629
|
+
c8gd: "c8gd";
|
|
2630
|
+
cax: "cax";
|
|
2631
|
+
ccx: "ccx";
|
|
2632
|
+
cpx: "cpx";
|
|
2633
|
+
d2: "d2";
|
|
2634
|
+
d3: "d3";
|
|
2635
|
+
d3en: "d3en";
|
|
2636
|
+
dl1: "dl1";
|
|
2637
|
+
dl2q: "dl2q";
|
|
2638
|
+
e2: "e2";
|
|
2639
|
+
f1: "f1";
|
|
2640
|
+
f2: "f2";
|
|
2641
|
+
g1: "g1";
|
|
2642
|
+
g2: "g2";
|
|
2643
|
+
g4ad: "g4ad";
|
|
2644
|
+
g4dn: "g4dn";
|
|
2645
|
+
g5: "g5";
|
|
2646
|
+
g5g: "g5g";
|
|
2647
|
+
g6: "g6";
|
|
2648
|
+
g6e: "g6e";
|
|
2649
|
+
gr6: "gr6";
|
|
2650
|
+
hpc6a: "hpc6a";
|
|
2651
|
+
hpc6id: "hpc6id";
|
|
2652
|
+
hpc7a: "hpc7a";
|
|
2653
|
+
hpc7g: "hpc7g";
|
|
2654
|
+
i2: "i2";
|
|
2655
|
+
i3: "i3";
|
|
2656
|
+
i3en: "i3en";
|
|
2657
|
+
i4g: "i4g";
|
|
2658
|
+
i4i: "i4i";
|
|
2659
|
+
i7i: "i7i";
|
|
2660
|
+
i7ie: "i7ie";
|
|
2661
|
+
i8g: "i8g";
|
|
2662
|
+
im4gn: "im4gn";
|
|
2663
|
+
inf1: "inf1";
|
|
2664
|
+
inf2: "inf2";
|
|
2665
|
+
is4gen: "is4gen";
|
|
2666
|
+
m1: "m1";
|
|
2667
|
+
m2: "m2";
|
|
2668
|
+
m3: "m3";
|
|
2669
|
+
m4: "m4";
|
|
2670
|
+
m5: "m5";
|
|
2671
|
+
m5a: "m5a";
|
|
2672
|
+
m5ad: "m5ad";
|
|
2673
|
+
m5d: "m5d";
|
|
2674
|
+
m5dn: "m5dn";
|
|
2675
|
+
m5n: "m5n";
|
|
2676
|
+
m5zn: "m5zn";
|
|
2677
|
+
m6a: "m6a";
|
|
2678
|
+
m6g: "m6g";
|
|
2679
|
+
m6gd: "m6gd";
|
|
2680
|
+
m6i: "m6i";
|
|
2681
|
+
m6id: "m6id";
|
|
2682
|
+
m6idn: "m6idn";
|
|
2683
|
+
m6in: "m6in";
|
|
2684
|
+
m7a: "m7a";
|
|
2685
|
+
m7g: "m7g";
|
|
2686
|
+
m7gd: "m7gd";
|
|
2687
|
+
m7i: "m7i";
|
|
2688
|
+
"m7i-flex": "m7i-flex";
|
|
2689
|
+
m8g: "m8g";
|
|
2690
|
+
m8gd: "m8gd";
|
|
2691
|
+
n1: "n1";
|
|
2692
|
+
n2: "n2";
|
|
2693
|
+
n2d: "n2d";
|
|
2694
|
+
n4: "n4";
|
|
2695
|
+
p3dn: "p3dn";
|
|
2696
|
+
p4d: "p4d";
|
|
2697
|
+
p4de: "p4de";
|
|
2698
|
+
p5: "p5";
|
|
2699
|
+
p5e: "p5e";
|
|
2700
|
+
p5en: "p5en";
|
|
2701
|
+
"p6-b200": "p6-b200";
|
|
2702
|
+
r3: "r3";
|
|
2703
|
+
r4: "r4";
|
|
2704
|
+
r5: "r5";
|
|
2705
|
+
r5a: "r5a";
|
|
2706
|
+
r5ad: "r5ad";
|
|
2707
|
+
r5b: "r5b";
|
|
2708
|
+
r5d: "r5d";
|
|
2709
|
+
r5dn: "r5dn";
|
|
2710
|
+
r5n: "r5n";
|
|
2711
|
+
r6a: "r6a";
|
|
2712
|
+
r6g: "r6g";
|
|
2713
|
+
r6gd: "r6gd";
|
|
2714
|
+
r6i: "r6i";
|
|
2715
|
+
r6id: "r6id";
|
|
2716
|
+
r6idn: "r6idn";
|
|
2717
|
+
r6in: "r6in";
|
|
2718
|
+
r7a: "r7a";
|
|
2719
|
+
r7g: "r7g";
|
|
2720
|
+
r7gd: "r7gd";
|
|
2721
|
+
r7i: "r7i";
|
|
2722
|
+
r7iz: "r7iz";
|
|
2723
|
+
r8g: "r8g";
|
|
2724
|
+
r8gd: "r8gd";
|
|
2725
|
+
t2: "t2";
|
|
2726
|
+
t2a: "t2a";
|
|
2727
|
+
t2d: "t2d";
|
|
2728
|
+
t3: "t3";
|
|
2729
|
+
t3a: "t3a";
|
|
2730
|
+
t4g: "t4g";
|
|
2731
|
+
trn1: "trn1";
|
|
2732
|
+
trn1n: "trn1n";
|
|
2733
|
+
"u-3tb1": "u-3tb1";
|
|
2734
|
+
"u-6tb1": "u-6tb1";
|
|
2735
|
+
"u7i-12tb": "u7i-12tb";
|
|
2736
|
+
"u7i-6tb": "u7i-6tb";
|
|
2737
|
+
"u7i-8tb": "u7i-8tb";
|
|
2738
|
+
"u7in-16tb": "u7in-16tb";
|
|
2739
|
+
"u7in-24tb": "u7in-24tb";
|
|
2740
|
+
"u7in-32tb": "u7in-32tb";
|
|
2741
|
+
vt1: "vt1";
|
|
2742
|
+
x1: "x1";
|
|
2743
|
+
x1e: "x1e";
|
|
2744
|
+
x2gd: "x2gd";
|
|
2745
|
+
x2idn: "x2idn";
|
|
2746
|
+
x2iedn: "x2iedn";
|
|
2747
|
+
x2iezn: "x2iezn";
|
|
2748
|
+
x4: "x4";
|
|
2749
|
+
x8g: "x8g";
|
|
2750
|
+
z1d: "z1d";
|
|
2751
|
+
z3: "z3";
|
|
2752
|
+
}>>>;
|
|
2753
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2754
|
+
"africa-south1": "africa-south1";
|
|
2755
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
2756
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
2757
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
2758
|
+
"ap-south-1": "ap-south-1";
|
|
2759
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
2760
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
2761
|
+
ash: "ash";
|
|
2762
|
+
"asia-east1": "asia-east1";
|
|
2763
|
+
"asia-east2": "asia-east2";
|
|
2764
|
+
"asia-northeast1": "asia-northeast1";
|
|
2765
|
+
"asia-northeast2": "asia-northeast2";
|
|
2766
|
+
"asia-northeast3": "asia-northeast3";
|
|
2767
|
+
"asia-south1": "asia-south1";
|
|
2768
|
+
"asia-south2": "asia-south2";
|
|
2769
|
+
"asia-southeast1": "asia-southeast1";
|
|
2770
|
+
"asia-southeast2": "asia-southeast2";
|
|
2771
|
+
"australia-southeast1": "australia-southeast1";
|
|
2772
|
+
"australia-southeast2": "australia-southeast2";
|
|
2773
|
+
"ca-central-1": "ca-central-1";
|
|
2774
|
+
"eu-central-1": "eu-central-1";
|
|
2775
|
+
"eu-central-2": "eu-central-2";
|
|
2776
|
+
"eu-north-1": "eu-north-1";
|
|
2777
|
+
"eu-west-1": "eu-west-1";
|
|
2778
|
+
"eu-west-2": "eu-west-2";
|
|
2779
|
+
"eu-west-3": "eu-west-3";
|
|
2780
|
+
"europe-central2": "europe-central2";
|
|
2781
|
+
"europe-north1": "europe-north1";
|
|
2782
|
+
"europe-southwest1": "europe-southwest1";
|
|
2783
|
+
"europe-west1": "europe-west1";
|
|
2784
|
+
"europe-west10": "europe-west10";
|
|
2785
|
+
"europe-west12": "europe-west12";
|
|
2786
|
+
"europe-west2": "europe-west2";
|
|
2787
|
+
"europe-west3": "europe-west3";
|
|
2788
|
+
"europe-west4": "europe-west4";
|
|
2789
|
+
"europe-west6": "europe-west6";
|
|
2790
|
+
"europe-west8": "europe-west8";
|
|
2791
|
+
"europe-west9": "europe-west9";
|
|
2792
|
+
fsn1: "fsn1";
|
|
2793
|
+
hel1: "hel1";
|
|
2794
|
+
hil: "hil";
|
|
2795
|
+
"me-central1": "me-central1";
|
|
2796
|
+
"me-central2": "me-central2";
|
|
2797
|
+
"me-west1": "me-west1";
|
|
2798
|
+
nbg1: "nbg1";
|
|
2799
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
2800
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
2801
|
+
"sa-east-1": "sa-east-1";
|
|
2802
|
+
sin: "sin";
|
|
2803
|
+
"southamerica-east1": "southamerica-east1";
|
|
2804
|
+
"southamerica-west1": "southamerica-west1";
|
|
2805
|
+
"us-central1": "us-central1";
|
|
2806
|
+
"us-east-1": "us-east-1";
|
|
2807
|
+
"us-east-2": "us-east-2";
|
|
2808
|
+
"us-east1": "us-east1";
|
|
2809
|
+
"us-east4": "us-east4";
|
|
2810
|
+
"us-east5": "us-east5";
|
|
2811
|
+
"us-south1": "us-south1";
|
|
2812
|
+
"us-west-1": "us-west-1";
|
|
2813
|
+
"us-west-2": "us-west-2";
|
|
2814
|
+
"us-west1": "us-west1";
|
|
2815
|
+
"us-west2": "us-west2";
|
|
2816
|
+
"us-west3": "us-west3";
|
|
2817
|
+
"us-west4": "us-west4";
|
|
2818
|
+
}>>>;
|
|
2819
|
+
}, z.core.$strip>>;
|
|
2820
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2821
|
+
aggressive: "aggressive";
|
|
2822
|
+
conservative: "conservative";
|
|
2823
|
+
}>>;
|
|
1353
2824
|
id: z.ZodString;
|
|
1354
2825
|
}, z.core.$strip>;
|
|
1355
|
-
export declare const
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
2826
|
+
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2827
|
+
limits: z.ZodOptional<z.ZodObject<{
|
|
2828
|
+
cpu: z.ZodOptional<z.ZodNumber>;
|
|
2829
|
+
}, z.core.$strip>>;
|
|
2830
|
+
gcp: z.ZodOptional<z.ZodObject<{
|
|
2831
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2832
|
+
project: z.ZodString;
|
|
2833
|
+
}, z.core.$strip>>;
|
|
2834
|
+
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2835
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2836
|
+
apiKey: z.ZodOptional<z.ZodString>;
|
|
2837
|
+
}, z.core.$strip>>;
|
|
2838
|
+
aws: z.ZodOptional<z.ZodObject<{
|
|
2839
|
+
enabled: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2840
|
+
controllerRoleArn: z.ZodString;
|
|
2841
|
+
}, z.core.$strip>>;
|
|
2842
|
+
constraints: z.ZodOptional<z.ZodObject<{
|
|
2843
|
+
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2844
|
+
"on-demand": "on-demand";
|
|
2845
|
+
spot: "spot";
|
|
2846
|
+
}>>>;
|
|
2847
|
+
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2848
|
+
amd64: "amd64";
|
|
2849
|
+
arm64: "arm64";
|
|
2850
|
+
}>>>;
|
|
2851
|
+
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2852
|
+
p3: "p3";
|
|
2853
|
+
cx: "cx";
|
|
2854
|
+
h1: "h1";
|
|
2855
|
+
h3: "h3";
|
|
2856
|
+
a1: "a1";
|
|
2857
|
+
a2: "a2";
|
|
2858
|
+
a3: "a3";
|
|
2859
|
+
a4: "a4";
|
|
2860
|
+
c1: "c1";
|
|
2861
|
+
c2: "c2";
|
|
2862
|
+
c2d: "c2d";
|
|
2863
|
+
c3: "c3";
|
|
2864
|
+
c3d: "c3d";
|
|
2865
|
+
c4: "c4";
|
|
2866
|
+
c4a: "c4a";
|
|
2867
|
+
c4d: "c4d";
|
|
2868
|
+
c5: "c5";
|
|
2869
|
+
c5a: "c5a";
|
|
2870
|
+
c5ad: "c5ad";
|
|
2871
|
+
c5d: "c5d";
|
|
2872
|
+
c5n: "c5n";
|
|
2873
|
+
c6a: "c6a";
|
|
2874
|
+
c6g: "c6g";
|
|
2875
|
+
c6gd: "c6gd";
|
|
2876
|
+
c6gn: "c6gn";
|
|
2877
|
+
c6i: "c6i";
|
|
2878
|
+
c6id: "c6id";
|
|
2879
|
+
c6in: "c6in";
|
|
2880
|
+
c7a: "c7a";
|
|
2881
|
+
c7g: "c7g";
|
|
2882
|
+
c7gd: "c7gd";
|
|
2883
|
+
c7gn: "c7gn";
|
|
2884
|
+
c7i: "c7i";
|
|
2885
|
+
"c7i-flex": "c7i-flex";
|
|
2886
|
+
c8g: "c8g";
|
|
2887
|
+
c8gd: "c8gd";
|
|
2888
|
+
cax: "cax";
|
|
2889
|
+
ccx: "ccx";
|
|
2890
|
+
cpx: "cpx";
|
|
2891
|
+
d2: "d2";
|
|
2892
|
+
d3: "d3";
|
|
2893
|
+
d3en: "d3en";
|
|
2894
|
+
dl1: "dl1";
|
|
2895
|
+
dl2q: "dl2q";
|
|
2896
|
+
e2: "e2";
|
|
2897
|
+
f1: "f1";
|
|
2898
|
+
f2: "f2";
|
|
2899
|
+
g1: "g1";
|
|
2900
|
+
g2: "g2";
|
|
2901
|
+
g4ad: "g4ad";
|
|
2902
|
+
g4dn: "g4dn";
|
|
2903
|
+
g5: "g5";
|
|
2904
|
+
g5g: "g5g";
|
|
2905
|
+
g6: "g6";
|
|
2906
|
+
g6e: "g6e";
|
|
2907
|
+
gr6: "gr6";
|
|
2908
|
+
hpc6a: "hpc6a";
|
|
2909
|
+
hpc6id: "hpc6id";
|
|
2910
|
+
hpc7a: "hpc7a";
|
|
2911
|
+
hpc7g: "hpc7g";
|
|
2912
|
+
i2: "i2";
|
|
2913
|
+
i3: "i3";
|
|
2914
|
+
i3en: "i3en";
|
|
2915
|
+
i4g: "i4g";
|
|
2916
|
+
i4i: "i4i";
|
|
2917
|
+
i7i: "i7i";
|
|
2918
|
+
i7ie: "i7ie";
|
|
2919
|
+
i8g: "i8g";
|
|
2920
|
+
im4gn: "im4gn";
|
|
2921
|
+
inf1: "inf1";
|
|
2922
|
+
inf2: "inf2";
|
|
2923
|
+
is4gen: "is4gen";
|
|
2924
|
+
m1: "m1";
|
|
2925
|
+
m2: "m2";
|
|
2926
|
+
m3: "m3";
|
|
2927
|
+
m4: "m4";
|
|
2928
|
+
m5: "m5";
|
|
2929
|
+
m5a: "m5a";
|
|
2930
|
+
m5ad: "m5ad";
|
|
2931
|
+
m5d: "m5d";
|
|
2932
|
+
m5dn: "m5dn";
|
|
2933
|
+
m5n: "m5n";
|
|
2934
|
+
m5zn: "m5zn";
|
|
2935
|
+
m6a: "m6a";
|
|
2936
|
+
m6g: "m6g";
|
|
2937
|
+
m6gd: "m6gd";
|
|
2938
|
+
m6i: "m6i";
|
|
2939
|
+
m6id: "m6id";
|
|
2940
|
+
m6idn: "m6idn";
|
|
2941
|
+
m6in: "m6in";
|
|
2942
|
+
m7a: "m7a";
|
|
2943
|
+
m7g: "m7g";
|
|
2944
|
+
m7gd: "m7gd";
|
|
2945
|
+
m7i: "m7i";
|
|
2946
|
+
"m7i-flex": "m7i-flex";
|
|
2947
|
+
m8g: "m8g";
|
|
2948
|
+
m8gd: "m8gd";
|
|
2949
|
+
n1: "n1";
|
|
2950
|
+
n2: "n2";
|
|
2951
|
+
n2d: "n2d";
|
|
2952
|
+
n4: "n4";
|
|
2953
|
+
p3dn: "p3dn";
|
|
2954
|
+
p4d: "p4d";
|
|
2955
|
+
p4de: "p4de";
|
|
2956
|
+
p5: "p5";
|
|
2957
|
+
p5e: "p5e";
|
|
2958
|
+
p5en: "p5en";
|
|
2959
|
+
"p6-b200": "p6-b200";
|
|
2960
|
+
r3: "r3";
|
|
2961
|
+
r4: "r4";
|
|
2962
|
+
r5: "r5";
|
|
2963
|
+
r5a: "r5a";
|
|
2964
|
+
r5ad: "r5ad";
|
|
2965
|
+
r5b: "r5b";
|
|
2966
|
+
r5d: "r5d";
|
|
2967
|
+
r5dn: "r5dn";
|
|
2968
|
+
r5n: "r5n";
|
|
2969
|
+
r6a: "r6a";
|
|
2970
|
+
r6g: "r6g";
|
|
2971
|
+
r6gd: "r6gd";
|
|
2972
|
+
r6i: "r6i";
|
|
2973
|
+
r6id: "r6id";
|
|
2974
|
+
r6idn: "r6idn";
|
|
2975
|
+
r6in: "r6in";
|
|
2976
|
+
r7a: "r7a";
|
|
2977
|
+
r7g: "r7g";
|
|
2978
|
+
r7gd: "r7gd";
|
|
2979
|
+
r7i: "r7i";
|
|
2980
|
+
r7iz: "r7iz";
|
|
2981
|
+
r8g: "r8g";
|
|
2982
|
+
r8gd: "r8gd";
|
|
2983
|
+
t2: "t2";
|
|
2984
|
+
t2a: "t2a";
|
|
2985
|
+
t2d: "t2d";
|
|
2986
|
+
t3: "t3";
|
|
2987
|
+
t3a: "t3a";
|
|
2988
|
+
t4g: "t4g";
|
|
2989
|
+
trn1: "trn1";
|
|
2990
|
+
trn1n: "trn1n";
|
|
2991
|
+
"u-3tb1": "u-3tb1";
|
|
2992
|
+
"u-6tb1": "u-6tb1";
|
|
2993
|
+
"u7i-12tb": "u7i-12tb";
|
|
2994
|
+
"u7i-6tb": "u7i-6tb";
|
|
2995
|
+
"u7i-8tb": "u7i-8tb";
|
|
2996
|
+
"u7in-16tb": "u7in-16tb";
|
|
2997
|
+
"u7in-24tb": "u7in-24tb";
|
|
2998
|
+
"u7in-32tb": "u7in-32tb";
|
|
2999
|
+
vt1: "vt1";
|
|
3000
|
+
x1: "x1";
|
|
3001
|
+
x1e: "x1e";
|
|
3002
|
+
x2gd: "x2gd";
|
|
3003
|
+
x2idn: "x2idn";
|
|
3004
|
+
x2iedn: "x2iedn";
|
|
3005
|
+
x2iezn: "x2iezn";
|
|
3006
|
+
x4: "x4";
|
|
3007
|
+
x8g: "x8g";
|
|
3008
|
+
z1d: "z1d";
|
|
3009
|
+
z3: "z3";
|
|
3010
|
+
}>>>;
|
|
3011
|
+
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3012
|
+
"africa-south1": "africa-south1";
|
|
3013
|
+
"ap-northeast-1": "ap-northeast-1";
|
|
3014
|
+
"ap-northeast-2": "ap-northeast-2";
|
|
3015
|
+
"ap-northeast-3": "ap-northeast-3";
|
|
3016
|
+
"ap-south-1": "ap-south-1";
|
|
3017
|
+
"ap-southeast-1": "ap-southeast-1";
|
|
3018
|
+
"ap-southeast-2": "ap-southeast-2";
|
|
3019
|
+
ash: "ash";
|
|
3020
|
+
"asia-east1": "asia-east1";
|
|
3021
|
+
"asia-east2": "asia-east2";
|
|
3022
|
+
"asia-northeast1": "asia-northeast1";
|
|
3023
|
+
"asia-northeast2": "asia-northeast2";
|
|
3024
|
+
"asia-northeast3": "asia-northeast3";
|
|
3025
|
+
"asia-south1": "asia-south1";
|
|
3026
|
+
"asia-south2": "asia-south2";
|
|
3027
|
+
"asia-southeast1": "asia-southeast1";
|
|
3028
|
+
"asia-southeast2": "asia-southeast2";
|
|
3029
|
+
"australia-southeast1": "australia-southeast1";
|
|
3030
|
+
"australia-southeast2": "australia-southeast2";
|
|
3031
|
+
"ca-central-1": "ca-central-1";
|
|
3032
|
+
"eu-central-1": "eu-central-1";
|
|
3033
|
+
"eu-central-2": "eu-central-2";
|
|
3034
|
+
"eu-north-1": "eu-north-1";
|
|
3035
|
+
"eu-west-1": "eu-west-1";
|
|
3036
|
+
"eu-west-2": "eu-west-2";
|
|
3037
|
+
"eu-west-3": "eu-west-3";
|
|
3038
|
+
"europe-central2": "europe-central2";
|
|
3039
|
+
"europe-north1": "europe-north1";
|
|
3040
|
+
"europe-southwest1": "europe-southwest1";
|
|
3041
|
+
"europe-west1": "europe-west1";
|
|
3042
|
+
"europe-west10": "europe-west10";
|
|
3043
|
+
"europe-west12": "europe-west12";
|
|
3044
|
+
"europe-west2": "europe-west2";
|
|
3045
|
+
"europe-west3": "europe-west3";
|
|
3046
|
+
"europe-west4": "europe-west4";
|
|
3047
|
+
"europe-west6": "europe-west6";
|
|
3048
|
+
"europe-west8": "europe-west8";
|
|
3049
|
+
"europe-west9": "europe-west9";
|
|
3050
|
+
fsn1: "fsn1";
|
|
3051
|
+
hel1: "hel1";
|
|
3052
|
+
hil: "hil";
|
|
3053
|
+
"me-central1": "me-central1";
|
|
3054
|
+
"me-central2": "me-central2";
|
|
3055
|
+
"me-west1": "me-west1";
|
|
3056
|
+
nbg1: "nbg1";
|
|
3057
|
+
"northamerica-northeast1": "northamerica-northeast1";
|
|
3058
|
+
"northamerica-northeast2": "northamerica-northeast2";
|
|
3059
|
+
"sa-east-1": "sa-east-1";
|
|
3060
|
+
sin: "sin";
|
|
3061
|
+
"southamerica-east1": "southamerica-east1";
|
|
3062
|
+
"southamerica-west1": "southamerica-west1";
|
|
3063
|
+
"us-central1": "us-central1";
|
|
3064
|
+
"us-east-1": "us-east-1";
|
|
3065
|
+
"us-east-2": "us-east-2";
|
|
3066
|
+
"us-east1": "us-east1";
|
|
3067
|
+
"us-east4": "us-east4";
|
|
3068
|
+
"us-east5": "us-east5";
|
|
3069
|
+
"us-south1": "us-south1";
|
|
3070
|
+
"us-west-1": "us-west-1";
|
|
3071
|
+
"us-west-2": "us-west-2";
|
|
3072
|
+
"us-west1": "us-west1";
|
|
3073
|
+
"us-west2": "us-west2";
|
|
3074
|
+
"us-west3": "us-west3";
|
|
3075
|
+
"us-west4": "us-west4";
|
|
3076
|
+
}>>>;
|
|
3077
|
+
}, z.core.$strip>>;
|
|
3078
|
+
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
3079
|
+
aggressive: "aggressive";
|
|
3080
|
+
conservative: "conservative";
|
|
3081
|
+
}>>;
|
|
3082
|
+
}, z.core.$strip>;
|
|
3083
|
+
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3084
|
+
cluster_id: z.ZodString;
|
|
3085
|
+
fleet_name: z.ZodString;
|
|
1378
3086
|
}, z.core.$strip>;
|
|
1379
3087
|
/**
|
|
1380
3088
|
* Successfully updated.
|
|
1381
3089
|
*/
|
|
1382
3090
|
export declare const zUpdateFleetResponse: z.ZodString;
|
|
1383
|
-
export declare const
|
|
1384
|
-
|
|
1385
|
-
path: z.ZodObject<{
|
|
1386
|
-
cluster_id: z.ZodString;
|
|
1387
|
-
}, z.core.$strip>;
|
|
1388
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1389
|
-
}, z.core.$strip>;
|
|
1390
|
-
export declare const zListClustersData: z.ZodObject<{
|
|
1391
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1392
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1393
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3091
|
+
export declare const zQueryClusterPath: z.ZodObject<{
|
|
3092
|
+
cluster_id: z.ZodString;
|
|
1394
3093
|
}, z.core.$strip>;
|
|
1395
3094
|
/**
|
|
1396
3095
|
* An array of clusters
|
|
@@ -1401,12 +3100,12 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1401
3100
|
basic: "basic";
|
|
1402
3101
|
pro: "pro";
|
|
1403
3102
|
}>;
|
|
1404
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3103
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1405
3104
|
"staging-1a": "staging-1a";
|
|
1406
3105
|
"northamerica-central-1": "northamerica-central-1";
|
|
1407
3106
|
"europe-central-1a": "europe-central-1a";
|
|
1408
3107
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1409
|
-
}
|
|
3108
|
+
}>>>;
|
|
1410
3109
|
id: z.ZodUUID;
|
|
1411
3110
|
status: z.ZodEnum<{
|
|
1412
3111
|
deleted: "deleted";
|
|
@@ -1427,50 +3126,38 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1427
3126
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1428
3127
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1429
3128
|
}, z.core.$strip>>;
|
|
1430
|
-
export declare const
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
}>>;
|
|
1449
|
-
}, z.core.$strip>;
|
|
1450
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1451
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3129
|
+
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3130
|
+
name: z.ZodString;
|
|
3131
|
+
tier: z.ZodEnum<{
|
|
3132
|
+
basic: "basic";
|
|
3133
|
+
pro: "pro";
|
|
3134
|
+
}>;
|
|
3135
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3136
|
+
"staging-1a": "staging-1a";
|
|
3137
|
+
"northamerica-central-1": "northamerica-central-1";
|
|
3138
|
+
"europe-central-1a": "europe-central-1a";
|
|
3139
|
+
"northamerica-central-1a": "northamerica-central-1a";
|
|
3140
|
+
}>>>;
|
|
3141
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3142
|
+
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
3143
|
+
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
3144
|
+
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
3145
|
+
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
3146
|
+
}>>>;
|
|
1452
3147
|
}, z.core.$strip>;
|
|
1453
3148
|
/**
|
|
1454
3149
|
* Successfully created. Returns created Cluster ID.
|
|
1455
3150
|
*/
|
|
1456
3151
|
export declare const zCreateClusterResponse: z.ZodString;
|
|
1457
|
-
export declare const
|
|
1458
|
-
|
|
1459
|
-
path: z.ZodObject<{
|
|
1460
|
-
cluster_id: z.ZodString;
|
|
1461
|
-
}, z.core.$strip>;
|
|
1462
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3152
|
+
export declare const zDeleteClusterPath: z.ZodObject<{
|
|
3153
|
+
cluster_id: z.ZodString;
|
|
1463
3154
|
}, z.core.$strip>;
|
|
1464
3155
|
/**
|
|
1465
3156
|
* Successfully deleted.
|
|
1466
3157
|
*/
|
|
1467
3158
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
1468
|
-
export declare const
|
|
1469
|
-
|
|
1470
|
-
path: z.ZodObject<{
|
|
1471
|
-
cluster_id: z.ZodString;
|
|
1472
|
-
}, z.core.$strip>;
|
|
1473
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3159
|
+
export declare const zGetClusterPath: z.ZodObject<{
|
|
3160
|
+
cluster_id: z.ZodString;
|
|
1474
3161
|
}, z.core.$strip>;
|
|
1475
3162
|
/**
|
|
1476
3163
|
* Returns a single object containing cluster details.
|
|
@@ -1481,12 +3168,12 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1481
3168
|
basic: "basic";
|
|
1482
3169
|
pro: "pro";
|
|
1483
3170
|
}>;
|
|
1484
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3171
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1485
3172
|
"staging-1a": "staging-1a";
|
|
1486
3173
|
"northamerica-central-1": "northamerica-central-1";
|
|
1487
3174
|
"europe-central-1a": "europe-central-1a";
|
|
1488
3175
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1489
|
-
}
|
|
3176
|
+
}>>>;
|
|
1490
3177
|
id: z.ZodUUID;
|
|
1491
3178
|
status: z.ZodEnum<{
|
|
1492
3179
|
deleted: "deleted";
|
|
@@ -1507,19 +3194,16 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
1507
3194
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1508
3195
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1509
3196
|
}, z.core.$strip>;
|
|
1510
|
-
export declare const
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
cluster_id: z.ZodString;
|
|
1521
|
-
}, z.core.$strip>;
|
|
1522
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3197
|
+
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3198
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3199
|
+
tier: z.ZodEnum<{
|
|
3200
|
+
basic: "basic";
|
|
3201
|
+
pro: "pro";
|
|
3202
|
+
}>;
|
|
3203
|
+
version_channel: z.ZodOptional<z.ZodString>;
|
|
3204
|
+
}, z.core.$strip>;
|
|
3205
|
+
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3206
|
+
cluster_id: z.ZodString;
|
|
1523
3207
|
}, z.core.$strip>;
|
|
1524
3208
|
/**
|
|
1525
3209
|
* Successfully updated. Returns updated cluster details.
|
|
@@ -1530,12 +3214,12 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1530
3214
|
basic: "basic";
|
|
1531
3215
|
pro: "pro";
|
|
1532
3216
|
}>;
|
|
1533
|
-
region: z.ZodOptional<z.ZodEnum<{
|
|
3217
|
+
region: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1534
3218
|
"staging-1a": "staging-1a";
|
|
1535
3219
|
"northamerica-central-1": "northamerica-central-1";
|
|
1536
3220
|
"europe-central-1a": "europe-central-1a";
|
|
1537
3221
|
"northamerica-central-1a": "northamerica-central-1a";
|
|
1538
|
-
}
|
|
3222
|
+
}>>>;
|
|
1539
3223
|
id: z.ZodUUID;
|
|
1540
3224
|
status: z.ZodEnum<{
|
|
1541
3225
|
deleted: "deleted";
|
|
@@ -1556,12 +3240,8 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
1556
3240
|
ready: z.ZodOptional<z.ZodBoolean>;
|
|
1557
3241
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
1558
3242
|
}, z.core.$strip>;
|
|
1559
|
-
export declare const
|
|
1560
|
-
|
|
1561
|
-
path: z.ZodObject<{
|
|
1562
|
-
cluster_id: z.ZodString;
|
|
1563
|
-
}, z.core.$strip>;
|
|
1564
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3243
|
+
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3244
|
+
cluster_id: z.ZodString;
|
|
1565
3245
|
}, z.core.$strip>;
|
|
1566
3246
|
/**
|
|
1567
3247
|
* An object of cluster join information
|
|
@@ -1584,11 +3264,6 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
1584
3264
|
gcp_workload_identity_provider: z.ZodString;
|
|
1585
3265
|
}, z.core.$strip>;
|
|
1586
3266
|
}, z.core.$strip>;
|
|
1587
|
-
export declare const zListInvitesData: z.ZodObject<{
|
|
1588
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1589
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1590
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1591
|
-
}, z.core.$strip>;
|
|
1592
3267
|
/**
|
|
1593
3268
|
* An array of invites
|
|
1594
3269
|
*/
|
|
@@ -1599,12 +3274,8 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1599
3274
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1600
3275
|
code: z.ZodOptional<z.ZodString>;
|
|
1601
3276
|
}, z.core.$strip>>;
|
|
1602
|
-
export declare const
|
|
1603
|
-
|
|
1604
|
-
email: z.ZodOptional<z.ZodString>;
|
|
1605
|
-
}, z.core.$strip>;
|
|
1606
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1607
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3277
|
+
export declare const zCreateInviteBody: z.ZodObject<{
|
|
3278
|
+
email: z.ZodOptional<z.ZodString>;
|
|
1608
3279
|
}, z.core.$strip>;
|
|
1609
3280
|
/**
|
|
1610
3281
|
* Successfully created. Returns created invite details.
|
|
@@ -1616,12 +3287,8 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
1616
3287
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1617
3288
|
code: z.ZodOptional<z.ZodString>;
|
|
1618
3289
|
}, z.core.$strip>;
|
|
1619
|
-
export declare const
|
|
1620
|
-
|
|
1621
|
-
path: z.ZodObject<{
|
|
1622
|
-
code: z.ZodString;
|
|
1623
|
-
}, z.core.$strip>;
|
|
1624
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3290
|
+
export declare const zGetInvitePath: z.ZodObject<{
|
|
3291
|
+
code: z.ZodString;
|
|
1625
3292
|
}, z.core.$strip>;
|
|
1626
3293
|
/**
|
|
1627
3294
|
* Returns a single object containing invite details.
|
|
@@ -1633,17 +3300,8 @@ export declare const zGetInviteResponse: z.ZodObject<{
|
|
|
1633
3300
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1634
3301
|
code: z.ZodOptional<z.ZodString>;
|
|
1635
3302
|
}, z.core.$strip>;
|
|
1636
|
-
export declare const
|
|
1637
|
-
|
|
1638
|
-
path: z.ZodObject<{
|
|
1639
|
-
email: z.ZodString;
|
|
1640
|
-
}, z.core.$strip>;
|
|
1641
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1642
|
-
}, z.core.$strip>;
|
|
1643
|
-
export declare const zListMarketplaceChartsData: z.ZodObject<{
|
|
1644
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1645
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1646
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3303
|
+
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
3304
|
+
email: z.ZodString;
|
|
1647
3305
|
}, z.core.$strip>;
|
|
1648
3306
|
/**
|
|
1649
3307
|
* An array of chart listings in the marketplace.
|
|
@@ -1669,13 +3327,9 @@ export declare const zListMarketplaceChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1669
3327
|
}, z.core.$strip>>>;
|
|
1670
3328
|
}, z.core.$strip>>;
|
|
1671
3329
|
}, z.core.$strip>>;
|
|
1672
|
-
export declare const
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
chart_name: z.ZodString;
|
|
1676
|
-
version_channel: z.ZodString;
|
|
1677
|
-
}, z.core.$strip>;
|
|
1678
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3330
|
+
export declare const zGetMarketplaceChartFilesPath: z.ZodObject<{
|
|
3331
|
+
chart_name: z.ZodString;
|
|
3332
|
+
version_channel: z.ZodString;
|
|
1679
3333
|
}, z.core.$strip>;
|
|
1680
3334
|
/**
|
|
1681
3335
|
* Returns an object containing the chart files for the latest matching version.
|
|
@@ -1685,15 +3339,14 @@ export declare const zGetMarketplaceChartFilesResponse: z.ZodObject<{
|
|
|
1685
3339
|
valuesYaml: z.ZodOptional<z.ZodString>;
|
|
1686
3340
|
valuesSchemaJson: z.ZodOptional<z.ZodString>;
|
|
1687
3341
|
}, z.core.$strip>;
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3342
|
+
/**
|
|
3343
|
+
* JSON-RPC 2.0 request payload
|
|
3344
|
+
*/
|
|
3345
|
+
export declare const zPostMcpBody: z.ZodObject<{
|
|
3346
|
+
jsonrpc: z.ZodOptional<z.ZodString>;
|
|
3347
|
+
method: z.ZodOptional<z.ZodString>;
|
|
3348
|
+
id: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodNumber]>>;
|
|
3349
|
+
params: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1697
3350
|
}, z.core.$strip>;
|
|
1698
3351
|
/**
|
|
1699
3352
|
* JSON-RPC 2.0 success or error response
|
|
@@ -1707,11 +3360,6 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
1707
3360
|
message: z.ZodOptional<z.ZodString>;
|
|
1708
3361
|
}, z.core.$strip>>;
|
|
1709
3362
|
}, z.core.$strip>;
|
|
1710
|
-
export declare const zGetOrganizationData: z.ZodObject<{
|
|
1711
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1712
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1713
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1714
|
-
}, z.core.$strip>;
|
|
1715
3363
|
/**
|
|
1716
3364
|
* Returns a single object containing organization details.
|
|
1717
3365
|
*/
|
|
@@ -1731,8 +3379,6 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1731
3379
|
id: z.ZodString;
|
|
1732
3380
|
label: z.ZodString;
|
|
1733
3381
|
}, z.core.$strip>>;
|
|
1734
|
-
copilot_user_hourly_tokens: z.ZodInt;
|
|
1735
|
-
copilot_organization_hourly_tokens: z.ZodInt;
|
|
1736
3382
|
cfcr_storage_gb: z.ZodInt;
|
|
1737
3383
|
}, z.core.$strip>;
|
|
1738
3384
|
status: z.ZodEnum<{
|
|
@@ -1741,21 +3387,12 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1741
3387
|
suspended: "suspended";
|
|
1742
3388
|
}>;
|
|
1743
3389
|
}, z.core.$strip>;
|
|
1744
|
-
export declare const
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
password: z.ZodString;
|
|
1751
|
-
}, z.core.$strip>;
|
|
1752
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1753
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1754
|
-
}, z.core.$strip>;
|
|
1755
|
-
export declare const zListRepositoriesData: z.ZodObject<{
|
|
1756
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1757
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1758
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3390
|
+
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3391
|
+
email: z.ZodEmail;
|
|
3392
|
+
first_name: z.ZodString;
|
|
3393
|
+
last_name: z.ZodString;
|
|
3394
|
+
company_name: z.ZodString;
|
|
3395
|
+
password: z.ZodString;
|
|
1759
3396
|
}, z.core.$strip>;
|
|
1760
3397
|
/**
|
|
1761
3398
|
* List of repositories
|
|
@@ -1765,13 +3402,9 @@ export declare const zListRepositoriesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1765
3402
|
region: z.ZodString;
|
|
1766
3403
|
uri: z.ZodString;
|
|
1767
3404
|
}, z.core.$strip>>;
|
|
1768
|
-
export declare const
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
region: z.ZodString;
|
|
1772
|
-
repository: z.ZodString;
|
|
1773
|
-
}, z.core.$strip>;
|
|
1774
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3405
|
+
export declare const zListTagsPath: z.ZodObject<{
|
|
3406
|
+
region: z.ZodString;
|
|
3407
|
+
repository: z.ZodString;
|
|
1775
3408
|
}, z.core.$strip>;
|
|
1776
3409
|
/**
|
|
1777
3410
|
* Repository with tags
|
|
@@ -1788,23 +3421,15 @@ export declare const zListTagsResponse: z.ZodObject<{
|
|
|
1788
3421
|
}, z.core.$strip>>;
|
|
1789
3422
|
totalSize: z.ZodNumber;
|
|
1790
3423
|
}, z.core.$strip>;
|
|
1791
|
-
export declare const
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
export declare const zGetTagData: z.ZodObject<{
|
|
1801
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1802
|
-
path: z.ZodObject<{
|
|
1803
|
-
region: z.ZodString;
|
|
1804
|
-
repository: z.ZodString;
|
|
1805
|
-
tag: z.ZodString;
|
|
1806
|
-
}, z.core.$strip>;
|
|
1807
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3424
|
+
export declare const zDeleteTagPath: z.ZodObject<{
|
|
3425
|
+
region: z.ZodString;
|
|
3426
|
+
repository: z.ZodString;
|
|
3427
|
+
tag: z.ZodString;
|
|
3428
|
+
}, z.core.$strip>;
|
|
3429
|
+
export declare const zGetTagPath: z.ZodObject<{
|
|
3430
|
+
region: z.ZodString;
|
|
3431
|
+
repository: z.ZodString;
|
|
3432
|
+
tag: z.ZodString;
|
|
1808
3433
|
}, z.core.$strip>;
|
|
1809
3434
|
/**
|
|
1810
3435
|
* Tag details
|
|
@@ -1838,11 +3463,201 @@ export declare const zGetTagResponse: z.ZodObject<{
|
|
|
1838
3463
|
repository: z.ZodString;
|
|
1839
3464
|
uri: z.ZodString;
|
|
1840
3465
|
}, z.core.$strip>;
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
3466
|
+
/**
|
|
3467
|
+
* Tickets for the organization.
|
|
3468
|
+
*/
|
|
3469
|
+
export declare const zListTicketsResponse: z.ZodObject<{
|
|
3470
|
+
items: z.ZodArray<z.ZodObject<{
|
|
3471
|
+
id: z.ZodString;
|
|
3472
|
+
status: z.ZodEnum<{
|
|
3473
|
+
closed: "closed";
|
|
3474
|
+
waiting_on_us: "waiting_on_us";
|
|
3475
|
+
waiting_on_user: "waiting_on_user";
|
|
3476
|
+
}>;
|
|
3477
|
+
category: z.ZodEnum<{
|
|
3478
|
+
billing: "billing";
|
|
3479
|
+
technical: "technical";
|
|
3480
|
+
general: "general";
|
|
3481
|
+
}>;
|
|
3482
|
+
summary: z.ZodString;
|
|
3483
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3484
|
+
date_created: z.ZodISODateTime;
|
|
3485
|
+
date_updated: z.ZodISODateTime;
|
|
3486
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3487
|
+
id: z.ZodString;
|
|
3488
|
+
type: z.ZodEnum<{
|
|
3489
|
+
customer_reply: "customer_reply";
|
|
3490
|
+
agent_reply: "agent_reply";
|
|
3491
|
+
}>;
|
|
3492
|
+
body: z.ZodString;
|
|
3493
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3494
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3495
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3496
|
+
id: z.ZodString;
|
|
3497
|
+
filename: z.ZodString;
|
|
3498
|
+
content_type: z.ZodString;
|
|
3499
|
+
size: z.ZodInt;
|
|
3500
|
+
}, z.core.$strip>>>;
|
|
3501
|
+
date_created: z.ZodISODateTime;
|
|
3502
|
+
}, z.core.$strip>>>;
|
|
3503
|
+
}, z.core.$strip>>;
|
|
3504
|
+
}, z.core.$strip>;
|
|
3505
|
+
export declare const zCreateTicketBody: z.ZodObject<{
|
|
3506
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3507
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3508
|
+
}, z.core.$strip>;
|
|
3509
|
+
/**
|
|
3510
|
+
* Ticket created.
|
|
3511
|
+
*/
|
|
3512
|
+
export declare const zCreateTicketResponse: z.ZodObject<{
|
|
3513
|
+
id: z.ZodString;
|
|
3514
|
+
status: z.ZodEnum<{
|
|
3515
|
+
closed: "closed";
|
|
3516
|
+
waiting_on_us: "waiting_on_us";
|
|
3517
|
+
waiting_on_user: "waiting_on_user";
|
|
3518
|
+
}>;
|
|
3519
|
+
category: z.ZodEnum<{
|
|
3520
|
+
billing: "billing";
|
|
3521
|
+
technical: "technical";
|
|
3522
|
+
general: "general";
|
|
3523
|
+
}>;
|
|
3524
|
+
summary: z.ZodString;
|
|
3525
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3526
|
+
date_created: z.ZodISODateTime;
|
|
3527
|
+
date_updated: z.ZodISODateTime;
|
|
3528
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3529
|
+
id: z.ZodString;
|
|
3530
|
+
type: z.ZodEnum<{
|
|
3531
|
+
customer_reply: "customer_reply";
|
|
3532
|
+
agent_reply: "agent_reply";
|
|
3533
|
+
}>;
|
|
3534
|
+
body: z.ZodString;
|
|
3535
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3536
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3537
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3538
|
+
id: z.ZodString;
|
|
3539
|
+
filename: z.ZodString;
|
|
3540
|
+
content_type: z.ZodString;
|
|
3541
|
+
size: z.ZodInt;
|
|
3542
|
+
}, z.core.$strip>>>;
|
|
3543
|
+
date_created: z.ZodISODateTime;
|
|
3544
|
+
}, z.core.$strip>>>;
|
|
3545
|
+
}, z.core.$strip>;
|
|
3546
|
+
export declare const zCloseTicketPath: z.ZodObject<{
|
|
3547
|
+
ticket_id: z.ZodString;
|
|
3548
|
+
}, z.core.$strip>;
|
|
3549
|
+
/**
|
|
3550
|
+
* Ticket closed.
|
|
3551
|
+
*/
|
|
3552
|
+
export declare const zCloseTicketResponse: 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
|
+
export declare const zGetTicketPath: z.ZodObject<{
|
|
3587
|
+
ticket_id: z.ZodString;
|
|
3588
|
+
}, z.core.$strip>;
|
|
3589
|
+
/**
|
|
3590
|
+
* Ticket with messages (internal notes excluded).
|
|
3591
|
+
*/
|
|
3592
|
+
export declare const zGetTicketResponse: z.ZodObject<{
|
|
3593
|
+
id: z.ZodString;
|
|
3594
|
+
status: z.ZodEnum<{
|
|
3595
|
+
closed: "closed";
|
|
3596
|
+
waiting_on_us: "waiting_on_us";
|
|
3597
|
+
waiting_on_user: "waiting_on_user";
|
|
3598
|
+
}>;
|
|
3599
|
+
category: z.ZodEnum<{
|
|
3600
|
+
billing: "billing";
|
|
3601
|
+
technical: "technical";
|
|
3602
|
+
general: "general";
|
|
3603
|
+
}>;
|
|
3604
|
+
summary: z.ZodString;
|
|
3605
|
+
closed_at: z.ZodOptional<z.ZodISODateTime>;
|
|
3606
|
+
date_created: z.ZodISODateTime;
|
|
3607
|
+
date_updated: z.ZodISODateTime;
|
|
3608
|
+
messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3609
|
+
id: z.ZodString;
|
|
3610
|
+
type: z.ZodEnum<{
|
|
3611
|
+
customer_reply: "customer_reply";
|
|
3612
|
+
agent_reply: "agent_reply";
|
|
3613
|
+
}>;
|
|
3614
|
+
body: z.ZodString;
|
|
3615
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3616
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3617
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3618
|
+
id: z.ZodString;
|
|
3619
|
+
filename: z.ZodString;
|
|
3620
|
+
content_type: z.ZodString;
|
|
3621
|
+
size: z.ZodInt;
|
|
3622
|
+
}, z.core.$strip>>>;
|
|
3623
|
+
date_created: z.ZodISODateTime;
|
|
3624
|
+
}, z.core.$strip>>>;
|
|
3625
|
+
}, z.core.$strip>;
|
|
3626
|
+
export declare const zReplyTicketBody: z.ZodObject<{
|
|
3627
|
+
payload: z.ZodOptional<z.ZodString>;
|
|
3628
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3629
|
+
}, z.core.$strip>;
|
|
3630
|
+
export declare const zReplyTicketPath: z.ZodObject<{
|
|
3631
|
+
ticket_id: z.ZodString;
|
|
3632
|
+
}, z.core.$strip>;
|
|
3633
|
+
/**
|
|
3634
|
+
* Reply appended.
|
|
3635
|
+
*/
|
|
3636
|
+
export declare const zReplyTicketResponse: z.ZodObject<{
|
|
3637
|
+
id: z.ZodString;
|
|
3638
|
+
type: z.ZodEnum<{
|
|
3639
|
+
customer_reply: "customer_reply";
|
|
3640
|
+
agent_reply: "agent_reply";
|
|
3641
|
+
}>;
|
|
3642
|
+
body: z.ZodString;
|
|
3643
|
+
author_first_name: z.ZodOptional<z.ZodString>;
|
|
3644
|
+
author_last_name: z.ZodOptional<z.ZodString>;
|
|
3645
|
+
attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3646
|
+
id: z.ZodString;
|
|
3647
|
+
filename: z.ZodString;
|
|
3648
|
+
content_type: z.ZodString;
|
|
3649
|
+
size: z.ZodInt;
|
|
3650
|
+
}, z.core.$strip>>>;
|
|
3651
|
+
date_created: z.ZodISODateTime;
|
|
3652
|
+
}, z.core.$strip>;
|
|
3653
|
+
export declare const zGetTicketAttachmentPath: z.ZodObject<{
|
|
3654
|
+
ticket_id: z.ZodString;
|
|
3655
|
+
attachment_id: z.ZodString;
|
|
1845
3656
|
}, z.core.$strip>;
|
|
3657
|
+
/**
|
|
3658
|
+
* Attachment binary stream.
|
|
3659
|
+
*/
|
|
3660
|
+
export declare const zGetTicketAttachmentResponse: z.ZodString;
|
|
1846
3661
|
/**
|
|
1847
3662
|
* Returns a list of access token details with masked secrets.
|
|
1848
3663
|
*/
|
|
@@ -1856,16 +3671,12 @@ export declare const zListTokensResponse: z.ZodArray<z.ZodObject<{
|
|
|
1856
3671
|
secret: z.ZodOptional<z.ZodString>;
|
|
1857
3672
|
date_created: z.ZodISODateTime;
|
|
1858
3673
|
}, z.core.$strip>>;
|
|
1859
|
-
export declare const
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
}>;
|
|
1866
|
-
}, z.core.$strip>;
|
|
1867
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1868
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3674
|
+
export declare const zCreateTokenBody: z.ZodObject<{
|
|
3675
|
+
name: z.ZodString;
|
|
3676
|
+
role: z.ZodEnum<{
|
|
3677
|
+
Administrator: "Administrator";
|
|
3678
|
+
User: "User";
|
|
3679
|
+
}>;
|
|
1869
3680
|
}, z.core.$strip>;
|
|
1870
3681
|
/**
|
|
1871
3682
|
* Successfully created. Returns created token details with unmasked/raw secret.
|
|
@@ -1880,19 +3691,11 @@ export declare const zCreateTokenResponse: z.ZodObject<{
|
|
|
1880
3691
|
secret: z.ZodOptional<z.ZodString>;
|
|
1881
3692
|
date_created: z.ZodISODateTime;
|
|
1882
3693
|
}, z.core.$strip>;
|
|
1883
|
-
export declare const
|
|
1884
|
-
|
|
1885
|
-
path: z.ZodObject<{
|
|
1886
|
-
token_id: z.ZodString;
|
|
1887
|
-
}, z.core.$strip>;
|
|
1888
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3694
|
+
export declare const zDeleteTokenPath: z.ZodObject<{
|
|
3695
|
+
token_id: z.ZodString;
|
|
1889
3696
|
}, z.core.$strip>;
|
|
1890
|
-
export declare const
|
|
1891
|
-
|
|
1892
|
-
path: z.ZodObject<{
|
|
1893
|
-
token_id: z.ZodString;
|
|
1894
|
-
}, z.core.$strip>;
|
|
1895
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3697
|
+
export declare const zGetTokenPath: z.ZodObject<{
|
|
3698
|
+
token_id: z.ZodString;
|
|
1896
3699
|
}, z.core.$strip>;
|
|
1897
3700
|
/**
|
|
1898
3701
|
* Returns access token details with masked secret.
|
|
@@ -1907,18 +3710,15 @@ export declare const zGetTokenResponse: z.ZodObject<{
|
|
|
1907
3710
|
secret: z.ZodOptional<z.ZodString>;
|
|
1908
3711
|
date_created: z.ZodISODateTime;
|
|
1909
3712
|
}, z.core.$strip>;
|
|
1910
|
-
export declare const
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
token_id: z.ZodString;
|
|
1920
|
-
}, z.core.$strip>;
|
|
1921
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3713
|
+
export declare const zUpdateTokenBody: z.ZodObject<{
|
|
3714
|
+
name: z.ZodOptional<z.ZodString>;
|
|
3715
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3716
|
+
Administrator: "Administrator";
|
|
3717
|
+
User: "User";
|
|
3718
|
+
}>>;
|
|
3719
|
+
}, z.core.$strip>;
|
|
3720
|
+
export declare const zUpdateTokenPath: z.ZodObject<{
|
|
3721
|
+
token_id: z.ZodString;
|
|
1922
3722
|
}, z.core.$strip>;
|
|
1923
3723
|
/**
|
|
1924
3724
|
* Successfully updated. Returns updated token details with masked secret.
|
|
@@ -1933,12 +3733,8 @@ export declare const zUpdateTokenResponse: z.ZodObject<{
|
|
|
1933
3733
|
secret: z.ZodOptional<z.ZodString>;
|
|
1934
3734
|
date_created: z.ZodISODateTime;
|
|
1935
3735
|
}, z.core.$strip>;
|
|
1936
|
-
export declare const
|
|
1937
|
-
|
|
1938
|
-
path: z.ZodObject<{
|
|
1939
|
-
token_id: z.ZodString;
|
|
1940
|
-
}, z.core.$strip>;
|
|
1941
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3736
|
+
export declare const zRegenerateTokenPath: z.ZodObject<{
|
|
3737
|
+
token_id: z.ZodString;
|
|
1942
3738
|
}, z.core.$strip>;
|
|
1943
3739
|
/**
|
|
1944
3740
|
* Successfully updated. Returns updated token details with unmasked / raw secret.
|
|
@@ -1953,12 +3749,8 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
|
|
|
1953
3749
|
secret: z.ZodOptional<z.ZodString>;
|
|
1954
3750
|
date_created: z.ZodISODateTime;
|
|
1955
3751
|
}, z.core.$strip>;
|
|
1956
|
-
export declare const
|
|
1957
|
-
|
|
1958
|
-
path: z.ZodObject<{
|
|
1959
|
-
email: z.ZodString;
|
|
1960
|
-
}, z.core.$strip>;
|
|
1961
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3752
|
+
export declare const zListUserOrganizationsPath: z.ZodObject<{
|
|
3753
|
+
email: z.ZodString;
|
|
1962
3754
|
}, z.core.$strip>;
|
|
1963
3755
|
/**
|
|
1964
3756
|
* An array of organizations the user belongs to.
|
|
@@ -1967,11 +3759,6 @@ export declare const zListUserOrganizationsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1967
3759
|
realm: z.ZodOptional<z.ZodString>;
|
|
1968
3760
|
displayName: z.ZodOptional<z.ZodString>;
|
|
1969
3761
|
}, z.core.$strip>>;
|
|
1970
|
-
export declare const zListUsersData: z.ZodObject<{
|
|
1971
|
-
body: z.ZodOptional<z.ZodNever>;
|
|
1972
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
1973
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
1974
|
-
}, z.core.$strip>;
|
|
1975
3762
|
/**
|
|
1976
3763
|
* An array of users
|
|
1977
3764
|
*/
|
|
@@ -1990,24 +3777,20 @@ export declare const zListUsersResponse: z.ZodArray<z.ZodObject<{
|
|
|
1990
3777
|
id: z.ZodUUID;
|
|
1991
3778
|
date_created: z.ZodISODateTime;
|
|
1992
3779
|
}, z.core.$strip>>;
|
|
1993
|
-
export declare const
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
}>>;
|
|
2008
|
-
}, z.core.$strip>;
|
|
2009
|
-
path: z.ZodOptional<z.ZodNever>;
|
|
2010
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3780
|
+
export declare const zCreateUserBody: z.ZodObject<{
|
|
3781
|
+
email: z.ZodEmail;
|
|
3782
|
+
first_name: z.ZodString;
|
|
3783
|
+
last_name: z.ZodString;
|
|
3784
|
+
code: z.ZodString;
|
|
3785
|
+
password: z.ZodString;
|
|
3786
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
3787
|
+
active: "active";
|
|
3788
|
+
inactive: "inactive";
|
|
3789
|
+
}>>;
|
|
3790
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3791
|
+
Administrator: "Administrator";
|
|
3792
|
+
User: "User";
|
|
3793
|
+
}>>;
|
|
2011
3794
|
}, z.core.$strip>;
|
|
2012
3795
|
/**
|
|
2013
3796
|
* Successfully created. Returns created user details.
|
|
@@ -2027,12 +3810,8 @@ export declare const zCreateUserResponse: z.ZodObject<{
|
|
|
2027
3810
|
id: z.ZodUUID;
|
|
2028
3811
|
date_created: z.ZodISODateTime;
|
|
2029
3812
|
}, z.core.$strip>;
|
|
2030
|
-
export declare const
|
|
2031
|
-
|
|
2032
|
-
path: z.ZodObject<{
|
|
2033
|
-
user_id: z.ZodString;
|
|
2034
|
-
}, z.core.$strip>;
|
|
2035
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3813
|
+
export declare const zDeleteUserPath: z.ZodObject<{
|
|
3814
|
+
user_id: z.ZodString;
|
|
2036
3815
|
}, z.core.$strip>;
|
|
2037
3816
|
/**
|
|
2038
3817
|
* User profile information
|
|
@@ -2052,12 +3831,8 @@ export declare const zDeleteUserResponse: z.ZodObject<{
|
|
|
2052
3831
|
id: z.ZodUUID;
|
|
2053
3832
|
date_created: z.ZodISODateTime;
|
|
2054
3833
|
}, z.core.$strip>;
|
|
2055
|
-
export declare const
|
|
2056
|
-
|
|
2057
|
-
path: z.ZodObject<{
|
|
2058
|
-
user_id: z.ZodString;
|
|
2059
|
-
}, z.core.$strip>;
|
|
2060
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3834
|
+
export declare const zGetUserPath: z.ZodObject<{
|
|
3835
|
+
user_id: z.ZodString;
|
|
2061
3836
|
}, z.core.$strip>;
|
|
2062
3837
|
/**
|
|
2063
3838
|
* User profile information
|
|
@@ -2077,24 +3852,21 @@ export declare const zGetUserResponse: z.ZodObject<{
|
|
|
2077
3852
|
id: z.ZodUUID;
|
|
2078
3853
|
date_created: z.ZodISODateTime;
|
|
2079
3854
|
}, z.core.$strip>;
|
|
2080
|
-
export declare const
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
user_id: z.ZodString;
|
|
2096
|
-
}, z.core.$strip>;
|
|
2097
|
-
query: z.ZodOptional<z.ZodNever>;
|
|
3855
|
+
export declare const zUpdateUserBody: z.ZodObject<{
|
|
3856
|
+
email: z.ZodOptional<z.ZodEmail>;
|
|
3857
|
+
first_name: z.ZodOptional<z.ZodString>;
|
|
3858
|
+
last_name: z.ZodOptional<z.ZodString>;
|
|
3859
|
+
role: z.ZodOptional<z.ZodEnum<{
|
|
3860
|
+
Administrator: "Administrator";
|
|
3861
|
+
User: "User";
|
|
3862
|
+
}>>;
|
|
3863
|
+
status: z.ZodOptional<z.ZodEnum<{
|
|
3864
|
+
active: "active";
|
|
3865
|
+
inactive: "inactive";
|
|
3866
|
+
}>>;
|
|
3867
|
+
}, z.core.$strip>;
|
|
3868
|
+
export declare const zUpdateUserPath: z.ZodObject<{
|
|
3869
|
+
user_id: z.ZodString;
|
|
2098
3870
|
}, z.core.$strip>;
|
|
2099
3871
|
/**
|
|
2100
3872
|
* Successfully created. Returns created user details.
|