@cloudfleet/sdk 0.0.1-84adc67 → 0.0.1-8783e31

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