@mizchi/k1c 0.2.0 → 0.4.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 +9 -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 +223 -1
- package/dist/manifest/schemas.d.ts +3257 -145
- package/dist/manifest/schemas.js +62 -0
- package/dist/manifest/types.d.ts +75 -1
- package/dist/providers/access-application.d.ts +53 -0
- package/dist/providers/access-application.js +183 -0
- package/dist/providers/index.js +4 -0
- package/dist/providers/worker-route.d.ts +10 -0
- package/dist/providers/worker-route.js +115 -0
- package/dist/providers/worker.d.ts +8 -0
- package/dist/providers/worker.js +22 -0
- package/dist/reconciler/plan.js +44 -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 accessApplicationSchema: z.ZodObject<{
|
|
5584
|
+
apiVersion: z.ZodLiteral<"cloudflare.k1c.io/v1alpha1">;
|
|
5585
|
+
kind: z.ZodLiteral<"AccessApplication">;
|
|
5192
5586
|
metadata: z.ZodObject<{
|
|
5193
5587
|
name: z.ZodString;
|
|
5194
5588
|
namespace: z.ZodOptional<z.ZodString>;
|
|
@@ -5206,118 +5600,1281 @@ 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
|
-
|
|
5222
|
-
|
|
5603
|
+
domain: z.ZodString;
|
|
5604
|
+
sessionDuration: z.ZodOptional<z.ZodString>;
|
|
5605
|
+
autoRedirectToIdentity: z.ZodOptional<z.ZodBoolean>;
|
|
5606
|
+
allowedIdps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
5607
|
+
policies: z.ZodArray<z.ZodObject<{
|
|
5608
|
+
name: z.ZodString;
|
|
5609
|
+
decision: z.ZodEnum<["allow", "deny", "bypass", "non_identity"]>;
|
|
5610
|
+
include: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
5611
|
+
email: z.ZodObject<{
|
|
5612
|
+
email: z.ZodString;
|
|
5613
|
+
}, "strip", z.ZodTypeAny, {
|
|
5614
|
+
email: string;
|
|
5615
|
+
}, {
|
|
5616
|
+
email: string;
|
|
5617
|
+
}>;
|
|
5223
5618
|
}, "strip", z.ZodTypeAny, {
|
|
5224
|
-
|
|
5225
|
-
|
|
5226
|
-
|
|
5227
|
-
annotations?: Record<string, string> | undefined;
|
|
5619
|
+
email: {
|
|
5620
|
+
email: string;
|
|
5621
|
+
};
|
|
5228
5622
|
}, {
|
|
5229
|
-
|
|
5230
|
-
|
|
5231
|
-
|
|
5232
|
-
|
|
5233
|
-
|
|
5234
|
-
|
|
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;
|
|
5255
|
-
}, "strip", z.ZodTypeAny, {
|
|
5256
|
-
name: string;
|
|
5257
|
-
key: string;
|
|
5258
|
-
}, {
|
|
5259
|
-
name: string;
|
|
5260
|
-
key: string;
|
|
5261
|
-
}>>;
|
|
5262
|
-
}, "strip", z.ZodTypeAny, {
|
|
5263
|
-
configMapKeyRef?: {
|
|
5264
|
-
name: string;
|
|
5265
|
-
key: string;
|
|
5266
|
-
} | undefined;
|
|
5267
|
-
secretKeyRef?: {
|
|
5268
|
-
name: string;
|
|
5269
|
-
key: string;
|
|
5270
|
-
} | undefined;
|
|
5271
|
-
}, {
|
|
5272
|
-
configMapKeyRef?: {
|
|
5273
|
-
name: string;
|
|
5274
|
-
key: string;
|
|
5275
|
-
} | undefined;
|
|
5276
|
-
secretKeyRef?: {
|
|
5277
|
-
name: string;
|
|
5278
|
-
key: string;
|
|
5279
|
-
} | undefined;
|
|
5280
|
-
}>>;
|
|
5281
|
-
}, "strip", z.ZodTypeAny, {
|
|
5282
|
-
name: string;
|
|
5283
|
-
value?: string | undefined;
|
|
5284
|
-
valueFrom?: {
|
|
5285
|
-
configMapKeyRef?: {
|
|
5286
|
-
name: string;
|
|
5287
|
-
key: string;
|
|
5288
|
-
} | undefined;
|
|
5289
|
-
secretKeyRef?: {
|
|
5290
|
-
name: string;
|
|
5291
|
-
key: string;
|
|
5292
|
-
} | undefined;
|
|
5293
|
-
} | undefined;
|
|
5294
|
-
}, {
|
|
5295
|
-
name: string;
|
|
5296
|
-
value?: string | undefined;
|
|
5297
|
-
valueFrom?: {
|
|
5298
|
-
configMapKeyRef?: {
|
|
5299
|
-
name: string;
|
|
5300
|
-
key: string;
|
|
5301
|
-
} | undefined;
|
|
5302
|
-
secretKeyRef?: {
|
|
5303
|
-
name: string;
|
|
5304
|
-
key: string;
|
|
5305
|
-
} | undefined;
|
|
5306
|
-
} | undefined;
|
|
5307
|
-
}>, "many">>;
|
|
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">>;
|
|
5623
|
+
email: {
|
|
5624
|
+
email: string;
|
|
5625
|
+
};
|
|
5626
|
+
}>, z.ZodObject<{
|
|
5627
|
+
emailDomain: z.ZodObject<{
|
|
5628
|
+
domain: z.ZodString;
|
|
5318
5629
|
}, "strip", z.ZodTypeAny, {
|
|
5319
|
-
|
|
5320
|
-
|
|
5630
|
+
domain: string;
|
|
5631
|
+
}, {
|
|
5632
|
+
domain: string;
|
|
5633
|
+
}>;
|
|
5634
|
+
}, "strip", z.ZodTypeAny, {
|
|
5635
|
+
emailDomain: {
|
|
5636
|
+
domain: string;
|
|
5637
|
+
};
|
|
5638
|
+
}, {
|
|
5639
|
+
emailDomain: {
|
|
5640
|
+
domain: string;
|
|
5641
|
+
};
|
|
5642
|
+
}>, z.ZodObject<{
|
|
5643
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5644
|
+
}, "strip", z.ZodTypeAny, {
|
|
5645
|
+
everyone: {};
|
|
5646
|
+
}, {
|
|
5647
|
+
everyone: {};
|
|
5648
|
+
}>, z.ZodObject<{
|
|
5649
|
+
ip: z.ZodObject<{
|
|
5650
|
+
ip: z.ZodString;
|
|
5651
|
+
}, "strip", z.ZodTypeAny, {
|
|
5652
|
+
ip: string;
|
|
5653
|
+
}, {
|
|
5654
|
+
ip: string;
|
|
5655
|
+
}>;
|
|
5656
|
+
}, "strip", z.ZodTypeAny, {
|
|
5657
|
+
ip: {
|
|
5658
|
+
ip: string;
|
|
5659
|
+
};
|
|
5660
|
+
}, {
|
|
5661
|
+
ip: {
|
|
5662
|
+
ip: string;
|
|
5663
|
+
};
|
|
5664
|
+
}>, z.ZodObject<{
|
|
5665
|
+
country: z.ZodObject<{
|
|
5666
|
+
code: z.ZodString;
|
|
5667
|
+
}, "strip", z.ZodTypeAny, {
|
|
5668
|
+
code: string;
|
|
5669
|
+
}, {
|
|
5670
|
+
code: string;
|
|
5671
|
+
}>;
|
|
5672
|
+
}, "strip", z.ZodTypeAny, {
|
|
5673
|
+
country: {
|
|
5674
|
+
code: string;
|
|
5675
|
+
};
|
|
5676
|
+
}, {
|
|
5677
|
+
country: {
|
|
5678
|
+
code: string;
|
|
5679
|
+
};
|
|
5680
|
+
}>, z.ZodObject<{
|
|
5681
|
+
serviceToken: z.ZodObject<{
|
|
5682
|
+
tokenId: z.ZodString;
|
|
5683
|
+
}, "strip", z.ZodTypeAny, {
|
|
5684
|
+
tokenId: string;
|
|
5685
|
+
}, {
|
|
5686
|
+
tokenId: string;
|
|
5687
|
+
}>;
|
|
5688
|
+
}, "strip", z.ZodTypeAny, {
|
|
5689
|
+
serviceToken: {
|
|
5690
|
+
tokenId: string;
|
|
5691
|
+
};
|
|
5692
|
+
}, {
|
|
5693
|
+
serviceToken: {
|
|
5694
|
+
tokenId: string;
|
|
5695
|
+
};
|
|
5696
|
+
}>, z.ZodObject<{
|
|
5697
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5698
|
+
}, "strip", z.ZodTypeAny, {
|
|
5699
|
+
anyValidServiceToken: {};
|
|
5700
|
+
}, {
|
|
5701
|
+
anyValidServiceToken: {};
|
|
5702
|
+
}>]>, "many">;
|
|
5703
|
+
exclude: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
5704
|
+
email: z.ZodObject<{
|
|
5705
|
+
email: z.ZodString;
|
|
5706
|
+
}, "strip", z.ZodTypeAny, {
|
|
5707
|
+
email: string;
|
|
5708
|
+
}, {
|
|
5709
|
+
email: string;
|
|
5710
|
+
}>;
|
|
5711
|
+
}, "strip", z.ZodTypeAny, {
|
|
5712
|
+
email: {
|
|
5713
|
+
email: string;
|
|
5714
|
+
};
|
|
5715
|
+
}, {
|
|
5716
|
+
email: {
|
|
5717
|
+
email: string;
|
|
5718
|
+
};
|
|
5719
|
+
}>, z.ZodObject<{
|
|
5720
|
+
emailDomain: z.ZodObject<{
|
|
5721
|
+
domain: z.ZodString;
|
|
5722
|
+
}, "strip", z.ZodTypeAny, {
|
|
5723
|
+
domain: string;
|
|
5724
|
+
}, {
|
|
5725
|
+
domain: string;
|
|
5726
|
+
}>;
|
|
5727
|
+
}, "strip", z.ZodTypeAny, {
|
|
5728
|
+
emailDomain: {
|
|
5729
|
+
domain: string;
|
|
5730
|
+
};
|
|
5731
|
+
}, {
|
|
5732
|
+
emailDomain: {
|
|
5733
|
+
domain: string;
|
|
5734
|
+
};
|
|
5735
|
+
}>, z.ZodObject<{
|
|
5736
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5737
|
+
}, "strip", z.ZodTypeAny, {
|
|
5738
|
+
everyone: {};
|
|
5739
|
+
}, {
|
|
5740
|
+
everyone: {};
|
|
5741
|
+
}>, z.ZodObject<{
|
|
5742
|
+
ip: z.ZodObject<{
|
|
5743
|
+
ip: z.ZodString;
|
|
5744
|
+
}, "strip", z.ZodTypeAny, {
|
|
5745
|
+
ip: string;
|
|
5746
|
+
}, {
|
|
5747
|
+
ip: string;
|
|
5748
|
+
}>;
|
|
5749
|
+
}, "strip", z.ZodTypeAny, {
|
|
5750
|
+
ip: {
|
|
5751
|
+
ip: string;
|
|
5752
|
+
};
|
|
5753
|
+
}, {
|
|
5754
|
+
ip: {
|
|
5755
|
+
ip: string;
|
|
5756
|
+
};
|
|
5757
|
+
}>, z.ZodObject<{
|
|
5758
|
+
country: z.ZodObject<{
|
|
5759
|
+
code: z.ZodString;
|
|
5760
|
+
}, "strip", z.ZodTypeAny, {
|
|
5761
|
+
code: string;
|
|
5762
|
+
}, {
|
|
5763
|
+
code: string;
|
|
5764
|
+
}>;
|
|
5765
|
+
}, "strip", z.ZodTypeAny, {
|
|
5766
|
+
country: {
|
|
5767
|
+
code: string;
|
|
5768
|
+
};
|
|
5769
|
+
}, {
|
|
5770
|
+
country: {
|
|
5771
|
+
code: string;
|
|
5772
|
+
};
|
|
5773
|
+
}>, z.ZodObject<{
|
|
5774
|
+
serviceToken: z.ZodObject<{
|
|
5775
|
+
tokenId: z.ZodString;
|
|
5776
|
+
}, "strip", z.ZodTypeAny, {
|
|
5777
|
+
tokenId: string;
|
|
5778
|
+
}, {
|
|
5779
|
+
tokenId: string;
|
|
5780
|
+
}>;
|
|
5781
|
+
}, "strip", z.ZodTypeAny, {
|
|
5782
|
+
serviceToken: {
|
|
5783
|
+
tokenId: string;
|
|
5784
|
+
};
|
|
5785
|
+
}, {
|
|
5786
|
+
serviceToken: {
|
|
5787
|
+
tokenId: string;
|
|
5788
|
+
};
|
|
5789
|
+
}>, z.ZodObject<{
|
|
5790
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5791
|
+
}, "strip", z.ZodTypeAny, {
|
|
5792
|
+
anyValidServiceToken: {};
|
|
5793
|
+
}, {
|
|
5794
|
+
anyValidServiceToken: {};
|
|
5795
|
+
}>]>, "many">>;
|
|
5796
|
+
require: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
5797
|
+
email: z.ZodObject<{
|
|
5798
|
+
email: z.ZodString;
|
|
5799
|
+
}, "strip", z.ZodTypeAny, {
|
|
5800
|
+
email: string;
|
|
5801
|
+
}, {
|
|
5802
|
+
email: string;
|
|
5803
|
+
}>;
|
|
5804
|
+
}, "strip", z.ZodTypeAny, {
|
|
5805
|
+
email: {
|
|
5806
|
+
email: string;
|
|
5807
|
+
};
|
|
5808
|
+
}, {
|
|
5809
|
+
email: {
|
|
5810
|
+
email: string;
|
|
5811
|
+
};
|
|
5812
|
+
}>, z.ZodObject<{
|
|
5813
|
+
emailDomain: z.ZodObject<{
|
|
5814
|
+
domain: z.ZodString;
|
|
5815
|
+
}, "strip", z.ZodTypeAny, {
|
|
5816
|
+
domain: string;
|
|
5817
|
+
}, {
|
|
5818
|
+
domain: string;
|
|
5819
|
+
}>;
|
|
5820
|
+
}, "strip", z.ZodTypeAny, {
|
|
5821
|
+
emailDomain: {
|
|
5822
|
+
domain: string;
|
|
5823
|
+
};
|
|
5824
|
+
}, {
|
|
5825
|
+
emailDomain: {
|
|
5826
|
+
domain: string;
|
|
5827
|
+
};
|
|
5828
|
+
}>, z.ZodObject<{
|
|
5829
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5830
|
+
}, "strip", z.ZodTypeAny, {
|
|
5831
|
+
everyone: {};
|
|
5832
|
+
}, {
|
|
5833
|
+
everyone: {};
|
|
5834
|
+
}>, z.ZodObject<{
|
|
5835
|
+
ip: z.ZodObject<{
|
|
5836
|
+
ip: z.ZodString;
|
|
5837
|
+
}, "strip", z.ZodTypeAny, {
|
|
5838
|
+
ip: string;
|
|
5839
|
+
}, {
|
|
5840
|
+
ip: string;
|
|
5841
|
+
}>;
|
|
5842
|
+
}, "strip", z.ZodTypeAny, {
|
|
5843
|
+
ip: {
|
|
5844
|
+
ip: string;
|
|
5845
|
+
};
|
|
5846
|
+
}, {
|
|
5847
|
+
ip: {
|
|
5848
|
+
ip: string;
|
|
5849
|
+
};
|
|
5850
|
+
}>, z.ZodObject<{
|
|
5851
|
+
country: z.ZodObject<{
|
|
5852
|
+
code: z.ZodString;
|
|
5853
|
+
}, "strip", z.ZodTypeAny, {
|
|
5854
|
+
code: string;
|
|
5855
|
+
}, {
|
|
5856
|
+
code: string;
|
|
5857
|
+
}>;
|
|
5858
|
+
}, "strip", z.ZodTypeAny, {
|
|
5859
|
+
country: {
|
|
5860
|
+
code: string;
|
|
5861
|
+
};
|
|
5862
|
+
}, {
|
|
5863
|
+
country: {
|
|
5864
|
+
code: string;
|
|
5865
|
+
};
|
|
5866
|
+
}>, z.ZodObject<{
|
|
5867
|
+
serviceToken: z.ZodObject<{
|
|
5868
|
+
tokenId: z.ZodString;
|
|
5869
|
+
}, "strip", z.ZodTypeAny, {
|
|
5870
|
+
tokenId: string;
|
|
5871
|
+
}, {
|
|
5872
|
+
tokenId: string;
|
|
5873
|
+
}>;
|
|
5874
|
+
}, "strip", z.ZodTypeAny, {
|
|
5875
|
+
serviceToken: {
|
|
5876
|
+
tokenId: string;
|
|
5877
|
+
};
|
|
5878
|
+
}, {
|
|
5879
|
+
serviceToken: {
|
|
5880
|
+
tokenId: string;
|
|
5881
|
+
};
|
|
5882
|
+
}>, z.ZodObject<{
|
|
5883
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
5884
|
+
}, "strip", z.ZodTypeAny, {
|
|
5885
|
+
anyValidServiceToken: {};
|
|
5886
|
+
}, {
|
|
5887
|
+
anyValidServiceToken: {};
|
|
5888
|
+
}>]>, "many">>;
|
|
5889
|
+
sessionDuration: z.ZodOptional<z.ZodString>;
|
|
5890
|
+
}, "strip", z.ZodTypeAny, {
|
|
5891
|
+
name: string;
|
|
5892
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
5893
|
+
include: ({
|
|
5894
|
+
email: {
|
|
5895
|
+
email: string;
|
|
5896
|
+
};
|
|
5897
|
+
} | {
|
|
5898
|
+
emailDomain: {
|
|
5899
|
+
domain: string;
|
|
5900
|
+
};
|
|
5901
|
+
} | {
|
|
5902
|
+
everyone: {};
|
|
5903
|
+
} | {
|
|
5904
|
+
ip: {
|
|
5905
|
+
ip: string;
|
|
5906
|
+
};
|
|
5907
|
+
} | {
|
|
5908
|
+
country: {
|
|
5909
|
+
code: string;
|
|
5910
|
+
};
|
|
5911
|
+
} | {
|
|
5912
|
+
serviceToken: {
|
|
5913
|
+
tokenId: string;
|
|
5914
|
+
};
|
|
5915
|
+
} | {
|
|
5916
|
+
anyValidServiceToken: {};
|
|
5917
|
+
})[];
|
|
5918
|
+
exclude?: ({
|
|
5919
|
+
email: {
|
|
5920
|
+
email: string;
|
|
5921
|
+
};
|
|
5922
|
+
} | {
|
|
5923
|
+
emailDomain: {
|
|
5924
|
+
domain: string;
|
|
5925
|
+
};
|
|
5926
|
+
} | {
|
|
5927
|
+
everyone: {};
|
|
5928
|
+
} | {
|
|
5929
|
+
ip: {
|
|
5930
|
+
ip: string;
|
|
5931
|
+
};
|
|
5932
|
+
} | {
|
|
5933
|
+
country: {
|
|
5934
|
+
code: string;
|
|
5935
|
+
};
|
|
5936
|
+
} | {
|
|
5937
|
+
serviceToken: {
|
|
5938
|
+
tokenId: string;
|
|
5939
|
+
};
|
|
5940
|
+
} | {
|
|
5941
|
+
anyValidServiceToken: {};
|
|
5942
|
+
})[] | undefined;
|
|
5943
|
+
require?: ({
|
|
5944
|
+
email: {
|
|
5945
|
+
email: string;
|
|
5946
|
+
};
|
|
5947
|
+
} | {
|
|
5948
|
+
emailDomain: {
|
|
5949
|
+
domain: string;
|
|
5950
|
+
};
|
|
5951
|
+
} | {
|
|
5952
|
+
everyone: {};
|
|
5953
|
+
} | {
|
|
5954
|
+
ip: {
|
|
5955
|
+
ip: string;
|
|
5956
|
+
};
|
|
5957
|
+
} | {
|
|
5958
|
+
country: {
|
|
5959
|
+
code: string;
|
|
5960
|
+
};
|
|
5961
|
+
} | {
|
|
5962
|
+
serviceToken: {
|
|
5963
|
+
tokenId: string;
|
|
5964
|
+
};
|
|
5965
|
+
} | {
|
|
5966
|
+
anyValidServiceToken: {};
|
|
5967
|
+
})[] | undefined;
|
|
5968
|
+
sessionDuration?: string | undefined;
|
|
5969
|
+
}, {
|
|
5970
|
+
name: string;
|
|
5971
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
5972
|
+
include: ({
|
|
5973
|
+
email: {
|
|
5974
|
+
email: string;
|
|
5975
|
+
};
|
|
5976
|
+
} | {
|
|
5977
|
+
emailDomain: {
|
|
5978
|
+
domain: string;
|
|
5979
|
+
};
|
|
5980
|
+
} | {
|
|
5981
|
+
everyone: {};
|
|
5982
|
+
} | {
|
|
5983
|
+
ip: {
|
|
5984
|
+
ip: string;
|
|
5985
|
+
};
|
|
5986
|
+
} | {
|
|
5987
|
+
country: {
|
|
5988
|
+
code: string;
|
|
5989
|
+
};
|
|
5990
|
+
} | {
|
|
5991
|
+
serviceToken: {
|
|
5992
|
+
tokenId: string;
|
|
5993
|
+
};
|
|
5994
|
+
} | {
|
|
5995
|
+
anyValidServiceToken: {};
|
|
5996
|
+
})[];
|
|
5997
|
+
exclude?: ({
|
|
5998
|
+
email: {
|
|
5999
|
+
email: string;
|
|
6000
|
+
};
|
|
6001
|
+
} | {
|
|
6002
|
+
emailDomain: {
|
|
6003
|
+
domain: string;
|
|
6004
|
+
};
|
|
6005
|
+
} | {
|
|
6006
|
+
everyone: {};
|
|
6007
|
+
} | {
|
|
6008
|
+
ip: {
|
|
6009
|
+
ip: string;
|
|
6010
|
+
};
|
|
6011
|
+
} | {
|
|
6012
|
+
country: {
|
|
6013
|
+
code: string;
|
|
6014
|
+
};
|
|
6015
|
+
} | {
|
|
6016
|
+
serviceToken: {
|
|
6017
|
+
tokenId: string;
|
|
6018
|
+
};
|
|
6019
|
+
} | {
|
|
6020
|
+
anyValidServiceToken: {};
|
|
6021
|
+
})[] | undefined;
|
|
6022
|
+
require?: ({
|
|
6023
|
+
email: {
|
|
6024
|
+
email: string;
|
|
6025
|
+
};
|
|
6026
|
+
} | {
|
|
6027
|
+
emailDomain: {
|
|
6028
|
+
domain: string;
|
|
6029
|
+
};
|
|
6030
|
+
} | {
|
|
6031
|
+
everyone: {};
|
|
6032
|
+
} | {
|
|
6033
|
+
ip: {
|
|
6034
|
+
ip: string;
|
|
6035
|
+
};
|
|
6036
|
+
} | {
|
|
6037
|
+
country: {
|
|
6038
|
+
code: string;
|
|
6039
|
+
};
|
|
6040
|
+
} | {
|
|
6041
|
+
serviceToken: {
|
|
6042
|
+
tokenId: string;
|
|
6043
|
+
};
|
|
6044
|
+
} | {
|
|
6045
|
+
anyValidServiceToken: {};
|
|
6046
|
+
})[] | undefined;
|
|
6047
|
+
sessionDuration?: string | undefined;
|
|
6048
|
+
}>, "many">;
|
|
6049
|
+
}, "strip", z.ZodTypeAny, {
|
|
6050
|
+
domain: string;
|
|
6051
|
+
policies: {
|
|
6052
|
+
name: string;
|
|
6053
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
6054
|
+
include: ({
|
|
6055
|
+
email: {
|
|
6056
|
+
email: string;
|
|
6057
|
+
};
|
|
6058
|
+
} | {
|
|
6059
|
+
emailDomain: {
|
|
6060
|
+
domain: string;
|
|
6061
|
+
};
|
|
6062
|
+
} | {
|
|
6063
|
+
everyone: {};
|
|
6064
|
+
} | {
|
|
6065
|
+
ip: {
|
|
6066
|
+
ip: string;
|
|
6067
|
+
};
|
|
6068
|
+
} | {
|
|
6069
|
+
country: {
|
|
6070
|
+
code: string;
|
|
6071
|
+
};
|
|
6072
|
+
} | {
|
|
6073
|
+
serviceToken: {
|
|
6074
|
+
tokenId: string;
|
|
6075
|
+
};
|
|
6076
|
+
} | {
|
|
6077
|
+
anyValidServiceToken: {};
|
|
6078
|
+
})[];
|
|
6079
|
+
exclude?: ({
|
|
6080
|
+
email: {
|
|
6081
|
+
email: string;
|
|
6082
|
+
};
|
|
6083
|
+
} | {
|
|
6084
|
+
emailDomain: {
|
|
6085
|
+
domain: string;
|
|
6086
|
+
};
|
|
6087
|
+
} | {
|
|
6088
|
+
everyone: {};
|
|
6089
|
+
} | {
|
|
6090
|
+
ip: {
|
|
6091
|
+
ip: string;
|
|
6092
|
+
};
|
|
6093
|
+
} | {
|
|
6094
|
+
country: {
|
|
6095
|
+
code: string;
|
|
6096
|
+
};
|
|
6097
|
+
} | {
|
|
6098
|
+
serviceToken: {
|
|
6099
|
+
tokenId: string;
|
|
6100
|
+
};
|
|
6101
|
+
} | {
|
|
6102
|
+
anyValidServiceToken: {};
|
|
6103
|
+
})[] | undefined;
|
|
6104
|
+
require?: ({
|
|
6105
|
+
email: {
|
|
6106
|
+
email: string;
|
|
6107
|
+
};
|
|
6108
|
+
} | {
|
|
6109
|
+
emailDomain: {
|
|
6110
|
+
domain: string;
|
|
6111
|
+
};
|
|
6112
|
+
} | {
|
|
6113
|
+
everyone: {};
|
|
6114
|
+
} | {
|
|
6115
|
+
ip: {
|
|
6116
|
+
ip: string;
|
|
6117
|
+
};
|
|
6118
|
+
} | {
|
|
6119
|
+
country: {
|
|
6120
|
+
code: string;
|
|
6121
|
+
};
|
|
6122
|
+
} | {
|
|
6123
|
+
serviceToken: {
|
|
6124
|
+
tokenId: string;
|
|
6125
|
+
};
|
|
6126
|
+
} | {
|
|
6127
|
+
anyValidServiceToken: {};
|
|
6128
|
+
})[] | undefined;
|
|
6129
|
+
sessionDuration?: string | undefined;
|
|
6130
|
+
}[];
|
|
6131
|
+
sessionDuration?: string | undefined;
|
|
6132
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
6133
|
+
allowedIdps?: string[] | undefined;
|
|
6134
|
+
}, {
|
|
6135
|
+
domain: string;
|
|
6136
|
+
policies: {
|
|
6137
|
+
name: string;
|
|
6138
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
6139
|
+
include: ({
|
|
6140
|
+
email: {
|
|
6141
|
+
email: string;
|
|
6142
|
+
};
|
|
6143
|
+
} | {
|
|
6144
|
+
emailDomain: {
|
|
6145
|
+
domain: string;
|
|
6146
|
+
};
|
|
6147
|
+
} | {
|
|
6148
|
+
everyone: {};
|
|
6149
|
+
} | {
|
|
6150
|
+
ip: {
|
|
6151
|
+
ip: string;
|
|
6152
|
+
};
|
|
6153
|
+
} | {
|
|
6154
|
+
country: {
|
|
6155
|
+
code: string;
|
|
6156
|
+
};
|
|
6157
|
+
} | {
|
|
6158
|
+
serviceToken: {
|
|
6159
|
+
tokenId: string;
|
|
6160
|
+
};
|
|
6161
|
+
} | {
|
|
6162
|
+
anyValidServiceToken: {};
|
|
6163
|
+
})[];
|
|
6164
|
+
exclude?: ({
|
|
6165
|
+
email: {
|
|
6166
|
+
email: string;
|
|
6167
|
+
};
|
|
6168
|
+
} | {
|
|
6169
|
+
emailDomain: {
|
|
6170
|
+
domain: string;
|
|
6171
|
+
};
|
|
6172
|
+
} | {
|
|
6173
|
+
everyone: {};
|
|
6174
|
+
} | {
|
|
6175
|
+
ip: {
|
|
6176
|
+
ip: string;
|
|
6177
|
+
};
|
|
6178
|
+
} | {
|
|
6179
|
+
country: {
|
|
6180
|
+
code: string;
|
|
6181
|
+
};
|
|
6182
|
+
} | {
|
|
6183
|
+
serviceToken: {
|
|
6184
|
+
tokenId: string;
|
|
6185
|
+
};
|
|
6186
|
+
} | {
|
|
6187
|
+
anyValidServiceToken: {};
|
|
6188
|
+
})[] | undefined;
|
|
6189
|
+
require?: ({
|
|
6190
|
+
email: {
|
|
6191
|
+
email: string;
|
|
6192
|
+
};
|
|
6193
|
+
} | {
|
|
6194
|
+
emailDomain: {
|
|
6195
|
+
domain: string;
|
|
6196
|
+
};
|
|
6197
|
+
} | {
|
|
6198
|
+
everyone: {};
|
|
6199
|
+
} | {
|
|
6200
|
+
ip: {
|
|
6201
|
+
ip: string;
|
|
6202
|
+
};
|
|
6203
|
+
} | {
|
|
6204
|
+
country: {
|
|
6205
|
+
code: string;
|
|
6206
|
+
};
|
|
6207
|
+
} | {
|
|
6208
|
+
serviceToken: {
|
|
6209
|
+
tokenId: string;
|
|
6210
|
+
};
|
|
6211
|
+
} | {
|
|
6212
|
+
anyValidServiceToken: {};
|
|
6213
|
+
})[] | undefined;
|
|
6214
|
+
sessionDuration?: string | undefined;
|
|
6215
|
+
}[];
|
|
6216
|
+
sessionDuration?: string | undefined;
|
|
6217
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
6218
|
+
allowedIdps?: string[] | undefined;
|
|
6219
|
+
}>;
|
|
6220
|
+
}, "strip", z.ZodTypeAny, {
|
|
6221
|
+
kind: "AccessApplication";
|
|
6222
|
+
metadata: {
|
|
6223
|
+
name: string;
|
|
6224
|
+
namespace?: string | undefined;
|
|
6225
|
+
labels?: Record<string, string> | undefined;
|
|
6226
|
+
annotations?: Record<string, string> | undefined;
|
|
6227
|
+
};
|
|
6228
|
+
spec: {
|
|
6229
|
+
domain: string;
|
|
6230
|
+
policies: {
|
|
6231
|
+
name: string;
|
|
6232
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
6233
|
+
include: ({
|
|
6234
|
+
email: {
|
|
6235
|
+
email: string;
|
|
6236
|
+
};
|
|
6237
|
+
} | {
|
|
6238
|
+
emailDomain: {
|
|
6239
|
+
domain: string;
|
|
6240
|
+
};
|
|
6241
|
+
} | {
|
|
6242
|
+
everyone: {};
|
|
6243
|
+
} | {
|
|
6244
|
+
ip: {
|
|
6245
|
+
ip: string;
|
|
6246
|
+
};
|
|
6247
|
+
} | {
|
|
6248
|
+
country: {
|
|
6249
|
+
code: string;
|
|
6250
|
+
};
|
|
6251
|
+
} | {
|
|
6252
|
+
serviceToken: {
|
|
6253
|
+
tokenId: string;
|
|
6254
|
+
};
|
|
6255
|
+
} | {
|
|
6256
|
+
anyValidServiceToken: {};
|
|
6257
|
+
})[];
|
|
6258
|
+
exclude?: ({
|
|
6259
|
+
email: {
|
|
6260
|
+
email: string;
|
|
6261
|
+
};
|
|
6262
|
+
} | {
|
|
6263
|
+
emailDomain: {
|
|
6264
|
+
domain: string;
|
|
6265
|
+
};
|
|
6266
|
+
} | {
|
|
6267
|
+
everyone: {};
|
|
6268
|
+
} | {
|
|
6269
|
+
ip: {
|
|
6270
|
+
ip: string;
|
|
6271
|
+
};
|
|
6272
|
+
} | {
|
|
6273
|
+
country: {
|
|
6274
|
+
code: string;
|
|
6275
|
+
};
|
|
6276
|
+
} | {
|
|
6277
|
+
serviceToken: {
|
|
6278
|
+
tokenId: string;
|
|
6279
|
+
};
|
|
6280
|
+
} | {
|
|
6281
|
+
anyValidServiceToken: {};
|
|
6282
|
+
})[] | undefined;
|
|
6283
|
+
require?: ({
|
|
6284
|
+
email: {
|
|
6285
|
+
email: string;
|
|
6286
|
+
};
|
|
6287
|
+
} | {
|
|
6288
|
+
emailDomain: {
|
|
6289
|
+
domain: string;
|
|
6290
|
+
};
|
|
6291
|
+
} | {
|
|
6292
|
+
everyone: {};
|
|
6293
|
+
} | {
|
|
6294
|
+
ip: {
|
|
6295
|
+
ip: string;
|
|
6296
|
+
};
|
|
6297
|
+
} | {
|
|
6298
|
+
country: {
|
|
6299
|
+
code: string;
|
|
6300
|
+
};
|
|
6301
|
+
} | {
|
|
6302
|
+
serviceToken: {
|
|
6303
|
+
tokenId: string;
|
|
6304
|
+
};
|
|
6305
|
+
} | {
|
|
6306
|
+
anyValidServiceToken: {};
|
|
6307
|
+
})[] | undefined;
|
|
6308
|
+
sessionDuration?: string | undefined;
|
|
6309
|
+
}[];
|
|
6310
|
+
sessionDuration?: string | undefined;
|
|
6311
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
6312
|
+
allowedIdps?: string[] | undefined;
|
|
6313
|
+
};
|
|
6314
|
+
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
6315
|
+
}, {
|
|
6316
|
+
kind: "AccessApplication";
|
|
6317
|
+
metadata: {
|
|
6318
|
+
name: string;
|
|
6319
|
+
namespace?: string | undefined;
|
|
6320
|
+
labels?: Record<string, string> | undefined;
|
|
6321
|
+
annotations?: Record<string, string> | undefined;
|
|
6322
|
+
};
|
|
6323
|
+
spec: {
|
|
6324
|
+
domain: string;
|
|
6325
|
+
policies: {
|
|
6326
|
+
name: string;
|
|
6327
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
6328
|
+
include: ({
|
|
6329
|
+
email: {
|
|
6330
|
+
email: string;
|
|
6331
|
+
};
|
|
6332
|
+
} | {
|
|
6333
|
+
emailDomain: {
|
|
6334
|
+
domain: string;
|
|
6335
|
+
};
|
|
6336
|
+
} | {
|
|
6337
|
+
everyone: {};
|
|
6338
|
+
} | {
|
|
6339
|
+
ip: {
|
|
6340
|
+
ip: string;
|
|
6341
|
+
};
|
|
6342
|
+
} | {
|
|
6343
|
+
country: {
|
|
6344
|
+
code: string;
|
|
6345
|
+
};
|
|
6346
|
+
} | {
|
|
6347
|
+
serviceToken: {
|
|
6348
|
+
tokenId: string;
|
|
6349
|
+
};
|
|
6350
|
+
} | {
|
|
6351
|
+
anyValidServiceToken: {};
|
|
6352
|
+
})[];
|
|
6353
|
+
exclude?: ({
|
|
6354
|
+
email: {
|
|
6355
|
+
email: string;
|
|
6356
|
+
};
|
|
6357
|
+
} | {
|
|
6358
|
+
emailDomain: {
|
|
6359
|
+
domain: string;
|
|
6360
|
+
};
|
|
6361
|
+
} | {
|
|
6362
|
+
everyone: {};
|
|
6363
|
+
} | {
|
|
6364
|
+
ip: {
|
|
6365
|
+
ip: string;
|
|
6366
|
+
};
|
|
6367
|
+
} | {
|
|
6368
|
+
country: {
|
|
6369
|
+
code: string;
|
|
6370
|
+
};
|
|
6371
|
+
} | {
|
|
6372
|
+
serviceToken: {
|
|
6373
|
+
tokenId: string;
|
|
6374
|
+
};
|
|
6375
|
+
} | {
|
|
6376
|
+
anyValidServiceToken: {};
|
|
6377
|
+
})[] | undefined;
|
|
6378
|
+
require?: ({
|
|
6379
|
+
email: {
|
|
6380
|
+
email: string;
|
|
6381
|
+
};
|
|
6382
|
+
} | {
|
|
6383
|
+
emailDomain: {
|
|
6384
|
+
domain: string;
|
|
6385
|
+
};
|
|
6386
|
+
} | {
|
|
6387
|
+
everyone: {};
|
|
6388
|
+
} | {
|
|
6389
|
+
ip: {
|
|
6390
|
+
ip: string;
|
|
6391
|
+
};
|
|
6392
|
+
} | {
|
|
6393
|
+
country: {
|
|
6394
|
+
code: string;
|
|
6395
|
+
};
|
|
6396
|
+
} | {
|
|
6397
|
+
serviceToken: {
|
|
6398
|
+
tokenId: string;
|
|
6399
|
+
};
|
|
6400
|
+
} | {
|
|
6401
|
+
anyValidServiceToken: {};
|
|
6402
|
+
})[] | undefined;
|
|
6403
|
+
sessionDuration?: string | undefined;
|
|
6404
|
+
}[];
|
|
6405
|
+
sessionDuration?: string | undefined;
|
|
6406
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
6407
|
+
allowedIdps?: string[] | undefined;
|
|
6408
|
+
};
|
|
6409
|
+
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
6410
|
+
}>;
|
|
6411
|
+
export declare const ingressSchema: z.ZodObject<{
|
|
6412
|
+
apiVersion: z.ZodLiteral<"networking.k8s.io/v1">;
|
|
6413
|
+
kind: z.ZodLiteral<"Ingress">;
|
|
6414
|
+
metadata: z.ZodObject<{
|
|
6415
|
+
name: z.ZodString;
|
|
6416
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
6417
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6418
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6419
|
+
}, "strip", z.ZodTypeAny, {
|
|
6420
|
+
name: string;
|
|
6421
|
+
namespace?: string | undefined;
|
|
6422
|
+
labels?: Record<string, string> | undefined;
|
|
6423
|
+
annotations?: Record<string, string> | undefined;
|
|
6424
|
+
}, {
|
|
6425
|
+
name: string;
|
|
6426
|
+
namespace?: string | undefined;
|
|
6427
|
+
labels?: Record<string, string> | undefined;
|
|
6428
|
+
annotations?: Record<string, string> | undefined;
|
|
6429
|
+
}>;
|
|
6430
|
+
spec: z.ZodObject<{
|
|
6431
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
6432
|
+
host: z.ZodOptional<z.ZodString>;
|
|
6433
|
+
http: z.ZodObject<{
|
|
6434
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
6435
|
+
path: z.ZodString;
|
|
6436
|
+
pathType: z.ZodEnum<["Prefix", "Exact", "ImplementationSpecific"]>;
|
|
6437
|
+
backend: z.ZodObject<{
|
|
6438
|
+
service: z.ZodObject<{
|
|
6439
|
+
name: z.ZodString;
|
|
6440
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
6441
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
6442
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6443
|
+
}, "strip", z.ZodTypeAny, {
|
|
6444
|
+
number?: number | undefined;
|
|
6445
|
+
name?: string | undefined;
|
|
6446
|
+
}, {
|
|
6447
|
+
number?: number | undefined;
|
|
6448
|
+
name?: string | undefined;
|
|
6449
|
+
}>>;
|
|
6450
|
+
}, "strip", z.ZodTypeAny, {
|
|
6451
|
+
name: string;
|
|
6452
|
+
port?: {
|
|
6453
|
+
number?: number | undefined;
|
|
6454
|
+
name?: string | undefined;
|
|
6455
|
+
} | undefined;
|
|
6456
|
+
}, {
|
|
6457
|
+
name: string;
|
|
6458
|
+
port?: {
|
|
6459
|
+
number?: number | undefined;
|
|
6460
|
+
name?: string | undefined;
|
|
6461
|
+
} | undefined;
|
|
6462
|
+
}>;
|
|
6463
|
+
}, "strip", z.ZodTypeAny, {
|
|
6464
|
+
service: {
|
|
6465
|
+
name: string;
|
|
6466
|
+
port?: {
|
|
6467
|
+
number?: number | undefined;
|
|
6468
|
+
name?: string | undefined;
|
|
6469
|
+
} | undefined;
|
|
6470
|
+
};
|
|
6471
|
+
}, {
|
|
6472
|
+
service: {
|
|
6473
|
+
name: string;
|
|
6474
|
+
port?: {
|
|
6475
|
+
number?: number | undefined;
|
|
6476
|
+
name?: string | undefined;
|
|
6477
|
+
} | undefined;
|
|
6478
|
+
};
|
|
6479
|
+
}>;
|
|
6480
|
+
}, "strip", z.ZodTypeAny, {
|
|
6481
|
+
path: string;
|
|
6482
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6483
|
+
backend: {
|
|
6484
|
+
service: {
|
|
6485
|
+
name: string;
|
|
6486
|
+
port?: {
|
|
6487
|
+
number?: number | undefined;
|
|
6488
|
+
name?: string | undefined;
|
|
6489
|
+
} | undefined;
|
|
6490
|
+
};
|
|
6491
|
+
};
|
|
6492
|
+
}, {
|
|
6493
|
+
path: string;
|
|
6494
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6495
|
+
backend: {
|
|
6496
|
+
service: {
|
|
6497
|
+
name: string;
|
|
6498
|
+
port?: {
|
|
6499
|
+
number?: number | undefined;
|
|
6500
|
+
name?: string | undefined;
|
|
6501
|
+
} | undefined;
|
|
6502
|
+
};
|
|
6503
|
+
};
|
|
6504
|
+
}>, "many">;
|
|
6505
|
+
}, "strip", z.ZodTypeAny, {
|
|
6506
|
+
paths: {
|
|
6507
|
+
path: string;
|
|
6508
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6509
|
+
backend: {
|
|
6510
|
+
service: {
|
|
6511
|
+
name: string;
|
|
6512
|
+
port?: {
|
|
6513
|
+
number?: number | undefined;
|
|
6514
|
+
name?: string | undefined;
|
|
6515
|
+
} | undefined;
|
|
6516
|
+
};
|
|
6517
|
+
};
|
|
6518
|
+
}[];
|
|
6519
|
+
}, {
|
|
6520
|
+
paths: {
|
|
6521
|
+
path: string;
|
|
6522
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6523
|
+
backend: {
|
|
6524
|
+
service: {
|
|
6525
|
+
name: string;
|
|
6526
|
+
port?: {
|
|
6527
|
+
number?: number | undefined;
|
|
6528
|
+
name?: string | undefined;
|
|
6529
|
+
} | undefined;
|
|
6530
|
+
};
|
|
6531
|
+
};
|
|
6532
|
+
}[];
|
|
6533
|
+
}>;
|
|
6534
|
+
}, "strip", z.ZodTypeAny, {
|
|
6535
|
+
http: {
|
|
6536
|
+
paths: {
|
|
6537
|
+
path: string;
|
|
6538
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6539
|
+
backend: {
|
|
6540
|
+
service: {
|
|
6541
|
+
name: string;
|
|
6542
|
+
port?: {
|
|
6543
|
+
number?: number | undefined;
|
|
6544
|
+
name?: string | undefined;
|
|
6545
|
+
} | undefined;
|
|
6546
|
+
};
|
|
6547
|
+
};
|
|
6548
|
+
}[];
|
|
6549
|
+
};
|
|
6550
|
+
host?: string | undefined;
|
|
6551
|
+
}, {
|
|
6552
|
+
http: {
|
|
6553
|
+
paths: {
|
|
6554
|
+
path: string;
|
|
6555
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6556
|
+
backend: {
|
|
6557
|
+
service: {
|
|
6558
|
+
name: string;
|
|
6559
|
+
port?: {
|
|
6560
|
+
number?: number | undefined;
|
|
6561
|
+
name?: string | undefined;
|
|
6562
|
+
} | undefined;
|
|
6563
|
+
};
|
|
6564
|
+
};
|
|
6565
|
+
}[];
|
|
6566
|
+
};
|
|
6567
|
+
host?: string | undefined;
|
|
6568
|
+
}>, "many">;
|
|
6569
|
+
defaultBackend: z.ZodOptional<z.ZodObject<{
|
|
6570
|
+
service: z.ZodObject<{
|
|
6571
|
+
name: z.ZodString;
|
|
6572
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
6573
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
6574
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6575
|
+
}, "strip", z.ZodTypeAny, {
|
|
6576
|
+
number?: number | undefined;
|
|
6577
|
+
name?: string | undefined;
|
|
6578
|
+
}, {
|
|
6579
|
+
number?: number | undefined;
|
|
6580
|
+
name?: string | undefined;
|
|
6581
|
+
}>>;
|
|
6582
|
+
}, "strip", z.ZodTypeAny, {
|
|
6583
|
+
name: string;
|
|
6584
|
+
port?: {
|
|
6585
|
+
number?: number | undefined;
|
|
6586
|
+
name?: string | undefined;
|
|
6587
|
+
} | undefined;
|
|
6588
|
+
}, {
|
|
6589
|
+
name: string;
|
|
6590
|
+
port?: {
|
|
6591
|
+
number?: number | undefined;
|
|
6592
|
+
name?: string | undefined;
|
|
6593
|
+
} | undefined;
|
|
6594
|
+
}>;
|
|
6595
|
+
}, "strip", z.ZodTypeAny, {
|
|
6596
|
+
service: {
|
|
6597
|
+
name: string;
|
|
6598
|
+
port?: {
|
|
6599
|
+
number?: number | undefined;
|
|
6600
|
+
name?: string | undefined;
|
|
6601
|
+
} | undefined;
|
|
6602
|
+
};
|
|
6603
|
+
}, {
|
|
6604
|
+
service: {
|
|
6605
|
+
name: string;
|
|
6606
|
+
port?: {
|
|
6607
|
+
number?: number | undefined;
|
|
6608
|
+
name?: string | undefined;
|
|
6609
|
+
} | undefined;
|
|
6610
|
+
};
|
|
6611
|
+
}>>;
|
|
6612
|
+
}, "strip", z.ZodTypeAny, {
|
|
6613
|
+
rules: {
|
|
6614
|
+
http: {
|
|
6615
|
+
paths: {
|
|
6616
|
+
path: string;
|
|
6617
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6618
|
+
backend: {
|
|
6619
|
+
service: {
|
|
6620
|
+
name: string;
|
|
6621
|
+
port?: {
|
|
6622
|
+
number?: number | undefined;
|
|
6623
|
+
name?: string | undefined;
|
|
6624
|
+
} | undefined;
|
|
6625
|
+
};
|
|
6626
|
+
};
|
|
6627
|
+
}[];
|
|
6628
|
+
};
|
|
6629
|
+
host?: string | undefined;
|
|
6630
|
+
}[];
|
|
6631
|
+
defaultBackend?: {
|
|
6632
|
+
service: {
|
|
6633
|
+
name: string;
|
|
6634
|
+
port?: {
|
|
6635
|
+
number?: number | undefined;
|
|
6636
|
+
name?: string | undefined;
|
|
6637
|
+
} | undefined;
|
|
6638
|
+
};
|
|
6639
|
+
} | undefined;
|
|
6640
|
+
}, {
|
|
6641
|
+
rules: {
|
|
6642
|
+
http: {
|
|
6643
|
+
paths: {
|
|
6644
|
+
path: string;
|
|
6645
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6646
|
+
backend: {
|
|
6647
|
+
service: {
|
|
6648
|
+
name: string;
|
|
6649
|
+
port?: {
|
|
6650
|
+
number?: number | undefined;
|
|
6651
|
+
name?: string | undefined;
|
|
6652
|
+
} | undefined;
|
|
6653
|
+
};
|
|
6654
|
+
};
|
|
6655
|
+
}[];
|
|
6656
|
+
};
|
|
6657
|
+
host?: string | undefined;
|
|
6658
|
+
}[];
|
|
6659
|
+
defaultBackend?: {
|
|
6660
|
+
service: {
|
|
6661
|
+
name: string;
|
|
6662
|
+
port?: {
|
|
6663
|
+
number?: number | undefined;
|
|
6664
|
+
name?: string | undefined;
|
|
6665
|
+
} | undefined;
|
|
6666
|
+
};
|
|
6667
|
+
} | undefined;
|
|
6668
|
+
}>;
|
|
6669
|
+
}, "strip", z.ZodTypeAny, {
|
|
6670
|
+
kind: "Ingress";
|
|
6671
|
+
metadata: {
|
|
6672
|
+
name: string;
|
|
6673
|
+
namespace?: string | undefined;
|
|
6674
|
+
labels?: Record<string, string> | undefined;
|
|
6675
|
+
annotations?: Record<string, string> | undefined;
|
|
6676
|
+
};
|
|
6677
|
+
spec: {
|
|
6678
|
+
rules: {
|
|
6679
|
+
http: {
|
|
6680
|
+
paths: {
|
|
6681
|
+
path: string;
|
|
6682
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6683
|
+
backend: {
|
|
6684
|
+
service: {
|
|
6685
|
+
name: string;
|
|
6686
|
+
port?: {
|
|
6687
|
+
number?: number | undefined;
|
|
6688
|
+
name?: string | undefined;
|
|
6689
|
+
} | undefined;
|
|
6690
|
+
};
|
|
6691
|
+
};
|
|
6692
|
+
}[];
|
|
6693
|
+
};
|
|
6694
|
+
host?: string | undefined;
|
|
6695
|
+
}[];
|
|
6696
|
+
defaultBackend?: {
|
|
6697
|
+
service: {
|
|
6698
|
+
name: string;
|
|
6699
|
+
port?: {
|
|
6700
|
+
number?: number | undefined;
|
|
6701
|
+
name?: string | undefined;
|
|
6702
|
+
} | undefined;
|
|
6703
|
+
};
|
|
6704
|
+
} | undefined;
|
|
6705
|
+
};
|
|
6706
|
+
apiVersion: "networking.k8s.io/v1";
|
|
6707
|
+
}, {
|
|
6708
|
+
kind: "Ingress";
|
|
6709
|
+
metadata: {
|
|
6710
|
+
name: string;
|
|
6711
|
+
namespace?: string | undefined;
|
|
6712
|
+
labels?: Record<string, string> | undefined;
|
|
6713
|
+
annotations?: Record<string, string> | undefined;
|
|
6714
|
+
};
|
|
6715
|
+
spec: {
|
|
6716
|
+
rules: {
|
|
6717
|
+
http: {
|
|
6718
|
+
paths: {
|
|
6719
|
+
path: string;
|
|
6720
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
6721
|
+
backend: {
|
|
6722
|
+
service: {
|
|
6723
|
+
name: string;
|
|
6724
|
+
port?: {
|
|
6725
|
+
number?: number | undefined;
|
|
6726
|
+
name?: string | undefined;
|
|
6727
|
+
} | undefined;
|
|
6728
|
+
};
|
|
6729
|
+
};
|
|
6730
|
+
}[];
|
|
6731
|
+
};
|
|
6732
|
+
host?: string | undefined;
|
|
6733
|
+
}[];
|
|
6734
|
+
defaultBackend?: {
|
|
6735
|
+
service: {
|
|
6736
|
+
name: string;
|
|
6737
|
+
port?: {
|
|
6738
|
+
number?: number | undefined;
|
|
6739
|
+
name?: string | undefined;
|
|
6740
|
+
} | undefined;
|
|
6741
|
+
};
|
|
6742
|
+
} | undefined;
|
|
6743
|
+
};
|
|
6744
|
+
apiVersion: "networking.k8s.io/v1";
|
|
6745
|
+
}>;
|
|
6746
|
+
export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodObject<{
|
|
6747
|
+
apiVersion: z.ZodLiteral<"apps/v1">;
|
|
6748
|
+
kind: z.ZodLiteral<"Deployment">;
|
|
6749
|
+
metadata: z.ZodObject<{
|
|
6750
|
+
name: z.ZodString;
|
|
6751
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
6752
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6753
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6754
|
+
}, "strip", z.ZodTypeAny, {
|
|
6755
|
+
name: string;
|
|
6756
|
+
namespace?: string | undefined;
|
|
6757
|
+
labels?: Record<string, string> | undefined;
|
|
6758
|
+
annotations?: Record<string, string> | undefined;
|
|
6759
|
+
}, {
|
|
6760
|
+
name: string;
|
|
6761
|
+
namespace?: string | undefined;
|
|
6762
|
+
labels?: Record<string, string> | undefined;
|
|
6763
|
+
annotations?: Record<string, string> | undefined;
|
|
6764
|
+
}>;
|
|
6765
|
+
spec: z.ZodObject<{
|
|
6766
|
+
replicas: z.ZodOptional<z.ZodNumber>;
|
|
6767
|
+
selector: z.ZodObject<{
|
|
6768
|
+
matchLabels: z.ZodRecord<z.ZodString, z.ZodString>;
|
|
6769
|
+
}, "strip", z.ZodTypeAny, {
|
|
6770
|
+
matchLabels: Record<string, string>;
|
|
6771
|
+
}, {
|
|
6772
|
+
matchLabels: Record<string, string>;
|
|
6773
|
+
}>;
|
|
6774
|
+
template: z.ZodObject<{
|
|
6775
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
6776
|
+
name: z.ZodOptional<z.ZodString>;
|
|
6777
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
6778
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6779
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
6780
|
+
}, "strip", z.ZodTypeAny, {
|
|
6781
|
+
name?: string | undefined;
|
|
6782
|
+
namespace?: string | undefined;
|
|
6783
|
+
labels?: Record<string, string> | undefined;
|
|
6784
|
+
annotations?: Record<string, string> | undefined;
|
|
6785
|
+
}, {
|
|
6786
|
+
name?: string | undefined;
|
|
6787
|
+
namespace?: string | undefined;
|
|
6788
|
+
labels?: Record<string, string> | undefined;
|
|
6789
|
+
annotations?: Record<string, string> | undefined;
|
|
6790
|
+
}>>;
|
|
6791
|
+
spec: z.ZodObject<{
|
|
6792
|
+
containers: z.ZodArray<z.ZodObject<{
|
|
6793
|
+
name: z.ZodString;
|
|
6794
|
+
image: z.ZodString;
|
|
6795
|
+
env: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6796
|
+
name: z.ZodString;
|
|
6797
|
+
value: z.ZodOptional<z.ZodString>;
|
|
6798
|
+
valueFrom: z.ZodOptional<z.ZodObject<{
|
|
6799
|
+
configMapKeyRef: z.ZodOptional<z.ZodObject<{
|
|
6800
|
+
name: z.ZodString;
|
|
6801
|
+
key: z.ZodString;
|
|
6802
|
+
}, "strip", z.ZodTypeAny, {
|
|
6803
|
+
name: string;
|
|
6804
|
+
key: string;
|
|
6805
|
+
}, {
|
|
6806
|
+
name: string;
|
|
6807
|
+
key: string;
|
|
6808
|
+
}>>;
|
|
6809
|
+
secretKeyRef: z.ZodOptional<z.ZodObject<{
|
|
6810
|
+
name: z.ZodString;
|
|
6811
|
+
key: z.ZodString;
|
|
6812
|
+
}, "strip", z.ZodTypeAny, {
|
|
6813
|
+
name: string;
|
|
6814
|
+
key: string;
|
|
6815
|
+
}, {
|
|
6816
|
+
name: string;
|
|
6817
|
+
key: string;
|
|
6818
|
+
}>>;
|
|
6819
|
+
}, "strip", z.ZodTypeAny, {
|
|
6820
|
+
configMapKeyRef?: {
|
|
6821
|
+
name: string;
|
|
6822
|
+
key: string;
|
|
6823
|
+
} | undefined;
|
|
6824
|
+
secretKeyRef?: {
|
|
6825
|
+
name: string;
|
|
6826
|
+
key: string;
|
|
6827
|
+
} | undefined;
|
|
6828
|
+
}, {
|
|
6829
|
+
configMapKeyRef?: {
|
|
6830
|
+
name: string;
|
|
6831
|
+
key: string;
|
|
6832
|
+
} | undefined;
|
|
6833
|
+
secretKeyRef?: {
|
|
6834
|
+
name: string;
|
|
6835
|
+
key: string;
|
|
6836
|
+
} | undefined;
|
|
6837
|
+
}>>;
|
|
6838
|
+
}, "strip", z.ZodTypeAny, {
|
|
6839
|
+
name: string;
|
|
6840
|
+
value?: string | undefined;
|
|
6841
|
+
valueFrom?: {
|
|
6842
|
+
configMapKeyRef?: {
|
|
6843
|
+
name: string;
|
|
6844
|
+
key: string;
|
|
6845
|
+
} | undefined;
|
|
6846
|
+
secretKeyRef?: {
|
|
6847
|
+
name: string;
|
|
6848
|
+
key: string;
|
|
6849
|
+
} | undefined;
|
|
6850
|
+
} | undefined;
|
|
6851
|
+
}, {
|
|
6852
|
+
name: string;
|
|
6853
|
+
value?: string | undefined;
|
|
6854
|
+
valueFrom?: {
|
|
6855
|
+
configMapKeyRef?: {
|
|
6856
|
+
name: string;
|
|
6857
|
+
key: string;
|
|
6858
|
+
} | undefined;
|
|
6859
|
+
secretKeyRef?: {
|
|
6860
|
+
name: string;
|
|
6861
|
+
key: string;
|
|
6862
|
+
} | undefined;
|
|
6863
|
+
} | undefined;
|
|
6864
|
+
}>, "many">>;
|
|
6865
|
+
volumeMounts: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
6866
|
+
name: z.ZodString;
|
|
6867
|
+
mountPath: z.ZodString;
|
|
6868
|
+
}, "strip", z.ZodTypeAny, {
|
|
6869
|
+
name: string;
|
|
6870
|
+
mountPath: string;
|
|
6871
|
+
}, {
|
|
6872
|
+
name: string;
|
|
6873
|
+
mountPath: string;
|
|
6874
|
+
}>, "many">>;
|
|
6875
|
+
}, "strip", z.ZodTypeAny, {
|
|
6876
|
+
name: string;
|
|
6877
|
+
image: string;
|
|
5321
6878
|
env?: {
|
|
5322
6879
|
name: string;
|
|
5323
6880
|
value?: string | undefined;
|
|
@@ -5416,6 +6973,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5416
6973
|
}, {
|
|
5417
6974
|
dataset: string;
|
|
5418
6975
|
}>>;
|
|
6976
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
6977
|
+
certificateId: z.ZodString;
|
|
6978
|
+
}, "strip", z.ZodTypeAny, {
|
|
6979
|
+
certificateId: string;
|
|
6980
|
+
}, {
|
|
6981
|
+
certificateId: string;
|
|
6982
|
+
}>>;
|
|
6983
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
6984
|
+
pipelineId: z.ZodString;
|
|
6985
|
+
}, "strip", z.ZodTypeAny, {
|
|
6986
|
+
pipelineId: string;
|
|
6987
|
+
}, {
|
|
6988
|
+
pipelineId: string;
|
|
6989
|
+
}>>;
|
|
5419
6990
|
}, "strip", z.ZodTypeAny, {
|
|
5420
6991
|
name: string;
|
|
5421
6992
|
r2BucketRef?: {
|
|
@@ -5442,6 +7013,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5442
7013
|
analyticsEngineRef?: {
|
|
5443
7014
|
dataset: string;
|
|
5444
7015
|
} | undefined;
|
|
7016
|
+
mtlsCertificateRef?: {
|
|
7017
|
+
certificateId: string;
|
|
7018
|
+
} | undefined;
|
|
7019
|
+
pipelinesRef?: {
|
|
7020
|
+
pipelineId: string;
|
|
7021
|
+
} | undefined;
|
|
5445
7022
|
}, {
|
|
5446
7023
|
name: string;
|
|
5447
7024
|
r2BucketRef?: {
|
|
@@ -5468,6 +7045,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5468
7045
|
analyticsEngineRef?: {
|
|
5469
7046
|
dataset: string;
|
|
5470
7047
|
} | undefined;
|
|
7048
|
+
mtlsCertificateRef?: {
|
|
7049
|
+
certificateId: string;
|
|
7050
|
+
} | undefined;
|
|
7051
|
+
pipelinesRef?: {
|
|
7052
|
+
pipelineId: string;
|
|
7053
|
+
} | undefined;
|
|
5471
7054
|
}>, "many">>;
|
|
5472
7055
|
}, "strip", z.ZodTypeAny, {
|
|
5473
7056
|
containers: {
|
|
@@ -5518,6 +7101,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5518
7101
|
analyticsEngineRef?: {
|
|
5519
7102
|
dataset: string;
|
|
5520
7103
|
} | undefined;
|
|
7104
|
+
mtlsCertificateRef?: {
|
|
7105
|
+
certificateId: string;
|
|
7106
|
+
} | undefined;
|
|
7107
|
+
pipelinesRef?: {
|
|
7108
|
+
pipelineId: string;
|
|
7109
|
+
} | undefined;
|
|
5521
7110
|
}[] | undefined;
|
|
5522
7111
|
}, {
|
|
5523
7112
|
containers: {
|
|
@@ -5568,6 +7157,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5568
7157
|
analyticsEngineRef?: {
|
|
5569
7158
|
dataset: string;
|
|
5570
7159
|
} | undefined;
|
|
7160
|
+
mtlsCertificateRef?: {
|
|
7161
|
+
certificateId: string;
|
|
7162
|
+
} | undefined;
|
|
7163
|
+
pipelinesRef?: {
|
|
7164
|
+
pipelineId: string;
|
|
7165
|
+
} | undefined;
|
|
5571
7166
|
}[] | undefined;
|
|
5572
7167
|
}>;
|
|
5573
7168
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -5620,6 +7215,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5620
7215
|
analyticsEngineRef?: {
|
|
5621
7216
|
dataset: string;
|
|
5622
7217
|
} | undefined;
|
|
7218
|
+
mtlsCertificateRef?: {
|
|
7219
|
+
certificateId: string;
|
|
7220
|
+
} | undefined;
|
|
7221
|
+
pipelinesRef?: {
|
|
7222
|
+
pipelineId: string;
|
|
7223
|
+
} | undefined;
|
|
5623
7224
|
}[] | undefined;
|
|
5624
7225
|
};
|
|
5625
7226
|
metadata?: {
|
|
@@ -5678,6 +7279,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5678
7279
|
analyticsEngineRef?: {
|
|
5679
7280
|
dataset: string;
|
|
5680
7281
|
} | undefined;
|
|
7282
|
+
mtlsCertificateRef?: {
|
|
7283
|
+
certificateId: string;
|
|
7284
|
+
} | undefined;
|
|
7285
|
+
pipelinesRef?: {
|
|
7286
|
+
pipelineId: string;
|
|
7287
|
+
} | undefined;
|
|
5681
7288
|
}[] | undefined;
|
|
5682
7289
|
};
|
|
5683
7290
|
metadata?: {
|
|
@@ -5741,6 +7348,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5741
7348
|
analyticsEngineRef?: {
|
|
5742
7349
|
dataset: string;
|
|
5743
7350
|
} | undefined;
|
|
7351
|
+
mtlsCertificateRef?: {
|
|
7352
|
+
certificateId: string;
|
|
7353
|
+
} | undefined;
|
|
7354
|
+
pipelinesRef?: {
|
|
7355
|
+
pipelineId: string;
|
|
7356
|
+
} | undefined;
|
|
5744
7357
|
}[] | undefined;
|
|
5745
7358
|
};
|
|
5746
7359
|
metadata?: {
|
|
@@ -5805,6 +7418,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5805
7418
|
analyticsEngineRef?: {
|
|
5806
7419
|
dataset: string;
|
|
5807
7420
|
} | undefined;
|
|
7421
|
+
mtlsCertificateRef?: {
|
|
7422
|
+
certificateId: string;
|
|
7423
|
+
} | undefined;
|
|
7424
|
+
pipelinesRef?: {
|
|
7425
|
+
pipelineId: string;
|
|
7426
|
+
} | undefined;
|
|
5808
7427
|
}[] | undefined;
|
|
5809
7428
|
};
|
|
5810
7429
|
metadata?: {
|
|
@@ -5878,6 +7497,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5878
7497
|
analyticsEngineRef?: {
|
|
5879
7498
|
dataset: string;
|
|
5880
7499
|
} | undefined;
|
|
7500
|
+
mtlsCertificateRef?: {
|
|
7501
|
+
certificateId: string;
|
|
7502
|
+
} | undefined;
|
|
7503
|
+
pipelinesRef?: {
|
|
7504
|
+
pipelineId: string;
|
|
7505
|
+
} | undefined;
|
|
5881
7506
|
}[] | undefined;
|
|
5882
7507
|
};
|
|
5883
7508
|
metadata?: {
|
|
@@ -5952,6 +7577,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
5952
7577
|
analyticsEngineRef?: {
|
|
5953
7578
|
dataset: string;
|
|
5954
7579
|
} | undefined;
|
|
7580
|
+
mtlsCertificateRef?: {
|
|
7581
|
+
certificateId: string;
|
|
7582
|
+
} | undefined;
|
|
7583
|
+
pipelinesRef?: {
|
|
7584
|
+
pipelineId: string;
|
|
7585
|
+
} | undefined;
|
|
5955
7586
|
}[] | undefined;
|
|
5956
7587
|
};
|
|
5957
7588
|
metadata?: {
|
|
@@ -6194,6 +7825,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6194
7825
|
}, {
|
|
6195
7826
|
dataset: string;
|
|
6196
7827
|
}>>;
|
|
7828
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
7829
|
+
certificateId: z.ZodString;
|
|
7830
|
+
}, "strip", z.ZodTypeAny, {
|
|
7831
|
+
certificateId: string;
|
|
7832
|
+
}, {
|
|
7833
|
+
certificateId: string;
|
|
7834
|
+
}>>;
|
|
7835
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
7836
|
+
pipelineId: z.ZodString;
|
|
7837
|
+
}, "strip", z.ZodTypeAny, {
|
|
7838
|
+
pipelineId: string;
|
|
7839
|
+
}, {
|
|
7840
|
+
pipelineId: string;
|
|
7841
|
+
}>>;
|
|
6197
7842
|
}, "strip", z.ZodTypeAny, {
|
|
6198
7843
|
name: string;
|
|
6199
7844
|
r2BucketRef?: {
|
|
@@ -6220,6 +7865,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6220
7865
|
analyticsEngineRef?: {
|
|
6221
7866
|
dataset: string;
|
|
6222
7867
|
} | undefined;
|
|
7868
|
+
mtlsCertificateRef?: {
|
|
7869
|
+
certificateId: string;
|
|
7870
|
+
} | undefined;
|
|
7871
|
+
pipelinesRef?: {
|
|
7872
|
+
pipelineId: string;
|
|
7873
|
+
} | undefined;
|
|
6223
7874
|
}, {
|
|
6224
7875
|
name: string;
|
|
6225
7876
|
r2BucketRef?: {
|
|
@@ -6246,6 +7897,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6246
7897
|
analyticsEngineRef?: {
|
|
6247
7898
|
dataset: string;
|
|
6248
7899
|
} | undefined;
|
|
7900
|
+
mtlsCertificateRef?: {
|
|
7901
|
+
certificateId: string;
|
|
7902
|
+
} | undefined;
|
|
7903
|
+
pipelinesRef?: {
|
|
7904
|
+
pipelineId: string;
|
|
7905
|
+
} | undefined;
|
|
6249
7906
|
}>, "many">>;
|
|
6250
7907
|
}, "strip", z.ZodTypeAny, {
|
|
6251
7908
|
containers: {
|
|
@@ -6296,6 +7953,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6296
7953
|
analyticsEngineRef?: {
|
|
6297
7954
|
dataset: string;
|
|
6298
7955
|
} | undefined;
|
|
7956
|
+
mtlsCertificateRef?: {
|
|
7957
|
+
certificateId: string;
|
|
7958
|
+
} | undefined;
|
|
7959
|
+
pipelinesRef?: {
|
|
7960
|
+
pipelineId: string;
|
|
7961
|
+
} | undefined;
|
|
6299
7962
|
}[] | undefined;
|
|
6300
7963
|
}, {
|
|
6301
7964
|
containers: {
|
|
@@ -6346,6 +8009,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6346
8009
|
analyticsEngineRef?: {
|
|
6347
8010
|
dataset: string;
|
|
6348
8011
|
} | undefined;
|
|
8012
|
+
mtlsCertificateRef?: {
|
|
8013
|
+
certificateId: string;
|
|
8014
|
+
} | undefined;
|
|
8015
|
+
pipelinesRef?: {
|
|
8016
|
+
pipelineId: string;
|
|
8017
|
+
} | undefined;
|
|
6349
8018
|
}[] | undefined;
|
|
6350
8019
|
}>;
|
|
6351
8020
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6398,6 +8067,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6398
8067
|
analyticsEngineRef?: {
|
|
6399
8068
|
dataset: string;
|
|
6400
8069
|
} | undefined;
|
|
8070
|
+
mtlsCertificateRef?: {
|
|
8071
|
+
certificateId: string;
|
|
8072
|
+
} | undefined;
|
|
8073
|
+
pipelinesRef?: {
|
|
8074
|
+
pipelineId: string;
|
|
8075
|
+
} | undefined;
|
|
6401
8076
|
}[] | undefined;
|
|
6402
8077
|
};
|
|
6403
8078
|
metadata?: {
|
|
@@ -6456,6 +8131,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6456
8131
|
analyticsEngineRef?: {
|
|
6457
8132
|
dataset: string;
|
|
6458
8133
|
} | undefined;
|
|
8134
|
+
mtlsCertificateRef?: {
|
|
8135
|
+
certificateId: string;
|
|
8136
|
+
} | undefined;
|
|
8137
|
+
pipelinesRef?: {
|
|
8138
|
+
pipelineId: string;
|
|
8139
|
+
} | undefined;
|
|
6459
8140
|
}[] | undefined;
|
|
6460
8141
|
};
|
|
6461
8142
|
metadata?: {
|
|
@@ -6603,6 +8284,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6603
8284
|
analyticsEngineRef?: {
|
|
6604
8285
|
dataset: string;
|
|
6605
8286
|
} | undefined;
|
|
8287
|
+
mtlsCertificateRef?: {
|
|
8288
|
+
certificateId: string;
|
|
8289
|
+
} | undefined;
|
|
8290
|
+
pipelinesRef?: {
|
|
8291
|
+
pipelineId: string;
|
|
8292
|
+
} | undefined;
|
|
6606
8293
|
}[] | undefined;
|
|
6607
8294
|
};
|
|
6608
8295
|
metadata?: {
|
|
@@ -6683,6 +8370,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6683
8370
|
analyticsEngineRef?: {
|
|
6684
8371
|
dataset: string;
|
|
6685
8372
|
} | undefined;
|
|
8373
|
+
mtlsCertificateRef?: {
|
|
8374
|
+
certificateId: string;
|
|
8375
|
+
} | undefined;
|
|
8376
|
+
pipelinesRef?: {
|
|
8377
|
+
pipelineId: string;
|
|
8378
|
+
} | undefined;
|
|
6686
8379
|
}[] | undefined;
|
|
6687
8380
|
};
|
|
6688
8381
|
metadata?: {
|
|
@@ -6772,6 +8465,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6772
8465
|
analyticsEngineRef?: {
|
|
6773
8466
|
dataset: string;
|
|
6774
8467
|
} | undefined;
|
|
8468
|
+
mtlsCertificateRef?: {
|
|
8469
|
+
certificateId: string;
|
|
8470
|
+
} | undefined;
|
|
8471
|
+
pipelinesRef?: {
|
|
8472
|
+
pipelineId: string;
|
|
8473
|
+
} | undefined;
|
|
6775
8474
|
}[] | undefined;
|
|
6776
8475
|
};
|
|
6777
8476
|
metadata?: {
|
|
@@ -6862,6 +8561,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
6862
8561
|
analyticsEngineRef?: {
|
|
6863
8562
|
dataset: string;
|
|
6864
8563
|
} | undefined;
|
|
8564
|
+
mtlsCertificateRef?: {
|
|
8565
|
+
certificateId: string;
|
|
8566
|
+
} | undefined;
|
|
8567
|
+
pipelinesRef?: {
|
|
8568
|
+
pipelineId: string;
|
|
8569
|
+
} | undefined;
|
|
6865
8570
|
}[] | undefined;
|
|
6866
8571
|
};
|
|
6867
8572
|
metadata?: {
|
|
@@ -7121,6 +8826,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7121
8826
|
}, {
|
|
7122
8827
|
dataset: string;
|
|
7123
8828
|
}>>;
|
|
8829
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
8830
|
+
certificateId: z.ZodString;
|
|
8831
|
+
}, "strip", z.ZodTypeAny, {
|
|
8832
|
+
certificateId: string;
|
|
8833
|
+
}, {
|
|
8834
|
+
certificateId: string;
|
|
8835
|
+
}>>;
|
|
8836
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
8837
|
+
pipelineId: z.ZodString;
|
|
8838
|
+
}, "strip", z.ZodTypeAny, {
|
|
8839
|
+
pipelineId: string;
|
|
8840
|
+
}, {
|
|
8841
|
+
pipelineId: string;
|
|
8842
|
+
}>>;
|
|
7124
8843
|
}, "strip", z.ZodTypeAny, {
|
|
7125
8844
|
name: string;
|
|
7126
8845
|
r2BucketRef?: {
|
|
@@ -7147,6 +8866,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7147
8866
|
analyticsEngineRef?: {
|
|
7148
8867
|
dataset: string;
|
|
7149
8868
|
} | undefined;
|
|
8869
|
+
mtlsCertificateRef?: {
|
|
8870
|
+
certificateId: string;
|
|
8871
|
+
} | undefined;
|
|
8872
|
+
pipelinesRef?: {
|
|
8873
|
+
pipelineId: string;
|
|
8874
|
+
} | undefined;
|
|
7150
8875
|
}, {
|
|
7151
8876
|
name: string;
|
|
7152
8877
|
r2BucketRef?: {
|
|
@@ -7173,6 +8898,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7173
8898
|
analyticsEngineRef?: {
|
|
7174
8899
|
dataset: string;
|
|
7175
8900
|
} | undefined;
|
|
8901
|
+
mtlsCertificateRef?: {
|
|
8902
|
+
certificateId: string;
|
|
8903
|
+
} | undefined;
|
|
8904
|
+
pipelinesRef?: {
|
|
8905
|
+
pipelineId: string;
|
|
8906
|
+
} | undefined;
|
|
7176
8907
|
}>, "many">>;
|
|
7177
8908
|
}, "strip", z.ZodTypeAny, {
|
|
7178
8909
|
containers: {
|
|
@@ -7223,6 +8954,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7223
8954
|
analyticsEngineRef?: {
|
|
7224
8955
|
dataset: string;
|
|
7225
8956
|
} | undefined;
|
|
8957
|
+
mtlsCertificateRef?: {
|
|
8958
|
+
certificateId: string;
|
|
8959
|
+
} | undefined;
|
|
8960
|
+
pipelinesRef?: {
|
|
8961
|
+
pipelineId: string;
|
|
8962
|
+
} | undefined;
|
|
7226
8963
|
}[] | undefined;
|
|
7227
8964
|
}, {
|
|
7228
8965
|
containers: {
|
|
@@ -7273,6 +9010,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7273
9010
|
analyticsEngineRef?: {
|
|
7274
9011
|
dataset: string;
|
|
7275
9012
|
} | undefined;
|
|
9013
|
+
mtlsCertificateRef?: {
|
|
9014
|
+
certificateId: string;
|
|
9015
|
+
} | undefined;
|
|
9016
|
+
pipelinesRef?: {
|
|
9017
|
+
pipelineId: string;
|
|
9018
|
+
} | undefined;
|
|
7276
9019
|
}[] | undefined;
|
|
7277
9020
|
}>;
|
|
7278
9021
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -7325,6 +9068,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7325
9068
|
analyticsEngineRef?: {
|
|
7326
9069
|
dataset: string;
|
|
7327
9070
|
} | undefined;
|
|
9071
|
+
mtlsCertificateRef?: {
|
|
9072
|
+
certificateId: string;
|
|
9073
|
+
} | undefined;
|
|
9074
|
+
pipelinesRef?: {
|
|
9075
|
+
pipelineId: string;
|
|
9076
|
+
} | undefined;
|
|
7328
9077
|
}[] | undefined;
|
|
7329
9078
|
};
|
|
7330
9079
|
metadata?: {
|
|
@@ -7383,6 +9132,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7383
9132
|
analyticsEngineRef?: {
|
|
7384
9133
|
dataset: string;
|
|
7385
9134
|
} | undefined;
|
|
9135
|
+
mtlsCertificateRef?: {
|
|
9136
|
+
certificateId: string;
|
|
9137
|
+
} | undefined;
|
|
9138
|
+
pipelinesRef?: {
|
|
9139
|
+
pipelineId: string;
|
|
9140
|
+
} | undefined;
|
|
7386
9141
|
}[] | undefined;
|
|
7387
9142
|
};
|
|
7388
9143
|
metadata?: {
|
|
@@ -7446,6 +9201,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7446
9201
|
analyticsEngineRef?: {
|
|
7447
9202
|
dataset: string;
|
|
7448
9203
|
} | undefined;
|
|
9204
|
+
mtlsCertificateRef?: {
|
|
9205
|
+
certificateId: string;
|
|
9206
|
+
} | undefined;
|
|
9207
|
+
pipelinesRef?: {
|
|
9208
|
+
pipelineId: string;
|
|
9209
|
+
} | undefined;
|
|
7449
9210
|
}[] | undefined;
|
|
7450
9211
|
};
|
|
7451
9212
|
metadata?: {
|
|
@@ -7511,6 +9272,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7511
9272
|
analyticsEngineRef?: {
|
|
7512
9273
|
dataset: string;
|
|
7513
9274
|
} | undefined;
|
|
9275
|
+
mtlsCertificateRef?: {
|
|
9276
|
+
certificateId: string;
|
|
9277
|
+
} | undefined;
|
|
9278
|
+
pipelinesRef?: {
|
|
9279
|
+
pipelineId: string;
|
|
9280
|
+
} | undefined;
|
|
7514
9281
|
}[] | undefined;
|
|
7515
9282
|
};
|
|
7516
9283
|
metadata?: {
|
|
@@ -7585,6 +9352,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7585
9352
|
analyticsEngineRef?: {
|
|
7586
9353
|
dataset: string;
|
|
7587
9354
|
} | undefined;
|
|
9355
|
+
mtlsCertificateRef?: {
|
|
9356
|
+
certificateId: string;
|
|
9357
|
+
} | undefined;
|
|
9358
|
+
pipelinesRef?: {
|
|
9359
|
+
pipelineId: string;
|
|
9360
|
+
} | undefined;
|
|
7588
9361
|
}[] | undefined;
|
|
7589
9362
|
};
|
|
7590
9363
|
metadata?: {
|
|
@@ -7660,6 +9433,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7660
9433
|
analyticsEngineRef?: {
|
|
7661
9434
|
dataset: string;
|
|
7662
9435
|
} | undefined;
|
|
9436
|
+
mtlsCertificateRef?: {
|
|
9437
|
+
certificateId: string;
|
|
9438
|
+
} | undefined;
|
|
9439
|
+
pipelinesRef?: {
|
|
9440
|
+
pipelineId: string;
|
|
9441
|
+
} | undefined;
|
|
7663
9442
|
}[] | undefined;
|
|
7664
9443
|
};
|
|
7665
9444
|
metadata?: {
|
|
@@ -7898,6 +9677,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7898
9677
|
}, {
|
|
7899
9678
|
dataset: string;
|
|
7900
9679
|
}>>;
|
|
9680
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
9681
|
+
certificateId: z.ZodString;
|
|
9682
|
+
}, "strip", z.ZodTypeAny, {
|
|
9683
|
+
certificateId: string;
|
|
9684
|
+
}, {
|
|
9685
|
+
certificateId: string;
|
|
9686
|
+
}>>;
|
|
9687
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
9688
|
+
pipelineId: z.ZodString;
|
|
9689
|
+
}, "strip", z.ZodTypeAny, {
|
|
9690
|
+
pipelineId: string;
|
|
9691
|
+
}, {
|
|
9692
|
+
pipelineId: string;
|
|
9693
|
+
}>>;
|
|
7901
9694
|
}, "strip", z.ZodTypeAny, {
|
|
7902
9695
|
name: string;
|
|
7903
9696
|
r2BucketRef?: {
|
|
@@ -7924,6 +9717,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7924
9717
|
analyticsEngineRef?: {
|
|
7925
9718
|
dataset: string;
|
|
7926
9719
|
} | undefined;
|
|
9720
|
+
mtlsCertificateRef?: {
|
|
9721
|
+
certificateId: string;
|
|
9722
|
+
} | undefined;
|
|
9723
|
+
pipelinesRef?: {
|
|
9724
|
+
pipelineId: string;
|
|
9725
|
+
} | undefined;
|
|
7927
9726
|
}, {
|
|
7928
9727
|
name: string;
|
|
7929
9728
|
r2BucketRef?: {
|
|
@@ -7950,6 +9749,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
7950
9749
|
analyticsEngineRef?: {
|
|
7951
9750
|
dataset: string;
|
|
7952
9751
|
} | undefined;
|
|
9752
|
+
mtlsCertificateRef?: {
|
|
9753
|
+
certificateId: string;
|
|
9754
|
+
} | undefined;
|
|
9755
|
+
pipelinesRef?: {
|
|
9756
|
+
pipelineId: string;
|
|
9757
|
+
} | undefined;
|
|
7953
9758
|
}>, "many">>;
|
|
7954
9759
|
}, "strip", z.ZodTypeAny, {
|
|
7955
9760
|
containers: {
|
|
@@ -8000,6 +9805,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8000
9805
|
analyticsEngineRef?: {
|
|
8001
9806
|
dataset: string;
|
|
8002
9807
|
} | undefined;
|
|
9808
|
+
mtlsCertificateRef?: {
|
|
9809
|
+
certificateId: string;
|
|
9810
|
+
} | undefined;
|
|
9811
|
+
pipelinesRef?: {
|
|
9812
|
+
pipelineId: string;
|
|
9813
|
+
} | undefined;
|
|
8003
9814
|
}[] | undefined;
|
|
8004
9815
|
}, {
|
|
8005
9816
|
containers: {
|
|
@@ -8050,6 +9861,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8050
9861
|
analyticsEngineRef?: {
|
|
8051
9862
|
dataset: string;
|
|
8052
9863
|
} | undefined;
|
|
9864
|
+
mtlsCertificateRef?: {
|
|
9865
|
+
certificateId: string;
|
|
9866
|
+
} | undefined;
|
|
9867
|
+
pipelinesRef?: {
|
|
9868
|
+
pipelineId: string;
|
|
9869
|
+
} | undefined;
|
|
8053
9870
|
}[] | undefined;
|
|
8054
9871
|
}>;
|
|
8055
9872
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -8102,6 +9919,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8102
9919
|
analyticsEngineRef?: {
|
|
8103
9920
|
dataset: string;
|
|
8104
9921
|
} | undefined;
|
|
9922
|
+
mtlsCertificateRef?: {
|
|
9923
|
+
certificateId: string;
|
|
9924
|
+
} | undefined;
|
|
9925
|
+
pipelinesRef?: {
|
|
9926
|
+
pipelineId: string;
|
|
9927
|
+
} | undefined;
|
|
8105
9928
|
}[] | undefined;
|
|
8106
9929
|
};
|
|
8107
9930
|
metadata?: {
|
|
@@ -8160,6 +9983,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8160
9983
|
analyticsEngineRef?: {
|
|
8161
9984
|
dataset: string;
|
|
8162
9985
|
} | undefined;
|
|
9986
|
+
mtlsCertificateRef?: {
|
|
9987
|
+
certificateId: string;
|
|
9988
|
+
} | undefined;
|
|
9989
|
+
pipelinesRef?: {
|
|
9990
|
+
pipelineId: string;
|
|
9991
|
+
} | undefined;
|
|
8163
9992
|
}[] | undefined;
|
|
8164
9993
|
};
|
|
8165
9994
|
metadata?: {
|
|
@@ -8220,6 +10049,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8220
10049
|
analyticsEngineRef?: {
|
|
8221
10050
|
dataset: string;
|
|
8222
10051
|
} | undefined;
|
|
10052
|
+
mtlsCertificateRef?: {
|
|
10053
|
+
certificateId: string;
|
|
10054
|
+
} | undefined;
|
|
10055
|
+
pipelinesRef?: {
|
|
10056
|
+
pipelineId: string;
|
|
10057
|
+
} | undefined;
|
|
8223
10058
|
}[] | undefined;
|
|
8224
10059
|
};
|
|
8225
10060
|
metadata?: {
|
|
@@ -8280,6 +10115,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8280
10115
|
analyticsEngineRef?: {
|
|
8281
10116
|
dataset: string;
|
|
8282
10117
|
} | undefined;
|
|
10118
|
+
mtlsCertificateRef?: {
|
|
10119
|
+
certificateId: string;
|
|
10120
|
+
} | undefined;
|
|
10121
|
+
pipelinesRef?: {
|
|
10122
|
+
pipelineId: string;
|
|
10123
|
+
} | undefined;
|
|
8283
10124
|
}[] | undefined;
|
|
8284
10125
|
};
|
|
8285
10126
|
metadata?: {
|
|
@@ -8342,6 +10183,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8342
10183
|
analyticsEngineRef?: {
|
|
8343
10184
|
dataset: string;
|
|
8344
10185
|
} | undefined;
|
|
10186
|
+
mtlsCertificateRef?: {
|
|
10187
|
+
certificateId: string;
|
|
10188
|
+
} | undefined;
|
|
10189
|
+
pipelinesRef?: {
|
|
10190
|
+
pipelineId: string;
|
|
10191
|
+
} | undefined;
|
|
8345
10192
|
}[] | undefined;
|
|
8346
10193
|
};
|
|
8347
10194
|
metadata?: {
|
|
@@ -8404,6 +10251,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8404
10251
|
analyticsEngineRef?: {
|
|
8405
10252
|
dataset: string;
|
|
8406
10253
|
} | undefined;
|
|
10254
|
+
mtlsCertificateRef?: {
|
|
10255
|
+
certificateId: string;
|
|
10256
|
+
} | undefined;
|
|
10257
|
+
pipelinesRef?: {
|
|
10258
|
+
pipelineId: string;
|
|
10259
|
+
} | undefined;
|
|
8407
10260
|
}[] | undefined;
|
|
8408
10261
|
};
|
|
8409
10262
|
metadata?: {
|
|
@@ -8472,6 +10325,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8472
10325
|
analyticsEngineRef?: {
|
|
8473
10326
|
dataset: string;
|
|
8474
10327
|
} | undefined;
|
|
10328
|
+
mtlsCertificateRef?: {
|
|
10329
|
+
certificateId: string;
|
|
10330
|
+
} | undefined;
|
|
10331
|
+
pipelinesRef?: {
|
|
10332
|
+
pipelineId: string;
|
|
10333
|
+
} | undefined;
|
|
8475
10334
|
}[] | undefined;
|
|
8476
10335
|
};
|
|
8477
10336
|
metadata?: {
|
|
@@ -8540,6 +10399,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8540
10399
|
analyticsEngineRef?: {
|
|
8541
10400
|
dataset: string;
|
|
8542
10401
|
} | undefined;
|
|
10402
|
+
mtlsCertificateRef?: {
|
|
10403
|
+
certificateId: string;
|
|
10404
|
+
} | undefined;
|
|
10405
|
+
pipelinesRef?: {
|
|
10406
|
+
pipelineId: string;
|
|
10407
|
+
} | undefined;
|
|
8543
10408
|
}[] | undefined;
|
|
8544
10409
|
};
|
|
8545
10410
|
metadata?: {
|
|
@@ -8617,6 +10482,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8617
10482
|
analyticsEngineRef?: {
|
|
8618
10483
|
dataset: string;
|
|
8619
10484
|
} | undefined;
|
|
10485
|
+
mtlsCertificateRef?: {
|
|
10486
|
+
certificateId: string;
|
|
10487
|
+
} | undefined;
|
|
10488
|
+
pipelinesRef?: {
|
|
10489
|
+
pipelineId: string;
|
|
10490
|
+
} | undefined;
|
|
8620
10491
|
}[] | undefined;
|
|
8621
10492
|
};
|
|
8622
10493
|
metadata?: {
|
|
@@ -8695,6 +10566,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8695
10566
|
analyticsEngineRef?: {
|
|
8696
10567
|
dataset: string;
|
|
8697
10568
|
} | undefined;
|
|
10569
|
+
mtlsCertificateRef?: {
|
|
10570
|
+
certificateId: string;
|
|
10571
|
+
} | undefined;
|
|
10572
|
+
pipelinesRef?: {
|
|
10573
|
+
pipelineId: string;
|
|
10574
|
+
} | undefined;
|
|
8698
10575
|
}[] | undefined;
|
|
8699
10576
|
};
|
|
8700
10577
|
metadata?: {
|
|
@@ -8933,6 +10810,20 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8933
10810
|
}, {
|
|
8934
10811
|
dataset: string;
|
|
8935
10812
|
}>>;
|
|
10813
|
+
mtlsCertificateRef: z.ZodOptional<z.ZodObject<{
|
|
10814
|
+
certificateId: z.ZodString;
|
|
10815
|
+
}, "strip", z.ZodTypeAny, {
|
|
10816
|
+
certificateId: string;
|
|
10817
|
+
}, {
|
|
10818
|
+
certificateId: string;
|
|
10819
|
+
}>>;
|
|
10820
|
+
pipelinesRef: z.ZodOptional<z.ZodObject<{
|
|
10821
|
+
pipelineId: z.ZodString;
|
|
10822
|
+
}, "strip", z.ZodTypeAny, {
|
|
10823
|
+
pipelineId: string;
|
|
10824
|
+
}, {
|
|
10825
|
+
pipelineId: string;
|
|
10826
|
+
}>>;
|
|
8936
10827
|
}, "strip", z.ZodTypeAny, {
|
|
8937
10828
|
name: string;
|
|
8938
10829
|
r2BucketRef?: {
|
|
@@ -8959,6 +10850,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8959
10850
|
analyticsEngineRef?: {
|
|
8960
10851
|
dataset: string;
|
|
8961
10852
|
} | undefined;
|
|
10853
|
+
mtlsCertificateRef?: {
|
|
10854
|
+
certificateId: string;
|
|
10855
|
+
} | undefined;
|
|
10856
|
+
pipelinesRef?: {
|
|
10857
|
+
pipelineId: string;
|
|
10858
|
+
} | undefined;
|
|
8962
10859
|
}, {
|
|
8963
10860
|
name: string;
|
|
8964
10861
|
r2BucketRef?: {
|
|
@@ -8985,6 +10882,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
8985
10882
|
analyticsEngineRef?: {
|
|
8986
10883
|
dataset: string;
|
|
8987
10884
|
} | undefined;
|
|
10885
|
+
mtlsCertificateRef?: {
|
|
10886
|
+
certificateId: string;
|
|
10887
|
+
} | undefined;
|
|
10888
|
+
pipelinesRef?: {
|
|
10889
|
+
pipelineId: string;
|
|
10890
|
+
} | undefined;
|
|
8988
10891
|
}>, "many">>;
|
|
8989
10892
|
}, "strip", z.ZodTypeAny, {
|
|
8990
10893
|
containers: {
|
|
@@ -9035,6 +10938,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9035
10938
|
analyticsEngineRef?: {
|
|
9036
10939
|
dataset: string;
|
|
9037
10940
|
} | undefined;
|
|
10941
|
+
mtlsCertificateRef?: {
|
|
10942
|
+
certificateId: string;
|
|
10943
|
+
} | undefined;
|
|
10944
|
+
pipelinesRef?: {
|
|
10945
|
+
pipelineId: string;
|
|
10946
|
+
} | undefined;
|
|
9038
10947
|
}[] | undefined;
|
|
9039
10948
|
}, {
|
|
9040
10949
|
containers: {
|
|
@@ -9085,6 +10994,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9085
10994
|
analyticsEngineRef?: {
|
|
9086
10995
|
dataset: string;
|
|
9087
10996
|
} | undefined;
|
|
10997
|
+
mtlsCertificateRef?: {
|
|
10998
|
+
certificateId: string;
|
|
10999
|
+
} | undefined;
|
|
11000
|
+
pipelinesRef?: {
|
|
11001
|
+
pipelineId: string;
|
|
11002
|
+
} | undefined;
|
|
9088
11003
|
}[] | undefined;
|
|
9089
11004
|
}>;
|
|
9090
11005
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -9137,6 +11052,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9137
11052
|
analyticsEngineRef?: {
|
|
9138
11053
|
dataset: string;
|
|
9139
11054
|
} | undefined;
|
|
11055
|
+
mtlsCertificateRef?: {
|
|
11056
|
+
certificateId: string;
|
|
11057
|
+
} | undefined;
|
|
11058
|
+
pipelinesRef?: {
|
|
11059
|
+
pipelineId: string;
|
|
11060
|
+
} | undefined;
|
|
9140
11061
|
}[] | undefined;
|
|
9141
11062
|
};
|
|
9142
11063
|
metadata?: {
|
|
@@ -9195,6 +11116,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9195
11116
|
analyticsEngineRef?: {
|
|
9196
11117
|
dataset: string;
|
|
9197
11118
|
} | undefined;
|
|
11119
|
+
mtlsCertificateRef?: {
|
|
11120
|
+
certificateId: string;
|
|
11121
|
+
} | undefined;
|
|
11122
|
+
pipelinesRef?: {
|
|
11123
|
+
pipelineId: string;
|
|
11124
|
+
} | undefined;
|
|
9198
11125
|
}[] | undefined;
|
|
9199
11126
|
};
|
|
9200
11127
|
metadata?: {
|
|
@@ -9259,6 +11186,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9259
11186
|
analyticsEngineRef?: {
|
|
9260
11187
|
dataset: string;
|
|
9261
11188
|
} | undefined;
|
|
11189
|
+
mtlsCertificateRef?: {
|
|
11190
|
+
certificateId: string;
|
|
11191
|
+
} | undefined;
|
|
11192
|
+
pipelinesRef?: {
|
|
11193
|
+
pipelineId: string;
|
|
11194
|
+
} | undefined;
|
|
9262
11195
|
}[] | undefined;
|
|
9263
11196
|
};
|
|
9264
11197
|
metadata?: {
|
|
@@ -9323,6 +11256,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9323
11256
|
analyticsEngineRef?: {
|
|
9324
11257
|
dataset: string;
|
|
9325
11258
|
} | undefined;
|
|
11259
|
+
mtlsCertificateRef?: {
|
|
11260
|
+
certificateId: string;
|
|
11261
|
+
} | undefined;
|
|
11262
|
+
pipelinesRef?: {
|
|
11263
|
+
pipelineId: string;
|
|
11264
|
+
} | undefined;
|
|
9326
11265
|
}[] | undefined;
|
|
9327
11266
|
};
|
|
9328
11267
|
metadata?: {
|
|
@@ -9396,6 +11335,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9396
11335
|
analyticsEngineRef?: {
|
|
9397
11336
|
dataset: string;
|
|
9398
11337
|
} | undefined;
|
|
11338
|
+
mtlsCertificateRef?: {
|
|
11339
|
+
certificateId: string;
|
|
11340
|
+
} | undefined;
|
|
11341
|
+
pipelinesRef?: {
|
|
11342
|
+
pipelineId: string;
|
|
11343
|
+
} | undefined;
|
|
9399
11344
|
}[] | undefined;
|
|
9400
11345
|
};
|
|
9401
11346
|
metadata?: {
|
|
@@ -9470,6 +11415,12 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
9470
11415
|
analyticsEngineRef?: {
|
|
9471
11416
|
dataset: string;
|
|
9472
11417
|
} | undefined;
|
|
11418
|
+
mtlsCertificateRef?: {
|
|
11419
|
+
certificateId: string;
|
|
11420
|
+
} | undefined;
|
|
11421
|
+
pipelinesRef?: {
|
|
11422
|
+
pipelineId: string;
|
|
11423
|
+
} | undefined;
|
|
9473
11424
|
}[] | undefined;
|
|
9474
11425
|
};
|
|
9475
11426
|
metadata?: {
|
|
@@ -10300,29 +12251,1034 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
10300
12251
|
zoneId?: string | undefined;
|
|
10301
12252
|
accountId?: string | undefined;
|
|
10302
12253
|
}, {
|
|
10303
|
-
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
10304
|
-
destinationConf: string;
|
|
10305
|
-
filter?: string | undefined;
|
|
10306
|
-
enabled?: boolean | undefined;
|
|
10307
|
-
zoneId?: string | undefined;
|
|
10308
|
-
accountId?: string | undefined;
|
|
10309
|
-
}>, {
|
|
10310
|
-
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
10311
|
-
destinationConf: string;
|
|
10312
|
-
filter?: string | undefined;
|
|
10313
|
-
enabled?: boolean | undefined;
|
|
10314
|
-
zoneId?: string | undefined;
|
|
10315
|
-
accountId?: string | undefined;
|
|
12254
|
+
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
12255
|
+
destinationConf: string;
|
|
12256
|
+
filter?: string | undefined;
|
|
12257
|
+
enabled?: boolean | undefined;
|
|
12258
|
+
zoneId?: string | undefined;
|
|
12259
|
+
accountId?: string | undefined;
|
|
12260
|
+
}>, {
|
|
12261
|
+
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
12262
|
+
destinationConf: string;
|
|
12263
|
+
filter?: string | undefined;
|
|
12264
|
+
enabled?: boolean | undefined;
|
|
12265
|
+
zoneId?: string | undefined;
|
|
12266
|
+
accountId?: string | undefined;
|
|
12267
|
+
}, {
|
|
12268
|
+
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
12269
|
+
destinationConf: string;
|
|
12270
|
+
filter?: string | undefined;
|
|
12271
|
+
enabled?: boolean | undefined;
|
|
12272
|
+
zoneId?: string | undefined;
|
|
12273
|
+
accountId?: string | undefined;
|
|
12274
|
+
}>;
|
|
12275
|
+
}, "strip", z.ZodTypeAny, {
|
|
12276
|
+
kind: "LogpushJob";
|
|
12277
|
+
metadata: {
|
|
12278
|
+
name: string;
|
|
12279
|
+
namespace?: string | undefined;
|
|
12280
|
+
labels?: Record<string, string> | undefined;
|
|
12281
|
+
annotations?: Record<string, string> | undefined;
|
|
12282
|
+
};
|
|
12283
|
+
spec: {
|
|
12284
|
+
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
12285
|
+
destinationConf: string;
|
|
12286
|
+
filter?: string | undefined;
|
|
12287
|
+
enabled?: boolean | undefined;
|
|
12288
|
+
zoneId?: string | undefined;
|
|
12289
|
+
accountId?: string | undefined;
|
|
12290
|
+
};
|
|
12291
|
+
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
12292
|
+
}, {
|
|
12293
|
+
kind: "LogpushJob";
|
|
12294
|
+
metadata: {
|
|
12295
|
+
name: string;
|
|
12296
|
+
namespace?: string | undefined;
|
|
12297
|
+
labels?: Record<string, string> | undefined;
|
|
12298
|
+
annotations?: Record<string, string> | undefined;
|
|
12299
|
+
};
|
|
12300
|
+
spec: {
|
|
12301
|
+
dataset: "http_requests" | "workers_trace_events" | "firewall_events" | "access_requests" | "audit_logs" | "dns_logs" | "spectrum_events" | "nel_reports" | "gateway_dns" | "gateway_http" | "gateway_network" | "magic_ids_detections" | "network_analytics_logs";
|
|
12302
|
+
destinationConf: string;
|
|
12303
|
+
filter?: string | undefined;
|
|
12304
|
+
enabled?: boolean | undefined;
|
|
12305
|
+
zoneId?: string | undefined;
|
|
12306
|
+
accountId?: string | undefined;
|
|
12307
|
+
};
|
|
12308
|
+
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
12309
|
+
}>, z.ZodObject<{
|
|
12310
|
+
apiVersion: z.ZodLiteral<"networking.k8s.io/v1">;
|
|
12311
|
+
kind: z.ZodLiteral<"Ingress">;
|
|
12312
|
+
metadata: z.ZodObject<{
|
|
12313
|
+
name: z.ZodString;
|
|
12314
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
12315
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12316
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12317
|
+
}, "strip", z.ZodTypeAny, {
|
|
12318
|
+
name: string;
|
|
12319
|
+
namespace?: string | undefined;
|
|
12320
|
+
labels?: Record<string, string> | undefined;
|
|
12321
|
+
annotations?: Record<string, string> | undefined;
|
|
12322
|
+
}, {
|
|
12323
|
+
name: string;
|
|
12324
|
+
namespace?: string | undefined;
|
|
12325
|
+
labels?: Record<string, string> | undefined;
|
|
12326
|
+
annotations?: Record<string, string> | undefined;
|
|
12327
|
+
}>;
|
|
12328
|
+
spec: z.ZodObject<{
|
|
12329
|
+
rules: z.ZodArray<z.ZodObject<{
|
|
12330
|
+
host: z.ZodOptional<z.ZodString>;
|
|
12331
|
+
http: z.ZodObject<{
|
|
12332
|
+
paths: z.ZodArray<z.ZodObject<{
|
|
12333
|
+
path: z.ZodString;
|
|
12334
|
+
pathType: z.ZodEnum<["Prefix", "Exact", "ImplementationSpecific"]>;
|
|
12335
|
+
backend: z.ZodObject<{
|
|
12336
|
+
service: z.ZodObject<{
|
|
12337
|
+
name: z.ZodString;
|
|
12338
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
12339
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
12340
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12341
|
+
}, "strip", z.ZodTypeAny, {
|
|
12342
|
+
number?: number | undefined;
|
|
12343
|
+
name?: string | undefined;
|
|
12344
|
+
}, {
|
|
12345
|
+
number?: number | undefined;
|
|
12346
|
+
name?: string | undefined;
|
|
12347
|
+
}>>;
|
|
12348
|
+
}, "strip", z.ZodTypeAny, {
|
|
12349
|
+
name: string;
|
|
12350
|
+
port?: {
|
|
12351
|
+
number?: number | undefined;
|
|
12352
|
+
name?: string | undefined;
|
|
12353
|
+
} | undefined;
|
|
12354
|
+
}, {
|
|
12355
|
+
name: string;
|
|
12356
|
+
port?: {
|
|
12357
|
+
number?: number | undefined;
|
|
12358
|
+
name?: string | undefined;
|
|
12359
|
+
} | undefined;
|
|
12360
|
+
}>;
|
|
12361
|
+
}, "strip", z.ZodTypeAny, {
|
|
12362
|
+
service: {
|
|
12363
|
+
name: string;
|
|
12364
|
+
port?: {
|
|
12365
|
+
number?: number | undefined;
|
|
12366
|
+
name?: string | undefined;
|
|
12367
|
+
} | undefined;
|
|
12368
|
+
};
|
|
12369
|
+
}, {
|
|
12370
|
+
service: {
|
|
12371
|
+
name: string;
|
|
12372
|
+
port?: {
|
|
12373
|
+
number?: number | undefined;
|
|
12374
|
+
name?: string | undefined;
|
|
12375
|
+
} | undefined;
|
|
12376
|
+
};
|
|
12377
|
+
}>;
|
|
12378
|
+
}, "strip", z.ZodTypeAny, {
|
|
12379
|
+
path: string;
|
|
12380
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12381
|
+
backend: {
|
|
12382
|
+
service: {
|
|
12383
|
+
name: string;
|
|
12384
|
+
port?: {
|
|
12385
|
+
number?: number | undefined;
|
|
12386
|
+
name?: string | undefined;
|
|
12387
|
+
} | undefined;
|
|
12388
|
+
};
|
|
12389
|
+
};
|
|
12390
|
+
}, {
|
|
12391
|
+
path: string;
|
|
12392
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12393
|
+
backend: {
|
|
12394
|
+
service: {
|
|
12395
|
+
name: string;
|
|
12396
|
+
port?: {
|
|
12397
|
+
number?: number | undefined;
|
|
12398
|
+
name?: string | undefined;
|
|
12399
|
+
} | undefined;
|
|
12400
|
+
};
|
|
12401
|
+
};
|
|
12402
|
+
}>, "many">;
|
|
12403
|
+
}, "strip", z.ZodTypeAny, {
|
|
12404
|
+
paths: {
|
|
12405
|
+
path: string;
|
|
12406
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12407
|
+
backend: {
|
|
12408
|
+
service: {
|
|
12409
|
+
name: string;
|
|
12410
|
+
port?: {
|
|
12411
|
+
number?: number | undefined;
|
|
12412
|
+
name?: string | undefined;
|
|
12413
|
+
} | undefined;
|
|
12414
|
+
};
|
|
12415
|
+
};
|
|
12416
|
+
}[];
|
|
12417
|
+
}, {
|
|
12418
|
+
paths: {
|
|
12419
|
+
path: string;
|
|
12420
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12421
|
+
backend: {
|
|
12422
|
+
service: {
|
|
12423
|
+
name: string;
|
|
12424
|
+
port?: {
|
|
12425
|
+
number?: number | undefined;
|
|
12426
|
+
name?: string | undefined;
|
|
12427
|
+
} | undefined;
|
|
12428
|
+
};
|
|
12429
|
+
};
|
|
12430
|
+
}[];
|
|
12431
|
+
}>;
|
|
12432
|
+
}, "strip", z.ZodTypeAny, {
|
|
12433
|
+
http: {
|
|
12434
|
+
paths: {
|
|
12435
|
+
path: string;
|
|
12436
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12437
|
+
backend: {
|
|
12438
|
+
service: {
|
|
12439
|
+
name: string;
|
|
12440
|
+
port?: {
|
|
12441
|
+
number?: number | undefined;
|
|
12442
|
+
name?: string | undefined;
|
|
12443
|
+
} | undefined;
|
|
12444
|
+
};
|
|
12445
|
+
};
|
|
12446
|
+
}[];
|
|
12447
|
+
};
|
|
12448
|
+
host?: string | undefined;
|
|
12449
|
+
}, {
|
|
12450
|
+
http: {
|
|
12451
|
+
paths: {
|
|
12452
|
+
path: string;
|
|
12453
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12454
|
+
backend: {
|
|
12455
|
+
service: {
|
|
12456
|
+
name: string;
|
|
12457
|
+
port?: {
|
|
12458
|
+
number?: number | undefined;
|
|
12459
|
+
name?: string | undefined;
|
|
12460
|
+
} | undefined;
|
|
12461
|
+
};
|
|
12462
|
+
};
|
|
12463
|
+
}[];
|
|
12464
|
+
};
|
|
12465
|
+
host?: string | undefined;
|
|
12466
|
+
}>, "many">;
|
|
12467
|
+
defaultBackend: z.ZodOptional<z.ZodObject<{
|
|
12468
|
+
service: z.ZodObject<{
|
|
12469
|
+
name: z.ZodString;
|
|
12470
|
+
port: z.ZodOptional<z.ZodObject<{
|
|
12471
|
+
number: z.ZodOptional<z.ZodNumber>;
|
|
12472
|
+
name: z.ZodOptional<z.ZodString>;
|
|
12473
|
+
}, "strip", z.ZodTypeAny, {
|
|
12474
|
+
number?: number | undefined;
|
|
12475
|
+
name?: string | undefined;
|
|
12476
|
+
}, {
|
|
12477
|
+
number?: number | undefined;
|
|
12478
|
+
name?: string | undefined;
|
|
12479
|
+
}>>;
|
|
12480
|
+
}, "strip", z.ZodTypeAny, {
|
|
12481
|
+
name: string;
|
|
12482
|
+
port?: {
|
|
12483
|
+
number?: number | undefined;
|
|
12484
|
+
name?: string | undefined;
|
|
12485
|
+
} | undefined;
|
|
12486
|
+
}, {
|
|
12487
|
+
name: string;
|
|
12488
|
+
port?: {
|
|
12489
|
+
number?: number | undefined;
|
|
12490
|
+
name?: string | undefined;
|
|
12491
|
+
} | undefined;
|
|
12492
|
+
}>;
|
|
12493
|
+
}, "strip", z.ZodTypeAny, {
|
|
12494
|
+
service: {
|
|
12495
|
+
name: string;
|
|
12496
|
+
port?: {
|
|
12497
|
+
number?: number | undefined;
|
|
12498
|
+
name?: string | undefined;
|
|
12499
|
+
} | undefined;
|
|
12500
|
+
};
|
|
12501
|
+
}, {
|
|
12502
|
+
service: {
|
|
12503
|
+
name: string;
|
|
12504
|
+
port?: {
|
|
12505
|
+
number?: number | undefined;
|
|
12506
|
+
name?: string | undefined;
|
|
12507
|
+
} | undefined;
|
|
12508
|
+
};
|
|
12509
|
+
}>>;
|
|
12510
|
+
}, "strip", z.ZodTypeAny, {
|
|
12511
|
+
rules: {
|
|
12512
|
+
http: {
|
|
12513
|
+
paths: {
|
|
12514
|
+
path: string;
|
|
12515
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12516
|
+
backend: {
|
|
12517
|
+
service: {
|
|
12518
|
+
name: string;
|
|
12519
|
+
port?: {
|
|
12520
|
+
number?: number | undefined;
|
|
12521
|
+
name?: string | undefined;
|
|
12522
|
+
} | undefined;
|
|
12523
|
+
};
|
|
12524
|
+
};
|
|
12525
|
+
}[];
|
|
12526
|
+
};
|
|
12527
|
+
host?: string | undefined;
|
|
12528
|
+
}[];
|
|
12529
|
+
defaultBackend?: {
|
|
12530
|
+
service: {
|
|
12531
|
+
name: string;
|
|
12532
|
+
port?: {
|
|
12533
|
+
number?: number | undefined;
|
|
12534
|
+
name?: string | undefined;
|
|
12535
|
+
} | undefined;
|
|
12536
|
+
};
|
|
12537
|
+
} | undefined;
|
|
12538
|
+
}, {
|
|
12539
|
+
rules: {
|
|
12540
|
+
http: {
|
|
12541
|
+
paths: {
|
|
12542
|
+
path: string;
|
|
12543
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12544
|
+
backend: {
|
|
12545
|
+
service: {
|
|
12546
|
+
name: string;
|
|
12547
|
+
port?: {
|
|
12548
|
+
number?: number | undefined;
|
|
12549
|
+
name?: string | undefined;
|
|
12550
|
+
} | undefined;
|
|
12551
|
+
};
|
|
12552
|
+
};
|
|
12553
|
+
}[];
|
|
12554
|
+
};
|
|
12555
|
+
host?: string | undefined;
|
|
12556
|
+
}[];
|
|
12557
|
+
defaultBackend?: {
|
|
12558
|
+
service: {
|
|
12559
|
+
name: string;
|
|
12560
|
+
port?: {
|
|
12561
|
+
number?: number | undefined;
|
|
12562
|
+
name?: string | undefined;
|
|
12563
|
+
} | undefined;
|
|
12564
|
+
};
|
|
12565
|
+
} | undefined;
|
|
12566
|
+
}>;
|
|
12567
|
+
}, "strip", z.ZodTypeAny, {
|
|
12568
|
+
kind: "Ingress";
|
|
12569
|
+
metadata: {
|
|
12570
|
+
name: string;
|
|
12571
|
+
namespace?: string | undefined;
|
|
12572
|
+
labels?: Record<string, string> | undefined;
|
|
12573
|
+
annotations?: Record<string, string> | undefined;
|
|
12574
|
+
};
|
|
12575
|
+
spec: {
|
|
12576
|
+
rules: {
|
|
12577
|
+
http: {
|
|
12578
|
+
paths: {
|
|
12579
|
+
path: string;
|
|
12580
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12581
|
+
backend: {
|
|
12582
|
+
service: {
|
|
12583
|
+
name: string;
|
|
12584
|
+
port?: {
|
|
12585
|
+
number?: number | undefined;
|
|
12586
|
+
name?: string | undefined;
|
|
12587
|
+
} | undefined;
|
|
12588
|
+
};
|
|
12589
|
+
};
|
|
12590
|
+
}[];
|
|
12591
|
+
};
|
|
12592
|
+
host?: string | undefined;
|
|
12593
|
+
}[];
|
|
12594
|
+
defaultBackend?: {
|
|
12595
|
+
service: {
|
|
12596
|
+
name: string;
|
|
12597
|
+
port?: {
|
|
12598
|
+
number?: number | undefined;
|
|
12599
|
+
name?: string | undefined;
|
|
12600
|
+
} | undefined;
|
|
12601
|
+
};
|
|
12602
|
+
} | undefined;
|
|
12603
|
+
};
|
|
12604
|
+
apiVersion: "networking.k8s.io/v1";
|
|
12605
|
+
}, {
|
|
12606
|
+
kind: "Ingress";
|
|
12607
|
+
metadata: {
|
|
12608
|
+
name: string;
|
|
12609
|
+
namespace?: string | undefined;
|
|
12610
|
+
labels?: Record<string, string> | undefined;
|
|
12611
|
+
annotations?: Record<string, string> | undefined;
|
|
12612
|
+
};
|
|
12613
|
+
spec: {
|
|
12614
|
+
rules: {
|
|
12615
|
+
http: {
|
|
12616
|
+
paths: {
|
|
12617
|
+
path: string;
|
|
12618
|
+
pathType: "Prefix" | "Exact" | "ImplementationSpecific";
|
|
12619
|
+
backend: {
|
|
12620
|
+
service: {
|
|
12621
|
+
name: string;
|
|
12622
|
+
port?: {
|
|
12623
|
+
number?: number | undefined;
|
|
12624
|
+
name?: string | undefined;
|
|
12625
|
+
} | undefined;
|
|
12626
|
+
};
|
|
12627
|
+
};
|
|
12628
|
+
}[];
|
|
12629
|
+
};
|
|
12630
|
+
host?: string | undefined;
|
|
12631
|
+
}[];
|
|
12632
|
+
defaultBackend?: {
|
|
12633
|
+
service: {
|
|
12634
|
+
name: string;
|
|
12635
|
+
port?: {
|
|
12636
|
+
number?: number | undefined;
|
|
12637
|
+
name?: string | undefined;
|
|
12638
|
+
} | undefined;
|
|
12639
|
+
};
|
|
12640
|
+
} | undefined;
|
|
12641
|
+
};
|
|
12642
|
+
apiVersion: "networking.k8s.io/v1";
|
|
12643
|
+
}>, z.ZodObject<{
|
|
12644
|
+
apiVersion: z.ZodLiteral<"cloudflare.k1c.io/v1alpha1">;
|
|
12645
|
+
kind: z.ZodLiteral<"AccessApplication">;
|
|
12646
|
+
metadata: z.ZodObject<{
|
|
12647
|
+
name: z.ZodString;
|
|
12648
|
+
namespace: z.ZodOptional<z.ZodString>;
|
|
12649
|
+
labels: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12650
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
12651
|
+
}, "strip", z.ZodTypeAny, {
|
|
12652
|
+
name: string;
|
|
12653
|
+
namespace?: string | undefined;
|
|
12654
|
+
labels?: Record<string, string> | undefined;
|
|
12655
|
+
annotations?: Record<string, string> | undefined;
|
|
12656
|
+
}, {
|
|
12657
|
+
name: string;
|
|
12658
|
+
namespace?: string | undefined;
|
|
12659
|
+
labels?: Record<string, string> | undefined;
|
|
12660
|
+
annotations?: Record<string, string> | undefined;
|
|
12661
|
+
}>;
|
|
12662
|
+
spec: z.ZodObject<{
|
|
12663
|
+
domain: z.ZodString;
|
|
12664
|
+
sessionDuration: z.ZodOptional<z.ZodString>;
|
|
12665
|
+
autoRedirectToIdentity: z.ZodOptional<z.ZodBoolean>;
|
|
12666
|
+
allowedIdps: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
12667
|
+
policies: z.ZodArray<z.ZodObject<{
|
|
12668
|
+
name: z.ZodString;
|
|
12669
|
+
decision: z.ZodEnum<["allow", "deny", "bypass", "non_identity"]>;
|
|
12670
|
+
include: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
12671
|
+
email: z.ZodObject<{
|
|
12672
|
+
email: z.ZodString;
|
|
12673
|
+
}, "strip", z.ZodTypeAny, {
|
|
12674
|
+
email: string;
|
|
12675
|
+
}, {
|
|
12676
|
+
email: string;
|
|
12677
|
+
}>;
|
|
12678
|
+
}, "strip", z.ZodTypeAny, {
|
|
12679
|
+
email: {
|
|
12680
|
+
email: string;
|
|
12681
|
+
};
|
|
12682
|
+
}, {
|
|
12683
|
+
email: {
|
|
12684
|
+
email: string;
|
|
12685
|
+
};
|
|
12686
|
+
}>, z.ZodObject<{
|
|
12687
|
+
emailDomain: z.ZodObject<{
|
|
12688
|
+
domain: z.ZodString;
|
|
12689
|
+
}, "strip", z.ZodTypeAny, {
|
|
12690
|
+
domain: string;
|
|
12691
|
+
}, {
|
|
12692
|
+
domain: string;
|
|
12693
|
+
}>;
|
|
12694
|
+
}, "strip", z.ZodTypeAny, {
|
|
12695
|
+
emailDomain: {
|
|
12696
|
+
domain: string;
|
|
12697
|
+
};
|
|
12698
|
+
}, {
|
|
12699
|
+
emailDomain: {
|
|
12700
|
+
domain: string;
|
|
12701
|
+
};
|
|
12702
|
+
}>, z.ZodObject<{
|
|
12703
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12704
|
+
}, "strip", z.ZodTypeAny, {
|
|
12705
|
+
everyone: {};
|
|
12706
|
+
}, {
|
|
12707
|
+
everyone: {};
|
|
12708
|
+
}>, z.ZodObject<{
|
|
12709
|
+
ip: z.ZodObject<{
|
|
12710
|
+
ip: z.ZodString;
|
|
12711
|
+
}, "strip", z.ZodTypeAny, {
|
|
12712
|
+
ip: string;
|
|
12713
|
+
}, {
|
|
12714
|
+
ip: string;
|
|
12715
|
+
}>;
|
|
12716
|
+
}, "strip", z.ZodTypeAny, {
|
|
12717
|
+
ip: {
|
|
12718
|
+
ip: string;
|
|
12719
|
+
};
|
|
12720
|
+
}, {
|
|
12721
|
+
ip: {
|
|
12722
|
+
ip: string;
|
|
12723
|
+
};
|
|
12724
|
+
}>, z.ZodObject<{
|
|
12725
|
+
country: z.ZodObject<{
|
|
12726
|
+
code: z.ZodString;
|
|
12727
|
+
}, "strip", z.ZodTypeAny, {
|
|
12728
|
+
code: string;
|
|
12729
|
+
}, {
|
|
12730
|
+
code: string;
|
|
12731
|
+
}>;
|
|
12732
|
+
}, "strip", z.ZodTypeAny, {
|
|
12733
|
+
country: {
|
|
12734
|
+
code: string;
|
|
12735
|
+
};
|
|
12736
|
+
}, {
|
|
12737
|
+
country: {
|
|
12738
|
+
code: string;
|
|
12739
|
+
};
|
|
12740
|
+
}>, z.ZodObject<{
|
|
12741
|
+
serviceToken: z.ZodObject<{
|
|
12742
|
+
tokenId: z.ZodString;
|
|
12743
|
+
}, "strip", z.ZodTypeAny, {
|
|
12744
|
+
tokenId: string;
|
|
12745
|
+
}, {
|
|
12746
|
+
tokenId: string;
|
|
12747
|
+
}>;
|
|
12748
|
+
}, "strip", z.ZodTypeAny, {
|
|
12749
|
+
serviceToken: {
|
|
12750
|
+
tokenId: string;
|
|
12751
|
+
};
|
|
12752
|
+
}, {
|
|
12753
|
+
serviceToken: {
|
|
12754
|
+
tokenId: string;
|
|
12755
|
+
};
|
|
12756
|
+
}>, z.ZodObject<{
|
|
12757
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12758
|
+
}, "strip", z.ZodTypeAny, {
|
|
12759
|
+
anyValidServiceToken: {};
|
|
12760
|
+
}, {
|
|
12761
|
+
anyValidServiceToken: {};
|
|
12762
|
+
}>]>, "many">;
|
|
12763
|
+
exclude: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
12764
|
+
email: z.ZodObject<{
|
|
12765
|
+
email: z.ZodString;
|
|
12766
|
+
}, "strip", z.ZodTypeAny, {
|
|
12767
|
+
email: string;
|
|
12768
|
+
}, {
|
|
12769
|
+
email: string;
|
|
12770
|
+
}>;
|
|
12771
|
+
}, "strip", z.ZodTypeAny, {
|
|
12772
|
+
email: {
|
|
12773
|
+
email: string;
|
|
12774
|
+
};
|
|
12775
|
+
}, {
|
|
12776
|
+
email: {
|
|
12777
|
+
email: string;
|
|
12778
|
+
};
|
|
12779
|
+
}>, z.ZodObject<{
|
|
12780
|
+
emailDomain: z.ZodObject<{
|
|
12781
|
+
domain: z.ZodString;
|
|
12782
|
+
}, "strip", z.ZodTypeAny, {
|
|
12783
|
+
domain: string;
|
|
12784
|
+
}, {
|
|
12785
|
+
domain: string;
|
|
12786
|
+
}>;
|
|
12787
|
+
}, "strip", z.ZodTypeAny, {
|
|
12788
|
+
emailDomain: {
|
|
12789
|
+
domain: string;
|
|
12790
|
+
};
|
|
12791
|
+
}, {
|
|
12792
|
+
emailDomain: {
|
|
12793
|
+
domain: string;
|
|
12794
|
+
};
|
|
12795
|
+
}>, z.ZodObject<{
|
|
12796
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12797
|
+
}, "strip", z.ZodTypeAny, {
|
|
12798
|
+
everyone: {};
|
|
12799
|
+
}, {
|
|
12800
|
+
everyone: {};
|
|
12801
|
+
}>, z.ZodObject<{
|
|
12802
|
+
ip: z.ZodObject<{
|
|
12803
|
+
ip: z.ZodString;
|
|
12804
|
+
}, "strip", z.ZodTypeAny, {
|
|
12805
|
+
ip: string;
|
|
12806
|
+
}, {
|
|
12807
|
+
ip: string;
|
|
12808
|
+
}>;
|
|
12809
|
+
}, "strip", z.ZodTypeAny, {
|
|
12810
|
+
ip: {
|
|
12811
|
+
ip: string;
|
|
12812
|
+
};
|
|
12813
|
+
}, {
|
|
12814
|
+
ip: {
|
|
12815
|
+
ip: string;
|
|
12816
|
+
};
|
|
12817
|
+
}>, z.ZodObject<{
|
|
12818
|
+
country: z.ZodObject<{
|
|
12819
|
+
code: z.ZodString;
|
|
12820
|
+
}, "strip", z.ZodTypeAny, {
|
|
12821
|
+
code: string;
|
|
12822
|
+
}, {
|
|
12823
|
+
code: string;
|
|
12824
|
+
}>;
|
|
12825
|
+
}, "strip", z.ZodTypeAny, {
|
|
12826
|
+
country: {
|
|
12827
|
+
code: string;
|
|
12828
|
+
};
|
|
12829
|
+
}, {
|
|
12830
|
+
country: {
|
|
12831
|
+
code: string;
|
|
12832
|
+
};
|
|
12833
|
+
}>, z.ZodObject<{
|
|
12834
|
+
serviceToken: z.ZodObject<{
|
|
12835
|
+
tokenId: z.ZodString;
|
|
12836
|
+
}, "strip", z.ZodTypeAny, {
|
|
12837
|
+
tokenId: string;
|
|
12838
|
+
}, {
|
|
12839
|
+
tokenId: string;
|
|
12840
|
+
}>;
|
|
12841
|
+
}, "strip", z.ZodTypeAny, {
|
|
12842
|
+
serviceToken: {
|
|
12843
|
+
tokenId: string;
|
|
12844
|
+
};
|
|
12845
|
+
}, {
|
|
12846
|
+
serviceToken: {
|
|
12847
|
+
tokenId: string;
|
|
12848
|
+
};
|
|
12849
|
+
}>, z.ZodObject<{
|
|
12850
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12851
|
+
}, "strip", z.ZodTypeAny, {
|
|
12852
|
+
anyValidServiceToken: {};
|
|
12853
|
+
}, {
|
|
12854
|
+
anyValidServiceToken: {};
|
|
12855
|
+
}>]>, "many">>;
|
|
12856
|
+
require: z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
12857
|
+
email: z.ZodObject<{
|
|
12858
|
+
email: z.ZodString;
|
|
12859
|
+
}, "strip", z.ZodTypeAny, {
|
|
12860
|
+
email: string;
|
|
12861
|
+
}, {
|
|
12862
|
+
email: string;
|
|
12863
|
+
}>;
|
|
12864
|
+
}, "strip", z.ZodTypeAny, {
|
|
12865
|
+
email: {
|
|
12866
|
+
email: string;
|
|
12867
|
+
};
|
|
12868
|
+
}, {
|
|
12869
|
+
email: {
|
|
12870
|
+
email: string;
|
|
12871
|
+
};
|
|
12872
|
+
}>, z.ZodObject<{
|
|
12873
|
+
emailDomain: z.ZodObject<{
|
|
12874
|
+
domain: z.ZodString;
|
|
12875
|
+
}, "strip", z.ZodTypeAny, {
|
|
12876
|
+
domain: string;
|
|
12877
|
+
}, {
|
|
12878
|
+
domain: string;
|
|
12879
|
+
}>;
|
|
12880
|
+
}, "strip", z.ZodTypeAny, {
|
|
12881
|
+
emailDomain: {
|
|
12882
|
+
domain: string;
|
|
12883
|
+
};
|
|
12884
|
+
}, {
|
|
12885
|
+
emailDomain: {
|
|
12886
|
+
domain: string;
|
|
12887
|
+
};
|
|
12888
|
+
}>, z.ZodObject<{
|
|
12889
|
+
everyone: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12890
|
+
}, "strip", z.ZodTypeAny, {
|
|
12891
|
+
everyone: {};
|
|
12892
|
+
}, {
|
|
12893
|
+
everyone: {};
|
|
12894
|
+
}>, z.ZodObject<{
|
|
12895
|
+
ip: z.ZodObject<{
|
|
12896
|
+
ip: z.ZodString;
|
|
12897
|
+
}, "strip", z.ZodTypeAny, {
|
|
12898
|
+
ip: string;
|
|
12899
|
+
}, {
|
|
12900
|
+
ip: string;
|
|
12901
|
+
}>;
|
|
12902
|
+
}, "strip", z.ZodTypeAny, {
|
|
12903
|
+
ip: {
|
|
12904
|
+
ip: string;
|
|
12905
|
+
};
|
|
12906
|
+
}, {
|
|
12907
|
+
ip: {
|
|
12908
|
+
ip: string;
|
|
12909
|
+
};
|
|
12910
|
+
}>, z.ZodObject<{
|
|
12911
|
+
country: z.ZodObject<{
|
|
12912
|
+
code: z.ZodString;
|
|
12913
|
+
}, "strip", z.ZodTypeAny, {
|
|
12914
|
+
code: string;
|
|
12915
|
+
}, {
|
|
12916
|
+
code: string;
|
|
12917
|
+
}>;
|
|
12918
|
+
}, "strip", z.ZodTypeAny, {
|
|
12919
|
+
country: {
|
|
12920
|
+
code: string;
|
|
12921
|
+
};
|
|
12922
|
+
}, {
|
|
12923
|
+
country: {
|
|
12924
|
+
code: string;
|
|
12925
|
+
};
|
|
12926
|
+
}>, z.ZodObject<{
|
|
12927
|
+
serviceToken: z.ZodObject<{
|
|
12928
|
+
tokenId: z.ZodString;
|
|
12929
|
+
}, "strip", z.ZodTypeAny, {
|
|
12930
|
+
tokenId: string;
|
|
12931
|
+
}, {
|
|
12932
|
+
tokenId: string;
|
|
12933
|
+
}>;
|
|
12934
|
+
}, "strip", z.ZodTypeAny, {
|
|
12935
|
+
serviceToken: {
|
|
12936
|
+
tokenId: string;
|
|
12937
|
+
};
|
|
12938
|
+
}, {
|
|
12939
|
+
serviceToken: {
|
|
12940
|
+
tokenId: string;
|
|
12941
|
+
};
|
|
12942
|
+
}>, z.ZodObject<{
|
|
12943
|
+
anyValidServiceToken: z.ZodObject<{}, "strict", z.ZodTypeAny, {}, {}>;
|
|
12944
|
+
}, "strip", z.ZodTypeAny, {
|
|
12945
|
+
anyValidServiceToken: {};
|
|
12946
|
+
}, {
|
|
12947
|
+
anyValidServiceToken: {};
|
|
12948
|
+
}>]>, "many">>;
|
|
12949
|
+
sessionDuration: z.ZodOptional<z.ZodString>;
|
|
12950
|
+
}, "strip", z.ZodTypeAny, {
|
|
12951
|
+
name: string;
|
|
12952
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
12953
|
+
include: ({
|
|
12954
|
+
email: {
|
|
12955
|
+
email: string;
|
|
12956
|
+
};
|
|
12957
|
+
} | {
|
|
12958
|
+
emailDomain: {
|
|
12959
|
+
domain: string;
|
|
12960
|
+
};
|
|
12961
|
+
} | {
|
|
12962
|
+
everyone: {};
|
|
12963
|
+
} | {
|
|
12964
|
+
ip: {
|
|
12965
|
+
ip: string;
|
|
12966
|
+
};
|
|
12967
|
+
} | {
|
|
12968
|
+
country: {
|
|
12969
|
+
code: string;
|
|
12970
|
+
};
|
|
12971
|
+
} | {
|
|
12972
|
+
serviceToken: {
|
|
12973
|
+
tokenId: string;
|
|
12974
|
+
};
|
|
12975
|
+
} | {
|
|
12976
|
+
anyValidServiceToken: {};
|
|
12977
|
+
})[];
|
|
12978
|
+
exclude?: ({
|
|
12979
|
+
email: {
|
|
12980
|
+
email: string;
|
|
12981
|
+
};
|
|
12982
|
+
} | {
|
|
12983
|
+
emailDomain: {
|
|
12984
|
+
domain: string;
|
|
12985
|
+
};
|
|
12986
|
+
} | {
|
|
12987
|
+
everyone: {};
|
|
12988
|
+
} | {
|
|
12989
|
+
ip: {
|
|
12990
|
+
ip: string;
|
|
12991
|
+
};
|
|
12992
|
+
} | {
|
|
12993
|
+
country: {
|
|
12994
|
+
code: string;
|
|
12995
|
+
};
|
|
12996
|
+
} | {
|
|
12997
|
+
serviceToken: {
|
|
12998
|
+
tokenId: string;
|
|
12999
|
+
};
|
|
13000
|
+
} | {
|
|
13001
|
+
anyValidServiceToken: {};
|
|
13002
|
+
})[] | undefined;
|
|
13003
|
+
require?: ({
|
|
13004
|
+
email: {
|
|
13005
|
+
email: string;
|
|
13006
|
+
};
|
|
13007
|
+
} | {
|
|
13008
|
+
emailDomain: {
|
|
13009
|
+
domain: string;
|
|
13010
|
+
};
|
|
13011
|
+
} | {
|
|
13012
|
+
everyone: {};
|
|
13013
|
+
} | {
|
|
13014
|
+
ip: {
|
|
13015
|
+
ip: string;
|
|
13016
|
+
};
|
|
13017
|
+
} | {
|
|
13018
|
+
country: {
|
|
13019
|
+
code: string;
|
|
13020
|
+
};
|
|
13021
|
+
} | {
|
|
13022
|
+
serviceToken: {
|
|
13023
|
+
tokenId: string;
|
|
13024
|
+
};
|
|
13025
|
+
} | {
|
|
13026
|
+
anyValidServiceToken: {};
|
|
13027
|
+
})[] | undefined;
|
|
13028
|
+
sessionDuration?: string | undefined;
|
|
13029
|
+
}, {
|
|
13030
|
+
name: string;
|
|
13031
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
13032
|
+
include: ({
|
|
13033
|
+
email: {
|
|
13034
|
+
email: string;
|
|
13035
|
+
};
|
|
13036
|
+
} | {
|
|
13037
|
+
emailDomain: {
|
|
13038
|
+
domain: string;
|
|
13039
|
+
};
|
|
13040
|
+
} | {
|
|
13041
|
+
everyone: {};
|
|
13042
|
+
} | {
|
|
13043
|
+
ip: {
|
|
13044
|
+
ip: string;
|
|
13045
|
+
};
|
|
13046
|
+
} | {
|
|
13047
|
+
country: {
|
|
13048
|
+
code: string;
|
|
13049
|
+
};
|
|
13050
|
+
} | {
|
|
13051
|
+
serviceToken: {
|
|
13052
|
+
tokenId: string;
|
|
13053
|
+
};
|
|
13054
|
+
} | {
|
|
13055
|
+
anyValidServiceToken: {};
|
|
13056
|
+
})[];
|
|
13057
|
+
exclude?: ({
|
|
13058
|
+
email: {
|
|
13059
|
+
email: string;
|
|
13060
|
+
};
|
|
13061
|
+
} | {
|
|
13062
|
+
emailDomain: {
|
|
13063
|
+
domain: string;
|
|
13064
|
+
};
|
|
13065
|
+
} | {
|
|
13066
|
+
everyone: {};
|
|
13067
|
+
} | {
|
|
13068
|
+
ip: {
|
|
13069
|
+
ip: string;
|
|
13070
|
+
};
|
|
13071
|
+
} | {
|
|
13072
|
+
country: {
|
|
13073
|
+
code: string;
|
|
13074
|
+
};
|
|
13075
|
+
} | {
|
|
13076
|
+
serviceToken: {
|
|
13077
|
+
tokenId: string;
|
|
13078
|
+
};
|
|
13079
|
+
} | {
|
|
13080
|
+
anyValidServiceToken: {};
|
|
13081
|
+
})[] | undefined;
|
|
13082
|
+
require?: ({
|
|
13083
|
+
email: {
|
|
13084
|
+
email: string;
|
|
13085
|
+
};
|
|
13086
|
+
} | {
|
|
13087
|
+
emailDomain: {
|
|
13088
|
+
domain: string;
|
|
13089
|
+
};
|
|
13090
|
+
} | {
|
|
13091
|
+
everyone: {};
|
|
13092
|
+
} | {
|
|
13093
|
+
ip: {
|
|
13094
|
+
ip: string;
|
|
13095
|
+
};
|
|
13096
|
+
} | {
|
|
13097
|
+
country: {
|
|
13098
|
+
code: string;
|
|
13099
|
+
};
|
|
13100
|
+
} | {
|
|
13101
|
+
serviceToken: {
|
|
13102
|
+
tokenId: string;
|
|
13103
|
+
};
|
|
13104
|
+
} | {
|
|
13105
|
+
anyValidServiceToken: {};
|
|
13106
|
+
})[] | undefined;
|
|
13107
|
+
sessionDuration?: string | undefined;
|
|
13108
|
+
}>, "many">;
|
|
13109
|
+
}, "strip", z.ZodTypeAny, {
|
|
13110
|
+
domain: string;
|
|
13111
|
+
policies: {
|
|
13112
|
+
name: string;
|
|
13113
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
13114
|
+
include: ({
|
|
13115
|
+
email: {
|
|
13116
|
+
email: string;
|
|
13117
|
+
};
|
|
13118
|
+
} | {
|
|
13119
|
+
emailDomain: {
|
|
13120
|
+
domain: string;
|
|
13121
|
+
};
|
|
13122
|
+
} | {
|
|
13123
|
+
everyone: {};
|
|
13124
|
+
} | {
|
|
13125
|
+
ip: {
|
|
13126
|
+
ip: string;
|
|
13127
|
+
};
|
|
13128
|
+
} | {
|
|
13129
|
+
country: {
|
|
13130
|
+
code: string;
|
|
13131
|
+
};
|
|
13132
|
+
} | {
|
|
13133
|
+
serviceToken: {
|
|
13134
|
+
tokenId: string;
|
|
13135
|
+
};
|
|
13136
|
+
} | {
|
|
13137
|
+
anyValidServiceToken: {};
|
|
13138
|
+
})[];
|
|
13139
|
+
exclude?: ({
|
|
13140
|
+
email: {
|
|
13141
|
+
email: string;
|
|
13142
|
+
};
|
|
13143
|
+
} | {
|
|
13144
|
+
emailDomain: {
|
|
13145
|
+
domain: string;
|
|
13146
|
+
};
|
|
13147
|
+
} | {
|
|
13148
|
+
everyone: {};
|
|
13149
|
+
} | {
|
|
13150
|
+
ip: {
|
|
13151
|
+
ip: string;
|
|
13152
|
+
};
|
|
13153
|
+
} | {
|
|
13154
|
+
country: {
|
|
13155
|
+
code: string;
|
|
13156
|
+
};
|
|
13157
|
+
} | {
|
|
13158
|
+
serviceToken: {
|
|
13159
|
+
tokenId: string;
|
|
13160
|
+
};
|
|
13161
|
+
} | {
|
|
13162
|
+
anyValidServiceToken: {};
|
|
13163
|
+
})[] | undefined;
|
|
13164
|
+
require?: ({
|
|
13165
|
+
email: {
|
|
13166
|
+
email: string;
|
|
13167
|
+
};
|
|
13168
|
+
} | {
|
|
13169
|
+
emailDomain: {
|
|
13170
|
+
domain: string;
|
|
13171
|
+
};
|
|
13172
|
+
} | {
|
|
13173
|
+
everyone: {};
|
|
13174
|
+
} | {
|
|
13175
|
+
ip: {
|
|
13176
|
+
ip: string;
|
|
13177
|
+
};
|
|
13178
|
+
} | {
|
|
13179
|
+
country: {
|
|
13180
|
+
code: string;
|
|
13181
|
+
};
|
|
13182
|
+
} | {
|
|
13183
|
+
serviceToken: {
|
|
13184
|
+
tokenId: string;
|
|
13185
|
+
};
|
|
13186
|
+
} | {
|
|
13187
|
+
anyValidServiceToken: {};
|
|
13188
|
+
})[] | undefined;
|
|
13189
|
+
sessionDuration?: string | undefined;
|
|
13190
|
+
}[];
|
|
13191
|
+
sessionDuration?: string | undefined;
|
|
13192
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
13193
|
+
allowedIdps?: string[] | undefined;
|
|
10316
13194
|
}, {
|
|
10317
|
-
|
|
10318
|
-
|
|
10319
|
-
|
|
10320
|
-
|
|
10321
|
-
|
|
10322
|
-
|
|
13195
|
+
domain: string;
|
|
13196
|
+
policies: {
|
|
13197
|
+
name: string;
|
|
13198
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
13199
|
+
include: ({
|
|
13200
|
+
email: {
|
|
13201
|
+
email: string;
|
|
13202
|
+
};
|
|
13203
|
+
} | {
|
|
13204
|
+
emailDomain: {
|
|
13205
|
+
domain: string;
|
|
13206
|
+
};
|
|
13207
|
+
} | {
|
|
13208
|
+
everyone: {};
|
|
13209
|
+
} | {
|
|
13210
|
+
ip: {
|
|
13211
|
+
ip: string;
|
|
13212
|
+
};
|
|
13213
|
+
} | {
|
|
13214
|
+
country: {
|
|
13215
|
+
code: string;
|
|
13216
|
+
};
|
|
13217
|
+
} | {
|
|
13218
|
+
serviceToken: {
|
|
13219
|
+
tokenId: string;
|
|
13220
|
+
};
|
|
13221
|
+
} | {
|
|
13222
|
+
anyValidServiceToken: {};
|
|
13223
|
+
})[];
|
|
13224
|
+
exclude?: ({
|
|
13225
|
+
email: {
|
|
13226
|
+
email: string;
|
|
13227
|
+
};
|
|
13228
|
+
} | {
|
|
13229
|
+
emailDomain: {
|
|
13230
|
+
domain: string;
|
|
13231
|
+
};
|
|
13232
|
+
} | {
|
|
13233
|
+
everyone: {};
|
|
13234
|
+
} | {
|
|
13235
|
+
ip: {
|
|
13236
|
+
ip: string;
|
|
13237
|
+
};
|
|
13238
|
+
} | {
|
|
13239
|
+
country: {
|
|
13240
|
+
code: string;
|
|
13241
|
+
};
|
|
13242
|
+
} | {
|
|
13243
|
+
serviceToken: {
|
|
13244
|
+
tokenId: string;
|
|
13245
|
+
};
|
|
13246
|
+
} | {
|
|
13247
|
+
anyValidServiceToken: {};
|
|
13248
|
+
})[] | undefined;
|
|
13249
|
+
require?: ({
|
|
13250
|
+
email: {
|
|
13251
|
+
email: string;
|
|
13252
|
+
};
|
|
13253
|
+
} | {
|
|
13254
|
+
emailDomain: {
|
|
13255
|
+
domain: string;
|
|
13256
|
+
};
|
|
13257
|
+
} | {
|
|
13258
|
+
everyone: {};
|
|
13259
|
+
} | {
|
|
13260
|
+
ip: {
|
|
13261
|
+
ip: string;
|
|
13262
|
+
};
|
|
13263
|
+
} | {
|
|
13264
|
+
country: {
|
|
13265
|
+
code: string;
|
|
13266
|
+
};
|
|
13267
|
+
} | {
|
|
13268
|
+
serviceToken: {
|
|
13269
|
+
tokenId: string;
|
|
13270
|
+
};
|
|
13271
|
+
} | {
|
|
13272
|
+
anyValidServiceToken: {};
|
|
13273
|
+
})[] | undefined;
|
|
13274
|
+
sessionDuration?: string | undefined;
|
|
13275
|
+
}[];
|
|
13276
|
+
sessionDuration?: string | undefined;
|
|
13277
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
13278
|
+
allowedIdps?: string[] | undefined;
|
|
10323
13279
|
}>;
|
|
10324
13280
|
}, "strip", z.ZodTypeAny, {
|
|
10325
|
-
kind: "
|
|
13281
|
+
kind: "AccessApplication";
|
|
10326
13282
|
metadata: {
|
|
10327
13283
|
name: string;
|
|
10328
13284
|
namespace?: string | undefined;
|
|
@@ -10330,16 +13286,94 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
10330
13286
|
annotations?: Record<string, string> | undefined;
|
|
10331
13287
|
};
|
|
10332
13288
|
spec: {
|
|
10333
|
-
|
|
10334
|
-
|
|
10335
|
-
|
|
10336
|
-
|
|
10337
|
-
|
|
10338
|
-
|
|
13289
|
+
domain: string;
|
|
13290
|
+
policies: {
|
|
13291
|
+
name: string;
|
|
13292
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
13293
|
+
include: ({
|
|
13294
|
+
email: {
|
|
13295
|
+
email: string;
|
|
13296
|
+
};
|
|
13297
|
+
} | {
|
|
13298
|
+
emailDomain: {
|
|
13299
|
+
domain: string;
|
|
13300
|
+
};
|
|
13301
|
+
} | {
|
|
13302
|
+
everyone: {};
|
|
13303
|
+
} | {
|
|
13304
|
+
ip: {
|
|
13305
|
+
ip: string;
|
|
13306
|
+
};
|
|
13307
|
+
} | {
|
|
13308
|
+
country: {
|
|
13309
|
+
code: string;
|
|
13310
|
+
};
|
|
13311
|
+
} | {
|
|
13312
|
+
serviceToken: {
|
|
13313
|
+
tokenId: string;
|
|
13314
|
+
};
|
|
13315
|
+
} | {
|
|
13316
|
+
anyValidServiceToken: {};
|
|
13317
|
+
})[];
|
|
13318
|
+
exclude?: ({
|
|
13319
|
+
email: {
|
|
13320
|
+
email: string;
|
|
13321
|
+
};
|
|
13322
|
+
} | {
|
|
13323
|
+
emailDomain: {
|
|
13324
|
+
domain: string;
|
|
13325
|
+
};
|
|
13326
|
+
} | {
|
|
13327
|
+
everyone: {};
|
|
13328
|
+
} | {
|
|
13329
|
+
ip: {
|
|
13330
|
+
ip: string;
|
|
13331
|
+
};
|
|
13332
|
+
} | {
|
|
13333
|
+
country: {
|
|
13334
|
+
code: string;
|
|
13335
|
+
};
|
|
13336
|
+
} | {
|
|
13337
|
+
serviceToken: {
|
|
13338
|
+
tokenId: string;
|
|
13339
|
+
};
|
|
13340
|
+
} | {
|
|
13341
|
+
anyValidServiceToken: {};
|
|
13342
|
+
})[] | undefined;
|
|
13343
|
+
require?: ({
|
|
13344
|
+
email: {
|
|
13345
|
+
email: string;
|
|
13346
|
+
};
|
|
13347
|
+
} | {
|
|
13348
|
+
emailDomain: {
|
|
13349
|
+
domain: string;
|
|
13350
|
+
};
|
|
13351
|
+
} | {
|
|
13352
|
+
everyone: {};
|
|
13353
|
+
} | {
|
|
13354
|
+
ip: {
|
|
13355
|
+
ip: string;
|
|
13356
|
+
};
|
|
13357
|
+
} | {
|
|
13358
|
+
country: {
|
|
13359
|
+
code: string;
|
|
13360
|
+
};
|
|
13361
|
+
} | {
|
|
13362
|
+
serviceToken: {
|
|
13363
|
+
tokenId: string;
|
|
13364
|
+
};
|
|
13365
|
+
} | {
|
|
13366
|
+
anyValidServiceToken: {};
|
|
13367
|
+
})[] | undefined;
|
|
13368
|
+
sessionDuration?: string | undefined;
|
|
13369
|
+
}[];
|
|
13370
|
+
sessionDuration?: string | undefined;
|
|
13371
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
13372
|
+
allowedIdps?: string[] | undefined;
|
|
10339
13373
|
};
|
|
10340
13374
|
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
10341
13375
|
}, {
|
|
10342
|
-
kind: "
|
|
13376
|
+
kind: "AccessApplication";
|
|
10343
13377
|
metadata: {
|
|
10344
13378
|
name: string;
|
|
10345
13379
|
namespace?: string | undefined;
|
|
@@ -10347,12 +13381,90 @@ export declare const k1cResourceSchema: z.ZodDiscriminatedUnion<"kind", [z.ZodOb
|
|
|
10347
13381
|
annotations?: Record<string, string> | undefined;
|
|
10348
13382
|
};
|
|
10349
13383
|
spec: {
|
|
10350
|
-
|
|
10351
|
-
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
|
|
10355
|
-
|
|
13384
|
+
domain: string;
|
|
13385
|
+
policies: {
|
|
13386
|
+
name: string;
|
|
13387
|
+
decision: "allow" | "deny" | "bypass" | "non_identity";
|
|
13388
|
+
include: ({
|
|
13389
|
+
email: {
|
|
13390
|
+
email: string;
|
|
13391
|
+
};
|
|
13392
|
+
} | {
|
|
13393
|
+
emailDomain: {
|
|
13394
|
+
domain: string;
|
|
13395
|
+
};
|
|
13396
|
+
} | {
|
|
13397
|
+
everyone: {};
|
|
13398
|
+
} | {
|
|
13399
|
+
ip: {
|
|
13400
|
+
ip: string;
|
|
13401
|
+
};
|
|
13402
|
+
} | {
|
|
13403
|
+
country: {
|
|
13404
|
+
code: string;
|
|
13405
|
+
};
|
|
13406
|
+
} | {
|
|
13407
|
+
serviceToken: {
|
|
13408
|
+
tokenId: string;
|
|
13409
|
+
};
|
|
13410
|
+
} | {
|
|
13411
|
+
anyValidServiceToken: {};
|
|
13412
|
+
})[];
|
|
13413
|
+
exclude?: ({
|
|
13414
|
+
email: {
|
|
13415
|
+
email: string;
|
|
13416
|
+
};
|
|
13417
|
+
} | {
|
|
13418
|
+
emailDomain: {
|
|
13419
|
+
domain: string;
|
|
13420
|
+
};
|
|
13421
|
+
} | {
|
|
13422
|
+
everyone: {};
|
|
13423
|
+
} | {
|
|
13424
|
+
ip: {
|
|
13425
|
+
ip: string;
|
|
13426
|
+
};
|
|
13427
|
+
} | {
|
|
13428
|
+
country: {
|
|
13429
|
+
code: string;
|
|
13430
|
+
};
|
|
13431
|
+
} | {
|
|
13432
|
+
serviceToken: {
|
|
13433
|
+
tokenId: string;
|
|
13434
|
+
};
|
|
13435
|
+
} | {
|
|
13436
|
+
anyValidServiceToken: {};
|
|
13437
|
+
})[] | undefined;
|
|
13438
|
+
require?: ({
|
|
13439
|
+
email: {
|
|
13440
|
+
email: string;
|
|
13441
|
+
};
|
|
13442
|
+
} | {
|
|
13443
|
+
emailDomain: {
|
|
13444
|
+
domain: string;
|
|
13445
|
+
};
|
|
13446
|
+
} | {
|
|
13447
|
+
everyone: {};
|
|
13448
|
+
} | {
|
|
13449
|
+
ip: {
|
|
13450
|
+
ip: string;
|
|
13451
|
+
};
|
|
13452
|
+
} | {
|
|
13453
|
+
country: {
|
|
13454
|
+
code: string;
|
|
13455
|
+
};
|
|
13456
|
+
} | {
|
|
13457
|
+
serviceToken: {
|
|
13458
|
+
tokenId: string;
|
|
13459
|
+
};
|
|
13460
|
+
} | {
|
|
13461
|
+
anyValidServiceToken: {};
|
|
13462
|
+
})[] | undefined;
|
|
13463
|
+
sessionDuration?: string | undefined;
|
|
13464
|
+
}[];
|
|
13465
|
+
sessionDuration?: string | undefined;
|
|
13466
|
+
autoRedirectToIdentity?: boolean | undefined;
|
|
13467
|
+
allowedIdps?: string[] | undefined;
|
|
10356
13468
|
};
|
|
10357
13469
|
apiVersion: "cloudflare.k1c.io/v1alpha1";
|
|
10358
13470
|
}>]>;
|