@cloudfleet/sdk 0.0.1-eb7ee45 → 0.0.1-ec8cbf3
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 +11 -1
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +11 -1
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +166 -77
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +224 -101
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +11 -1
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +11 -1
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +91 -57
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +213 -181
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +118 -49
- package/dist/zod.gen.js.map +1 -1
- package/package.json +1 -1
package/dist/zod.gen.d.ts
CHANGED
|
@@ -182,13 +182,16 @@ 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";
|
|
192
|
+
enterprise: "enterprise";
|
|
189
193
|
pro: "pro";
|
|
190
|
-
}
|
|
191
|
-
region: z.ZodString;
|
|
194
|
+
}>>>;
|
|
192
195
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
193
196
|
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
194
197
|
stable: "stable";
|
|
@@ -196,21 +199,22 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
196
199
|
extended: "extended";
|
|
197
200
|
}>>>;
|
|
198
201
|
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
199
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
202
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
200
203
|
none: "none";
|
|
201
204
|
mps: "mps";
|
|
202
205
|
time_slicing: "time_slicing";
|
|
203
|
-
}
|
|
204
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
206
|
+
}>>>;
|
|
207
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
205
208
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
206
209
|
}, z.core.$strip>>>;
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
+
region: z.ZodString;
|
|
211
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
212
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
213
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
210
214
|
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
|
|
215
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
216
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
217
|
+
}, z.core.$strip>>>;
|
|
214
218
|
}, z.core.$strip>;
|
|
215
219
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
220
|
certificate_authority: z.ZodString;
|
|
@@ -231,33 +235,38 @@ export declare const zClusterJoinInformation: z.ZodObject<{
|
|
|
231
235
|
gcp_workload_identity_provider: z.ZodString;
|
|
232
236
|
}, z.core.$strip>;
|
|
233
237
|
}, z.core.$strip>;
|
|
238
|
+
/**
|
|
239
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
240
|
+
*/
|
|
234
241
|
export declare const zCluster: z.ZodObject<{
|
|
235
242
|
name: z.ZodString;
|
|
236
|
-
tier: z.ZodEnum<{
|
|
243
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
237
244
|
basic: "basic";
|
|
245
|
+
enterprise: "enterprise";
|
|
238
246
|
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<{
|
|
247
|
+
}>>;
|
|
248
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
249
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
249
250
|
stable: "stable";
|
|
250
251
|
rapid: "rapid";
|
|
251
252
|
extended: "extended";
|
|
252
253
|
}>>;
|
|
253
|
-
features: z.
|
|
254
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
254
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
255
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
255
256
|
none: "none";
|
|
256
257
|
mps: "mps";
|
|
257
258
|
time_slicing: "time_slicing";
|
|
258
|
-
}
|
|
259
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
260
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
259
|
+
}>>;
|
|
260
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
261
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
262
|
+
}, z.core.$strip>>;
|
|
263
|
+
region: z.ZodString;
|
|
264
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
265
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
266
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
267
|
+
dual_stack: z.ZodBoolean;
|
|
268
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
269
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
261
270
|
}, z.core.$strip>>;
|
|
262
271
|
id: z.ZodUUID;
|
|
263
272
|
status: z.ZodEnum<{
|
|
@@ -276,31 +285,37 @@ export declare const zCluster: z.ZodObject<{
|
|
|
276
285
|
version_current: z.ZodOptional<z.ZodString>;
|
|
277
286
|
created_at: z.ZodOptional<z.ZodString>;
|
|
278
287
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
279
|
-
ready: z.
|
|
280
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
288
|
+
ready: z.ZodBoolean;
|
|
281
289
|
}, z.core.$strip>;
|
|
290
|
+
/**
|
|
291
|
+
* Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
292
|
+
*/
|
|
282
293
|
export declare const zClusterUpdateInput: z.ZodObject<{
|
|
283
|
-
name: z.
|
|
284
|
-
tier: z.ZodEnum<{
|
|
294
|
+
name: z.ZodString;
|
|
295
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
285
296
|
basic: "basic";
|
|
297
|
+
enterprise: "enterprise";
|
|
286
298
|
pro: "pro";
|
|
287
|
-
}
|
|
288
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
289
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
299
|
+
}>>>;
|
|
300
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
301
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
290
302
|
stable: "stable";
|
|
291
303
|
rapid: "rapid";
|
|
292
304
|
extended: "extended";
|
|
293
|
-
}
|
|
294
|
-
features: z.ZodOptional<z.ZodObject<{
|
|
295
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
305
|
+
}>>>;
|
|
306
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
307
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
296
308
|
none: "none";
|
|
297
309
|
mps: "mps";
|
|
298
310
|
time_slicing: "time_slicing";
|
|
299
|
-
}
|
|
300
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
311
|
+
}>>>;
|
|
312
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
301
313
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
302
|
-
}, z.core.$strip
|
|
314
|
+
}, z.core.$strip>>>;
|
|
303
315
|
}, z.core.$strip>;
|
|
316
|
+
/**
|
|
317
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
318
|
+
*/
|
|
304
319
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
305
320
|
limits: z.ZodOptional<z.ZodObject<{
|
|
306
321
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -317,7 +332,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
317
332
|
enabled: z.ZodBoolean;
|
|
318
333
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
319
334
|
}, z.core.$strip>>;
|
|
320
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
335
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
321
336
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
322
337
|
"on-demand": "on-demand";
|
|
323
338
|
spot: "spot";
|
|
@@ -326,7 +341,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
326
341
|
amd64: "amd64";
|
|
327
342
|
arm64: "arm64";
|
|
328
343
|
}>>>>;
|
|
329
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
344
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
330
345
|
p3: "p3";
|
|
331
346
|
cx: "cx";
|
|
332
347
|
h1: "h1";
|
|
@@ -485,8 +500,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
485
500
|
x8g: "x8g";
|
|
486
501
|
z1d: "z1d";
|
|
487
502
|
z3: "z3";
|
|
488
|
-
}
|
|
489
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
503
|
+
}>>>>;
|
|
504
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
490
505
|
"africa-south1": "africa-south1";
|
|
491
506
|
"ap-northeast-1": "ap-northeast-1";
|
|
492
507
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -551,14 +566,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
551
566
|
"us-west2": "us-west2";
|
|
552
567
|
"us-west3": "us-west3";
|
|
553
568
|
"us-west4": "us-west4";
|
|
554
|
-
}
|
|
555
|
-
}, z.core.$strip
|
|
569
|
+
}>>>>;
|
|
570
|
+
}, z.core.$strip>>>;
|
|
556
571
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
557
572
|
aggressive: "aggressive";
|
|
558
573
|
conservative: "conservative";
|
|
559
574
|
}>>>;
|
|
560
575
|
id: z.ZodString;
|
|
561
576
|
}, z.core.$strip>;
|
|
577
|
+
/**
|
|
578
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
579
|
+
*/
|
|
562
580
|
export declare const zFleet: z.ZodObject<{
|
|
563
581
|
limits: z.ZodOptional<z.ZodObject<{
|
|
564
582
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -575,16 +593,16 @@ export declare const zFleet: z.ZodObject<{
|
|
|
575
593
|
enabled: z.ZodBoolean;
|
|
576
594
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
577
595
|
}, z.core.$strip>>;
|
|
578
|
-
constraints: z.
|
|
579
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
596
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
597
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
580
598
|
"on-demand": "on-demand";
|
|
581
599
|
spot: "spot";
|
|
582
|
-
}
|
|
583
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
600
|
+
}>>>;
|
|
601
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
584
602
|
amd64: "amd64";
|
|
585
603
|
arm64: "arm64";
|
|
586
|
-
}
|
|
587
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
604
|
+
}>>>;
|
|
605
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
588
606
|
p3: "p3";
|
|
589
607
|
cx: "cx";
|
|
590
608
|
h1: "h1";
|
|
@@ -743,8 +761,8 @@ export declare const zFleet: z.ZodObject<{
|
|
|
743
761
|
x8g: "x8g";
|
|
744
762
|
z1d: "z1d";
|
|
745
763
|
z3: "z3";
|
|
746
|
-
}
|
|
747
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
764
|
+
}>>>>;
|
|
765
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
748
766
|
"africa-south1": "africa-south1";
|
|
749
767
|
"ap-northeast-1": "ap-northeast-1";
|
|
750
768
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -809,7 +827,7 @@ export declare const zFleet: z.ZodObject<{
|
|
|
809
827
|
"us-west2": "us-west2";
|
|
810
828
|
"us-west3": "us-west3";
|
|
811
829
|
"us-west4": "us-west4";
|
|
812
|
-
}
|
|
830
|
+
}>>>>;
|
|
813
831
|
}, z.core.$strip>>;
|
|
814
832
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
815
833
|
aggressive: "aggressive";
|
|
@@ -821,6 +839,9 @@ export declare const zFleet: z.ZodObject<{
|
|
|
821
839
|
created_at: z.ZodString;
|
|
822
840
|
updated_at: z.ZodString;
|
|
823
841
|
}, z.core.$strip>;
|
|
842
|
+
/**
|
|
843
|
+
* Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
|
|
844
|
+
*/
|
|
824
845
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
825
846
|
limits: z.ZodOptional<z.ZodObject<{
|
|
826
847
|
cpu: z.ZodOptional<z.ZodInt>;
|
|
@@ -837,16 +858,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
837
858
|
enabled: z.ZodBoolean;
|
|
838
859
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
839
860
|
}, z.core.$strip>>;
|
|
840
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
841
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
861
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
862
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
842
863
|
"on-demand": "on-demand";
|
|
843
864
|
spot: "spot";
|
|
844
|
-
}
|
|
845
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
865
|
+
}>>>>;
|
|
866
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
846
867
|
amd64: "amd64";
|
|
847
868
|
arm64: "arm64";
|
|
848
|
-
}
|
|
849
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
869
|
+
}>>>>;
|
|
870
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
850
871
|
p3: "p3";
|
|
851
872
|
cx: "cx";
|
|
852
873
|
h1: "h1";
|
|
@@ -1005,8 +1026,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1005
1026
|
x8g: "x8g";
|
|
1006
1027
|
z1d: "z1d";
|
|
1007
1028
|
z3: "z3";
|
|
1008
|
-
}
|
|
1009
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1029
|
+
}>>>>;
|
|
1030
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1010
1031
|
"africa-south1": "africa-south1";
|
|
1011
1032
|
"ap-northeast-1": "ap-northeast-1";
|
|
1012
1033
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -1071,12 +1092,12 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1071
1092
|
"us-west2": "us-west2";
|
|
1072
1093
|
"us-west3": "us-west3";
|
|
1073
1094
|
"us-west4": "us-west4";
|
|
1074
|
-
}
|
|
1075
|
-
}, z.core.$strip
|
|
1076
|
-
scalingProfile: z.ZodEnum<{
|
|
1095
|
+
}>>>>;
|
|
1096
|
+
}, z.core.$strip>>>;
|
|
1097
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1077
1098
|
aggressive: "aggressive";
|
|
1078
1099
|
conservative: "conservative";
|
|
1079
|
-
}
|
|
1100
|
+
}>>>;
|
|
1080
1101
|
}, z.core.$strip>;
|
|
1081
1102
|
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1082
1103
|
email: z.ZodEmail;
|
|
@@ -1160,6 +1181,8 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1160
1181
|
basic_clusters_available: z.ZodInt;
|
|
1161
1182
|
pro_clusters_max: z.ZodInt;
|
|
1162
1183
|
pro_clusters_available: z.ZodInt;
|
|
1184
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1185
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1163
1186
|
fleets_max: z.ZodInt;
|
|
1164
1187
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1165
1188
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1201,6 +1224,8 @@ export declare const zPlatformQuota: z.ZodObject<{
|
|
|
1201
1224
|
basic_clusters_available: z.ZodInt;
|
|
1202
1225
|
pro_clusters_max: z.ZodInt;
|
|
1203
1226
|
pro_clusters_available: z.ZodInt;
|
|
1227
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1228
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1204
1229
|
fleets_max: z.ZodInt;
|
|
1205
1230
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1206
1231
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -1946,6 +1971,8 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
1946
1971
|
basic_clusters_available: z.ZodInt;
|
|
1947
1972
|
pro_clusters_max: z.ZodInt;
|
|
1948
1973
|
pro_clusters_available: z.ZodInt;
|
|
1974
|
+
enterprise_clusters_max: z.ZodInt;
|
|
1975
|
+
enterprise_clusters_available: z.ZodInt;
|
|
1949
1976
|
fleets_max: z.ZodInt;
|
|
1950
1977
|
cluster_tiers: z.ZodArray<z.ZodString>;
|
|
1951
1978
|
regions: z.ZodArray<z.ZodString>;
|
|
@@ -2114,16 +2141,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2114
2141
|
enabled: z.ZodBoolean;
|
|
2115
2142
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2116
2143
|
}, z.core.$strip>>;
|
|
2117
|
-
constraints: z.
|
|
2118
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2144
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2145
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2119
2146
|
"on-demand": "on-demand";
|
|
2120
2147
|
spot: "spot";
|
|
2121
|
-
}
|
|
2122
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2148
|
+
}>>>;
|
|
2149
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2123
2150
|
amd64: "amd64";
|
|
2124
2151
|
arm64: "arm64";
|
|
2125
|
-
}
|
|
2126
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2152
|
+
}>>>;
|
|
2153
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2127
2154
|
p3: "p3";
|
|
2128
2155
|
cx: "cx";
|
|
2129
2156
|
h1: "h1";
|
|
@@ -2282,8 +2309,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2282
2309
|
x8g: "x8g";
|
|
2283
2310
|
z1d: "z1d";
|
|
2284
2311
|
z3: "z3";
|
|
2285
|
-
}
|
|
2286
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2312
|
+
}>>>>;
|
|
2313
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2287
2314
|
"africa-south1": "africa-south1";
|
|
2288
2315
|
"ap-northeast-1": "ap-northeast-1";
|
|
2289
2316
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2348,7 +2375,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2348
2375
|
"us-west2": "us-west2";
|
|
2349
2376
|
"us-west3": "us-west3";
|
|
2350
2377
|
"us-west4": "us-west4";
|
|
2351
|
-
}
|
|
2378
|
+
}>>>>;
|
|
2352
2379
|
}, z.core.$strip>>;
|
|
2353
2380
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2354
2381
|
aggressive: "aggressive";
|
|
@@ -2376,7 +2403,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2376
2403
|
enabled: z.ZodBoolean;
|
|
2377
2404
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2378
2405
|
}, z.core.$strip>>;
|
|
2379
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2406
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2380
2407
|
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2381
2408
|
"on-demand": "on-demand";
|
|
2382
2409
|
spot: "spot";
|
|
@@ -2385,7 +2412,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2385
2412
|
amd64: "amd64";
|
|
2386
2413
|
arm64: "arm64";
|
|
2387
2414
|
}>>>>;
|
|
2388
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2415
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2389
2416
|
p3: "p3";
|
|
2390
2417
|
cx: "cx";
|
|
2391
2418
|
h1: "h1";
|
|
@@ -2544,8 +2571,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2544
2571
|
x8g: "x8g";
|
|
2545
2572
|
z1d: "z1d";
|
|
2546
2573
|
z3: "z3";
|
|
2547
|
-
}
|
|
2548
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2574
|
+
}>>>>;
|
|
2575
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2549
2576
|
"africa-south1": "africa-south1";
|
|
2550
2577
|
"ap-northeast-1": "ap-northeast-1";
|
|
2551
2578
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2610,8 +2637,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2610
2637
|
"us-west2": "us-west2";
|
|
2611
2638
|
"us-west3": "us-west3";
|
|
2612
2639
|
"us-west4": "us-west4";
|
|
2613
|
-
}
|
|
2614
|
-
}, z.core.$strip
|
|
2640
|
+
}>>>>;
|
|
2641
|
+
}, z.core.$strip>>>;
|
|
2615
2642
|
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2616
2643
|
aggressive: "aggressive";
|
|
2617
2644
|
conservative: "conservative";
|
|
@@ -2656,16 +2683,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2656
2683
|
enabled: z.ZodBoolean;
|
|
2657
2684
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2658
2685
|
}, z.core.$strip>>;
|
|
2659
|
-
constraints: z.
|
|
2660
|
-
'karpenter.sh/capacity-type': z.ZodDefault<z.
|
|
2686
|
+
constraints: z.ZodDefault<z.ZodObject<{
|
|
2687
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2661
2688
|
"on-demand": "on-demand";
|
|
2662
2689
|
spot: "spot";
|
|
2663
|
-
}
|
|
2664
|
-
'kubernetes.io/arch': z.ZodDefault<z.
|
|
2690
|
+
}>>>;
|
|
2691
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
|
|
2665
2692
|
amd64: "amd64";
|
|
2666
2693
|
arm64: "arm64";
|
|
2667
|
-
}
|
|
2668
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2694
|
+
}>>>;
|
|
2695
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2669
2696
|
p3: "p3";
|
|
2670
2697
|
cx: "cx";
|
|
2671
2698
|
h1: "h1";
|
|
@@ -2824,8 +2851,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2824
2851
|
x8g: "x8g";
|
|
2825
2852
|
z1d: "z1d";
|
|
2826
2853
|
z3: "z3";
|
|
2827
|
-
}
|
|
2828
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2854
|
+
}>>>>;
|
|
2855
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2829
2856
|
"africa-south1": "africa-south1";
|
|
2830
2857
|
"ap-northeast-1": "ap-northeast-1";
|
|
2831
2858
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -2890,7 +2917,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2890
2917
|
"us-west2": "us-west2";
|
|
2891
2918
|
"us-west3": "us-west3";
|
|
2892
2919
|
"us-west4": "us-west4";
|
|
2893
|
-
}
|
|
2920
|
+
}>>>>;
|
|
2894
2921
|
}, z.core.$strip>>;
|
|
2895
2922
|
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2896
2923
|
aggressive: "aggressive";
|
|
@@ -2918,16 +2945,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
2918
2945
|
enabled: z.ZodBoolean;
|
|
2919
2946
|
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2920
2947
|
}, z.core.$strip>>;
|
|
2921
|
-
constraints: z.ZodOptional<z.ZodObject<{
|
|
2922
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2948
|
+
constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
2949
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2923
2950
|
"on-demand": "on-demand";
|
|
2924
2951
|
spot: "spot";
|
|
2925
|
-
}
|
|
2926
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2952
|
+
}>>>>;
|
|
2953
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2927
2954
|
amd64: "amd64";
|
|
2928
2955
|
arm64: "arm64";
|
|
2929
|
-
}
|
|
2930
|
-
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2956
|
+
}>>>>;
|
|
2957
|
+
'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2931
2958
|
p3: "p3";
|
|
2932
2959
|
cx: "cx";
|
|
2933
2960
|
h1: "h1";
|
|
@@ -3086,8 +3113,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3086
3113
|
x8g: "x8g";
|
|
3087
3114
|
z1d: "z1d";
|
|
3088
3115
|
z3: "z3";
|
|
3089
|
-
}
|
|
3090
|
-
'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3116
|
+
}>>>>;
|
|
3117
|
+
'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3091
3118
|
"africa-south1": "africa-south1";
|
|
3092
3119
|
"ap-northeast-1": "ap-northeast-1";
|
|
3093
3120
|
"ap-northeast-2": "ap-northeast-2";
|
|
@@ -3152,12 +3179,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3152
3179
|
"us-west2": "us-west2";
|
|
3153
3180
|
"us-west3": "us-west3";
|
|
3154
3181
|
"us-west4": "us-west4";
|
|
3155
|
-
}
|
|
3156
|
-
}, z.core.$strip
|
|
3157
|
-
scalingProfile: z.ZodEnum<{
|
|
3182
|
+
}>>>>;
|
|
3183
|
+
}, z.core.$strip>>>;
|
|
3184
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3158
3185
|
aggressive: "aggressive";
|
|
3159
3186
|
conservative: "conservative";
|
|
3160
|
-
}
|
|
3187
|
+
}>>>;
|
|
3161
3188
|
}, z.core.$strip>;
|
|
3162
3189
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3163
3190
|
cluster_id: z.ZodString;
|
|
@@ -3243,31 +3270,33 @@ export declare const zUpdateChartResponse: z.ZodString;
|
|
|
3243
3270
|
*/
|
|
3244
3271
|
export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
3245
3272
|
name: z.ZodString;
|
|
3246
|
-
tier: z.ZodEnum<{
|
|
3273
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3247
3274
|
basic: "basic";
|
|
3275
|
+
enterprise: "enterprise";
|
|
3248
3276
|
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<{
|
|
3277
|
+
}>>;
|
|
3278
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3279
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3259
3280
|
stable: "stable";
|
|
3260
3281
|
rapid: "rapid";
|
|
3261
3282
|
extended: "extended";
|
|
3262
3283
|
}>>;
|
|
3263
|
-
features: z.
|
|
3264
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3284
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3285
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3265
3286
|
none: "none";
|
|
3266
3287
|
mps: "mps";
|
|
3267
3288
|
time_slicing: "time_slicing";
|
|
3268
|
-
}
|
|
3269
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3270
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3289
|
+
}>>;
|
|
3290
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3291
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3292
|
+
}, z.core.$strip>>;
|
|
3293
|
+
region: z.ZodString;
|
|
3294
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3295
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3296
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3297
|
+
dual_stack: z.ZodBoolean;
|
|
3298
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3299
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3271
3300
|
}, z.core.$strip>>;
|
|
3272
3301
|
id: z.ZodUUID;
|
|
3273
3302
|
status: z.ZodEnum<{
|
|
@@ -3286,16 +3315,15 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3286
3315
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3287
3316
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3288
3317
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3289
|
-
ready: z.
|
|
3290
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3318
|
+
ready: z.ZodBoolean;
|
|
3291
3319
|
}, z.core.$strip>>;
|
|
3292
3320
|
export declare const zCreateClusterBody: z.ZodObject<{
|
|
3293
3321
|
name: z.ZodString;
|
|
3294
|
-
tier: z.ZodEnum<{
|
|
3322
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3295
3323
|
basic: "basic";
|
|
3324
|
+
enterprise: "enterprise";
|
|
3296
3325
|
pro: "pro";
|
|
3297
|
-
}
|
|
3298
|
-
region: z.ZodString;
|
|
3326
|
+
}>>>;
|
|
3299
3327
|
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3300
3328
|
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3301
3329
|
stable: "stable";
|
|
@@ -3303,21 +3331,22 @@ export declare const zCreateClusterBody: z.ZodObject<{
|
|
|
3303
3331
|
extended: "extended";
|
|
3304
3332
|
}>>>;
|
|
3305
3333
|
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3306
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3334
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3307
3335
|
none: "none";
|
|
3308
3336
|
mps: "mps";
|
|
3309
3337
|
time_slicing: "time_slicing";
|
|
3310
|
-
}
|
|
3311
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3338
|
+
}>>>;
|
|
3339
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3312
3340
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3313
3341
|
}, z.core.$strip>>>;
|
|
3314
|
-
|
|
3315
|
-
|
|
3316
|
-
|
|
3342
|
+
region: z.ZodString;
|
|
3343
|
+
networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3344
|
+
pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3345
|
+
service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3317
3346
|
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
|
|
3347
|
+
pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3348
|
+
service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3349
|
+
}, z.core.$strip>>>;
|
|
3321
3350
|
}, z.core.$strip>;
|
|
3322
3351
|
/**
|
|
3323
3352
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -3338,31 +3367,33 @@ export declare const zGetClusterPath: z.ZodObject<{
|
|
|
3338
3367
|
*/
|
|
3339
3368
|
export declare const zGetClusterResponse: z.ZodObject<{
|
|
3340
3369
|
name: z.ZodString;
|
|
3341
|
-
tier: z.ZodEnum<{
|
|
3370
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3342
3371
|
basic: "basic";
|
|
3372
|
+
enterprise: "enterprise";
|
|
3343
3373
|
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<{
|
|
3374
|
+
}>>;
|
|
3375
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3376
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3354
3377
|
stable: "stable";
|
|
3355
3378
|
rapid: "rapid";
|
|
3356
3379
|
extended: "extended";
|
|
3357
3380
|
}>>;
|
|
3358
|
-
features: z.
|
|
3359
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3381
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3382
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3360
3383
|
none: "none";
|
|
3361
3384
|
mps: "mps";
|
|
3362
3385
|
time_slicing: "time_slicing";
|
|
3363
|
-
}
|
|
3364
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3365
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3386
|
+
}>>;
|
|
3387
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3388
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3389
|
+
}, z.core.$strip>>;
|
|
3390
|
+
region: z.ZodString;
|
|
3391
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3392
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3393
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3394
|
+
dual_stack: z.ZodBoolean;
|
|
3395
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3396
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3366
3397
|
}, z.core.$strip>>;
|
|
3367
3398
|
id: z.ZodUUID;
|
|
3368
3399
|
status: z.ZodEnum<{
|
|
@@ -3381,30 +3412,30 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
3381
3412
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3382
3413
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3383
3414
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3384
|
-
ready: z.
|
|
3385
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3415
|
+
ready: z.ZodBoolean;
|
|
3386
3416
|
}, z.core.$strip>;
|
|
3387
3417
|
export declare const zUpdateClusterBody: z.ZodObject<{
|
|
3388
|
-
name: z.
|
|
3389
|
-
tier: z.ZodEnum<{
|
|
3418
|
+
name: z.ZodString;
|
|
3419
|
+
tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3390
3420
|
basic: "basic";
|
|
3421
|
+
enterprise: "enterprise";
|
|
3391
3422
|
pro: "pro";
|
|
3392
|
-
}
|
|
3393
|
-
version_channel: z.ZodOptional<z.ZodString
|
|
3394
|
-
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3423
|
+
}>>>;
|
|
3424
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3425
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3395
3426
|
stable: "stable";
|
|
3396
3427
|
rapid: "rapid";
|
|
3397
3428
|
extended: "extended";
|
|
3398
|
-
}
|
|
3399
|
-
features: z.ZodOptional<z.ZodObject<{
|
|
3400
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3429
|
+
}>>>;
|
|
3430
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3431
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3401
3432
|
none: "none";
|
|
3402
3433
|
mps: "mps";
|
|
3403
3434
|
time_slicing: "time_slicing";
|
|
3404
|
-
}
|
|
3405
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3435
|
+
}>>>;
|
|
3436
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
|
|
3406
3437
|
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3407
|
-
}, z.core.$strip
|
|
3438
|
+
}, z.core.$strip>>>;
|
|
3408
3439
|
}, z.core.$strip>;
|
|
3409
3440
|
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3410
3441
|
cluster_id: z.ZodString;
|
|
@@ -3414,31 +3445,33 @@ export declare const zUpdateClusterPath: z.ZodObject<{
|
|
|
3414
3445
|
*/
|
|
3415
3446
|
export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
3416
3447
|
name: z.ZodString;
|
|
3417
|
-
tier: z.ZodEnum<{
|
|
3448
|
+
tier: z.ZodDefault<z.ZodEnum<{
|
|
3418
3449
|
basic: "basic";
|
|
3450
|
+
enterprise: "enterprise";
|
|
3419
3451
|
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<{
|
|
3452
|
+
}>>;
|
|
3453
|
+
version_channel: z.ZodDefault<z.ZodString>;
|
|
3454
|
+
release_channel: z.ZodDefault<z.ZodEnum<{
|
|
3430
3455
|
stable: "stable";
|
|
3431
3456
|
rapid: "rapid";
|
|
3432
3457
|
extended: "extended";
|
|
3433
3458
|
}>>;
|
|
3434
|
-
features: z.
|
|
3435
|
-
gpu_sharing_strategy: z.ZodEnum<{
|
|
3459
|
+
features: z.ZodDefault<z.ZodObject<{
|
|
3460
|
+
gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
|
|
3436
3461
|
none: "none";
|
|
3437
3462
|
mps: "mps";
|
|
3438
3463
|
time_slicing: "time_slicing";
|
|
3439
|
-
}
|
|
3440
|
-
gpu_max_shared_clients_per_gpu: z.ZodInt
|
|
3441
|
-
cilium_socket_lb_host_namespace_only: z.
|
|
3464
|
+
}>>;
|
|
3465
|
+
gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
|
|
3466
|
+
cilium_socket_lb_host_namespace_only: z.ZodBoolean;
|
|
3467
|
+
}, z.core.$strip>>;
|
|
3468
|
+
region: z.ZodString;
|
|
3469
|
+
networking: z.ZodDefault<z.ZodObject<{
|
|
3470
|
+
pod_cidr: z.ZodDefault<z.ZodString>;
|
|
3471
|
+
service_cidr: z.ZodDefault<z.ZodString>;
|
|
3472
|
+
dual_stack: z.ZodBoolean;
|
|
3473
|
+
pod_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3474
|
+
service_cidr_v6: z.ZodDefault<z.ZodString>;
|
|
3442
3475
|
}, z.core.$strip>>;
|
|
3443
3476
|
id: z.ZodUUID;
|
|
3444
3477
|
status: z.ZodEnum<{
|
|
@@ -3457,8 +3490,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
3457
3490
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3458
3491
|
created_at: z.ZodOptional<z.ZodString>;
|
|
3459
3492
|
updated_at: z.ZodOptional<z.ZodString>;
|
|
3460
|
-
ready: z.
|
|
3461
|
-
version_channel: z.ZodOptional<z.ZodString>;
|
|
3493
|
+
ready: z.ZodBoolean;
|
|
3462
3494
|
}, z.core.$strip>;
|
|
3463
3495
|
export declare const zGetJoinInformationPath: z.ZodObject<{
|
|
3464
3496
|
cluster_id: z.ZodString;
|