@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
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListConnectorScanConfigurationsRequest,
4
+ ListConnectorScanConfigurationsResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface ListConnectorScanConfigurationsCommandInput
8
+ extends ListConnectorScanConfigurationsRequest {}
9
+ export interface ListConnectorScanConfigurationsCommandOutput
10
+ extends ListConnectorScanConfigurationsResponse,
11
+ __MetadataBearer {}
12
+ declare const ListConnectorScanConfigurationsCommand_base: {
13
+ new (
14
+ input: ListConnectorScanConfigurationsCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ ListConnectorScanConfigurationsCommandInput,
17
+ ListConnectorScanConfigurationsCommandOutput,
18
+ import("..").Inspector2ClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ ...[input]: [] | [ListConnectorScanConfigurationsCommandInput]
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ ListConnectorScanConfigurationsCommandInput,
26
+ ListConnectorScanConfigurationsCommandOutput,
27
+ import("..").Inspector2ClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class ListConnectorScanConfigurationsCommand extends ListConnectorScanConfigurationsCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: ListConnectorScanConfigurationsRequest;
37
+ output: ListConnectorScanConfigurationsResponse;
38
+ };
39
+ sdk: {
40
+ input: ListConnectorScanConfigurationsCommandInput;
41
+ output: ListConnectorScanConfigurationsCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -0,0 +1,43 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ ListConnectorsRequest,
4
+ ListConnectorsResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
8
+ export interface ListConnectorsCommandOutput
9
+ extends ListConnectorsResponse,
10
+ __MetadataBearer {}
11
+ declare const ListConnectorsCommand_base: {
12
+ new (
13
+ input: ListConnectorsCommandInput
14
+ ): import("@smithy/core/client").CommandImpl<
15
+ ListConnectorsCommandInput,
16
+ ListConnectorsCommandOutput,
17
+ import("..").Inspector2ClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
20
+ >;
21
+ new (
22
+ ...[input]: [] | [ListConnectorsCommandInput]
23
+ ): import("@smithy/core/client").CommandImpl<
24
+ ListConnectorsCommandInput,
25
+ ListConnectorsCommandOutput,
26
+ import("..").Inspector2ClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
+ };
32
+ export declare class ListConnectorsCommand extends ListConnectorsCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: ListConnectorsRequest;
36
+ output: ListConnectorsResponse;
37
+ };
38
+ sdk: {
39
+ input: ListConnectorsCommandInput;
40
+ output: ListConnectorsCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ListCoverageRequest, ListCoverageResponse } from "../models/models_0";
2
+ import { ListCoverageRequest, ListCoverageResponse } from "../models/models_1";
3
3
  export { __MetadataBearer };
4
4
  export interface ListCoverageCommandInput extends ListCoverageRequest {}
5
5
  export interface ListCoverageCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ListCoverageStatisticsRequest,
4
4
  ListCoverageStatisticsResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ListCoverageStatisticsCommandInput
8
8
  extends ListCoverageStatisticsRequest {}
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ListDelegatedAdminAccountsRequest,
4
4
  ListDelegatedAdminAccountsResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ListDelegatedAdminAccountsCommandInput
8
8
  extends ListDelegatedAdminAccountsRequest {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ListFiltersRequest, ListFiltersResponse } from "../models/models_0";
2
+ import { ListFiltersRequest, ListFiltersResponse } from "../models/models_1";
3
3
  export { __MetadataBearer };
4
4
  export interface ListFiltersCommandInput extends ListFiltersRequest {}
5
5
  export interface ListFiltersCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ListFindingAggregationsRequest,
4
4
  ListFindingAggregationsResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ListFindingAggregationsCommandInput
8
8
  extends ListFindingAggregationsRequest {}
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ListFindingsRequest, ListFindingsResponse } from "../models/models_0";
2
+ import { ListFindingsRequest, ListFindingsResponse } from "../models/models_1";
3
3
  export { __MetadataBearer };
4
4
  export interface ListFindingsCommandInput extends ListFindingsRequest {}
5
5
  export interface ListFindingsCommandOutput
@@ -1,5 +1,5 @@
1
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
- import { ListMembersRequest, ListMembersResponse } from "../models/models_0";
2
+ import { ListMembersRequest, ListMembersResponse } from "../models/models_1";
3
3
  export { __MetadataBearer };
4
4
  export interface ListMembersCommandInput extends ListMembersRequest {}
5
5
  export interface ListMembersCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ListTagsForResourceRequest,
4
4
  ListTagsForResourceResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ListTagsForResourceCommandInput
8
8
  extends ListTagsForResourceRequest {}
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ListUsageTotalsRequest,
4
4
  ListUsageTotalsResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ListUsageTotalsCommandInput extends ListUsageTotalsRequest {}
8
8
  export interface ListUsageTotalsCommandOutput
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  ResetEncryptionKeyRequest,
4
4
  ResetEncryptionKeyResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface ResetEncryptionKeyCommandInput
8
8
  extends ResetEncryptionKeyRequest {}
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  SearchVulnerabilitiesRequest,
4
4
  SearchVulnerabilitiesResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface SearchVulnerabilitiesCommandInput
8
8
  extends SearchVulnerabilitiesRequest {}
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  SendCisSessionHealthRequest,
4
4
  SendCisSessionHealthResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface SendCisSessionHealthCommandInput
8
8
  extends SendCisSessionHealthRequest {}
@@ -2,7 +2,7 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
2
  import {
3
3
  SendCisSessionTelemetryRequest,
4
4
  SendCisSessionTelemetryResponse,
5
- } from "../models/models_0";
5
+ } from "../models/models_1";
6
6
  export { __MetadataBearer };
7
7
  export interface SendCisSessionTelemetryCommandInput
8
8
  extends SendCisSessionTelemetryRequest {}
@@ -0,0 +1,43 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateConnectorRequest,
4
+ UpdateConnectorResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface UpdateConnectorCommandInput extends UpdateConnectorRequest {}
8
+ export interface UpdateConnectorCommandOutput
9
+ extends UpdateConnectorResponse,
10
+ __MetadataBearer {}
11
+ declare const UpdateConnectorCommand_base: {
12
+ new (
13
+ input: UpdateConnectorCommandInput
14
+ ): import("@smithy/core/client").CommandImpl<
15
+ UpdateConnectorCommandInput,
16
+ UpdateConnectorCommandOutput,
17
+ import("..").Inspector2ClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
20
+ >;
21
+ new (
22
+ input: UpdateConnectorCommandInput
23
+ ): import("@smithy/core/client").CommandImpl<
24
+ UpdateConnectorCommandInput,
25
+ UpdateConnectorCommandOutput,
26
+ import("..").Inspector2ClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
29
+ >;
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
+ };
32
+ export declare class UpdateConnectorCommand extends UpdateConnectorCommand_base {
33
+ protected static __types: {
34
+ api: {
35
+ input: UpdateConnectorRequest;
36
+ output: UpdateConnectorResponse;
37
+ };
38
+ sdk: {
39
+ input: UpdateConnectorCommandInput;
40
+ output: UpdateConnectorCommandOutput;
41
+ };
42
+ };
43
+ }
@@ -0,0 +1,44 @@
1
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
2
+ import {
3
+ UpdateConnectorScanConfigurationRequest,
4
+ UpdateConnectorScanConfigurationResponse,
5
+ } from "../models/models_1";
6
+ export { __MetadataBearer };
7
+ export interface UpdateConnectorScanConfigurationCommandInput
8
+ extends UpdateConnectorScanConfigurationRequest {}
9
+ export interface UpdateConnectorScanConfigurationCommandOutput
10
+ extends UpdateConnectorScanConfigurationResponse,
11
+ __MetadataBearer {}
12
+ declare const UpdateConnectorScanConfigurationCommand_base: {
13
+ new (
14
+ input: UpdateConnectorScanConfigurationCommandInput
15
+ ): import("@smithy/core/client").CommandImpl<
16
+ UpdateConnectorScanConfigurationCommandInput,
17
+ UpdateConnectorScanConfigurationCommandOutput,
18
+ import("..").Inspector2ClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
21
+ >;
22
+ new (
23
+ input: UpdateConnectorScanConfigurationCommandInput
24
+ ): import("@smithy/core/client").CommandImpl<
25
+ UpdateConnectorScanConfigurationCommandInput,
26
+ UpdateConnectorScanConfigurationCommandOutput,
27
+ import("..").Inspector2ClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
30
+ >;
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
32
+ };
33
+ export declare class UpdateConnectorScanConfigurationCommand extends UpdateConnectorScanConfigurationCommand_base {
34
+ protected static __types: {
35
+ api: {
36
+ input: UpdateConnectorScanConfigurationRequest;
37
+ output: {};
38
+ };
39
+ sdk: {
40
+ input: UpdateConnectorScanConfigurationCommandInput;
41
+ output: UpdateConnectorScanConfigurationCommandOutput;
42
+ };
43
+ };
44
+ }
@@ -12,12 +12,14 @@ export * from "./CancelSbomExportCommand";
12
12
  export * from "./CreateCisScanConfigurationCommand";
13
13
  export * from "./CreateCodeSecurityIntegrationCommand";
14
14
  export * from "./CreateCodeSecurityScanConfigurationCommand";
15
+ export * from "./CreateConnectorCommand";
15
16
  export * from "./CreateFilterCommand";
16
17
  export * from "./CreateFindingsReportCommand";
17
18
  export * from "./CreateSbomExportCommand";
18
19
  export * from "./DeleteCisScanConfigurationCommand";
19
20
  export * from "./DeleteCodeSecurityIntegrationCommand";
20
21
  export * from "./DeleteCodeSecurityScanConfigurationCommand";
22
+ export * from "./DeleteConnectorCommand";
21
23
  export * from "./DeleteFilterCommand";
22
24
  export * from "./DescribeOrganizationConfigurationCommand";
23
25
  export * from "./DisableCommand";
@@ -46,6 +48,8 @@ export * from "./ListCisScansCommand";
46
48
  export * from "./ListCodeSecurityIntegrationsCommand";
47
49
  export * from "./ListCodeSecurityScanConfigurationAssociationsCommand";
48
50
  export * from "./ListCodeSecurityScanConfigurationsCommand";
51
+ export * from "./ListConnectorScanConfigurationsCommand";
52
+ export * from "./ListConnectorsCommand";
49
53
  export * from "./ListCoverageCommand";
50
54
  export * from "./ListCoverageStatisticsCommand";
51
55
  export * from "./ListDelegatedAdminAccountsCommand";
@@ -68,6 +72,8 @@ export * from "./UpdateCisScanConfigurationCommand";
68
72
  export * from "./UpdateCodeSecurityIntegrationCommand";
69
73
  export * from "./UpdateCodeSecurityScanConfigurationCommand";
70
74
  export * from "./UpdateConfigurationCommand";
75
+ export * from "./UpdateConnectorCommand";
76
+ export * from "./UpdateConnectorScanConfigurationCommand";
71
77
  export * from "./UpdateEc2DeepInspectionConfigurationCommand";
72
78
  export * from "./UpdateEncryptionKeyCommand";
73
79
  export * from "./UpdateFilterCommand";
@@ -7,6 +7,7 @@ export * from "./commands";
7
7
  export { Command as $Command } from "@smithy/core/client";
8
8
  export * from "./schemas/schemas_0";
9
9
  export * from "./pagination";
10
+ export * from "./waiters";
10
11
  export * from "./models/enums";
11
12
  export * from "./models/errors";
12
13
  export * from "./models/models_0";
@@ -19,6 +19,9 @@ export declare const AggregationResourceType: {
19
19
  readonly AWS_ECR_CONTAINER_IMAGE: "AWS_ECR_CONTAINER_IMAGE";
20
20
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
21
21
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
22
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
23
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
24
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
22
25
  };
23
26
  export type AggregationResourceType =
24
27
  (typeof AggregationResourceType)[keyof typeof AggregationResourceType];
@@ -88,6 +91,13 @@ export declare const CodeRepositorySortBy: {
88
91
  };
89
92
  export type CodeRepositorySortBy =
90
93
  (typeof CodeRepositorySortBy)[keyof typeof CodeRepositorySortBy];
94
+ export declare const ContainerImageSortBy: {
95
+ readonly ALL: "ALL";
96
+ readonly CRITICAL: "CRITICAL";
97
+ readonly HIGH: "HIGH";
98
+ };
99
+ export type ContainerImageSortBy =
100
+ (typeof ContainerImageSortBy)[keyof typeof ContainerImageSortBy];
91
101
  export declare const MapComparison: {
92
102
  readonly EQUALS: "EQUALS";
93
103
  };
@@ -142,12 +152,32 @@ export declare const RepositorySortBy: {
142
152
  };
143
153
  export type RepositorySortBy =
144
154
  (typeof RepositorySortBy)[keyof typeof RepositorySortBy];
155
+ export declare const ServerlessFunctionSortBy: {
156
+ readonly ALL: "ALL";
157
+ readonly CRITICAL: "CRITICAL";
158
+ readonly HIGH: "HIGH";
159
+ };
160
+ export type ServerlessFunctionSortBy =
161
+ (typeof ServerlessFunctionSortBy)[keyof typeof ServerlessFunctionSortBy];
145
162
  export declare const TitleSortBy: {
146
163
  readonly ALL: "ALL";
147
164
  readonly CRITICAL: "CRITICAL";
148
165
  readonly HIGH: "HIGH";
149
166
  };
150
167
  export type TitleSortBy = (typeof TitleSortBy)[keyof typeof TitleSortBy];
168
+ export declare const VmInstanceSortBy: {
169
+ readonly ALL: "ALL";
170
+ readonly CRITICAL: "CRITICAL";
171
+ readonly HIGH: "HIGH";
172
+ readonly NETWORK_FINDINGS: "NETWORK_FINDINGS";
173
+ };
174
+ export type VmInstanceSortBy =
175
+ (typeof VmInstanceSortBy)[keyof typeof VmInstanceSortBy];
176
+ export declare const Provider: {
177
+ readonly AWS: "AWS";
178
+ readonly AZURE: "AZURE";
179
+ };
180
+ export type Provider = (typeof Provider)[keyof typeof Provider];
151
181
  export declare const AggregationType: {
152
182
  readonly ACCOUNT: "ACCOUNT";
153
183
  readonly AMI: "AMI";
@@ -155,12 +185,15 @@ export declare const AggregationType: {
155
185
  readonly AWS_ECR_CONTAINER: "AWS_ECR_CONTAINER";
156
186
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
157
187
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
188
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
158
189
  readonly FINDING_TYPE: "FINDING_TYPE";
159
190
  readonly IMAGE_LAYER: "IMAGE_LAYER";
160
191
  readonly LAMBDA_LAYER: "LAMBDA_LAYER";
161
192
  readonly PACKAGE: "PACKAGE";
162
193
  readonly REPOSITORY: "REPOSITORY";
194
+ readonly SERVERLESS_FUNCTION: "SERVERLESS_FUNCTION";
163
195
  readonly TITLE: "TITLE";
196
+ readonly VM_INSTANCE: "VM_INSTANCE";
164
197
  };
165
198
  export type AggregationType =
166
199
  (typeof AggregationType)[keyof typeof AggregationType];
@@ -186,6 +219,11 @@ export declare const AssociationResultStatusCode: {
186
219
  };
187
220
  export type AssociationResultStatusCode =
188
221
  (typeof AssociationResultStatusCode)[keyof typeof AssociationResultStatusCode];
222
+ export declare const AwsConfigConnectorArnComparison: {
223
+ readonly EQUALS: "EQUALS";
224
+ };
225
+ export type AwsConfigConnectorArnComparison =
226
+ (typeof AwsConfigConnectorArnComparison)[keyof typeof AwsConfigConnectorArnComparison];
189
227
  export declare const PackageType: {
190
228
  readonly IMAGE: "IMAGE";
191
229
  readonly ZIP: "ZIP";
@@ -199,6 +237,8 @@ export declare const Runtime: {
199
237
  readonly GO_1_X: "GO_1_X";
200
238
  readonly JAVA_11: "JAVA_11";
201
239
  readonly JAVA_17: "JAVA_17";
240
+ readonly JAVA_21: "JAVA_21";
241
+ readonly JAVA_25: "JAVA_25";
202
242
  readonly JAVA_8: "JAVA_8";
203
243
  readonly JAVA_8_AL2: "JAVA_8_AL2";
204
244
  readonly NODEJS: "NODEJS";
@@ -206,6 +246,7 @@ export declare const Runtime: {
206
246
  readonly NODEJS_14_X: "NODEJS_14_X";
207
247
  readonly NODEJS_16_X: "NODEJS_16_X";
208
248
  readonly NODEJS_18_X: "NODEJS_18_X";
249
+ readonly NODEJS_22_X: "NODEJS_22_X";
209
250
  readonly NODEJS_24_X: "NODEJS_24_X";
210
251
  readonly PYTHON_3_10: "PYTHON_3_10";
211
252
  readonly PYTHON_3_11: "PYTHON_3_11";
@@ -217,6 +258,18 @@ export declare const Runtime: {
217
258
  readonly UNSUPPORTED: "UNSUPPORTED";
218
259
  };
219
260
  export type Runtime = (typeof Runtime)[keyof typeof Runtime];
261
+ export declare const ScopeType: {
262
+ readonly SUBSCRIPTION: "SUBSCRIPTION";
263
+ readonly TENANT: "TENANT";
264
+ };
265
+ export type ScopeType = (typeof ScopeType)[keyof typeof ScopeType];
266
+ export declare const ScopeState: {
267
+ readonly ACTIVE: "ACTIVE";
268
+ readonly DISABLED: "DISABLED";
269
+ readonly ERROR: "ERROR";
270
+ readonly PENDING: "PENDING";
271
+ };
272
+ export type ScopeState = (typeof ScopeState)[keyof typeof ScopeState];
220
273
  export declare const CodeSnippetErrorCode: {
221
274
  readonly ACCESS_DENIED: "ACCESS_DENIED";
222
275
  readonly CODE_SNIPPET_NOT_FOUND: "CODE_SNIPPET_NOT_FOUND";
@@ -233,6 +286,12 @@ export declare const FindingDetailsErrorCode: {
233
286
  };
234
287
  export type FindingDetailsErrorCode =
235
288
  (typeof FindingDetailsErrorCode)[keyof typeof FindingDetailsErrorCode];
289
+ export declare const CloudProvider: {
290
+ readonly AWS: "AWS";
291
+ readonly AZURE: "AZURE";
292
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
293
+ };
294
+ export type CloudProvider = (typeof CloudProvider)[keyof typeof CloudProvider];
236
295
  export declare const FreeTrialStatus: {
237
296
  readonly ACTIVE: "ACTIVE";
238
297
  readonly INACTIVE: "INACTIVE";
@@ -241,10 +300,13 @@ export type FreeTrialStatus =
241
300
  (typeof FreeTrialStatus)[keyof typeof FreeTrialStatus];
242
301
  export declare const FreeTrialType: {
243
302
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
303
+ readonly CONTAINER_IMAGE: "CONTAINER_IMAGE";
244
304
  readonly EC2: "EC2";
245
305
  readonly ECR: "ECR";
246
306
  readonly LAMBDA: "LAMBDA";
247
307
  readonly LAMBDA_CODE: "LAMBDA_CODE";
308
+ readonly SERVERLESS_FUNCTION: "SERVERLESS_FUNCTION";
309
+ readonly VM: "VM";
248
310
  };
249
311
  export type FreeTrialType = (typeof FreeTrialType)[keyof typeof FreeTrialType];
250
312
  export declare const FreeTrialInfoErrorCode: {
@@ -427,7 +489,9 @@ export declare const ScanStatusReason: {
427
489
  readonly PENDING_DISABLE: "PENDING_DISABLE";
428
490
  readonly PENDING_INITIAL_SCAN: "PENDING_INITIAL_SCAN";
429
491
  readonly PENDING_REVIVAL_SCAN: "PENDING_REVIVAL_SCAN";
492
+ readonly RESOURCE_STOPPED: "RESOURCE_STOPPED";
430
493
  readonly RESOURCE_TERMINATED: "RESOURCE_TERMINATED";
494
+ readonly RESOURCE_UNMANAGED: "RESOURCE_UNMANAGED";
431
495
  readonly SCAN_ELIGIBILITY_EXPIRED: "SCAN_ELIGIBILITY_EXPIRED";
432
496
  readonly SCAN_FREQUENCY_MANUAL: "SCAN_FREQUENCY_MANUAL";
433
497
  readonly SCAN_FREQUENCY_SCAN_ON_PUSH: "SCAN_FREQUENCY_SCAN_ON_PUSH";
@@ -504,9 +568,83 @@ export declare const ConfigurationLevel: {
504
568
  };
505
569
  export type ConfigurationLevel =
506
570
  (typeof ConfigurationLevel)[keyof typeof ConfigurationLevel];
571
+ export declare const EnablementStatus: {
572
+ readonly DELETED: "DELETED";
573
+ readonly ENABLED: "ENABLED";
574
+ readonly FAILED_TO_DELETE: "FAILED_TO_DELETE";
575
+ readonly FAILED_TO_ENABLE: "FAILED_TO_ENABLE";
576
+ readonly FAILED_TO_UPDATE: "FAILED_TO_UPDATE";
577
+ readonly PENDING_DELETION: "PENDING_DELETION";
578
+ readonly PENDING_ENABLEMENT: "PENDING_ENABLEMENT";
579
+ readonly PENDING_UPDATE: "PENDING_UPDATE";
580
+ };
581
+ export type EnablementStatus =
582
+ (typeof EnablementStatus)[keyof typeof EnablementStatus];
583
+ export declare const ConnectorHealthStatus: {
584
+ readonly CONNECTED: "CONNECTED";
585
+ readonly DEGRADED: "DEGRADED";
586
+ readonly FAILED_TO_CONNECT: "FAILED_TO_CONNECT";
587
+ readonly PENDING_AUTHORIZATION: "PENDING_AUTHORIZATION";
588
+ readonly PENDING_CONFIGURATION: "PENDING_CONFIGURATION";
589
+ readonly UNKNOWN: "UNKNOWN";
590
+ };
591
+ export type ConnectorHealthStatus =
592
+ (typeof ConnectorHealthStatus)[keyof typeof ConnectorHealthStatus];
593
+ export declare const ConnectorCloudProvider: {
594
+ readonly AZURE: "AZURE";
595
+ };
596
+ export type ConnectorCloudProvider =
597
+ (typeof ConnectorCloudProvider)[keyof typeof ConnectorCloudProvider];
598
+ export declare const ConnectorArnComparison: {
599
+ readonly EQUALS: "EQUALS";
600
+ };
601
+ export type ConnectorArnComparison =
602
+ (typeof ConnectorArnComparison)[keyof typeof ConnectorArnComparison];
603
+ export declare const ContainerImagePullDateRescanDuration: {
604
+ readonly DAYS_14: "DAYS_14";
605
+ readonly DAYS_180: "DAYS_180";
606
+ readonly DAYS_3: "DAYS_3";
607
+ readonly DAYS_30: "DAYS_30";
608
+ readonly DAYS_60: "DAYS_60";
609
+ readonly DAYS_7: "DAYS_7";
610
+ readonly DAYS_90: "DAYS_90";
611
+ };
612
+ export type ContainerImagePullDateRescanDuration =
613
+ (typeof ContainerImagePullDateRescanDuration)[keyof typeof ContainerImagePullDateRescanDuration];
614
+ export declare const ContainerImageRescanDuration: {
615
+ readonly DAYS_14: "DAYS_14";
616
+ readonly DAYS_180: "DAYS_180";
617
+ readonly DAYS_3: "DAYS_3";
618
+ readonly DAYS_30: "DAYS_30";
619
+ readonly DAYS_60: "DAYS_60";
620
+ readonly DAYS_7: "DAYS_7";
621
+ readonly DAYS_90: "DAYS_90";
622
+ readonly LIFETIME: "LIFETIME";
623
+ };
624
+ export type ContainerImageRescanDuration =
625
+ (typeof ContainerImageRescanDuration)[keyof typeof ContainerImageRescanDuration];
626
+ export declare const ConnectorTypeComparison: {
627
+ readonly EQUALS: "EQUALS";
628
+ };
629
+ export type ConnectorTypeComparison =
630
+ (typeof ConnectorTypeComparison)[keyof typeof ConnectorTypeComparison];
631
+ export declare const ConnectorType: {
632
+ readonly CUSTOMER_MANAGED: "CUSTOMER_MANAGED";
633
+ readonly SERVICE_LINKED: "SERVICE_LINKED";
634
+ };
635
+ export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
636
+ export declare const ProviderComparison: {
637
+ readonly EQUALS: "EQUALS";
638
+ };
639
+ export type ProviderComparison =
640
+ (typeof ProviderComparison)[keyof typeof ProviderComparison];
507
641
  export declare const GroupKey: {
508
642
  readonly ACCOUNT_ID: "ACCOUNT_ID";
509
643
  readonly ECR_REPOSITORY_NAME: "ECR_REPOSITORY_NAME";
644
+ readonly PROVIDER: "PROVIDER";
645
+ readonly PROVIDER_ACCOUNT_ID: "PROVIDER_ACCOUNT_ID";
646
+ readonly PROVIDER_ORG_ID: "PROVIDER_ORG_ID";
647
+ readonly PROVIDER_REGION: "PROVIDER_REGION";
510
648
  readonly RESOURCE_TYPE: "RESOURCE_TYPE";
511
649
  readonly SCAN_STATUS_CODE: "SCAN_STATUS_CODE";
512
650
  readonly SCAN_STATUS_REASON: "SCAN_STATUS_REASON";
@@ -529,6 +667,11 @@ export declare const CoverageResourceType: {
529
667
  readonly AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY";
530
668
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
531
669
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
670
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
671
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRIES: "Microsoft.ContainerRegistry/registries";
672
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
673
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_REPOSITORY: "Microsoft.ContainerRegistry/registry/containerRepository";
674
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
532
675
  };
533
676
  export type CoverageResourceType =
534
677
  (typeof CoverageResourceType)[keyof typeof CoverageResourceType];
@@ -546,10 +689,17 @@ export declare const EcrScanFrequency: {
546
689
  };
547
690
  export type EcrScanFrequency =
548
691
  (typeof EcrScanFrequency)[keyof typeof EcrScanFrequency];
692
+ export declare const VmPlatform: {
693
+ readonly LINUX: "LINUX";
694
+ readonly UNKNOWN: "UNKNOWN";
695
+ readonly WINDOWS: "WINDOWS";
696
+ };
697
+ export type VmPlatform = (typeof VmPlatform)[keyof typeof VmPlatform];
549
698
  export declare const ScanMode: {
550
699
  readonly EC2_AGENTLESS: "EC2_AGENTLESS";
551
700
  readonly EC2_INSPECTOR_AGENT_BASED: "EC2_INSPECTOR_AGENT_BASED";
552
701
  readonly EC2_SSM_AGENT_BASED: "EC2_SSM_AGENT_BASED";
702
+ readonly VM_INSPECTOR_AGENT_BASED: "VM_INSPECTOR_AGENT_BASED";
553
703
  };
554
704
  export type ScanMode = (typeof ScanMode)[keyof typeof ScanMode];
555
705
  export declare const ScanType: {
@@ -724,6 +874,9 @@ export declare const ResourceType: {
724
874
  readonly AWS_ECR_REPOSITORY: "AWS_ECR_REPOSITORY";
725
875
  readonly AWS_LAMBDA_FUNCTION: "AWS_LAMBDA_FUNCTION";
726
876
  readonly CODE_REPOSITORY: "CODE_REPOSITORY";
877
+ readonly MICROSOFT_COMPUTE_VIRTUAL_MACHINES: "Microsoft.Compute/virtualMachines";
878
+ readonly MICROSOFT_CONTAINER_REGISTRY_REGISTRY_CONTAINER_IMAGE: "Microsoft.ContainerRegistry/registry/containerImage";
879
+ readonly MICROSOFT_WEB_SITES: "Microsoft.Web/sites";
727
880
  };
728
881
  export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
729
882
  export declare const Severity: {
@@ -757,6 +910,11 @@ export declare const ReportingErrorCode: {
757
910
  };
758
911
  export type ReportingErrorCode =
759
912
  (typeof ReportingErrorCode)[keyof typeof ReportingErrorCode];
913
+ export declare const InheritanceMode: {
914
+ readonly INHERIT_FROM_ADMIN: "INHERIT_FROM_ADMIN";
915
+ };
916
+ export type InheritanceMode =
917
+ (typeof InheritanceMode)[keyof typeof InheritanceMode];
760
918
  export declare const Service: {
761
919
  readonly EC2: "EC2";
762
920
  readonly ECR: "ECR";
@@ -805,6 +963,10 @@ export declare const SortField: {
805
963
  };
806
964
  export type SortField = (typeof SortField)[keyof typeof SortField];
807
965
  export declare const UsageType: {
966
+ readonly AZURE_CONTAINER_IMAGE_INITIAL_SCAN: "AZURE_CONTAINER_IMAGE_INITIAL_SCAN";
967
+ readonly AZURE_CONTAINER_IMAGE_RESCAN: "AZURE_CONTAINER_IMAGE_RESCAN";
968
+ readonly AZURE_SERVERLESS_FUNCTION_HOURS: "AZURE_SERVERLESS_FUNCTION_HOURS";
969
+ readonly AZURE_VM_AGENT_BASED_INSTANCE_HOURS: "AZURE_VM_AGENT_BASED_INSTANCE_HOURS";
808
970
  readonly CODE_REPOSITORY_IAC: "CODE_REPOSITORY_IAC";
809
971
  readonly CODE_REPOSITORY_SAST: "CODE_REPOSITORY_SAST";
810
972
  readonly CODE_REPOSITORY_SCA: "CODE_REPOSITORY_SCA";