@cloudfleet/sdk 0.0.1-4ee2c6f → 0.0.1-5175d16
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 +54 -30
- package/dist/@tanstack/react-query.gen.d.ts.map +1 -1
- package/dist/@tanstack/react-query.gen.js +54 -18
- package/dist/@tanstack/react-query.gen.js.map +1 -1
- package/dist/schemas.gen.d.ts +393 -94
- package/dist/schemas.gen.d.ts.map +1 -1
- package/dist/schemas.gen.js +497 -152
- package/dist/schemas.gen.js.map +1 -1
- package/dist/sdk.gen.d.ts +33 -21
- package/dist/sdk.gen.d.ts.map +1 -1
- package/dist/sdk.gen.js +32 -16
- package/dist/sdk.gen.js.map +1 -1
- package/dist/types.gen.d.ts +406 -87
- package/dist/types.gen.d.ts.map +1 -1
- package/dist/zod.gen.d.ts +384 -235
- package/dist/zod.gen.d.ts.map +1 -1
- package/dist/zod.gen.js +172 -103
- package/dist/zod.gen.js.map +1 -1
- package/package.json +5 -5
package/dist/zod.gen.d.ts
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
export declare const zBillingContact: z.ZodObject<{
|
|
3
|
+
type: z.ZodEnum<{
|
|
4
|
+
business: "business";
|
|
5
|
+
personal: "personal";
|
|
6
|
+
}>;
|
|
3
7
|
company: z.ZodOptional<z.ZodString>;
|
|
4
8
|
address1: z.ZodOptional<z.ZodString>;
|
|
5
9
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -168,22 +172,7 @@ export declare const zChart: z.ZodObject<{
|
|
|
168
172
|
name: z.ZodString;
|
|
169
173
|
namespace: z.ZodString;
|
|
170
174
|
chart: z.ZodString;
|
|
171
|
-
status: z.
|
|
172
|
-
InstallSucceeded: "InstallSucceeded";
|
|
173
|
-
InstallFailed: "InstallFailed";
|
|
174
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
175
|
-
UpgradeFailed: "UpgradeFailed";
|
|
176
|
-
TestSucceeded: "TestSucceeded";
|
|
177
|
-
TestFailed: "TestFailed";
|
|
178
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
179
|
-
RollbackFailed: "RollbackFailed";
|
|
180
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
181
|
-
UninstallFailed: "UninstallFailed";
|
|
182
|
-
ArtifactFailed: "ArtifactFailed";
|
|
183
|
-
DependencyNotReady: "DependencyNotReady";
|
|
184
|
-
Progressing: "Progressing";
|
|
185
|
-
SourceNotReady: "SourceNotReady";
|
|
186
|
-
}>;
|
|
175
|
+
status: z.ZodString;
|
|
187
176
|
version_current: z.ZodString;
|
|
188
177
|
created_at: z.ZodString;
|
|
189
178
|
updated_at: z.ZodString;
|
|
@@ -199,23 +188,36 @@ export declare const zClusterCreateInput: z.ZodObject<{
|
|
|
199
188
|
basic: "basic";
|
|
200
189
|
pro: "pro";
|
|
201
190
|
}>;
|
|
202
|
-
region: z.
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
209
|
-
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
210
|
-
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
211
|
-
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
212
|
-
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
191
|
+
region: z.ZodString;
|
|
192
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
193
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
194
|
+
stable: "stable";
|
|
195
|
+
rapid: "rapid";
|
|
196
|
+
extended: "extended";
|
|
213
197
|
}>>>;
|
|
198
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
199
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
200
|
+
none: "none";
|
|
201
|
+
mps: "mps";
|
|
202
|
+
time_slicing: "time_slicing";
|
|
203
|
+
}>;
|
|
204
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
205
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
206
|
+
}, 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>;
|
|
211
|
+
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>>;
|
|
214
215
|
}, z.core.$strip>;
|
|
215
216
|
export declare const zClusterJoinInformation: z.ZodObject<{
|
|
216
217
|
certificate_authority: z.ZodString;
|
|
217
218
|
endpoint: z.ZodURL;
|
|
218
219
|
cluster_dns: z.ZodString;
|
|
220
|
+
pod_cidr: z.ZodString;
|
|
219
221
|
auth_key: z.ZodString;
|
|
220
222
|
bootstrap_token: z.ZodString;
|
|
221
223
|
versions: z.ZodObject<{
|
|
@@ -236,17 +238,31 @@ export declare const zCluster: z.ZodObject<{
|
|
|
236
238
|
basic: "basic";
|
|
237
239
|
pro: "pro";
|
|
238
240
|
}>;
|
|
239
|
-
region: z.
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
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<{
|
|
251
|
+
stable: "stable";
|
|
252
|
+
rapid: "rapid";
|
|
253
|
+
extended: "extended";
|
|
254
|
+
}>>;
|
|
255
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
256
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
257
|
+
none: "none";
|
|
258
|
+
mps: "mps";
|
|
259
|
+
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>;
|
|
263
|
+
}, z.core.$strip>>;
|
|
245
264
|
id: z.ZodUUID;
|
|
246
265
|
status: z.ZodEnum<{
|
|
247
|
-
deleted: "deleted";
|
|
248
|
-
failed: "failed";
|
|
249
|
-
active: "active";
|
|
250
266
|
disabled: "disabled";
|
|
251
267
|
creating: "creating";
|
|
252
268
|
deployed: "deployed";
|
|
@@ -255,6 +271,9 @@ export declare const zCluster: z.ZodObject<{
|
|
|
255
271
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
256
272
|
"": "";
|
|
257
273
|
}>]>>;
|
|
274
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
275
|
+
"": "";
|
|
276
|
+
}>]>>;
|
|
258
277
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
259
278
|
version_current: z.ZodOptional<z.ZodString>;
|
|
260
279
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -269,32 +288,46 @@ export declare const zClusterUpdateInput: z.ZodObject<{
|
|
|
269
288
|
pro: "pro";
|
|
270
289
|
}>;
|
|
271
290
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
291
|
+
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
292
|
+
stable: "stable";
|
|
293
|
+
rapid: "rapid";
|
|
294
|
+
extended: "extended";
|
|
295
|
+
}>>;
|
|
296
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
297
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
298
|
+
none: "none";
|
|
299
|
+
mps: "mps";
|
|
300
|
+
time_slicing: "time_slicing";
|
|
301
|
+
}>;
|
|
302
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
303
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
304
|
+
}, z.core.$strip>>;
|
|
272
305
|
}, z.core.$strip>;
|
|
273
306
|
export declare const zFleetCreateInput: z.ZodObject<{
|
|
274
307
|
limits: z.ZodOptional<z.ZodObject<{
|
|
275
|
-
cpu: z.ZodOptional<z.
|
|
308
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
276
309
|
}, z.core.$strip>>;
|
|
277
310
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
278
|
-
enabled: z.
|
|
279
|
-
project: z.ZodString
|
|
311
|
+
enabled: z.ZodBoolean;
|
|
312
|
+
project: z.ZodOptional<z.ZodString>;
|
|
280
313
|
}, z.core.$strip>>;
|
|
281
314
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
282
|
-
enabled: z.
|
|
315
|
+
enabled: z.ZodBoolean;
|
|
283
316
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
284
317
|
}, z.core.$strip>>;
|
|
285
318
|
aws: z.ZodOptional<z.ZodObject<{
|
|
286
|
-
enabled: z.
|
|
287
|
-
controllerRoleArn: z.ZodString
|
|
319
|
+
enabled: z.ZodBoolean;
|
|
320
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
288
321
|
}, z.core.$strip>>;
|
|
289
322
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
290
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
323
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
291
324
|
"on-demand": "on-demand";
|
|
292
325
|
spot: "spot";
|
|
293
|
-
}
|
|
294
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
326
|
+
}>>>>;
|
|
327
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
295
328
|
amd64: "amd64";
|
|
296
329
|
arm64: "arm64";
|
|
297
|
-
}
|
|
330
|
+
}>>>>;
|
|
298
331
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
299
332
|
p3: "p3";
|
|
300
333
|
cx: "cx";
|
|
@@ -522,37 +555,37 @@ export declare const zFleetCreateInput: z.ZodObject<{
|
|
|
522
555
|
"us-west4": "us-west4";
|
|
523
556
|
}>>>;
|
|
524
557
|
}, z.core.$strip>>;
|
|
525
|
-
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
558
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
526
559
|
aggressive: "aggressive";
|
|
527
560
|
conservative: "conservative";
|
|
528
|
-
}
|
|
561
|
+
}>>>;
|
|
529
562
|
id: z.ZodString;
|
|
530
563
|
}, z.core.$strip>;
|
|
531
564
|
export declare const zFleet: z.ZodObject<{
|
|
532
565
|
limits: z.ZodOptional<z.ZodObject<{
|
|
533
|
-
cpu: z.ZodOptional<z.
|
|
566
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
534
567
|
}, z.core.$strip>>;
|
|
535
568
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
536
|
-
enabled: z.
|
|
537
|
-
project: z.ZodString
|
|
569
|
+
enabled: z.ZodBoolean;
|
|
570
|
+
project: z.ZodOptional<z.ZodString>;
|
|
538
571
|
}, z.core.$strip>>;
|
|
539
572
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
540
|
-
enabled: z.
|
|
573
|
+
enabled: z.ZodBoolean;
|
|
541
574
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
542
575
|
}, z.core.$strip>>;
|
|
543
576
|
aws: z.ZodOptional<z.ZodObject<{
|
|
544
|
-
enabled: z.
|
|
545
|
-
controllerRoleArn: z.ZodString
|
|
577
|
+
enabled: z.ZodBoolean;
|
|
578
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
546
579
|
}, z.core.$strip>>;
|
|
547
580
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
548
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
581
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
549
582
|
"on-demand": "on-demand";
|
|
550
583
|
spot: "spot";
|
|
551
|
-
}
|
|
552
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
584
|
+
}>>>>;
|
|
585
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
553
586
|
amd64: "amd64";
|
|
554
587
|
arm64: "arm64";
|
|
555
|
-
}
|
|
588
|
+
}>>>>;
|
|
556
589
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
557
590
|
p3: "p3";
|
|
558
591
|
cx: "cx";
|
|
@@ -780,27 +813,31 @@ export declare const zFleet: z.ZodObject<{
|
|
|
780
813
|
"us-west4": "us-west4";
|
|
781
814
|
}>>>;
|
|
782
815
|
}, z.core.$strip>>;
|
|
783
|
-
scalingProfile: z.
|
|
816
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
784
817
|
aggressive: "aggressive";
|
|
785
818
|
conservative: "conservative";
|
|
786
819
|
}>>;
|
|
787
820
|
id: z.ZodString;
|
|
821
|
+
ready: z.ZodBoolean;
|
|
822
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
823
|
+
created_at: z.ZodString;
|
|
824
|
+
updated_at: z.ZodString;
|
|
788
825
|
}, z.core.$strip>;
|
|
789
826
|
export declare const zFleetUpdateInput: z.ZodObject<{
|
|
790
827
|
limits: z.ZodOptional<z.ZodObject<{
|
|
791
|
-
cpu: z.ZodOptional<z.
|
|
828
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
792
829
|
}, z.core.$strip>>;
|
|
793
830
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
794
|
-
enabled: z.
|
|
795
|
-
project: z.ZodString
|
|
831
|
+
enabled: z.ZodBoolean;
|
|
832
|
+
project: z.ZodOptional<z.ZodString>;
|
|
796
833
|
}, z.core.$strip>>;
|
|
797
834
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
798
|
-
enabled: z.
|
|
835
|
+
enabled: z.ZodBoolean;
|
|
799
836
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
800
837
|
}, z.core.$strip>>;
|
|
801
838
|
aws: z.ZodOptional<z.ZodObject<{
|
|
802
|
-
enabled: z.
|
|
803
|
-
controllerRoleArn: z.ZodString
|
|
839
|
+
enabled: z.ZodBoolean;
|
|
840
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
804
841
|
}, z.core.$strip>>;
|
|
805
842
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
806
843
|
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -1038,10 +1075,17 @@ export declare const zFleetUpdateInput: z.ZodObject<{
|
|
|
1038
1075
|
"us-west4": "us-west4";
|
|
1039
1076
|
}>>>;
|
|
1040
1077
|
}, z.core.$strip>>;
|
|
1041
|
-
scalingProfile: z.
|
|
1078
|
+
scalingProfile: z.ZodEnum<{
|
|
1042
1079
|
aggressive: "aggressive";
|
|
1043
1080
|
conservative: "conservative";
|
|
1044
|
-
}
|
|
1081
|
+
}>;
|
|
1082
|
+
}, z.core.$strip>;
|
|
1083
|
+
export declare const zInviteCreateInput: z.ZodObject<{
|
|
1084
|
+
email: z.ZodEmail;
|
|
1085
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1086
|
+
Administrator: "Administrator";
|
|
1087
|
+
User: "User";
|
|
1088
|
+
}>>>;
|
|
1045
1089
|
}, z.core.$strip>;
|
|
1046
1090
|
export declare const zInvite: z.ZodObject<{
|
|
1047
1091
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1049,6 +1093,10 @@ export declare const zInvite: z.ZodObject<{
|
|
|
1049
1093
|
date_created: z.ZodISODateTime;
|
|
1050
1094
|
email: z.ZodOptional<z.ZodEmail>;
|
|
1051
1095
|
code: z.ZodOptional<z.ZodString>;
|
|
1096
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
1097
|
+
Administrator: "Administrator";
|
|
1098
|
+
User: "User";
|
|
1099
|
+
}>>>;
|
|
1052
1100
|
}, z.core.$strip>;
|
|
1053
1101
|
export declare const zInvoice: z.ZodObject<{
|
|
1054
1102
|
id: z.ZodOptional<z.ZodString>;
|
|
@@ -1088,15 +1136,26 @@ export declare const zMarketplaceListing: z.ZodObject<{
|
|
|
1088
1136
|
}, z.core.$strip>>;
|
|
1089
1137
|
}, z.core.$strip>;
|
|
1090
1138
|
export declare const zOrganizationCreateInput: z.ZodObject<{
|
|
1139
|
+
type: z.ZodEnum<{
|
|
1140
|
+
business: "business";
|
|
1141
|
+
personal: "personal";
|
|
1142
|
+
}>;
|
|
1091
1143
|
email: z.ZodEmail;
|
|
1092
1144
|
first_name: z.ZodString;
|
|
1093
1145
|
last_name: z.ZodString;
|
|
1094
1146
|
company_name: z.ZodString;
|
|
1095
1147
|
password: z.ZodString;
|
|
1096
1148
|
}, z.core.$strip>;
|
|
1149
|
+
export declare const zOrganizationCreateOutput: z.ZodObject<{
|
|
1150
|
+
id: z.ZodString;
|
|
1151
|
+
}, z.core.$strip>;
|
|
1097
1152
|
export declare const zOrganization: z.ZodObject<{
|
|
1098
1153
|
id: z.ZodUUID;
|
|
1099
1154
|
name: z.ZodOptional<z.ZodString>;
|
|
1155
|
+
type: z.ZodEnum<{
|
|
1156
|
+
business: "business";
|
|
1157
|
+
personal: "personal";
|
|
1158
|
+
}>;
|
|
1100
1159
|
date_created: z.ZodISODateTime;
|
|
1101
1160
|
quota: z.ZodObject<{
|
|
1102
1161
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1117,27 +1176,27 @@ export declare const zOrganization: z.ZodObject<{
|
|
|
1117
1176
|
closed: "closed";
|
|
1118
1177
|
suspended: "suspended";
|
|
1119
1178
|
}>;
|
|
1179
|
+
verification: z.ZodEnum<{
|
|
1180
|
+
none: "none";
|
|
1181
|
+
submitted: "submitted";
|
|
1182
|
+
verified: "verified";
|
|
1183
|
+
}>;
|
|
1120
1184
|
}, z.core.$strip>;
|
|
1121
1185
|
export declare const zPaymentMethod: z.ZodObject<{
|
|
1122
|
-
id: z.
|
|
1123
|
-
setup: z.ZodBoolean;
|
|
1186
|
+
id: z.ZodString;
|
|
1124
1187
|
type: z.ZodEnum<{
|
|
1125
1188
|
card: "card";
|
|
1189
|
+
sepa_debit: "sepa_debit";
|
|
1190
|
+
bank_transfer: "bank_transfer";
|
|
1126
1191
|
}>;
|
|
1127
1192
|
last4: z.ZodString;
|
|
1128
1193
|
exp_month: z.ZodInt;
|
|
1129
1194
|
exp_year: z.ZodInt;
|
|
1130
|
-
brand: z.
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
eftpos_au: "eftpos_au";
|
|
1136
|
-
jcb: "jcb";
|
|
1137
|
-
mastercard: "mastercard";
|
|
1138
|
-
unionpay: "unionpay";
|
|
1139
|
-
visa: "visa";
|
|
1140
|
-
}>;
|
|
1195
|
+
brand: z.ZodString;
|
|
1196
|
+
iban: z.ZodString;
|
|
1197
|
+
bic: z.ZodString;
|
|
1198
|
+
account_holder_name: z.ZodString;
|
|
1199
|
+
is_default: z.ZodBoolean;
|
|
1141
1200
|
}, z.core.$strip>;
|
|
1142
1201
|
export declare const zPlatformQuota: z.ZodObject<{
|
|
1143
1202
|
basic_clusters_max: z.ZodInt;
|
|
@@ -1360,14 +1419,6 @@ export declare const zUserCreateInput: z.ZodObject<{
|
|
|
1360
1419
|
last_name: z.ZodString;
|
|
1361
1420
|
code: z.ZodString;
|
|
1362
1421
|
password: z.ZodString;
|
|
1363
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
1364
|
-
active: "active";
|
|
1365
|
-
inactive: "inactive";
|
|
1366
|
-
}>>;
|
|
1367
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
1368
|
-
Administrator: "Administrator";
|
|
1369
|
-
User: "User";
|
|
1370
|
-
}>>;
|
|
1371
1422
|
}, z.core.$strip>;
|
|
1372
1423
|
export declare const zUser: z.ZodObject<{
|
|
1373
1424
|
email: z.ZodEmail;
|
|
@@ -1422,36 +1473,45 @@ export declare const zGetUsageResponse: z.ZodObject<{
|
|
|
1422
1473
|
}, z.core.$strip>;
|
|
1423
1474
|
}, z.core.$strip>;
|
|
1424
1475
|
/**
|
|
1425
|
-
*
|
|
1476
|
+
* The client secret. Used for client-side retrieval using a publishable key. The client secret can be used to complete a payment from your frontend. It should not be stored, logged, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.
|
|
1477
|
+
*
|
|
1426
1478
|
*/
|
|
1427
|
-
export declare const
|
|
1428
|
-
id: z.
|
|
1429
|
-
|
|
1479
|
+
export declare const zGetPaymentMethodSecretResponse: z.ZodObject<{
|
|
1480
|
+
id: z.ZodOptional<z.ZodString>;
|
|
1481
|
+
}, z.core.$strip>;
|
|
1482
|
+
/**
|
|
1483
|
+
* An array of payment methods.
|
|
1484
|
+
*/
|
|
1485
|
+
export declare const zListPaymentMethodsResponse: z.ZodArray<z.ZodObject<{
|
|
1486
|
+
id: z.ZodString;
|
|
1430
1487
|
type: z.ZodEnum<{
|
|
1431
1488
|
card: "card";
|
|
1489
|
+
sepa_debit: "sepa_debit";
|
|
1490
|
+
bank_transfer: "bank_transfer";
|
|
1432
1491
|
}>;
|
|
1433
1492
|
last4: z.ZodString;
|
|
1434
1493
|
exp_month: z.ZodInt;
|
|
1435
1494
|
exp_year: z.ZodInt;
|
|
1436
|
-
brand: z.
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
unionpay: "unionpay";
|
|
1445
|
-
visa: "visa";
|
|
1446
|
-
}>;
|
|
1495
|
+
brand: z.ZodString;
|
|
1496
|
+
iban: z.ZodString;
|
|
1497
|
+
bic: z.ZodString;
|
|
1498
|
+
account_holder_name: z.ZodString;
|
|
1499
|
+
is_default: z.ZodBoolean;
|
|
1500
|
+
}, z.core.$strip>>;
|
|
1501
|
+
export declare const zSetDefaultPaymentMethodPath: z.ZodObject<{
|
|
1502
|
+
paymentMethodId: z.ZodString;
|
|
1447
1503
|
}, z.core.$strip>;
|
|
1448
1504
|
/**
|
|
1449
|
-
*
|
|
1450
|
-
*
|
|
1505
|
+
* Default payment method updated.
|
|
1451
1506
|
*/
|
|
1452
|
-
export declare const
|
|
1453
|
-
|
|
1507
|
+
export declare const zSetDefaultPaymentMethodResponse: z.ZodVoid;
|
|
1508
|
+
export declare const zDeletePaymentMethodPath: z.ZodObject<{
|
|
1509
|
+
paymentMethodId: z.ZodString;
|
|
1454
1510
|
}, z.core.$strip>;
|
|
1511
|
+
/**
|
|
1512
|
+
* Payment method deleted.
|
|
1513
|
+
*/
|
|
1514
|
+
export declare const zDeletePaymentMethodResponse: z.ZodVoid;
|
|
1455
1515
|
/**
|
|
1456
1516
|
* An array of usage records.
|
|
1457
1517
|
*/
|
|
@@ -1470,6 +1530,10 @@ export declare const zListInvoicesResponse: z.ZodArray<z.ZodObject<{
|
|
|
1470
1530
|
* Returns a single object containing organization contact and billing address details.
|
|
1471
1531
|
*/
|
|
1472
1532
|
export declare const zGetContactResponse: z.ZodObject<{
|
|
1533
|
+
type: z.ZodEnum<{
|
|
1534
|
+
business: "business";
|
|
1535
|
+
personal: "personal";
|
|
1536
|
+
}>;
|
|
1473
1537
|
company: z.ZodOptional<z.ZodString>;
|
|
1474
1538
|
address1: z.ZodOptional<z.ZodString>;
|
|
1475
1539
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1613,6 +1677,10 @@ export declare const zGetContactResponse: z.ZodObject<{
|
|
|
1613
1677
|
}>>;
|
|
1614
1678
|
}, z.core.$strip>;
|
|
1615
1679
|
export declare const zUpdateContactBody: z.ZodObject<{
|
|
1680
|
+
type: z.ZodEnum<{
|
|
1681
|
+
business: "business";
|
|
1682
|
+
personal: "personal";
|
|
1683
|
+
}>;
|
|
1616
1684
|
company: z.ZodOptional<z.ZodString>;
|
|
1617
1685
|
address1: z.ZodOptional<z.ZodString>;
|
|
1618
1686
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1759,6 +1827,10 @@ export declare const zUpdateContactBody: z.ZodObject<{
|
|
|
1759
1827
|
* Successfully updated. Returns updated organization details.
|
|
1760
1828
|
*/
|
|
1761
1829
|
export declare const zUpdateContactResponse: z.ZodObject<{
|
|
1830
|
+
type: z.ZodEnum<{
|
|
1831
|
+
business: "business";
|
|
1832
|
+
personal: "personal";
|
|
1833
|
+
}>;
|
|
1762
1834
|
company: z.ZodOptional<z.ZodString>;
|
|
1763
1835
|
address1: z.ZodOptional<z.ZodString>;
|
|
1764
1836
|
address2: z.ZodOptional<z.ZodString>;
|
|
@@ -1932,22 +2004,7 @@ export declare const zListChartsResponse: z.ZodArray<z.ZodObject<{
|
|
|
1932
2004
|
name: z.ZodString;
|
|
1933
2005
|
namespace: z.ZodString;
|
|
1934
2006
|
chart: z.ZodString;
|
|
1935
|
-
status: z.
|
|
1936
|
-
InstallSucceeded: "InstallSucceeded";
|
|
1937
|
-
InstallFailed: "InstallFailed";
|
|
1938
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1939
|
-
UpgradeFailed: "UpgradeFailed";
|
|
1940
|
-
TestSucceeded: "TestSucceeded";
|
|
1941
|
-
TestFailed: "TestFailed";
|
|
1942
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
1943
|
-
RollbackFailed: "RollbackFailed";
|
|
1944
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
1945
|
-
UninstallFailed: "UninstallFailed";
|
|
1946
|
-
ArtifactFailed: "ArtifactFailed";
|
|
1947
|
-
DependencyNotReady: "DependencyNotReady";
|
|
1948
|
-
Progressing: "Progressing";
|
|
1949
|
-
SourceNotReady: "SourceNotReady";
|
|
1950
|
-
}>;
|
|
2007
|
+
status: z.ZodString;
|
|
1951
2008
|
version_current: z.ZodString;
|
|
1952
2009
|
created_at: z.ZodString;
|
|
1953
2010
|
updated_at: z.ZodString;
|
|
@@ -1988,22 +2045,7 @@ export declare const zGetChartResponse: z.ZodObject<{
|
|
|
1988
2045
|
name: z.ZodString;
|
|
1989
2046
|
namespace: z.ZodString;
|
|
1990
2047
|
chart: z.ZodString;
|
|
1991
|
-
status: z.
|
|
1992
|
-
InstallSucceeded: "InstallSucceeded";
|
|
1993
|
-
InstallFailed: "InstallFailed";
|
|
1994
|
-
UpgradeSucceeded: "UpgradeSucceeded";
|
|
1995
|
-
UpgradeFailed: "UpgradeFailed";
|
|
1996
|
-
TestSucceeded: "TestSucceeded";
|
|
1997
|
-
TestFailed: "TestFailed";
|
|
1998
|
-
RollbackSucceeded: "RollbackSucceeded";
|
|
1999
|
-
RollbackFailed: "RollbackFailed";
|
|
2000
|
-
UninstallSucceeded: "UninstallSucceeded";
|
|
2001
|
-
UninstallFailed: "UninstallFailed";
|
|
2002
|
-
ArtifactFailed: "ArtifactFailed";
|
|
2003
|
-
DependencyNotReady: "DependencyNotReady";
|
|
2004
|
-
Progressing: "Progressing";
|
|
2005
|
-
SourceNotReady: "SourceNotReady";
|
|
2006
|
-
}>;
|
|
2048
|
+
status: z.ZodString;
|
|
2007
2049
|
version_current: z.ZodString;
|
|
2008
2050
|
created_at: z.ZodString;
|
|
2009
2051
|
updated_at: z.ZodString;
|
|
@@ -2029,29 +2071,29 @@ export declare const zListFleetsPath: z.ZodObject<{
|
|
|
2029
2071
|
*/
|
|
2030
2072
|
export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
2031
2073
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2032
|
-
cpu: z.ZodOptional<z.
|
|
2074
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2033
2075
|
}, z.core.$strip>>;
|
|
2034
2076
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2035
|
-
enabled: z.
|
|
2036
|
-
project: z.ZodString
|
|
2077
|
+
enabled: z.ZodBoolean;
|
|
2078
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2037
2079
|
}, z.core.$strip>>;
|
|
2038
2080
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2039
|
-
enabled: z.
|
|
2081
|
+
enabled: z.ZodBoolean;
|
|
2040
2082
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2041
2083
|
}, z.core.$strip>>;
|
|
2042
2084
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2043
|
-
enabled: z.
|
|
2044
|
-
controllerRoleArn: z.ZodString
|
|
2085
|
+
enabled: z.ZodBoolean;
|
|
2086
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2045
2087
|
}, z.core.$strip>>;
|
|
2046
2088
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2047
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2089
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2048
2090
|
"on-demand": "on-demand";
|
|
2049
2091
|
spot: "spot";
|
|
2050
|
-
}
|
|
2051
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2092
|
+
}>>>>;
|
|
2093
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2052
2094
|
amd64: "amd64";
|
|
2053
2095
|
arm64: "arm64";
|
|
2054
|
-
}
|
|
2096
|
+
}>>>>;
|
|
2055
2097
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2056
2098
|
p3: "p3";
|
|
2057
2099
|
cx: "cx";
|
|
@@ -2279,37 +2321,41 @@ export declare const zListFleetsResponse: z.ZodArray<z.ZodObject<{
|
|
|
2279
2321
|
"us-west4": "us-west4";
|
|
2280
2322
|
}>>>;
|
|
2281
2323
|
}, z.core.$strip>>;
|
|
2282
|
-
scalingProfile: z.
|
|
2324
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2283
2325
|
aggressive: "aggressive";
|
|
2284
2326
|
conservative: "conservative";
|
|
2285
2327
|
}>>;
|
|
2286
2328
|
id: z.ZodString;
|
|
2329
|
+
ready: z.ZodBoolean;
|
|
2330
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2331
|
+
created_at: z.ZodString;
|
|
2332
|
+
updated_at: z.ZodString;
|
|
2287
2333
|
}, z.core.$strip>>;
|
|
2288
2334
|
export declare const zCreateFleetBody: z.ZodObject<{
|
|
2289
2335
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2290
|
-
cpu: z.ZodOptional<z.
|
|
2336
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2291
2337
|
}, z.core.$strip>>;
|
|
2292
2338
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2293
|
-
enabled: z.
|
|
2294
|
-
project: z.ZodString
|
|
2339
|
+
enabled: z.ZodBoolean;
|
|
2340
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2295
2341
|
}, z.core.$strip>>;
|
|
2296
2342
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2297
|
-
enabled: z.
|
|
2343
|
+
enabled: z.ZodBoolean;
|
|
2298
2344
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2299
2345
|
}, z.core.$strip>>;
|
|
2300
2346
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2301
|
-
enabled: z.
|
|
2302
|
-
controllerRoleArn: z.ZodString
|
|
2347
|
+
enabled: z.ZodBoolean;
|
|
2348
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2303
2349
|
}, z.core.$strip>>;
|
|
2304
2350
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2305
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2351
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2306
2352
|
"on-demand": "on-demand";
|
|
2307
2353
|
spot: "spot";
|
|
2308
|
-
}
|
|
2309
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2354
|
+
}>>>>;
|
|
2355
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2310
2356
|
amd64: "amd64";
|
|
2311
2357
|
arm64: "arm64";
|
|
2312
|
-
}
|
|
2358
|
+
}>>>>;
|
|
2313
2359
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2314
2360
|
p3: "p3";
|
|
2315
2361
|
cx: "cx";
|
|
@@ -2537,10 +2583,10 @@ export declare const zCreateFleetBody: z.ZodObject<{
|
|
|
2537
2583
|
"us-west4": "us-west4";
|
|
2538
2584
|
}>>>;
|
|
2539
2585
|
}, z.core.$strip>>;
|
|
2540
|
-
scalingProfile: z.ZodOptional<z.ZodEnum<{
|
|
2586
|
+
scalingProfile: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
2541
2587
|
aggressive: "aggressive";
|
|
2542
2588
|
conservative: "conservative";
|
|
2543
|
-
}
|
|
2589
|
+
}>>>;
|
|
2544
2590
|
id: z.ZodString;
|
|
2545
2591
|
}, z.core.$strip>;
|
|
2546
2592
|
export declare const zCreateFleetPath: z.ZodObject<{
|
|
@@ -2567,29 +2613,29 @@ export declare const zGetFleetPath: z.ZodObject<{
|
|
|
2567
2613
|
*/
|
|
2568
2614
|
export declare const zGetFleetResponse: z.ZodObject<{
|
|
2569
2615
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2570
|
-
cpu: z.ZodOptional<z.
|
|
2616
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2571
2617
|
}, z.core.$strip>>;
|
|
2572
2618
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2573
|
-
enabled: z.
|
|
2574
|
-
project: z.ZodString
|
|
2619
|
+
enabled: z.ZodBoolean;
|
|
2620
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2575
2621
|
}, z.core.$strip>>;
|
|
2576
2622
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2577
|
-
enabled: z.
|
|
2623
|
+
enabled: z.ZodBoolean;
|
|
2578
2624
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2579
2625
|
}, z.core.$strip>>;
|
|
2580
2626
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2581
|
-
enabled: z.
|
|
2582
|
-
controllerRoleArn: z.ZodString
|
|
2627
|
+
enabled: z.ZodBoolean;
|
|
2628
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2583
2629
|
}, z.core.$strip>>;
|
|
2584
2630
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2585
|
-
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2631
|
+
'karpenter.sh/capacity-type': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2586
2632
|
"on-demand": "on-demand";
|
|
2587
2633
|
spot: "spot";
|
|
2588
|
-
}
|
|
2589
|
-
'kubernetes.io/arch': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2634
|
+
}>>>>;
|
|
2635
|
+
'kubernetes.io/arch': z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2590
2636
|
amd64: "amd64";
|
|
2591
2637
|
arm64: "arm64";
|
|
2592
|
-
}
|
|
2638
|
+
}>>>>;
|
|
2593
2639
|
'cfke.io/instance-family': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2594
2640
|
p3: "p3";
|
|
2595
2641
|
cx: "cx";
|
|
@@ -2817,27 +2863,31 @@ export declare const zGetFleetResponse: z.ZodObject<{
|
|
|
2817
2863
|
"us-west4": "us-west4";
|
|
2818
2864
|
}>>>;
|
|
2819
2865
|
}, z.core.$strip>>;
|
|
2820
|
-
scalingProfile: z.
|
|
2866
|
+
scalingProfile: z.ZodDefault<z.ZodEnum<{
|
|
2821
2867
|
aggressive: "aggressive";
|
|
2822
2868
|
conservative: "conservative";
|
|
2823
2869
|
}>>;
|
|
2824
2870
|
id: z.ZodString;
|
|
2871
|
+
ready: z.ZodBoolean;
|
|
2872
|
+
status_message: z.ZodOptional<z.ZodString>;
|
|
2873
|
+
created_at: z.ZodString;
|
|
2874
|
+
updated_at: z.ZodString;
|
|
2825
2875
|
}, z.core.$strip>;
|
|
2826
2876
|
export declare const zUpdateFleetBody: z.ZodObject<{
|
|
2827
2877
|
limits: z.ZodOptional<z.ZodObject<{
|
|
2828
|
-
cpu: z.ZodOptional<z.
|
|
2878
|
+
cpu: z.ZodOptional<z.ZodInt>;
|
|
2829
2879
|
}, z.core.$strip>>;
|
|
2830
2880
|
gcp: z.ZodOptional<z.ZodObject<{
|
|
2831
|
-
enabled: z.
|
|
2832
|
-
project: z.ZodString
|
|
2881
|
+
enabled: z.ZodBoolean;
|
|
2882
|
+
project: z.ZodOptional<z.ZodString>;
|
|
2833
2883
|
}, z.core.$strip>>;
|
|
2834
2884
|
hetzner: z.ZodOptional<z.ZodObject<{
|
|
2835
|
-
enabled: z.
|
|
2885
|
+
enabled: z.ZodBoolean;
|
|
2836
2886
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
2837
2887
|
}, z.core.$strip>>;
|
|
2838
2888
|
aws: z.ZodOptional<z.ZodObject<{
|
|
2839
|
-
enabled: z.
|
|
2840
|
-
controllerRoleArn: z.ZodString
|
|
2889
|
+
enabled: z.ZodBoolean;
|
|
2890
|
+
controllerRoleArn: z.ZodOptional<z.ZodString>;
|
|
2841
2891
|
}, z.core.$strip>>;
|
|
2842
2892
|
constraints: z.ZodOptional<z.ZodObject<{
|
|
2843
2893
|
'karpenter.sh/capacity-type': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
@@ -3075,10 +3125,10 @@ export declare const zUpdateFleetBody: z.ZodObject<{
|
|
|
3075
3125
|
"us-west4": "us-west4";
|
|
3076
3126
|
}>>>;
|
|
3077
3127
|
}, z.core.$strip>>;
|
|
3078
|
-
scalingProfile: z.
|
|
3128
|
+
scalingProfile: z.ZodEnum<{
|
|
3079
3129
|
aggressive: "aggressive";
|
|
3080
3130
|
conservative: "conservative";
|
|
3081
|
-
}
|
|
3131
|
+
}>;
|
|
3082
3132
|
}, z.core.$strip>;
|
|
3083
3133
|
export declare const zUpdateFleetPath: z.ZodObject<{
|
|
3084
3134
|
cluster_id: z.ZodString;
|
|
@@ -3100,17 +3150,31 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3100
3150
|
basic: "basic";
|
|
3101
3151
|
pro: "pro";
|
|
3102
3152
|
}>;
|
|
3103
|
-
region: z.
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3153
|
+
region: z.ZodString;
|
|
3154
|
+
networking: z.ZodOptional<z.ZodObject<{
|
|
3155
|
+
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3156
|
+
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3157
|
+
cluster_dns: z.ZodOptional<z.ZodString>;
|
|
3158
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3159
|
+
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3160
|
+
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3161
|
+
}, z.core.$strip>>;
|
|
3162
|
+
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3163
|
+
stable: "stable";
|
|
3164
|
+
rapid: "rapid";
|
|
3165
|
+
extended: "extended";
|
|
3166
|
+
}>>;
|
|
3167
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
3168
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
3169
|
+
none: "none";
|
|
3170
|
+
mps: "mps";
|
|
3171
|
+
time_slicing: "time_slicing";
|
|
3172
|
+
}>;
|
|
3173
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
3174
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3175
|
+
}, z.core.$strip>>;
|
|
3109
3176
|
id: z.ZodUUID;
|
|
3110
3177
|
status: z.ZodEnum<{
|
|
3111
|
-
deleted: "deleted";
|
|
3112
|
-
failed: "failed";
|
|
3113
|
-
active: "active";
|
|
3114
3178
|
disabled: "disabled";
|
|
3115
3179
|
creating: "creating";
|
|
3116
3180
|
deployed: "deployed";
|
|
@@ -3119,6 +3183,9 @@ export declare const zListClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3119
3183
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3120
3184
|
"": "";
|
|
3121
3185
|
}>]>>;
|
|
3186
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3187
|
+
"": "";
|
|
3188
|
+
}>]>>;
|
|
3122
3189
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3123
3190
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3124
3191
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -3132,18 +3199,30 @@ export declare const zCreateClusterBody: z.ZodObject<{
|
|
|
3132
3199
|
basic: "basic";
|
|
3133
3200
|
pro: "pro";
|
|
3134
3201
|
}>;
|
|
3135
|
-
region: z.
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
version_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3142
|
-
"1.x.x-cfke.x": "1.x.x-cfke.x";
|
|
3143
|
-
"1.31.x-cfke.x": "1.31.x-cfke.x";
|
|
3144
|
-
"1.32.x-cfke.x": "1.32.x-cfke.x";
|
|
3145
|
-
"1.33.x-cfke.x": "1.33.x-cfke.x";
|
|
3202
|
+
region: z.ZodString;
|
|
3203
|
+
version_channel: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
3204
|
+
release_channel: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3205
|
+
stable: "stable";
|
|
3206
|
+
rapid: "rapid";
|
|
3207
|
+
extended: "extended";
|
|
3146
3208
|
}>>>;
|
|
3209
|
+
features: z.ZodDefault<z.ZodOptional<z.ZodObject<{
|
|
3210
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
3211
|
+
none: "none";
|
|
3212
|
+
mps: "mps";
|
|
3213
|
+
time_slicing: "time_slicing";
|
|
3214
|
+
}>;
|
|
3215
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
3216
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3217
|
+
}, z.core.$strip>>>;
|
|
3218
|
+
networking: z.ZodOptional<z.ZodObject<{
|
|
3219
|
+
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3220
|
+
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3221
|
+
cluster_dns: z.ZodOptional<z.ZodString>;
|
|
3222
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3223
|
+
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3224
|
+
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3225
|
+
}, z.core.$strip>>;
|
|
3147
3226
|
}, z.core.$strip>;
|
|
3148
3227
|
/**
|
|
3149
3228
|
* Successfully created. Returns created Cluster ID.
|
|
@@ -3153,7 +3232,7 @@ export declare const zDeleteClusterPath: z.ZodObject<{
|
|
|
3153
3232
|
cluster_id: z.ZodString;
|
|
3154
3233
|
}, z.core.$strip>;
|
|
3155
3234
|
/**
|
|
3156
|
-
* Successfully deleted.
|
|
3235
|
+
* Successfully deleted. The cluster has been torn down.
|
|
3157
3236
|
*/
|
|
3158
3237
|
export declare const zDeleteClusterResponse: z.ZodString;
|
|
3159
3238
|
export declare const zGetClusterPath: z.ZodObject<{
|
|
@@ -3168,17 +3247,31 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
3168
3247
|
basic: "basic";
|
|
3169
3248
|
pro: "pro";
|
|
3170
3249
|
}>;
|
|
3171
|
-
region: z.
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3250
|
+
region: z.ZodString;
|
|
3251
|
+
networking: z.ZodOptional<z.ZodObject<{
|
|
3252
|
+
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3253
|
+
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3254
|
+
cluster_dns: z.ZodOptional<z.ZodString>;
|
|
3255
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3256
|
+
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3257
|
+
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3258
|
+
}, z.core.$strip>>;
|
|
3259
|
+
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3260
|
+
stable: "stable";
|
|
3261
|
+
rapid: "rapid";
|
|
3262
|
+
extended: "extended";
|
|
3263
|
+
}>>;
|
|
3264
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
3265
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
3266
|
+
none: "none";
|
|
3267
|
+
mps: "mps";
|
|
3268
|
+
time_slicing: "time_slicing";
|
|
3269
|
+
}>;
|
|
3270
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
3271
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3272
|
+
}, z.core.$strip>>;
|
|
3177
3273
|
id: z.ZodUUID;
|
|
3178
3274
|
status: z.ZodEnum<{
|
|
3179
|
-
deleted: "deleted";
|
|
3180
|
-
failed: "failed";
|
|
3181
|
-
active: "active";
|
|
3182
3275
|
disabled: "disabled";
|
|
3183
3276
|
creating: "creating";
|
|
3184
3277
|
deployed: "deployed";
|
|
@@ -3187,6 +3280,9 @@ export declare const zGetClusterResponse: z.ZodObject<{
|
|
|
3187
3280
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3188
3281
|
"": "";
|
|
3189
3282
|
}>]>>;
|
|
3283
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3284
|
+
"": "";
|
|
3285
|
+
}>]>>;
|
|
3190
3286
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3191
3287
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3192
3288
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -3201,6 +3297,20 @@ export declare const zUpdateClusterBody: z.ZodObject<{
|
|
|
3201
3297
|
pro: "pro";
|
|
3202
3298
|
}>;
|
|
3203
3299
|
version_channel: z.ZodOptional<z.ZodString>;
|
|
3300
|
+
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3301
|
+
stable: "stable";
|
|
3302
|
+
rapid: "rapid";
|
|
3303
|
+
extended: "extended";
|
|
3304
|
+
}>>;
|
|
3305
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
3306
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
3307
|
+
none: "none";
|
|
3308
|
+
mps: "mps";
|
|
3309
|
+
time_slicing: "time_slicing";
|
|
3310
|
+
}>;
|
|
3311
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
3312
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3313
|
+
}, z.core.$strip>>;
|
|
3204
3314
|
}, z.core.$strip>;
|
|
3205
3315
|
export declare const zUpdateClusterPath: z.ZodObject<{
|
|
3206
3316
|
cluster_id: z.ZodString;
|
|
@@ -3214,17 +3324,31 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
3214
3324
|
basic: "basic";
|
|
3215
3325
|
pro: "pro";
|
|
3216
3326
|
}>;
|
|
3217
|
-
region: z.
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3327
|
+
region: z.ZodString;
|
|
3328
|
+
networking: z.ZodOptional<z.ZodObject<{
|
|
3329
|
+
pod_cidr: z.ZodOptional<z.ZodString>;
|
|
3330
|
+
service_cidr: z.ZodOptional<z.ZodString>;
|
|
3331
|
+
cluster_dns: z.ZodOptional<z.ZodString>;
|
|
3332
|
+
dual_stack: z.ZodOptional<z.ZodBoolean>;
|
|
3333
|
+
pod_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3334
|
+
service_cidr_v6: z.ZodOptional<z.ZodString>;
|
|
3335
|
+
}, z.core.$strip>>;
|
|
3336
|
+
release_channel: z.ZodOptional<z.ZodEnum<{
|
|
3337
|
+
stable: "stable";
|
|
3338
|
+
rapid: "rapid";
|
|
3339
|
+
extended: "extended";
|
|
3340
|
+
}>>;
|
|
3341
|
+
features: z.ZodOptional<z.ZodObject<{
|
|
3342
|
+
gpu_sharing_strategy: z.ZodEnum<{
|
|
3343
|
+
none: "none";
|
|
3344
|
+
mps: "mps";
|
|
3345
|
+
time_slicing: "time_slicing";
|
|
3346
|
+
}>;
|
|
3347
|
+
gpu_max_shared_clients_per_gpu: z.ZodInt;
|
|
3348
|
+
cilium_socket_lb_host_namespace_only: z.ZodOptional<z.ZodBoolean>;
|
|
3349
|
+
}, z.core.$strip>>;
|
|
3223
3350
|
id: z.ZodUUID;
|
|
3224
3351
|
status: z.ZodEnum<{
|
|
3225
|
-
deleted: "deleted";
|
|
3226
|
-
failed: "failed";
|
|
3227
|
-
active: "active";
|
|
3228
3352
|
disabled: "disabled";
|
|
3229
3353
|
creating: "creating";
|
|
3230
3354
|
deployed: "deployed";
|
|
@@ -3233,6 +3357,9 @@ export declare const zUpdateClusterResponse: z.ZodObject<{
|
|
|
3233
3357
|
endpoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3234
3358
|
"": "";
|
|
3235
3359
|
}>]>>;
|
|
3360
|
+
endpoint_public: z.ZodOptional<z.ZodUnion<readonly [z.ZodURL, z.ZodEnum<{
|
|
3361
|
+
"": "";
|
|
3362
|
+
}>]>>;
|
|
3236
3363
|
certificate_ca: z.ZodOptional<z.ZodString>;
|
|
3237
3364
|
version_current: z.ZodOptional<z.ZodString>;
|
|
3238
3365
|
created_at: z.ZodOptional<z.ZodString>;
|
|
@@ -3250,6 +3377,7 @@ export declare const zGetJoinInformationResponse: z.ZodObject<{
|
|
|
3250
3377
|
certificate_authority: z.ZodString;
|
|
3251
3378
|
endpoint: z.ZodURL;
|
|
3252
3379
|
cluster_dns: z.ZodString;
|
|
3380
|
+
pod_cidr: z.ZodString;
|
|
3253
3381
|
auth_key: z.ZodString;
|
|
3254
3382
|
bootstrap_token: z.ZodString;
|
|
3255
3383
|
versions: z.ZodObject<{
|
|
@@ -3273,9 +3401,17 @@ export declare const zListInvitesResponse: z.ZodArray<z.ZodObject<{
|
|
|
3273
3401
|
date_created: z.ZodISODateTime;
|
|
3274
3402
|
email: z.ZodOptional<z.ZodEmail>;
|
|
3275
3403
|
code: z.ZodOptional<z.ZodString>;
|
|
3404
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3405
|
+
Administrator: "Administrator";
|
|
3406
|
+
User: "User";
|
|
3407
|
+
}>>>;
|
|
3276
3408
|
}, z.core.$strip>>;
|
|
3277
3409
|
export declare const zCreateInviteBody: z.ZodObject<{
|
|
3278
|
-
email: z.
|
|
3410
|
+
email: z.ZodEmail;
|
|
3411
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3412
|
+
Administrator: "Administrator";
|
|
3413
|
+
User: "User";
|
|
3414
|
+
}>>>;
|
|
3279
3415
|
}, z.core.$strip>;
|
|
3280
3416
|
/**
|
|
3281
3417
|
* Successfully created. Returns created invite details.
|
|
@@ -3286,22 +3422,23 @@ export declare const zCreateInviteResponse: z.ZodObject<{
|
|
|
3286
3422
|
date_created: z.ZodISODateTime;
|
|
3287
3423
|
email: z.ZodOptional<z.ZodEmail>;
|
|
3288
3424
|
code: z.ZodOptional<z.ZodString>;
|
|
3425
|
+
role: z.ZodDefault<z.ZodOptional<z.ZodEnum<{
|
|
3426
|
+
Administrator: "Administrator";
|
|
3427
|
+
User: "User";
|
|
3428
|
+
}>>>;
|
|
3289
3429
|
}, z.core.$strip>;
|
|
3290
3430
|
export declare const zGetInvitePath: z.ZodObject<{
|
|
3291
3431
|
code: z.ZodString;
|
|
3292
3432
|
}, z.core.$strip>;
|
|
3293
3433
|
/**
|
|
3294
|
-
* Returns
|
|
3434
|
+
* The invitation code is valid. Returns the invited email and organization.
|
|
3295
3435
|
*/
|
|
3296
3436
|
export declare const zGetInviteResponse: z.ZodObject<{
|
|
3297
|
-
id: z.ZodOptional<z.ZodString>;
|
|
3298
|
-
organization_id: z.ZodOptional<z.ZodUUID>;
|
|
3299
|
-
date_created: z.ZodISODateTime;
|
|
3300
3437
|
email: z.ZodOptional<z.ZodEmail>;
|
|
3301
|
-
|
|
3438
|
+
organization_id: z.ZodOptional<z.ZodString>;
|
|
3302
3439
|
}, z.core.$strip>;
|
|
3303
3440
|
export declare const zDeleteInvitePath: z.ZodObject<{
|
|
3304
|
-
email: z.
|
|
3441
|
+
email: z.ZodEmail;
|
|
3305
3442
|
}, z.core.$strip>;
|
|
3306
3443
|
/**
|
|
3307
3444
|
* An array of chart listings in the marketplace.
|
|
@@ -3366,6 +3503,10 @@ export declare const zPostMcpResponse: z.ZodObject<{
|
|
|
3366
3503
|
export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
3367
3504
|
id: z.ZodUUID;
|
|
3368
3505
|
name: z.ZodOptional<z.ZodString>;
|
|
3506
|
+
type: z.ZodEnum<{
|
|
3507
|
+
business: "business";
|
|
3508
|
+
personal: "personal";
|
|
3509
|
+
}>;
|
|
3369
3510
|
date_created: z.ZodISODateTime;
|
|
3370
3511
|
quota: z.ZodObject<{
|
|
3371
3512
|
basic_clusters_max: z.ZodInt;
|
|
@@ -3386,14 +3527,30 @@ export declare const zGetOrganizationResponse: z.ZodObject<{
|
|
|
3386
3527
|
closed: "closed";
|
|
3387
3528
|
suspended: "suspended";
|
|
3388
3529
|
}>;
|
|
3530
|
+
verification: z.ZodEnum<{
|
|
3531
|
+
none: "none";
|
|
3532
|
+
submitted: "submitted";
|
|
3533
|
+
verified: "verified";
|
|
3534
|
+
}>;
|
|
3389
3535
|
}, z.core.$strip>;
|
|
3390
3536
|
export declare const zCreateOrganizationBody: z.ZodObject<{
|
|
3537
|
+
type: z.ZodEnum<{
|
|
3538
|
+
business: "business";
|
|
3539
|
+
personal: "personal";
|
|
3540
|
+
}>;
|
|
3391
3541
|
email: z.ZodEmail;
|
|
3392
3542
|
first_name: z.ZodString;
|
|
3393
3543
|
last_name: z.ZodString;
|
|
3394
3544
|
company_name: z.ZodString;
|
|
3395
3545
|
password: z.ZodString;
|
|
3396
3546
|
}, z.core.$strip>;
|
|
3547
|
+
/**
|
|
3548
|
+
* Organization signup accepted. Returns the generated organization id immediately; provisioning (billing, Keycloak realm, user) continues asynchronously in the background.
|
|
3549
|
+
*
|
|
3550
|
+
*/
|
|
3551
|
+
export declare const zCreateOrganizationResponse: z.ZodObject<{
|
|
3552
|
+
id: z.ZodString;
|
|
3553
|
+
}, z.core.$strip>;
|
|
3397
3554
|
/**
|
|
3398
3555
|
* List of repositories
|
|
3399
3556
|
*/
|
|
@@ -3783,14 +3940,6 @@ export declare const zCreateUserBody: z.ZodObject<{
|
|
|
3783
3940
|
last_name: z.ZodString;
|
|
3784
3941
|
code: z.ZodString;
|
|
3785
3942
|
password: z.ZodString;
|
|
3786
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
3787
|
-
active: "active";
|
|
3788
|
-
inactive: "inactive";
|
|
3789
|
-
}>>;
|
|
3790
|
-
role: z.ZodOptional<z.ZodEnum<{
|
|
3791
|
-
Administrator: "Administrator";
|
|
3792
|
-
User: "User";
|
|
3793
|
-
}>>;
|
|
3794
3943
|
}, z.core.$strip>;
|
|
3795
3944
|
/**
|
|
3796
3945
|
* Successfully created. Returns created user details.
|