1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package types
type AccountSortBy string
// Enum values for AccountSortBy
const (
AccountSortByCritical AccountSortBy = "CRITICAL"
AccountSortByHigh AccountSortBy = "HIGH"
AccountSortByAll AccountSortBy = "ALL"
)
// Values returns all known values for AccountSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AccountSortBy) Values() []AccountSortBy {
return []AccountSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type AggregationFindingType string
// Enum values for AggregationFindingType
const (
AggregationFindingTypeNetworkReachability AggregationFindingType = "NETWORK_REACHABILITY"
AggregationFindingTypePackageVulnerability AggregationFindingType = "PACKAGE_VULNERABILITY"
AggregationFindingTypeCodeVulnerability AggregationFindingType = "CODE_VULNERABILITY"
)
// Values returns all known values for AggregationFindingType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AggregationFindingType) Values() []AggregationFindingType {
return []AggregationFindingType{
"NETWORK_REACHABILITY",
"PACKAGE_VULNERABILITY",
"CODE_VULNERABILITY",
}
}
type AggregationResourceType string
// Enum values for AggregationResourceType
const (
AggregationResourceTypeAwsEc2Instance AggregationResourceType = "AWS_EC2_INSTANCE"
AggregationResourceTypeAwsEcrContainerImage AggregationResourceType = "AWS_ECR_CONTAINER_IMAGE"
AggregationResourceTypeAwsLambdaFunction AggregationResourceType = "AWS_LAMBDA_FUNCTION"
)
// Values returns all known values for AggregationResourceType. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AggregationResourceType) Values() []AggregationResourceType {
return []AggregationResourceType{
"AWS_EC2_INSTANCE",
"AWS_ECR_CONTAINER_IMAGE",
"AWS_LAMBDA_FUNCTION",
}
}
type AggregationType string
// Enum values for AggregationType
const (
AggregationTypeFindingType AggregationType = "FINDING_TYPE"
AggregationTypePackage AggregationType = "PACKAGE"
AggregationTypeTitle AggregationType = "TITLE"
AggregationTypeRepository AggregationType = "REPOSITORY"
AggregationTypeAmi AggregationType = "AMI"
AggregationTypeAwsEc2Instance AggregationType = "AWS_EC2_INSTANCE"
AggregationTypeAwsEcrContainer AggregationType = "AWS_ECR_CONTAINER"
AggregationTypeImageLayer AggregationType = "IMAGE_LAYER"
AggregationTypeAccount AggregationType = "ACCOUNT"
AggregationTypeAwsLambdaFunction AggregationType = "AWS_LAMBDA_FUNCTION"
AggregationTypeLambdaLayer AggregationType = "LAMBDA_LAYER"
)
// Values returns all known values for AggregationType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AggregationType) Values() []AggregationType {
return []AggregationType{
"FINDING_TYPE",
"PACKAGE",
"TITLE",
"REPOSITORY",
"AMI",
"AWS_EC2_INSTANCE",
"AWS_ECR_CONTAINER",
"IMAGE_LAYER",
"ACCOUNT",
"AWS_LAMBDA_FUNCTION",
"LAMBDA_LAYER",
}
}
type AmiSortBy string
// Enum values for AmiSortBy
const (
AmiSortByCritical AmiSortBy = "CRITICAL"
AmiSortByHigh AmiSortBy = "HIGH"
AmiSortByAll AmiSortBy = "ALL"
AmiSortByAffectedInstances AmiSortBy = "AFFECTED_INSTANCES"
)
// Values returns all known values for AmiSortBy. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (AmiSortBy) Values() []AmiSortBy {
return []AmiSortBy{
"CRITICAL",
"HIGH",
"ALL",
"AFFECTED_INSTANCES",
}
}
type Architecture string
// Enum values for Architecture
const (
ArchitectureX8664 Architecture = "X86_64"
ArchitectureArm64 Architecture = "ARM64"
)
// Values returns all known values for Architecture. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (Architecture) Values() []Architecture {
return []Architecture{
"X86_64",
"ARM64",
}
}
type AwsEcrContainerSortBy string
// Enum values for AwsEcrContainerSortBy
const (
AwsEcrContainerSortByCritical AwsEcrContainerSortBy = "CRITICAL"
AwsEcrContainerSortByHigh AwsEcrContainerSortBy = "HIGH"
AwsEcrContainerSortByAll AwsEcrContainerSortBy = "ALL"
)
// Values returns all known values for AwsEcrContainerSortBy. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (AwsEcrContainerSortBy) Values() []AwsEcrContainerSortBy {
return []AwsEcrContainerSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type CodeSnippetErrorCode string
// Enum values for CodeSnippetErrorCode
const (
CodeSnippetErrorCodeInternalError CodeSnippetErrorCode = "INTERNAL_ERROR"
CodeSnippetErrorCodeAccessDenied CodeSnippetErrorCode = "ACCESS_DENIED"
CodeSnippetErrorCodeCodeSnippetNotFound CodeSnippetErrorCode = "CODE_SNIPPET_NOT_FOUND"
CodeSnippetErrorCodeInvalidInput CodeSnippetErrorCode = "INVALID_INPUT"
)
// Values returns all known values for CodeSnippetErrorCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CodeSnippetErrorCode) Values() []CodeSnippetErrorCode {
return []CodeSnippetErrorCode{
"INTERNAL_ERROR",
"ACCESS_DENIED",
"CODE_SNIPPET_NOT_FOUND",
"INVALID_INPUT",
}
}
type CoverageMapComparison string
// Enum values for CoverageMapComparison
const (
CoverageMapComparisonEquals CoverageMapComparison = "EQUALS"
)
// Values returns all known values for CoverageMapComparison. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CoverageMapComparison) Values() []CoverageMapComparison {
return []CoverageMapComparison{
"EQUALS",
}
}
type CoverageResourceType string
// Enum values for CoverageResourceType
const (
CoverageResourceTypeAwsEc2Instance CoverageResourceType = "AWS_EC2_INSTANCE"
CoverageResourceTypeAwsEcrContainerImage CoverageResourceType = "AWS_ECR_CONTAINER_IMAGE"
CoverageResourceTypeAwsEcrRepository CoverageResourceType = "AWS_ECR_REPOSITORY"
CoverageResourceTypeAwsLambdaFunction CoverageResourceType = "AWS_LAMBDA_FUNCTION"
)
// Values returns all known values for CoverageResourceType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (CoverageResourceType) Values() []CoverageResourceType {
return []CoverageResourceType{
"AWS_EC2_INSTANCE",
"AWS_ECR_CONTAINER_IMAGE",
"AWS_ECR_REPOSITORY",
"AWS_LAMBDA_FUNCTION",
}
}
type CoverageStringComparison string
// Enum values for CoverageStringComparison
const (
CoverageStringComparisonEquals CoverageStringComparison = "EQUALS"
CoverageStringComparisonNotEquals CoverageStringComparison = "NOT_EQUALS"
)
// Values returns all known values for CoverageStringComparison. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (CoverageStringComparison) Values() []CoverageStringComparison {
return []CoverageStringComparison{
"EQUALS",
"NOT_EQUALS",
}
}
type Currency string
// Enum values for Currency
const (
CurrencyUsd Currency = "USD"
)
// Values returns all known values for Currency. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Currency) Values() []Currency {
return []Currency{
"USD",
}
}
type DelegatedAdminStatus string
// Enum values for DelegatedAdminStatus
const (
DelegatedAdminStatusEnabled DelegatedAdminStatus = "ENABLED"
DelegatedAdminStatusDisableInProgress DelegatedAdminStatus = "DISABLE_IN_PROGRESS"
)
// Values returns all known values for DelegatedAdminStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (DelegatedAdminStatus) Values() []DelegatedAdminStatus {
return []DelegatedAdminStatus{
"ENABLED",
"DISABLE_IN_PROGRESS",
}
}
type Ec2DeepInspectionStatus string
// Enum values for Ec2DeepInspectionStatus
const (
Ec2DeepInspectionStatusActivated Ec2DeepInspectionStatus = "ACTIVATED"
Ec2DeepInspectionStatusDeactivated Ec2DeepInspectionStatus = "DEACTIVATED"
Ec2DeepInspectionStatusPending Ec2DeepInspectionStatus = "PENDING"
Ec2DeepInspectionStatusFailed Ec2DeepInspectionStatus = "FAILED"
)
// Values returns all known values for Ec2DeepInspectionStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (Ec2DeepInspectionStatus) Values() []Ec2DeepInspectionStatus {
return []Ec2DeepInspectionStatus{
"ACTIVATED",
"DEACTIVATED",
"PENDING",
"FAILED",
}
}
type Ec2InstanceSortBy string
// Enum values for Ec2InstanceSortBy
const (
Ec2InstanceSortByNetworkFindings Ec2InstanceSortBy = "NETWORK_FINDINGS"
Ec2InstanceSortByCritical Ec2InstanceSortBy = "CRITICAL"
Ec2InstanceSortByHigh Ec2InstanceSortBy = "HIGH"
Ec2InstanceSortByAll Ec2InstanceSortBy = "ALL"
)
// Values returns all known values for Ec2InstanceSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (Ec2InstanceSortBy) Values() []Ec2InstanceSortBy {
return []Ec2InstanceSortBy{
"NETWORK_FINDINGS",
"CRITICAL",
"HIGH",
"ALL",
}
}
type Ec2Platform string
// Enum values for Ec2Platform
const (
Ec2PlatformWindows Ec2Platform = "WINDOWS"
Ec2PlatformLinux Ec2Platform = "LINUX"
Ec2PlatformUnknown Ec2Platform = "UNKNOWN"
Ec2PlatformMacos Ec2Platform = "MACOS"
)
// Values returns all known values for Ec2Platform. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Ec2Platform) Values() []Ec2Platform {
return []Ec2Platform{
"WINDOWS",
"LINUX",
"UNKNOWN",
"MACOS",
}
}
type EcrRescanDuration string
// Enum values for EcrRescanDuration
const (
EcrRescanDurationLifetime EcrRescanDuration = "LIFETIME"
EcrRescanDurationDays30 EcrRescanDuration = "DAYS_30"
EcrRescanDurationDays180 EcrRescanDuration = "DAYS_180"
)
// Values returns all known values for EcrRescanDuration. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (EcrRescanDuration) Values() []EcrRescanDuration {
return []EcrRescanDuration{
"LIFETIME",
"DAYS_30",
"DAYS_180",
}
}
type EcrRescanDurationStatus string
// Enum values for EcrRescanDurationStatus
const (
EcrRescanDurationStatusSuccess EcrRescanDurationStatus = "SUCCESS"
EcrRescanDurationStatusPending EcrRescanDurationStatus = "PENDING"
EcrRescanDurationStatusFailed EcrRescanDurationStatus = "FAILED"
)
// Values returns all known values for EcrRescanDurationStatus. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (EcrRescanDurationStatus) Values() []EcrRescanDurationStatus {
return []EcrRescanDurationStatus{
"SUCCESS",
"PENDING",
"FAILED",
}
}
type EcrScanFrequency string
// Enum values for EcrScanFrequency
const (
EcrScanFrequencyManual EcrScanFrequency = "MANUAL"
EcrScanFrequencyScanOnPush EcrScanFrequency = "SCAN_ON_PUSH"
EcrScanFrequencyContinuousScan EcrScanFrequency = "CONTINUOUS_SCAN"
)
// Values returns all known values for EcrScanFrequency. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (EcrScanFrequency) Values() []EcrScanFrequency {
return []EcrScanFrequency{
"MANUAL",
"SCAN_ON_PUSH",
"CONTINUOUS_SCAN",
}
}
type ErrorCode string
// Enum values for ErrorCode
const (
ErrorCodeAlreadyEnabled ErrorCode = "ALREADY_ENABLED"
ErrorCodeEnableInProgress ErrorCode = "ENABLE_IN_PROGRESS"
ErrorCodeDisableInProgress ErrorCode = "DISABLE_IN_PROGRESS"
ErrorCodeSuspendInProgress ErrorCode = "SUSPEND_IN_PROGRESS"
ErrorCodeResourceNotFound ErrorCode = "RESOURCE_NOT_FOUND"
ErrorCodeAccessDenied ErrorCode = "ACCESS_DENIED"
ErrorCodeInternalError ErrorCode = "INTERNAL_ERROR"
ErrorCodeSsmUnavailable ErrorCode = "SSM_UNAVAILABLE"
ErrorCodeSsmThrottled ErrorCode = "SSM_THROTTLED"
ErrorCodeEventbridgeUnavailable ErrorCode = "EVENTBRIDGE_UNAVAILABLE"
ErrorCodeEventbridgeThrottled ErrorCode = "EVENTBRIDGE_THROTTLED"
ErrorCodeResourceScanNotDisabled ErrorCode = "RESOURCE_SCAN_NOT_DISABLED"
ErrorCodeDisassociateAllMembers ErrorCode = "DISASSOCIATE_ALL_MEMBERS"
ErrorCodeAccountIsIsolated ErrorCode = "ACCOUNT_IS_ISOLATED"
)
// Values returns all known values for ErrorCode. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (ErrorCode) Values() []ErrorCode {
return []ErrorCode{
"ALREADY_ENABLED",
"ENABLE_IN_PROGRESS",
"DISABLE_IN_PROGRESS",
"SUSPEND_IN_PROGRESS",
"RESOURCE_NOT_FOUND",
"ACCESS_DENIED",
"INTERNAL_ERROR",
"SSM_UNAVAILABLE",
"SSM_THROTTLED",
"EVENTBRIDGE_UNAVAILABLE",
"EVENTBRIDGE_THROTTLED",
"RESOURCE_SCAN_NOT_DISABLED",
"DISASSOCIATE_ALL_MEMBERS",
"ACCOUNT_IS_ISOLATED",
}
}
type ExploitAvailable string
// Enum values for ExploitAvailable
const (
ExploitAvailableYes ExploitAvailable = "YES"
ExploitAvailableNo ExploitAvailable = "NO"
)
// Values returns all known values for ExploitAvailable. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExploitAvailable) Values() []ExploitAvailable {
return []ExploitAvailable{
"YES",
"NO",
}
}
type ExternalReportStatus string
// Enum values for ExternalReportStatus
const (
ExternalReportStatusSucceeded ExternalReportStatus = "SUCCEEDED"
ExternalReportStatusInProgress ExternalReportStatus = "IN_PROGRESS"
ExternalReportStatusCancelled ExternalReportStatus = "CANCELLED"
ExternalReportStatusFailed ExternalReportStatus = "FAILED"
)
// Values returns all known values for ExternalReportStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ExternalReportStatus) Values() []ExternalReportStatus {
return []ExternalReportStatus{
"SUCCEEDED",
"IN_PROGRESS",
"CANCELLED",
"FAILED",
}
}
type FilterAction string
// Enum values for FilterAction
const (
FilterActionNone FilterAction = "NONE"
FilterActionSuppress FilterAction = "SUPPRESS"
)
// Values returns all known values for FilterAction. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FilterAction) Values() []FilterAction {
return []FilterAction{
"NONE",
"SUPPRESS",
}
}
type FindingDetailsErrorCode string
// Enum values for FindingDetailsErrorCode
const (
FindingDetailsErrorCodeInternalError FindingDetailsErrorCode = "INTERNAL_ERROR"
FindingDetailsErrorCodeAccessDenied FindingDetailsErrorCode = "ACCESS_DENIED"
FindingDetailsErrorCodeFindingDetailsNotFound FindingDetailsErrorCode = "FINDING_DETAILS_NOT_FOUND"
FindingDetailsErrorCodeInvalidInput FindingDetailsErrorCode = "INVALID_INPUT"
)
// Values returns all known values for FindingDetailsErrorCode. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FindingDetailsErrorCode) Values() []FindingDetailsErrorCode {
return []FindingDetailsErrorCode{
"INTERNAL_ERROR",
"ACCESS_DENIED",
"FINDING_DETAILS_NOT_FOUND",
"INVALID_INPUT",
}
}
type FindingStatus string
// Enum values for FindingStatus
const (
FindingStatusActive FindingStatus = "ACTIVE"
FindingStatusSuppressed FindingStatus = "SUPPRESSED"
FindingStatusClosed FindingStatus = "CLOSED"
)
// Values returns all known values for FindingStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FindingStatus) Values() []FindingStatus {
return []FindingStatus{
"ACTIVE",
"SUPPRESSED",
"CLOSED",
}
}
type FindingType string
// Enum values for FindingType
const (
FindingTypeNetworkReachability FindingType = "NETWORK_REACHABILITY"
FindingTypePackageVulnerability FindingType = "PACKAGE_VULNERABILITY"
FindingTypeCodeVulnerability FindingType = "CODE_VULNERABILITY"
)
// Values returns all known values for FindingType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (FindingType) Values() []FindingType {
return []FindingType{
"NETWORK_REACHABILITY",
"PACKAGE_VULNERABILITY",
"CODE_VULNERABILITY",
}
}
type FindingTypeSortBy string
// Enum values for FindingTypeSortBy
const (
FindingTypeSortByCritical FindingTypeSortBy = "CRITICAL"
FindingTypeSortByHigh FindingTypeSortBy = "HIGH"
FindingTypeSortByAll FindingTypeSortBy = "ALL"
)
// Values returns all known values for FindingTypeSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FindingTypeSortBy) Values() []FindingTypeSortBy {
return []FindingTypeSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type FixAvailable string
// Enum values for FixAvailable
const (
FixAvailableYes FixAvailable = "YES"
FixAvailableNo FixAvailable = "NO"
FixAvailablePartial FixAvailable = "PARTIAL"
)
// Values returns all known values for FixAvailable. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FixAvailable) Values() []FixAvailable {
return []FixAvailable{
"YES",
"NO",
"PARTIAL",
}
}
type FreeTrialInfoErrorCode string
// Enum values for FreeTrialInfoErrorCode
const (
FreeTrialInfoErrorCodeAccessDenied FreeTrialInfoErrorCode = "ACCESS_DENIED"
FreeTrialInfoErrorCodeInternalError FreeTrialInfoErrorCode = "INTERNAL_ERROR"
)
// Values returns all known values for FreeTrialInfoErrorCode. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FreeTrialInfoErrorCode) Values() []FreeTrialInfoErrorCode {
return []FreeTrialInfoErrorCode{
"ACCESS_DENIED",
"INTERNAL_ERROR",
}
}
type FreeTrialStatus string
// Enum values for FreeTrialStatus
const (
FreeTrialStatusActive FreeTrialStatus = "ACTIVE"
FreeTrialStatusInactive FreeTrialStatus = "INACTIVE"
)
// Values returns all known values for FreeTrialStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FreeTrialStatus) Values() []FreeTrialStatus {
return []FreeTrialStatus{
"ACTIVE",
"INACTIVE",
}
}
type FreeTrialType string
// Enum values for FreeTrialType
const (
FreeTrialTypeEc2 FreeTrialType = "EC2"
FreeTrialTypeEcr FreeTrialType = "ECR"
FreeTrialTypeLambda FreeTrialType = "LAMBDA"
FreeTrialTypeLambdaCode FreeTrialType = "LAMBDA_CODE"
)
// Values returns all known values for FreeTrialType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (FreeTrialType) Values() []FreeTrialType {
return []FreeTrialType{
"EC2",
"ECR",
"LAMBDA",
"LAMBDA_CODE",
}
}
type GroupKey string
// Enum values for GroupKey
const (
GroupKeyScanStatusCode GroupKey = "SCAN_STATUS_CODE"
GroupKeyScanStatusReason GroupKey = "SCAN_STATUS_REASON"
GroupKeyAccountId GroupKey = "ACCOUNT_ID"
GroupKeyResourceType GroupKey = "RESOURCE_TYPE"
GroupKeyEcrRepositoryName GroupKey = "ECR_REPOSITORY_NAME"
)
// Values returns all known values for GroupKey. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (GroupKey) Values() []GroupKey {
return []GroupKey{
"SCAN_STATUS_CODE",
"SCAN_STATUS_REASON",
"ACCOUNT_ID",
"RESOURCE_TYPE",
"ECR_REPOSITORY_NAME",
}
}
type ImageLayerSortBy string
// Enum values for ImageLayerSortBy
const (
ImageLayerSortByCritical ImageLayerSortBy = "CRITICAL"
ImageLayerSortByHigh ImageLayerSortBy = "HIGH"
ImageLayerSortByAll ImageLayerSortBy = "ALL"
)
// Values returns all known values for ImageLayerSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ImageLayerSortBy) Values() []ImageLayerSortBy {
return []ImageLayerSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type LambdaFunctionSortBy string
// Enum values for LambdaFunctionSortBy
const (
LambdaFunctionSortByCritical LambdaFunctionSortBy = "CRITICAL"
LambdaFunctionSortByHigh LambdaFunctionSortBy = "HIGH"
LambdaFunctionSortByAll LambdaFunctionSortBy = "ALL"
)
// Values returns all known values for LambdaFunctionSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LambdaFunctionSortBy) Values() []LambdaFunctionSortBy {
return []LambdaFunctionSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type LambdaLayerSortBy string
// Enum values for LambdaLayerSortBy
const (
LambdaLayerSortByCritical LambdaLayerSortBy = "CRITICAL"
LambdaLayerSortByHigh LambdaLayerSortBy = "HIGH"
LambdaLayerSortByAll LambdaLayerSortBy = "ALL"
)
// Values returns all known values for LambdaLayerSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (LambdaLayerSortBy) Values() []LambdaLayerSortBy {
return []LambdaLayerSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type MapComparison string
// Enum values for MapComparison
const (
MapComparisonEquals MapComparison = "EQUALS"
)
// Values returns all known values for MapComparison. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (MapComparison) Values() []MapComparison {
return []MapComparison{
"EQUALS",
}
}
type NetworkProtocol string
// Enum values for NetworkProtocol
const (
NetworkProtocolTcp NetworkProtocol = "TCP"
NetworkProtocolUdp NetworkProtocol = "UDP"
)
// Values returns all known values for NetworkProtocol. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (NetworkProtocol) Values() []NetworkProtocol {
return []NetworkProtocol{
"TCP",
"UDP",
}
}
type Operation string
// Enum values for Operation
const (
OperationEnableScanning Operation = "ENABLE_SCANNING"
OperationDisableScanning Operation = "DISABLE_SCANNING"
OperationEnableRepository Operation = "ENABLE_REPOSITORY"
OperationDisableRepository Operation = "DISABLE_REPOSITORY"
)
// Values returns all known values for Operation. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (Operation) Values() []Operation {
return []Operation{
"ENABLE_SCANNING",
"DISABLE_SCANNING",
"ENABLE_REPOSITORY",
"DISABLE_REPOSITORY",
}
}
type PackageManager string
// Enum values for PackageManager
const (
PackageManagerBundler PackageManager = "BUNDLER"
PackageManagerCargo PackageManager = "CARGO"
PackageManagerComposer PackageManager = "COMPOSER"
PackageManagerNpm PackageManager = "NPM"
PackageManagerNuget PackageManager = "NUGET"
PackageManagerPipenv PackageManager = "PIPENV"
PackageManagerPoetry PackageManager = "POETRY"
PackageManagerYarn PackageManager = "YARN"
PackageManagerGobinary PackageManager = "GOBINARY"
PackageManagerGomod PackageManager = "GOMOD"
PackageManagerJar PackageManager = "JAR"
PackageManagerOs PackageManager = "OS"
PackageManagerPip PackageManager = "PIP"
PackageManagerPythonpkg PackageManager = "PYTHONPKG"
PackageManagerNodepkg PackageManager = "NODEPKG"
PackageManagerPom PackageManager = "POM"
PackageManagerGemspec PackageManager = "GEMSPEC"
)
// Values returns all known values for PackageManager. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PackageManager) Values() []PackageManager {
return []PackageManager{
"BUNDLER",
"CARGO",
"COMPOSER",
"NPM",
"NUGET",
"PIPENV",
"POETRY",
"YARN",
"GOBINARY",
"GOMOD",
"JAR",
"OS",
"PIP",
"PYTHONPKG",
"NODEPKG",
"POM",
"GEMSPEC",
}
}
type PackageSortBy string
// Enum values for PackageSortBy
const (
PackageSortByCritical PackageSortBy = "CRITICAL"
PackageSortByHigh PackageSortBy = "HIGH"
PackageSortByAll PackageSortBy = "ALL"
)
// Values returns all known values for PackageSortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (PackageSortBy) Values() []PackageSortBy {
return []PackageSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type PackageType string
// Enum values for PackageType
const (
PackageTypeImage PackageType = "IMAGE"
PackageTypeZip PackageType = "ZIP"
)
// Values returns all known values for PackageType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (PackageType) Values() []PackageType {
return []PackageType{
"IMAGE",
"ZIP",
}
}
type RelationshipStatus string
// Enum values for RelationshipStatus
const (
RelationshipStatusCreated RelationshipStatus = "CREATED"
RelationshipStatusInvited RelationshipStatus = "INVITED"
RelationshipStatusDisabled RelationshipStatus = "DISABLED"
RelationshipStatusEnabled RelationshipStatus = "ENABLED"
RelationshipStatusRemoved RelationshipStatus = "REMOVED"
RelationshipStatusResigned RelationshipStatus = "RESIGNED"
RelationshipStatusDeleted RelationshipStatus = "DELETED"
RelationshipStatusEmailVerificationInProgress RelationshipStatus = "EMAIL_VERIFICATION_IN_PROGRESS"
RelationshipStatusEmailVerificationFailed RelationshipStatus = "EMAIL_VERIFICATION_FAILED"
RelationshipStatusRegionDisabled RelationshipStatus = "REGION_DISABLED"
RelationshipStatusAccountSuspended RelationshipStatus = "ACCOUNT_SUSPENDED"
RelationshipStatusCannotCreateDetectorInOrgMaster RelationshipStatus = "CANNOT_CREATE_DETECTOR_IN_ORG_MASTER"
)
// Values returns all known values for RelationshipStatus. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RelationshipStatus) Values() []RelationshipStatus {
return []RelationshipStatus{
"CREATED",
"INVITED",
"DISABLED",
"ENABLED",
"REMOVED",
"RESIGNED",
"DELETED",
"EMAIL_VERIFICATION_IN_PROGRESS",
"EMAIL_VERIFICATION_FAILED",
"REGION_DISABLED",
"ACCOUNT_SUSPENDED",
"CANNOT_CREATE_DETECTOR_IN_ORG_MASTER",
}
}
type ReportFormat string
// Enum values for ReportFormat
const (
ReportFormatCsv ReportFormat = "CSV"
ReportFormatJson ReportFormat = "JSON"
)
// Values returns all known values for ReportFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ReportFormat) Values() []ReportFormat {
return []ReportFormat{
"CSV",
"JSON",
}
}
type ReportingErrorCode string
// Enum values for ReportingErrorCode
const (
ReportingErrorCodeInternalError ReportingErrorCode = "INTERNAL_ERROR"
ReportingErrorCodeInvalidPermissions ReportingErrorCode = "INVALID_PERMISSIONS"
ReportingErrorCodeNoFindingsFound ReportingErrorCode = "NO_FINDINGS_FOUND"
ReportingErrorCodeBucketNotFound ReportingErrorCode = "BUCKET_NOT_FOUND"
ReportingErrorCodeIncompatibleBucketRegion ReportingErrorCode = "INCOMPATIBLE_BUCKET_REGION"
ReportingErrorCodeMalformedKmsKey ReportingErrorCode = "MALFORMED_KMS_KEY"
)
// Values returns all known values for ReportingErrorCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ReportingErrorCode) Values() []ReportingErrorCode {
return []ReportingErrorCode{
"INTERNAL_ERROR",
"INVALID_PERMISSIONS",
"NO_FINDINGS_FOUND",
"BUCKET_NOT_FOUND",
"INCOMPATIBLE_BUCKET_REGION",
"MALFORMED_KMS_KEY",
}
}
type RepositorySortBy string
// Enum values for RepositorySortBy
const (
RepositorySortByCritical RepositorySortBy = "CRITICAL"
RepositorySortByHigh RepositorySortBy = "HIGH"
RepositorySortByAll RepositorySortBy = "ALL"
RepositorySortByAffectedImages RepositorySortBy = "AFFECTED_IMAGES"
)
// Values returns all known values for RepositorySortBy. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (RepositorySortBy) Values() []RepositorySortBy {
return []RepositorySortBy{
"CRITICAL",
"HIGH",
"ALL",
"AFFECTED_IMAGES",
}
}
type ResourceMapComparison string
// Enum values for ResourceMapComparison
const (
ResourceMapComparisonEquals ResourceMapComparison = "EQUALS"
)
// Values returns all known values for ResourceMapComparison. Note that this can
// be expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceMapComparison) Values() []ResourceMapComparison {
return []ResourceMapComparison{
"EQUALS",
}
}
type ResourceScanType string
// Enum values for ResourceScanType
const (
ResourceScanTypeEc2 ResourceScanType = "EC2"
ResourceScanTypeEcr ResourceScanType = "ECR"
ResourceScanTypeLambda ResourceScanType = "LAMBDA"
ResourceScanTypeLambdaCode ResourceScanType = "LAMBDA_CODE"
)
// Values returns all known values for ResourceScanType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceScanType) Values() []ResourceScanType {
return []ResourceScanType{
"EC2",
"ECR",
"LAMBDA",
"LAMBDA_CODE",
}
}
type ResourceStringComparison string
// Enum values for ResourceStringComparison
const (
ResourceStringComparisonEquals ResourceStringComparison = "EQUALS"
ResourceStringComparisonNotEquals ResourceStringComparison = "NOT_EQUALS"
)
// Values returns all known values for ResourceStringComparison. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (ResourceStringComparison) Values() []ResourceStringComparison {
return []ResourceStringComparison{
"EQUALS",
"NOT_EQUALS",
}
}
type ResourceType string
// Enum values for ResourceType
const (
ResourceTypeAwsEc2Instance ResourceType = "AWS_EC2_INSTANCE"
ResourceTypeAwsEcrContainerImage ResourceType = "AWS_ECR_CONTAINER_IMAGE"
ResourceTypeAwsEcrRepository ResourceType = "AWS_ECR_REPOSITORY"
ResourceTypeAwsLambdaFunction ResourceType = "AWS_LAMBDA_FUNCTION"
)
// Values returns all known values for ResourceType. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ResourceType) Values() []ResourceType {
return []ResourceType{
"AWS_EC2_INSTANCE",
"AWS_ECR_CONTAINER_IMAGE",
"AWS_ECR_REPOSITORY",
"AWS_LAMBDA_FUNCTION",
}
}
type Runtime string
// Enum values for Runtime
const (
RuntimeNodejs Runtime = "NODEJS"
RuntimeNodejs12X Runtime = "NODEJS_12_X"
RuntimeNodejs14X Runtime = "NODEJS_14_X"
RuntimeNodejs16X Runtime = "NODEJS_16_X"
RuntimeJava8 Runtime = "JAVA_8"
RuntimeJava8Al2 Runtime = "JAVA_8_AL2"
RuntimeJava11 Runtime = "JAVA_11"
RuntimePython37 Runtime = "PYTHON_3_7"
RuntimePython38 Runtime = "PYTHON_3_8"
RuntimePython39 Runtime = "PYTHON_3_9"
RuntimeUnsupported Runtime = "UNSUPPORTED"
RuntimeNodejs18X Runtime = "NODEJS_18_X"
RuntimeGo1X Runtime = "GO_1_X"
RuntimeJava17 Runtime = "JAVA_17"
RuntimePython310 Runtime = "PYTHON_3_10"
)
// Values returns all known values for Runtime. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Runtime) Values() []Runtime {
return []Runtime{
"NODEJS",
"NODEJS_12_X",
"NODEJS_14_X",
"NODEJS_16_X",
"JAVA_8",
"JAVA_8_AL2",
"JAVA_11",
"PYTHON_3_7",
"PYTHON_3_8",
"PYTHON_3_9",
"UNSUPPORTED",
"NODEJS_18_X",
"GO_1_X",
"JAVA_17",
"PYTHON_3_10",
}
}
type SbomReportFormat string
// Enum values for SbomReportFormat
const (
SbomReportFormatCyclonedx14 SbomReportFormat = "CYCLONEDX_1_4"
SbomReportFormatSpdx23 SbomReportFormat = "SPDX_2_3"
)
// Values returns all known values for SbomReportFormat. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (SbomReportFormat) Values() []SbomReportFormat {
return []SbomReportFormat{
"CYCLONEDX_1_4",
"SPDX_2_3",
}
}
type ScanStatusCode string
// Enum values for ScanStatusCode
const (
ScanStatusCodeActive ScanStatusCode = "ACTIVE"
ScanStatusCodeInactive ScanStatusCode = "INACTIVE"
)
// Values returns all known values for ScanStatusCode. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ScanStatusCode) Values() []ScanStatusCode {
return []ScanStatusCode{
"ACTIVE",
"INACTIVE",
}
}
type ScanStatusReason string
// Enum values for ScanStatusReason
const (
ScanStatusReasonPendingInitialScan ScanStatusReason = "PENDING_INITIAL_SCAN"
ScanStatusReasonAccessDenied ScanStatusReason = "ACCESS_DENIED"
ScanStatusReasonInternalError ScanStatusReason = "INTERNAL_ERROR"
ScanStatusReasonUnmanagedEc2Instance ScanStatusReason = "UNMANAGED_EC2_INSTANCE"
ScanStatusReasonUnsupportedOs ScanStatusReason = "UNSUPPORTED_OS"
ScanStatusReasonScanEligibilityExpired ScanStatusReason = "SCAN_ELIGIBILITY_EXPIRED"
ScanStatusReasonResourceTerminated ScanStatusReason = "RESOURCE_TERMINATED"
ScanStatusReasonSuccessful ScanStatusReason = "SUCCESSFUL"
ScanStatusReasonNoResourcesFound ScanStatusReason = "NO_RESOURCES_FOUND"
ScanStatusReasonImageSizeExceeded ScanStatusReason = "IMAGE_SIZE_EXCEEDED"
ScanStatusReasonScanFrequencyManual ScanStatusReason = "SCAN_FREQUENCY_MANUAL"
ScanStatusReasonScanFrequencyScanOnPush ScanStatusReason = "SCAN_FREQUENCY_SCAN_ON_PUSH"
ScanStatusReasonEc2InstanceStopped ScanStatusReason = "EC2_INSTANCE_STOPPED"
ScanStatusReasonPendingDisable ScanStatusReason = "PENDING_DISABLE"
ScanStatusReasonNoInventory ScanStatusReason = "NO_INVENTORY"
ScanStatusReasonStaleInventory ScanStatusReason = "STALE_INVENTORY"
ScanStatusReasonExcludedByTag ScanStatusReason = "EXCLUDED_BY_TAG"
ScanStatusReasonUnsupportedRuntime ScanStatusReason = "UNSUPPORTED_RUNTIME"
ScanStatusReasonUnsupportedMediaType ScanStatusReason = "UNSUPPORTED_MEDIA_TYPE"
ScanStatusReasonUnsupportedConfigFile ScanStatusReason = "UNSUPPORTED_CONFIG_FILE"
ScanStatusReasonDeepInspectionPackageCollectionLimitExceeded ScanStatusReason = "DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED"
ScanStatusReasonDeepInspectionDailySsmInventoryLimitExceeded ScanStatusReason = "DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED"
ScanStatusReasonDeepInspectionCollectionTimeLimitExceeded ScanStatusReason = "DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED"
ScanStatusReasonDeepInspectionNoInventory ScanStatusReason = "DEEP_INSPECTION_NO_INVENTORY"
)
// Values returns all known values for ScanStatusReason. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (ScanStatusReason) Values() []ScanStatusReason {
return []ScanStatusReason{
"PENDING_INITIAL_SCAN",
"ACCESS_DENIED",
"INTERNAL_ERROR",
"UNMANAGED_EC2_INSTANCE",
"UNSUPPORTED_OS",
"SCAN_ELIGIBILITY_EXPIRED",
"RESOURCE_TERMINATED",
"SUCCESSFUL",
"NO_RESOURCES_FOUND",
"IMAGE_SIZE_EXCEEDED",
"SCAN_FREQUENCY_MANUAL",
"SCAN_FREQUENCY_SCAN_ON_PUSH",
"EC2_INSTANCE_STOPPED",
"PENDING_DISABLE",
"NO_INVENTORY",
"STALE_INVENTORY",
"EXCLUDED_BY_TAG",
"UNSUPPORTED_RUNTIME",
"UNSUPPORTED_MEDIA_TYPE",
"UNSUPPORTED_CONFIG_FILE",
"DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED",
"DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED",
"DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED",
"DEEP_INSPECTION_NO_INVENTORY",
}
}
type ScanType string
// Enum values for ScanType
const (
ScanTypeNetwork ScanType = "NETWORK"
ScanTypePackage ScanType = "PACKAGE"
ScanTypeCode ScanType = "CODE"
)
// Values returns all known values for ScanType. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (ScanType) Values() []ScanType {
return []ScanType{
"NETWORK",
"PACKAGE",
"CODE",
}
}
type Service string
// Enum values for Service
const (
ServiceEc2 Service = "EC2"
ServiceEcr Service = "ECR"
ServiceLambda Service = "LAMBDA"
)
// Values returns all known values for Service. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Service) Values() []Service {
return []Service{
"EC2",
"ECR",
"LAMBDA",
}
}
type Severity string
// Enum values for Severity
const (
SeverityInformational Severity = "INFORMATIONAL"
SeverityLow Severity = "LOW"
SeverityMedium Severity = "MEDIUM"
SeverityHigh Severity = "HIGH"
SeverityCritical Severity = "CRITICAL"
SeverityUntriaged Severity = "UNTRIAGED"
)
// Values returns all known values for Severity. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Severity) Values() []Severity {
return []Severity{
"INFORMATIONAL",
"LOW",
"MEDIUM",
"HIGH",
"CRITICAL",
"UNTRIAGED",
}
}
type SortField string
// Enum values for SortField
const (
SortFieldAwsAccountId SortField = "AWS_ACCOUNT_ID"
SortFieldFindingType SortField = "FINDING_TYPE"
SortFieldSeverity SortField = "SEVERITY"
SortFieldFirstObservedAt SortField = "FIRST_OBSERVED_AT"
SortFieldLastObservedAt SortField = "LAST_OBSERVED_AT"
SortFieldFindingStatus SortField = "FINDING_STATUS"
SortFieldResourceType SortField = "RESOURCE_TYPE"
SortFieldEcrImagePushedAt SortField = "ECR_IMAGE_PUSHED_AT"
SortFieldEcrImageRepositoryName SortField = "ECR_IMAGE_REPOSITORY_NAME"
SortFieldEcrImageRegistry SortField = "ECR_IMAGE_REGISTRY"
SortFieldNetworkProtocol SortField = "NETWORK_PROTOCOL"
SortFieldComponentType SortField = "COMPONENT_TYPE"
SortFieldVulnerabilityId SortField = "VULNERABILITY_ID"
SortFieldVulnerabilitySource SortField = "VULNERABILITY_SOURCE"
SortFieldInspectorScore SortField = "INSPECTOR_SCORE"
SortFieldVendorSeverity SortField = "VENDOR_SEVERITY"
SortFieldEpssScore SortField = "EPSS_SCORE"
)
// Values returns all known values for SortField. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (SortField) Values() []SortField {
return []SortField{
"AWS_ACCOUNT_ID",
"FINDING_TYPE",
"SEVERITY",
"FIRST_OBSERVED_AT",
"LAST_OBSERVED_AT",
"FINDING_STATUS",
"RESOURCE_TYPE",
"ECR_IMAGE_PUSHED_AT",
"ECR_IMAGE_REPOSITORY_NAME",
"ECR_IMAGE_REGISTRY",
"NETWORK_PROTOCOL",
"COMPONENT_TYPE",
"VULNERABILITY_ID",
"VULNERABILITY_SOURCE",
"INSPECTOR_SCORE",
"VENDOR_SEVERITY",
"EPSS_SCORE",
}
}
type SortOrder string
// Enum values for SortOrder
const (
SortOrderAsc SortOrder = "ASC"
SortOrderDesc SortOrder = "DESC"
)
// Values returns all known values for SortOrder. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (SortOrder) Values() []SortOrder {
return []SortOrder{
"ASC",
"DESC",
}
}
type Status string
// Enum values for Status
const (
StatusEnabling Status = "ENABLING"
StatusEnabled Status = "ENABLED"
StatusDisabling Status = "DISABLING"
StatusDisabled Status = "DISABLED"
StatusSuspending Status = "SUSPENDING"
StatusSuspended Status = "SUSPENDED"
)
// Values returns all known values for Status. Note that this can be expanded in
// the future, and so it is only as up to date as the client. The ordering of this
// slice is not guaranteed to be stable across updates.
func (Status) Values() []Status {
return []Status{
"ENABLING",
"ENABLED",
"DISABLING",
"DISABLED",
"SUSPENDING",
"SUSPENDED",
}
}
type StringComparison string
// Enum values for StringComparison
const (
StringComparisonEquals StringComparison = "EQUALS"
StringComparisonPrefix StringComparison = "PREFIX"
StringComparisonNotEquals StringComparison = "NOT_EQUALS"
)
// Values returns all known values for StringComparison. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (StringComparison) Values() []StringComparison {
return []StringComparison{
"EQUALS",
"PREFIX",
"NOT_EQUALS",
}
}
type TitleSortBy string
// Enum values for TitleSortBy
const (
TitleSortByCritical TitleSortBy = "CRITICAL"
TitleSortByHigh TitleSortBy = "HIGH"
TitleSortByAll TitleSortBy = "ALL"
)
// Values returns all known values for TitleSortBy. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (TitleSortBy) Values() []TitleSortBy {
return []TitleSortBy{
"CRITICAL",
"HIGH",
"ALL",
}
}
type UsageType string
// Enum values for UsageType
const (
UsageTypeEc2InstanceHours UsageType = "EC2_INSTANCE_HOURS"
UsageTypeEcrInitialScan UsageType = "ECR_INITIAL_SCAN"
UsageTypeEcrRescan UsageType = "ECR_RESCAN"
UsageTypeLambdaFunctionHours UsageType = "LAMBDA_FUNCTION_HOURS"
UsageTypeLambdaFunctionCodeHours UsageType = "LAMBDA_FUNCTION_CODE_HOURS"
)
// Values returns all known values for UsageType. Note that this can be expanded
// in the future, and so it is only as up to date as the client. The ordering of
// this slice is not guaranteed to be stable across updates.
func (UsageType) Values() []UsageType {
return []UsageType{
"EC2_INSTANCE_HOURS",
"ECR_INITIAL_SCAN",
"ECR_RESCAN",
"LAMBDA_FUNCTION_HOURS",
"LAMBDA_FUNCTION_CODE_HOURS",
}
}
type ValidationExceptionReason string
// Enum values for ValidationExceptionReason
const (
ValidationExceptionReasonCannotParse ValidationExceptionReason = "CANNOT_PARSE"
ValidationExceptionReasonFieldValidationFailed ValidationExceptionReason = "FIELD_VALIDATION_FAILED"
ValidationExceptionReasonOther ValidationExceptionReason = "OTHER"
)
// Values returns all known values for ValidationExceptionReason. Note that this
// can be expanded in the future, and so it is only as up to date as the client.
// The ordering of this slice is not guaranteed to be stable across updates.
func (ValidationExceptionReason) Values() []ValidationExceptionReason {
return []ValidationExceptionReason{
"CANNOT_PARSE",
"FIELD_VALIDATION_FAILED",
"OTHER",
}
}
type VulnerabilitySource string
// Enum values for VulnerabilitySource
const (
VulnerabilitySourceNvd VulnerabilitySource = "NVD"
)
// Values returns all known values for VulnerabilitySource. Note that this can be
// expanded in the future, and so it is only as up to date as the client. The
// ordering of this slice is not guaranteed to be stable across updates.
func (VulnerabilitySource) Values() []VulnerabilitySource {
return []VulnerabilitySource{
"NVD",
}
}
|