@cloudfleet/sdk 0.0.1-be6a4aa → 0.0.1-c4175a2

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.
@@ -738,9 +738,6 @@ export const FleetCreateInputSchema = {
738
738
  description: 'CPU limit in cores.'
739
739
  }
740
740
  },
741
- required: [
742
- 'cpu'
743
- ],
744
741
  additionalProperties: false,
745
742
  description: 'Limits define a set of bounds for provisioning capacity.'
746
743
  },
@@ -770,12 +767,9 @@ export const FleetCreateInputSchema = {
770
767
  },
771
768
  apiKey: {
772
769
  type: 'string',
773
- description: 'Hetzner Cloud API key with read / write access'
770
+ description: 'Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.'
774
771
  }
775
772
  },
776
- required: [
777
- 'apiKey'
778
- ],
779
773
  additionalProperties: false
780
774
  },
781
775
  aws: {
@@ -795,6 +789,284 @@ export const FleetCreateInputSchema = {
795
789
  ],
796
790
  additionalProperties: false
797
791
  },
792
+ constraints: {
793
+ type: 'object',
794
+ properties: {
795
+ 'karpenter.sh/capacity-type': {
796
+ type: 'array',
797
+ items: {
798
+ type: 'string',
799
+ enum: [
800
+ 'on-demand',
801
+ 'spot'
802
+ ]
803
+ },
804
+ description: 'Allowed values for `karpenter.sh/capacity-type`.'
805
+ },
806
+ 'kubernetes.io/arch': {
807
+ type: 'array',
808
+ items: {
809
+ type: 'string',
810
+ enum: [
811
+ 'amd64',
812
+ 'arm64'
813
+ ]
814
+ },
815
+ description: 'Allowed values for `kubernetes.io/arch`.'
816
+ },
817
+ 'cfke.io/instance-family': {
818
+ type: 'array',
819
+ items: {
820
+ type: 'string',
821
+ enum: [
822
+ 'a1',
823
+ 'a2',
824
+ 'a3',
825
+ 'a4',
826
+ 'c1',
827
+ 'c2',
828
+ 'c2d',
829
+ 'c3',
830
+ 'c3d',
831
+ 'c4',
832
+ 'c4a',
833
+ 'c4d',
834
+ 'c5',
835
+ 'c5a',
836
+ 'c5ad',
837
+ 'c5d',
838
+ 'c5n',
839
+ 'c6a',
840
+ 'c6g',
841
+ 'c6gd',
842
+ 'c6gn',
843
+ 'c6i',
844
+ 'c6id',
845
+ 'c6in',
846
+ 'c7a',
847
+ 'c7g',
848
+ 'c7gd',
849
+ 'c7gn',
850
+ 'c7i',
851
+ 'c7i-flex',
852
+ 'c8g',
853
+ 'c8gd',
854
+ 'cax',
855
+ 'ccx',
856
+ 'cpx',
857
+ 'cx',
858
+ 'd2',
859
+ 'd3',
860
+ 'd3en',
861
+ 'dl1',
862
+ 'dl2q',
863
+ 'e2',
864
+ 'f1',
865
+ 'f2',
866
+ 'g1',
867
+ 'g2',
868
+ 'g4ad',
869
+ 'g4dn',
870
+ 'g5',
871
+ 'g5g',
872
+ 'g6',
873
+ 'g6e',
874
+ 'gr6',
875
+ 'h1',
876
+ 'h3',
877
+ 'hpc6a',
878
+ 'hpc6id',
879
+ 'hpc7a',
880
+ 'hpc7g',
881
+ 'i2',
882
+ 'i3',
883
+ 'i3en',
884
+ 'i4g',
885
+ 'i4i',
886
+ 'i7i',
887
+ 'i7ie',
888
+ 'i8g',
889
+ 'im4gn',
890
+ 'inf1',
891
+ 'inf2',
892
+ 'is4gen',
893
+ 'm1',
894
+ 'm2',
895
+ 'm3',
896
+ 'm4',
897
+ 'm5',
898
+ 'm5a',
899
+ 'm5ad',
900
+ 'm5d',
901
+ 'm5dn',
902
+ 'm5n',
903
+ 'm5zn',
904
+ 'm6a',
905
+ 'm6g',
906
+ 'm6gd',
907
+ 'm6i',
908
+ 'm6id',
909
+ 'm6idn',
910
+ 'm6in',
911
+ 'm7a',
912
+ 'm7g',
913
+ 'm7gd',
914
+ 'm7i',
915
+ 'm7i-flex',
916
+ 'm8g',
917
+ 'm8gd',
918
+ 'n1',
919
+ 'n2',
920
+ 'n2d',
921
+ 'n4',
922
+ 'p3',
923
+ 'p3dn',
924
+ 'p4d',
925
+ 'p4de',
926
+ 'p5',
927
+ 'p5e',
928
+ 'p5en',
929
+ 'p6-b200',
930
+ 'r3',
931
+ 'r4',
932
+ 'r5',
933
+ 'r5a',
934
+ 'r5ad',
935
+ 'r5b',
936
+ 'r5d',
937
+ 'r5dn',
938
+ 'r5n',
939
+ 'r6a',
940
+ 'r6g',
941
+ 'r6gd',
942
+ 'r6i',
943
+ 'r6id',
944
+ 'r6idn',
945
+ 'r6in',
946
+ 'r7a',
947
+ 'r7g',
948
+ 'r7gd',
949
+ 'r7i',
950
+ 'r7iz',
951
+ 'r8g',
952
+ 'r8gd',
953
+ 't2',
954
+ 't2a',
955
+ 't2d',
956
+ 't3',
957
+ 't3a',
958
+ 't4g',
959
+ 'trn1',
960
+ 'trn1n',
961
+ 'u-3tb1',
962
+ 'u-6tb1',
963
+ 'u7i-12tb',
964
+ 'u7i-6tb',
965
+ 'u7i-8tb',
966
+ 'u7in-16tb',
967
+ 'u7in-24tb',
968
+ 'u7in-32tb',
969
+ 'vt1',
970
+ 'x1',
971
+ 'x1e',
972
+ 'x2gd',
973
+ 'x2idn',
974
+ 'x2iedn',
975
+ 'x2iezn',
976
+ 'x4',
977
+ 'x8g',
978
+ 'z1d',
979
+ 'z3'
980
+ ]
981
+ },
982
+ description: 'Allowed values for `cfke.io/instance-family`.'
983
+ },
984
+ 'topology.kubernetes.io/region': {
985
+ type: 'array',
986
+ items: {
987
+ type: 'string',
988
+ enum: [
989
+ 'africa-south1',
990
+ 'ap-northeast-1',
991
+ 'ap-northeast-2',
992
+ 'ap-northeast-3',
993
+ 'ap-south-1',
994
+ 'ap-southeast-1',
995
+ 'ap-southeast-2',
996
+ 'ash',
997
+ 'asia-east1',
998
+ 'asia-east2',
999
+ 'asia-northeast1',
1000
+ 'asia-northeast2',
1001
+ 'asia-northeast3',
1002
+ 'asia-south1',
1003
+ 'asia-south2',
1004
+ 'asia-southeast1',
1005
+ 'asia-southeast2',
1006
+ 'australia-southeast1',
1007
+ 'australia-southeast2',
1008
+ 'ca-central-1',
1009
+ 'eu-central-1',
1010
+ 'eu-central-2',
1011
+ 'eu-north-1',
1012
+ 'eu-west-1',
1013
+ 'eu-west-2',
1014
+ 'eu-west-3',
1015
+ 'europe-central2',
1016
+ 'europe-north1',
1017
+ 'europe-southwest1',
1018
+ 'europe-west1',
1019
+ 'europe-west10',
1020
+ 'europe-west12',
1021
+ 'europe-west2',
1022
+ 'europe-west3',
1023
+ 'europe-west4',
1024
+ 'europe-west6',
1025
+ 'europe-west8',
1026
+ 'europe-west9',
1027
+ 'fsn1',
1028
+ 'hel1',
1029
+ 'hil',
1030
+ 'me-central1',
1031
+ 'me-central2',
1032
+ 'me-west1',
1033
+ 'nbg1',
1034
+ 'northamerica-northeast1',
1035
+ 'northamerica-northeast2',
1036
+ 'sa-east-1',
1037
+ 'sin',
1038
+ 'southamerica-east1',
1039
+ 'southamerica-west1',
1040
+ 'us-central1',
1041
+ 'us-east-1',
1042
+ 'us-east-2',
1043
+ 'us-east1',
1044
+ 'us-east4',
1045
+ 'us-east5',
1046
+ 'us-south1',
1047
+ 'us-west-1',
1048
+ 'us-west-2',
1049
+ 'us-west1',
1050
+ 'us-west2',
1051
+ 'us-west3',
1052
+ 'us-west4'
1053
+ ]
1054
+ },
1055
+ description: 'Allowed values for `topology.kubernetes.io/region`.'
1056
+ }
1057
+ },
1058
+ additionalProperties: false,
1059
+ description: 'Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.'
1060
+ },
1061
+ scalingProfile: {
1062
+ type: 'string',
1063
+ description: 'Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.',
1064
+ example: 'conservative',
1065
+ enum: [
1066
+ 'aggressive',
1067
+ 'conservative'
1068
+ ]
1069
+ },
798
1070
  id: {
799
1071
  type: 'string',
800
1072
  maxLength: 63,
@@ -822,9 +1094,6 @@ export const FleetSchema = {
822
1094
  description: 'CPU limit in cores.'
823
1095
  }
824
1096
  },
825
- required: [
826
- 'cpu'
827
- ],
828
1097
  additionalProperties: false,
829
1098
  description: 'Limits define a set of bounds for provisioning capacity.'
830
1099
  },
@@ -854,12 +1123,9 @@ export const FleetSchema = {
854
1123
  },
855
1124
  apiKey: {
856
1125
  type: 'string',
857
- description: 'Hetzner Cloud API key with read / write access'
1126
+ description: 'Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.'
858
1127
  }
859
1128
  },
860
- required: [
861
- 'apiKey'
862
- ],
863
1129
  additionalProperties: false
864
1130
  },
865
1131
  aws: {
@@ -879,6 +1145,284 @@ export const FleetSchema = {
879
1145
  ],
880
1146
  additionalProperties: false
881
1147
  },
1148
+ constraints: {
1149
+ type: 'object',
1150
+ properties: {
1151
+ 'karpenter.sh/capacity-type': {
1152
+ type: 'array',
1153
+ items: {
1154
+ type: 'string',
1155
+ enum: [
1156
+ 'on-demand',
1157
+ 'spot'
1158
+ ]
1159
+ },
1160
+ description: 'Allowed values for `karpenter.sh/capacity-type`.'
1161
+ },
1162
+ 'kubernetes.io/arch': {
1163
+ type: 'array',
1164
+ items: {
1165
+ type: 'string',
1166
+ enum: [
1167
+ 'amd64',
1168
+ 'arm64'
1169
+ ]
1170
+ },
1171
+ description: 'Allowed values for `kubernetes.io/arch`.'
1172
+ },
1173
+ 'cfke.io/instance-family': {
1174
+ type: 'array',
1175
+ items: {
1176
+ type: 'string',
1177
+ enum: [
1178
+ 'a1',
1179
+ 'a2',
1180
+ 'a3',
1181
+ 'a4',
1182
+ 'c1',
1183
+ 'c2',
1184
+ 'c2d',
1185
+ 'c3',
1186
+ 'c3d',
1187
+ 'c4',
1188
+ 'c4a',
1189
+ 'c4d',
1190
+ 'c5',
1191
+ 'c5a',
1192
+ 'c5ad',
1193
+ 'c5d',
1194
+ 'c5n',
1195
+ 'c6a',
1196
+ 'c6g',
1197
+ 'c6gd',
1198
+ 'c6gn',
1199
+ 'c6i',
1200
+ 'c6id',
1201
+ 'c6in',
1202
+ 'c7a',
1203
+ 'c7g',
1204
+ 'c7gd',
1205
+ 'c7gn',
1206
+ 'c7i',
1207
+ 'c7i-flex',
1208
+ 'c8g',
1209
+ 'c8gd',
1210
+ 'cax',
1211
+ 'ccx',
1212
+ 'cpx',
1213
+ 'cx',
1214
+ 'd2',
1215
+ 'd3',
1216
+ 'd3en',
1217
+ 'dl1',
1218
+ 'dl2q',
1219
+ 'e2',
1220
+ 'f1',
1221
+ 'f2',
1222
+ 'g1',
1223
+ 'g2',
1224
+ 'g4ad',
1225
+ 'g4dn',
1226
+ 'g5',
1227
+ 'g5g',
1228
+ 'g6',
1229
+ 'g6e',
1230
+ 'gr6',
1231
+ 'h1',
1232
+ 'h3',
1233
+ 'hpc6a',
1234
+ 'hpc6id',
1235
+ 'hpc7a',
1236
+ 'hpc7g',
1237
+ 'i2',
1238
+ 'i3',
1239
+ 'i3en',
1240
+ 'i4g',
1241
+ 'i4i',
1242
+ 'i7i',
1243
+ 'i7ie',
1244
+ 'i8g',
1245
+ 'im4gn',
1246
+ 'inf1',
1247
+ 'inf2',
1248
+ 'is4gen',
1249
+ 'm1',
1250
+ 'm2',
1251
+ 'm3',
1252
+ 'm4',
1253
+ 'm5',
1254
+ 'm5a',
1255
+ 'm5ad',
1256
+ 'm5d',
1257
+ 'm5dn',
1258
+ 'm5n',
1259
+ 'm5zn',
1260
+ 'm6a',
1261
+ 'm6g',
1262
+ 'm6gd',
1263
+ 'm6i',
1264
+ 'm6id',
1265
+ 'm6idn',
1266
+ 'm6in',
1267
+ 'm7a',
1268
+ 'm7g',
1269
+ 'm7gd',
1270
+ 'm7i',
1271
+ 'm7i-flex',
1272
+ 'm8g',
1273
+ 'm8gd',
1274
+ 'n1',
1275
+ 'n2',
1276
+ 'n2d',
1277
+ 'n4',
1278
+ 'p3',
1279
+ 'p3dn',
1280
+ 'p4d',
1281
+ 'p4de',
1282
+ 'p5',
1283
+ 'p5e',
1284
+ 'p5en',
1285
+ 'p6-b200',
1286
+ 'r3',
1287
+ 'r4',
1288
+ 'r5',
1289
+ 'r5a',
1290
+ 'r5ad',
1291
+ 'r5b',
1292
+ 'r5d',
1293
+ 'r5dn',
1294
+ 'r5n',
1295
+ 'r6a',
1296
+ 'r6g',
1297
+ 'r6gd',
1298
+ 'r6i',
1299
+ 'r6id',
1300
+ 'r6idn',
1301
+ 'r6in',
1302
+ 'r7a',
1303
+ 'r7g',
1304
+ 'r7gd',
1305
+ 'r7i',
1306
+ 'r7iz',
1307
+ 'r8g',
1308
+ 'r8gd',
1309
+ 't2',
1310
+ 't2a',
1311
+ 't2d',
1312
+ 't3',
1313
+ 't3a',
1314
+ 't4g',
1315
+ 'trn1',
1316
+ 'trn1n',
1317
+ 'u-3tb1',
1318
+ 'u-6tb1',
1319
+ 'u7i-12tb',
1320
+ 'u7i-6tb',
1321
+ 'u7i-8tb',
1322
+ 'u7in-16tb',
1323
+ 'u7in-24tb',
1324
+ 'u7in-32tb',
1325
+ 'vt1',
1326
+ 'x1',
1327
+ 'x1e',
1328
+ 'x2gd',
1329
+ 'x2idn',
1330
+ 'x2iedn',
1331
+ 'x2iezn',
1332
+ 'x4',
1333
+ 'x8g',
1334
+ 'z1d',
1335
+ 'z3'
1336
+ ]
1337
+ },
1338
+ description: 'Allowed values for `cfke.io/instance-family`.'
1339
+ },
1340
+ 'topology.kubernetes.io/region': {
1341
+ type: 'array',
1342
+ items: {
1343
+ type: 'string',
1344
+ enum: [
1345
+ 'africa-south1',
1346
+ 'ap-northeast-1',
1347
+ 'ap-northeast-2',
1348
+ 'ap-northeast-3',
1349
+ 'ap-south-1',
1350
+ 'ap-southeast-1',
1351
+ 'ap-southeast-2',
1352
+ 'ash',
1353
+ 'asia-east1',
1354
+ 'asia-east2',
1355
+ 'asia-northeast1',
1356
+ 'asia-northeast2',
1357
+ 'asia-northeast3',
1358
+ 'asia-south1',
1359
+ 'asia-south2',
1360
+ 'asia-southeast1',
1361
+ 'asia-southeast2',
1362
+ 'australia-southeast1',
1363
+ 'australia-southeast2',
1364
+ 'ca-central-1',
1365
+ 'eu-central-1',
1366
+ 'eu-central-2',
1367
+ 'eu-north-1',
1368
+ 'eu-west-1',
1369
+ 'eu-west-2',
1370
+ 'eu-west-3',
1371
+ 'europe-central2',
1372
+ 'europe-north1',
1373
+ 'europe-southwest1',
1374
+ 'europe-west1',
1375
+ 'europe-west10',
1376
+ 'europe-west12',
1377
+ 'europe-west2',
1378
+ 'europe-west3',
1379
+ 'europe-west4',
1380
+ 'europe-west6',
1381
+ 'europe-west8',
1382
+ 'europe-west9',
1383
+ 'fsn1',
1384
+ 'hel1',
1385
+ 'hil',
1386
+ 'me-central1',
1387
+ 'me-central2',
1388
+ 'me-west1',
1389
+ 'nbg1',
1390
+ 'northamerica-northeast1',
1391
+ 'northamerica-northeast2',
1392
+ 'sa-east-1',
1393
+ 'sin',
1394
+ 'southamerica-east1',
1395
+ 'southamerica-west1',
1396
+ 'us-central1',
1397
+ 'us-east-1',
1398
+ 'us-east-2',
1399
+ 'us-east1',
1400
+ 'us-east4',
1401
+ 'us-east5',
1402
+ 'us-south1',
1403
+ 'us-west-1',
1404
+ 'us-west-2',
1405
+ 'us-west1',
1406
+ 'us-west2',
1407
+ 'us-west3',
1408
+ 'us-west4'
1409
+ ]
1410
+ },
1411
+ description: 'Allowed values for `topology.kubernetes.io/region`.'
1412
+ }
1413
+ },
1414
+ additionalProperties: false,
1415
+ description: 'Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.'
1416
+ },
1417
+ scalingProfile: {
1418
+ type: 'string',
1419
+ description: 'Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.',
1420
+ example: 'conservative',
1421
+ enum: [
1422
+ 'aggressive',
1423
+ 'conservative'
1424
+ ]
1425
+ },
882
1426
  id: {
883
1427
  type: 'string',
884
1428
  maxLength: 63,
@@ -906,9 +1450,6 @@ export const FleetUpdateInputSchema = {
906
1450
  description: 'CPU limit in cores.'
907
1451
  }
908
1452
  },
909
- required: [
910
- 'cpu'
911
- ],
912
1453
  additionalProperties: false,
913
1454
  description: 'Limits define a set of bounds for provisioning capacity.'
914
1455
  },
@@ -938,12 +1479,9 @@ export const FleetUpdateInputSchema = {
938
1479
  },
939
1480
  apiKey: {
940
1481
  type: 'string',
941
- description: 'Hetzner Cloud API key with read / write access'
1482
+ description: 'Hetzner Cloud API key with read / write access. On update, omit this field to keep the existing value.'
942
1483
  }
943
1484
  },
944
- required: [
945
- 'apiKey'
946
- ],
947
1485
  additionalProperties: false
948
1486
  },
949
1487
  aws: {
@@ -962,6 +1500,284 @@ export const FleetUpdateInputSchema = {
962
1500
  'controllerRoleArn'
963
1501
  ],
964
1502
  additionalProperties: false
1503
+ },
1504
+ constraints: {
1505
+ type: 'object',
1506
+ properties: {
1507
+ 'karpenter.sh/capacity-type': {
1508
+ type: 'array',
1509
+ items: {
1510
+ type: 'string',
1511
+ enum: [
1512
+ 'on-demand',
1513
+ 'spot'
1514
+ ]
1515
+ },
1516
+ description: 'Allowed values for `karpenter.sh/capacity-type`.'
1517
+ },
1518
+ 'kubernetes.io/arch': {
1519
+ type: 'array',
1520
+ items: {
1521
+ type: 'string',
1522
+ enum: [
1523
+ 'amd64',
1524
+ 'arm64'
1525
+ ]
1526
+ },
1527
+ description: 'Allowed values for `kubernetes.io/arch`.'
1528
+ },
1529
+ 'cfke.io/instance-family': {
1530
+ type: 'array',
1531
+ items: {
1532
+ type: 'string',
1533
+ enum: [
1534
+ 'a1',
1535
+ 'a2',
1536
+ 'a3',
1537
+ 'a4',
1538
+ 'c1',
1539
+ 'c2',
1540
+ 'c2d',
1541
+ 'c3',
1542
+ 'c3d',
1543
+ 'c4',
1544
+ 'c4a',
1545
+ 'c4d',
1546
+ 'c5',
1547
+ 'c5a',
1548
+ 'c5ad',
1549
+ 'c5d',
1550
+ 'c5n',
1551
+ 'c6a',
1552
+ 'c6g',
1553
+ 'c6gd',
1554
+ 'c6gn',
1555
+ 'c6i',
1556
+ 'c6id',
1557
+ 'c6in',
1558
+ 'c7a',
1559
+ 'c7g',
1560
+ 'c7gd',
1561
+ 'c7gn',
1562
+ 'c7i',
1563
+ 'c7i-flex',
1564
+ 'c8g',
1565
+ 'c8gd',
1566
+ 'cax',
1567
+ 'ccx',
1568
+ 'cpx',
1569
+ 'cx',
1570
+ 'd2',
1571
+ 'd3',
1572
+ 'd3en',
1573
+ 'dl1',
1574
+ 'dl2q',
1575
+ 'e2',
1576
+ 'f1',
1577
+ 'f2',
1578
+ 'g1',
1579
+ 'g2',
1580
+ 'g4ad',
1581
+ 'g4dn',
1582
+ 'g5',
1583
+ 'g5g',
1584
+ 'g6',
1585
+ 'g6e',
1586
+ 'gr6',
1587
+ 'h1',
1588
+ 'h3',
1589
+ 'hpc6a',
1590
+ 'hpc6id',
1591
+ 'hpc7a',
1592
+ 'hpc7g',
1593
+ 'i2',
1594
+ 'i3',
1595
+ 'i3en',
1596
+ 'i4g',
1597
+ 'i4i',
1598
+ 'i7i',
1599
+ 'i7ie',
1600
+ 'i8g',
1601
+ 'im4gn',
1602
+ 'inf1',
1603
+ 'inf2',
1604
+ 'is4gen',
1605
+ 'm1',
1606
+ 'm2',
1607
+ 'm3',
1608
+ 'm4',
1609
+ 'm5',
1610
+ 'm5a',
1611
+ 'm5ad',
1612
+ 'm5d',
1613
+ 'm5dn',
1614
+ 'm5n',
1615
+ 'm5zn',
1616
+ 'm6a',
1617
+ 'm6g',
1618
+ 'm6gd',
1619
+ 'm6i',
1620
+ 'm6id',
1621
+ 'm6idn',
1622
+ 'm6in',
1623
+ 'm7a',
1624
+ 'm7g',
1625
+ 'm7gd',
1626
+ 'm7i',
1627
+ 'm7i-flex',
1628
+ 'm8g',
1629
+ 'm8gd',
1630
+ 'n1',
1631
+ 'n2',
1632
+ 'n2d',
1633
+ 'n4',
1634
+ 'p3',
1635
+ 'p3dn',
1636
+ 'p4d',
1637
+ 'p4de',
1638
+ 'p5',
1639
+ 'p5e',
1640
+ 'p5en',
1641
+ 'p6-b200',
1642
+ 'r3',
1643
+ 'r4',
1644
+ 'r5',
1645
+ 'r5a',
1646
+ 'r5ad',
1647
+ 'r5b',
1648
+ 'r5d',
1649
+ 'r5dn',
1650
+ 'r5n',
1651
+ 'r6a',
1652
+ 'r6g',
1653
+ 'r6gd',
1654
+ 'r6i',
1655
+ 'r6id',
1656
+ 'r6idn',
1657
+ 'r6in',
1658
+ 'r7a',
1659
+ 'r7g',
1660
+ 'r7gd',
1661
+ 'r7i',
1662
+ 'r7iz',
1663
+ 'r8g',
1664
+ 'r8gd',
1665
+ 't2',
1666
+ 't2a',
1667
+ 't2d',
1668
+ 't3',
1669
+ 't3a',
1670
+ 't4g',
1671
+ 'trn1',
1672
+ 'trn1n',
1673
+ 'u-3tb1',
1674
+ 'u-6tb1',
1675
+ 'u7i-12tb',
1676
+ 'u7i-6tb',
1677
+ 'u7i-8tb',
1678
+ 'u7in-16tb',
1679
+ 'u7in-24tb',
1680
+ 'u7in-32tb',
1681
+ 'vt1',
1682
+ 'x1',
1683
+ 'x1e',
1684
+ 'x2gd',
1685
+ 'x2idn',
1686
+ 'x2iedn',
1687
+ 'x2iezn',
1688
+ 'x4',
1689
+ 'x8g',
1690
+ 'z1d',
1691
+ 'z3'
1692
+ ]
1693
+ },
1694
+ description: 'Allowed values for `cfke.io/instance-family`.'
1695
+ },
1696
+ 'topology.kubernetes.io/region': {
1697
+ type: 'array',
1698
+ items: {
1699
+ type: 'string',
1700
+ enum: [
1701
+ 'africa-south1',
1702
+ 'ap-northeast-1',
1703
+ 'ap-northeast-2',
1704
+ 'ap-northeast-3',
1705
+ 'ap-south-1',
1706
+ 'ap-southeast-1',
1707
+ 'ap-southeast-2',
1708
+ 'ash',
1709
+ 'asia-east1',
1710
+ 'asia-east2',
1711
+ 'asia-northeast1',
1712
+ 'asia-northeast2',
1713
+ 'asia-northeast3',
1714
+ 'asia-south1',
1715
+ 'asia-south2',
1716
+ 'asia-southeast1',
1717
+ 'asia-southeast2',
1718
+ 'australia-southeast1',
1719
+ 'australia-southeast2',
1720
+ 'ca-central-1',
1721
+ 'eu-central-1',
1722
+ 'eu-central-2',
1723
+ 'eu-north-1',
1724
+ 'eu-west-1',
1725
+ 'eu-west-2',
1726
+ 'eu-west-3',
1727
+ 'europe-central2',
1728
+ 'europe-north1',
1729
+ 'europe-southwest1',
1730
+ 'europe-west1',
1731
+ 'europe-west10',
1732
+ 'europe-west12',
1733
+ 'europe-west2',
1734
+ 'europe-west3',
1735
+ 'europe-west4',
1736
+ 'europe-west6',
1737
+ 'europe-west8',
1738
+ 'europe-west9',
1739
+ 'fsn1',
1740
+ 'hel1',
1741
+ 'hil',
1742
+ 'me-central1',
1743
+ 'me-central2',
1744
+ 'me-west1',
1745
+ 'nbg1',
1746
+ 'northamerica-northeast1',
1747
+ 'northamerica-northeast2',
1748
+ 'sa-east-1',
1749
+ 'sin',
1750
+ 'southamerica-east1',
1751
+ 'southamerica-west1',
1752
+ 'us-central1',
1753
+ 'us-east-1',
1754
+ 'us-east-2',
1755
+ 'us-east1',
1756
+ 'us-east4',
1757
+ 'us-east5',
1758
+ 'us-south1',
1759
+ 'us-west-1',
1760
+ 'us-west-2',
1761
+ 'us-west1',
1762
+ 'us-west2',
1763
+ 'us-west3',
1764
+ 'us-west4'
1765
+ ]
1766
+ },
1767
+ description: 'Allowed values for `topology.kubernetes.io/region`.'
1768
+ }
1769
+ },
1770
+ additionalProperties: false,
1771
+ description: 'Constraints define scheduling and provisioning requirements for the fleet. Each field restricts the values allowed for a given Kubernetes label key. Multiple constraints are ANDed together. Omit a field to place no restriction on that key.'
1772
+ },
1773
+ scalingProfile: {
1774
+ type: 'string',
1775
+ description: 'Controls scale-up / scale-down responsiveness. `aggressive` prioritizes cost-optimization. `conservative` prioritizes stability of the fleet.',
1776
+ example: 'conservative',
1777
+ enum: [
1778
+ 'aggressive',
1779
+ 'conservative'
1780
+ ]
965
1781
  }
966
1782
  },
967
1783
  additionalProperties: false