@aws-sdk/client-inspector2 3.1080.0 → 3.1082.0

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.
Files changed (101) hide show
  1. package/README.md +42 -0
  2. package/dist-cjs/index.js +967 -133
  3. package/dist-es/Inspector2.js +25 -1
  4. package/dist-es/commands/CreateConnectorCommand.js +4 -0
  5. package/dist-es/commands/DeleteConnectorCommand.js +4 -0
  6. package/dist-es/commands/ListConnectorScanConfigurationsCommand.js +4 -0
  7. package/dist-es/commands/ListConnectorsCommand.js +4 -0
  8. package/dist-es/commands/UpdateConnectorCommand.js +4 -0
  9. package/dist-es/commands/UpdateConnectorScanConfigurationCommand.js +4 -0
  10. package/dist-es/commands/index.js +6 -0
  11. package/dist-es/index.js +1 -0
  12. package/dist-es/models/enums.js +130 -0
  13. package/dist-es/pagination/ListConnectorScanConfigurationsPaginator.js +4 -0
  14. package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
  15. package/dist-es/pagination/index.js +2 -0
  16. package/dist-es/schemas/schemas_0.js +542 -130
  17. package/dist-es/waiters/index.js +3 -0
  18. package/dist-es/waiters/waitForConnectorConnected.js +69 -0
  19. package/dist-es/waiters/waitForConnectorDeleted.js +46 -0
  20. package/dist-es/waiters/waitForConnectorEnabled.js +69 -0
  21. package/dist-types/Inspector2.d.ts +78 -1
  22. package/dist-types/Inspector2Client.d.ts +8 -2
  23. package/dist-types/commands/BatchGetFreeTrialInfoCommand.d.ts +1 -0
  24. package/dist-types/commands/CreateConnectorCommand.d.ts +167 -0
  25. package/dist-types/commands/CreateFilterCommand.d.ts +24 -0
  26. package/dist-types/commands/CreateFindingsReportCommand.d.ts +24 -0
  27. package/dist-types/commands/DeleteConnectorCommand.d.ts +105 -0
  28. package/dist-types/commands/GetConfigurationCommand.d.ts +18 -3
  29. package/dist-types/commands/GetFindingsReportStatusCommand.d.ts +24 -0
  30. package/dist-types/commands/ListCodeSecurityScanConfigurationAssociationsCommand.d.ts +2 -1
  31. package/dist-types/commands/ListCodeSecurityScanConfigurationsCommand.d.ts +1 -1
  32. package/dist-types/commands/ListConnectorScanConfigurationsCommand.d.ts +135 -0
  33. package/dist-types/commands/ListConnectorsCommand.d.ts +226 -0
  34. package/dist-types/commands/ListCoverageCommand.d.ts +59 -1
  35. package/dist-types/commands/ListCoverageStatisticsCommand.d.ts +24 -1
  36. package/dist-types/commands/ListDelegatedAdminAccountsCommand.d.ts +1 -1
  37. package/dist-types/commands/ListFiltersCommand.d.ts +25 -1
  38. package/dist-types/commands/ListFindingAggregationsCommand.d.ts +149 -2
  39. package/dist-types/commands/ListFindingsCommand.d.ts +86 -1
  40. package/dist-types/commands/ListMembersCommand.d.ts +1 -1
  41. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  42. package/dist-types/commands/ListUsageTotalsCommand.d.ts +2 -1
  43. package/dist-types/commands/ResetEncryptionKeyCommand.d.ts +1 -1
  44. package/dist-types/commands/SearchVulnerabilitiesCommand.d.ts +1 -1
  45. package/dist-types/commands/SendCisSessionHealthCommand.d.ts +1 -1
  46. package/dist-types/commands/SendCisSessionTelemetryCommand.d.ts +1 -1
  47. package/dist-types/commands/UpdateConfigurationCommand.d.ts +11 -3
  48. package/dist-types/commands/UpdateConnectorCommand.d.ts +146 -0
  49. package/dist-types/commands/UpdateConnectorScanConfigurationCommand.d.ts +117 -0
  50. package/dist-types/commands/UpdateFilterCommand.d.ts +24 -0
  51. package/dist-types/commands/index.d.ts +6 -0
  52. package/dist-types/index.d.ts +1 -0
  53. package/dist-types/models/enums.d.ts +282 -0
  54. package/dist-types/models/models_0.d.ts +3359 -1910
  55. package/dist-types/models/models_1.d.ts +932 -2
  56. package/dist-types/pagination/ListConnectorScanConfigurationsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/index.d.ts +2 -0
  59. package/dist-types/schemas/schemas_0.d.ts +51 -0
  60. package/dist-types/ts3.4/Inspector2.d.ts +147 -0
  61. package/dist-types/ts3.4/Inspector2Client.d.ts +36 -0
  62. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +43 -0
  63. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +43 -0
  64. package/dist-types/ts3.4/commands/GetConfigurationCommand.d.ts +1 -1
  65. package/dist-types/ts3.4/commands/ListCodeSecurityScanConfigurationAssociationsCommand.d.ts +2 -4
  66. package/dist-types/ts3.4/commands/ListCodeSecurityScanConfigurationsCommand.d.ts +1 -1
  67. package/dist-types/ts3.4/commands/ListConnectorScanConfigurationsCommand.d.ts +44 -0
  68. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +43 -0
  69. package/dist-types/ts3.4/commands/ListCoverageCommand.d.ts +1 -1
  70. package/dist-types/ts3.4/commands/ListCoverageStatisticsCommand.d.ts +1 -1
  71. package/dist-types/ts3.4/commands/ListDelegatedAdminAccountsCommand.d.ts +1 -1
  72. package/dist-types/ts3.4/commands/ListFiltersCommand.d.ts +1 -1
  73. package/dist-types/ts3.4/commands/ListFindingAggregationsCommand.d.ts +1 -1
  74. package/dist-types/ts3.4/commands/ListFindingsCommand.d.ts +1 -1
  75. package/dist-types/ts3.4/commands/ListMembersCommand.d.ts +1 -1
  76. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  77. package/dist-types/ts3.4/commands/ListUsageTotalsCommand.d.ts +1 -1
  78. package/dist-types/ts3.4/commands/ResetEncryptionKeyCommand.d.ts +1 -1
  79. package/dist-types/ts3.4/commands/SearchVulnerabilitiesCommand.d.ts +1 -1
  80. package/dist-types/ts3.4/commands/SendCisSessionHealthCommand.d.ts +1 -1
  81. package/dist-types/ts3.4/commands/SendCisSessionTelemetryCommand.d.ts +1 -1
  82. package/dist-types/ts3.4/commands/UpdateConnectorCommand.d.ts +43 -0
  83. package/dist-types/ts3.4/commands/UpdateConnectorScanConfigurationCommand.d.ts +44 -0
  84. package/dist-types/ts3.4/commands/index.d.ts +6 -0
  85. package/dist-types/ts3.4/index.d.ts +1 -0
  86. package/dist-types/ts3.4/models/enums.d.ts +162 -0
  87. package/dist-types/ts3.4/models/models_0.d.ts +571 -166
  88. package/dist-types/ts3.4/models/models_1.d.ts +248 -1
  89. package/dist-types/ts3.4/pagination/ListConnectorScanConfigurationsPaginator.d.ts +11 -0
  90. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
  91. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  92. package/dist-types/ts3.4/schemas/schemas_0.d.ts +51 -0
  93. package/dist-types/ts3.4/waiters/index.d.ts +3 -0
  94. package/dist-types/ts3.4/waiters/waitForConnectorConnected.d.ts +17 -0
  95. package/dist-types/ts3.4/waiters/waitForConnectorDeleted.d.ts +17 -0
  96. package/dist-types/ts3.4/waiters/waitForConnectorEnabled.d.ts +17 -0
  97. package/dist-types/waiters/index.d.ts +3 -0
  98. package/dist-types/waiters/waitForConnectorConnected.d.ts +15 -0
  99. package/dist-types/waiters/waitForConnectorDeleted.d.ts +15 -0
  100. package/dist-types/waiters/waitForConnectorEnabled.d.ts +15 -0
  101. package/package.json +8 -8
@@ -36,6 +36,9 @@ export declare const AggregationResourceType: {
36
36
  readonly AWS_ECR_CONTAINER_IMAGE: "AWS_ECR_CONTAINER_IMAGE";
37
37
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
38
38
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
39
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
40
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
41
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
39
42
  };
40
43
  /**
41
44
  * @public
@@ -159,6 +162,19 @@ export declare const CodeRepositorySortBy: {
159
162
  * @public
160
163
  */
161
164
  export type CodeRepositorySortBy = (typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
165
+ /**
166
+ * @public
167
+ * @enum
168
+ */
169
+ export declare const ContainerImageSortBy: {
170
+ readonly ALL: "ALL";
171
+ readonly CRITICAL: "CRITICAL";
172
+ readonly HIGH: "HIGH";
173
+ };
174
+ /**
175
+ * @public
176
+ */
177
+ export type ContainerImageSortBy = (typeof ContainerImageSortBy)[keyof typeof ContainerImageSortBy];
162
178
  /**
163
179
  * @public
164
180
  * @enum
@@ -263,6 +279,19 @@ export declare const RepositorySortBy: {
263
279
  * @public
264
280
  */
265
281
  export type RepositorySortBy = (typeof RepositorySortBy)[keyof typeof RepositorySortBy];
282
+ /**
283
+ * @public
284
+ * @enum
285
+ */
286
+ export declare const ServerlessFunctionSortBy: {
287
+ readonly ALL: "ALL";
288
+ readonly CRITICAL: "CRITICAL";
289
+ readonly HIGH: "HIGH";
290
+ };
291
+ /**
292
+ * @public
293
+ */
294
+ export type ServerlessFunctionSortBy = (typeof ServerlessFunctionSortBy)[keyof typeof ServerlessFunctionSortBy];
266
295
  /**
267
296
  * @public
268
297
  * @enum
@@ -276,6 +305,32 @@ export declare const TitleSortBy: {
276
305
  * @public
277
306
  */
278
307
  export type TitleSortBy = (typeof TitleSortBy)[keyof typeof TitleSortBy];
308
+ /**
309
+ * @public
310
+ * @enum
311
+ */
312
+ export declare const VmInstanceSortBy: {
313
+ readonly ALL: "ALL";
314
+ readonly CRITICAL: "CRITICAL";
315
+ readonly HIGH: "HIGH";
316
+ readonly NETWORK_FINDINGS: "NETWORK_FINDINGS";
317
+ };
318
+ /**
319
+ * @public
320
+ */
321
+ export type VmInstanceSortBy = (typeof VmInstanceSortBy)[keyof typeof VmInstanceSortBy];
322
+ /**
323
+ * @public
324
+ * @enum
325
+ */
326
+ export declare const Provider: {
327
+ readonly AWS: "AWS";
328
+ readonly AZURE: "AZURE";
329
+ };
330
+ /**
331
+ * @public
332
+ */
333
+ export type Provider = (typeof Provider)[keyof typeof Provider];
279
334
  /**
280
335
  * @public
281
336
  * @enum
@@ -287,12 +342,15 @@ export declare const AggregationType: {
287
342
  readonly AWS_ECR_CONTAINER: "AWS_ECR_CONTAINER";
288
343
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
289
344
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
345
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
290
346
  readonly FINDING_TYPE: "FINDING_TYPE";
291
347
  readonly IMAGE_LAYER: "IMAGE_LAYER";
292
348
  readonly LAMBDA_LAYER: "LAMBDA_LAYER";
293
349
  readonly PACKAGE: "PACKAGE";
294
350
  readonly REPOSITORY: "REPOSITORY";
351
+ readonly SERVERLESS_FUNCTION: "SERVERLESS_FUNCTION";
295
352
  readonly TITLE: "TITLE";
353
+ readonly VM_INSTANCE: "VM_INSTANCE";
296
354
  };
297
355
  /**
298
356
  * @public
@@ -339,6 +397,17 @@ export declare const AssociationResultStatusCode: {
339
397
  * @public
340
398
  */
341
399
  export type AssociationResultStatusCode = (typeof AssociationResultStatusCode)[keyof typeof AssociationResultStatusCode];
400
+ /**
401
+ * @public
402
+ * @enum
403
+ */
404
+ export declare const AwsConfigConnectorArnComparison: {
405
+ readonly EQUALS: "EQUALS";
406
+ };
407
+ /**
408
+ * @public
409
+ */
410
+ export type AwsConfigConnectorArnComparison = (typeof AwsConfigConnectorArnComparison)[keyof typeof AwsConfigConnectorArnComparison];
342
411
  /**
343
412
  * @public
344
413
  * @enum
@@ -363,6 +432,8 @@ export declare const Runtime: {
363
432
  readonly GO_1_X: "GO_1_X";
364
433
  readonly JAVA_11: "JAVA_11";
365
434
  readonly JAVA_17: "JAVA_17";
435
+ readonly JAVA_21: "JAVA_21";
436
+ readonly JAVA_25: "JAVA_25";
366
437
  readonly JAVA_8: "JAVA_8";
367
438
  readonly JAVA_8_AL2: "JAVA_8_AL2";
368
439
  readonly NODEJS: "NODEJS";
@@ -370,6 +441,7 @@ export declare const Runtime: {
370
441
  readonly NODEJS_14_X: "NODEJS_14_X";
371
442
  readonly NODEJS_16_X: "NODEJS_16_X";
372
443
  readonly NODEJS_18_X: "NODEJS_18_X";
444
+ readonly NODEJS_22_X: "NODEJS_22_X";
373
445
  readonly NODEJS_24_X: "NODEJS_24_X";
374
446
  readonly PYTHON_3_10: "PYTHON_3_10";
375
447
  readonly PYTHON_3_11: "PYTHON_3_11";
@@ -384,6 +456,32 @@ export declare const Runtime: {
384
456
  * @public
385
457
  */
386
458
  export type Runtime = (typeof Runtime)[keyof typeof Runtime];
459
+ /**
460
+ * @public
461
+ * @enum
462
+ */
463
+ export declare const ScopeType: {
464
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
465
+ readonly TENANT: "TENANT";
466
+ };
467
+ /**
468
+ * @public
469
+ */
470
+ export type ScopeType = (typeof ScopeType)[keyof typeof ScopeType];
471
+ /**
472
+ * @public
473
+ * @enum
474
+ */
475
+ export declare const ScopeState: {
476
+ readonly ACTIVE: "ACTIVE";
477
+ readonly DISABLED: "DISABLED";
478
+ readonly ERROR: "ERROR";
479
+ readonly PENDING: "PENDING";
480
+ };
481
+ /**
482
+ * @public
483
+ */
484
+ export type ScopeState = (typeof ScopeState)[keyof typeof ScopeState];
387
485
  /**
388
486
  * @public
389
487
  * @enum
@@ -412,6 +510,19 @@ export declare const FindingDetailsErrorCode: {
412
510
  * @public
413
511
  */
414
512
  export type FindingDetailsErrorCode = (typeof FindingDetailsErrorCode)[keyof typeof FindingDetailsErrorCode];
513
+ /**
514
+ * @public
515
+ * @enum
516
+ */
517
+ export declare const CloudProvider: {
518
+ readonly AWS: "AWS";
519
+ readonly AZURE: "AZURE";
520
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
521
+ };
522
+ /**
523
+ * @public
524
+ */
525
+ export type CloudProvider = (typeof CloudProvider)[keyof typeof CloudProvider];
415
526
  /**
416
527
  * @public
417
528
  * @enum
@@ -430,10 +541,13 @@ export type FreeTrialStatus = (typeof FreeTrialStatus)[keyof typeof FreeTrialSta
430
541
  */
431
542
  export declare const FreeTrialType: {
432
543
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
544
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
433
545
  readonly EC2: "EC2";
434
546
  readonly ECR: "ECR";
435
547
  readonly LAMBDA: "LAMBDA";
436
548
  readonly LAMBDA_CODE: "LAMBDA_CODE";
549
+ readonly SERVERLESS_FUNCTION: "SERVERLESS_FUNCTION";
550
+ readonly VM: "VM";
437
551
  };
438
552
  /**
439
553
  * @public
@@ -772,7 +886,9 @@ export declare const ScanStatusReason: {
772
886
  readonly PENDING_DISABLE: "PENDING_DISABLE";
773
887
  readonly PENDING_INITIAL_SCAN: "PENDING_INITIAL_SCAN";
774
888
  readonly PENDING_REVIVAL_SCAN: "PENDING_REVIVAL_SCAN";
889
+ readonly RESOURCE_STOPPED: "RESOURCE_STOPPED";
775
890
  readonly RESOURCE_TERMINATED: "RESOURCE_TERMINATED";
891
+ readonly RESOURCE_UNMANAGED: "RESOURCE_UNMANAGED";
776
892
  readonly SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED";
777
893
  readonly SCAN_FREQUENCY_MANUAL: "SCAN_FREQUENCY_MANUAL";
778
894
  readonly SCAN_FREQUENCY_SCAN_ON_PUSH: "SCAN_FREQUENCY_SCAN_ON_PUSH";
@@ -905,6 +1021,131 @@ export declare const ConfigurationLevel: {
905
1021
  * @public
906
1022
  */
907
1023
  export type ConfigurationLevel = (typeof ConfigurationLevel)[keyof typeof ConfigurationLevel];
1024
+ /**
1025
+ * @public
1026
+ * @enum
1027
+ */
1028
+ export declare const EnablementStatus: {
1029
+ readonly DELETED: "DELETED";
1030
+ readonly ENABLED: "ENABLED";
1031
+ readonly FAILED_TO_DELETE: "FAILED_TO_DELETE";
1032
+ readonly FAILED_TO_ENABLE: "FAILED_TO_ENABLE";
1033
+ readonly FAILED_TO_UPDATE: "FAILED_TO_UPDATE";
1034
+ readonly PENDING_DELETION: "PENDING_DELETION";
1035
+ readonly PENDING_ENABLEMENT: "PENDING_ENABLEMENT";
1036
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
1037
+ };
1038
+ /**
1039
+ * @public
1040
+ */
1041
+ export type EnablementStatus = (typeof EnablementStatus)[keyof typeof EnablementStatus];
1042
+ /**
1043
+ * @public
1044
+ * @enum
1045
+ */
1046
+ export declare const ConnectorHealthStatus: {
1047
+ readonly CONNECTED: "CONNECTED";
1048
+ readonly DEGRADED: "DEGRADED";
1049
+ readonly FAILED_TO_CONNECT: "FAILED_TO_CONNECT";
1050
+ readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
1051
+ readonly PENDING_CONFIGURATION: "PENDING_CONFIGURATION";
1052
+ readonly UNKNOWN: "UNKNOWN";
1053
+ };
1054
+ /**
1055
+ * @public
1056
+ */
1057
+ export type ConnectorHealthStatus = (typeof ConnectorHealthStatus)[keyof typeof ConnectorHealthStatus];
1058
+ /**
1059
+ * @public
1060
+ * @enum
1061
+ */
1062
+ export declare const ConnectorCloudProvider: {
1063
+ readonly AZURE: "AZURE";
1064
+ };
1065
+ /**
1066
+ * @public
1067
+ */
1068
+ export type ConnectorCloudProvider = (typeof ConnectorCloudProvider)[keyof typeof ConnectorCloudProvider];
1069
+ /**
1070
+ * @public
1071
+ * @enum
1072
+ */
1073
+ export declare const ConnectorArnComparison: {
1074
+ readonly EQUALS: "EQUALS";
1075
+ };
1076
+ /**
1077
+ * @public
1078
+ */
1079
+ export type ConnectorArnComparison = (typeof ConnectorArnComparison)[keyof typeof ConnectorArnComparison];
1080
+ /**
1081
+ * @public
1082
+ * @enum
1083
+ */
1084
+ export declare const ContainerImagePullDateRescanDuration: {
1085
+ readonly DAYS_14: "DAYS_14";
1086
+ readonly DAYS_180: "DAYS_180";
1087
+ readonly DAYS_3: "DAYS_3";
1088
+ readonly DAYS_30: "DAYS_30";
1089
+ readonly DAYS_60: "DAYS_60";
1090
+ readonly DAYS_7: "DAYS_7";
1091
+ readonly DAYS_90: "DAYS_90";
1092
+ };
1093
+ /**
1094
+ * @public
1095
+ */
1096
+ export type ContainerImagePullDateRescanDuration = (typeof ContainerImagePullDateRescanDuration)[keyof typeof ContainerImagePullDateRescanDuration];
1097
+ /**
1098
+ * @public
1099
+ * @enum
1100
+ */
1101
+ export declare const ContainerImageRescanDuration: {
1102
+ readonly DAYS_14: "DAYS_14";
1103
+ readonly DAYS_180: "DAYS_180";
1104
+ readonly DAYS_3: "DAYS_3";
1105
+ readonly DAYS_30: "DAYS_30";
1106
+ readonly DAYS_60: "DAYS_60";
1107
+ readonly DAYS_7: "DAYS_7";
1108
+ readonly DAYS_90: "DAYS_90";
1109
+ readonly LIFETIME: "LIFETIME";
1110
+ };
1111
+ /**
1112
+ * @public
1113
+ */
1114
+ export type ContainerImageRescanDuration = (typeof ContainerImageRescanDuration)[keyof typeof ContainerImageRescanDuration];
1115
+ /**
1116
+ * @public
1117
+ * @enum
1118
+ */
1119
+ export declare const ConnectorTypeComparison: {
1120
+ readonly EQUALS: "EQUALS";
1121
+ };
1122
+ /**
1123
+ * @public
1124
+ */
1125
+ export type ConnectorTypeComparison = (typeof ConnectorTypeComparison)[keyof typeof ConnectorTypeComparison];
1126
+ /**
1127
+ * @public
1128
+ * @enum
1129
+ */
1130
+ export declare const ConnectorType: {
1131
+ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
1132
+ readonly SERVICE_LINKED: "SERVICE_LINKED";
1133
+ };
1134
+ /**
1135
+ * @public
1136
+ */
1137
+ export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
1138
+ /**
1139
+ * @public
1140
+ * @enum
1141
+ */
1142
+ export declare const ProviderComparison: {
1143
+ readonly EQUALS: "EQUALS";
1144
+ };
1145
+ /**
1146
+ * @public
1147
+ */
1148
+ export type ProviderComparison = (typeof ProviderComparison)[keyof typeof ProviderComparison];
908
1149
  /**
909
1150
  * @public
910
1151
  * @enum
@@ -912,6 +1153,10 @@ export type ConfigurationLevel = (typeof ConfigurationLevel)[keyof typeof Config
912
1153
  export declare const GroupKey: {
913
1154
  readonly ACCOUNT_ID: "ACCOUNT_ID";
914
1155
  readonly ECR_REPOSITORY_NAME: "ECR_REPOSITORY_NAME";
1156
+ readonly PROVIDER: "PROVIDER";
1157
+ readonly PROVIDER_ACCOUNT_ID: "PROVIDER_ACCOUNT_ID";
1158
+ readonly PROVIDER_ORG_ID: "PROVIDER_ORG_ID";
1159
+ readonly PROVIDER_REGION: "PROVIDER_REGION";
915
1160
  readonly RESOURCE_TYPE: "RESOURCE_TYPE";
916
1161
  readonly SCAN_STATUS_CODE: "SCAN_STATUS_CODE";
917
1162
  readonly SCAN_STATUS_REASON: "SCAN_STATUS_REASON";
@@ -953,6 +1198,11 @@ export declare const CoverageResourceType: {
953
1198
  readonly AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY";
954
1199
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
955
1200
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
1201
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
1202
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRIES: "Microsoft.ContainerRegistry/registries";
1203
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
1204
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_REPOSITORY: "Microsoft.ContainerRegistry/registry/containerRepository";
1205
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
956
1206
  };
957
1207
  /**
958
1208
  * @public
@@ -985,6 +1235,19 @@ export declare const EcrScanFrequency: {
985
1235
  * @public
986
1236
  */
987
1237
  export type EcrScanFrequency = (typeof EcrScanFrequency)[keyof typeof EcrScanFrequency];
1238
+ /**
1239
+ * @public
1240
+ * @enum
1241
+ */
1242
+ export declare const VmPlatform: {
1243
+ readonly LINUX: "LINUX";
1244
+ readonly UNKNOWN: "UNKNOWN";
1245
+ readonly WINDOWS: "WINDOWS";
1246
+ };
1247
+ /**
1248
+ * @public
1249
+ */
1250
+ export type VmPlatform = (typeof VmPlatform)[keyof typeof VmPlatform];
988
1251
  /**
989
1252
  * @public
990
1253
  * @enum
@@ -993,6 +1256,7 @@ export declare const ScanMode: {
993
1256
  readonly EC2_AGENTLESS: "EC2_AGENTLESS";
994
1257
  readonly EC2_INSPECTOR_AGENT_BASED: "EC2_INSPECTOR_AGENT_BASED";
995
1258
  readonly EC2_SSM_AGENT_BASED: "EC2_SSM_AGENT_BASED";
1259
+ readonly VM_INSPECTOR_AGENT_BASED: "VM_INSPECTOR_AGENT_BASED";
996
1260
  };
997
1261
  /**
998
1262
  * @public
@@ -1312,6 +1576,9 @@ export declare const ResourceType: {
1312
1576
  readonly AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY";
1313
1577
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
1314
1578
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
1579
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
1580
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
1581
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
1315
1582
  };
1316
1583
  /**
1317
1584
  * @public
@@ -1375,6 +1642,17 @@ export declare const ReportingErrorCode: {
1375
1642
  * @public
1376
1643
  */
1377
1644
  export type ReportingErrorCode = (typeof ReportingErrorCode)[keyof typeof ReportingErrorCode];
1645
+ /**
1646
+ * @public
1647
+ * @enum
1648
+ */
1649
+ export declare const InheritanceMode: {
1650
+ readonly INHERIT_FROM_ADMIN: "INHERIT_FROM_ADMIN";
1651
+ };
1652
+ /**
1653
+ * @public
1654
+ */
1655
+ export type InheritanceMode = (typeof InheritanceMode)[keyof typeof InheritanceMode];
1378
1656
  /**
1379
1657
  * @public
1380
1658
  * @enum
@@ -1460,6 +1738,10 @@ export type SortField = (typeof SortField)[keyof typeof SortField];
1460
1738
  * @enum
1461
1739
  */
1462
1740
  export declare const UsageType: {
1741
+ readonly AZURE_CONTAINER_IMAGE_INITIAL_SCAN: "AZURE_CONTAINER_IMAGE_INITIAL_SCAN";
1742
+ readonly AZURE_CONTAINER_IMAGE_RESCAN: "AZURE_CONTAINER_IMAGE_RESCAN";
1743
+ readonly AZURE_SERVERLESS_FUNCTION_HOURS: "AZURE_SERVERLESS_FUNCTION_HOURS";
1744
+ readonly AZURE_VM_AGENT_BASED_INSTANCE_HOURS: "AZURE_VM_AGENT_BASED_INSTANCE_HOURS";
1463
1745
  readonly CODE_REPOSITORY_IAC: "CODE_REPOSITORY_IAC";
1464
1746
  readonly CODE_REPOSITORY_SAST: "CODE_REPOSITORY_SAST";
1465
1747
  readonly CODE_REPOSITORY_SCA: "CODE_REPOSITORY_SCA";