@cloudfleet/sdk 0.0.1-84adc67 → 0.0.1-882a962

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/zod.gen.d.ts CHANGED
@@ -1,4 +1,20 @@
1
1
  import * as z from 'zod';
2
+ export declare const zBasicPriceConsentInput: z.ZodObject<{
3
+ decision: z.ZodEnum<{
4
+ rejected: "rejected";
5
+ accepted: "accepted";
6
+ }>;
7
+ }, z.core.$strip>;
8
+ export declare const zBasicPriceConsent: z.ZodObject<{
9
+ status: z.ZodEnum<{
10
+ pending: "pending";
11
+ rejected: "rejected";
12
+ accepted: "accepted";
13
+ not_applicable: "not_applicable";
14
+ }>;
15
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
16
+ decided_by: z.ZodOptional<z.ZodString>;
17
+ }, z.core.$strip>;
2
18
  export declare const zBillingContact: z.ZodObject<{
3
19
  type: z.ZodEnum<{
4
20
  business: "business";
@@ -182,13 +198,16 @@ export declare const zChartUpdateInput: z.ZodObject<{
182
198
  values: z.ZodString;
183
199
  version_channel: z.ZodString;
184
200
  }, z.core.$strip>;
201
+ /**
202
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
203
+ */
185
204
  export declare const zClusterCreateInput: z.ZodObject<{
186
205
  name: z.ZodString;
187
- tier: z.ZodEnum<{
206
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
188
207
  basic: "basic";
208
+ enterprise: "enterprise";
189
209
  pro: "pro";
190
- }>;
191
- region: z.ZodString;
210
+ }>>>;
192
211
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
193
212
  release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
194
213
  stable: "stable";
@@ -196,22 +215,22 @@ export declare const zClusterCreateInput: z.ZodObject<{
196
215
  extended: "extended";
197
216
  }>>>;
198
217
  features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
199
- gpu_sharing_strategy: z.ZodEnum<{
218
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
200
219
  none: "none";
201
220
  mps: "mps";
202
221
  time_slicing: "time_slicing";
203
- }>;
204
- gpu_max_shared_clients_per_gpu: z.ZodInt;
222
+ }>>>;
223
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
205
224
  cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
206
225
  }, z.core.$strip>>>;
207
- networking: z.ZodOptional<z.ZodObject<{
208
- pod_cidr: z.ZodOptional<z.ZodString>;
209
- service_cidr: z.ZodOptional<z.ZodString>;
210
- cluster_dns: z.ZodOptional<z.ZodString>;
226
+ region: z.ZodString;
227
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
228
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
229
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
211
230
  dual_stack: z.ZodOptional<z.ZodBoolean>;
212
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
213
- service_cidr_v6: z.ZodOptional<z.ZodString>;
214
- }, z.core.$strip>>;
231
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
232
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
233
+ }, z.core.$strip>>>;
215
234
  }, z.core.$strip>;
216
235
  export declare const zClusterJoinInformation: z.ZodObject<{
217
236
  certificate_authority: z.ZodString;
@@ -232,34 +251,38 @@ export declare const zClusterJoinInformation: z.ZodObject<{
232
251
  gcp_workload_identity_provider: z.ZodString;
233
252
  }, z.core.$strip>;
234
253
  }, z.core.$strip>;
254
+ /**
255
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
256
+ */
235
257
  export declare const zCluster: z.ZodObject<{
236
258
  name: z.ZodString;
237
- tier: z.ZodEnum<{
259
+ tier: z.ZodDefault<z.ZodEnum<{
238
260
  basic: "basic";
261
+ enterprise: "enterprise";
239
262
  pro: "pro";
240
- }>;
241
- region: z.ZodString;
242
- networking: z.ZodOptional<z.ZodObject<{
243
- pod_cidr: z.ZodOptional<z.ZodString>;
244
- service_cidr: z.ZodOptional<z.ZodString>;
245
- cluster_dns: z.ZodOptional<z.ZodString>;
246
- dual_stack: z.ZodOptional<z.ZodBoolean>;
247
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
248
- service_cidr_v6: z.ZodOptional<z.ZodString>;
249
- }, z.core.$strip>>;
250
- release_channel: z.ZodOptional<z.ZodEnum<{
263
+ }>>;
264
+ version_channel: z.ZodDefault<z.ZodString>;
265
+ release_channel: z.ZodDefault<z.ZodEnum<{
251
266
  stable: "stable";
252
267
  rapid: "rapid";
253
268
  extended: "extended";
254
269
  }>>;
255
- features: z.ZodOptional<z.ZodObject<{
256
- gpu_sharing_strategy: z.ZodEnum<{
270
+ features: z.ZodDefault<z.ZodObject<{
271
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
257
272
  none: "none";
258
273
  mps: "mps";
259
274
  time_slicing: "time_slicing";
260
- }>;
261
- gpu_max_shared_clients_per_gpu: z.ZodInt;
262
- cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
275
+ }>>;
276
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
277
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
278
+ }, z.core.$strip>>;
279
+ region: z.ZodString;
280
+ networking: z.ZodDefault<z.ZodObject<{
281
+ pod_cidr: z.ZodDefault<z.ZodString>;
282
+ service_cidr: z.ZodDefault<z.ZodString>;
283
+ dual_stack: z.ZodBoolean;
284
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
285
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
263
286
  }, z.core.$strip>>;
264
287
  id: z.ZodUUID;
265
288
  status: z.ZodEnum<{
@@ -278,31 +301,37 @@ export declare const zCluster: z.ZodObject<{
278
301
  version_current: z.ZodOptional<z.ZodString>;
279
302
  created_at: z.ZodOptional<z.ZodString>;
280
303
  updated_at: z.ZodOptional<z.ZodString>;
281
- ready: z.ZodOptional<z.ZodBoolean>;
282
- version_channel: z.ZodOptional<z.ZodString>;
304
+ ready: z.ZodBoolean;
283
305
  }, z.core.$strip>;
306
+ /**
307
+ * Mutable cluster configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
308
+ */
284
309
  export declare const zClusterUpdateInput: z.ZodObject<{
285
- name: z.ZodOptional<z.ZodString>;
286
- tier: z.ZodEnum<{
310
+ name: z.ZodString;
311
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
287
312
  basic: "basic";
313
+ enterprise: "enterprise";
288
314
  pro: "pro";
289
- }>;
290
- version_channel: z.ZodOptional<z.ZodString>;
291
- release_channel: z.ZodOptional<z.ZodEnum<{
315
+ }>>>;
316
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
317
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
292
318
  stable: "stable";
293
319
  rapid: "rapid";
294
320
  extended: "extended";
295
- }>>;
296
- features: z.ZodOptional<z.ZodObject<{
297
- gpu_sharing_strategy: z.ZodEnum<{
321
+ }>>>;
322
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
323
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
298
324
  none: "none";
299
325
  mps: "mps";
300
326
  time_slicing: "time_slicing";
301
- }>;
302
- gpu_max_shared_clients_per_gpu: z.ZodInt;
327
+ }>>>;
328
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
303
329
  cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
304
- }, z.core.$strip>>;
330
+ }, z.core.$strip>>>;
305
331
  }, z.core.$strip>;
332
+ /**
333
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
334
+ */
306
335
  export declare const zFleetCreateInput: z.ZodObject<{
307
336
  limits: z.ZodOptional<z.ZodObject<{
308
337
  cpu: z.ZodOptional<z.ZodInt>;
@@ -319,7 +348,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
319
348
  enabled: z.ZodBoolean;
320
349
  controllerRoleArn: z.ZodOptional<z.ZodString>;
321
350
  }, z.core.$strip>>;
322
- constraints: z.ZodOptional<z.ZodObject<{
351
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
323
352
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
324
353
  "on-demand": "on-demand";
325
354
  spot: "spot";
@@ -328,7 +357,7 @@ export declare const zFleetCreateInput: z.ZodObject<{
328
357
  amd64: "amd64";
329
358
  arm64: "arm64";
330
359
  }>>>>;
331
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
360
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
332
361
  p3: "p3";
333
362
  cx: "cx";
334
363
  h1: "h1";
@@ -487,8 +516,8 @@ export declare const zFleetCreateInput: z.ZodObject<{
487
516
  x8g: "x8g";
488
517
  z1d: "z1d";
489
518
  z3: "z3";
490
- }>>>;
491
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
519
+ }>>>>;
520
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
492
521
  "africa-south1": "africa-south1";
493
522
  "ap-northeast-1": "ap-northeast-1";
494
523
  "ap-northeast-2": "ap-northeast-2";
@@ -553,14 +582,17 @@ export declare const zFleetCreateInput: z.ZodObject<{
553
582
  "us-west2": "us-west2";
554
583
  "us-west3": "us-west3";
555
584
  "us-west4": "us-west4";
556
- }>>>;
557
- }, z.core.$strip>>;
585
+ }>>>>;
586
+ }, z.core.$strip>>>;
558
587
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
559
588
  aggressive: "aggressive";
560
589
  conservative: "conservative";
561
590
  }>>>;
562
591
  id: z.ZodString;
563
592
  }, z.core.$strip>;
593
+ /**
594
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
595
+ */
564
596
  export declare const zFleet: z.ZodObject<{
565
597
  limits: z.ZodOptional<z.ZodObject<{
566
598
  cpu: z.ZodOptional<z.ZodInt>;
@@ -577,16 +609,16 @@ export declare const zFleet: z.ZodObject<{
577
609
  enabled: z.ZodBoolean;
578
610
  controllerRoleArn: z.ZodOptional<z.ZodString>;
579
611
  }, z.core.$strip>>;
580
- constraints: z.ZodOptional<z.ZodObject<{
581
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
612
+ constraints: z.ZodDefault<z.ZodObject<{
613
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
582
614
  "on-demand": "on-demand";
583
615
  spot: "spot";
584
- }>>>>;
585
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
616
+ }>>>;
617
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
586
618
  amd64: "amd64";
587
619
  arm64: "arm64";
588
- }>>>>;
589
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
620
+ }>>>;
621
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
590
622
  p3: "p3";
591
623
  cx: "cx";
592
624
  h1: "h1";
@@ -745,8 +777,8 @@ export declare const zFleet: z.ZodObject<{
745
777
  x8g: "x8g";
746
778
  z1d: "z1d";
747
779
  z3: "z3";
748
- }>>>;
749
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
780
+ }>>>>;
781
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
750
782
  "africa-south1": "africa-south1";
751
783
  "ap-northeast-1": "ap-northeast-1";
752
784
  "ap-northeast-2": "ap-northeast-2";
@@ -811,7 +843,7 @@ export declare const zFleet: z.ZodObject<{
811
843
  "us-west2": "us-west2";
812
844
  "us-west3": "us-west3";
813
845
  "us-west4": "us-west4";
814
- }>>>;
846
+ }>>>>;
815
847
  }, z.core.$strip>>;
816
848
  scalingProfile: z.ZodDefault<z.ZodEnum<{
817
849
  aggressive: "aggressive";
@@ -823,6 +855,9 @@ export declare const zFleet: z.ZodObject<{
823
855
  created_at: z.ZodString;
824
856
  updated_at: z.ZodString;
825
857
  }, z.core.$strip>;
858
+ /**
859
+ * Mutable fleet configuration. Applied as a full overwrite: any omitted field is reset to its default rather than left unchanged.
860
+ */
826
861
  export declare const zFleetUpdateInput: z.ZodObject<{
827
862
  limits: z.ZodOptional<z.ZodObject<{
828
863
  cpu: z.ZodOptional<z.ZodInt>;
@@ -839,16 +874,16 @@ export declare const zFleetUpdateInput: z.ZodObject<{
839
874
  enabled: z.ZodBoolean;
840
875
  controllerRoleArn: z.ZodOptional<z.ZodString>;
841
876
  }, z.core.$strip>>;
842
- constraints: z.ZodOptional<z.ZodObject<{
843
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
877
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
878
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
844
879
  "on-demand": "on-demand";
845
880
  spot: "spot";
846
- }>>>;
847
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
881
+ }>>>>;
882
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
848
883
  amd64: "amd64";
849
884
  arm64: "arm64";
850
- }>>>;
851
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
885
+ }>>>>;
886
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
852
887
  p3: "p3";
853
888
  cx: "cx";
854
889
  h1: "h1";
@@ -1007,8 +1042,8 @@ export declare const zFleetUpdateInput: z.ZodObject<{
1007
1042
  x8g: "x8g";
1008
1043
  z1d: "z1d";
1009
1044
  z3: "z3";
1010
- }>>>;
1011
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
1045
+ }>>>>;
1046
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
1012
1047
  "africa-south1": "africa-south1";
1013
1048
  "ap-northeast-1": "ap-northeast-1";
1014
1049
  "ap-northeast-2": "ap-northeast-2";
@@ -1073,12 +1108,12 @@ export declare const zFleetUpdateInput: z.ZodObject<{
1073
1108
  "us-west2": "us-west2";
1074
1109
  "us-west3": "us-west3";
1075
1110
  "us-west4": "us-west4";
1076
- }>>>;
1077
- }, z.core.$strip>>;
1078
- scalingProfile: z.ZodEnum<{
1111
+ }>>>>;
1112
+ }, z.core.$strip>>>;
1113
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
1079
1114
  aggressive: "aggressive";
1080
1115
  conservative: "conservative";
1081
- }>;
1116
+ }>>>;
1082
1117
  }, z.core.$strip>;
1083
1118
  export declare const zInviteCreateInput: z.ZodObject<{
1084
1119
  email: z.ZodEmail;
@@ -1162,6 +1197,8 @@ export declare const zOrganization: z.ZodObject<{
1162
1197
  basic_clusters_available: z.ZodInt;
1163
1198
  pro_clusters_max: z.ZodInt;
1164
1199
  pro_clusters_available: z.ZodInt;
1200
+ enterprise_clusters_max: z.ZodInt;
1201
+ enterprise_clusters_available: z.ZodInt;
1165
1202
  fleets_max: z.ZodInt;
1166
1203
  cluster_tiers: z.ZodArray<z.ZodString>;
1167
1204
  regions: z.ZodArray<z.ZodString>;
@@ -1203,6 +1240,8 @@ export declare const zPlatformQuota: z.ZodObject<{
1203
1240
  basic_clusters_available: z.ZodInt;
1204
1241
  pro_clusters_max: z.ZodInt;
1205
1242
  pro_clusters_available: z.ZodInt;
1243
+ enterprise_clusters_max: z.ZodInt;
1244
+ enterprise_clusters_available: z.ZodInt;
1206
1245
  fleets_max: z.ZodInt;
1207
1246
  cluster_tiers: z.ZodArray<z.ZodString>;
1208
1247
  regions: z.ZodArray<z.ZodString>;
@@ -1273,42 +1312,6 @@ export declare const zTicketCreateInput: z.ZodObject<{
1273
1312
  body: z.ZodString;
1274
1313
  properties: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1275
1314
  }, z.core.$strip>;
1276
- export declare const zTicketListResponse: z.ZodObject<{
1277
- items: z.ZodArray<z.ZodObject<{
1278
- id: z.ZodString;
1279
- status: z.ZodEnum<{
1280
- closed: "closed";
1281
- waiting_on_us: "waiting_on_us";
1282
- waiting_on_user: "waiting_on_user";
1283
- }>;
1284
- category: z.ZodEnum<{
1285
- billing: "billing";
1286
- technical: "technical";
1287
- general: "general";
1288
- }>;
1289
- summary: z.ZodString;
1290
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1291
- date_created: z.ZodISODateTime;
1292
- date_updated: z.ZodISODateTime;
1293
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1294
- id: z.ZodString;
1295
- type: z.ZodEnum<{
1296
- customer_reply: "customer_reply";
1297
- agent_reply: "agent_reply";
1298
- }>;
1299
- body: z.ZodString;
1300
- author_first_name: z.ZodOptional<z.ZodString>;
1301
- author_last_name: z.ZodOptional<z.ZodString>;
1302
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1303
- id: z.ZodString;
1304
- filename: z.ZodString;
1305
- content_type: z.ZodString;
1306
- size: z.ZodInt;
1307
- }, z.core.$strip>>>;
1308
- date_created: z.ZodISODateTime;
1309
- }, z.core.$strip>>>;
1310
- }, z.core.$strip>>;
1311
- }, z.core.$strip>;
1312
1315
  export declare const zTicketMessageInput: z.ZodObject<{
1313
1316
  body: z.ZodString;
1314
1317
  }, z.core.$strip>;
@@ -1389,26 +1392,58 @@ export declare const zTokenUpdateInput: z.ZodObject<{
1389
1392
  }, z.core.$strip>;
1390
1393
  export declare const zUsageFacets: z.ZodObject<{
1391
1394
  cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1392
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1395
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1396
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1397
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1398
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1399
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1400
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1401
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1402
+ cfcr_storage: "cfcr_storage";
1403
+ }>>>;
1393
1404
  }, z.core.$strip>;
1394
1405
  export declare const zUsageResponse: z.ZodObject<{
1395
1406
  data: z.ZodArray<z.ZodObject<{
1396
1407
  hour: z.ZodString;
1397
1408
  cluster_id: z.ZodString;
1398
- product: z.ZodString;
1409
+ product: z.ZodEnum<{
1410
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1411
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1412
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1413
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1414
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1415
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1416
+ cfcr_storage: "cfcr_storage";
1417
+ }>;
1399
1418
  value: z.ZodNumber;
1400
1419
  price: z.ZodNumber;
1401
1420
  total: z.ZodNumber;
1402
1421
  }, z.core.$strip>>;
1403
1422
  facets: z.ZodObject<{
1404
1423
  cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
1405
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
1424
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
1425
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1426
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1427
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1428
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1429
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1430
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1431
+ cfcr_storage: "cfcr_storage";
1432
+ }>>>;
1406
1433
  }, z.core.$strip>;
1407
1434
  }, z.core.$strip>;
1408
1435
  export declare const zUsage: z.ZodObject<{
1409
1436
  hour: z.ZodString;
1410
1437
  cluster_id: z.ZodString;
1411
- product: z.ZodString;
1438
+ product: z.ZodEnum<{
1439
+ cfke_controlplane_basic: "cfke_controlplane_basic";
1440
+ cfke_controlplane_pro: "cfke_controlplane_pro";
1441
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
1442
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
1443
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
1444
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
1445
+ cfcr_storage: "cfcr_storage";
1446
+ }>;
1412
1447
  value: z.ZodNumber;
1413
1448
  price: z.ZodNumber;
1414
1449
  total: z.ZodNumber;
@@ -1669,44 +1704,42 @@ export declare const zRegenerateTokenResponse: z.ZodObject<{
1669
1704
  date_created: z.ZodISODateTime;
1670
1705
  }, z.core.$strip>;
1671
1706
  /**
1672
- * Tickets for the organization.
1707
+ * An array of tickets for the organization, newest first.
1673
1708
  */
1674
- export declare const zListTicketsResponse: z.ZodObject<{
1675
- items: z.ZodArray<z.ZodObject<{
1709
+ export declare const zListTicketsResponse: z.ZodArray<z.ZodObject<{
1710
+ id: z.ZodString;
1711
+ status: z.ZodEnum<{
1712
+ closed: "closed";
1713
+ waiting_on_us: "waiting_on_us";
1714
+ waiting_on_user: "waiting_on_user";
1715
+ }>;
1716
+ category: z.ZodEnum<{
1717
+ billing: "billing";
1718
+ technical: "technical";
1719
+ general: "general";
1720
+ }>;
1721
+ summary: z.ZodString;
1722
+ closed_at: z.ZodOptional<z.ZodISODateTime>;
1723
+ date_created: z.ZodISODateTime;
1724
+ date_updated: z.ZodISODateTime;
1725
+ messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1676
1726
  id: z.ZodString;
1677
- status: z.ZodEnum<{
1678
- closed: "closed";
1679
- waiting_on_us: "waiting_on_us";
1680
- waiting_on_user: "waiting_on_user";
1681
- }>;
1682
- category: z.ZodEnum<{
1683
- billing: "billing";
1684
- technical: "technical";
1685
- general: "general";
1727
+ type: z.ZodEnum<{
1728
+ customer_reply: "customer_reply";
1729
+ agent_reply: "agent_reply";
1686
1730
  }>;
1687
- summary: z.ZodString;
1688
- closed_at: z.ZodOptional<z.ZodISODateTime>;
1689
- date_created: z.ZodISODateTime;
1690
- date_updated: z.ZodISODateTime;
1691
- messages: z.ZodOptional<z.ZodArray<z.ZodObject<{
1731
+ body: z.ZodString;
1732
+ author_first_name: z.ZodOptional<z.ZodString>;
1733
+ author_last_name: z.ZodOptional<z.ZodString>;
1734
+ attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1692
1735
  id: z.ZodString;
1693
- type: z.ZodEnum<{
1694
- customer_reply: "customer_reply";
1695
- agent_reply: "agent_reply";
1696
- }>;
1697
- body: z.ZodString;
1698
- author_first_name: z.ZodOptional<z.ZodString>;
1699
- author_last_name: z.ZodOptional<z.ZodString>;
1700
- attachments: z.ZodOptional<z.ZodArray<z.ZodObject<{
1701
- id: z.ZodString;
1702
- filename: z.ZodString;
1703
- content_type: z.ZodString;
1704
- size: z.ZodInt;
1705
- }, z.core.$strip>>>;
1706
- date_created: z.ZodISODateTime;
1736
+ filename: z.ZodString;
1737
+ content_type: z.ZodString;
1738
+ size: z.ZodInt;
1707
1739
  }, z.core.$strip>>>;
1708
- }, z.core.$strip>>;
1709
- }, z.core.$strip>;
1740
+ date_created: z.ZodISODateTime;
1741
+ }, z.core.$strip>>>;
1742
+ }, z.core.$strip>>;
1710
1743
  export declare const zCreateTicketBody: z.ZodObject<{
1711
1744
  payload: z.ZodOptional<z.ZodString>;
1712
1745
  attachments: z.ZodOptional<z.ZodArray<z.ZodString>>;
@@ -1948,6 +1981,8 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
1948
1981
  basic_clusters_available: z.ZodInt;
1949
1982
  pro_clusters_max: z.ZodInt;
1950
1983
  pro_clusters_available: z.ZodInt;
1984
+ enterprise_clusters_max: z.ZodInt;
1985
+ enterprise_clusters_available: z.ZodInt;
1951
1986
  fleets_max: z.ZodInt;
1952
1987
  cluster_tiers: z.ZodArray<z.ZodString>;
1953
1988
  regions: z.ZodArray<z.ZodString>;
@@ -1986,6 +2021,38 @@ export declare const zCreateOrganizationBody: z.ZodObject<{
1986
2021
  export declare const zCreateOrganizationResponse: z.ZodObject<{
1987
2022
  id: z.ZodString;
1988
2023
  }, z.core.$strip>;
2024
+ /**
2025
+ * Returns the current consent status.
2026
+ */
2027
+ export declare const zGetBasicPriceConsentResponse: z.ZodObject<{
2028
+ status: z.ZodEnum<{
2029
+ pending: "pending";
2030
+ rejected: "rejected";
2031
+ accepted: "accepted";
2032
+ not_applicable: "not_applicable";
2033
+ }>;
2034
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
2035
+ decided_by: z.ZodOptional<z.ZodString>;
2036
+ }, z.core.$strip>;
2037
+ export declare const zSetBasicPriceConsentBody: z.ZodObject<{
2038
+ decision: z.ZodEnum<{
2039
+ rejected: "rejected";
2040
+ accepted: "accepted";
2041
+ }>;
2042
+ }, z.core.$strip>;
2043
+ /**
2044
+ * Decision recorded. Returns the updated consent status.
2045
+ */
2046
+ export declare const zSetBasicPriceConsentResponse: z.ZodObject<{
2047
+ status: z.ZodEnum<{
2048
+ pending: "pending";
2049
+ rejected: "rejected";
2050
+ accepted: "accepted";
2051
+ not_applicable: "not_applicable";
2052
+ }>;
2053
+ decided_at: z.ZodOptional<z.ZodISODateTime>;
2054
+ decided_by: z.ZodOptional<z.ZodString>;
2055
+ }, z.core.$strip>;
1989
2056
  /**
1990
2057
  * JSON-RPC 2.0 request payload
1991
2058
  */
@@ -2116,16 +2183,16 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2116
2183
  enabled: z.ZodBoolean;
2117
2184
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2118
2185
  }, z.core.$strip>>;
2119
- constraints: z.ZodOptional<z.ZodObject<{
2120
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2186
+ constraints: z.ZodDefault<z.ZodObject<{
2187
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2121
2188
  "on-demand": "on-demand";
2122
2189
  spot: "spot";
2123
- }>>>>;
2124
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2190
+ }>>>;
2191
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2125
2192
  amd64: "amd64";
2126
2193
  arm64: "arm64";
2127
- }>>>>;
2128
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2194
+ }>>>;
2195
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2129
2196
  p3: "p3";
2130
2197
  cx: "cx";
2131
2198
  h1: "h1";
@@ -2284,8 +2351,8 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2284
2351
  x8g: "x8g";
2285
2352
  z1d: "z1d";
2286
2353
  z3: "z3";
2287
- }>>>;
2288
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2354
+ }>>>>;
2355
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2289
2356
  "africa-south1": "africa-south1";
2290
2357
  "ap-northeast-1": "ap-northeast-1";
2291
2358
  "ap-northeast-2": "ap-northeast-2";
@@ -2350,7 +2417,7 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
2350
2417
  "us-west2": "us-west2";
2351
2418
  "us-west3": "us-west3";
2352
2419
  "us-west4": "us-west4";
2353
- }>>>;
2420
+ }>>>>;
2354
2421
  }, z.core.$strip>>;
2355
2422
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2356
2423
  aggressive: "aggressive";
@@ -2378,7 +2445,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2378
2445
  enabled: z.ZodBoolean;
2379
2446
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2380
2447
  }, z.core.$strip>>;
2381
- constraints: z.ZodOptional<z.ZodObject<{
2448
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2382
2449
  'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2383
2450
  "on-demand": "on-demand";
2384
2451
  spot: "spot";
@@ -2387,7 +2454,7 @@ export declare const zCreateFleetBody: z.ZodObject<{
2387
2454
  amd64: "amd64";
2388
2455
  arm64: "arm64";
2389
2456
  }>>>>;
2390
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2457
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2391
2458
  p3: "p3";
2392
2459
  cx: "cx";
2393
2460
  h1: "h1";
@@ -2546,8 +2613,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2546
2613
  x8g: "x8g";
2547
2614
  z1d: "z1d";
2548
2615
  z3: "z3";
2549
- }>>>;
2550
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2616
+ }>>>>;
2617
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2551
2618
  "africa-south1": "africa-south1";
2552
2619
  "ap-northeast-1": "ap-northeast-1";
2553
2620
  "ap-northeast-2": "ap-northeast-2";
@@ -2612,8 +2679,8 @@ export declare const zCreateFleetBody: z.ZodObject<{
2612
2679
  "us-west2": "us-west2";
2613
2680
  "us-west3": "us-west3";
2614
2681
  "us-west4": "us-west4";
2615
- }>>>;
2616
- }, z.core.$strip>>;
2682
+ }>>>>;
2683
+ }, z.core.$strip>>>;
2617
2684
  scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
2618
2685
  aggressive: "aggressive";
2619
2686
  conservative: "conservative";
@@ -2658,16 +2725,16 @@ export declare const zGetFleetResponse: z.ZodObject<{
2658
2725
  enabled: z.ZodBoolean;
2659
2726
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2660
2727
  }, z.core.$strip>>;
2661
- constraints: z.ZodOptional<z.ZodObject<{
2662
- 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2728
+ constraints: z.ZodDefault<z.ZodObject<{
2729
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2663
2730
  "on-demand": "on-demand";
2664
2731
  spot: "spot";
2665
- }>>>>;
2666
- 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2732
+ }>>>;
2733
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodArray<z.ZodEnum<{
2667
2734
  amd64: "amd64";
2668
2735
  arm64: "arm64";
2669
- }>>>>;
2670
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2736
+ }>>>;
2737
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2671
2738
  p3: "p3";
2672
2739
  cx: "cx";
2673
2740
  h1: "h1";
@@ -2826,8 +2893,8 @@ export declare const zGetFleetResponse: z.ZodObject<{
2826
2893
  x8g: "x8g";
2827
2894
  z1d: "z1d";
2828
2895
  z3: "z3";
2829
- }>>>;
2830
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2896
+ }>>>>;
2897
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2831
2898
  "africa-south1": "africa-south1";
2832
2899
  "ap-northeast-1": "ap-northeast-1";
2833
2900
  "ap-northeast-2": "ap-northeast-2";
@@ -2892,7 +2959,7 @@ export declare const zGetFleetResponse: z.ZodObject<{
2892
2959
  "us-west2": "us-west2";
2893
2960
  "us-west3": "us-west3";
2894
2961
  "us-west4": "us-west4";
2895
- }>>>;
2962
+ }>>>>;
2896
2963
  }, z.core.$strip>>;
2897
2964
  scalingProfile: z.ZodDefault<z.ZodEnum<{
2898
2965
  aggressive: "aggressive";
@@ -2920,16 +2987,16 @@ export declare const zUpdateFleetBody: z.ZodObject<{
2920
2987
  enabled: z.ZodBoolean;
2921
2988
  controllerRoleArn: z.ZodOptional<z.ZodString>;
2922
2989
  }, z.core.$strip>>;
2923
- constraints: z.ZodOptional<z.ZodObject<{
2924
- 'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2990
+ constraints: z.ZodDefault<z.ZodOptional<z.ZodObject<{
2991
+ 'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2925
2992
  "on-demand": "on-demand";
2926
2993
  spot: "spot";
2927
- }>>>;
2928
- 'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2994
+ }>>>>;
2995
+ 'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2929
2996
  amd64: "amd64";
2930
2997
  arm64: "arm64";
2931
- }>>>;
2932
- 'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
2998
+ }>>>>;
2999
+ 'cfke.io/instance-family': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
2933
3000
  p3: "p3";
2934
3001
  cx: "cx";
2935
3002
  h1: "h1";
@@ -3088,8 +3155,8 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3088
3155
  x8g: "x8g";
3089
3156
  z1d: "z1d";
3090
3157
  z3: "z3";
3091
- }>>>;
3092
- 'topology.kubernetes.io/region': z.ZodOptional<z.ZodArray<z.ZodEnum<{
3158
+ }>>>>;
3159
+ 'topology.kubernetes.io/region': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
3093
3160
  "africa-south1": "africa-south1";
3094
3161
  "ap-northeast-1": "ap-northeast-1";
3095
3162
  "ap-northeast-2": "ap-northeast-2";
@@ -3154,12 +3221,12 @@ export declare const zUpdateFleetBody: z.ZodObject<{
3154
3221
  "us-west2": "us-west2";
3155
3222
  "us-west3": "us-west3";
3156
3223
  "us-west4": "us-west4";
3157
- }>>>;
3158
- }, z.core.$strip>>;
3159
- scalingProfile: z.ZodEnum<{
3224
+ }>>>>;
3225
+ }, z.core.$strip>>>;
3226
+ scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3160
3227
  aggressive: "aggressive";
3161
3228
  conservative: "conservative";
3162
- }>;
3229
+ }>>>;
3163
3230
  }, z.core.$strip>;
3164
3231
  export declare const zUpdateFleetPath: z.ZodObject<{
3165
3232
  cluster_id: z.ZodString;
@@ -3245,32 +3312,33 @@ export declare const zUpdateChartResponse: z.ZodString;
3245
3312
  */
3246
3313
  export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3247
3314
  name: z.ZodString;
3248
- tier: z.ZodEnum<{
3315
+ tier: z.ZodDefault<z.ZodEnum<{
3249
3316
  basic: "basic";
3317
+ enterprise: "enterprise";
3250
3318
  pro: "pro";
3251
- }>;
3252
- region: z.ZodString;
3253
- networking: z.ZodOptional<z.ZodObject<{
3254
- pod_cidr: z.ZodOptional<z.ZodString>;
3255
- service_cidr: z.ZodOptional<z.ZodString>;
3256
- cluster_dns: z.ZodOptional<z.ZodString>;
3257
- dual_stack: z.ZodOptional<z.ZodBoolean>;
3258
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
3259
- service_cidr_v6: z.ZodOptional<z.ZodString>;
3260
- }, z.core.$strip>>;
3261
- release_channel: z.ZodOptional<z.ZodEnum<{
3319
+ }>>;
3320
+ version_channel: z.ZodDefault<z.ZodString>;
3321
+ release_channel: z.ZodDefault<z.ZodEnum<{
3262
3322
  stable: "stable";
3263
3323
  rapid: "rapid";
3264
3324
  extended: "extended";
3265
3325
  }>>;
3266
- features: z.ZodOptional<z.ZodObject<{
3267
- gpu_sharing_strategy: z.ZodEnum<{
3326
+ features: z.ZodDefault<z.ZodObject<{
3327
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3268
3328
  none: "none";
3269
3329
  mps: "mps";
3270
3330
  time_slicing: "time_slicing";
3271
- }>;
3272
- gpu_max_shared_clients_per_gpu: z.ZodInt;
3273
- cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3331
+ }>>;
3332
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3333
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3334
+ }, z.core.$strip>>;
3335
+ region: z.ZodString;
3336
+ networking: z.ZodDefault<z.ZodObject<{
3337
+ pod_cidr: z.ZodDefault<z.ZodString>;
3338
+ service_cidr: z.ZodDefault<z.ZodString>;
3339
+ dual_stack: z.ZodBoolean;
3340
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3341
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3274
3342
  }, z.core.$strip>>;
3275
3343
  id: z.ZodUUID;
3276
3344
  status: z.ZodEnum<{
@@ -3289,16 +3357,15 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
3289
3357
  version_current: z.ZodOptional<z.ZodString>;
3290
3358
  created_at: z.ZodOptional<z.ZodString>;
3291
3359
  updated_at: z.ZodOptional<z.ZodString>;
3292
- ready: z.ZodOptional<z.ZodBoolean>;
3293
- version_channel: z.ZodOptional<z.ZodString>;
3360
+ ready: z.ZodBoolean;
3294
3361
  }, z.core.$strip>>;
3295
3362
  export declare const zCreateClusterBody: z.ZodObject<{
3296
3363
  name: z.ZodString;
3297
- tier: z.ZodEnum<{
3364
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3298
3365
  basic: "basic";
3366
+ enterprise: "enterprise";
3299
3367
  pro: "pro";
3300
- }>;
3301
- region: z.ZodString;
3368
+ }>>>;
3302
3369
  version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3303
3370
  release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3304
3371
  stable: "stable";
@@ -3306,22 +3373,22 @@ export declare const zCreateClusterBody: z.ZodObject<{
3306
3373
  extended: "extended";
3307
3374
  }>>>;
3308
3375
  features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3309
- gpu_sharing_strategy: z.ZodEnum<{
3376
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3310
3377
  none: "none";
3311
3378
  mps: "mps";
3312
3379
  time_slicing: "time_slicing";
3313
- }>;
3314
- gpu_max_shared_clients_per_gpu: z.ZodInt;
3380
+ }>>>;
3381
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3315
3382
  cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3316
3383
  }, z.core.$strip>>>;
3317
- networking: z.ZodOptional<z.ZodObject<{
3318
- pod_cidr: z.ZodOptional<z.ZodString>;
3319
- service_cidr: z.ZodOptional<z.ZodString>;
3320
- cluster_dns: z.ZodOptional<z.ZodString>;
3384
+ region: z.ZodString;
3385
+ networking: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3386
+ pod_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3387
+ service_cidr: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3321
3388
  dual_stack: z.ZodOptional<z.ZodBoolean>;
3322
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
3323
- service_cidr_v6: z.ZodOptional<z.ZodString>;
3324
- }, z.core.$strip>>;
3389
+ pod_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3390
+ service_cidr_v6: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3391
+ }, z.core.$strip>>>;
3325
3392
  }, z.core.$strip>;
3326
3393
  /**
3327
3394
  * Successfully created. Returns created Cluster ID.
@@ -3342,32 +3409,33 @@ export declare const zGetClusterPath: z.ZodObject<{
3342
3409
  */
3343
3410
  export declare const zGetClusterResponse: z.ZodObject<{
3344
3411
  name: z.ZodString;
3345
- tier: z.ZodEnum<{
3412
+ tier: z.ZodDefault<z.ZodEnum<{
3346
3413
  basic: "basic";
3414
+ enterprise: "enterprise";
3347
3415
  pro: "pro";
3348
- }>;
3349
- region: z.ZodString;
3350
- networking: z.ZodOptional<z.ZodObject<{
3351
- pod_cidr: z.ZodOptional<z.ZodString>;
3352
- service_cidr: z.ZodOptional<z.ZodString>;
3353
- cluster_dns: z.ZodOptional<z.ZodString>;
3354
- dual_stack: z.ZodOptional<z.ZodBoolean>;
3355
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
3356
- service_cidr_v6: z.ZodOptional<z.ZodString>;
3357
- }, z.core.$strip>>;
3358
- release_channel: z.ZodOptional<z.ZodEnum<{
3416
+ }>>;
3417
+ version_channel: z.ZodDefault<z.ZodString>;
3418
+ release_channel: z.ZodDefault<z.ZodEnum<{
3359
3419
  stable: "stable";
3360
3420
  rapid: "rapid";
3361
3421
  extended: "extended";
3362
3422
  }>>;
3363
- features: z.ZodOptional<z.ZodObject<{
3364
- gpu_sharing_strategy: z.ZodEnum<{
3423
+ features: z.ZodDefault<z.ZodObject<{
3424
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3365
3425
  none: "none";
3366
3426
  mps: "mps";
3367
3427
  time_slicing: "time_slicing";
3368
- }>;
3369
- gpu_max_shared_clients_per_gpu: z.ZodInt;
3370
- cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3428
+ }>>;
3429
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3430
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3431
+ }, z.core.$strip>>;
3432
+ region: z.ZodString;
3433
+ networking: z.ZodDefault<z.ZodObject<{
3434
+ pod_cidr: z.ZodDefault<z.ZodString>;
3435
+ service_cidr: z.ZodDefault<z.ZodString>;
3436
+ dual_stack: z.ZodBoolean;
3437
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3438
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3371
3439
  }, z.core.$strip>>;
3372
3440
  id: z.ZodUUID;
3373
3441
  status: z.ZodEnum<{
@@ -3386,30 +3454,30 @@ export declare const zGetClusterResponse: z.ZodObject<{
3386
3454
  version_current: z.ZodOptional<z.ZodString>;
3387
3455
  created_at: z.ZodOptional<z.ZodString>;
3388
3456
  updated_at: z.ZodOptional<z.ZodString>;
3389
- ready: z.ZodOptional<z.ZodBoolean>;
3390
- version_channel: z.ZodOptional<z.ZodString>;
3457
+ ready: z.ZodBoolean;
3391
3458
  }, z.core.$strip>;
3392
3459
  export declare const zUpdateClusterBody: z.ZodObject<{
3393
- name: z.ZodOptional<z.ZodString>;
3394
- tier: z.ZodEnum<{
3460
+ name: z.ZodString;
3461
+ tier: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3395
3462
  basic: "basic";
3463
+ enterprise: "enterprise";
3396
3464
  pro: "pro";
3397
- }>;
3398
- version_channel: z.ZodOptional<z.ZodString>;
3399
- release_channel: z.ZodOptional<z.ZodEnum<{
3465
+ }>>>;
3466
+ version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
3467
+ release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3400
3468
  stable: "stable";
3401
3469
  rapid: "rapid";
3402
3470
  extended: "extended";
3403
- }>>;
3404
- features: z.ZodOptional<z.ZodObject<{
3405
- gpu_sharing_strategy: z.ZodEnum<{
3471
+ }>>>;
3472
+ features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
3473
+ gpu_sharing_strategy: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
3406
3474
  none: "none";
3407
3475
  mps: "mps";
3408
3476
  time_slicing: "time_slicing";
3409
- }>;
3410
- gpu_max_shared_clients_per_gpu: z.ZodInt;
3477
+ }>>>;
3478
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodOptional<z.ZodInt>>;
3411
3479
  cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3412
- }, z.core.$strip>>;
3480
+ }, z.core.$strip>>>;
3413
3481
  }, z.core.$strip>;
3414
3482
  export declare const zUpdateClusterPath: z.ZodObject<{
3415
3483
  cluster_id: z.ZodString;
@@ -3419,32 +3487,33 @@ export declare const zUpdateClusterPath: z.ZodObject<{
3419
3487
  */
3420
3488
  export declare const zUpdateClusterResponse: z.ZodObject<{
3421
3489
  name: z.ZodString;
3422
- tier: z.ZodEnum<{
3490
+ tier: z.ZodDefault<z.ZodEnum<{
3423
3491
  basic: "basic";
3492
+ enterprise: "enterprise";
3424
3493
  pro: "pro";
3425
- }>;
3426
- region: z.ZodString;
3427
- networking: z.ZodOptional<z.ZodObject<{
3428
- pod_cidr: z.ZodOptional<z.ZodString>;
3429
- service_cidr: z.ZodOptional<z.ZodString>;
3430
- cluster_dns: z.ZodOptional<z.ZodString>;
3431
- dual_stack: z.ZodOptional<z.ZodBoolean>;
3432
- pod_cidr_v6: z.ZodOptional<z.ZodString>;
3433
- service_cidr_v6: z.ZodOptional<z.ZodString>;
3434
- }, z.core.$strip>>;
3435
- release_channel: z.ZodOptional<z.ZodEnum<{
3494
+ }>>;
3495
+ version_channel: z.ZodDefault<z.ZodString>;
3496
+ release_channel: z.ZodDefault<z.ZodEnum<{
3436
3497
  stable: "stable";
3437
3498
  rapid: "rapid";
3438
3499
  extended: "extended";
3439
3500
  }>>;
3440
- features: z.ZodOptional<z.ZodObject<{
3441
- gpu_sharing_strategy: z.ZodEnum<{
3501
+ features: z.ZodDefault<z.ZodObject<{
3502
+ gpu_sharing_strategy: z.ZodDefault<z.ZodEnum<{
3442
3503
  none: "none";
3443
3504
  mps: "mps";
3444
3505
  time_slicing: "time_slicing";
3445
- }>;
3446
- gpu_max_shared_clients_per_gpu: z.ZodInt;
3447
- cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
3506
+ }>>;
3507
+ gpu_max_shared_clients_per_gpu: z.ZodDefault<z.ZodInt>;
3508
+ cilium_socket_lb_host_namespace_only: z.ZodBoolean;
3509
+ }, z.core.$strip>>;
3510
+ region: z.ZodString;
3511
+ networking: z.ZodDefault<z.ZodObject<{
3512
+ pod_cidr: z.ZodDefault<z.ZodString>;
3513
+ service_cidr: z.ZodDefault<z.ZodString>;
3514
+ dual_stack: z.ZodBoolean;
3515
+ pod_cidr_v6: z.ZodDefault<z.ZodString>;
3516
+ service_cidr_v6: z.ZodDefault<z.ZodString>;
3448
3517
  }, z.core.$strip>>;
3449
3518
  id: z.ZodUUID;
3450
3519
  status: z.ZodEnum<{
@@ -3463,8 +3532,7 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
3463
3532
  version_current: z.ZodOptional<z.ZodString>;
3464
3533
  created_at: z.ZodOptional<z.ZodString>;
3465
3534
  updated_at: z.ZodOptional<z.ZodString>;
3466
- ready: z.ZodOptional<z.ZodBoolean>;
3467
- version_channel: z.ZodOptional<z.ZodString>;
3535
+ ready: z.ZodBoolean;
3468
3536
  }, z.core.$strip>;
3469
3537
  export declare const zGetJoinInformationPath: z.ZodObject<{
3470
3538
  cluster_id: z.ZodString;
@@ -3505,14 +3573,30 @@ export declare const zGetUsageResponse: z.ZodObject<{
3505
3573
  data: z.ZodArray<z.ZodObject<{
3506
3574
  hour: z.ZodString;
3507
3575
  cluster_id: z.ZodString;
3508
- product: z.ZodString;
3576
+ product: z.ZodEnum<{
3577
+ cfke_controlplane_basic: "cfke_controlplane_basic";
3578
+ cfke_controlplane_pro: "cfke_controlplane_pro";
3579
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
3580
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
3581
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
3582
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
3583
+ cfcr_storage: "cfcr_storage";
3584
+ }>;
3509
3585
  value: z.ZodNumber;
3510
3586
  price: z.ZodNumber;
3511
3587
  total: z.ZodNumber;
3512
3588
  }, z.core.$strip>>;
3513
3589
  facets: z.ZodObject<{
3514
3590
  cluster_id: z.ZodOptional<z.ZodArray<z.ZodString>>;
3515
- product: z.ZodOptional<z.ZodArray<z.ZodString>>;
3591
+ product: z.ZodOptional<z.ZodArray<z.ZodEnum<{
3592
+ cfke_controlplane_basic: "cfke_controlplane_basic";
3593
+ cfke_controlplane_pro: "cfke_controlplane_pro";
3594
+ cfke_controlplane_enterprise: "cfke_controlplane_enterprise";
3595
+ cfke_connected_nodes_basic: "cfke_connected_nodes_basic";
3596
+ cfke_connected_nodes_pro: "cfke_connected_nodes_pro";
3597
+ cfke_connected_nodes_enterprise: "cfke_connected_nodes_enterprise";
3598
+ cfcr_storage: "cfcr_storage";
3599
+ }>>>;
3516
3600
  }, z.core.$strip>;
3517
3601
  }, z.core.$strip>;
3518
3602
  /**