@cloudfleet/sdk 0.0.1-ea442a2 → 0.0.1-ea4847c
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@tanstack/react-query.gen.d.ts +1 -1
- package/dist/@tanstack/react-query.gen.js +1 -1
- package/dist/schemas.gen.d.ts +135 -68
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +188 -94
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +1 -1
- package/dist/sdk.gen.js +1 -1
- package/dist/types.gen.d.ts +71 -53
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +199 -181
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +100 -47
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -182,13 +182,15 @@ export declare const zChartUpdateInput: z.ZodObject<{
|
|
|
182
182
|
values: z.ZodString;
|
|
183
183
|
version_channel: z.ZodString;
|
|
184
184
|
}, z.core.$strip>;
|
|
185
|
+
/**
|
|
186
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
187
|
+
*/
|
|
185
188
|
export declare const zClusterCreateInput: z.ZodObject<{
|
|
186
189
|
name: z.ZodString;
|
|
187
|
-
tier: z.ZodEnum<{
|
|
190
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
188
191
|
basic: "basic";
|
|
189
192
|
pro: "pro";
|
|
190
|
-
}
|
|
191
|
-
region: z.ZodString;
|
|
193
|
+
}>>>;
|
|
192
194
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
193
195
|
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
194
196
|
stable: "stable";
|
|
@@ -196,21 +198,22 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
196
198
|
extended: "extended";
|
|
197
199
|
}>>>;
|
|
198
200
|
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
199
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
201
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
200
202
|
none: "none";
|
|
201
203
|
mps: "mps";
|
|
202
204
|
time_slicing: "time_slicing";
|
|
203
|
-
}
|
|
204
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
205
|
+
}>>>;
|
|
206
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
205
207
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
206
208
|
}, z.core.$strip>>>;
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
209
|
+
region: z.ZodString;
|
|
210
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
211
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
212
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
210
213
|
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
211
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString
|
|
212
|
-
service_cidr_v6: z.ZodOptional<z.ZodString
|
|
213
|
-
}, z.core.$strip
|
|
214
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
215
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
216
|
+
}, z.core.$strip>>>;
|
|
214
217
|
}, z.core.$strip>;
|
|
215
218
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
219
|
certificate_authority: z.ZodString;
|
|
@@ -231,33 +234,37 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
231
234
|
gcp_workload_identity_provider: z.ZodString;
|
|
232
235
|
}, z.core.$strip>;
|
|
233
236
|
}, z.core.$strip>;
|
|
237
|
+
/**
|
|
238
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
239
|
+
*/
|
|
234
240
|
export declare const zCluster: z.ZodObject<{
|
|
235
241
|
name: z.ZodString;
|
|
236
|
-
tier: z.ZodEnum<{
|
|
242
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
237
243
|
basic: "basic";
|
|
238
244
|
pro: "pro";
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
243
|
-
service_cidr: z.ZodOptional<z.ZodString>;
|
|
244
|
-
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
245
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
246
|
-
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
247
|
-
}, z.core.$strip>>;
|
|
248
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
245
|
+
}>>;
|
|
246
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
247
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
249
248
|
stable: "stable";
|
|
250
249
|
rapid: "rapid";
|
|
251
250
|
extended: "extended";
|
|
252
251
|
}>>;
|
|
253
|
-
features: z.
|
|
254
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
252
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
253
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
255
254
|
none: "none";
|
|
256
255
|
mps: "mps";
|
|
257
256
|
time_slicing: "time_slicing";
|
|
258
|
-
}
|
|
259
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
260
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
257
|
+
}>>;
|
|
258
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
259
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
260
|
+
}, z.core.$strip>>;
|
|
261
|
+
region: z.ZodString;
|
|
262
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
263
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
264
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
265
|
+
dual_stack: z.ZodBoolean;
|
|
266
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
267
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
261
268
|
}, z.core.$strip>>;
|
|
262
269
|
id: z.ZodUUID;
|
|
263
270
|
status: z.ZodEnum<{
|
|
@@ -276,31 +283,36 @@ export declare const zCluster: z.ZodObject<{
|
|
|
276
283
|
version_current: z.ZodOptional<z.ZodString>;
|
|
277
284
|
created_at: z.ZodOptional<z.ZodString>;
|
|
278
285
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
279
|
-
ready: z.
|
|
280
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
286
|
+
ready: z.ZodBoolean;
|
|
281
287
|
}, z.core.$strip>;
|
|
288
|
+
/**
|
|
289
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
290
|
+
*/
|
|
282
291
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
283
|
-
name: z.
|
|
284
|
-
tier: z.ZodEnum<{
|
|
292
|
+
name: z.ZodString;
|
|
293
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
285
294
|
basic: "basic";
|
|
286
295
|
pro: "pro";
|
|
287
|
-
}
|
|
288
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
289
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
296
|
+
}>>>;
|
|
297
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
298
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
290
299
|
stable: "stable";
|
|
291
300
|
rapid: "rapid";
|
|
292
301
|
extended: "extended";
|
|
293
|
-
}
|
|
294
|
-
features: z.ZodOptional<z.ZodObject<{
|
|
295
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
302
|
+
}>>>;
|
|
303
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
304
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
296
305
|
none: "none";
|
|
297
306
|
mps: "mps";
|
|
298
307
|
time_slicing: "time_slicing";
|
|
299
|
-
}
|
|
300
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
308
|
+
}>>>;
|
|
309
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
301
310
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
302
|
-
}, z.core.$strip
|
|
311
|
+
}, z.core.$strip>>>;
|
|
303
312
|
}, z.core.$strip>;
|
|
313
|
+
/**
|
|
314
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
315
|
+
*/
|
|
304
316
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
305
317
|
limits: z.ZodOptional<z.ZodObject<{
|
|
306
318
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -317,7 +329,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
317
329
|
enabled: z.ZodBoolean;
|
|
318
330
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
319
331
|
}, z.core.$strip>>;
|
|
320
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
332
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
321
333
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
322
334
|
"on-demand": "on-demand";
|
|
323
335
|
spot: "spot";
|
|
@@ -326,7 +338,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
326
338
|
amd64: "amd64";
|
|
327
339
|
arm64: "arm64";
|
|
328
340
|
}>>>>;
|
|
329
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
341
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
330
342
|
p3: "p3";
|
|
331
343
|
cx: "cx";
|
|
332
344
|
h1: "h1";
|
|
@@ -485,8 +497,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
485
497
|
x8g: "x8g";
|
|
486
498
|
z1d: "z1d";
|
|
487
499
|
z3: "z3";
|
|
488
|
-
}
|
|
489
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
500
|
+
}>>>>;
|
|
501
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
490
502
|
"africa-south1": "africa-south1";
|
|
491
503
|
"ap-northeast-1": "ap-northeast-1";
|
|
492
504
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -551,14 +563,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
551
563
|
"us-west2": "us-west2";
|
|
552
564
|
"us-west3": "us-west3";
|
|
553
565
|
"us-west4": "us-west4";
|
|
554
|
-
}
|
|
555
|
-
}, z.core.$strip
|
|
566
|
+
}>>>>;
|
|
567
|
+
}, z.core.$strip>>>;
|
|
556
568
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
557
569
|
aggressive: "aggressive";
|
|
558
570
|
conservative: "conservative";
|
|
559
571
|
}>>>;
|
|
560
572
|
id: z.ZodString;
|
|
561
573
|
}, z.core.$strip>;
|
|
574
|
+
/**
|
|
575
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
576
|
+
*/
|
|
562
577
|
export declare const zFleet: z.ZodObject<{
|
|
563
578
|
limits: z.ZodOptional<z.ZodObject<{
|
|
564
579
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -575,16 +590,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
575
590
|
enabled: z.ZodBoolean;
|
|
576
591
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
577
592
|
}, z.core.$strip>>;
|
|
578
|
-
constraints: z.
|
|
579
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
593
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
594
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
580
595
|
"on-demand": "on-demand";
|
|
581
596
|
spot: "spot";
|
|
582
|
-
}
|
|
583
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
597
|
+
}>>>;
|
|
598
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
584
599
|
amd64: "amd64";
|
|
585
600
|
arm64: "arm64";
|
|
586
|
-
}
|
|
587
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
601
|
+
}>>>;
|
|
602
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
588
603
|
p3: "p3";
|
|
589
604
|
cx: "cx";
|
|
590
605
|
h1: "h1";
|
|
@@ -743,8 +758,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
743
758
|
x8g: "x8g";
|
|
744
759
|
z1d: "z1d";
|
|
745
760
|
z3: "z3";
|
|
746
|
-
}
|
|
747
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
761
|
+
}>>>>;
|
|
762
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
748
763
|
"africa-south1": "africa-south1";
|
|
749
764
|
"ap-northeast-1": "ap-northeast-1";
|
|
750
765
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -809,7 +824,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
809
824
|
"us-west2": "us-west2";
|
|
810
825
|
"us-west3": "us-west3";
|
|
811
826
|
"us-west4": "us-west4";
|
|
812
|
-
}
|
|
827
|
+
}>>>>;
|
|
813
828
|
}, z.core.$strip>>;
|
|
814
829
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
815
830
|
aggressive: "aggressive";
|
|
@@ -821,6 +836,9 @@ export declare const zFleet: z.ZodObject<{
|
|
|
821
836
|
created_at: z.ZodString;
|
|
822
837
|
updated_at: z.ZodString;
|
|
823
838
|
}, z.core.$strip>;
|
|
839
|
+
/**
|
|
840
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
841
|
+
*/
|
|
824
842
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
825
843
|
limits: z.ZodOptional<z.ZodObject<{
|
|
826
844
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -837,16 +855,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
837
855
|
enabled: z.ZodBoolean;
|
|
838
856
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
839
857
|
}, z.core.$strip>>;
|
|
840
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
841
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
858
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
859
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
842
860
|
"on-demand": "on-demand";
|
|
843
861
|
spot: "spot";
|
|
844
|
-
}
|
|
845
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
862
|
+
}>>>>;
|
|
863
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
846
864
|
amd64: "amd64";
|
|
847
865
|
arm64: "arm64";
|
|
848
|
-
}
|
|
849
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
866
|
+
}>>>>;
|
|
867
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
850
868
|
p3: "p3";
|
|
851
869
|
cx: "cx";
|
|
852
870
|
h1: "h1";
|
|
@@ -1005,8 +1023,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1005
1023
|
x8g: "x8g";
|
|
1006
1024
|
z1d: "z1d";
|
|
1007
1025
|
z3: "z3";
|
|
1008
|
-
}
|
|
1009
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1026
|
+
}>>>>;
|
|
1027
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1010
1028
|
"africa-south1": "africa-south1";
|
|
1011
1029
|
"ap-northeast-1": "ap-northeast-1";
|
|
1012
1030
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1071,12 +1089,12 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1071
1089
|
"us-west2": "us-west2";
|
|
1072
1090
|
"us-west3": "us-west3";
|
|
1073
1091
|
"us-west4": "us-west4";
|
|
1074
|
-
}
|
|
1075
|
-
}, z.core.$strip
|
|
1076
|
-
scalingProfile: z.ZodEnum<{
|
|
1092
|
+
}>>>>;
|
|
1093
|
+
}, z.core.$strip>>>;
|
|
1094
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1077
1095
|
aggressive: "aggressive";
|
|
1078
1096
|
conservative: "conservative";
|
|
1079
|
-
}
|
|
1097
|
+
}>>>;
|
|
1080
1098
|
}, z.core.$strip>;
|
|
1081
1099
|
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1082
1100
|
email: z.ZodEmail;
|
|
@@ -2114,16 +2132,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2114
2132
|
enabled: z.ZodBoolean;
|
|
2115
2133
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2116
2134
|
}, z.core.$strip>>;
|
|
2117
|
-
constraints: z.
|
|
2118
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2135
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2136
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2119
2137
|
"on-demand": "on-demand";
|
|
2120
2138
|
spot: "spot";
|
|
2121
|
-
}
|
|
2122
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2139
|
+
}>>>;
|
|
2140
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2123
2141
|
amd64: "amd64";
|
|
2124
2142
|
arm64: "arm64";
|
|
2125
|
-
}
|
|
2126
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2143
|
+
}>>>;
|
|
2144
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2127
2145
|
p3: "p3";
|
|
2128
2146
|
cx: "cx";
|
|
2129
2147
|
h1: "h1";
|
|
@@ -2282,8 +2300,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2282
2300
|
x8g: "x8g";
|
|
2283
2301
|
z1d: "z1d";
|
|
2284
2302
|
z3: "z3";
|
|
2285
|
-
}
|
|
2286
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2303
|
+
}>>>>;
|
|
2304
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2287
2305
|
"africa-south1": "africa-south1";
|
|
2288
2306
|
"ap-northeast-1": "ap-northeast-1";
|
|
2289
2307
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2348,7 +2366,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2348
2366
|
"us-west2": "us-west2";
|
|
2349
2367
|
"us-west3": "us-west3";
|
|
2350
2368
|
"us-west4": "us-west4";
|
|
2351
|
-
}
|
|
2369
|
+
}>>>>;
|
|
2352
2370
|
}, z.core.$strip>>;
|
|
2353
2371
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2354
2372
|
aggressive: "aggressive";
|
|
@@ -2376,7 +2394,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2376
2394
|
enabled: z.ZodBoolean;
|
|
2377
2395
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2378
2396
|
}, z.core.$strip>>;
|
|
2379
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2397
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2380
2398
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2381
2399
|
"on-demand": "on-demand";
|
|
2382
2400
|
spot: "spot";
|
|
@@ -2385,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2385
2403
|
amd64: "amd64";
|
|
2386
2404
|
arm64: "arm64";
|
|
2387
2405
|
}>>>>;
|
|
2388
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2406
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2389
2407
|
p3: "p3";
|
|
2390
2408
|
cx: "cx";
|
|
2391
2409
|
h1: "h1";
|
|
@@ -2544,8 +2562,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2544
2562
|
x8g: "x8g";
|
|
2545
2563
|
z1d: "z1d";
|
|
2546
2564
|
z3: "z3";
|
|
2547
|
-
}
|
|
2548
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2565
|
+
}>>>>;
|
|
2566
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2549
2567
|
"africa-south1": "africa-south1";
|
|
2550
2568
|
"ap-northeast-1": "ap-northeast-1";
|
|
2551
2569
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2610,8 +2628,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2610
2628
|
"us-west2": "us-west2";
|
|
2611
2629
|
"us-west3": "us-west3";
|
|
2612
2630
|
"us-west4": "us-west4";
|
|
2613
|
-
}
|
|
2614
|
-
}, z.core.$strip
|
|
2631
|
+
}>>>>;
|
|
2632
|
+
}, z.core.$strip>>>;
|
|
2615
2633
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2616
2634
|
aggressive: "aggressive";
|
|
2617
2635
|
conservative: "conservative";
|
|
@@ -2656,16 +2674,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2656
2674
|
enabled: z.ZodBoolean;
|
|
2657
2675
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2658
2676
|
}, z.core.$strip>>;
|
|
2659
|
-
constraints: z.
|
|
2660
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2677
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2678
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2661
2679
|
"on-demand": "on-demand";
|
|
2662
2680
|
spot: "spot";
|
|
2663
|
-
}
|
|
2664
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2681
|
+
}>>>;
|
|
2682
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2665
2683
|
amd64: "amd64";
|
|
2666
2684
|
arm64: "arm64";
|
|
2667
|
-
}
|
|
2668
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2685
|
+
}>>>;
|
|
2686
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2669
2687
|
p3: "p3";
|
|
2670
2688
|
cx: "cx";
|
|
2671
2689
|
h1: "h1";
|
|
@@ -2824,8 +2842,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2824
2842
|
x8g: "x8g";
|
|
2825
2843
|
z1d: "z1d";
|
|
2826
2844
|
z3: "z3";
|
|
2827
|
-
}
|
|
2828
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2845
|
+
}>>>>;
|
|
2846
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2829
2847
|
"africa-south1": "africa-south1";
|
|
2830
2848
|
"ap-northeast-1": "ap-northeast-1";
|
|
2831
2849
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2890,7 +2908,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2890
2908
|
"us-west2": "us-west2";
|
|
2891
2909
|
"us-west3": "us-west3";
|
|
2892
2910
|
"us-west4": "us-west4";
|
|
2893
|
-
}
|
|
2911
|
+
}>>>>;
|
|
2894
2912
|
}, z.core.$strip>>;
|
|
2895
2913
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2896
2914
|
aggressive: "aggressive";
|
|
@@ -2918,16 +2936,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2918
2936
|
enabled: z.ZodBoolean;
|
|
2919
2937
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2920
2938
|
}, z.core.$strip>>;
|
|
2921
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2922
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2939
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2940
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2923
2941
|
"on-demand": "on-demand";
|
|
2924
2942
|
spot: "spot";
|
|
2925
|
-
}
|
|
2926
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2943
|
+
}>>>>;
|
|
2944
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2927
2945
|
amd64: "amd64";
|
|
2928
2946
|
arm64: "arm64";
|
|
2929
|
-
}
|
|
2930
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2947
|
+
}>>>>;
|
|
2948
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2931
2949
|
p3: "p3";
|
|
2932
2950
|
cx: "cx";
|
|
2933
2951
|
h1: "h1";
|
|
@@ -3086,8 +3104,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3086
3104
|
x8g: "x8g";
|
|
3087
3105
|
z1d: "z1d";
|
|
3088
3106
|
z3: "z3";
|
|
3089
|
-
}
|
|
3090
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3107
|
+
}>>>>;
|
|
3108
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3091
3109
|
"africa-south1": "africa-south1";
|
|
3092
3110
|
"ap-northeast-1": "ap-northeast-1";
|
|
3093
3111
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3152,12 +3170,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3152
3170
|
"us-west2": "us-west2";
|
|
3153
3171
|
"us-west3": "us-west3";
|
|
3154
3172
|
"us-west4": "us-west4";
|
|
3155
|
-
}
|
|
3156
|
-
}, z.core.$strip
|
|
3157
|
-
scalingProfile: z.ZodEnum<{
|
|
3173
|
+
}>>>>;
|
|
3174
|
+
}, z.core.$strip>>>;
|
|
3175
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3158
3176
|
aggressive: "aggressive";
|
|
3159
3177
|
conservative: "conservative";
|
|
3160
|
-
}
|
|
3178
|
+
}>>>;
|
|
3161
3179
|
}, z.core.$strip>;
|
|
3162
3180
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3163
3181
|
cluster_id: z.ZodString;
|
|
@@ -3243,31 +3261,32 @@ export declare const zUpdateChartResponse: z.ZodString;
|
|
|
3243
3261
|
*/
|
|
3244
3262
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3245
3263
|
name: z.ZodString;
|
|
3246
|
-
tier: z.ZodEnum<{
|
|
3264
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3247
3265
|
basic: "basic";
|
|
3248
3266
|
pro: "pro";
|
|
3249
|
-
}
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3253
|
-
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3254
|
-
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3255
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3256
|
-
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3257
|
-
}, z.core.$strip>>;
|
|
3258
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3267
|
+
}>>;
|
|
3268
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3269
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3259
3270
|
stable: "stable";
|
|
3260
3271
|
rapid: "rapid";
|
|
3261
3272
|
extended: "extended";
|
|
3262
3273
|
}>>;
|
|
3263
|
-
features: z.
|
|
3264
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3274
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3275
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3265
3276
|
none: "none";
|
|
3266
3277
|
mps: "mps";
|
|
3267
3278
|
time_slicing: "time_slicing";
|
|
3268
|
-
}
|
|
3269
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3270
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3279
|
+
}>>;
|
|
3280
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3281
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3282
|
+
}, z.core.$strip>>;
|
|
3283
|
+
region: z.ZodString;
|
|
3284
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3285
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3286
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3287
|
+
dual_stack: z.ZodBoolean;
|
|
3288
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3289
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3271
3290
|
}, z.core.$strip>>;
|
|
3272
3291
|
id: z.ZodUUID;
|
|
3273
3292
|
status: z.ZodEnum<{
|
|
@@ -3286,16 +3305,14 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3286
3305
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3287
3306
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3288
3307
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3289
|
-
ready: z.
|
|
3290
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3308
|
+
ready: z.ZodBoolean;
|
|
3291
3309
|
}, z.core.$strip>>;
|
|
3292
3310
|
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3293
3311
|
name: z.ZodString;
|
|
3294
|
-
tier: z.ZodEnum<{
|
|
3312
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3295
3313
|
basic: "basic";
|
|
3296
3314
|
pro: "pro";
|
|
3297
|
-
}
|
|
3298
|
-
region: z.ZodString;
|
|
3315
|
+
}>>>;
|
|
3299
3316
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3300
3317
|
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3301
3318
|
stable: "stable";
|
|
@@ -3303,21 +3320,22 @@ export declare const zCreateClusterBody: z.ZodObject<{
|
|
|
3303
3320
|
extended: "extended";
|
|
3304
3321
|
}>>>;
|
|
3305
3322
|
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3306
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3323
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3307
3324
|
none: "none";
|
|
3308
3325
|
mps: "mps";
|
|
3309
3326
|
time_slicing: "time_slicing";
|
|
3310
|
-
}
|
|
3311
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3327
|
+
}>>>;
|
|
3328
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3312
3329
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3313
3330
|
}, z.core.$strip>>>;
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3331
|
+
region: z.ZodString;
|
|
3332
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3333
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3334
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3317
3335
|
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3318
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString
|
|
3319
|
-
service_cidr_v6: z.ZodOptional<z.ZodString
|
|
3320
|
-
}, z.core.$strip
|
|
3336
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3337
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3338
|
+
}, z.core.$strip>>>;
|
|
3321
3339
|
}, z.core.$strip>;
|
|
3322
3340
|
/**
|
|
3323
3341
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -3338,31 +3356,32 @@ export declare const zGetClusterPath: z.ZodObject<{
|
|
|
3338
3356
|
*/
|
|
3339
3357
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3340
3358
|
name: z.ZodString;
|
|
3341
|
-
tier: z.ZodEnum<{
|
|
3359
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3342
3360
|
basic: "basic";
|
|
3343
3361
|
pro: "pro";
|
|
3344
|
-
}
|
|
3345
|
-
|
|
3346
|
-
|
|
3347
|
-
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3348
|
-
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3349
|
-
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3350
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3351
|
-
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3352
|
-
}, z.core.$strip>>;
|
|
3353
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3362
|
+
}>>;
|
|
3363
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3364
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3354
3365
|
stable: "stable";
|
|
3355
3366
|
rapid: "rapid";
|
|
3356
3367
|
extended: "extended";
|
|
3357
3368
|
}>>;
|
|
3358
|
-
features: z.
|
|
3359
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3369
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3370
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3360
3371
|
none: "none";
|
|
3361
3372
|
mps: "mps";
|
|
3362
3373
|
time_slicing: "time_slicing";
|
|
3363
|
-
}
|
|
3364
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3365
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3374
|
+
}>>;
|
|
3375
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3376
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3377
|
+
}, z.core.$strip>>;
|
|
3378
|
+
region: z.ZodString;
|
|
3379
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3380
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3381
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3382
|
+
dual_stack: z.ZodBoolean;
|
|
3383
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3384
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3366
3385
|
}, z.core.$strip>>;
|
|
3367
3386
|
id: z.ZodUUID;
|
|
3368
3387
|
status: z.ZodEnum<{
|
|
@@ -3381,30 +3400,29 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
3381
3400
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3382
3401
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3383
3402
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3384
|
-
ready: z.
|
|
3385
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3403
|
+
ready: z.ZodBoolean;
|
|
3386
3404
|
}, z.core.$strip>;
|
|
3387
3405
|
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3388
|
-
name: z.
|
|
3389
|
-
tier: z.ZodEnum<{
|
|
3406
|
+
name: z.ZodString;
|
|
3407
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3390
3408
|
basic: "basic";
|
|
3391
3409
|
pro: "pro";
|
|
3392
|
-
}
|
|
3393
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
3394
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3410
|
+
}>>>;
|
|
3411
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3412
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3395
3413
|
stable: "stable";
|
|
3396
3414
|
rapid: "rapid";
|
|
3397
3415
|
extended: "extended";
|
|
3398
|
-
}
|
|
3399
|
-
features: z.ZodOptional<z.ZodObject<{
|
|
3400
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3416
|
+
}>>>;
|
|
3417
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3418
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3401
3419
|
none: "none";
|
|
3402
3420
|
mps: "mps";
|
|
3403
3421
|
time_slicing: "time_slicing";
|
|
3404
|
-
}
|
|
3405
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3422
|
+
}>>>;
|
|
3423
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3406
3424
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3407
|
-
}, z.core.$strip
|
|
3425
|
+
}, z.core.$strip>>>;
|
|
3408
3426
|
}, z.core.$strip>;
|
|
3409
3427
|
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3410
3428
|
cluster_id: z.ZodString;
|
|
@@ -3414,31 +3432,32 @@ export declare const zUpdateClusterPath: z.ZodObject<{
|
|
|
3414
3432
|
*/
|
|
3415
3433
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3416
3434
|
name: z.ZodString;
|
|
3417
|
-
tier: z.ZodEnum<{
|
|
3435
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3418
3436
|
basic: "basic";
|
|
3419
3437
|
pro: "pro";
|
|
3420
|
-
}
|
|
3421
|
-
|
|
3422
|
-
|
|
3423
|
-
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3424
|
-
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3425
|
-
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3426
|
-
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3427
|
-
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3428
|
-
}, z.core.$strip>>;
|
|
3429
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3438
|
+
}>>;
|
|
3439
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3440
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3430
3441
|
stable: "stable";
|
|
3431
3442
|
rapid: "rapid";
|
|
3432
3443
|
extended: "extended";
|
|
3433
3444
|
}>>;
|
|
3434
|
-
features: z.
|
|
3435
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3445
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3446
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3436
3447
|
none: "none";
|
|
3437
3448
|
mps: "mps";
|
|
3438
3449
|
time_slicing: "time_slicing";
|
|
3439
|
-
}
|
|
3440
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3441
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3450
|
+
}>>;
|
|
3451
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3452
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3453
|
+
}, z.core.$strip>>;
|
|
3454
|
+
region: z.ZodString;
|
|
3455
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3456
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3457
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3458
|
+
dual_stack: z.ZodBoolean;
|
|
3459
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3460
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3442
3461
|
}, z.core.$strip>>;
|
|
3443
3462
|
id: z.ZodUUID;
|
|
3444
3463
|
status: z.ZodEnum<{
|
|
@@ -3457,8 +3476,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
3457
3476
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3458
3477
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3459
3478
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3460
|
-
ready: z.
|
|
3461
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3479
|
+
ready: z.ZodBoolean;
|
|
3462
3480
|
}, z.core.$strip>;
|
|
3463
3481
|
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3464
3482
|
cluster_id: z.ZodString;
|