shoal-web-sdk 1.0.52 → 1.0.54

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.
@@ -585,8 +585,8 @@ export type ContainerNodeProps = {
585
585
  };
586
586
  export type DesiredStatus = 'STOPPED' | 'SUSPENDED' | 'RUNNING';
587
587
  export type DiskType = 'pd-standard' | 'pd-balanced' | 'pd-ssd' | 'pd-extreme' | 'hyperdisk-balanced' | 'hyperdisk-extreme' | 'hyperdisk-throughput';
588
- export type MachineType = 'e2-medium' | 'e2-micro' | 'e2-small' | 'e2-standard-2' | 'e2-standard-4' | 'e2-standard-8' | 'e2-standard-16' | 'e2-highmem-2' | 'e2-highmem-4' | 'e2-highmem-8' | 'e2-highmem-16' | 'e2-highcpu-2' | 'e2-highcpu-4' | 'e2-highcpu-8' | 'e2-highcpu-16' | 'n2-standard-2' | 'n2-standard-4' | 'n2-standard-8' | 'n2-standard-16' | 'n2-highmem-2' | 'n2-highmem-4' | 'n2-highmem-8' | 'n2-highmem-16' | 'n2-highcpu-2' | 'n2-highcpu-4' | 'n2-highcpu-8' | 'n2-highcpu-16';
589
- export type ImageVersion = 'debian-cloud/debian-11' | 'debian-cloud/debian-12' | 'ubuntu-os-cloud/ubuntu-2004-lts' | 'ubuntu-os-cloud/ubuntu-2204-lts' | 'ubuntu-os-cloud/ubuntu-2404-lts' | 'rhel-cloud/rhel-8' | 'rhel-cloud/rhel-9' | 'rocky-linux-cloud/rocky-linux-8' | 'rocky-linux-cloud/rocky-linux-9' | 'almalinux-cloud/almalinux-8' | 'almalinux-cloud/almalinux-9' | 'almalinux-cloud/almalinux-10' | 'centos-cloud/centos-stream-9' | 'centos-cloud/centos-stream-10' | 'centos-cloud/sles-12' | 'suse-cloud/sles-15' | 'oracle-linux-cloud/oracle-linux-8' | 'oracle-linux-cloud/oracle-linux-9' | 'cos-cloud/cos-stable' | 'cos-cloud/cos-beta' | 'cos-cloud/cos-dev' | 'cos-cloud/cos-arm64-stable' | 'cos-cloud/cos-arm64-beta' | 'cos-cloud/cos-arm64-dev' | 'windows-cloud/windows-2016' | 'windows-cloud/windows-2019' | 'windows-cloud/windows-2022' | 'windows-cloud/windows-2025';
588
+ export type MachineType = 'e2-micro' | 'e2-small' | 'e2-medium' | 'e2-standard-2' | 'e2-standard-4' | 'e2-standard-8';
589
+ export type ImageVersion = 'debian-cloud/debian-12' | 'debian-cloud/debian-11' | 'ubuntu-os-cloud/ubuntu-2404-lts' | 'ubuntu-os-cloud/ubuntu-2204-lts' | 'cos-cloud/cos-stable' | 'cos-cloud/cos-beta' | 'cos-cloud/cos-arm64-stable' | 'cos-cloud/cos-arm64-beta';
590
590
  export type Region = 'europe-west2';
591
591
  export type Cpu = '1' | '2';
592
592
  export type Memory = '512Mi' | '1Gi' | '2Gi';
@@ -694,18 +694,21 @@ export type BootDiskProps = {
694
694
  bootDiskSizeGb: number;
695
695
  hasScratchDisk: boolean;
696
696
  };
697
+ export type NetworkProtocol = 'tcp' | 'udp' | 'icmp' | 'esp' | 'ah' | 'sctp';
697
698
  export type VmNodeProps = {
698
699
  region: string;
699
700
  machineType: MachineType;
700
701
  image: ImageVersion;
701
702
  desiredStatus: DesiredStatus;
702
703
  bootDisk: BootDiskProps;
703
- ephemeral: boolean;
704
704
  startUpScript?: string;
705
705
  dockerComposeFile?: string;
706
706
  sshKeys?: {
707
707
  [key: string]: string;
708
708
  };
709
+ protocolPorts?: {
710
+ [key: string]: Array<number>;
711
+ };
709
712
  };
710
713
  export type SignedUrlDownloadResponse = {
711
714
  signedUrl: string;
@@ -713,63 +713,22 @@ export declare const zDiskType: z.ZodEnum<{
713
713
  "hyperdisk-throughput": "hyperdisk-throughput";
714
714
  }>;
715
715
  export declare const zMachineType: z.ZodEnum<{
716
- "e2-medium": "e2-medium";
717
716
  "e2-micro": "e2-micro";
718
717
  "e2-small": "e2-small";
718
+ "e2-medium": "e2-medium";
719
719
  "e2-standard-2": "e2-standard-2";
720
720
  "e2-standard-4": "e2-standard-4";
721
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
722
  }>;
744
723
  export declare const zImageVersion: z.ZodEnum<{
745
- "debian-cloud/debian-11": "debian-cloud/debian-11";
746
724
  "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";
725
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
749
726
  "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";
727
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
763
728
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
764
729
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
765
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
766
730
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
767
731
  "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
732
  }>;
774
733
  export declare const zRegion: z.ZodEnum<{
775
734
  "europe-west2": "europe-west2";
@@ -907,66 +866,33 @@ export declare const zBootDiskProps: z.ZodObject<{
907
866
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
908
867
  hasScratchDisk: z.ZodBoolean;
909
868
  }, z.core.$strip>;
869
+ export declare const zNetworkProtocol: z.ZodEnum<{
870
+ tcp: "tcp";
871
+ udp: "udp";
872
+ icmp: "icmp";
873
+ esp: "esp";
874
+ ah: "ah";
875
+ sctp: "sctp";
876
+ }>;
910
877
  export declare const zVmNodeProps: z.ZodObject<{
911
878
  region: z.ZodString;
912
879
  machineType: z.ZodEnum<{
913
- "e2-medium": "e2-medium";
914
880
  "e2-micro": "e2-micro";
915
881
  "e2-small": "e2-small";
882
+ "e2-medium": "e2-medium";
916
883
  "e2-standard-2": "e2-standard-2";
917
884
  "e2-standard-4": "e2-standard-4";
918
885
  "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
886
  }>;
941
887
  image: z.ZodEnum<{
942
- "debian-cloud/debian-11": "debian-cloud/debian-11";
943
888
  "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";
889
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
946
890
  "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";
891
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
960
892
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
961
893
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
962
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
963
894
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
964
895
  "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
896
  }>;
971
897
  desiredStatus: z.ZodEnum<{
972
898
  STOPPED: "STOPPED";
@@ -986,10 +912,10 @@ export declare const zVmNodeProps: z.ZodObject<{
986
912
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
987
913
  hasScratchDisk: z.ZodBoolean;
988
914
  }, z.core.$strip>;
989
- ephemeral: z.ZodDefault<z.ZodBoolean>;
990
915
  startUpScript: z.ZodOptional<z.ZodString>;
991
916
  dockerComposeFile: z.ZodOptional<z.ZodString>;
992
917
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
918
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
993
919
  }, z.core.$strip>;
994
920
  export declare const zNode: z.ZodObject<{
995
921
  id: z.ZodUUID;
@@ -1162,63 +1088,22 @@ export declare const zNode: z.ZodObject<{
1162
1088
  }, z.core.$strip>, z.ZodObject<{
1163
1089
  region: z.ZodString;
1164
1090
  machineType: z.ZodEnum<{
1165
- "e2-medium": "e2-medium";
1166
1091
  "e2-micro": "e2-micro";
1167
1092
  "e2-small": "e2-small";
1093
+ "e2-medium": "e2-medium";
1168
1094
  "e2-standard-2": "e2-standard-2";
1169
1095
  "e2-standard-4": "e2-standard-4";
1170
1096
  "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
1097
  }>;
1193
1098
  image: z.ZodEnum<{
1194
- "debian-cloud/debian-11": "debian-cloud/debian-11";
1195
1099
  "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";
1100
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
1198
1101
  "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";
1102
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
1212
1103
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
1213
1104
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
1214
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
1215
1105
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
1216
1106
  "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
1107
  }>;
1223
1108
  desiredStatus: z.ZodEnum<{
1224
1109
  STOPPED: "STOPPED";
@@ -1238,10 +1123,10 @@ export declare const zNode: z.ZodObject<{
1238
1123
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
1239
1124
  hasScratchDisk: z.ZodBoolean;
1240
1125
  }, z.core.$strip>;
1241
- ephemeral: z.ZodDefault<z.ZodBoolean>;
1242
1126
  startUpScript: z.ZodOptional<z.ZodString>;
1243
1127
  dockerComposeFile: z.ZodOptional<z.ZodString>;
1244
1128
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1129
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
1245
1130
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1246
1131
  typ: z.ZodLiteral<"scheduler">;
1247
1132
  }, z.core.$strip>, z.ZodObject<{
@@ -1433,63 +1318,22 @@ export declare const zNodes: z.ZodObject<{
1433
1318
  }, z.core.$strip>, z.ZodObject<{
1434
1319
  region: z.ZodString;
1435
1320
  machineType: z.ZodEnum<{
1436
- "e2-medium": "e2-medium";
1437
1321
  "e2-micro": "e2-micro";
1438
1322
  "e2-small": "e2-small";
1323
+ "e2-medium": "e2-medium";
1439
1324
  "e2-standard-2": "e2-standard-2";
1440
1325
  "e2-standard-4": "e2-standard-4";
1441
1326
  "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
1327
  }>;
1464
1328
  image: z.ZodEnum<{
1465
- "debian-cloud/debian-11": "debian-cloud/debian-11";
1466
1329
  "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";
1330
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
1469
1331
  "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";
1332
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
1483
1333
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
1484
1334
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
1485
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
1486
1335
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
1487
1336
  "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
1337
  }>;
1494
1338
  desiredStatus: z.ZodEnum<{
1495
1339
  STOPPED: "STOPPED";
@@ -1509,10 +1353,10 @@ export declare const zNodes: z.ZodObject<{
1509
1353
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
1510
1354
  hasScratchDisk: z.ZodBoolean;
1511
1355
  }, z.core.$strip>;
1512
- ephemeral: z.ZodDefault<z.ZodBoolean>;
1513
1356
  startUpScript: z.ZodOptional<z.ZodString>;
1514
1357
  dockerComposeFile: z.ZodOptional<z.ZodString>;
1515
1358
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1359
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
1516
1360
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1517
1361
  typ: z.ZodLiteral<"scheduler">;
1518
1362
  }, z.core.$strip>, z.ZodObject<{
@@ -1707,63 +1551,22 @@ export declare const zGraph: z.ZodObject<{
1707
1551
  }, z.core.$strip>, z.ZodObject<{
1708
1552
  region: z.ZodString;
1709
1553
  machineType: z.ZodEnum<{
1710
- "e2-medium": "e2-medium";
1711
1554
  "e2-micro": "e2-micro";
1712
1555
  "e2-small": "e2-small";
1556
+ "e2-medium": "e2-medium";
1713
1557
  "e2-standard-2": "e2-standard-2";
1714
1558
  "e2-standard-4": "e2-standard-4";
1715
1559
  "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
1560
  }>;
1738
1561
  image: z.ZodEnum<{
1739
- "debian-cloud/debian-11": "debian-cloud/debian-11";
1740
1562
  "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";
1563
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
1743
1564
  "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";
1565
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
1757
1566
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
1758
1567
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
1759
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
1760
1568
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
1761
1569
  "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
1570
  }>;
1768
1571
  desiredStatus: z.ZodEnum<{
1769
1572
  STOPPED: "STOPPED";
@@ -1783,10 +1586,10 @@ export declare const zGraph: z.ZodObject<{
1783
1586
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
1784
1587
  hasScratchDisk: z.ZodBoolean;
1785
1588
  }, z.core.$strip>;
1786
- ephemeral: z.ZodDefault<z.ZodBoolean>;
1787
1589
  startUpScript: z.ZodOptional<z.ZodString>;
1788
1590
  dockerComposeFile: z.ZodOptional<z.ZodString>;
1789
1591
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1592
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
1790
1593
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
1791
1594
  typ: z.ZodLiteral<"scheduler">;
1792
1595
  }, z.core.$strip>, z.ZodObject<{
@@ -1986,63 +1789,22 @@ export declare const zBlueprintDetail: z.ZodObject<{
1986
1789
  }, z.core.$strip>, z.ZodObject<{
1987
1790
  region: z.ZodString;
1988
1791
  machineType: z.ZodEnum<{
1989
- "e2-medium": "e2-medium";
1990
1792
  "e2-micro": "e2-micro";
1991
1793
  "e2-small": "e2-small";
1794
+ "e2-medium": "e2-medium";
1992
1795
  "e2-standard-2": "e2-standard-2";
1993
1796
  "e2-standard-4": "e2-standard-4";
1994
1797
  "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
1798
  }>;
2017
1799
  image: z.ZodEnum<{
2018
- "debian-cloud/debian-11": "debian-cloud/debian-11";
2019
1800
  "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";
1801
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
2022
1802
  "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";
1803
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
2036
1804
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
2037
1805
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
2038
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
2039
1806
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
2040
1807
  "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
1808
  }>;
2047
1809
  desiredStatus: z.ZodEnum<{
2048
1810
  STOPPED: "STOPPED";
@@ -2062,10 +1824,10 @@ export declare const zBlueprintDetail: z.ZodObject<{
2062
1824
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
2063
1825
  hasScratchDisk: z.ZodBoolean;
2064
1826
  }, z.core.$strip>;
2065
- ephemeral: z.ZodDefault<z.ZodBoolean>;
2066
1827
  startUpScript: z.ZodOptional<z.ZodString>;
2067
1828
  dockerComposeFile: z.ZodOptional<z.ZodString>;
2068
1829
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
1830
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
2069
1831
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2070
1832
  typ: z.ZodLiteral<"scheduler">;
2071
1833
  }, z.core.$strip>, z.ZodObject<{
@@ -2883,63 +2645,22 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
2883
2645
  }, z.core.$strip>, z.ZodObject<{
2884
2646
  region: z.ZodString;
2885
2647
  machineType: z.ZodEnum<{
2886
- "e2-medium": "e2-medium";
2887
2648
  "e2-micro": "e2-micro";
2888
2649
  "e2-small": "e2-small";
2650
+ "e2-medium": "e2-medium";
2889
2651
  "e2-standard-2": "e2-standard-2";
2890
2652
  "e2-standard-4": "e2-standard-4";
2891
2653
  "e2-standard-8": "e2-standard-8";
2892
- "e2-standard-16": "e2-standard-16";
2893
- "e2-highmem-2": "e2-highmem-2";
2894
- "e2-highmem-4": "e2-highmem-4";
2895
- "e2-highmem-8": "e2-highmem-8";
2896
- "e2-highmem-16": "e2-highmem-16";
2897
- "e2-highcpu-2": "e2-highcpu-2";
2898
- "e2-highcpu-4": "e2-highcpu-4";
2899
- "e2-highcpu-8": "e2-highcpu-8";
2900
- "e2-highcpu-16": "e2-highcpu-16";
2901
- "n2-standard-2": "n2-standard-2";
2902
- "n2-standard-4": "n2-standard-4";
2903
- "n2-standard-8": "n2-standard-8";
2904
- "n2-standard-16": "n2-standard-16";
2905
- "n2-highmem-2": "n2-highmem-2";
2906
- "n2-highmem-4": "n2-highmem-4";
2907
- "n2-highmem-8": "n2-highmem-8";
2908
- "n2-highmem-16": "n2-highmem-16";
2909
- "n2-highcpu-2": "n2-highcpu-2";
2910
- "n2-highcpu-4": "n2-highcpu-4";
2911
- "n2-highcpu-8": "n2-highcpu-8";
2912
- "n2-highcpu-16": "n2-highcpu-16";
2913
2654
  }>;
2914
2655
  image: z.ZodEnum<{
2915
- "debian-cloud/debian-11": "debian-cloud/debian-11";
2916
2656
  "debian-cloud/debian-12": "debian-cloud/debian-12";
2917
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
2918
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
2657
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
2919
2658
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
2920
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
2921
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
2922
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
2923
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
2924
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
2925
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
2926
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
2927
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
2928
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
2929
- "centos-cloud/sles-12": "centos-cloud/sles-12";
2930
- "suse-cloud/sles-15": "suse-cloud/sles-15";
2931
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
2932
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
2659
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
2933
2660
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
2934
2661
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
2935
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
2936
2662
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
2937
2663
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
2938
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
2939
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
2940
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
2941
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
2942
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
2943
2664
  }>;
2944
2665
  desiredStatus: z.ZodEnum<{
2945
2666
  STOPPED: "STOPPED";
@@ -2959,10 +2680,10 @@ export declare const zFetchGraphM2mResponse: z.ZodObject<{
2959
2680
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
2960
2681
  hasScratchDisk: z.ZodBoolean;
2961
2682
  }, z.core.$strip>;
2962
- ephemeral: z.ZodDefault<z.ZodBoolean>;
2963
2683
  startUpScript: z.ZodOptional<z.ZodString>;
2964
2684
  dockerComposeFile: z.ZodOptional<z.ZodString>;
2965
2685
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2686
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
2966
2687
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
2967
2688
  typ: z.ZodLiteral<"scheduler">;
2968
2689
  }, z.core.$strip>, z.ZodObject<{
@@ -3156,63 +2877,22 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
3156
2877
  }, z.core.$strip>, z.ZodObject<{
3157
2878
  region: z.ZodString;
3158
2879
  machineType: z.ZodEnum<{
3159
- "e2-medium": "e2-medium";
3160
2880
  "e2-micro": "e2-micro";
3161
2881
  "e2-small": "e2-small";
2882
+ "e2-medium": "e2-medium";
3162
2883
  "e2-standard-2": "e2-standard-2";
3163
2884
  "e2-standard-4": "e2-standard-4";
3164
2885
  "e2-standard-8": "e2-standard-8";
3165
- "e2-standard-16": "e2-standard-16";
3166
- "e2-highmem-2": "e2-highmem-2";
3167
- "e2-highmem-4": "e2-highmem-4";
3168
- "e2-highmem-8": "e2-highmem-8";
3169
- "e2-highmem-16": "e2-highmem-16";
3170
- "e2-highcpu-2": "e2-highcpu-2";
3171
- "e2-highcpu-4": "e2-highcpu-4";
3172
- "e2-highcpu-8": "e2-highcpu-8";
3173
- "e2-highcpu-16": "e2-highcpu-16";
3174
- "n2-standard-2": "n2-standard-2";
3175
- "n2-standard-4": "n2-standard-4";
3176
- "n2-standard-8": "n2-standard-8";
3177
- "n2-standard-16": "n2-standard-16";
3178
- "n2-highmem-2": "n2-highmem-2";
3179
- "n2-highmem-4": "n2-highmem-4";
3180
- "n2-highmem-8": "n2-highmem-8";
3181
- "n2-highmem-16": "n2-highmem-16";
3182
- "n2-highcpu-2": "n2-highcpu-2";
3183
- "n2-highcpu-4": "n2-highcpu-4";
3184
- "n2-highcpu-8": "n2-highcpu-8";
3185
- "n2-highcpu-16": "n2-highcpu-16";
3186
2886
  }>;
3187
2887
  image: z.ZodEnum<{
3188
- "debian-cloud/debian-11": "debian-cloud/debian-11";
3189
2888
  "debian-cloud/debian-12": "debian-cloud/debian-12";
3190
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
3191
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
2889
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
3192
2890
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
3193
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
3194
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
3195
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
3196
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
3197
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
3198
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
3199
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
3200
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
3201
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
3202
- "centos-cloud/sles-12": "centos-cloud/sles-12";
3203
- "suse-cloud/sles-15": "suse-cloud/sles-15";
3204
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
3205
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
2891
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3206
2892
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
3207
2893
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
3208
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
3209
2894
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
3210
2895
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
3211
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
3212
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
3213
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
3214
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
3215
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
3216
2896
  }>;
3217
2897
  desiredStatus: z.ZodEnum<{
3218
2898
  STOPPED: "STOPPED";
@@ -3232,10 +2912,10 @@ export declare const zUpdateGraphM2mData: z.ZodObject<{
3232
2912
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
3233
2913
  hasScratchDisk: z.ZodBoolean;
3234
2914
  }, z.core.$strip>;
3235
- ephemeral: z.ZodDefault<z.ZodBoolean>;
3236
2915
  startUpScript: z.ZodOptional<z.ZodString>;
3237
2916
  dockerComposeFile: z.ZodOptional<z.ZodString>;
3238
2917
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
2918
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
3239
2919
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
3240
2920
  typ: z.ZodLiteral<"scheduler">;
3241
2921
  }, z.core.$strip>, z.ZodObject<{
@@ -3446,63 +3126,22 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
3446
3126
  }, z.core.$strip>, z.ZodObject<{
3447
3127
  region: z.ZodString;
3448
3128
  machineType: z.ZodEnum<{
3449
- "e2-medium": "e2-medium";
3450
3129
  "e2-micro": "e2-micro";
3451
3130
  "e2-small": "e2-small";
3131
+ "e2-medium": "e2-medium";
3452
3132
  "e2-standard-2": "e2-standard-2";
3453
3133
  "e2-standard-4": "e2-standard-4";
3454
3134
  "e2-standard-8": "e2-standard-8";
3455
- "e2-standard-16": "e2-standard-16";
3456
- "e2-highmem-2": "e2-highmem-2";
3457
- "e2-highmem-4": "e2-highmem-4";
3458
- "e2-highmem-8": "e2-highmem-8";
3459
- "e2-highmem-16": "e2-highmem-16";
3460
- "e2-highcpu-2": "e2-highcpu-2";
3461
- "e2-highcpu-4": "e2-highcpu-4";
3462
- "e2-highcpu-8": "e2-highcpu-8";
3463
- "e2-highcpu-16": "e2-highcpu-16";
3464
- "n2-standard-2": "n2-standard-2";
3465
- "n2-standard-4": "n2-standard-4";
3466
- "n2-standard-8": "n2-standard-8";
3467
- "n2-standard-16": "n2-standard-16";
3468
- "n2-highmem-2": "n2-highmem-2";
3469
- "n2-highmem-4": "n2-highmem-4";
3470
- "n2-highmem-8": "n2-highmem-8";
3471
- "n2-highmem-16": "n2-highmem-16";
3472
- "n2-highcpu-2": "n2-highcpu-2";
3473
- "n2-highcpu-4": "n2-highcpu-4";
3474
- "n2-highcpu-8": "n2-highcpu-8";
3475
- "n2-highcpu-16": "n2-highcpu-16";
3476
3135
  }>;
3477
3136
  image: z.ZodEnum<{
3478
- "debian-cloud/debian-11": "debian-cloud/debian-11";
3479
3137
  "debian-cloud/debian-12": "debian-cloud/debian-12";
3480
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
3481
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3138
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
3482
3139
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
3483
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
3484
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
3485
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
3486
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
3487
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
3488
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
3489
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
3490
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
3491
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
3492
- "centos-cloud/sles-12": "centos-cloud/sles-12";
3493
- "suse-cloud/sles-15": "suse-cloud/sles-15";
3494
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
3495
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
3140
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3496
3141
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
3497
3142
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
3498
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
3499
3143
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
3500
3144
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
3501
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
3502
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
3503
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
3504
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
3505
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
3506
3145
  }>;
3507
3146
  desiredStatus: z.ZodEnum<{
3508
3147
  STOPPED: "STOPPED";
@@ -3522,10 +3161,10 @@ export declare const zFetchNodeM2mResponse: z.ZodObject<{
3522
3161
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
3523
3162
  hasScratchDisk: z.ZodBoolean;
3524
3163
  }, z.core.$strip>;
3525
- ephemeral: z.ZodDefault<z.ZodBoolean>;
3526
3164
  startUpScript: z.ZodOptional<z.ZodString>;
3527
3165
  dockerComposeFile: z.ZodOptional<z.ZodString>;
3528
3166
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3167
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
3529
3168
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
3530
3169
  typ: z.ZodLiteral<"scheduler">;
3531
3170
  }, z.core.$strip>, z.ZodObject<{
@@ -3717,63 +3356,22 @@ export declare const zUpdateNodeM2mData: z.ZodObject<{
3717
3356
  }, z.core.$strip>, z.ZodObject<{
3718
3357
  region: z.ZodString;
3719
3358
  machineType: z.ZodEnum<{
3720
- "e2-medium": "e2-medium";
3721
3359
  "e2-micro": "e2-micro";
3722
3360
  "e2-small": "e2-small";
3361
+ "e2-medium": "e2-medium";
3723
3362
  "e2-standard-2": "e2-standard-2";
3724
3363
  "e2-standard-4": "e2-standard-4";
3725
3364
  "e2-standard-8": "e2-standard-8";
3726
- "e2-standard-16": "e2-standard-16";
3727
- "e2-highmem-2": "e2-highmem-2";
3728
- "e2-highmem-4": "e2-highmem-4";
3729
- "e2-highmem-8": "e2-highmem-8";
3730
- "e2-highmem-16": "e2-highmem-16";
3731
- "e2-highcpu-2": "e2-highcpu-2";
3732
- "e2-highcpu-4": "e2-highcpu-4";
3733
- "e2-highcpu-8": "e2-highcpu-8";
3734
- "e2-highcpu-16": "e2-highcpu-16";
3735
- "n2-standard-2": "n2-standard-2";
3736
- "n2-standard-4": "n2-standard-4";
3737
- "n2-standard-8": "n2-standard-8";
3738
- "n2-standard-16": "n2-standard-16";
3739
- "n2-highmem-2": "n2-highmem-2";
3740
- "n2-highmem-4": "n2-highmem-4";
3741
- "n2-highmem-8": "n2-highmem-8";
3742
- "n2-highmem-16": "n2-highmem-16";
3743
- "n2-highcpu-2": "n2-highcpu-2";
3744
- "n2-highcpu-4": "n2-highcpu-4";
3745
- "n2-highcpu-8": "n2-highcpu-8";
3746
- "n2-highcpu-16": "n2-highcpu-16";
3747
3365
  }>;
3748
3366
  image: z.ZodEnum<{
3749
- "debian-cloud/debian-11": "debian-cloud/debian-11";
3750
3367
  "debian-cloud/debian-12": "debian-cloud/debian-12";
3751
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
3752
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3368
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
3753
3369
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
3754
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
3755
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
3756
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
3757
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
3758
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
3759
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
3760
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
3761
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
3762
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
3763
- "centos-cloud/sles-12": "centos-cloud/sles-12";
3764
- "suse-cloud/sles-15": "suse-cloud/sles-15";
3765
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
3766
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
3370
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3767
3371
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
3768
3372
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
3769
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
3770
3373
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
3771
3374
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
3772
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
3773
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
3774
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
3775
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
3776
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
3777
3375
  }>;
3778
3376
  desiredStatus: z.ZodEnum<{
3779
3377
  STOPPED: "STOPPED";
@@ -3793,10 +3391,10 @@ export declare const zUpdateNodeM2mData: z.ZodObject<{
3793
3391
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
3794
3392
  hasScratchDisk: z.ZodBoolean;
3795
3393
  }, z.core.$strip>;
3796
- ephemeral: z.ZodDefault<z.ZodBoolean>;
3797
3394
  startUpScript: z.ZodOptional<z.ZodString>;
3798
3395
  dockerComposeFile: z.ZodOptional<z.ZodString>;
3799
3396
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3397
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
3800
3398
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
3801
3399
  typ: z.ZodLiteral<"scheduler">;
3802
3400
  }, z.core.$strip>, z.ZodObject<{
@@ -4057,63 +3655,22 @@ export declare const zGetBlueprintM2mResponse: z.ZodObject<{
4057
3655
  }, z.core.$strip>, z.ZodObject<{
4058
3656
  region: z.ZodString;
4059
3657
  machineType: z.ZodEnum<{
4060
- "e2-medium": "e2-medium";
4061
3658
  "e2-micro": "e2-micro";
4062
3659
  "e2-small": "e2-small";
3660
+ "e2-medium": "e2-medium";
4063
3661
  "e2-standard-2": "e2-standard-2";
4064
3662
  "e2-standard-4": "e2-standard-4";
4065
3663
  "e2-standard-8": "e2-standard-8";
4066
- "e2-standard-16": "e2-standard-16";
4067
- "e2-highmem-2": "e2-highmem-2";
4068
- "e2-highmem-4": "e2-highmem-4";
4069
- "e2-highmem-8": "e2-highmem-8";
4070
- "e2-highmem-16": "e2-highmem-16";
4071
- "e2-highcpu-2": "e2-highcpu-2";
4072
- "e2-highcpu-4": "e2-highcpu-4";
4073
- "e2-highcpu-8": "e2-highcpu-8";
4074
- "e2-highcpu-16": "e2-highcpu-16";
4075
- "n2-standard-2": "n2-standard-2";
4076
- "n2-standard-4": "n2-standard-4";
4077
- "n2-standard-8": "n2-standard-8";
4078
- "n2-standard-16": "n2-standard-16";
4079
- "n2-highmem-2": "n2-highmem-2";
4080
- "n2-highmem-4": "n2-highmem-4";
4081
- "n2-highmem-8": "n2-highmem-8";
4082
- "n2-highmem-16": "n2-highmem-16";
4083
- "n2-highcpu-2": "n2-highcpu-2";
4084
- "n2-highcpu-4": "n2-highcpu-4";
4085
- "n2-highcpu-8": "n2-highcpu-8";
4086
- "n2-highcpu-16": "n2-highcpu-16";
4087
3664
  }>;
4088
3665
  image: z.ZodEnum<{
4089
- "debian-cloud/debian-11": "debian-cloud/debian-11";
4090
3666
  "debian-cloud/debian-12": "debian-cloud/debian-12";
4091
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
4092
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
3667
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
4093
3668
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
4094
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
4095
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
4096
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
4097
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
4098
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
4099
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
4100
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
4101
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
4102
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
4103
- "centos-cloud/sles-12": "centos-cloud/sles-12";
4104
- "suse-cloud/sles-15": "suse-cloud/sles-15";
4105
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
4106
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
3669
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
4107
3670
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
4108
3671
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
4109
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
4110
3672
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
4111
3673
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
4112
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
4113
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
4114
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
4115
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
4116
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
4117
3674
  }>;
4118
3675
  desiredStatus: z.ZodEnum<{
4119
3676
  STOPPED: "STOPPED";
@@ -4133,10 +3690,10 @@ export declare const zGetBlueprintM2mResponse: z.ZodObject<{
4133
3690
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
4134
3691
  hasScratchDisk: z.ZodBoolean;
4135
3692
  }, z.core.$strip>;
4136
- ephemeral: z.ZodDefault<z.ZodBoolean>;
4137
3693
  startUpScript: z.ZodOptional<z.ZodString>;
4138
3694
  dockerComposeFile: z.ZodOptional<z.ZodString>;
4139
3695
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
3696
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
4140
3697
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
4141
3698
  typ: z.ZodLiteral<"scheduler">;
4142
3699
  }, z.core.$strip>, z.ZodObject<{
@@ -4978,63 +4535,22 @@ export declare const zPreviewBlueprintResponse: z.ZodObject<{
4978
4535
  }, z.core.$strip>, z.ZodObject<{
4979
4536
  region: z.ZodString;
4980
4537
  machineType: z.ZodEnum<{
4981
- "e2-medium": "e2-medium";
4982
4538
  "e2-micro": "e2-micro";
4983
4539
  "e2-small": "e2-small";
4540
+ "e2-medium": "e2-medium";
4984
4541
  "e2-standard-2": "e2-standard-2";
4985
4542
  "e2-standard-4": "e2-standard-4";
4986
4543
  "e2-standard-8": "e2-standard-8";
4987
- "e2-standard-16": "e2-standard-16";
4988
- "e2-highmem-2": "e2-highmem-2";
4989
- "e2-highmem-4": "e2-highmem-4";
4990
- "e2-highmem-8": "e2-highmem-8";
4991
- "e2-highmem-16": "e2-highmem-16";
4992
- "e2-highcpu-2": "e2-highcpu-2";
4993
- "e2-highcpu-4": "e2-highcpu-4";
4994
- "e2-highcpu-8": "e2-highcpu-8";
4995
- "e2-highcpu-16": "e2-highcpu-16";
4996
- "n2-standard-2": "n2-standard-2";
4997
- "n2-standard-4": "n2-standard-4";
4998
- "n2-standard-8": "n2-standard-8";
4999
- "n2-standard-16": "n2-standard-16";
5000
- "n2-highmem-2": "n2-highmem-2";
5001
- "n2-highmem-4": "n2-highmem-4";
5002
- "n2-highmem-8": "n2-highmem-8";
5003
- "n2-highmem-16": "n2-highmem-16";
5004
- "n2-highcpu-2": "n2-highcpu-2";
5005
- "n2-highcpu-4": "n2-highcpu-4";
5006
- "n2-highcpu-8": "n2-highcpu-8";
5007
- "n2-highcpu-16": "n2-highcpu-16";
5008
4544
  }>;
5009
4545
  image: z.ZodEnum<{
5010
- "debian-cloud/debian-11": "debian-cloud/debian-11";
5011
4546
  "debian-cloud/debian-12": "debian-cloud/debian-12";
5012
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
5013
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
4547
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
5014
4548
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
5015
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
5016
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
5017
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
5018
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
5019
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
5020
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
5021
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
5022
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
5023
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
5024
- "centos-cloud/sles-12": "centos-cloud/sles-12";
5025
- "suse-cloud/sles-15": "suse-cloud/sles-15";
5026
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
5027
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
4549
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
5028
4550
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
5029
4551
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
5030
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
5031
4552
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
5032
4553
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
5033
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
5034
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
5035
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
5036
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
5037
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
5038
4554
  }>;
5039
4555
  desiredStatus: z.ZodEnum<{
5040
4556
  STOPPED: "STOPPED";
@@ -5054,10 +4570,10 @@ export declare const zPreviewBlueprintResponse: z.ZodObject<{
5054
4570
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
5055
4571
  hasScratchDisk: z.ZodBoolean;
5056
4572
  }, z.core.$strip>;
5057
- ephemeral: z.ZodDefault<z.ZodBoolean>;
5058
4573
  startUpScript: z.ZodOptional<z.ZodString>;
5059
4574
  dockerComposeFile: z.ZodOptional<z.ZodString>;
5060
4575
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
4576
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
5061
4577
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
5062
4578
  typ: z.ZodLiteral<"scheduler">;
5063
4579
  }, z.core.$strip>, z.ZodObject<{
@@ -6037,63 +5553,22 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
6037
5553
  }, z.core.$strip>, z.ZodObject<{
6038
5554
  region: z.ZodString;
6039
5555
  machineType: z.ZodEnum<{
6040
- "e2-medium": "e2-medium";
6041
5556
  "e2-micro": "e2-micro";
6042
5557
  "e2-small": "e2-small";
5558
+ "e2-medium": "e2-medium";
6043
5559
  "e2-standard-2": "e2-standard-2";
6044
5560
  "e2-standard-4": "e2-standard-4";
6045
5561
  "e2-standard-8": "e2-standard-8";
6046
- "e2-standard-16": "e2-standard-16";
6047
- "e2-highmem-2": "e2-highmem-2";
6048
- "e2-highmem-4": "e2-highmem-4";
6049
- "e2-highmem-8": "e2-highmem-8";
6050
- "e2-highmem-16": "e2-highmem-16";
6051
- "e2-highcpu-2": "e2-highcpu-2";
6052
- "e2-highcpu-4": "e2-highcpu-4";
6053
- "e2-highcpu-8": "e2-highcpu-8";
6054
- "e2-highcpu-16": "e2-highcpu-16";
6055
- "n2-standard-2": "n2-standard-2";
6056
- "n2-standard-4": "n2-standard-4";
6057
- "n2-standard-8": "n2-standard-8";
6058
- "n2-standard-16": "n2-standard-16";
6059
- "n2-highmem-2": "n2-highmem-2";
6060
- "n2-highmem-4": "n2-highmem-4";
6061
- "n2-highmem-8": "n2-highmem-8";
6062
- "n2-highmem-16": "n2-highmem-16";
6063
- "n2-highcpu-2": "n2-highcpu-2";
6064
- "n2-highcpu-4": "n2-highcpu-4";
6065
- "n2-highcpu-8": "n2-highcpu-8";
6066
- "n2-highcpu-16": "n2-highcpu-16";
6067
5562
  }>;
6068
5563
  image: z.ZodEnum<{
6069
- "debian-cloud/debian-11": "debian-cloud/debian-11";
6070
5564
  "debian-cloud/debian-12": "debian-cloud/debian-12";
6071
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
6072
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
5565
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
6073
5566
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
6074
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
6075
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
6076
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
6077
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
6078
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
6079
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
6080
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
6081
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
6082
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
6083
- "centos-cloud/sles-12": "centos-cloud/sles-12";
6084
- "suse-cloud/sles-15": "suse-cloud/sles-15";
6085
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
6086
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
5567
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
6087
5568
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
6088
5569
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
6089
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
6090
5570
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
6091
5571
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
6092
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
6093
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
6094
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
6095
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
6096
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
6097
5572
  }>;
6098
5573
  desiredStatus: z.ZodEnum<{
6099
5574
  STOPPED: "STOPPED";
@@ -6113,10 +5588,10 @@ export declare const zGetGraphOverviewResponse: z.ZodObject<{
6113
5588
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
6114
5589
  hasScratchDisk: z.ZodBoolean;
6115
5590
  }, z.core.$strip>;
6116
- ephemeral: z.ZodDefault<z.ZodBoolean>;
6117
5591
  startUpScript: z.ZodOptional<z.ZodString>;
6118
5592
  dockerComposeFile: z.ZodOptional<z.ZodString>;
6119
5593
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5594
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
6120
5595
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
6121
5596
  typ: z.ZodLiteral<"scheduler">;
6122
5597
  }, z.core.$strip>, z.ZodObject<{
@@ -6310,63 +5785,22 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
6310
5785
  }, z.core.$strip>, z.ZodObject<{
6311
5786
  region: z.ZodString;
6312
5787
  machineType: z.ZodEnum<{
6313
- "e2-medium": "e2-medium";
6314
5788
  "e2-micro": "e2-micro";
6315
5789
  "e2-small": "e2-small";
5790
+ "e2-medium": "e2-medium";
6316
5791
  "e2-standard-2": "e2-standard-2";
6317
5792
  "e2-standard-4": "e2-standard-4";
6318
5793
  "e2-standard-8": "e2-standard-8";
6319
- "e2-standard-16": "e2-standard-16";
6320
- "e2-highmem-2": "e2-highmem-2";
6321
- "e2-highmem-4": "e2-highmem-4";
6322
- "e2-highmem-8": "e2-highmem-8";
6323
- "e2-highmem-16": "e2-highmem-16";
6324
- "e2-highcpu-2": "e2-highcpu-2";
6325
- "e2-highcpu-4": "e2-highcpu-4";
6326
- "e2-highcpu-8": "e2-highcpu-8";
6327
- "e2-highcpu-16": "e2-highcpu-16";
6328
- "n2-standard-2": "n2-standard-2";
6329
- "n2-standard-4": "n2-standard-4";
6330
- "n2-standard-8": "n2-standard-8";
6331
- "n2-standard-16": "n2-standard-16";
6332
- "n2-highmem-2": "n2-highmem-2";
6333
- "n2-highmem-4": "n2-highmem-4";
6334
- "n2-highmem-8": "n2-highmem-8";
6335
- "n2-highmem-16": "n2-highmem-16";
6336
- "n2-highcpu-2": "n2-highcpu-2";
6337
- "n2-highcpu-4": "n2-highcpu-4";
6338
- "n2-highcpu-8": "n2-highcpu-8";
6339
- "n2-highcpu-16": "n2-highcpu-16";
6340
5794
  }>;
6341
5795
  image: z.ZodEnum<{
6342
- "debian-cloud/debian-11": "debian-cloud/debian-11";
6343
5796
  "debian-cloud/debian-12": "debian-cloud/debian-12";
6344
- "ubuntu-os-cloud/ubuntu-2004-lts": "ubuntu-os-cloud/ubuntu-2004-lts";
6345
- "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
5797
+ "debian-cloud/debian-11": "debian-cloud/debian-11";
6346
5798
  "ubuntu-os-cloud/ubuntu-2404-lts": "ubuntu-os-cloud/ubuntu-2404-lts";
6347
- "rhel-cloud/rhel-8": "rhel-cloud/rhel-8";
6348
- "rhel-cloud/rhel-9": "rhel-cloud/rhel-9";
6349
- "rocky-linux-cloud/rocky-linux-8": "rocky-linux-cloud/rocky-linux-8";
6350
- "rocky-linux-cloud/rocky-linux-9": "rocky-linux-cloud/rocky-linux-9";
6351
- "almalinux-cloud/almalinux-8": "almalinux-cloud/almalinux-8";
6352
- "almalinux-cloud/almalinux-9": "almalinux-cloud/almalinux-9";
6353
- "almalinux-cloud/almalinux-10": "almalinux-cloud/almalinux-10";
6354
- "centos-cloud/centos-stream-9": "centos-cloud/centos-stream-9";
6355
- "centos-cloud/centos-stream-10": "centos-cloud/centos-stream-10";
6356
- "centos-cloud/sles-12": "centos-cloud/sles-12";
6357
- "suse-cloud/sles-15": "suse-cloud/sles-15";
6358
- "oracle-linux-cloud/oracle-linux-8": "oracle-linux-cloud/oracle-linux-8";
6359
- "oracle-linux-cloud/oracle-linux-9": "oracle-linux-cloud/oracle-linux-9";
5799
+ "ubuntu-os-cloud/ubuntu-2204-lts": "ubuntu-os-cloud/ubuntu-2204-lts";
6360
5800
  "cos-cloud/cos-stable": "cos-cloud/cos-stable";
6361
5801
  "cos-cloud/cos-beta": "cos-cloud/cos-beta";
6362
- "cos-cloud/cos-dev": "cos-cloud/cos-dev";
6363
5802
  "cos-cloud/cos-arm64-stable": "cos-cloud/cos-arm64-stable";
6364
5803
  "cos-cloud/cos-arm64-beta": "cos-cloud/cos-arm64-beta";
6365
- "cos-cloud/cos-arm64-dev": "cos-cloud/cos-arm64-dev";
6366
- "windows-cloud/windows-2016": "windows-cloud/windows-2016";
6367
- "windows-cloud/windows-2019": "windows-cloud/windows-2019";
6368
- "windows-cloud/windows-2022": "windows-cloud/windows-2022";
6369
- "windows-cloud/windows-2025": "windows-cloud/windows-2025";
6370
5804
  }>;
6371
5805
  desiredStatus: z.ZodEnum<{
6372
5806
  STOPPED: "STOPPED";
@@ -6386,10 +5820,10 @@ export declare const zUpdateGraphStateData: z.ZodObject<{
6386
5820
  bootDiskSizeGb: z.ZodCoercedBigInt<unknown>;
6387
5821
  hasScratchDisk: z.ZodBoolean;
6388
5822
  }, z.core.$strip>;
6389
- ephemeral: z.ZodDefault<z.ZodBoolean>;
6390
5823
  startUpScript: z.ZodOptional<z.ZodString>;
6391
5824
  dockerComposeFile: z.ZodOptional<z.ZodString>;
6392
5825
  sshKeys: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
5826
+ protocolPorts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodArray<z.ZodCoercedBigInt<unknown>>>>;
6393
5827
  }, z.core.$strip>>, z.ZodIntersection<z.ZodObject<{
6394
5828
  typ: z.ZodLiteral<"scheduler">;
6395
5829
  }, z.core.$strip>, z.ZodObject<{
@@ -498,63 +498,22 @@ export const zDiskType = z.enum([
498
498
  'hyperdisk-throughput'
499
499
  ]);
500
500
  export const zMachineType = z.enum([
501
- 'e2-medium',
502
501
  'e2-micro',
503
502
  'e2-small',
503
+ 'e2-medium',
504
504
  'e2-standard-2',
505
505
  'e2-standard-4',
506
- 'e2-standard-8',
507
- 'e2-standard-16',
508
- 'e2-highmem-2',
509
- 'e2-highmem-4',
510
- 'e2-highmem-8',
511
- 'e2-highmem-16',
512
- 'e2-highcpu-2',
513
- 'e2-highcpu-4',
514
- 'e2-highcpu-8',
515
- 'e2-highcpu-16',
516
- 'n2-standard-2',
517
- 'n2-standard-4',
518
- 'n2-standard-8',
519
- 'n2-standard-16',
520
- 'n2-highmem-2',
521
- 'n2-highmem-4',
522
- 'n2-highmem-8',
523
- 'n2-highmem-16',
524
- 'n2-highcpu-2',
525
- 'n2-highcpu-4',
526
- 'n2-highcpu-8',
527
- 'n2-highcpu-16'
506
+ 'e2-standard-8'
528
507
  ]);
529
508
  export const zImageVersion = z.enum([
530
- 'debian-cloud/debian-11',
531
509
  'debian-cloud/debian-12',
532
- 'ubuntu-os-cloud/ubuntu-2004-lts',
533
- 'ubuntu-os-cloud/ubuntu-2204-lts',
510
+ 'debian-cloud/debian-11',
534
511
  'ubuntu-os-cloud/ubuntu-2404-lts',
535
- 'rhel-cloud/rhel-8',
536
- 'rhel-cloud/rhel-9',
537
- 'rocky-linux-cloud/rocky-linux-8',
538
- 'rocky-linux-cloud/rocky-linux-9',
539
- 'almalinux-cloud/almalinux-8',
540
- 'almalinux-cloud/almalinux-9',
541
- 'almalinux-cloud/almalinux-10',
542
- 'centos-cloud/centos-stream-9',
543
- 'centos-cloud/centos-stream-10',
544
- 'centos-cloud/sles-12',
545
- 'suse-cloud/sles-15',
546
- 'oracle-linux-cloud/oracle-linux-8',
547
- 'oracle-linux-cloud/oracle-linux-9',
512
+ 'ubuntu-os-cloud/ubuntu-2204-lts',
548
513
  'cos-cloud/cos-stable',
549
514
  'cos-cloud/cos-beta',
550
- 'cos-cloud/cos-dev',
551
515
  'cos-cloud/cos-arm64-stable',
552
- 'cos-cloud/cos-arm64-beta',
553
- 'cos-cloud/cos-arm64-dev',
554
- 'windows-cloud/windows-2016',
555
- 'windows-cloud/windows-2019',
556
- 'windows-cloud/windows-2022',
557
- 'windows-cloud/windows-2025'
516
+ 'cos-cloud/cos-arm64-beta'
558
517
  ]);
559
518
  export const zRegion = z.enum([
560
519
  'europe-west2'
@@ -662,16 +621,24 @@ export const zBootDiskProps = z.object({
662
621
  bootDiskSizeGb: z.coerce.bigint().gte(BigInt(10)),
663
622
  hasScratchDisk: z.boolean()
664
623
  });
624
+ export const zNetworkProtocol = z.enum([
625
+ 'tcp',
626
+ 'udp',
627
+ 'icmp',
628
+ 'esp',
629
+ 'ah',
630
+ 'sctp'
631
+ ]);
665
632
  export const zVmNodeProps = z.object({
666
633
  region: z.string(),
667
634
  machineType: zMachineType,
668
635
  image: zImageVersion,
669
636
  desiredStatus: zDesiredStatus,
670
637
  bootDisk: zBootDiskProps,
671
- ephemeral: z.boolean().default(false),
672
638
  startUpScript: z.optional(z.string()),
673
639
  dockerComposeFile: z.optional(z.string()),
674
- sshKeys: z.optional(z.record(z.string(), z.string()))
640
+ sshKeys: z.optional(z.record(z.string(), z.string())),
641
+ protocolPorts: z.optional(z.record(z.string(), z.array(z.coerce.bigint().gte(BigInt(1)).lte(BigInt(65535)))))
675
642
  });
676
643
  export const zNode = z.object({
677
644
  id: z.uuid(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shoal-web-sdk",
3
- "version": "1.0.52",
3
+ "version": "1.0.54",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "build-hooks": "npx tsx tanstack-codegen/generator.ts",