@mizchi/k1c 0.1.0 → 0.3.0
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/README.md +8 -6
- package/dist/cli/main.js +21 -1
- package/dist/ingress/router-template.d.ts +30 -0
- package/dist/ingress/router-template.js +50 -0
- package/dist/manifest/lower.js +155 -1
- package/dist/manifest/schemas.d.ts +1568 -111
- package/dist/manifest/schemas.js +32 -0
- package/dist/manifest/types.d.ts +33 -1
- package/dist/providers/worker.d.ts +8 -0
- package/dist/providers/worker.js +22 -0
- package/dist/reconciler/plan.js +42 -1
- package/package.json +1 -1
|
@@ -229,6 +229,20 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
229
229
|
}, {
|
|
230
230
|
dataset: string;
|
|
231
231
|
}>>;
|
|
232
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
233
|
+
certificateId: z.ZodString;
|
|
234
|
+
}, "strip", z.ZodTypeAny, {
|
|
235
|
+
certificateId: string;
|
|
236
|
+
}, {
|
|
237
|
+
certificateId: string;
|
|
238
|
+
}>>;
|
|
239
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
240
|
+
pipelineId: z.ZodString;
|
|
241
|
+
}, "strip", z.ZodTypeAny, {
|
|
242
|
+
pipelineId: string;
|
|
243
|
+
}, {
|
|
244
|
+
pipelineId: string;
|
|
245
|
+
}>>;
|
|
232
246
|
}, "strip", z.ZodTypeAny, {
|
|
233
247
|
name: string;
|
|
234
248
|
r2BucketRef?: {
|
|
@@ -255,6 +269,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
255
269
|
analyticsEngineRef?: {
|
|
256
270
|
dataset: string;
|
|
257
271
|
} | undefined;
|
|
272
|
+
mtlsCertificateRef?: {
|
|
273
|
+
certificateId: string;
|
|
274
|
+
} | undefined;
|
|
275
|
+
pipelinesRef?: {
|
|
276
|
+
pipelineId: string;
|
|
277
|
+
} | undefined;
|
|
258
278
|
}, {
|
|
259
279
|
name: string;
|
|
260
280
|
r2BucketRef?: {
|
|
@@ -281,6 +301,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
281
301
|
analyticsEngineRef?: {
|
|
282
302
|
dataset: string;
|
|
283
303
|
} | undefined;
|
|
304
|
+
mtlsCertificateRef?: {
|
|
305
|
+
certificateId: string;
|
|
306
|
+
} | undefined;
|
|
307
|
+
pipelinesRef?: {
|
|
308
|
+
pipelineId: string;
|
|
309
|
+
} | undefined;
|
|
284
310
|
}>, "many">>;
|
|
285
311
|
}, "strip", z.ZodTypeAny, {
|
|
286
312
|
containers: {
|
|
@@ -331,6 +357,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
331
357
|
analyticsEngineRef?: {
|
|
332
358
|
dataset: string;
|
|
333
359
|
} | undefined;
|
|
360
|
+
mtlsCertificateRef?: {
|
|
361
|
+
certificateId: string;
|
|
362
|
+
} | undefined;
|
|
363
|
+
pipelinesRef?: {
|
|
364
|
+
pipelineId: string;
|
|
365
|
+
} | undefined;
|
|
334
366
|
}[] | undefined;
|
|
335
367
|
}, {
|
|
336
368
|
containers: {
|
|
@@ -381,6 +413,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
381
413
|
analyticsEngineRef?: {
|
|
382
414
|
dataset: string;
|
|
383
415
|
} | undefined;
|
|
416
|
+
mtlsCertificateRef?: {
|
|
417
|
+
certificateId: string;
|
|
418
|
+
} | undefined;
|
|
419
|
+
pipelinesRef?: {
|
|
420
|
+
pipelineId: string;
|
|
421
|
+
} | undefined;
|
|
384
422
|
}[] | undefined;
|
|
385
423
|
}>;
|
|
386
424
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -433,6 +471,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
433
471
|
analyticsEngineRef?: {
|
|
434
472
|
dataset: string;
|
|
435
473
|
} | undefined;
|
|
474
|
+
mtlsCertificateRef?: {
|
|
475
|
+
certificateId: string;
|
|
476
|
+
} | undefined;
|
|
477
|
+
pipelinesRef?: {
|
|
478
|
+
pipelineId: string;
|
|
479
|
+
} | undefined;
|
|
436
480
|
}[] | undefined;
|
|
437
481
|
};
|
|
438
482
|
metadata?: {
|
|
@@ -491,6 +535,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
491
535
|
analyticsEngineRef?: {
|
|
492
536
|
dataset: string;
|
|
493
537
|
} | undefined;
|
|
538
|
+
mtlsCertificateRef?: {
|
|
539
|
+
certificateId: string;
|
|
540
|
+
} | undefined;
|
|
541
|
+
pipelinesRef?: {
|
|
542
|
+
pipelineId: string;
|
|
543
|
+
} | undefined;
|
|
494
544
|
}[] | undefined;
|
|
495
545
|
};
|
|
496
546
|
metadata?: {
|
|
@@ -554,6 +604,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
554
604
|
analyticsEngineRef?: {
|
|
555
605
|
dataset: string;
|
|
556
606
|
} | undefined;
|
|
607
|
+
mtlsCertificateRef?: {
|
|
608
|
+
certificateId: string;
|
|
609
|
+
} | undefined;
|
|
610
|
+
pipelinesRef?: {
|
|
611
|
+
pipelineId: string;
|
|
612
|
+
} | undefined;
|
|
557
613
|
}[] | undefined;
|
|
558
614
|
};
|
|
559
615
|
metadata?: {
|
|
@@ -618,6 +674,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
618
674
|
analyticsEngineRef?: {
|
|
619
675
|
dataset: string;
|
|
620
676
|
} | undefined;
|
|
677
|
+
mtlsCertificateRef?: {
|
|
678
|
+
certificateId: string;
|
|
679
|
+
} | undefined;
|
|
680
|
+
pipelinesRef?: {
|
|
681
|
+
pipelineId: string;
|
|
682
|
+
} | undefined;
|
|
621
683
|
}[] | undefined;
|
|
622
684
|
};
|
|
623
685
|
metadata?: {
|
|
@@ -691,6 +753,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
691
753
|
analyticsEngineRef?: {
|
|
692
754
|
dataset: string;
|
|
693
755
|
} | undefined;
|
|
756
|
+
mtlsCertificateRef?: {
|
|
757
|
+
certificateId: string;
|
|
758
|
+
} | undefined;
|
|
759
|
+
pipelinesRef?: {
|
|
760
|
+
pipelineId: string;
|
|
761
|
+
} | undefined;
|
|
694
762
|
}[] | undefined;
|
|
695
763
|
};
|
|
696
764
|
metadata?: {
|
|
@@ -765,6 +833,12 @@ export declare const deploymentSchema: z.ZodObject<{
|
|
|
765
833
|
analyticsEngineRef?: {
|
|
766
834
|
dataset: string;
|
|
767
835
|
} | undefined;
|
|
836
|
+
mtlsCertificateRef?: {
|
|
837
|
+
certificateId: string;
|
|
838
|
+
} | undefined;
|
|
839
|
+
pipelinesRef?: {
|
|
840
|
+
pipelineId: string;
|
|
841
|
+
} | undefined;
|
|
768
842
|
}[] | undefined;
|
|
769
843
|
};
|
|
770
844
|
metadata?: {
|
|
@@ -1009,6 +1083,20 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1009
1083
|
}, {
|
|
1010
1084
|
dataset: string;
|
|
1011
1085
|
}>>;
|
|
1086
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
1087
|
+
certificateId: z.ZodString;
|
|
1088
|
+
}, "strip", z.ZodTypeAny, {
|
|
1089
|
+
certificateId: string;
|
|
1090
|
+
}, {
|
|
1091
|
+
certificateId: string;
|
|
1092
|
+
}>>;
|
|
1093
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
1094
|
+
pipelineId: z.ZodString;
|
|
1095
|
+
}, "strip", z.ZodTypeAny, {
|
|
1096
|
+
pipelineId: string;
|
|
1097
|
+
}, {
|
|
1098
|
+
pipelineId: string;
|
|
1099
|
+
}>>;
|
|
1012
1100
|
}, "strip", z.ZodTypeAny, {
|
|
1013
1101
|
name: string;
|
|
1014
1102
|
r2BucketRef?: {
|
|
@@ -1035,6 +1123,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1035
1123
|
analyticsEngineRef?: {
|
|
1036
1124
|
dataset: string;
|
|
1037
1125
|
} | undefined;
|
|
1126
|
+
mtlsCertificateRef?: {
|
|
1127
|
+
certificateId: string;
|
|
1128
|
+
} | undefined;
|
|
1129
|
+
pipelinesRef?: {
|
|
1130
|
+
pipelineId: string;
|
|
1131
|
+
} | undefined;
|
|
1038
1132
|
}, {
|
|
1039
1133
|
name: string;
|
|
1040
1134
|
r2BucketRef?: {
|
|
@@ -1061,6 +1155,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1061
1155
|
analyticsEngineRef?: {
|
|
1062
1156
|
dataset: string;
|
|
1063
1157
|
} | undefined;
|
|
1158
|
+
mtlsCertificateRef?: {
|
|
1159
|
+
certificateId: string;
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
pipelinesRef?: {
|
|
1162
|
+
pipelineId: string;
|
|
1163
|
+
} | undefined;
|
|
1064
1164
|
}>, "many">>;
|
|
1065
1165
|
}, "strip", z.ZodTypeAny, {
|
|
1066
1166
|
containers: {
|
|
@@ -1111,6 +1211,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1111
1211
|
analyticsEngineRef?: {
|
|
1112
1212
|
dataset: string;
|
|
1113
1213
|
} | undefined;
|
|
1214
|
+
mtlsCertificateRef?: {
|
|
1215
|
+
certificateId: string;
|
|
1216
|
+
} | undefined;
|
|
1217
|
+
pipelinesRef?: {
|
|
1218
|
+
pipelineId: string;
|
|
1219
|
+
} | undefined;
|
|
1114
1220
|
}[] | undefined;
|
|
1115
1221
|
}, {
|
|
1116
1222
|
containers: {
|
|
@@ -1161,6 +1267,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1161
1267
|
analyticsEngineRef?: {
|
|
1162
1268
|
dataset: string;
|
|
1163
1269
|
} | undefined;
|
|
1270
|
+
mtlsCertificateRef?: {
|
|
1271
|
+
certificateId: string;
|
|
1272
|
+
} | undefined;
|
|
1273
|
+
pipelinesRef?: {
|
|
1274
|
+
pipelineId: string;
|
|
1275
|
+
} | undefined;
|
|
1164
1276
|
}[] | undefined;
|
|
1165
1277
|
}>;
|
|
1166
1278
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1213,6 +1325,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1213
1325
|
analyticsEngineRef?: {
|
|
1214
1326
|
dataset: string;
|
|
1215
1327
|
} | undefined;
|
|
1328
|
+
mtlsCertificateRef?: {
|
|
1329
|
+
certificateId: string;
|
|
1330
|
+
} | undefined;
|
|
1331
|
+
pipelinesRef?: {
|
|
1332
|
+
pipelineId: string;
|
|
1333
|
+
} | undefined;
|
|
1216
1334
|
}[] | undefined;
|
|
1217
1335
|
};
|
|
1218
1336
|
metadata?: {
|
|
@@ -1271,6 +1389,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1271
1389
|
analyticsEngineRef?: {
|
|
1272
1390
|
dataset: string;
|
|
1273
1391
|
} | undefined;
|
|
1392
|
+
mtlsCertificateRef?: {
|
|
1393
|
+
certificateId: string;
|
|
1394
|
+
} | undefined;
|
|
1395
|
+
pipelinesRef?: {
|
|
1396
|
+
pipelineId: string;
|
|
1397
|
+
} | undefined;
|
|
1274
1398
|
}[] | undefined;
|
|
1275
1399
|
};
|
|
1276
1400
|
metadata?: {
|
|
@@ -1334,6 +1458,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1334
1458
|
analyticsEngineRef?: {
|
|
1335
1459
|
dataset: string;
|
|
1336
1460
|
} | undefined;
|
|
1461
|
+
mtlsCertificateRef?: {
|
|
1462
|
+
certificateId: string;
|
|
1463
|
+
} | undefined;
|
|
1464
|
+
pipelinesRef?: {
|
|
1465
|
+
pipelineId: string;
|
|
1466
|
+
} | undefined;
|
|
1337
1467
|
}[] | undefined;
|
|
1338
1468
|
};
|
|
1339
1469
|
metadata?: {
|
|
@@ -1399,6 +1529,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1399
1529
|
analyticsEngineRef?: {
|
|
1400
1530
|
dataset: string;
|
|
1401
1531
|
} | undefined;
|
|
1532
|
+
mtlsCertificateRef?: {
|
|
1533
|
+
certificateId: string;
|
|
1534
|
+
} | undefined;
|
|
1535
|
+
pipelinesRef?: {
|
|
1536
|
+
pipelineId: string;
|
|
1537
|
+
} | undefined;
|
|
1402
1538
|
}[] | undefined;
|
|
1403
1539
|
};
|
|
1404
1540
|
metadata?: {
|
|
@@ -1473,6 +1609,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1473
1609
|
analyticsEngineRef?: {
|
|
1474
1610
|
dataset: string;
|
|
1475
1611
|
} | undefined;
|
|
1612
|
+
mtlsCertificateRef?: {
|
|
1613
|
+
certificateId: string;
|
|
1614
|
+
} | undefined;
|
|
1615
|
+
pipelinesRef?: {
|
|
1616
|
+
pipelineId: string;
|
|
1617
|
+
} | undefined;
|
|
1476
1618
|
}[] | undefined;
|
|
1477
1619
|
};
|
|
1478
1620
|
metadata?: {
|
|
@@ -1548,6 +1690,12 @@ export declare const statefulSetSchema: z.ZodObject<{
|
|
|
1548
1690
|
analyticsEngineRef?: {
|
|
1549
1691
|
dataset: string;
|
|
1550
1692
|
} | undefined;
|
|
1693
|
+
mtlsCertificateRef?: {
|
|
1694
|
+
certificateId: string;
|
|
1695
|
+
} | undefined;
|
|
1696
|
+
pipelinesRef?: {
|
|
1697
|
+
pipelineId: string;
|
|
1698
|
+
} | undefined;
|
|
1551
1699
|
}[] | undefined;
|
|
1552
1700
|
};
|
|
1553
1701
|
metadata?: {
|
|
@@ -1792,6 +1940,20 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1792
1940
|
}, {
|
|
1793
1941
|
dataset: string;
|
|
1794
1942
|
}>>;
|
|
1943
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
1944
|
+
certificateId: z.ZodString;
|
|
1945
|
+
}, "strip", z.ZodTypeAny, {
|
|
1946
|
+
certificateId: string;
|
|
1947
|
+
}, {
|
|
1948
|
+
certificateId: string;
|
|
1949
|
+
}>>;
|
|
1950
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
1951
|
+
pipelineId: z.ZodString;
|
|
1952
|
+
}, "strip", z.ZodTypeAny, {
|
|
1953
|
+
pipelineId: string;
|
|
1954
|
+
}, {
|
|
1955
|
+
pipelineId: string;
|
|
1956
|
+
}>>;
|
|
1795
1957
|
}, "strip", z.ZodTypeAny, {
|
|
1796
1958
|
name: string;
|
|
1797
1959
|
r2BucketRef?: {
|
|
@@ -1818,6 +1980,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1818
1980
|
analyticsEngineRef?: {
|
|
1819
1981
|
dataset: string;
|
|
1820
1982
|
} | undefined;
|
|
1983
|
+
mtlsCertificateRef?: {
|
|
1984
|
+
certificateId: string;
|
|
1985
|
+
} | undefined;
|
|
1986
|
+
pipelinesRef?: {
|
|
1987
|
+
pipelineId: string;
|
|
1988
|
+
} | undefined;
|
|
1821
1989
|
}, {
|
|
1822
1990
|
name: string;
|
|
1823
1991
|
r2BucketRef?: {
|
|
@@ -1844,6 +2012,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1844
2012
|
analyticsEngineRef?: {
|
|
1845
2013
|
dataset: string;
|
|
1846
2014
|
} | undefined;
|
|
2015
|
+
mtlsCertificateRef?: {
|
|
2016
|
+
certificateId: string;
|
|
2017
|
+
} | undefined;
|
|
2018
|
+
pipelinesRef?: {
|
|
2019
|
+
pipelineId: string;
|
|
2020
|
+
} | undefined;
|
|
1847
2021
|
}>, "many">>;
|
|
1848
2022
|
}, "strip", z.ZodTypeAny, {
|
|
1849
2023
|
containers: {
|
|
@@ -1894,6 +2068,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1894
2068
|
analyticsEngineRef?: {
|
|
1895
2069
|
dataset: string;
|
|
1896
2070
|
} | undefined;
|
|
2071
|
+
mtlsCertificateRef?: {
|
|
2072
|
+
certificateId: string;
|
|
2073
|
+
} | undefined;
|
|
2074
|
+
pipelinesRef?: {
|
|
2075
|
+
pipelineId: string;
|
|
2076
|
+
} | undefined;
|
|
1897
2077
|
}[] | undefined;
|
|
1898
2078
|
}, {
|
|
1899
2079
|
containers: {
|
|
@@ -1944,6 +2124,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1944
2124
|
analyticsEngineRef?: {
|
|
1945
2125
|
dataset: string;
|
|
1946
2126
|
} | undefined;
|
|
2127
|
+
mtlsCertificateRef?: {
|
|
2128
|
+
certificateId: string;
|
|
2129
|
+
} | undefined;
|
|
2130
|
+
pipelinesRef?: {
|
|
2131
|
+
pipelineId: string;
|
|
2132
|
+
} | undefined;
|
|
1947
2133
|
}[] | undefined;
|
|
1948
2134
|
}>;
|
|
1949
2135
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1996,6 +2182,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
1996
2182
|
analyticsEngineRef?: {
|
|
1997
2183
|
dataset: string;
|
|
1998
2184
|
} | undefined;
|
|
2185
|
+
mtlsCertificateRef?: {
|
|
2186
|
+
certificateId: string;
|
|
2187
|
+
} | undefined;
|
|
2188
|
+
pipelinesRef?: {
|
|
2189
|
+
pipelineId: string;
|
|
2190
|
+
} | undefined;
|
|
1999
2191
|
}[] | undefined;
|
|
2000
2192
|
};
|
|
2001
2193
|
metadata?: {
|
|
@@ -2054,6 +2246,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
2054
2246
|
analyticsEngineRef?: {
|
|
2055
2247
|
dataset: string;
|
|
2056
2248
|
} | undefined;
|
|
2249
|
+
mtlsCertificateRef?: {
|
|
2250
|
+
certificateId: string;
|
|
2251
|
+
} | undefined;
|
|
2252
|
+
pipelinesRef?: {
|
|
2253
|
+
pipelineId: string;
|
|
2254
|
+
} | undefined;
|
|
2057
2255
|
}[] | undefined;
|
|
2058
2256
|
};
|
|
2059
2257
|
metadata?: {
|
|
@@ -2201,6 +2399,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
2201
2399
|
analyticsEngineRef?: {
|
|
2202
2400
|
dataset: string;
|
|
2203
2401
|
} | undefined;
|
|
2402
|
+
mtlsCertificateRef?: {
|
|
2403
|
+
certificateId: string;
|
|
2404
|
+
} | undefined;
|
|
2405
|
+
pipelinesRef?: {
|
|
2406
|
+
pipelineId: string;
|
|
2407
|
+
} | undefined;
|
|
2204
2408
|
}[] | undefined;
|
|
2205
2409
|
};
|
|
2206
2410
|
metadata?: {
|
|
@@ -2281,6 +2485,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
2281
2485
|
analyticsEngineRef?: {
|
|
2282
2486
|
dataset: string;
|
|
2283
2487
|
} | undefined;
|
|
2488
|
+
mtlsCertificateRef?: {
|
|
2489
|
+
certificateId: string;
|
|
2490
|
+
} | undefined;
|
|
2491
|
+
pipelinesRef?: {
|
|
2492
|
+
pipelineId: string;
|
|
2493
|
+
} | undefined;
|
|
2284
2494
|
}[] | undefined;
|
|
2285
2495
|
};
|
|
2286
2496
|
metadata?: {
|
|
@@ -2370,6 +2580,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
2370
2580
|
analyticsEngineRef?: {
|
|
2371
2581
|
dataset: string;
|
|
2372
2582
|
} | undefined;
|
|
2583
|
+
mtlsCertificateRef?: {
|
|
2584
|
+
certificateId: string;
|
|
2585
|
+
} | undefined;
|
|
2586
|
+
pipelinesRef?: {
|
|
2587
|
+
pipelineId: string;
|
|
2588
|
+
} | undefined;
|
|
2373
2589
|
}[] | undefined;
|
|
2374
2590
|
};
|
|
2375
2591
|
metadata?: {
|
|
@@ -2460,6 +2676,12 @@ export declare const rolloutSchema: z.ZodObject<{
|
|
|
2460
2676
|
analyticsEngineRef?: {
|
|
2461
2677
|
dataset: string;
|
|
2462
2678
|
} | undefined;
|
|
2679
|
+
mtlsCertificateRef?: {
|
|
2680
|
+
certificateId: string;
|
|
2681
|
+
} | undefined;
|
|
2682
|
+
pipelinesRef?: {
|
|
2683
|
+
pipelineId: string;
|
|
2684
|
+
} | undefined;
|
|
2463
2685
|
}[] | undefined;
|
|
2464
2686
|
};
|
|
2465
2687
|
metadata?: {
|
|
@@ -2714,6 +2936,20 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2714
2936
|
}, {
|
|
2715
2937
|
dataset: string;
|
|
2716
2938
|
}>>;
|
|
2939
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
2940
|
+
certificateId: z.ZodString;
|
|
2941
|
+
}, "strip", z.ZodTypeAny, {
|
|
2942
|
+
certificateId: string;
|
|
2943
|
+
}, {
|
|
2944
|
+
certificateId: string;
|
|
2945
|
+
}>>;
|
|
2946
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
2947
|
+
pipelineId: z.ZodString;
|
|
2948
|
+
}, "strip", z.ZodTypeAny, {
|
|
2949
|
+
pipelineId: string;
|
|
2950
|
+
}, {
|
|
2951
|
+
pipelineId: string;
|
|
2952
|
+
}>>;
|
|
2717
2953
|
}, "strip", z.ZodTypeAny, {
|
|
2718
2954
|
name: string;
|
|
2719
2955
|
r2BucketRef?: {
|
|
@@ -2740,6 +2976,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2740
2976
|
analyticsEngineRef?: {
|
|
2741
2977
|
dataset: string;
|
|
2742
2978
|
} | undefined;
|
|
2979
|
+
mtlsCertificateRef?: {
|
|
2980
|
+
certificateId: string;
|
|
2981
|
+
} | undefined;
|
|
2982
|
+
pipelinesRef?: {
|
|
2983
|
+
pipelineId: string;
|
|
2984
|
+
} | undefined;
|
|
2743
2985
|
}, {
|
|
2744
2986
|
name: string;
|
|
2745
2987
|
r2BucketRef?: {
|
|
@@ -2766,6 +3008,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2766
3008
|
analyticsEngineRef?: {
|
|
2767
3009
|
dataset: string;
|
|
2768
3010
|
} | undefined;
|
|
3011
|
+
mtlsCertificateRef?: {
|
|
3012
|
+
certificateId: string;
|
|
3013
|
+
} | undefined;
|
|
3014
|
+
pipelinesRef?: {
|
|
3015
|
+
pipelineId: string;
|
|
3016
|
+
} | undefined;
|
|
2769
3017
|
}>, "many">>;
|
|
2770
3018
|
}, "strip", z.ZodTypeAny, {
|
|
2771
3019
|
containers: {
|
|
@@ -2816,6 +3064,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2816
3064
|
analyticsEngineRef?: {
|
|
2817
3065
|
dataset: string;
|
|
2818
3066
|
} | undefined;
|
|
3067
|
+
mtlsCertificateRef?: {
|
|
3068
|
+
certificateId: string;
|
|
3069
|
+
} | undefined;
|
|
3070
|
+
pipelinesRef?: {
|
|
3071
|
+
pipelineId: string;
|
|
3072
|
+
} | undefined;
|
|
2819
3073
|
}[] | undefined;
|
|
2820
3074
|
}, {
|
|
2821
3075
|
containers: {
|
|
@@ -2866,6 +3120,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2866
3120
|
analyticsEngineRef?: {
|
|
2867
3121
|
dataset: string;
|
|
2868
3122
|
} | undefined;
|
|
3123
|
+
mtlsCertificateRef?: {
|
|
3124
|
+
certificateId: string;
|
|
3125
|
+
} | undefined;
|
|
3126
|
+
pipelinesRef?: {
|
|
3127
|
+
pipelineId: string;
|
|
3128
|
+
} | undefined;
|
|
2869
3129
|
}[] | undefined;
|
|
2870
3130
|
}>;
|
|
2871
3131
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2918,6 +3178,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2918
3178
|
analyticsEngineRef?: {
|
|
2919
3179
|
dataset: string;
|
|
2920
3180
|
} | undefined;
|
|
3181
|
+
mtlsCertificateRef?: {
|
|
3182
|
+
certificateId: string;
|
|
3183
|
+
} | undefined;
|
|
3184
|
+
pipelinesRef?: {
|
|
3185
|
+
pipelineId: string;
|
|
3186
|
+
} | undefined;
|
|
2921
3187
|
}[] | undefined;
|
|
2922
3188
|
};
|
|
2923
3189
|
metadata?: {
|
|
@@ -2976,6 +3242,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
2976
3242
|
analyticsEngineRef?: {
|
|
2977
3243
|
dataset: string;
|
|
2978
3244
|
} | undefined;
|
|
3245
|
+
mtlsCertificateRef?: {
|
|
3246
|
+
certificateId: string;
|
|
3247
|
+
} | undefined;
|
|
3248
|
+
pipelinesRef?: {
|
|
3249
|
+
pipelineId: string;
|
|
3250
|
+
} | undefined;
|
|
2979
3251
|
}[] | undefined;
|
|
2980
3252
|
};
|
|
2981
3253
|
metadata?: {
|
|
@@ -3036,6 +3308,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3036
3308
|
analyticsEngineRef?: {
|
|
3037
3309
|
dataset: string;
|
|
3038
3310
|
} | undefined;
|
|
3311
|
+
mtlsCertificateRef?: {
|
|
3312
|
+
certificateId: string;
|
|
3313
|
+
} | undefined;
|
|
3314
|
+
pipelinesRef?: {
|
|
3315
|
+
pipelineId: string;
|
|
3316
|
+
} | undefined;
|
|
3039
3317
|
}[] | undefined;
|
|
3040
3318
|
};
|
|
3041
3319
|
metadata?: {
|
|
@@ -3096,6 +3374,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3096
3374
|
analyticsEngineRef?: {
|
|
3097
3375
|
dataset: string;
|
|
3098
3376
|
} | undefined;
|
|
3377
|
+
mtlsCertificateRef?: {
|
|
3378
|
+
certificateId: string;
|
|
3379
|
+
} | undefined;
|
|
3380
|
+
pipelinesRef?: {
|
|
3381
|
+
pipelineId: string;
|
|
3382
|
+
} | undefined;
|
|
3099
3383
|
}[] | undefined;
|
|
3100
3384
|
};
|
|
3101
3385
|
metadata?: {
|
|
@@ -3158,6 +3442,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3158
3442
|
analyticsEngineRef?: {
|
|
3159
3443
|
dataset: string;
|
|
3160
3444
|
} | undefined;
|
|
3445
|
+
mtlsCertificateRef?: {
|
|
3446
|
+
certificateId: string;
|
|
3447
|
+
} | undefined;
|
|
3448
|
+
pipelinesRef?: {
|
|
3449
|
+
pipelineId: string;
|
|
3450
|
+
} | undefined;
|
|
3161
3451
|
}[] | undefined;
|
|
3162
3452
|
};
|
|
3163
3453
|
metadata?: {
|
|
@@ -3220,6 +3510,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3220
3510
|
analyticsEngineRef?: {
|
|
3221
3511
|
dataset: string;
|
|
3222
3512
|
} | undefined;
|
|
3513
|
+
mtlsCertificateRef?: {
|
|
3514
|
+
certificateId: string;
|
|
3515
|
+
} | undefined;
|
|
3516
|
+
pipelinesRef?: {
|
|
3517
|
+
pipelineId: string;
|
|
3518
|
+
} | undefined;
|
|
3223
3519
|
}[] | undefined;
|
|
3224
3520
|
};
|
|
3225
3521
|
metadata?: {
|
|
@@ -3288,6 +3584,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3288
3584
|
analyticsEngineRef?: {
|
|
3289
3585
|
dataset: string;
|
|
3290
3586
|
} | undefined;
|
|
3587
|
+
mtlsCertificateRef?: {
|
|
3588
|
+
certificateId: string;
|
|
3589
|
+
} | undefined;
|
|
3590
|
+
pipelinesRef?: {
|
|
3591
|
+
pipelineId: string;
|
|
3592
|
+
} | undefined;
|
|
3291
3593
|
}[] | undefined;
|
|
3292
3594
|
};
|
|
3293
3595
|
metadata?: {
|
|
@@ -3356,6 +3658,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3356
3658
|
analyticsEngineRef?: {
|
|
3357
3659
|
dataset: string;
|
|
3358
3660
|
} | undefined;
|
|
3661
|
+
mtlsCertificateRef?: {
|
|
3662
|
+
certificateId: string;
|
|
3663
|
+
} | undefined;
|
|
3664
|
+
pipelinesRef?: {
|
|
3665
|
+
pipelineId: string;
|
|
3666
|
+
} | undefined;
|
|
3359
3667
|
}[] | undefined;
|
|
3360
3668
|
};
|
|
3361
3669
|
metadata?: {
|
|
@@ -3433,6 +3741,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3433
3741
|
analyticsEngineRef?: {
|
|
3434
3742
|
dataset: string;
|
|
3435
3743
|
} | undefined;
|
|
3744
|
+
mtlsCertificateRef?: {
|
|
3745
|
+
certificateId: string;
|
|
3746
|
+
} | undefined;
|
|
3747
|
+
pipelinesRef?: {
|
|
3748
|
+
pipelineId: string;
|
|
3749
|
+
} | undefined;
|
|
3436
3750
|
}[] | undefined;
|
|
3437
3751
|
};
|
|
3438
3752
|
metadata?: {
|
|
@@ -3511,6 +3825,12 @@ export declare const cronJobSchema: z.ZodObject<{
|
|
|
3511
3825
|
analyticsEngineRef?: {
|
|
3512
3826
|
dataset: string;
|
|
3513
3827
|
} | undefined;
|
|
3828
|
+
mtlsCertificateRef?: {
|
|
3829
|
+
certificateId: string;
|
|
3830
|
+
} | undefined;
|
|
3831
|
+
pipelinesRef?: {
|
|
3832
|
+
pipelineId: string;
|
|
3833
|
+
} | undefined;
|
|
3514
3834
|
}[] | undefined;
|
|
3515
3835
|
};
|
|
3516
3836
|
metadata?: {
|
|
@@ -4543,6 +4863,20 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4543
4863
|
}, {
|
|
4544
4864
|
dataset: string;
|
|
4545
4865
|
}>>;
|
|
4866
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
4867
|
+
certificateId: z.ZodString;
|
|
4868
|
+
}, "strip", z.ZodTypeAny, {
|
|
4869
|
+
certificateId: string;
|
|
4870
|
+
}, {
|
|
4871
|
+
certificateId: string;
|
|
4872
|
+
}>>;
|
|
4873
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
4874
|
+
pipelineId: z.ZodString;
|
|
4875
|
+
}, "strip", z.ZodTypeAny, {
|
|
4876
|
+
pipelineId: string;
|
|
4877
|
+
}, {
|
|
4878
|
+
pipelineId: string;
|
|
4879
|
+
}>>;
|
|
4546
4880
|
}, "strip", z.ZodTypeAny, {
|
|
4547
4881
|
name: string;
|
|
4548
4882
|
r2BucketRef?: {
|
|
@@ -4569,6 +4903,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4569
4903
|
analyticsEngineRef?: {
|
|
4570
4904
|
dataset: string;
|
|
4571
4905
|
} | undefined;
|
|
4906
|
+
mtlsCertificateRef?: {
|
|
4907
|
+
certificateId: string;
|
|
4908
|
+
} | undefined;
|
|
4909
|
+
pipelinesRef?: {
|
|
4910
|
+
pipelineId: string;
|
|
4911
|
+
} | undefined;
|
|
4572
4912
|
}, {
|
|
4573
4913
|
name: string;
|
|
4574
4914
|
r2BucketRef?: {
|
|
@@ -4595,6 +4935,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4595
4935
|
analyticsEngineRef?: {
|
|
4596
4936
|
dataset: string;
|
|
4597
4937
|
} | undefined;
|
|
4938
|
+
mtlsCertificateRef?: {
|
|
4939
|
+
certificateId: string;
|
|
4940
|
+
} | undefined;
|
|
4941
|
+
pipelinesRef?: {
|
|
4942
|
+
pipelineId: string;
|
|
4943
|
+
} | undefined;
|
|
4598
4944
|
}>, "many">>;
|
|
4599
4945
|
}, "strip", z.ZodTypeAny, {
|
|
4600
4946
|
containers: {
|
|
@@ -4645,6 +4991,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4645
4991
|
analyticsEngineRef?: {
|
|
4646
4992
|
dataset: string;
|
|
4647
4993
|
} | undefined;
|
|
4994
|
+
mtlsCertificateRef?: {
|
|
4995
|
+
certificateId: string;
|
|
4996
|
+
} | undefined;
|
|
4997
|
+
pipelinesRef?: {
|
|
4998
|
+
pipelineId: string;
|
|
4999
|
+
} | undefined;
|
|
4648
5000
|
}[] | undefined;
|
|
4649
5001
|
}, {
|
|
4650
5002
|
containers: {
|
|
@@ -4695,6 +5047,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4695
5047
|
analyticsEngineRef?: {
|
|
4696
5048
|
dataset: string;
|
|
4697
5049
|
} | undefined;
|
|
5050
|
+
mtlsCertificateRef?: {
|
|
5051
|
+
certificateId: string;
|
|
5052
|
+
} | undefined;
|
|
5053
|
+
pipelinesRef?: {
|
|
5054
|
+
pipelineId: string;
|
|
5055
|
+
} | undefined;
|
|
4698
5056
|
}[] | undefined;
|
|
4699
5057
|
}>;
|
|
4700
5058
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -4747,6 +5105,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4747
5105
|
analyticsEngineRef?: {
|
|
4748
5106
|
dataset: string;
|
|
4749
5107
|
} | undefined;
|
|
5108
|
+
mtlsCertificateRef?: {
|
|
5109
|
+
certificateId: string;
|
|
5110
|
+
} | undefined;
|
|
5111
|
+
pipelinesRef?: {
|
|
5112
|
+
pipelineId: string;
|
|
5113
|
+
} | undefined;
|
|
4750
5114
|
}[] | undefined;
|
|
4751
5115
|
};
|
|
4752
5116
|
metadata?: {
|
|
@@ -4805,6 +5169,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4805
5169
|
analyticsEngineRef?: {
|
|
4806
5170
|
dataset: string;
|
|
4807
5171
|
} | undefined;
|
|
5172
|
+
mtlsCertificateRef?: {
|
|
5173
|
+
certificateId: string;
|
|
5174
|
+
} | undefined;
|
|
5175
|
+
pipelinesRef?: {
|
|
5176
|
+
pipelineId: string;
|
|
5177
|
+
} | undefined;
|
|
4808
5178
|
}[] | undefined;
|
|
4809
5179
|
};
|
|
4810
5180
|
metadata?: {
|
|
@@ -4869,6 +5239,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4869
5239
|
analyticsEngineRef?: {
|
|
4870
5240
|
dataset: string;
|
|
4871
5241
|
} | undefined;
|
|
5242
|
+
mtlsCertificateRef?: {
|
|
5243
|
+
certificateId: string;
|
|
5244
|
+
} | undefined;
|
|
5245
|
+
pipelinesRef?: {
|
|
5246
|
+
pipelineId: string;
|
|
5247
|
+
} | undefined;
|
|
4872
5248
|
}[] | undefined;
|
|
4873
5249
|
};
|
|
4874
5250
|
metadata?: {
|
|
@@ -4933,6 +5309,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
4933
5309
|
analyticsEngineRef?: {
|
|
4934
5310
|
dataset: string;
|
|
4935
5311
|
} | undefined;
|
|
5312
|
+
mtlsCertificateRef?: {
|
|
5313
|
+
certificateId: string;
|
|
5314
|
+
} | undefined;
|
|
5315
|
+
pipelinesRef?: {
|
|
5316
|
+
pipelineId: string;
|
|
5317
|
+
} | undefined;
|
|
4936
5318
|
}[] | undefined;
|
|
4937
5319
|
};
|
|
4938
5320
|
metadata?: {
|
|
@@ -5006,6 +5388,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
5006
5388
|
analyticsEngineRef?: {
|
|
5007
5389
|
dataset: string;
|
|
5008
5390
|
} | undefined;
|
|
5391
|
+
mtlsCertificateRef?: {
|
|
5392
|
+
certificateId: string;
|
|
5393
|
+
} | undefined;
|
|
5394
|
+
pipelinesRef?: {
|
|
5395
|
+
pipelineId: string;
|
|
5396
|
+
} | undefined;
|
|
5009
5397
|
}[] | undefined;
|
|
5010
5398
|
};
|
|
5011
5399
|
metadata?: {
|
|
@@ -5080,6 +5468,12 @@ export declare const jobSchema: z.ZodObject<{
|
|
|
5080
5468
|
analyticsEngineRef?: {
|
|
5081
5469
|
dataset: string;
|
|
5082
5470
|
} | undefined;
|
|
5471
|
+
mtlsCertificateRef?: {
|
|
5472
|
+
certificateId: string;
|
|
5473
|
+
} | undefined;
|
|
5474
|
+
pipelinesRef?: {
|
|
5475
|
+
pipelineId: string;
|
|
5476
|
+
} | undefined;
|
|
5083
5477
|
}[] | undefined;
|
|
5084
5478
|
};
|
|
5085
5479
|
metadata?: {
|
|
@@ -5186,9 +5580,9 @@ export declare const logpushJobSchema: z.ZodObject<{
|
|
|
5186
5580
|
};
|
|
5187
5581
|
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
5188
5582
|
}>;
|
|
5189
|
-
export declare const
|
|
5190
|
-
apiVersion: z.ZodLiteral<"
|
|
5191
|
-
kind: z.ZodLiteral<"
|
|
5583
|
+
export declare const ingressSchema: z.ZodObject<{
|
|
5584
|
+
apiVersion: z.ZodLiteral<"networking.k8s.io/v1">;
|
|
5585
|
+
kind: z.ZodLiteral<"Ingress">;
|
|
5192
5586
|
metadata: z.ZodObject<{
|
|
5193
5587
|
name: z.ZodString;
|
|
5194
5588
|
namespace: z.ZodOptional<z.ZodString>;
|
|
@@ -5206,127 +5600,462 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5206
5600
|
annotations?: Record<string, string> | undefined;
|
|
5207
5601
|
}>;
|
|
5208
5602
|
spec: z.ZodObject<{
|
|
5209
|
-
|
|
5210
|
-
|
|
5211
|
-
|
|
5212
|
-
|
|
5213
|
-
|
|
5214
|
-
|
|
5215
|
-
|
|
5216
|
-
|
|
5217
|
-
|
|
5218
|
-
|
|
5219
|
-
|
|
5220
|
-
|
|
5221
|
-
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5222
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5223
|
-
}, "strip", z.ZodTypeAny, {
|
|
5224
|
-
name?: string | undefined;
|
|
5225
|
-
namespace?: string | undefined;
|
|
5226
|
-
labels?: Record<string, string> | undefined;
|
|
5227
|
-
annotations?: Record<string, string> | undefined;
|
|
5228
|
-
}, {
|
|
5229
|
-
name?: string | undefined;
|
|
5230
|
-
namespace?: string | undefined;
|
|
5231
|
-
labels?: Record<string, string> | undefined;
|
|
5232
|
-
annotations?: Record<string, string> | undefined;
|
|
5233
|
-
}>>;
|
|
5234
|
-
spec: z.ZodObject<{
|
|
5235
|
-
containers: z.ZodArray<z.ZodObject<{
|
|
5236
|
-
name: z.ZodString;
|
|
5237
|
-
image: z.ZodString;
|
|
5238
|
-
env: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5239
|
-
name: z.ZodString;
|
|
5240
|
-
value: z.ZodOptional<z.ZodString>;
|
|
5241
|
-
valueFrom: z.ZodOptional<z.ZodObject<{
|
|
5242
|
-
configMapKeyRef: z.ZodOptional<z.ZodObject<{
|
|
5243
|
-
name: z.ZodString;
|
|
5244
|
-
key: z.ZodString;
|
|
5245
|
-
}, "strip", z.ZodTypeAny, {
|
|
5246
|
-
name: string;
|
|
5247
|
-
key: string;
|
|
5248
|
-
}, {
|
|
5249
|
-
name: string;
|
|
5250
|
-
key: string;
|
|
5251
|
-
}>>;
|
|
5252
|
-
secretKeyRef: z.ZodOptional<z.ZodObject<{
|
|
5253
|
-
name: z.ZodString;
|
|
5254
|
-
key: z.ZodString;
|
|
5603
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
5604
|
+
host: z.ZodOptional<z.ZodString>;
|
|
5605
|
+
http: z.ZodObject<{
|
|
5606
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
5607
|
+
path: z.ZodString;
|
|
5608
|
+
pathType: z.ZodEnum<["Prefix", "Exact", "ImplementationSpecific"]>;
|
|
5609
|
+
backend: z.ZodObject<{
|
|
5610
|
+
service: z.ZodObject<{
|
|
5611
|
+
name: z.ZodString;
|
|
5612
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
5613
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
5614
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5255
5615
|
}, "strip", z.ZodTypeAny, {
|
|
5256
|
-
|
|
5257
|
-
|
|
5616
|
+
number?: number | undefined;
|
|
5617
|
+
name?: string | undefined;
|
|
5258
5618
|
}, {
|
|
5259
|
-
|
|
5260
|
-
|
|
5619
|
+
number?: number | undefined;
|
|
5620
|
+
name?: string | undefined;
|
|
5261
5621
|
}>>;
|
|
5262
5622
|
}, "strip", z.ZodTypeAny, {
|
|
5263
|
-
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
secretKeyRef?: {
|
|
5268
|
-
name: string;
|
|
5269
|
-
key: string;
|
|
5623
|
+
name: string;
|
|
5624
|
+
port?: {
|
|
5625
|
+
number?: number | undefined;
|
|
5626
|
+
name?: string | undefined;
|
|
5270
5627
|
} | undefined;
|
|
5271
5628
|
}, {
|
|
5272
|
-
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
secretKeyRef?: {
|
|
5277
|
-
name: string;
|
|
5278
|
-
key: string;
|
|
5629
|
+
name: string;
|
|
5630
|
+
port?: {
|
|
5631
|
+
number?: number | undefined;
|
|
5632
|
+
name?: string | undefined;
|
|
5279
5633
|
} | undefined;
|
|
5280
|
-
}
|
|
5634
|
+
}>;
|
|
5281
5635
|
}, "strip", z.ZodTypeAny, {
|
|
5282
|
-
|
|
5283
|
-
|
|
5284
|
-
|
|
5285
|
-
|
|
5286
|
-
name
|
|
5287
|
-
key: string;
|
|
5288
|
-
} | undefined;
|
|
5289
|
-
secretKeyRef?: {
|
|
5290
|
-
name: string;
|
|
5291
|
-
key: string;
|
|
5636
|
+
service: {
|
|
5637
|
+
name: string;
|
|
5638
|
+
port?: {
|
|
5639
|
+
number?: number | undefined;
|
|
5640
|
+
name?: string | undefined;
|
|
5292
5641
|
} | undefined;
|
|
5293
|
-
}
|
|
5642
|
+
};
|
|
5294
5643
|
}, {
|
|
5295
|
-
|
|
5296
|
-
|
|
5297
|
-
|
|
5298
|
-
|
|
5299
|
-
name
|
|
5300
|
-
key: string;
|
|
5301
|
-
} | undefined;
|
|
5302
|
-
secretKeyRef?: {
|
|
5303
|
-
name: string;
|
|
5304
|
-
key: string;
|
|
5644
|
+
service: {
|
|
5645
|
+
name: string;
|
|
5646
|
+
port?: {
|
|
5647
|
+
number?: number | undefined;
|
|
5648
|
+
name?: string | undefined;
|
|
5305
5649
|
} | undefined;
|
|
5306
|
-
}
|
|
5307
|
-
}
|
|
5308
|
-
volumeMounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5309
|
-
name: z.ZodString;
|
|
5310
|
-
mountPath: z.ZodString;
|
|
5311
|
-
}, "strip", z.ZodTypeAny, {
|
|
5312
|
-
name: string;
|
|
5313
|
-
mountPath: string;
|
|
5314
|
-
}, {
|
|
5315
|
-
name: string;
|
|
5316
|
-
mountPath: string;
|
|
5317
|
-
}>, "many">>;
|
|
5650
|
+
};
|
|
5651
|
+
}>;
|
|
5318
5652
|
}, "strip", z.ZodTypeAny, {
|
|
5319
|
-
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
name
|
|
5327
|
-
key: string;
|
|
5653
|
+
path: string;
|
|
5654
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5655
|
+
backend: {
|
|
5656
|
+
service: {
|
|
5657
|
+
name: string;
|
|
5658
|
+
port?: {
|
|
5659
|
+
number?: number | undefined;
|
|
5660
|
+
name?: string | undefined;
|
|
5328
5661
|
} | undefined;
|
|
5329
|
-
|
|
5662
|
+
};
|
|
5663
|
+
};
|
|
5664
|
+
}, {
|
|
5665
|
+
path: string;
|
|
5666
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5667
|
+
backend: {
|
|
5668
|
+
service: {
|
|
5669
|
+
name: string;
|
|
5670
|
+
port?: {
|
|
5671
|
+
number?: number | undefined;
|
|
5672
|
+
name?: string | undefined;
|
|
5673
|
+
} | undefined;
|
|
5674
|
+
};
|
|
5675
|
+
};
|
|
5676
|
+
}>, "many">;
|
|
5677
|
+
}, "strip", z.ZodTypeAny, {
|
|
5678
|
+
paths: {
|
|
5679
|
+
path: string;
|
|
5680
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5681
|
+
backend: {
|
|
5682
|
+
service: {
|
|
5683
|
+
name: string;
|
|
5684
|
+
port?: {
|
|
5685
|
+
number?: number | undefined;
|
|
5686
|
+
name?: string | undefined;
|
|
5687
|
+
} | undefined;
|
|
5688
|
+
};
|
|
5689
|
+
};
|
|
5690
|
+
}[];
|
|
5691
|
+
}, {
|
|
5692
|
+
paths: {
|
|
5693
|
+
path: string;
|
|
5694
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5695
|
+
backend: {
|
|
5696
|
+
service: {
|
|
5697
|
+
name: string;
|
|
5698
|
+
port?: {
|
|
5699
|
+
number?: number | undefined;
|
|
5700
|
+
name?: string | undefined;
|
|
5701
|
+
} | undefined;
|
|
5702
|
+
};
|
|
5703
|
+
};
|
|
5704
|
+
}[];
|
|
5705
|
+
}>;
|
|
5706
|
+
}, "strip", z.ZodTypeAny, {
|
|
5707
|
+
http: {
|
|
5708
|
+
paths: {
|
|
5709
|
+
path: string;
|
|
5710
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5711
|
+
backend: {
|
|
5712
|
+
service: {
|
|
5713
|
+
name: string;
|
|
5714
|
+
port?: {
|
|
5715
|
+
number?: number | undefined;
|
|
5716
|
+
name?: string | undefined;
|
|
5717
|
+
} | undefined;
|
|
5718
|
+
};
|
|
5719
|
+
};
|
|
5720
|
+
}[];
|
|
5721
|
+
};
|
|
5722
|
+
host?: string | undefined;
|
|
5723
|
+
}, {
|
|
5724
|
+
http: {
|
|
5725
|
+
paths: {
|
|
5726
|
+
path: string;
|
|
5727
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5728
|
+
backend: {
|
|
5729
|
+
service: {
|
|
5730
|
+
name: string;
|
|
5731
|
+
port?: {
|
|
5732
|
+
number?: number | undefined;
|
|
5733
|
+
name?: string | undefined;
|
|
5734
|
+
} | undefined;
|
|
5735
|
+
};
|
|
5736
|
+
};
|
|
5737
|
+
}[];
|
|
5738
|
+
};
|
|
5739
|
+
host?: string | undefined;
|
|
5740
|
+
}>, "many">;
|
|
5741
|
+
defaultBackend: z.ZodOptional<z.ZodObject<{
|
|
5742
|
+
service: z.ZodObject<{
|
|
5743
|
+
name: z.ZodString;
|
|
5744
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
5745
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
5746
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5747
|
+
}, "strip", z.ZodTypeAny, {
|
|
5748
|
+
number?: number | undefined;
|
|
5749
|
+
name?: string | undefined;
|
|
5750
|
+
}, {
|
|
5751
|
+
number?: number | undefined;
|
|
5752
|
+
name?: string | undefined;
|
|
5753
|
+
}>>;
|
|
5754
|
+
}, "strip", z.ZodTypeAny, {
|
|
5755
|
+
name: string;
|
|
5756
|
+
port?: {
|
|
5757
|
+
number?: number | undefined;
|
|
5758
|
+
name?: string | undefined;
|
|
5759
|
+
} | undefined;
|
|
5760
|
+
}, {
|
|
5761
|
+
name: string;
|
|
5762
|
+
port?: {
|
|
5763
|
+
number?: number | undefined;
|
|
5764
|
+
name?: string | undefined;
|
|
5765
|
+
} | undefined;
|
|
5766
|
+
}>;
|
|
5767
|
+
}, "strip", z.ZodTypeAny, {
|
|
5768
|
+
service: {
|
|
5769
|
+
name: string;
|
|
5770
|
+
port?: {
|
|
5771
|
+
number?: number | undefined;
|
|
5772
|
+
name?: string | undefined;
|
|
5773
|
+
} | undefined;
|
|
5774
|
+
};
|
|
5775
|
+
}, {
|
|
5776
|
+
service: {
|
|
5777
|
+
name: string;
|
|
5778
|
+
port?: {
|
|
5779
|
+
number?: number | undefined;
|
|
5780
|
+
name?: string | undefined;
|
|
5781
|
+
} | undefined;
|
|
5782
|
+
};
|
|
5783
|
+
}>>;
|
|
5784
|
+
}, "strip", z.ZodTypeAny, {
|
|
5785
|
+
rules: {
|
|
5786
|
+
http: {
|
|
5787
|
+
paths: {
|
|
5788
|
+
path: string;
|
|
5789
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5790
|
+
backend: {
|
|
5791
|
+
service: {
|
|
5792
|
+
name: string;
|
|
5793
|
+
port?: {
|
|
5794
|
+
number?: number | undefined;
|
|
5795
|
+
name?: string | undefined;
|
|
5796
|
+
} | undefined;
|
|
5797
|
+
};
|
|
5798
|
+
};
|
|
5799
|
+
}[];
|
|
5800
|
+
};
|
|
5801
|
+
host?: string | undefined;
|
|
5802
|
+
}[];
|
|
5803
|
+
defaultBackend?: {
|
|
5804
|
+
service: {
|
|
5805
|
+
name: string;
|
|
5806
|
+
port?: {
|
|
5807
|
+
number?: number | undefined;
|
|
5808
|
+
name?: string | undefined;
|
|
5809
|
+
} | undefined;
|
|
5810
|
+
};
|
|
5811
|
+
} | undefined;
|
|
5812
|
+
}, {
|
|
5813
|
+
rules: {
|
|
5814
|
+
http: {
|
|
5815
|
+
paths: {
|
|
5816
|
+
path: string;
|
|
5817
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5818
|
+
backend: {
|
|
5819
|
+
service: {
|
|
5820
|
+
name: string;
|
|
5821
|
+
port?: {
|
|
5822
|
+
number?: number | undefined;
|
|
5823
|
+
name?: string | undefined;
|
|
5824
|
+
} | undefined;
|
|
5825
|
+
};
|
|
5826
|
+
};
|
|
5827
|
+
}[];
|
|
5828
|
+
};
|
|
5829
|
+
host?: string | undefined;
|
|
5830
|
+
}[];
|
|
5831
|
+
defaultBackend?: {
|
|
5832
|
+
service: {
|
|
5833
|
+
name: string;
|
|
5834
|
+
port?: {
|
|
5835
|
+
number?: number | undefined;
|
|
5836
|
+
name?: string | undefined;
|
|
5837
|
+
} | undefined;
|
|
5838
|
+
};
|
|
5839
|
+
} | undefined;
|
|
5840
|
+
}>;
|
|
5841
|
+
}, "strip", z.ZodTypeAny, {
|
|
5842
|
+
kind: "Ingress";
|
|
5843
|
+
metadata: {
|
|
5844
|
+
name: string;
|
|
5845
|
+
namespace?: string | undefined;
|
|
5846
|
+
labels?: Record<string, string> | undefined;
|
|
5847
|
+
annotations?: Record<string, string> | undefined;
|
|
5848
|
+
};
|
|
5849
|
+
spec: {
|
|
5850
|
+
rules: {
|
|
5851
|
+
http: {
|
|
5852
|
+
paths: {
|
|
5853
|
+
path: string;
|
|
5854
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5855
|
+
backend: {
|
|
5856
|
+
service: {
|
|
5857
|
+
name: string;
|
|
5858
|
+
port?: {
|
|
5859
|
+
number?: number | undefined;
|
|
5860
|
+
name?: string | undefined;
|
|
5861
|
+
} | undefined;
|
|
5862
|
+
};
|
|
5863
|
+
};
|
|
5864
|
+
}[];
|
|
5865
|
+
};
|
|
5866
|
+
host?: string | undefined;
|
|
5867
|
+
}[];
|
|
5868
|
+
defaultBackend?: {
|
|
5869
|
+
service: {
|
|
5870
|
+
name: string;
|
|
5871
|
+
port?: {
|
|
5872
|
+
number?: number | undefined;
|
|
5873
|
+
name?: string | undefined;
|
|
5874
|
+
} | undefined;
|
|
5875
|
+
};
|
|
5876
|
+
} | undefined;
|
|
5877
|
+
};
|
|
5878
|
+
apiVersion: "networking.k8s.io/v1";
|
|
5879
|
+
}, {
|
|
5880
|
+
kind: "Ingress";
|
|
5881
|
+
metadata: {
|
|
5882
|
+
name: string;
|
|
5883
|
+
namespace?: string | undefined;
|
|
5884
|
+
labels?: Record<string, string> | undefined;
|
|
5885
|
+
annotations?: Record<string, string> | undefined;
|
|
5886
|
+
};
|
|
5887
|
+
spec: {
|
|
5888
|
+
rules: {
|
|
5889
|
+
http: {
|
|
5890
|
+
paths: {
|
|
5891
|
+
path: string;
|
|
5892
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
5893
|
+
backend: {
|
|
5894
|
+
service: {
|
|
5895
|
+
name: string;
|
|
5896
|
+
port?: {
|
|
5897
|
+
number?: number | undefined;
|
|
5898
|
+
name?: string | undefined;
|
|
5899
|
+
} | undefined;
|
|
5900
|
+
};
|
|
5901
|
+
};
|
|
5902
|
+
}[];
|
|
5903
|
+
};
|
|
5904
|
+
host?: string | undefined;
|
|
5905
|
+
}[];
|
|
5906
|
+
defaultBackend?: {
|
|
5907
|
+
service: {
|
|
5908
|
+
name: string;
|
|
5909
|
+
port?: {
|
|
5910
|
+
number?: number | undefined;
|
|
5911
|
+
name?: string | undefined;
|
|
5912
|
+
} | undefined;
|
|
5913
|
+
};
|
|
5914
|
+
} | undefined;
|
|
5915
|
+
};
|
|
5916
|
+
apiVersion: "networking.k8s.io/v1";
|
|
5917
|
+
}>;
|
|
5918
|
+
export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
5919
|
+
apiVersion: z.ZodLiteral<"apps/v1">;
|
|
5920
|
+
kind: z.ZodLiteral<"Deployment">;
|
|
5921
|
+
metadata: z.ZodObject<{
|
|
5922
|
+
name: z.ZodString;
|
|
5923
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
5924
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5925
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5926
|
+
}, "strip", z.ZodTypeAny, {
|
|
5927
|
+
name: string;
|
|
5928
|
+
namespace?: string | undefined;
|
|
5929
|
+
labels?: Record<string, string> | undefined;
|
|
5930
|
+
annotations?: Record<string, string> | undefined;
|
|
5931
|
+
}, {
|
|
5932
|
+
name: string;
|
|
5933
|
+
namespace?: string | undefined;
|
|
5934
|
+
labels?: Record<string, string> | undefined;
|
|
5935
|
+
annotations?: Record<string, string> | undefined;
|
|
5936
|
+
}>;
|
|
5937
|
+
spec: z.ZodObject<{
|
|
5938
|
+
replicas: z.ZodOptional<z.ZodNumber>;
|
|
5939
|
+
selector: z.ZodObject<{
|
|
5940
|
+
matchLabels: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
5941
|
+
}, "strip", z.ZodTypeAny, {
|
|
5942
|
+
matchLabels: Record<string, string>;
|
|
5943
|
+
}, {
|
|
5944
|
+
matchLabels: Record<string, string>;
|
|
5945
|
+
}>;
|
|
5946
|
+
template: z.ZodObject<{
|
|
5947
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
5948
|
+
name: z.ZodOptional<z.ZodString>;
|
|
5949
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
5950
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5951
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5952
|
+
}, "strip", z.ZodTypeAny, {
|
|
5953
|
+
name?: string | undefined;
|
|
5954
|
+
namespace?: string | undefined;
|
|
5955
|
+
labels?: Record<string, string> | undefined;
|
|
5956
|
+
annotations?: Record<string, string> | undefined;
|
|
5957
|
+
}, {
|
|
5958
|
+
name?: string | undefined;
|
|
5959
|
+
namespace?: string | undefined;
|
|
5960
|
+
labels?: Record<string, string> | undefined;
|
|
5961
|
+
annotations?: Record<string, string> | undefined;
|
|
5962
|
+
}>>;
|
|
5963
|
+
spec: z.ZodObject<{
|
|
5964
|
+
containers: z.ZodArray<z.ZodObject<{
|
|
5965
|
+
name: z.ZodString;
|
|
5966
|
+
image: z.ZodString;
|
|
5967
|
+
env: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
5968
|
+
name: z.ZodString;
|
|
5969
|
+
value: z.ZodOptional<z.ZodString>;
|
|
5970
|
+
valueFrom: z.ZodOptional<z.ZodObject<{
|
|
5971
|
+
configMapKeyRef: z.ZodOptional<z.ZodObject<{
|
|
5972
|
+
name: z.ZodString;
|
|
5973
|
+
key: z.ZodString;
|
|
5974
|
+
}, "strip", z.ZodTypeAny, {
|
|
5975
|
+
name: string;
|
|
5976
|
+
key: string;
|
|
5977
|
+
}, {
|
|
5978
|
+
name: string;
|
|
5979
|
+
key: string;
|
|
5980
|
+
}>>;
|
|
5981
|
+
secretKeyRef: z.ZodOptional<z.ZodObject<{
|
|
5982
|
+
name: z.ZodString;
|
|
5983
|
+
key: z.ZodString;
|
|
5984
|
+
}, "strip", z.ZodTypeAny, {
|
|
5985
|
+
name: string;
|
|
5986
|
+
key: string;
|
|
5987
|
+
}, {
|
|
5988
|
+
name: string;
|
|
5989
|
+
key: string;
|
|
5990
|
+
}>>;
|
|
5991
|
+
}, "strip", z.ZodTypeAny, {
|
|
5992
|
+
configMapKeyRef?: {
|
|
5993
|
+
name: string;
|
|
5994
|
+
key: string;
|
|
5995
|
+
} | undefined;
|
|
5996
|
+
secretKeyRef?: {
|
|
5997
|
+
name: string;
|
|
5998
|
+
key: string;
|
|
5999
|
+
} | undefined;
|
|
6000
|
+
}, {
|
|
6001
|
+
configMapKeyRef?: {
|
|
6002
|
+
name: string;
|
|
6003
|
+
key: string;
|
|
6004
|
+
} | undefined;
|
|
6005
|
+
secretKeyRef?: {
|
|
6006
|
+
name: string;
|
|
6007
|
+
key: string;
|
|
6008
|
+
} | undefined;
|
|
6009
|
+
}>>;
|
|
6010
|
+
}, "strip", z.ZodTypeAny, {
|
|
6011
|
+
name: string;
|
|
6012
|
+
value?: string | undefined;
|
|
6013
|
+
valueFrom?: {
|
|
6014
|
+
configMapKeyRef?: {
|
|
6015
|
+
name: string;
|
|
6016
|
+
key: string;
|
|
6017
|
+
} | undefined;
|
|
6018
|
+
secretKeyRef?: {
|
|
6019
|
+
name: string;
|
|
6020
|
+
key: string;
|
|
6021
|
+
} | undefined;
|
|
6022
|
+
} | undefined;
|
|
6023
|
+
}, {
|
|
6024
|
+
name: string;
|
|
6025
|
+
value?: string | undefined;
|
|
6026
|
+
valueFrom?: {
|
|
6027
|
+
configMapKeyRef?: {
|
|
6028
|
+
name: string;
|
|
6029
|
+
key: string;
|
|
6030
|
+
} | undefined;
|
|
6031
|
+
secretKeyRef?: {
|
|
6032
|
+
name: string;
|
|
6033
|
+
key: string;
|
|
6034
|
+
} | undefined;
|
|
6035
|
+
} | undefined;
|
|
6036
|
+
}>, "many">>;
|
|
6037
|
+
volumeMounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6038
|
+
name: z.ZodString;
|
|
6039
|
+
mountPath: z.ZodString;
|
|
6040
|
+
}, "strip", z.ZodTypeAny, {
|
|
6041
|
+
name: string;
|
|
6042
|
+
mountPath: string;
|
|
6043
|
+
}, {
|
|
6044
|
+
name: string;
|
|
6045
|
+
mountPath: string;
|
|
6046
|
+
}>, "many">>;
|
|
6047
|
+
}, "strip", z.ZodTypeAny, {
|
|
6048
|
+
name: string;
|
|
6049
|
+
image: string;
|
|
6050
|
+
env?: {
|
|
6051
|
+
name: string;
|
|
6052
|
+
value?: string | undefined;
|
|
6053
|
+
valueFrom?: {
|
|
6054
|
+
configMapKeyRef?: {
|
|
6055
|
+
name: string;
|
|
6056
|
+
key: string;
|
|
6057
|
+
} | undefined;
|
|
6058
|
+
secretKeyRef?: {
|
|
5330
6059
|
name: string;
|
|
5331
6060
|
key: string;
|
|
5332
6061
|
} | undefined;
|
|
@@ -5416,6 +6145,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5416
6145
|
}, {
|
|
5417
6146
|
dataset: string;
|
|
5418
6147
|
}>>;
|
|
6148
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
6149
|
+
certificateId: z.ZodString;
|
|
6150
|
+
}, "strip", z.ZodTypeAny, {
|
|
6151
|
+
certificateId: string;
|
|
6152
|
+
}, {
|
|
6153
|
+
certificateId: string;
|
|
6154
|
+
}>>;
|
|
6155
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
6156
|
+
pipelineId: z.ZodString;
|
|
6157
|
+
}, "strip", z.ZodTypeAny, {
|
|
6158
|
+
pipelineId: string;
|
|
6159
|
+
}, {
|
|
6160
|
+
pipelineId: string;
|
|
6161
|
+
}>>;
|
|
5419
6162
|
}, "strip", z.ZodTypeAny, {
|
|
5420
6163
|
name: string;
|
|
5421
6164
|
r2BucketRef?: {
|
|
@@ -5442,6 +6185,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5442
6185
|
analyticsEngineRef?: {
|
|
5443
6186
|
dataset: string;
|
|
5444
6187
|
} | undefined;
|
|
6188
|
+
mtlsCertificateRef?: {
|
|
6189
|
+
certificateId: string;
|
|
6190
|
+
} | undefined;
|
|
6191
|
+
pipelinesRef?: {
|
|
6192
|
+
pipelineId: string;
|
|
6193
|
+
} | undefined;
|
|
5445
6194
|
}, {
|
|
5446
6195
|
name: string;
|
|
5447
6196
|
r2BucketRef?: {
|
|
@@ -5468,6 +6217,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5468
6217
|
analyticsEngineRef?: {
|
|
5469
6218
|
dataset: string;
|
|
5470
6219
|
} | undefined;
|
|
6220
|
+
mtlsCertificateRef?: {
|
|
6221
|
+
certificateId: string;
|
|
6222
|
+
} | undefined;
|
|
6223
|
+
pipelinesRef?: {
|
|
6224
|
+
pipelineId: string;
|
|
6225
|
+
} | undefined;
|
|
5471
6226
|
}>, "many">>;
|
|
5472
6227
|
}, "strip", z.ZodTypeAny, {
|
|
5473
6228
|
containers: {
|
|
@@ -5518,6 +6273,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5518
6273
|
analyticsEngineRef?: {
|
|
5519
6274
|
dataset: string;
|
|
5520
6275
|
} | undefined;
|
|
6276
|
+
mtlsCertificateRef?: {
|
|
6277
|
+
certificateId: string;
|
|
6278
|
+
} | undefined;
|
|
6279
|
+
pipelinesRef?: {
|
|
6280
|
+
pipelineId: string;
|
|
6281
|
+
} | undefined;
|
|
5521
6282
|
}[] | undefined;
|
|
5522
6283
|
}, {
|
|
5523
6284
|
containers: {
|
|
@@ -5568,6 +6329,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5568
6329
|
analyticsEngineRef?: {
|
|
5569
6330
|
dataset: string;
|
|
5570
6331
|
} | undefined;
|
|
6332
|
+
mtlsCertificateRef?: {
|
|
6333
|
+
certificateId: string;
|
|
6334
|
+
} | undefined;
|
|
6335
|
+
pipelinesRef?: {
|
|
6336
|
+
pipelineId: string;
|
|
6337
|
+
} | undefined;
|
|
5571
6338
|
}[] | undefined;
|
|
5572
6339
|
}>;
|
|
5573
6340
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5620,6 +6387,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5620
6387
|
analyticsEngineRef?: {
|
|
5621
6388
|
dataset: string;
|
|
5622
6389
|
} | undefined;
|
|
6390
|
+
mtlsCertificateRef?: {
|
|
6391
|
+
certificateId: string;
|
|
6392
|
+
} | undefined;
|
|
6393
|
+
pipelinesRef?: {
|
|
6394
|
+
pipelineId: string;
|
|
6395
|
+
} | undefined;
|
|
5623
6396
|
}[] | undefined;
|
|
5624
6397
|
};
|
|
5625
6398
|
metadata?: {
|
|
@@ -5678,6 +6451,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5678
6451
|
analyticsEngineRef?: {
|
|
5679
6452
|
dataset: string;
|
|
5680
6453
|
} | undefined;
|
|
6454
|
+
mtlsCertificateRef?: {
|
|
6455
|
+
certificateId: string;
|
|
6456
|
+
} | undefined;
|
|
6457
|
+
pipelinesRef?: {
|
|
6458
|
+
pipelineId: string;
|
|
6459
|
+
} | undefined;
|
|
5681
6460
|
}[] | undefined;
|
|
5682
6461
|
};
|
|
5683
6462
|
metadata?: {
|
|
@@ -5741,6 +6520,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5741
6520
|
analyticsEngineRef?: {
|
|
5742
6521
|
dataset: string;
|
|
5743
6522
|
} | undefined;
|
|
6523
|
+
mtlsCertificateRef?: {
|
|
6524
|
+
certificateId: string;
|
|
6525
|
+
} | undefined;
|
|
6526
|
+
pipelinesRef?: {
|
|
6527
|
+
pipelineId: string;
|
|
6528
|
+
} | undefined;
|
|
5744
6529
|
}[] | undefined;
|
|
5745
6530
|
};
|
|
5746
6531
|
metadata?: {
|
|
@@ -5805,6 +6590,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5805
6590
|
analyticsEngineRef?: {
|
|
5806
6591
|
dataset: string;
|
|
5807
6592
|
} | undefined;
|
|
6593
|
+
mtlsCertificateRef?: {
|
|
6594
|
+
certificateId: string;
|
|
6595
|
+
} | undefined;
|
|
6596
|
+
pipelinesRef?: {
|
|
6597
|
+
pipelineId: string;
|
|
6598
|
+
} | undefined;
|
|
5808
6599
|
}[] | undefined;
|
|
5809
6600
|
};
|
|
5810
6601
|
metadata?: {
|
|
@@ -5878,6 +6669,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5878
6669
|
analyticsEngineRef?: {
|
|
5879
6670
|
dataset: string;
|
|
5880
6671
|
} | undefined;
|
|
6672
|
+
mtlsCertificateRef?: {
|
|
6673
|
+
certificateId: string;
|
|
6674
|
+
} | undefined;
|
|
6675
|
+
pipelinesRef?: {
|
|
6676
|
+
pipelineId: string;
|
|
6677
|
+
} | undefined;
|
|
5881
6678
|
}[] | undefined;
|
|
5882
6679
|
};
|
|
5883
6680
|
metadata?: {
|
|
@@ -5952,6 +6749,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5952
6749
|
analyticsEngineRef?: {
|
|
5953
6750
|
dataset: string;
|
|
5954
6751
|
} | undefined;
|
|
6752
|
+
mtlsCertificateRef?: {
|
|
6753
|
+
certificateId: string;
|
|
6754
|
+
} | undefined;
|
|
6755
|
+
pipelinesRef?: {
|
|
6756
|
+
pipelineId: string;
|
|
6757
|
+
} | undefined;
|
|
5955
6758
|
}[] | undefined;
|
|
5956
6759
|
};
|
|
5957
6760
|
metadata?: {
|
|
@@ -6194,6 +6997,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6194
6997
|
}, {
|
|
6195
6998
|
dataset: string;
|
|
6196
6999
|
}>>;
|
|
7000
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
7001
|
+
certificateId: z.ZodString;
|
|
7002
|
+
}, "strip", z.ZodTypeAny, {
|
|
7003
|
+
certificateId: string;
|
|
7004
|
+
}, {
|
|
7005
|
+
certificateId: string;
|
|
7006
|
+
}>>;
|
|
7007
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
7008
|
+
pipelineId: z.ZodString;
|
|
7009
|
+
}, "strip", z.ZodTypeAny, {
|
|
7010
|
+
pipelineId: string;
|
|
7011
|
+
}, {
|
|
7012
|
+
pipelineId: string;
|
|
7013
|
+
}>>;
|
|
6197
7014
|
}, "strip", z.ZodTypeAny, {
|
|
6198
7015
|
name: string;
|
|
6199
7016
|
r2BucketRef?: {
|
|
@@ -6220,6 +7037,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6220
7037
|
analyticsEngineRef?: {
|
|
6221
7038
|
dataset: string;
|
|
6222
7039
|
} | undefined;
|
|
7040
|
+
mtlsCertificateRef?: {
|
|
7041
|
+
certificateId: string;
|
|
7042
|
+
} | undefined;
|
|
7043
|
+
pipelinesRef?: {
|
|
7044
|
+
pipelineId: string;
|
|
7045
|
+
} | undefined;
|
|
6223
7046
|
}, {
|
|
6224
7047
|
name: string;
|
|
6225
7048
|
r2BucketRef?: {
|
|
@@ -6246,6 +7069,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6246
7069
|
analyticsEngineRef?: {
|
|
6247
7070
|
dataset: string;
|
|
6248
7071
|
} | undefined;
|
|
7072
|
+
mtlsCertificateRef?: {
|
|
7073
|
+
certificateId: string;
|
|
7074
|
+
} | undefined;
|
|
7075
|
+
pipelinesRef?: {
|
|
7076
|
+
pipelineId: string;
|
|
7077
|
+
} | undefined;
|
|
6249
7078
|
}>, "many">>;
|
|
6250
7079
|
}, "strip", z.ZodTypeAny, {
|
|
6251
7080
|
containers: {
|
|
@@ -6296,6 +7125,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6296
7125
|
analyticsEngineRef?: {
|
|
6297
7126
|
dataset: string;
|
|
6298
7127
|
} | undefined;
|
|
7128
|
+
mtlsCertificateRef?: {
|
|
7129
|
+
certificateId: string;
|
|
7130
|
+
} | undefined;
|
|
7131
|
+
pipelinesRef?: {
|
|
7132
|
+
pipelineId: string;
|
|
7133
|
+
} | undefined;
|
|
6299
7134
|
}[] | undefined;
|
|
6300
7135
|
}, {
|
|
6301
7136
|
containers: {
|
|
@@ -6346,6 +7181,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6346
7181
|
analyticsEngineRef?: {
|
|
6347
7182
|
dataset: string;
|
|
6348
7183
|
} | undefined;
|
|
7184
|
+
mtlsCertificateRef?: {
|
|
7185
|
+
certificateId: string;
|
|
7186
|
+
} | undefined;
|
|
7187
|
+
pipelinesRef?: {
|
|
7188
|
+
pipelineId: string;
|
|
7189
|
+
} | undefined;
|
|
6349
7190
|
}[] | undefined;
|
|
6350
7191
|
}>;
|
|
6351
7192
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6398,6 +7239,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6398
7239
|
analyticsEngineRef?: {
|
|
6399
7240
|
dataset: string;
|
|
6400
7241
|
} | undefined;
|
|
7242
|
+
mtlsCertificateRef?: {
|
|
7243
|
+
certificateId: string;
|
|
7244
|
+
} | undefined;
|
|
7245
|
+
pipelinesRef?: {
|
|
7246
|
+
pipelineId: string;
|
|
7247
|
+
} | undefined;
|
|
6401
7248
|
}[] | undefined;
|
|
6402
7249
|
};
|
|
6403
7250
|
metadata?: {
|
|
@@ -6456,6 +7303,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6456
7303
|
analyticsEngineRef?: {
|
|
6457
7304
|
dataset: string;
|
|
6458
7305
|
} | undefined;
|
|
7306
|
+
mtlsCertificateRef?: {
|
|
7307
|
+
certificateId: string;
|
|
7308
|
+
} | undefined;
|
|
7309
|
+
pipelinesRef?: {
|
|
7310
|
+
pipelineId: string;
|
|
7311
|
+
} | undefined;
|
|
6459
7312
|
}[] | undefined;
|
|
6460
7313
|
};
|
|
6461
7314
|
metadata?: {
|
|
@@ -6603,6 +7456,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6603
7456
|
analyticsEngineRef?: {
|
|
6604
7457
|
dataset: string;
|
|
6605
7458
|
} | undefined;
|
|
7459
|
+
mtlsCertificateRef?: {
|
|
7460
|
+
certificateId: string;
|
|
7461
|
+
} | undefined;
|
|
7462
|
+
pipelinesRef?: {
|
|
7463
|
+
pipelineId: string;
|
|
7464
|
+
} | undefined;
|
|
6606
7465
|
}[] | undefined;
|
|
6607
7466
|
};
|
|
6608
7467
|
metadata?: {
|
|
@@ -6683,6 +7542,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6683
7542
|
analyticsEngineRef?: {
|
|
6684
7543
|
dataset: string;
|
|
6685
7544
|
} | undefined;
|
|
7545
|
+
mtlsCertificateRef?: {
|
|
7546
|
+
certificateId: string;
|
|
7547
|
+
} | undefined;
|
|
7548
|
+
pipelinesRef?: {
|
|
7549
|
+
pipelineId: string;
|
|
7550
|
+
} | undefined;
|
|
6686
7551
|
}[] | undefined;
|
|
6687
7552
|
};
|
|
6688
7553
|
metadata?: {
|
|
@@ -6772,6 +7637,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6772
7637
|
analyticsEngineRef?: {
|
|
6773
7638
|
dataset: string;
|
|
6774
7639
|
} | undefined;
|
|
7640
|
+
mtlsCertificateRef?: {
|
|
7641
|
+
certificateId: string;
|
|
7642
|
+
} | undefined;
|
|
7643
|
+
pipelinesRef?: {
|
|
7644
|
+
pipelineId: string;
|
|
7645
|
+
} | undefined;
|
|
6775
7646
|
}[] | undefined;
|
|
6776
7647
|
};
|
|
6777
7648
|
metadata?: {
|
|
@@ -6862,6 +7733,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6862
7733
|
analyticsEngineRef?: {
|
|
6863
7734
|
dataset: string;
|
|
6864
7735
|
} | undefined;
|
|
7736
|
+
mtlsCertificateRef?: {
|
|
7737
|
+
certificateId: string;
|
|
7738
|
+
} | undefined;
|
|
7739
|
+
pipelinesRef?: {
|
|
7740
|
+
pipelineId: string;
|
|
7741
|
+
} | undefined;
|
|
6865
7742
|
}[] | undefined;
|
|
6866
7743
|
};
|
|
6867
7744
|
metadata?: {
|
|
@@ -7121,6 +7998,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7121
7998
|
}, {
|
|
7122
7999
|
dataset: string;
|
|
7123
8000
|
}>>;
|
|
8001
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
8002
|
+
certificateId: z.ZodString;
|
|
8003
|
+
}, "strip", z.ZodTypeAny, {
|
|
8004
|
+
certificateId: string;
|
|
8005
|
+
}, {
|
|
8006
|
+
certificateId: string;
|
|
8007
|
+
}>>;
|
|
8008
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
8009
|
+
pipelineId: z.ZodString;
|
|
8010
|
+
}, "strip", z.ZodTypeAny, {
|
|
8011
|
+
pipelineId: string;
|
|
8012
|
+
}, {
|
|
8013
|
+
pipelineId: string;
|
|
8014
|
+
}>>;
|
|
7124
8015
|
}, "strip", z.ZodTypeAny, {
|
|
7125
8016
|
name: string;
|
|
7126
8017
|
r2BucketRef?: {
|
|
@@ -7147,6 +8038,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7147
8038
|
analyticsEngineRef?: {
|
|
7148
8039
|
dataset: string;
|
|
7149
8040
|
} | undefined;
|
|
8041
|
+
mtlsCertificateRef?: {
|
|
8042
|
+
certificateId: string;
|
|
8043
|
+
} | undefined;
|
|
8044
|
+
pipelinesRef?: {
|
|
8045
|
+
pipelineId: string;
|
|
8046
|
+
} | undefined;
|
|
7150
8047
|
}, {
|
|
7151
8048
|
name: string;
|
|
7152
8049
|
r2BucketRef?: {
|
|
@@ -7173,6 +8070,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7173
8070
|
analyticsEngineRef?: {
|
|
7174
8071
|
dataset: string;
|
|
7175
8072
|
} | undefined;
|
|
8073
|
+
mtlsCertificateRef?: {
|
|
8074
|
+
certificateId: string;
|
|
8075
|
+
} | undefined;
|
|
8076
|
+
pipelinesRef?: {
|
|
8077
|
+
pipelineId: string;
|
|
8078
|
+
} | undefined;
|
|
7176
8079
|
}>, "many">>;
|
|
7177
8080
|
}, "strip", z.ZodTypeAny, {
|
|
7178
8081
|
containers: {
|
|
@@ -7223,6 +8126,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7223
8126
|
analyticsEngineRef?: {
|
|
7224
8127
|
dataset: string;
|
|
7225
8128
|
} | undefined;
|
|
8129
|
+
mtlsCertificateRef?: {
|
|
8130
|
+
certificateId: string;
|
|
8131
|
+
} | undefined;
|
|
8132
|
+
pipelinesRef?: {
|
|
8133
|
+
pipelineId: string;
|
|
8134
|
+
} | undefined;
|
|
7226
8135
|
}[] | undefined;
|
|
7227
8136
|
}, {
|
|
7228
8137
|
containers: {
|
|
@@ -7273,6 +8182,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7273
8182
|
analyticsEngineRef?: {
|
|
7274
8183
|
dataset: string;
|
|
7275
8184
|
} | undefined;
|
|
8185
|
+
mtlsCertificateRef?: {
|
|
8186
|
+
certificateId: string;
|
|
8187
|
+
} | undefined;
|
|
8188
|
+
pipelinesRef?: {
|
|
8189
|
+
pipelineId: string;
|
|
8190
|
+
} | undefined;
|
|
7276
8191
|
}[] | undefined;
|
|
7277
8192
|
}>;
|
|
7278
8193
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7325,6 +8240,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7325
8240
|
analyticsEngineRef?: {
|
|
7326
8241
|
dataset: string;
|
|
7327
8242
|
} | undefined;
|
|
8243
|
+
mtlsCertificateRef?: {
|
|
8244
|
+
certificateId: string;
|
|
8245
|
+
} | undefined;
|
|
8246
|
+
pipelinesRef?: {
|
|
8247
|
+
pipelineId: string;
|
|
8248
|
+
} | undefined;
|
|
7328
8249
|
}[] | undefined;
|
|
7329
8250
|
};
|
|
7330
8251
|
metadata?: {
|
|
@@ -7383,6 +8304,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7383
8304
|
analyticsEngineRef?: {
|
|
7384
8305
|
dataset: string;
|
|
7385
8306
|
} | undefined;
|
|
8307
|
+
mtlsCertificateRef?: {
|
|
8308
|
+
certificateId: string;
|
|
8309
|
+
} | undefined;
|
|
8310
|
+
pipelinesRef?: {
|
|
8311
|
+
pipelineId: string;
|
|
8312
|
+
} | undefined;
|
|
7386
8313
|
}[] | undefined;
|
|
7387
8314
|
};
|
|
7388
8315
|
metadata?: {
|
|
@@ -7446,6 +8373,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7446
8373
|
analyticsEngineRef?: {
|
|
7447
8374
|
dataset: string;
|
|
7448
8375
|
} | undefined;
|
|
8376
|
+
mtlsCertificateRef?: {
|
|
8377
|
+
certificateId: string;
|
|
8378
|
+
} | undefined;
|
|
8379
|
+
pipelinesRef?: {
|
|
8380
|
+
pipelineId: string;
|
|
8381
|
+
} | undefined;
|
|
7449
8382
|
}[] | undefined;
|
|
7450
8383
|
};
|
|
7451
8384
|
metadata?: {
|
|
@@ -7511,6 +8444,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7511
8444
|
analyticsEngineRef?: {
|
|
7512
8445
|
dataset: string;
|
|
7513
8446
|
} | undefined;
|
|
8447
|
+
mtlsCertificateRef?: {
|
|
8448
|
+
certificateId: string;
|
|
8449
|
+
} | undefined;
|
|
8450
|
+
pipelinesRef?: {
|
|
8451
|
+
pipelineId: string;
|
|
8452
|
+
} | undefined;
|
|
7514
8453
|
}[] | undefined;
|
|
7515
8454
|
};
|
|
7516
8455
|
metadata?: {
|
|
@@ -7585,6 +8524,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7585
8524
|
analyticsEngineRef?: {
|
|
7586
8525
|
dataset: string;
|
|
7587
8526
|
} | undefined;
|
|
8527
|
+
mtlsCertificateRef?: {
|
|
8528
|
+
certificateId: string;
|
|
8529
|
+
} | undefined;
|
|
8530
|
+
pipelinesRef?: {
|
|
8531
|
+
pipelineId: string;
|
|
8532
|
+
} | undefined;
|
|
7588
8533
|
}[] | undefined;
|
|
7589
8534
|
};
|
|
7590
8535
|
metadata?: {
|
|
@@ -7660,6 +8605,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7660
8605
|
analyticsEngineRef?: {
|
|
7661
8606
|
dataset: string;
|
|
7662
8607
|
} | undefined;
|
|
8608
|
+
mtlsCertificateRef?: {
|
|
8609
|
+
certificateId: string;
|
|
8610
|
+
} | undefined;
|
|
8611
|
+
pipelinesRef?: {
|
|
8612
|
+
pipelineId: string;
|
|
8613
|
+
} | undefined;
|
|
7663
8614
|
}[] | undefined;
|
|
7664
8615
|
};
|
|
7665
8616
|
metadata?: {
|
|
@@ -7898,6 +8849,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7898
8849
|
}, {
|
|
7899
8850
|
dataset: string;
|
|
7900
8851
|
}>>;
|
|
8852
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
8853
|
+
certificateId: z.ZodString;
|
|
8854
|
+
}, "strip", z.ZodTypeAny, {
|
|
8855
|
+
certificateId: string;
|
|
8856
|
+
}, {
|
|
8857
|
+
certificateId: string;
|
|
8858
|
+
}>>;
|
|
8859
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
8860
|
+
pipelineId: z.ZodString;
|
|
8861
|
+
}, "strip", z.ZodTypeAny, {
|
|
8862
|
+
pipelineId: string;
|
|
8863
|
+
}, {
|
|
8864
|
+
pipelineId: string;
|
|
8865
|
+
}>>;
|
|
7901
8866
|
}, "strip", z.ZodTypeAny, {
|
|
7902
8867
|
name: string;
|
|
7903
8868
|
r2BucketRef?: {
|
|
@@ -7924,6 +8889,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7924
8889
|
analyticsEngineRef?: {
|
|
7925
8890
|
dataset: string;
|
|
7926
8891
|
} | undefined;
|
|
8892
|
+
mtlsCertificateRef?: {
|
|
8893
|
+
certificateId: string;
|
|
8894
|
+
} | undefined;
|
|
8895
|
+
pipelinesRef?: {
|
|
8896
|
+
pipelineId: string;
|
|
8897
|
+
} | undefined;
|
|
7927
8898
|
}, {
|
|
7928
8899
|
name: string;
|
|
7929
8900
|
r2BucketRef?: {
|
|
@@ -7950,6 +8921,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7950
8921
|
analyticsEngineRef?: {
|
|
7951
8922
|
dataset: string;
|
|
7952
8923
|
} | undefined;
|
|
8924
|
+
mtlsCertificateRef?: {
|
|
8925
|
+
certificateId: string;
|
|
8926
|
+
} | undefined;
|
|
8927
|
+
pipelinesRef?: {
|
|
8928
|
+
pipelineId: string;
|
|
8929
|
+
} | undefined;
|
|
7953
8930
|
}>, "many">>;
|
|
7954
8931
|
}, "strip", z.ZodTypeAny, {
|
|
7955
8932
|
containers: {
|
|
@@ -8000,6 +8977,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8000
8977
|
analyticsEngineRef?: {
|
|
8001
8978
|
dataset: string;
|
|
8002
8979
|
} | undefined;
|
|
8980
|
+
mtlsCertificateRef?: {
|
|
8981
|
+
certificateId: string;
|
|
8982
|
+
} | undefined;
|
|
8983
|
+
pipelinesRef?: {
|
|
8984
|
+
pipelineId: string;
|
|
8985
|
+
} | undefined;
|
|
8003
8986
|
}[] | undefined;
|
|
8004
8987
|
}, {
|
|
8005
8988
|
containers: {
|
|
@@ -8050,6 +9033,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8050
9033
|
analyticsEngineRef?: {
|
|
8051
9034
|
dataset: string;
|
|
8052
9035
|
} | undefined;
|
|
9036
|
+
mtlsCertificateRef?: {
|
|
9037
|
+
certificateId: string;
|
|
9038
|
+
} | undefined;
|
|
9039
|
+
pipelinesRef?: {
|
|
9040
|
+
pipelineId: string;
|
|
9041
|
+
} | undefined;
|
|
8053
9042
|
}[] | undefined;
|
|
8054
9043
|
}>;
|
|
8055
9044
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8102,6 +9091,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8102
9091
|
analyticsEngineRef?: {
|
|
8103
9092
|
dataset: string;
|
|
8104
9093
|
} | undefined;
|
|
9094
|
+
mtlsCertificateRef?: {
|
|
9095
|
+
certificateId: string;
|
|
9096
|
+
} | undefined;
|
|
9097
|
+
pipelinesRef?: {
|
|
9098
|
+
pipelineId: string;
|
|
9099
|
+
} | undefined;
|
|
8105
9100
|
}[] | undefined;
|
|
8106
9101
|
};
|
|
8107
9102
|
metadata?: {
|
|
@@ -8160,6 +9155,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8160
9155
|
analyticsEngineRef?: {
|
|
8161
9156
|
dataset: string;
|
|
8162
9157
|
} | undefined;
|
|
9158
|
+
mtlsCertificateRef?: {
|
|
9159
|
+
certificateId: string;
|
|
9160
|
+
} | undefined;
|
|
9161
|
+
pipelinesRef?: {
|
|
9162
|
+
pipelineId: string;
|
|
9163
|
+
} | undefined;
|
|
8163
9164
|
}[] | undefined;
|
|
8164
9165
|
};
|
|
8165
9166
|
metadata?: {
|
|
@@ -8220,6 +9221,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8220
9221
|
analyticsEngineRef?: {
|
|
8221
9222
|
dataset: string;
|
|
8222
9223
|
} | undefined;
|
|
9224
|
+
mtlsCertificateRef?: {
|
|
9225
|
+
certificateId: string;
|
|
9226
|
+
} | undefined;
|
|
9227
|
+
pipelinesRef?: {
|
|
9228
|
+
pipelineId: string;
|
|
9229
|
+
} | undefined;
|
|
8223
9230
|
}[] | undefined;
|
|
8224
9231
|
};
|
|
8225
9232
|
metadata?: {
|
|
@@ -8280,6 +9287,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8280
9287
|
analyticsEngineRef?: {
|
|
8281
9288
|
dataset: string;
|
|
8282
9289
|
} | undefined;
|
|
9290
|
+
mtlsCertificateRef?: {
|
|
9291
|
+
certificateId: string;
|
|
9292
|
+
} | undefined;
|
|
9293
|
+
pipelinesRef?: {
|
|
9294
|
+
pipelineId: string;
|
|
9295
|
+
} | undefined;
|
|
8283
9296
|
}[] | undefined;
|
|
8284
9297
|
};
|
|
8285
9298
|
metadata?: {
|
|
@@ -8342,6 +9355,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8342
9355
|
analyticsEngineRef?: {
|
|
8343
9356
|
dataset: string;
|
|
8344
9357
|
} | undefined;
|
|
9358
|
+
mtlsCertificateRef?: {
|
|
9359
|
+
certificateId: string;
|
|
9360
|
+
} | undefined;
|
|
9361
|
+
pipelinesRef?: {
|
|
9362
|
+
pipelineId: string;
|
|
9363
|
+
} | undefined;
|
|
8345
9364
|
}[] | undefined;
|
|
8346
9365
|
};
|
|
8347
9366
|
metadata?: {
|
|
@@ -8404,6 +9423,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8404
9423
|
analyticsEngineRef?: {
|
|
8405
9424
|
dataset: string;
|
|
8406
9425
|
} | undefined;
|
|
9426
|
+
mtlsCertificateRef?: {
|
|
9427
|
+
certificateId: string;
|
|
9428
|
+
} | undefined;
|
|
9429
|
+
pipelinesRef?: {
|
|
9430
|
+
pipelineId: string;
|
|
9431
|
+
} | undefined;
|
|
8407
9432
|
}[] | undefined;
|
|
8408
9433
|
};
|
|
8409
9434
|
metadata?: {
|
|
@@ -8472,6 +9497,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8472
9497
|
analyticsEngineRef?: {
|
|
8473
9498
|
dataset: string;
|
|
8474
9499
|
} | undefined;
|
|
9500
|
+
mtlsCertificateRef?: {
|
|
9501
|
+
certificateId: string;
|
|
9502
|
+
} | undefined;
|
|
9503
|
+
pipelinesRef?: {
|
|
9504
|
+
pipelineId: string;
|
|
9505
|
+
} | undefined;
|
|
8475
9506
|
}[] | undefined;
|
|
8476
9507
|
};
|
|
8477
9508
|
metadata?: {
|
|
@@ -8540,6 +9571,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8540
9571
|
analyticsEngineRef?: {
|
|
8541
9572
|
dataset: string;
|
|
8542
9573
|
} | undefined;
|
|
9574
|
+
mtlsCertificateRef?: {
|
|
9575
|
+
certificateId: string;
|
|
9576
|
+
} | undefined;
|
|
9577
|
+
pipelinesRef?: {
|
|
9578
|
+
pipelineId: string;
|
|
9579
|
+
} | undefined;
|
|
8543
9580
|
}[] | undefined;
|
|
8544
9581
|
};
|
|
8545
9582
|
metadata?: {
|
|
@@ -8617,6 +9654,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8617
9654
|
analyticsEngineRef?: {
|
|
8618
9655
|
dataset: string;
|
|
8619
9656
|
} | undefined;
|
|
9657
|
+
mtlsCertificateRef?: {
|
|
9658
|
+
certificateId: string;
|
|
9659
|
+
} | undefined;
|
|
9660
|
+
pipelinesRef?: {
|
|
9661
|
+
pipelineId: string;
|
|
9662
|
+
} | undefined;
|
|
8620
9663
|
}[] | undefined;
|
|
8621
9664
|
};
|
|
8622
9665
|
metadata?: {
|
|
@@ -8695,6 +9738,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8695
9738
|
analyticsEngineRef?: {
|
|
8696
9739
|
dataset: string;
|
|
8697
9740
|
} | undefined;
|
|
9741
|
+
mtlsCertificateRef?: {
|
|
9742
|
+
certificateId: string;
|
|
9743
|
+
} | undefined;
|
|
9744
|
+
pipelinesRef?: {
|
|
9745
|
+
pipelineId: string;
|
|
9746
|
+
} | undefined;
|
|
8698
9747
|
}[] | undefined;
|
|
8699
9748
|
};
|
|
8700
9749
|
metadata?: {
|
|
@@ -8933,6 +9982,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8933
9982
|
}, {
|
|
8934
9983
|
dataset: string;
|
|
8935
9984
|
}>>;
|
|
9985
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
9986
|
+
certificateId: z.ZodString;
|
|
9987
|
+
}, "strip", z.ZodTypeAny, {
|
|
9988
|
+
certificateId: string;
|
|
9989
|
+
}, {
|
|
9990
|
+
certificateId: string;
|
|
9991
|
+
}>>;
|
|
9992
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
9993
|
+
pipelineId: z.ZodString;
|
|
9994
|
+
}, "strip", z.ZodTypeAny, {
|
|
9995
|
+
pipelineId: string;
|
|
9996
|
+
}, {
|
|
9997
|
+
pipelineId: string;
|
|
9998
|
+
}>>;
|
|
8936
9999
|
}, "strip", z.ZodTypeAny, {
|
|
8937
10000
|
name: string;
|
|
8938
10001
|
r2BucketRef?: {
|
|
@@ -8959,6 +10022,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8959
10022
|
analyticsEngineRef?: {
|
|
8960
10023
|
dataset: string;
|
|
8961
10024
|
} | undefined;
|
|
10025
|
+
mtlsCertificateRef?: {
|
|
10026
|
+
certificateId: string;
|
|
10027
|
+
} | undefined;
|
|
10028
|
+
pipelinesRef?: {
|
|
10029
|
+
pipelineId: string;
|
|
10030
|
+
} | undefined;
|
|
8962
10031
|
}, {
|
|
8963
10032
|
name: string;
|
|
8964
10033
|
r2BucketRef?: {
|
|
@@ -8985,6 +10054,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8985
10054
|
analyticsEngineRef?: {
|
|
8986
10055
|
dataset: string;
|
|
8987
10056
|
} | undefined;
|
|
10057
|
+
mtlsCertificateRef?: {
|
|
10058
|
+
certificateId: string;
|
|
10059
|
+
} | undefined;
|
|
10060
|
+
pipelinesRef?: {
|
|
10061
|
+
pipelineId: string;
|
|
10062
|
+
} | undefined;
|
|
8988
10063
|
}>, "many">>;
|
|
8989
10064
|
}, "strip", z.ZodTypeAny, {
|
|
8990
10065
|
containers: {
|
|
@@ -9035,6 +10110,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9035
10110
|
analyticsEngineRef?: {
|
|
9036
10111
|
dataset: string;
|
|
9037
10112
|
} | undefined;
|
|
10113
|
+
mtlsCertificateRef?: {
|
|
10114
|
+
certificateId: string;
|
|
10115
|
+
} | undefined;
|
|
10116
|
+
pipelinesRef?: {
|
|
10117
|
+
pipelineId: string;
|
|
10118
|
+
} | undefined;
|
|
9038
10119
|
}[] | undefined;
|
|
9039
10120
|
}, {
|
|
9040
10121
|
containers: {
|
|
@@ -9085,6 +10166,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9085
10166
|
analyticsEngineRef?: {
|
|
9086
10167
|
dataset: string;
|
|
9087
10168
|
} | undefined;
|
|
10169
|
+
mtlsCertificateRef?: {
|
|
10170
|
+
certificateId: string;
|
|
10171
|
+
} | undefined;
|
|
10172
|
+
pipelinesRef?: {
|
|
10173
|
+
pipelineId: string;
|
|
10174
|
+
} | undefined;
|
|
9088
10175
|
}[] | undefined;
|
|
9089
10176
|
}>;
|
|
9090
10177
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9137,6 +10224,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9137
10224
|
analyticsEngineRef?: {
|
|
9138
10225
|
dataset: string;
|
|
9139
10226
|
} | undefined;
|
|
10227
|
+
mtlsCertificateRef?: {
|
|
10228
|
+
certificateId: string;
|
|
10229
|
+
} | undefined;
|
|
10230
|
+
pipelinesRef?: {
|
|
10231
|
+
pipelineId: string;
|
|
10232
|
+
} | undefined;
|
|
9140
10233
|
}[] | undefined;
|
|
9141
10234
|
};
|
|
9142
10235
|
metadata?: {
|
|
@@ -9195,6 +10288,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9195
10288
|
analyticsEngineRef?: {
|
|
9196
10289
|
dataset: string;
|
|
9197
10290
|
} | undefined;
|
|
10291
|
+
mtlsCertificateRef?: {
|
|
10292
|
+
certificateId: string;
|
|
10293
|
+
} | undefined;
|
|
10294
|
+
pipelinesRef?: {
|
|
10295
|
+
pipelineId: string;
|
|
10296
|
+
} | undefined;
|
|
9198
10297
|
}[] | undefined;
|
|
9199
10298
|
};
|
|
9200
10299
|
metadata?: {
|
|
@@ -9259,6 +10358,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9259
10358
|
analyticsEngineRef?: {
|
|
9260
10359
|
dataset: string;
|
|
9261
10360
|
} | undefined;
|
|
10361
|
+
mtlsCertificateRef?: {
|
|
10362
|
+
certificateId: string;
|
|
10363
|
+
} | undefined;
|
|
10364
|
+
pipelinesRef?: {
|
|
10365
|
+
pipelineId: string;
|
|
10366
|
+
} | undefined;
|
|
9262
10367
|
}[] | undefined;
|
|
9263
10368
|
};
|
|
9264
10369
|
metadata?: {
|
|
@@ -9323,6 +10428,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9323
10428
|
analyticsEngineRef?: {
|
|
9324
10429
|
dataset: string;
|
|
9325
10430
|
} | undefined;
|
|
10431
|
+
mtlsCertificateRef?: {
|
|
10432
|
+
certificateId: string;
|
|
10433
|
+
} | undefined;
|
|
10434
|
+
pipelinesRef?: {
|
|
10435
|
+
pipelineId: string;
|
|
10436
|
+
} | undefined;
|
|
9326
10437
|
}[] | undefined;
|
|
9327
10438
|
};
|
|
9328
10439
|
metadata?: {
|
|
@@ -9396,6 +10507,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9396
10507
|
analyticsEngineRef?: {
|
|
9397
10508
|
dataset: string;
|
|
9398
10509
|
} | undefined;
|
|
10510
|
+
mtlsCertificateRef?: {
|
|
10511
|
+
certificateId: string;
|
|
10512
|
+
} | undefined;
|
|
10513
|
+
pipelinesRef?: {
|
|
10514
|
+
pipelineId: string;
|
|
10515
|
+
} | undefined;
|
|
9399
10516
|
}[] | undefined;
|
|
9400
10517
|
};
|
|
9401
10518
|
metadata?: {
|
|
@@ -9470,6 +10587,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9470
10587
|
analyticsEngineRef?: {
|
|
9471
10588
|
dataset: string;
|
|
9472
10589
|
} | undefined;
|
|
10590
|
+
mtlsCertificateRef?: {
|
|
10591
|
+
certificateId: string;
|
|
10592
|
+
} | undefined;
|
|
10593
|
+
pipelinesRef?: {
|
|
10594
|
+
pipelineId: string;
|
|
10595
|
+
} | undefined;
|
|
9473
10596
|
}[] | undefined;
|
|
9474
10597
|
};
|
|
9475
10598
|
metadata?: {
|
|
@@ -10355,5 +11478,339 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
10355
11478
|
accountId?: string | undefined;
|
|
10356
11479
|
};
|
|
10357
11480
|
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
11481
|
+
}>, z.ZodObject<{
|
|
11482
|
+
apiVersion: z.ZodLiteral<"networking.k8s.io/v1">;
|
|
11483
|
+
kind: z.ZodLiteral<"Ingress">;
|
|
11484
|
+
metadata: z.ZodObject<{
|
|
11485
|
+
name: z.ZodString;
|
|
11486
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
11487
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11488
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
11489
|
+
}, "strip", z.ZodTypeAny, {
|
|
11490
|
+
name: string;
|
|
11491
|
+
namespace?: string | undefined;
|
|
11492
|
+
labels?: Record<string, string> | undefined;
|
|
11493
|
+
annotations?: Record<string, string> | undefined;
|
|
11494
|
+
}, {
|
|
11495
|
+
name: string;
|
|
11496
|
+
namespace?: string | undefined;
|
|
11497
|
+
labels?: Record<string, string> | undefined;
|
|
11498
|
+
annotations?: Record<string, string> | undefined;
|
|
11499
|
+
}>;
|
|
11500
|
+
spec: z.ZodObject<{
|
|
11501
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
11502
|
+
host: z.ZodOptional<z.ZodString>;
|
|
11503
|
+
http: z.ZodObject<{
|
|
11504
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
11505
|
+
path: z.ZodString;
|
|
11506
|
+
pathType: z.ZodEnum<["Prefix", "Exact", "ImplementationSpecific"]>;
|
|
11507
|
+
backend: z.ZodObject<{
|
|
11508
|
+
service: z.ZodObject<{
|
|
11509
|
+
name: z.ZodString;
|
|
11510
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
11511
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
11512
|
+
name: z.ZodOptional<z.ZodString>;
|
|
11513
|
+
}, "strip", z.ZodTypeAny, {
|
|
11514
|
+
number?: number | undefined;
|
|
11515
|
+
name?: string | undefined;
|
|
11516
|
+
}, {
|
|
11517
|
+
number?: number | undefined;
|
|
11518
|
+
name?: string | undefined;
|
|
11519
|
+
}>>;
|
|
11520
|
+
}, "strip", z.ZodTypeAny, {
|
|
11521
|
+
name: string;
|
|
11522
|
+
port?: {
|
|
11523
|
+
number?: number | undefined;
|
|
11524
|
+
name?: string | undefined;
|
|
11525
|
+
} | undefined;
|
|
11526
|
+
}, {
|
|
11527
|
+
name: string;
|
|
11528
|
+
port?: {
|
|
11529
|
+
number?: number | undefined;
|
|
11530
|
+
name?: string | undefined;
|
|
11531
|
+
} | undefined;
|
|
11532
|
+
}>;
|
|
11533
|
+
}, "strip", z.ZodTypeAny, {
|
|
11534
|
+
service: {
|
|
11535
|
+
name: string;
|
|
11536
|
+
port?: {
|
|
11537
|
+
number?: number | undefined;
|
|
11538
|
+
name?: string | undefined;
|
|
11539
|
+
} | undefined;
|
|
11540
|
+
};
|
|
11541
|
+
}, {
|
|
11542
|
+
service: {
|
|
11543
|
+
name: string;
|
|
11544
|
+
port?: {
|
|
11545
|
+
number?: number | undefined;
|
|
11546
|
+
name?: string | undefined;
|
|
11547
|
+
} | undefined;
|
|
11548
|
+
};
|
|
11549
|
+
}>;
|
|
11550
|
+
}, "strip", z.ZodTypeAny, {
|
|
11551
|
+
path: string;
|
|
11552
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11553
|
+
backend: {
|
|
11554
|
+
service: {
|
|
11555
|
+
name: string;
|
|
11556
|
+
port?: {
|
|
11557
|
+
number?: number | undefined;
|
|
11558
|
+
name?: string | undefined;
|
|
11559
|
+
} | undefined;
|
|
11560
|
+
};
|
|
11561
|
+
};
|
|
11562
|
+
}, {
|
|
11563
|
+
path: string;
|
|
11564
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11565
|
+
backend: {
|
|
11566
|
+
service: {
|
|
11567
|
+
name: string;
|
|
11568
|
+
port?: {
|
|
11569
|
+
number?: number | undefined;
|
|
11570
|
+
name?: string | undefined;
|
|
11571
|
+
} | undefined;
|
|
11572
|
+
};
|
|
11573
|
+
};
|
|
11574
|
+
}>, "many">;
|
|
11575
|
+
}, "strip", z.ZodTypeAny, {
|
|
11576
|
+
paths: {
|
|
11577
|
+
path: string;
|
|
11578
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11579
|
+
backend: {
|
|
11580
|
+
service: {
|
|
11581
|
+
name: string;
|
|
11582
|
+
port?: {
|
|
11583
|
+
number?: number | undefined;
|
|
11584
|
+
name?: string | undefined;
|
|
11585
|
+
} | undefined;
|
|
11586
|
+
};
|
|
11587
|
+
};
|
|
11588
|
+
}[];
|
|
11589
|
+
}, {
|
|
11590
|
+
paths: {
|
|
11591
|
+
path: string;
|
|
11592
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11593
|
+
backend: {
|
|
11594
|
+
service: {
|
|
11595
|
+
name: string;
|
|
11596
|
+
port?: {
|
|
11597
|
+
number?: number | undefined;
|
|
11598
|
+
name?: string | undefined;
|
|
11599
|
+
} | undefined;
|
|
11600
|
+
};
|
|
11601
|
+
};
|
|
11602
|
+
}[];
|
|
11603
|
+
}>;
|
|
11604
|
+
}, "strip", z.ZodTypeAny, {
|
|
11605
|
+
http: {
|
|
11606
|
+
paths: {
|
|
11607
|
+
path: string;
|
|
11608
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11609
|
+
backend: {
|
|
11610
|
+
service: {
|
|
11611
|
+
name: string;
|
|
11612
|
+
port?: {
|
|
11613
|
+
number?: number | undefined;
|
|
11614
|
+
name?: string | undefined;
|
|
11615
|
+
} | undefined;
|
|
11616
|
+
};
|
|
11617
|
+
};
|
|
11618
|
+
}[];
|
|
11619
|
+
};
|
|
11620
|
+
host?: string | undefined;
|
|
11621
|
+
}, {
|
|
11622
|
+
http: {
|
|
11623
|
+
paths: {
|
|
11624
|
+
path: string;
|
|
11625
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11626
|
+
backend: {
|
|
11627
|
+
service: {
|
|
11628
|
+
name: string;
|
|
11629
|
+
port?: {
|
|
11630
|
+
number?: number | undefined;
|
|
11631
|
+
name?: string | undefined;
|
|
11632
|
+
} | undefined;
|
|
11633
|
+
};
|
|
11634
|
+
};
|
|
11635
|
+
}[];
|
|
11636
|
+
};
|
|
11637
|
+
host?: string | undefined;
|
|
11638
|
+
}>, "many">;
|
|
11639
|
+
defaultBackend: z.ZodOptional<z.ZodObject<{
|
|
11640
|
+
service: z.ZodObject<{
|
|
11641
|
+
name: z.ZodString;
|
|
11642
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
11643
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
11644
|
+
name: z.ZodOptional<z.ZodString>;
|
|
11645
|
+
}, "strip", z.ZodTypeAny, {
|
|
11646
|
+
number?: number | undefined;
|
|
11647
|
+
name?: string | undefined;
|
|
11648
|
+
}, {
|
|
11649
|
+
number?: number | undefined;
|
|
11650
|
+
name?: string | undefined;
|
|
11651
|
+
}>>;
|
|
11652
|
+
}, "strip", z.ZodTypeAny, {
|
|
11653
|
+
name: string;
|
|
11654
|
+
port?: {
|
|
11655
|
+
number?: number | undefined;
|
|
11656
|
+
name?: string | undefined;
|
|
11657
|
+
} | undefined;
|
|
11658
|
+
}, {
|
|
11659
|
+
name: string;
|
|
11660
|
+
port?: {
|
|
11661
|
+
number?: number | undefined;
|
|
11662
|
+
name?: string | undefined;
|
|
11663
|
+
} | undefined;
|
|
11664
|
+
}>;
|
|
11665
|
+
}, "strip", z.ZodTypeAny, {
|
|
11666
|
+
service: {
|
|
11667
|
+
name: string;
|
|
11668
|
+
port?: {
|
|
11669
|
+
number?: number | undefined;
|
|
11670
|
+
name?: string | undefined;
|
|
11671
|
+
} | undefined;
|
|
11672
|
+
};
|
|
11673
|
+
}, {
|
|
11674
|
+
service: {
|
|
11675
|
+
name: string;
|
|
11676
|
+
port?: {
|
|
11677
|
+
number?: number | undefined;
|
|
11678
|
+
name?: string | undefined;
|
|
11679
|
+
} | undefined;
|
|
11680
|
+
};
|
|
11681
|
+
}>>;
|
|
11682
|
+
}, "strip", z.ZodTypeAny, {
|
|
11683
|
+
rules: {
|
|
11684
|
+
http: {
|
|
11685
|
+
paths: {
|
|
11686
|
+
path: string;
|
|
11687
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11688
|
+
backend: {
|
|
11689
|
+
service: {
|
|
11690
|
+
name: string;
|
|
11691
|
+
port?: {
|
|
11692
|
+
number?: number | undefined;
|
|
11693
|
+
name?: string | undefined;
|
|
11694
|
+
} | undefined;
|
|
11695
|
+
};
|
|
11696
|
+
};
|
|
11697
|
+
}[];
|
|
11698
|
+
};
|
|
11699
|
+
host?: string | undefined;
|
|
11700
|
+
}[];
|
|
11701
|
+
defaultBackend?: {
|
|
11702
|
+
service: {
|
|
11703
|
+
name: string;
|
|
11704
|
+
port?: {
|
|
11705
|
+
number?: number | undefined;
|
|
11706
|
+
name?: string | undefined;
|
|
11707
|
+
} | undefined;
|
|
11708
|
+
};
|
|
11709
|
+
} | undefined;
|
|
11710
|
+
}, {
|
|
11711
|
+
rules: {
|
|
11712
|
+
http: {
|
|
11713
|
+
paths: {
|
|
11714
|
+
path: string;
|
|
11715
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11716
|
+
backend: {
|
|
11717
|
+
service: {
|
|
11718
|
+
name: string;
|
|
11719
|
+
port?: {
|
|
11720
|
+
number?: number | undefined;
|
|
11721
|
+
name?: string | undefined;
|
|
11722
|
+
} | undefined;
|
|
11723
|
+
};
|
|
11724
|
+
};
|
|
11725
|
+
}[];
|
|
11726
|
+
};
|
|
11727
|
+
host?: string | undefined;
|
|
11728
|
+
}[];
|
|
11729
|
+
defaultBackend?: {
|
|
11730
|
+
service: {
|
|
11731
|
+
name: string;
|
|
11732
|
+
port?: {
|
|
11733
|
+
number?: number | undefined;
|
|
11734
|
+
name?: string | undefined;
|
|
11735
|
+
} | undefined;
|
|
11736
|
+
};
|
|
11737
|
+
} | undefined;
|
|
11738
|
+
}>;
|
|
11739
|
+
}, "strip", z.ZodTypeAny, {
|
|
11740
|
+
kind: "Ingress";
|
|
11741
|
+
metadata: {
|
|
11742
|
+
name: string;
|
|
11743
|
+
namespace?: string | undefined;
|
|
11744
|
+
labels?: Record<string, string> | undefined;
|
|
11745
|
+
annotations?: Record<string, string> | undefined;
|
|
11746
|
+
};
|
|
11747
|
+
spec: {
|
|
11748
|
+
rules: {
|
|
11749
|
+
http: {
|
|
11750
|
+
paths: {
|
|
11751
|
+
path: string;
|
|
11752
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11753
|
+
backend: {
|
|
11754
|
+
service: {
|
|
11755
|
+
name: string;
|
|
11756
|
+
port?: {
|
|
11757
|
+
number?: number | undefined;
|
|
11758
|
+
name?: string | undefined;
|
|
11759
|
+
} | undefined;
|
|
11760
|
+
};
|
|
11761
|
+
};
|
|
11762
|
+
}[];
|
|
11763
|
+
};
|
|
11764
|
+
host?: string | undefined;
|
|
11765
|
+
}[];
|
|
11766
|
+
defaultBackend?: {
|
|
11767
|
+
service: {
|
|
11768
|
+
name: string;
|
|
11769
|
+
port?: {
|
|
11770
|
+
number?: number | undefined;
|
|
11771
|
+
name?: string | undefined;
|
|
11772
|
+
} | undefined;
|
|
11773
|
+
};
|
|
11774
|
+
} | undefined;
|
|
11775
|
+
};
|
|
11776
|
+
apiVersion: "networking.k8s.io/v1";
|
|
11777
|
+
}, {
|
|
11778
|
+
kind: "Ingress";
|
|
11779
|
+
metadata: {
|
|
11780
|
+
name: string;
|
|
11781
|
+
namespace?: string | undefined;
|
|
11782
|
+
labels?: Record<string, string> | undefined;
|
|
11783
|
+
annotations?: Record<string, string> | undefined;
|
|
11784
|
+
};
|
|
11785
|
+
spec: {
|
|
11786
|
+
rules: {
|
|
11787
|
+
http: {
|
|
11788
|
+
paths: {
|
|
11789
|
+
path: string;
|
|
11790
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
11791
|
+
backend: {
|
|
11792
|
+
service: {
|
|
11793
|
+
name: string;
|
|
11794
|
+
port?: {
|
|
11795
|
+
number?: number | undefined;
|
|
11796
|
+
name?: string | undefined;
|
|
11797
|
+
} | undefined;
|
|
11798
|
+
};
|
|
11799
|
+
};
|
|
11800
|
+
}[];
|
|
11801
|
+
};
|
|
11802
|
+
host?: string | undefined;
|
|
11803
|
+
}[];
|
|
11804
|
+
defaultBackend?: {
|
|
11805
|
+
service: {
|
|
11806
|
+
name: string;
|
|
11807
|
+
port?: {
|
|
11808
|
+
number?: number | undefined;
|
|
11809
|
+
name?: string | undefined;
|
|
11810
|
+
} | undefined;
|
|
11811
|
+
};
|
|
11812
|
+
} | undefined;
|
|
11813
|
+
};
|
|
11814
|
+
apiVersion: "networking.k8s.io/v1";
|
|
10358
11815
|
}>]>;
|
|
10359
11816
|
//# sourceMappingURL=schemas.d.ts.map
|