shoal-web-sdk 1.0.49 → 1.0.51
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/sdk/@tanstack/react-query.gen.d.ts +29 -1
- package/dist/sdk/@tanstack/react-query.gen.js +19 -1
- package/dist/sdk/sdk.gen.d.ts +5 -1
- package/dist/sdk/sdk.gen.js +15 -0
- package/dist/sdk/types.gen.d.ts +101 -1
- package/dist/sdk/zod.gen.d.ts +1204 -13
- package/dist/sdk/zod.gen.js +125 -1
- package/dist/tanstack-codegen/generated/generated.d.ts +4 -1
- package/dist/tanstack-codegen/generated/generated.js +22 -1
- package/package.json +1 -1
package/dist/sdk/zod.gen.d.ts
CHANGED
|
@@ -140,6 +140,28 @@ export declare const zMongoCluster: z.ZodObject<{
|
|
|
140
140
|
mongo_db_version: z.ZodString;
|
|
141
141
|
cluster_type: z.ZodString;
|
|
142
142
|
}, z.core.$strip>;
|
|
143
|
+
/**
|
|
144
|
+
* Billing tier of a MongoDB Atlas organization. "PAID" if the organization has billing set up (a payment method or invoice history), otherwise "FREE".
|
|
145
|
+
*/
|
|
146
|
+
export declare const zMongoTier: z.ZodEnum<{
|
|
147
|
+
FREE: "FREE";
|
|
148
|
+
PAID: "PAID";
|
|
149
|
+
}>;
|
|
150
|
+
/**
|
|
151
|
+
* Billing tier of a MongoDB Atlas organization and the deployment capabilities it unlocks. Atlas has no single account-tier flag; this is derived from the organization's billing/invoice history.
|
|
152
|
+
*/
|
|
153
|
+
export declare const zMongoOrganizationTier: z.ZodObject<{
|
|
154
|
+
org_id: z.ZodString;
|
|
155
|
+
tier: z.ZodEnum<{
|
|
156
|
+
FREE: "FREE";
|
|
157
|
+
PAID: "PAID";
|
|
158
|
+
}>;
|
|
159
|
+
has_billing: z.ZodBoolean;
|
|
160
|
+
pending_amount_cents: z.ZodCoercedBigInt<unknown>;
|
|
161
|
+
can_deploy_free: z.ZodBoolean;
|
|
162
|
+
can_deploy_flex: z.ZodBoolean;
|
|
163
|
+
can_deploy_dedicated: z.ZodBoolean;
|
|
164
|
+
}, z.core.$strip>;
|
|
143
165
|
export declare const zNeonConnectionUri: z.ZodObject<{
|
|
144
166
|
uri: z.ZodString;
|
|
145
167
|
}, z.core.$strip>;
|
|
@@ -676,6 +698,79 @@ export declare const zSchedulerNodeProps: z.ZodObject<{
|
|
|
676
698
|
requestHeaders: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
677
699
|
paused: z.ZodBoolean;
|
|
678
700
|
}, z.core.$strip>;
|
|
701
|
+
export declare const zDesiredStatus: z.ZodEnum<{
|
|
702
|
+
STOPPED: "STOPPED";
|
|
703
|
+
SUSPENDED: "SUSPENDED";
|
|
704
|
+
RUNNING: "RUNNING";
|
|
705
|
+
}>;
|
|
706
|
+
export declare const zDiskType: z.ZodEnum<{
|
|
707
|
+
"pd-standard": "pd-standard";
|
|
708
|
+
"pd-balanced": "pd-balanced";
|
|
709
|
+
"pd-ssd": "pd-ssd";
|
|
710
|
+
"pd-extreme": "pd-extreme";
|
|
711
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
712
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
713
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
714
|
+
}>;
|
|
715
|
+
export declare const zMachineType: z.ZodEnum<{
|
|
716
|
+
"e2-medium": "e2-medium";
|
|
717
|
+
"e2-micro": "e2-micro";
|
|
718
|
+
"e2-small": "e2-small";
|
|
719
|
+
"e2-standard-2": "e2-standard-2";
|
|
720
|
+
"e2-standard-4": "e2-standard-4";
|
|
721
|
+
"e2-standard-8": "e2-standard-8";
|
|
722
|
+
"e2-standard-16": "e2-standard-16";
|
|
723
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
724
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
725
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
726
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
727
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
728
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
729
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
730
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
731
|
+
"n2-standard-2": "n2-standard-2";
|
|
732
|
+
"n2-standard-4": "n2-standard-4";
|
|
733
|
+
"n2-standard-8": "n2-standard-8";
|
|
734
|
+
"n2-standard-16": "n2-standard-16";
|
|
735
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
736
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
737
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
738
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
739
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
740
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
741
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
742
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
743
|
+
}>;
|
|
744
|
+
export declare const zImageVersion: z.ZodEnum<{
|
|
745
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
746
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
747
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
748
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
749
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
750
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
751
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
752
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
753
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
754
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
755
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
756
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
757
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
758
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
759
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
760
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
761
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
762
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
763
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
764
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
765
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
766
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
767
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
768
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
769
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
770
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
771
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
772
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
773
|
+
}>;
|
|
679
774
|
export declare const zRegion: z.ZodEnum<{
|
|
680
775
|
"europe-west2": "europe-west2";
|
|
681
776
|
}>;
|
|
@@ -799,8 +894,102 @@ export declare const zQueueNodeProps: z.ZodObject<{
|
|
|
799
894
|
export declare const zProxyNodeProps: z.ZodObject<{
|
|
800
895
|
subdomain: z.ZodOptional<z.ZodString>;
|
|
801
896
|
}, z.core.$strip>;
|
|
897
|
+
export declare const zBootDiskProps: z.ZodObject<{
|
|
898
|
+
bootDiskType: z.ZodEnum<{
|
|
899
|
+
"pd-standard": "pd-standard";
|
|
900
|
+
"pd-balanced": "pd-balanced";
|
|
901
|
+
"pd-ssd": "pd-ssd";
|
|
902
|
+
"pd-extreme": "pd-extreme";
|
|
903
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
904
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
905
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
906
|
+
}>;
|
|
907
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
908
|
+
hasScratchDisk: z.ZodBoolean;
|
|
909
|
+
}, z.core.$strip>;
|
|
802
910
|
export declare const zVmNodeProps: z.ZodObject<{
|
|
803
|
-
|
|
911
|
+
region: z.ZodString;
|
|
912
|
+
machineType: z.ZodEnum<{
|
|
913
|
+
"e2-medium": "e2-medium";
|
|
914
|
+
"e2-micro": "e2-micro";
|
|
915
|
+
"e2-small": "e2-small";
|
|
916
|
+
"e2-standard-2": "e2-standard-2";
|
|
917
|
+
"e2-standard-4": "e2-standard-4";
|
|
918
|
+
"e2-standard-8": "e2-standard-8";
|
|
919
|
+
"e2-standard-16": "e2-standard-16";
|
|
920
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
921
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
922
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
923
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
924
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
925
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
926
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
927
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
928
|
+
"n2-standard-2": "n2-standard-2";
|
|
929
|
+
"n2-standard-4": "n2-standard-4";
|
|
930
|
+
"n2-standard-8": "n2-standard-8";
|
|
931
|
+
"n2-standard-16": "n2-standard-16";
|
|
932
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
933
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
934
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
935
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
936
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
937
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
938
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
939
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
940
|
+
}>;
|
|
941
|
+
image: z.ZodEnum<{
|
|
942
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
943
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
944
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
945
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
946
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
947
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
948
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
949
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
950
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
951
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
952
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
953
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
954
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
955
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
956
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
957
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
958
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
959
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
960
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
961
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
962
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
963
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
964
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
965
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
966
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
967
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
968
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
969
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
970
|
+
}>;
|
|
971
|
+
desiredStatus: z.ZodEnum<{
|
|
972
|
+
STOPPED: "STOPPED";
|
|
973
|
+
SUSPENDED: "SUSPENDED";
|
|
974
|
+
RUNNING: "RUNNING";
|
|
975
|
+
}>;
|
|
976
|
+
bootDisk: z.ZodObject<{
|
|
977
|
+
bootDiskType: z.ZodEnum<{
|
|
978
|
+
"pd-standard": "pd-standard";
|
|
979
|
+
"pd-balanced": "pd-balanced";
|
|
980
|
+
"pd-ssd": "pd-ssd";
|
|
981
|
+
"pd-extreme": "pd-extreme";
|
|
982
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
983
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
984
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
985
|
+
}>;
|
|
986
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
987
|
+
hasScratchDisk: z.ZodBoolean;
|
|
988
|
+
}, z.core.$strip>;
|
|
989
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
990
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
991
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
992
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
804
993
|
}, z.core.$strip>;
|
|
805
994
|
export declare const zNode: z.ZodObject<{
|
|
806
995
|
id: z.ZodUUID;
|
|
@@ -971,7 +1160,88 @@ export declare const zNode: z.ZodObject<{
|
|
|
971
1160
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
972
1161
|
typ: z.ZodLiteral<"vm">;
|
|
973
1162
|
}, z.core.$strip>, z.ZodObject<{
|
|
974
|
-
|
|
1163
|
+
region: z.ZodString;
|
|
1164
|
+
machineType: z.ZodEnum<{
|
|
1165
|
+
"e2-medium": "e2-medium";
|
|
1166
|
+
"e2-micro": "e2-micro";
|
|
1167
|
+
"e2-small": "e2-small";
|
|
1168
|
+
"e2-standard-2": "e2-standard-2";
|
|
1169
|
+
"e2-standard-4": "e2-standard-4";
|
|
1170
|
+
"e2-standard-8": "e2-standard-8";
|
|
1171
|
+
"e2-standard-16": "e2-standard-16";
|
|
1172
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
1173
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
1174
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
1175
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
1176
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
1177
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
1178
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
1179
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
1180
|
+
"n2-standard-2": "n2-standard-2";
|
|
1181
|
+
"n2-standard-4": "n2-standard-4";
|
|
1182
|
+
"n2-standard-8": "n2-standard-8";
|
|
1183
|
+
"n2-standard-16": "n2-standard-16";
|
|
1184
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
1185
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
1186
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
1187
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
1188
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
1189
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
1190
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
1191
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
1192
|
+
}>;
|
|
1193
|
+
image: z.ZodEnum<{
|
|
1194
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
1195
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
1196
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
1197
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
1198
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
1199
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
1200
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
1201
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
1202
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
1203
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
1204
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
1205
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
1206
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
1207
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
1208
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
1209
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
1210
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
1211
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
1212
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
1213
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
1214
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
1215
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
1216
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
1217
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
1218
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
1219
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
1220
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
1221
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
1222
|
+
}>;
|
|
1223
|
+
desiredStatus: z.ZodEnum<{
|
|
1224
|
+
STOPPED: "STOPPED";
|
|
1225
|
+
SUSPENDED: "SUSPENDED";
|
|
1226
|
+
RUNNING: "RUNNING";
|
|
1227
|
+
}>;
|
|
1228
|
+
bootDisk: z.ZodObject<{
|
|
1229
|
+
bootDiskType: z.ZodEnum<{
|
|
1230
|
+
"pd-standard": "pd-standard";
|
|
1231
|
+
"pd-balanced": "pd-balanced";
|
|
1232
|
+
"pd-ssd": "pd-ssd";
|
|
1233
|
+
"pd-extreme": "pd-extreme";
|
|
1234
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
1235
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
1236
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
1237
|
+
}>;
|
|
1238
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
1239
|
+
hasScratchDisk: z.ZodBoolean;
|
|
1240
|
+
}, z.core.$strip>;
|
|
1241
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
1242
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
1243
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
1244
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
975
1245
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
976
1246
|
typ: z.ZodLiteral<"scheduler">;
|
|
977
1247
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1161,7 +1431,88 @@ export declare const zNodes: z.ZodObject<{
|
|
|
1161
1431
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1162
1432
|
typ: z.ZodLiteral<"vm">;
|
|
1163
1433
|
}, z.core.$strip>, z.ZodObject<{
|
|
1164
|
-
|
|
1434
|
+
region: z.ZodString;
|
|
1435
|
+
machineType: z.ZodEnum<{
|
|
1436
|
+
"e2-medium": "e2-medium";
|
|
1437
|
+
"e2-micro": "e2-micro";
|
|
1438
|
+
"e2-small": "e2-small";
|
|
1439
|
+
"e2-standard-2": "e2-standard-2";
|
|
1440
|
+
"e2-standard-4": "e2-standard-4";
|
|
1441
|
+
"e2-standard-8": "e2-standard-8";
|
|
1442
|
+
"e2-standard-16": "e2-standard-16";
|
|
1443
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
1444
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
1445
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
1446
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
1447
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
1448
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
1449
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
1450
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
1451
|
+
"n2-standard-2": "n2-standard-2";
|
|
1452
|
+
"n2-standard-4": "n2-standard-4";
|
|
1453
|
+
"n2-standard-8": "n2-standard-8";
|
|
1454
|
+
"n2-standard-16": "n2-standard-16";
|
|
1455
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
1456
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
1457
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
1458
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
1459
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
1460
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
1461
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
1462
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
1463
|
+
}>;
|
|
1464
|
+
image: z.ZodEnum<{
|
|
1465
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
1466
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
1467
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
1468
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
1469
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
1470
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
1471
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
1472
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
1473
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
1474
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
1475
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
1476
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
1477
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
1478
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
1479
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
1480
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
1481
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
1482
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
1483
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
1484
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
1485
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
1486
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
1487
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
1488
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
1489
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
1490
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
1491
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
1492
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
1493
|
+
}>;
|
|
1494
|
+
desiredStatus: z.ZodEnum<{
|
|
1495
|
+
STOPPED: "STOPPED";
|
|
1496
|
+
SUSPENDED: "SUSPENDED";
|
|
1497
|
+
RUNNING: "RUNNING";
|
|
1498
|
+
}>;
|
|
1499
|
+
bootDisk: z.ZodObject<{
|
|
1500
|
+
bootDiskType: z.ZodEnum<{
|
|
1501
|
+
"pd-standard": "pd-standard";
|
|
1502
|
+
"pd-balanced": "pd-balanced";
|
|
1503
|
+
"pd-ssd": "pd-ssd";
|
|
1504
|
+
"pd-extreme": "pd-extreme";
|
|
1505
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
1506
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
1507
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
1508
|
+
}>;
|
|
1509
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
1510
|
+
hasScratchDisk: z.ZodBoolean;
|
|
1511
|
+
}, z.core.$strip>;
|
|
1512
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
1513
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
1514
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
1515
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1165
1516
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1166
1517
|
typ: z.ZodLiteral<"scheduler">;
|
|
1167
1518
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1354,7 +1705,88 @@ export declare const zGraph: z.ZodObject<{
|
|
|
1354
1705
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1355
1706
|
typ: z.ZodLiteral<"vm">;
|
|
1356
1707
|
}, z.core.$strip>, z.ZodObject<{
|
|
1357
|
-
|
|
1708
|
+
region: z.ZodString;
|
|
1709
|
+
machineType: z.ZodEnum<{
|
|
1710
|
+
"e2-medium": "e2-medium";
|
|
1711
|
+
"e2-micro": "e2-micro";
|
|
1712
|
+
"e2-small": "e2-small";
|
|
1713
|
+
"e2-standard-2": "e2-standard-2";
|
|
1714
|
+
"e2-standard-4": "e2-standard-4";
|
|
1715
|
+
"e2-standard-8": "e2-standard-8";
|
|
1716
|
+
"e2-standard-16": "e2-standard-16";
|
|
1717
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
1718
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
1719
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
1720
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
1721
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
1722
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
1723
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
1724
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
1725
|
+
"n2-standard-2": "n2-standard-2";
|
|
1726
|
+
"n2-standard-4": "n2-standard-4";
|
|
1727
|
+
"n2-standard-8": "n2-standard-8";
|
|
1728
|
+
"n2-standard-16": "n2-standard-16";
|
|
1729
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
1730
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
1731
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
1732
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
1733
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
1734
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
1735
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
1736
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
1737
|
+
}>;
|
|
1738
|
+
image: z.ZodEnum<{
|
|
1739
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
1740
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
1741
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
1742
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
1743
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
1744
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
1745
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
1746
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
1747
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
1748
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
1749
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
1750
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
1751
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
1752
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
1753
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
1754
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
1755
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
1756
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
1757
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
1758
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
1759
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
1760
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
1761
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
1762
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
1763
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
1764
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
1765
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
1766
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
1767
|
+
}>;
|
|
1768
|
+
desiredStatus: z.ZodEnum<{
|
|
1769
|
+
STOPPED: "STOPPED";
|
|
1770
|
+
SUSPENDED: "SUSPENDED";
|
|
1771
|
+
RUNNING: "RUNNING";
|
|
1772
|
+
}>;
|
|
1773
|
+
bootDisk: z.ZodObject<{
|
|
1774
|
+
bootDiskType: z.ZodEnum<{
|
|
1775
|
+
"pd-standard": "pd-standard";
|
|
1776
|
+
"pd-balanced": "pd-balanced";
|
|
1777
|
+
"pd-ssd": "pd-ssd";
|
|
1778
|
+
"pd-extreme": "pd-extreme";
|
|
1779
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
1780
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
1781
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
1782
|
+
}>;
|
|
1783
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
1784
|
+
hasScratchDisk: z.ZodBoolean;
|
|
1785
|
+
}, z.core.$strip>;
|
|
1786
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
1787
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
1788
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
1789
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1358
1790
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1359
1791
|
typ: z.ZodLiteral<"scheduler">;
|
|
1360
1792
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1552,7 +1984,88 @@ export declare const zBlueprintDetail: z.ZodObject<{
|
|
|
1552
1984
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1553
1985
|
typ: z.ZodLiteral<"vm">;
|
|
1554
1986
|
}, z.core.$strip>, z.ZodObject<{
|
|
1555
|
-
|
|
1987
|
+
region: z.ZodString;
|
|
1988
|
+
machineType: z.ZodEnum<{
|
|
1989
|
+
"e2-medium": "e2-medium";
|
|
1990
|
+
"e2-micro": "e2-micro";
|
|
1991
|
+
"e2-small": "e2-small";
|
|
1992
|
+
"e2-standard-2": "e2-standard-2";
|
|
1993
|
+
"e2-standard-4": "e2-standard-4";
|
|
1994
|
+
"e2-standard-8": "e2-standard-8";
|
|
1995
|
+
"e2-standard-16": "e2-standard-16";
|
|
1996
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
1997
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
1998
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
1999
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
2000
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
2001
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
2002
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
2003
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
2004
|
+
"n2-standard-2": "n2-standard-2";
|
|
2005
|
+
"n2-standard-4": "n2-standard-4";
|
|
2006
|
+
"n2-standard-8": "n2-standard-8";
|
|
2007
|
+
"n2-standard-16": "n2-standard-16";
|
|
2008
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
2009
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
2010
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
2011
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
2012
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
2013
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
2014
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
2015
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
2016
|
+
}>;
|
|
2017
|
+
image: z.ZodEnum<{
|
|
2018
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
2019
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
2020
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
2021
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
2022
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
2023
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
2024
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
2025
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
2026
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
2027
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
2028
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
2029
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
2030
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
2031
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
2032
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
2033
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
2034
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
2035
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
2036
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
2037
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
2038
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
2039
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
2040
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
2041
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
2042
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
2043
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
2044
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
2045
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
2046
|
+
}>;
|
|
2047
|
+
desiredStatus: z.ZodEnum<{
|
|
2048
|
+
STOPPED: "STOPPED";
|
|
2049
|
+
SUSPENDED: "SUSPENDED";
|
|
2050
|
+
RUNNING: "RUNNING";
|
|
2051
|
+
}>;
|
|
2052
|
+
bootDisk: z.ZodObject<{
|
|
2053
|
+
bootDiskType: z.ZodEnum<{
|
|
2054
|
+
"pd-standard": "pd-standard";
|
|
2055
|
+
"pd-balanced": "pd-balanced";
|
|
2056
|
+
"pd-ssd": "pd-ssd";
|
|
2057
|
+
"pd-extreme": "pd-extreme";
|
|
2058
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
2059
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
2060
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
2061
|
+
}>;
|
|
2062
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
2063
|
+
hasScratchDisk: z.ZodBoolean;
|
|
2064
|
+
}, z.core.$strip>;
|
|
2065
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
2066
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
2067
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
2068
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
1556
2069
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
1557
2070
|
typ: z.ZodLiteral<"scheduler">;
|
|
1558
2071
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -1950,6 +2463,10 @@ export declare const zMongoOrganizationId: z.ZodString;
|
|
|
1950
2463
|
* The MongoDB Atlas project (group) ID.
|
|
1951
2464
|
*/
|
|
1952
2465
|
export declare const zMongoProjectIdPath: z.ZodString;
|
|
2466
|
+
/**
|
|
2467
|
+
* The MongoDB Atlas organization ID.
|
|
2468
|
+
*/
|
|
2469
|
+
export declare const zMongoOrganizationIdPath: z.ZodString;
|
|
1953
2470
|
/**
|
|
1954
2471
|
* Optional version UUID to exclude from the environment versions response.
|
|
1955
2472
|
*/
|
|
@@ -2353,7 +2870,88 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
|
|
|
2353
2870
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2354
2871
|
typ: z.ZodLiteral<"vm">;
|
|
2355
2872
|
}, z.core.$strip>, z.ZodObject<{
|
|
2356
|
-
|
|
2873
|
+
region: z.ZodString;
|
|
2874
|
+
machineType: z.ZodEnum<{
|
|
2875
|
+
"e2-medium": "e2-medium";
|
|
2876
|
+
"e2-micro": "e2-micro";
|
|
2877
|
+
"e2-small": "e2-small";
|
|
2878
|
+
"e2-standard-2": "e2-standard-2";
|
|
2879
|
+
"e2-standard-4": "e2-standard-4";
|
|
2880
|
+
"e2-standard-8": "e2-standard-8";
|
|
2881
|
+
"e2-standard-16": "e2-standard-16";
|
|
2882
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
2883
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
2884
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
2885
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
2886
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
2887
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
2888
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
2889
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
2890
|
+
"n2-standard-2": "n2-standard-2";
|
|
2891
|
+
"n2-standard-4": "n2-standard-4";
|
|
2892
|
+
"n2-standard-8": "n2-standard-8";
|
|
2893
|
+
"n2-standard-16": "n2-standard-16";
|
|
2894
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
2895
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
2896
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
2897
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
2898
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
2899
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
2900
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
2901
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
2902
|
+
}>;
|
|
2903
|
+
image: z.ZodEnum<{
|
|
2904
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
2905
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
2906
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
2907
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
2908
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
2909
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
2910
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
2911
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
2912
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
2913
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
2914
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
2915
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
2916
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
2917
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
2918
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
2919
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
2920
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
2921
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
2922
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
2923
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
2924
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
2925
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
2926
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
2927
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
2928
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
2929
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
2930
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
2931
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
2932
|
+
}>;
|
|
2933
|
+
desiredStatus: z.ZodEnum<{
|
|
2934
|
+
STOPPED: "STOPPED";
|
|
2935
|
+
SUSPENDED: "SUSPENDED";
|
|
2936
|
+
RUNNING: "RUNNING";
|
|
2937
|
+
}>;
|
|
2938
|
+
bootDisk: z.ZodObject<{
|
|
2939
|
+
bootDiskType: z.ZodEnum<{
|
|
2940
|
+
"pd-standard": "pd-standard";
|
|
2941
|
+
"pd-balanced": "pd-balanced";
|
|
2942
|
+
"pd-ssd": "pd-ssd";
|
|
2943
|
+
"pd-extreme": "pd-extreme";
|
|
2944
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
2945
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
2946
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
2947
|
+
}>;
|
|
2948
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
2949
|
+
hasScratchDisk: z.ZodBoolean;
|
|
2950
|
+
}, z.core.$strip>;
|
|
2951
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
2952
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
2953
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
2954
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2357
2955
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2358
2956
|
typ: z.ZodLiteral<"scheduler">;
|
|
2359
2957
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2545,7 +3143,88 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
|
|
|
2545
3143
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2546
3144
|
typ: z.ZodLiteral<"vm">;
|
|
2547
3145
|
}, z.core.$strip>, z.ZodObject<{
|
|
2548
|
-
|
|
3146
|
+
region: z.ZodString;
|
|
3147
|
+
machineType: z.ZodEnum<{
|
|
3148
|
+
"e2-medium": "e2-medium";
|
|
3149
|
+
"e2-micro": "e2-micro";
|
|
3150
|
+
"e2-small": "e2-small";
|
|
3151
|
+
"e2-standard-2": "e2-standard-2";
|
|
3152
|
+
"e2-standard-4": "e2-standard-4";
|
|
3153
|
+
"e2-standard-8": "e2-standard-8";
|
|
3154
|
+
"e2-standard-16": "e2-standard-16";
|
|
3155
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
3156
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
3157
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
3158
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
3159
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
3160
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
3161
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
3162
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
3163
|
+
"n2-standard-2": "n2-standard-2";
|
|
3164
|
+
"n2-standard-4": "n2-standard-4";
|
|
3165
|
+
"n2-standard-8": "n2-standard-8";
|
|
3166
|
+
"n2-standard-16": "n2-standard-16";
|
|
3167
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
3168
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
3169
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
3170
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
3171
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
3172
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
3173
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
3174
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
3175
|
+
}>;
|
|
3176
|
+
image: z.ZodEnum<{
|
|
3177
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
3178
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
3179
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
3180
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
3181
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
3182
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
3183
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
3184
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
3185
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
3186
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
3187
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
3188
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
3189
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
3190
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
3191
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
3192
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
3193
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
3194
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
3195
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
3196
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
3197
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
3198
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
3199
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
3200
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
3201
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
3202
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
3203
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
3204
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
3205
|
+
}>;
|
|
3206
|
+
desiredStatus: z.ZodEnum<{
|
|
3207
|
+
STOPPED: "STOPPED";
|
|
3208
|
+
SUSPENDED: "SUSPENDED";
|
|
3209
|
+
RUNNING: "RUNNING";
|
|
3210
|
+
}>;
|
|
3211
|
+
bootDisk: z.ZodObject<{
|
|
3212
|
+
bootDiskType: z.ZodEnum<{
|
|
3213
|
+
"pd-standard": "pd-standard";
|
|
3214
|
+
"pd-balanced": "pd-balanced";
|
|
3215
|
+
"pd-ssd": "pd-ssd";
|
|
3216
|
+
"pd-extreme": "pd-extreme";
|
|
3217
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
3218
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
3219
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
3220
|
+
}>;
|
|
3221
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
3222
|
+
hasScratchDisk: z.ZodBoolean;
|
|
3223
|
+
}, z.core.$strip>;
|
|
3224
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
3225
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
3226
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
3227
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2549
3228
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2550
3229
|
typ: z.ZodLiteral<"scheduler">;
|
|
2551
3230
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2754,7 +3433,88 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
|
|
|
2754
3433
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2755
3434
|
typ: z.ZodLiteral<"vm">;
|
|
2756
3435
|
}, z.core.$strip>, z.ZodObject<{
|
|
2757
|
-
|
|
3436
|
+
region: z.ZodString;
|
|
3437
|
+
machineType: z.ZodEnum<{
|
|
3438
|
+
"e2-medium": "e2-medium";
|
|
3439
|
+
"e2-micro": "e2-micro";
|
|
3440
|
+
"e2-small": "e2-small";
|
|
3441
|
+
"e2-standard-2": "e2-standard-2";
|
|
3442
|
+
"e2-standard-4": "e2-standard-4";
|
|
3443
|
+
"e2-standard-8": "e2-standard-8";
|
|
3444
|
+
"e2-standard-16": "e2-standard-16";
|
|
3445
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
3446
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
3447
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
3448
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
3449
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
3450
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
3451
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
3452
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
3453
|
+
"n2-standard-2": "n2-standard-2";
|
|
3454
|
+
"n2-standard-4": "n2-standard-4";
|
|
3455
|
+
"n2-standard-8": "n2-standard-8";
|
|
3456
|
+
"n2-standard-16": "n2-standard-16";
|
|
3457
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
3458
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
3459
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
3460
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
3461
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
3462
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
3463
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
3464
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
3465
|
+
}>;
|
|
3466
|
+
image: z.ZodEnum<{
|
|
3467
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
3468
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
3469
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
3470
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
3471
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
3472
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
3473
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
3474
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
3475
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
3476
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
3477
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
3478
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
3479
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
3480
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
3481
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
3482
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
3483
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
3484
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
3485
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
3486
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
3487
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
3488
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
3489
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
3490
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
3491
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
3492
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
3493
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
3494
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
3495
|
+
}>;
|
|
3496
|
+
desiredStatus: z.ZodEnum<{
|
|
3497
|
+
STOPPED: "STOPPED";
|
|
3498
|
+
SUSPENDED: "SUSPENDED";
|
|
3499
|
+
RUNNING: "RUNNING";
|
|
3500
|
+
}>;
|
|
3501
|
+
bootDisk: z.ZodObject<{
|
|
3502
|
+
bootDiskType: z.ZodEnum<{
|
|
3503
|
+
"pd-standard": "pd-standard";
|
|
3504
|
+
"pd-balanced": "pd-balanced";
|
|
3505
|
+
"pd-ssd": "pd-ssd";
|
|
3506
|
+
"pd-extreme": "pd-extreme";
|
|
3507
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
3508
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
3509
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
3510
|
+
}>;
|
|
3511
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
3512
|
+
hasScratchDisk: z.ZodBoolean;
|
|
3513
|
+
}, z.core.$strip>;
|
|
3514
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
3515
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
3516
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
3517
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2758
3518
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2759
3519
|
typ: z.ZodLiteral<"scheduler">;
|
|
2760
3520
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -2944,7 +3704,88 @@ export declare const zUpdateNodeM2mData: z.ZodObject<{
|
|
|
2944
3704
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2945
3705
|
typ: z.ZodLiteral<"vm">;
|
|
2946
3706
|
}, z.core.$strip>, z.ZodObject<{
|
|
2947
|
-
|
|
3707
|
+
region: z.ZodString;
|
|
3708
|
+
machineType: z.ZodEnum<{
|
|
3709
|
+
"e2-medium": "e2-medium";
|
|
3710
|
+
"e2-micro": "e2-micro";
|
|
3711
|
+
"e2-small": "e2-small";
|
|
3712
|
+
"e2-standard-2": "e2-standard-2";
|
|
3713
|
+
"e2-standard-4": "e2-standard-4";
|
|
3714
|
+
"e2-standard-8": "e2-standard-8";
|
|
3715
|
+
"e2-standard-16": "e2-standard-16";
|
|
3716
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
3717
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
3718
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
3719
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
3720
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
3721
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
3722
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
3723
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
3724
|
+
"n2-standard-2": "n2-standard-2";
|
|
3725
|
+
"n2-standard-4": "n2-standard-4";
|
|
3726
|
+
"n2-standard-8": "n2-standard-8";
|
|
3727
|
+
"n2-standard-16": "n2-standard-16";
|
|
3728
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
3729
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
3730
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
3731
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
3732
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
3733
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
3734
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
3735
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
3736
|
+
}>;
|
|
3737
|
+
image: z.ZodEnum<{
|
|
3738
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
3739
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
3740
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
3741
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
3742
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
3743
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
3744
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
3745
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
3746
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
3747
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
3748
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
3749
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
3750
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
3751
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
3752
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
3753
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
3754
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
3755
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
3756
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
3757
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
3758
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
3759
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
3760
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
3761
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
3762
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
3763
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
3764
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
3765
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
3766
|
+
}>;
|
|
3767
|
+
desiredStatus: z.ZodEnum<{
|
|
3768
|
+
STOPPED: "STOPPED";
|
|
3769
|
+
SUSPENDED: "SUSPENDED";
|
|
3770
|
+
RUNNING: "RUNNING";
|
|
3771
|
+
}>;
|
|
3772
|
+
bootDisk: z.ZodObject<{
|
|
3773
|
+
bootDiskType: z.ZodEnum<{
|
|
3774
|
+
"pd-standard": "pd-standard";
|
|
3775
|
+
"pd-balanced": "pd-balanced";
|
|
3776
|
+
"pd-ssd": "pd-ssd";
|
|
3777
|
+
"pd-extreme": "pd-extreme";
|
|
3778
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
3779
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
3780
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
3781
|
+
}>;
|
|
3782
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
3783
|
+
hasScratchDisk: z.ZodBoolean;
|
|
3784
|
+
}, z.core.$strip>;
|
|
3785
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
3786
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
3787
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
3788
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
2948
3789
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
2949
3790
|
typ: z.ZodLiteral<"scheduler">;
|
|
2950
3791
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3203,7 +4044,88 @@ export declare const zGetBlueprintM2mResponse: z.ZodObject<{
|
|
|
3203
4044
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3204
4045
|
typ: z.ZodLiteral<"vm">;
|
|
3205
4046
|
}, z.core.$strip>, z.ZodObject<{
|
|
3206
|
-
|
|
4047
|
+
region: z.ZodString;
|
|
4048
|
+
machineType: z.ZodEnum<{
|
|
4049
|
+
"e2-medium": "e2-medium";
|
|
4050
|
+
"e2-micro": "e2-micro";
|
|
4051
|
+
"e2-small": "e2-small";
|
|
4052
|
+
"e2-standard-2": "e2-standard-2";
|
|
4053
|
+
"e2-standard-4": "e2-standard-4";
|
|
4054
|
+
"e2-standard-8": "e2-standard-8";
|
|
4055
|
+
"e2-standard-16": "e2-standard-16";
|
|
4056
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
4057
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
4058
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
4059
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
4060
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
4061
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
4062
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
4063
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
4064
|
+
"n2-standard-2": "n2-standard-2";
|
|
4065
|
+
"n2-standard-4": "n2-standard-4";
|
|
4066
|
+
"n2-standard-8": "n2-standard-8";
|
|
4067
|
+
"n2-standard-16": "n2-standard-16";
|
|
4068
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
4069
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
4070
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
4071
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
4072
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
4073
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
4074
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
4075
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
4076
|
+
}>;
|
|
4077
|
+
image: z.ZodEnum<{
|
|
4078
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
4079
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
4080
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
4081
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
4082
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
4083
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
4084
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
4085
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
4086
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
4087
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
4088
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
4089
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
4090
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
4091
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
4092
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
4093
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
4094
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
4095
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
4096
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
4097
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
4098
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
4099
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
4100
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
4101
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
4102
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
4103
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
4104
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
4105
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
4106
|
+
}>;
|
|
4107
|
+
desiredStatus: z.ZodEnum<{
|
|
4108
|
+
STOPPED: "STOPPED";
|
|
4109
|
+
SUSPENDED: "SUSPENDED";
|
|
4110
|
+
RUNNING: "RUNNING";
|
|
4111
|
+
}>;
|
|
4112
|
+
bootDisk: z.ZodObject<{
|
|
4113
|
+
bootDiskType: z.ZodEnum<{
|
|
4114
|
+
"pd-standard": "pd-standard";
|
|
4115
|
+
"pd-balanced": "pd-balanced";
|
|
4116
|
+
"pd-ssd": "pd-ssd";
|
|
4117
|
+
"pd-extreme": "pd-extreme";
|
|
4118
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
4119
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
4120
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
4121
|
+
}>;
|
|
4122
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
4123
|
+
hasScratchDisk: z.ZodBoolean;
|
|
4124
|
+
}, z.core.$strip>;
|
|
4125
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
4126
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
4127
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
4128
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
3207
4129
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
3208
4130
|
typ: z.ZodLiteral<"scheduler">;
|
|
3209
4131
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -3565,6 +4487,32 @@ export declare const zListMongoClustersResponse: z.ZodArray<z.ZodObject<{
|
|
|
3565
4487
|
mongo_db_version: z.ZodString;
|
|
3566
4488
|
cluster_type: z.ZodString;
|
|
3567
4489
|
}, z.core.$strip>>;
|
|
4490
|
+
export declare const zFetchMongoOrganizationTierData: z.ZodObject<{
|
|
4491
|
+
body: z.ZodOptional<z.ZodNever>;
|
|
4492
|
+
path: z.ZodObject<{
|
|
4493
|
+
orgId: z.ZodString;
|
|
4494
|
+
}, z.core.$strip>;
|
|
4495
|
+
query: z.ZodOptional<z.ZodNever>;
|
|
4496
|
+
headers: z.ZodObject<{
|
|
4497
|
+
'x-mongo-client-id': z.ZodString;
|
|
4498
|
+
'x-mongo-client-secret': z.ZodString;
|
|
4499
|
+
}, z.core.$strip>;
|
|
4500
|
+
}, z.core.$strip>;
|
|
4501
|
+
/**
|
|
4502
|
+
* Organization tier resolved successfully.
|
|
4503
|
+
*/
|
|
4504
|
+
export declare const zFetchMongoOrganizationTierResponse: z.ZodObject<{
|
|
4505
|
+
org_id: z.ZodString;
|
|
4506
|
+
tier: z.ZodEnum<{
|
|
4507
|
+
FREE: "FREE";
|
|
4508
|
+
PAID: "PAID";
|
|
4509
|
+
}>;
|
|
4510
|
+
has_billing: z.ZodBoolean;
|
|
4511
|
+
pending_amount_cents: z.ZodCoercedBigInt<unknown>;
|
|
4512
|
+
can_deploy_free: z.ZodBoolean;
|
|
4513
|
+
can_deploy_flex: z.ZodBoolean;
|
|
4514
|
+
can_deploy_dedicated: z.ZodBoolean;
|
|
4515
|
+
}, z.core.$strip>;
|
|
3568
4516
|
export declare const zFetchNeonConnectionUriData: z.ZodObject<{
|
|
3569
4517
|
body: z.ZodOptional<z.ZodNever>;
|
|
3570
4518
|
path: z.ZodObject<{
|
|
@@ -4017,7 +4965,88 @@ export declare const zPreviewBlueprintResponse: z.ZodObject<{
|
|
|
4017
4965
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4018
4966
|
typ: z.ZodLiteral<"vm">;
|
|
4019
4967
|
}, z.core.$strip>, z.ZodObject<{
|
|
4020
|
-
|
|
4968
|
+
region: z.ZodString;
|
|
4969
|
+
machineType: z.ZodEnum<{
|
|
4970
|
+
"e2-medium": "e2-medium";
|
|
4971
|
+
"e2-micro": "e2-micro";
|
|
4972
|
+
"e2-small": "e2-small";
|
|
4973
|
+
"e2-standard-2": "e2-standard-2";
|
|
4974
|
+
"e2-standard-4": "e2-standard-4";
|
|
4975
|
+
"e2-standard-8": "e2-standard-8";
|
|
4976
|
+
"e2-standard-16": "e2-standard-16";
|
|
4977
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
4978
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
4979
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
4980
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
4981
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
4982
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
4983
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
4984
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
4985
|
+
"n2-standard-2": "n2-standard-2";
|
|
4986
|
+
"n2-standard-4": "n2-standard-4";
|
|
4987
|
+
"n2-standard-8": "n2-standard-8";
|
|
4988
|
+
"n2-standard-16": "n2-standard-16";
|
|
4989
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
4990
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
4991
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
4992
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
4993
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
4994
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
4995
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
4996
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
4997
|
+
}>;
|
|
4998
|
+
image: z.ZodEnum<{
|
|
4999
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
5000
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
5001
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
5002
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
5003
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
5004
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
5005
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
5006
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
5007
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
5008
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
5009
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
5010
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
5011
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
5012
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
5013
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
5014
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
5015
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
5016
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
5017
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
5018
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
5019
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
5020
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
5021
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
5022
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
5023
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
5024
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
5025
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
5026
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
5027
|
+
}>;
|
|
5028
|
+
desiredStatus: z.ZodEnum<{
|
|
5029
|
+
STOPPED: "STOPPED";
|
|
5030
|
+
SUSPENDED: "SUSPENDED";
|
|
5031
|
+
RUNNING: "RUNNING";
|
|
5032
|
+
}>;
|
|
5033
|
+
bootDisk: z.ZodObject<{
|
|
5034
|
+
bootDiskType: z.ZodEnum<{
|
|
5035
|
+
"pd-standard": "pd-standard";
|
|
5036
|
+
"pd-balanced": "pd-balanced";
|
|
5037
|
+
"pd-ssd": "pd-ssd";
|
|
5038
|
+
"pd-extreme": "pd-extreme";
|
|
5039
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
5040
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
5041
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
5042
|
+
}>;
|
|
5043
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
5044
|
+
hasScratchDisk: z.ZodBoolean;
|
|
5045
|
+
}, z.core.$strip>;
|
|
5046
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
5047
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
5048
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
5049
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4021
5050
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4022
5051
|
typ: z.ZodLiteral<"scheduler">;
|
|
4023
5052
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -4982,7 +6011,88 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
|
|
|
4982
6011
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4983
6012
|
typ: z.ZodLiteral<"vm">;
|
|
4984
6013
|
}, z.core.$strip>, z.ZodObject<{
|
|
4985
|
-
|
|
6014
|
+
region: z.ZodString;
|
|
6015
|
+
machineType: z.ZodEnum<{
|
|
6016
|
+
"e2-medium": "e2-medium";
|
|
6017
|
+
"e2-micro": "e2-micro";
|
|
6018
|
+
"e2-small": "e2-small";
|
|
6019
|
+
"e2-standard-2": "e2-standard-2";
|
|
6020
|
+
"e2-standard-4": "e2-standard-4";
|
|
6021
|
+
"e2-standard-8": "e2-standard-8";
|
|
6022
|
+
"e2-standard-16": "e2-standard-16";
|
|
6023
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
6024
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
6025
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
6026
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
6027
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
6028
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
6029
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
6030
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
6031
|
+
"n2-standard-2": "n2-standard-2";
|
|
6032
|
+
"n2-standard-4": "n2-standard-4";
|
|
6033
|
+
"n2-standard-8": "n2-standard-8";
|
|
6034
|
+
"n2-standard-16": "n2-standard-16";
|
|
6035
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
6036
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
6037
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
6038
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
6039
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
6040
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
6041
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
6042
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
6043
|
+
}>;
|
|
6044
|
+
image: z.ZodEnum<{
|
|
6045
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
6046
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
6047
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
6048
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
6049
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
6050
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
6051
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
6052
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
6053
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
6054
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
6055
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
6056
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
6057
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
6058
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
6059
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
6060
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
6061
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
6062
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
6063
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
6064
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
6065
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
6066
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
6067
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
6068
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
6069
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
6070
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
6071
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
6072
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
6073
|
+
}>;
|
|
6074
|
+
desiredStatus: z.ZodEnum<{
|
|
6075
|
+
STOPPED: "STOPPED";
|
|
6076
|
+
SUSPENDED: "SUSPENDED";
|
|
6077
|
+
RUNNING: "RUNNING";
|
|
6078
|
+
}>;
|
|
6079
|
+
bootDisk: z.ZodObject<{
|
|
6080
|
+
bootDiskType: z.ZodEnum<{
|
|
6081
|
+
"pd-standard": "pd-standard";
|
|
6082
|
+
"pd-balanced": "pd-balanced";
|
|
6083
|
+
"pd-ssd": "pd-ssd";
|
|
6084
|
+
"pd-extreme": "pd-extreme";
|
|
6085
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
6086
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
6087
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
6088
|
+
}>;
|
|
6089
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
6090
|
+
hasScratchDisk: z.ZodBoolean;
|
|
6091
|
+
}, z.core.$strip>;
|
|
6092
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
6093
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
6094
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
6095
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
4986
6096
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
4987
6097
|
typ: z.ZodLiteral<"scheduler">;
|
|
4988
6098
|
}, z.core.$strip>, z.ZodObject<{
|
|
@@ -5174,7 +6284,88 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
|
|
|
5174
6284
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
5175
6285
|
typ: z.ZodLiteral<"vm">;
|
|
5176
6286
|
}, z.core.$strip>, z.ZodObject<{
|
|
5177
|
-
|
|
6287
|
+
region: z.ZodString;
|
|
6288
|
+
machineType: z.ZodEnum<{
|
|
6289
|
+
"e2-medium": "e2-medium";
|
|
6290
|
+
"e2-micro": "e2-micro";
|
|
6291
|
+
"e2-small": "e2-small";
|
|
6292
|
+
"e2-standard-2": "e2-standard-2";
|
|
6293
|
+
"e2-standard-4": "e2-standard-4";
|
|
6294
|
+
"e2-standard-8": "e2-standard-8";
|
|
6295
|
+
"e2-standard-16": "e2-standard-16";
|
|
6296
|
+
"e2-highmem-2": "e2-highmem-2";
|
|
6297
|
+
"e2-highmem-4": "e2-highmem-4";
|
|
6298
|
+
"e2-highmem-8": "e2-highmem-8";
|
|
6299
|
+
"e2-highmem-16": "e2-highmem-16";
|
|
6300
|
+
"e2-highcpu-2": "e2-highcpu-2";
|
|
6301
|
+
"e2-highcpu-4": "e2-highcpu-4";
|
|
6302
|
+
"e2-highcpu-8": "e2-highcpu-8";
|
|
6303
|
+
"e2-highcpu-16": "e2-highcpu-16";
|
|
6304
|
+
"n2-standard-2": "n2-standard-2";
|
|
6305
|
+
"n2-standard-4": "n2-standard-4";
|
|
6306
|
+
"n2-standard-8": "n2-standard-8";
|
|
6307
|
+
"n2-standard-16": "n2-standard-16";
|
|
6308
|
+
"n2-highmem-2": "n2-highmem-2";
|
|
6309
|
+
"n2-highmem-4": "n2-highmem-4";
|
|
6310
|
+
"n2-highmem-8": "n2-highmem-8";
|
|
6311
|
+
"n2-highmem-16": "n2-highmem-16";
|
|
6312
|
+
"n2-highcpu-2": "n2-highcpu-2";
|
|
6313
|
+
"n2-highcpu-4": "n2-highcpu-4";
|
|
6314
|
+
"n2-highcpu-8": "n2-highcpu-8";
|
|
6315
|
+
"n2-highcpu-16": "n2-highcpu-16";
|
|
6316
|
+
}>;
|
|
6317
|
+
image: z.ZodEnum<{
|
|
6318
|
+
"debian-cloud/debian-11": "debian-cloud/debian-11";
|
|
6319
|
+
"debian-cloud/debian-12": "debian-cloud/debian-12";
|
|
6320
|
+
"ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
|
|
6321
|
+
"ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
|
|
6322
|
+
"ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
|
|
6323
|
+
"rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
|
|
6324
|
+
"rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
|
|
6325
|
+
"rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
|
|
6326
|
+
"rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
|
|
6327
|
+
"almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
|
|
6328
|
+
"almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
|
|
6329
|
+
"almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
|
|
6330
|
+
"centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
|
|
6331
|
+
"centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
|
|
6332
|
+
"centos-cloud/sles-12": "centos-cloud/sles-12";
|
|
6333
|
+
"suse-cloud/sles-15": "suse-cloud/sles-15";
|
|
6334
|
+
"oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
|
|
6335
|
+
"oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
|
|
6336
|
+
"cos-cloud/cos-stable": "cos-cloud/cos-stable";
|
|
6337
|
+
"cos-cloud/cos-beta": "cos-cloud/cos-beta";
|
|
6338
|
+
"cos-cloud/cos-dev": "cos-cloud/cos-dev";
|
|
6339
|
+
"cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
|
|
6340
|
+
"cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
|
|
6341
|
+
"cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
|
|
6342
|
+
"windows-cloud/windows-2016": "windows-cloud/windows-2016";
|
|
6343
|
+
"windows-cloud/windows-2019": "windows-cloud/windows-2019";
|
|
6344
|
+
"windows-cloud/windows-2022": "windows-cloud/windows-2022";
|
|
6345
|
+
"windows-cloud/windows-2025": "windows-cloud/windows-2025";
|
|
6346
|
+
}>;
|
|
6347
|
+
desiredStatus: z.ZodEnum<{
|
|
6348
|
+
STOPPED: "STOPPED";
|
|
6349
|
+
SUSPENDED: "SUSPENDED";
|
|
6350
|
+
RUNNING: "RUNNING";
|
|
6351
|
+
}>;
|
|
6352
|
+
bootDisk: z.ZodObject<{
|
|
6353
|
+
bootDiskType: z.ZodEnum<{
|
|
6354
|
+
"pd-standard": "pd-standard";
|
|
6355
|
+
"pd-balanced": "pd-balanced";
|
|
6356
|
+
"pd-ssd": "pd-ssd";
|
|
6357
|
+
"pd-extreme": "pd-extreme";
|
|
6358
|
+
"hyperdisk-balanced": "hyperdisk-balanced";
|
|
6359
|
+
"hyperdisk-extreme": "hyperdisk-extreme";
|
|
6360
|
+
"hyperdisk-throughput": "hyperdisk-throughput";
|
|
6361
|
+
}>;
|
|
6362
|
+
bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
|
|
6363
|
+
hasScratchDisk: z.ZodBoolean;
|
|
6364
|
+
}, z.core.$strip>;
|
|
6365
|
+
ephemeral: z.ZodDefault<z.ZodBoolean>;
|
|
6366
|
+
startUpScript: z.ZodOptional<z.ZodString>;
|
|
6367
|
+
dockerComposeFile: z.ZodOptional<z.ZodString>;
|
|
6368
|
+
sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
5178
6369
|
}, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
|
|
5179
6370
|
typ: z.ZodLiteral<"scheduler">;
|
|
5180
6371
|
}, z.core.$strip>, z.ZodObject<{
|