@aws-sdk/client-securityhub 3.1018.0 → 3.1020.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.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/SecurityHub.js +6 -6
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-types/SecurityHub.d.ts +107 -107
- package/dist-types/SecurityHubClient.d.ts +110 -110
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +2 -2
- package/dist-types/models/models_2.d.ts +4 -4
- package/dist-types/models/models_3.d.ts +3 -3
- package/dist-types/pagination/DescribeActionTargetsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeProductsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeProductsV2Paginator.d.ts +1 -1
- package/dist-types/pagination/DescribeStandardsControlsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeStandardsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetEnabledStandardsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetFindingHistoryPaginator.d.ts +1 -1
- package/dist-types/pagination/GetFindingsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetFindingsTrendsV2Paginator.d.ts +1 -1
- package/dist-types/pagination/GetFindingsV2Paginator.d.ts +1 -1
- package/dist-types/pagination/GetInsightsPaginator.d.ts +1 -1
- package/dist-types/pagination/GetResourcesTrendsV2Paginator.d.ts +1 -1
- package/dist-types/pagination/GetResourcesV2Paginator.d.ts +1 -1
- package/dist-types/pagination/ListAggregatorsV2Paginator.d.ts +1 -1
- package/dist-types/pagination/ListConfigurationPoliciesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListConfigurationPolicyAssociationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEnabledProductsForImportPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFindingAggregatorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListInvitationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMembersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOrganizationAdminAccountsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSecurityControlDefinitionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStandardsControlAssociationsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SecurityHubClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/models_1.d.ts +3 -3
- package/dist-types/ts3.4/models/models_2.d.ts +15 -15
- package/dist-types/ts3.4/models/models_3.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +13 -13
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultSecurityHubHttpAuthSchemeProvider = exports.defaultSecurityHubHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultSecurityHubHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultSecurityHubHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultSecurityHubHttpAuthSchemeProvider = defaultSecurityHubHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/SecurityHub.js
CHANGED
|
@@ -34,7 +34,7 @@ import { DeleteInsightCommand, } from "./commands/DeleteInsightCommand";
|
|
|
34
34
|
import { DeleteInvitationsCommand, } from "./commands/DeleteInvitationsCommand";
|
|
35
35
|
import { DeleteMembersCommand, } from "./commands/DeleteMembersCommand";
|
|
36
36
|
import { DescribeActionTargetsCommand, } from "./commands/DescribeActionTargetsCommand";
|
|
37
|
-
import { DescribeHubCommand } from "./commands/DescribeHubCommand";
|
|
37
|
+
import { DescribeHubCommand, } from "./commands/DescribeHubCommand";
|
|
38
38
|
import { DescribeOrganizationConfigurationCommand, } from "./commands/DescribeOrganizationConfigurationCommand";
|
|
39
39
|
import { DescribeProductsCommand, } from "./commands/DescribeProductsCommand";
|
|
40
40
|
import { DescribeProductsV2Command, } from "./commands/DescribeProductsV2Command";
|
|
@@ -61,15 +61,15 @@ import { GetConnectorV2Command, } from "./commands/GetConnectorV2Command";
|
|
|
61
61
|
import { GetEnabledStandardsCommand, } from "./commands/GetEnabledStandardsCommand";
|
|
62
62
|
import { GetFindingAggregatorCommand, } from "./commands/GetFindingAggregatorCommand";
|
|
63
63
|
import { GetFindingHistoryCommand, } from "./commands/GetFindingHistoryCommand";
|
|
64
|
-
import { GetFindingsCommand } from "./commands/GetFindingsCommand";
|
|
64
|
+
import { GetFindingsCommand, } from "./commands/GetFindingsCommand";
|
|
65
65
|
import { GetFindingStatisticsV2Command, } from "./commands/GetFindingStatisticsV2Command";
|
|
66
66
|
import { GetFindingsTrendsV2Command, } from "./commands/GetFindingsTrendsV2Command";
|
|
67
67
|
import { GetFindingsV2Command, } from "./commands/GetFindingsV2Command";
|
|
68
68
|
import { GetInsightResultsCommand, } from "./commands/GetInsightResultsCommand";
|
|
69
|
-
import { GetInsightsCommand } from "./commands/GetInsightsCommand";
|
|
69
|
+
import { GetInsightsCommand, } from "./commands/GetInsightsCommand";
|
|
70
70
|
import { GetInvitationsCountCommand, } from "./commands/GetInvitationsCountCommand";
|
|
71
71
|
import { GetMasterAccountCommand, } from "./commands/GetMasterAccountCommand";
|
|
72
|
-
import { GetMembersCommand } from "./commands/GetMembersCommand";
|
|
72
|
+
import { GetMembersCommand, } from "./commands/GetMembersCommand";
|
|
73
73
|
import { GetResourcesStatisticsV2Command, } from "./commands/GetResourcesStatisticsV2Command";
|
|
74
74
|
import { GetResourcesTrendsV2Command, } from "./commands/GetResourcesTrendsV2Command";
|
|
75
75
|
import { GetResourcesV2Command, } from "./commands/GetResourcesV2Command";
|
|
@@ -84,7 +84,7 @@ import { ListConnectorsV2Command, } from "./commands/ListConnectorsV2Command";
|
|
|
84
84
|
import { ListEnabledProductsForImportCommand, } from "./commands/ListEnabledProductsForImportCommand";
|
|
85
85
|
import { ListFindingAggregatorsCommand, } from "./commands/ListFindingAggregatorsCommand";
|
|
86
86
|
import { ListInvitationsCommand, } from "./commands/ListInvitationsCommand";
|
|
87
|
-
import { ListMembersCommand } from "./commands/ListMembersCommand";
|
|
87
|
+
import { ListMembersCommand, } from "./commands/ListMembersCommand";
|
|
88
88
|
import { ListOrganizationAdminAccountsCommand, } from "./commands/ListOrganizationAdminAccountsCommand";
|
|
89
89
|
import { ListSecurityControlDefinitionsCommand, } from "./commands/ListSecurityControlDefinitionsCommand";
|
|
90
90
|
import { ListStandardsControlAssociationsCommand, } from "./commands/ListStandardsControlAssociationsCommand";
|
|
@@ -92,7 +92,7 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
|
|
|
92
92
|
import { RegisterConnectorV2Command, } from "./commands/RegisterConnectorV2Command";
|
|
93
93
|
import { StartConfigurationPolicyAssociationCommand, } from "./commands/StartConfigurationPolicyAssociationCommand";
|
|
94
94
|
import { StartConfigurationPolicyDisassociationCommand, } from "./commands/StartConfigurationPolicyDisassociationCommand";
|
|
95
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
95
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
96
96
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
97
97
|
import { UpdateActionTargetCommand, } from "./commands/UpdateActionTargetCommand";
|
|
98
98
|
import { UpdateAggregatorV2Command, } from "./commands/UpdateAggregatorV2Command";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultSecurityHubHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -1,111 +1,111 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
|
-
import { AcceptAdministratorInvitationCommandInput, AcceptAdministratorInvitationCommandOutput } from "./commands/AcceptAdministratorInvitationCommand";
|
|
3
|
-
import { AcceptInvitationCommandInput, AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand";
|
|
4
|
-
import { BatchDeleteAutomationRulesCommandInput, BatchDeleteAutomationRulesCommandOutput } from "./commands/BatchDeleteAutomationRulesCommand";
|
|
5
|
-
import { BatchDisableStandardsCommandInput, BatchDisableStandardsCommandOutput } from "./commands/BatchDisableStandardsCommand";
|
|
6
|
-
import { BatchEnableStandardsCommandInput, BatchEnableStandardsCommandOutput } from "./commands/BatchEnableStandardsCommand";
|
|
7
|
-
import { BatchGetAutomationRulesCommandInput, BatchGetAutomationRulesCommandOutput } from "./commands/BatchGetAutomationRulesCommand";
|
|
8
|
-
import { BatchGetConfigurationPolicyAssociationsCommandInput, BatchGetConfigurationPolicyAssociationsCommandOutput } from "./commands/BatchGetConfigurationPolicyAssociationsCommand";
|
|
9
|
-
import { BatchGetSecurityControlsCommandInput, BatchGetSecurityControlsCommandOutput } from "./commands/BatchGetSecurityControlsCommand";
|
|
10
|
-
import { BatchGetStandardsControlAssociationsCommandInput, BatchGetStandardsControlAssociationsCommandOutput } from "./commands/BatchGetStandardsControlAssociationsCommand";
|
|
11
|
-
import { BatchImportFindingsCommandInput, BatchImportFindingsCommandOutput } from "./commands/BatchImportFindingsCommand";
|
|
12
|
-
import { BatchUpdateAutomationRulesCommandInput, BatchUpdateAutomationRulesCommandOutput } from "./commands/BatchUpdateAutomationRulesCommand";
|
|
13
|
-
import { BatchUpdateFindingsCommandInput, BatchUpdateFindingsCommandOutput } from "./commands/BatchUpdateFindingsCommand";
|
|
14
|
-
import { BatchUpdateFindingsV2CommandInput, BatchUpdateFindingsV2CommandOutput } from "./commands/BatchUpdateFindingsV2Command";
|
|
15
|
-
import { BatchUpdateStandardsControlAssociationsCommandInput, BatchUpdateStandardsControlAssociationsCommandOutput } from "./commands/BatchUpdateStandardsControlAssociationsCommand";
|
|
16
|
-
import { CreateActionTargetCommandInput, CreateActionTargetCommandOutput } from "./commands/CreateActionTargetCommand";
|
|
17
|
-
import { CreateAggregatorV2CommandInput, CreateAggregatorV2CommandOutput } from "./commands/CreateAggregatorV2Command";
|
|
18
|
-
import { CreateAutomationRuleCommandInput, CreateAutomationRuleCommandOutput } from "./commands/CreateAutomationRuleCommand";
|
|
19
|
-
import { CreateAutomationRuleV2CommandInput, CreateAutomationRuleV2CommandOutput } from "./commands/CreateAutomationRuleV2Command";
|
|
20
|
-
import { CreateConfigurationPolicyCommandInput, CreateConfigurationPolicyCommandOutput } from "./commands/CreateConfigurationPolicyCommand";
|
|
21
|
-
import { CreateConnectorV2CommandInput, CreateConnectorV2CommandOutput } from "./commands/CreateConnectorV2Command";
|
|
22
|
-
import { CreateFindingAggregatorCommandInput, CreateFindingAggregatorCommandOutput } from "./commands/CreateFindingAggregatorCommand";
|
|
23
|
-
import { CreateInsightCommandInput, CreateInsightCommandOutput } from "./commands/CreateInsightCommand";
|
|
24
|
-
import { CreateMembersCommandInput, CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
|
|
25
|
-
import { CreateTicketV2CommandInput, CreateTicketV2CommandOutput } from "./commands/CreateTicketV2Command";
|
|
26
|
-
import { DeclineInvitationsCommandInput, DeclineInvitationsCommandOutput } from "./commands/DeclineInvitationsCommand";
|
|
27
|
-
import { DeleteActionTargetCommandInput, DeleteActionTargetCommandOutput } from "./commands/DeleteActionTargetCommand";
|
|
28
|
-
import { DeleteAggregatorV2CommandInput, DeleteAggregatorV2CommandOutput } from "./commands/DeleteAggregatorV2Command";
|
|
29
|
-
import { DeleteAutomationRuleV2CommandInput, DeleteAutomationRuleV2CommandOutput } from "./commands/DeleteAutomationRuleV2Command";
|
|
30
|
-
import { DeleteConfigurationPolicyCommandInput, DeleteConfigurationPolicyCommandOutput } from "./commands/DeleteConfigurationPolicyCommand";
|
|
31
|
-
import { DeleteConnectorV2CommandInput, DeleteConnectorV2CommandOutput } from "./commands/DeleteConnectorV2Command";
|
|
32
|
-
import { DeleteFindingAggregatorCommandInput, DeleteFindingAggregatorCommandOutput } from "./commands/DeleteFindingAggregatorCommand";
|
|
33
|
-
import { DeleteInsightCommandInput, DeleteInsightCommandOutput } from "./commands/DeleteInsightCommand";
|
|
34
|
-
import { DeleteInvitationsCommandInput, DeleteInvitationsCommandOutput } from "./commands/DeleteInvitationsCommand";
|
|
35
|
-
import { DeleteMembersCommandInput, DeleteMembersCommandOutput } from "./commands/DeleteMembersCommand";
|
|
36
|
-
import { DescribeActionTargetsCommandInput, DescribeActionTargetsCommandOutput } from "./commands/DescribeActionTargetsCommand";
|
|
37
|
-
import { DescribeHubCommandInput, DescribeHubCommandOutput } from "./commands/DescribeHubCommand";
|
|
38
|
-
import { DescribeOrganizationConfigurationCommandInput, DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
|
|
39
|
-
import { DescribeProductsCommandInput, DescribeProductsCommandOutput } from "./commands/DescribeProductsCommand";
|
|
40
|
-
import { DescribeProductsV2CommandInput, DescribeProductsV2CommandOutput } from "./commands/DescribeProductsV2Command";
|
|
41
|
-
import { DescribeSecurityHubV2CommandInput, DescribeSecurityHubV2CommandOutput } from "./commands/DescribeSecurityHubV2Command";
|
|
42
|
-
import { DescribeStandardsCommandInput, DescribeStandardsCommandOutput } from "./commands/DescribeStandardsCommand";
|
|
43
|
-
import { DescribeStandardsControlsCommandInput, DescribeStandardsControlsCommandOutput } from "./commands/DescribeStandardsControlsCommand";
|
|
44
|
-
import { DisableImportFindingsForProductCommandInput, DisableImportFindingsForProductCommandOutput } from "./commands/DisableImportFindingsForProductCommand";
|
|
45
|
-
import { DisableOrganizationAdminAccountCommandInput, DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
|
|
46
|
-
import { DisableSecurityHubCommandInput, DisableSecurityHubCommandOutput } from "./commands/DisableSecurityHubCommand";
|
|
47
|
-
import { DisableSecurityHubV2CommandInput, DisableSecurityHubV2CommandOutput } from "./commands/DisableSecurityHubV2Command";
|
|
48
|
-
import { DisassociateFromAdministratorAccountCommandInput, DisassociateFromAdministratorAccountCommandOutput } from "./commands/DisassociateFromAdministratorAccountCommand";
|
|
49
|
-
import { DisassociateFromMasterAccountCommandInput, DisassociateFromMasterAccountCommandOutput } from "./commands/DisassociateFromMasterAccountCommand";
|
|
50
|
-
import { DisassociateMembersCommandInput, DisassociateMembersCommandOutput } from "./commands/DisassociateMembersCommand";
|
|
51
|
-
import { EnableImportFindingsForProductCommandInput, EnableImportFindingsForProductCommandOutput } from "./commands/EnableImportFindingsForProductCommand";
|
|
52
|
-
import { EnableOrganizationAdminAccountCommandInput, EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
|
|
53
|
-
import { EnableSecurityHubCommandInput, EnableSecurityHubCommandOutput } from "./commands/EnableSecurityHubCommand";
|
|
54
|
-
import { EnableSecurityHubV2CommandInput, EnableSecurityHubV2CommandOutput } from "./commands/EnableSecurityHubV2Command";
|
|
55
|
-
import { GetAdministratorAccountCommandInput, GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
|
|
56
|
-
import { GetAggregatorV2CommandInput, GetAggregatorV2CommandOutput } from "./commands/GetAggregatorV2Command";
|
|
57
|
-
import { GetAutomationRuleV2CommandInput, GetAutomationRuleV2CommandOutput } from "./commands/GetAutomationRuleV2Command";
|
|
58
|
-
import { GetConfigurationPolicyAssociationCommandInput, GetConfigurationPolicyAssociationCommandOutput } from "./commands/GetConfigurationPolicyAssociationCommand";
|
|
59
|
-
import { GetConfigurationPolicyCommandInput, GetConfigurationPolicyCommandOutput } from "./commands/GetConfigurationPolicyCommand";
|
|
60
|
-
import { GetConnectorV2CommandInput, GetConnectorV2CommandOutput } from "./commands/GetConnectorV2Command";
|
|
61
|
-
import { GetEnabledStandardsCommandInput, GetEnabledStandardsCommandOutput } from "./commands/GetEnabledStandardsCommand";
|
|
62
|
-
import { GetFindingAggregatorCommandInput, GetFindingAggregatorCommandOutput } from "./commands/GetFindingAggregatorCommand";
|
|
63
|
-
import { GetFindingHistoryCommandInput, GetFindingHistoryCommandOutput } from "./commands/GetFindingHistoryCommand";
|
|
64
|
-
import { GetFindingsCommandInput, GetFindingsCommandOutput } from "./commands/GetFindingsCommand";
|
|
65
|
-
import { GetFindingStatisticsV2CommandInput, GetFindingStatisticsV2CommandOutput } from "./commands/GetFindingStatisticsV2Command";
|
|
66
|
-
import { GetFindingsTrendsV2CommandInput, GetFindingsTrendsV2CommandOutput } from "./commands/GetFindingsTrendsV2Command";
|
|
67
|
-
import { GetFindingsV2CommandInput, GetFindingsV2CommandOutput } from "./commands/GetFindingsV2Command";
|
|
68
|
-
import { GetInsightResultsCommandInput, GetInsightResultsCommandOutput } from "./commands/GetInsightResultsCommand";
|
|
69
|
-
import { GetInsightsCommandInput, GetInsightsCommandOutput } from "./commands/GetInsightsCommand";
|
|
70
|
-
import { GetInvitationsCountCommandInput, GetInvitationsCountCommandOutput } from "./commands/GetInvitationsCountCommand";
|
|
71
|
-
import { GetMasterAccountCommandInput, GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
|
|
72
|
-
import { GetMembersCommandInput, GetMembersCommandOutput } from "./commands/GetMembersCommand";
|
|
73
|
-
import { GetResourcesStatisticsV2CommandInput, GetResourcesStatisticsV2CommandOutput } from "./commands/GetResourcesStatisticsV2Command";
|
|
74
|
-
import { GetResourcesTrendsV2CommandInput, GetResourcesTrendsV2CommandOutput } from "./commands/GetResourcesTrendsV2Command";
|
|
75
|
-
import { GetResourcesV2CommandInput, GetResourcesV2CommandOutput } from "./commands/GetResourcesV2Command";
|
|
76
|
-
import { GetSecurityControlDefinitionCommandInput, GetSecurityControlDefinitionCommandOutput } from "./commands/GetSecurityControlDefinitionCommand";
|
|
77
|
-
import { InviteMembersCommandInput, InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
|
|
78
|
-
import { ListAggregatorsV2CommandInput, ListAggregatorsV2CommandOutput } from "./commands/ListAggregatorsV2Command";
|
|
79
|
-
import { ListAutomationRulesCommandInput, ListAutomationRulesCommandOutput } from "./commands/ListAutomationRulesCommand";
|
|
80
|
-
import { ListAutomationRulesV2CommandInput, ListAutomationRulesV2CommandOutput } from "./commands/ListAutomationRulesV2Command";
|
|
81
|
-
import { ListConfigurationPoliciesCommandInput, ListConfigurationPoliciesCommandOutput } from "./commands/ListConfigurationPoliciesCommand";
|
|
82
|
-
import { ListConfigurationPolicyAssociationsCommandInput, ListConfigurationPolicyAssociationsCommandOutput } from "./commands/ListConfigurationPolicyAssociationsCommand";
|
|
83
|
-
import { ListConnectorsV2CommandInput, ListConnectorsV2CommandOutput } from "./commands/ListConnectorsV2Command";
|
|
84
|
-
import { ListEnabledProductsForImportCommandInput, ListEnabledProductsForImportCommandOutput } from "./commands/ListEnabledProductsForImportCommand";
|
|
85
|
-
import { ListFindingAggregatorsCommandInput, ListFindingAggregatorsCommandOutput } from "./commands/ListFindingAggregatorsCommand";
|
|
86
|
-
import { ListInvitationsCommandInput, ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
|
|
87
|
-
import { ListMembersCommandInput, ListMembersCommandOutput } from "./commands/ListMembersCommand";
|
|
88
|
-
import { ListOrganizationAdminAccountsCommandInput, ListOrganizationAdminAccountsCommandOutput } from "./commands/ListOrganizationAdminAccountsCommand";
|
|
89
|
-
import { ListSecurityControlDefinitionsCommandInput, ListSecurityControlDefinitionsCommandOutput } from "./commands/ListSecurityControlDefinitionsCommand";
|
|
90
|
-
import { ListStandardsControlAssociationsCommandInput, ListStandardsControlAssociationsCommandOutput } from "./commands/ListStandardsControlAssociationsCommand";
|
|
91
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
92
|
-
import { RegisterConnectorV2CommandInput, RegisterConnectorV2CommandOutput } from "./commands/RegisterConnectorV2Command";
|
|
93
|
-
import { StartConfigurationPolicyAssociationCommandInput, StartConfigurationPolicyAssociationCommandOutput } from "./commands/StartConfigurationPolicyAssociationCommand";
|
|
94
|
-
import { StartConfigurationPolicyDisassociationCommandInput, StartConfigurationPolicyDisassociationCommandOutput } from "./commands/StartConfigurationPolicyDisassociationCommand";
|
|
95
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
96
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
97
|
-
import { UpdateActionTargetCommandInput, UpdateActionTargetCommandOutput } from "./commands/UpdateActionTargetCommand";
|
|
98
|
-
import { UpdateAggregatorV2CommandInput, UpdateAggregatorV2CommandOutput } from "./commands/UpdateAggregatorV2Command";
|
|
99
|
-
import { UpdateAutomationRuleV2CommandInput, UpdateAutomationRuleV2CommandOutput } from "./commands/UpdateAutomationRuleV2Command";
|
|
100
|
-
import { UpdateConfigurationPolicyCommandInput, UpdateConfigurationPolicyCommandOutput } from "./commands/UpdateConfigurationPolicyCommand";
|
|
101
|
-
import { UpdateConnectorV2CommandInput, UpdateConnectorV2CommandOutput } from "./commands/UpdateConnectorV2Command";
|
|
102
|
-
import { UpdateFindingAggregatorCommandInput, UpdateFindingAggregatorCommandOutput } from "./commands/UpdateFindingAggregatorCommand";
|
|
103
|
-
import { UpdateFindingsCommandInput, UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
|
|
104
|
-
import { UpdateInsightCommandInput, UpdateInsightCommandOutput } from "./commands/UpdateInsightCommand";
|
|
105
|
-
import { UpdateOrganizationConfigurationCommandInput, UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
|
|
106
|
-
import { UpdateSecurityControlCommandInput, UpdateSecurityControlCommandOutput } from "./commands/UpdateSecurityControlCommand";
|
|
107
|
-
import { UpdateSecurityHubConfigurationCommandInput, UpdateSecurityHubConfigurationCommandOutput } from "./commands/UpdateSecurityHubConfigurationCommand";
|
|
108
|
-
import { UpdateStandardsControlCommandInput, UpdateStandardsControlCommandOutput } from "./commands/UpdateStandardsControlCommand";
|
|
2
|
+
import { type AcceptAdministratorInvitationCommandInput, type AcceptAdministratorInvitationCommandOutput } from "./commands/AcceptAdministratorInvitationCommand";
|
|
3
|
+
import { type AcceptInvitationCommandInput, type AcceptInvitationCommandOutput } from "./commands/AcceptInvitationCommand";
|
|
4
|
+
import { type BatchDeleteAutomationRulesCommandInput, type BatchDeleteAutomationRulesCommandOutput } from "./commands/BatchDeleteAutomationRulesCommand";
|
|
5
|
+
import { type BatchDisableStandardsCommandInput, type BatchDisableStandardsCommandOutput } from "./commands/BatchDisableStandardsCommand";
|
|
6
|
+
import { type BatchEnableStandardsCommandInput, type BatchEnableStandardsCommandOutput } from "./commands/BatchEnableStandardsCommand";
|
|
7
|
+
import { type BatchGetAutomationRulesCommandInput, type BatchGetAutomationRulesCommandOutput } from "./commands/BatchGetAutomationRulesCommand";
|
|
8
|
+
import { type BatchGetConfigurationPolicyAssociationsCommandInput, type BatchGetConfigurationPolicyAssociationsCommandOutput } from "./commands/BatchGetConfigurationPolicyAssociationsCommand";
|
|
9
|
+
import { type BatchGetSecurityControlsCommandInput, type BatchGetSecurityControlsCommandOutput } from "./commands/BatchGetSecurityControlsCommand";
|
|
10
|
+
import { type BatchGetStandardsControlAssociationsCommandInput, type BatchGetStandardsControlAssociationsCommandOutput } from "./commands/BatchGetStandardsControlAssociationsCommand";
|
|
11
|
+
import { type BatchImportFindingsCommandInput, type BatchImportFindingsCommandOutput } from "./commands/BatchImportFindingsCommand";
|
|
12
|
+
import { type BatchUpdateAutomationRulesCommandInput, type BatchUpdateAutomationRulesCommandOutput } from "./commands/BatchUpdateAutomationRulesCommand";
|
|
13
|
+
import { type BatchUpdateFindingsCommandInput, type BatchUpdateFindingsCommandOutput } from "./commands/BatchUpdateFindingsCommand";
|
|
14
|
+
import { type BatchUpdateFindingsV2CommandInput, type BatchUpdateFindingsV2CommandOutput } from "./commands/BatchUpdateFindingsV2Command";
|
|
15
|
+
import { type BatchUpdateStandardsControlAssociationsCommandInput, type BatchUpdateStandardsControlAssociationsCommandOutput } from "./commands/BatchUpdateStandardsControlAssociationsCommand";
|
|
16
|
+
import { type CreateActionTargetCommandInput, type CreateActionTargetCommandOutput } from "./commands/CreateActionTargetCommand";
|
|
17
|
+
import { type CreateAggregatorV2CommandInput, type CreateAggregatorV2CommandOutput } from "./commands/CreateAggregatorV2Command";
|
|
18
|
+
import { type CreateAutomationRuleCommandInput, type CreateAutomationRuleCommandOutput } from "./commands/CreateAutomationRuleCommand";
|
|
19
|
+
import { type CreateAutomationRuleV2CommandInput, type CreateAutomationRuleV2CommandOutput } from "./commands/CreateAutomationRuleV2Command";
|
|
20
|
+
import { type CreateConfigurationPolicyCommandInput, type CreateConfigurationPolicyCommandOutput } from "./commands/CreateConfigurationPolicyCommand";
|
|
21
|
+
import { type CreateConnectorV2CommandInput, type CreateConnectorV2CommandOutput } from "./commands/CreateConnectorV2Command";
|
|
22
|
+
import { type CreateFindingAggregatorCommandInput, type CreateFindingAggregatorCommandOutput } from "./commands/CreateFindingAggregatorCommand";
|
|
23
|
+
import { type CreateInsightCommandInput, type CreateInsightCommandOutput } from "./commands/CreateInsightCommand";
|
|
24
|
+
import { type CreateMembersCommandInput, type CreateMembersCommandOutput } from "./commands/CreateMembersCommand";
|
|
25
|
+
import { type CreateTicketV2CommandInput, type CreateTicketV2CommandOutput } from "./commands/CreateTicketV2Command";
|
|
26
|
+
import { type DeclineInvitationsCommandInput, type DeclineInvitationsCommandOutput } from "./commands/DeclineInvitationsCommand";
|
|
27
|
+
import { type DeleteActionTargetCommandInput, type DeleteActionTargetCommandOutput } from "./commands/DeleteActionTargetCommand";
|
|
28
|
+
import { type DeleteAggregatorV2CommandInput, type DeleteAggregatorV2CommandOutput } from "./commands/DeleteAggregatorV2Command";
|
|
29
|
+
import { type DeleteAutomationRuleV2CommandInput, type DeleteAutomationRuleV2CommandOutput } from "./commands/DeleteAutomationRuleV2Command";
|
|
30
|
+
import { type DeleteConfigurationPolicyCommandInput, type DeleteConfigurationPolicyCommandOutput } from "./commands/DeleteConfigurationPolicyCommand";
|
|
31
|
+
import { type DeleteConnectorV2CommandInput, type DeleteConnectorV2CommandOutput } from "./commands/DeleteConnectorV2Command";
|
|
32
|
+
import { type DeleteFindingAggregatorCommandInput, type DeleteFindingAggregatorCommandOutput } from "./commands/DeleteFindingAggregatorCommand";
|
|
33
|
+
import { type DeleteInsightCommandInput, type DeleteInsightCommandOutput } from "./commands/DeleteInsightCommand";
|
|
34
|
+
import { type DeleteInvitationsCommandInput, type DeleteInvitationsCommandOutput } from "./commands/DeleteInvitationsCommand";
|
|
35
|
+
import { type DeleteMembersCommandInput, type DeleteMembersCommandOutput } from "./commands/DeleteMembersCommand";
|
|
36
|
+
import { type DescribeActionTargetsCommandInput, type DescribeActionTargetsCommandOutput } from "./commands/DescribeActionTargetsCommand";
|
|
37
|
+
import { type DescribeHubCommandInput, type DescribeHubCommandOutput } from "./commands/DescribeHubCommand";
|
|
38
|
+
import { type DescribeOrganizationConfigurationCommandInput, type DescribeOrganizationConfigurationCommandOutput } from "./commands/DescribeOrganizationConfigurationCommand";
|
|
39
|
+
import { type DescribeProductsCommandInput, type DescribeProductsCommandOutput } from "./commands/DescribeProductsCommand";
|
|
40
|
+
import { type DescribeProductsV2CommandInput, type DescribeProductsV2CommandOutput } from "./commands/DescribeProductsV2Command";
|
|
41
|
+
import { type DescribeSecurityHubV2CommandInput, type DescribeSecurityHubV2CommandOutput } from "./commands/DescribeSecurityHubV2Command";
|
|
42
|
+
import { type DescribeStandardsCommandInput, type DescribeStandardsCommandOutput } from "./commands/DescribeStandardsCommand";
|
|
43
|
+
import { type DescribeStandardsControlsCommandInput, type DescribeStandardsControlsCommandOutput } from "./commands/DescribeStandardsControlsCommand";
|
|
44
|
+
import { type DisableImportFindingsForProductCommandInput, type DisableImportFindingsForProductCommandOutput } from "./commands/DisableImportFindingsForProductCommand";
|
|
45
|
+
import { type DisableOrganizationAdminAccountCommandInput, type DisableOrganizationAdminAccountCommandOutput } from "./commands/DisableOrganizationAdminAccountCommand";
|
|
46
|
+
import { type DisableSecurityHubCommandInput, type DisableSecurityHubCommandOutput } from "./commands/DisableSecurityHubCommand";
|
|
47
|
+
import { type DisableSecurityHubV2CommandInput, type DisableSecurityHubV2CommandOutput } from "./commands/DisableSecurityHubV2Command";
|
|
48
|
+
import { type DisassociateFromAdministratorAccountCommandInput, type DisassociateFromAdministratorAccountCommandOutput } from "./commands/DisassociateFromAdministratorAccountCommand";
|
|
49
|
+
import { type DisassociateFromMasterAccountCommandInput, type DisassociateFromMasterAccountCommandOutput } from "./commands/DisassociateFromMasterAccountCommand";
|
|
50
|
+
import { type DisassociateMembersCommandInput, type DisassociateMembersCommandOutput } from "./commands/DisassociateMembersCommand";
|
|
51
|
+
import { type EnableImportFindingsForProductCommandInput, type EnableImportFindingsForProductCommandOutput } from "./commands/EnableImportFindingsForProductCommand";
|
|
52
|
+
import { type EnableOrganizationAdminAccountCommandInput, type EnableOrganizationAdminAccountCommandOutput } from "./commands/EnableOrganizationAdminAccountCommand";
|
|
53
|
+
import { type EnableSecurityHubCommandInput, type EnableSecurityHubCommandOutput } from "./commands/EnableSecurityHubCommand";
|
|
54
|
+
import { type EnableSecurityHubV2CommandInput, type EnableSecurityHubV2CommandOutput } from "./commands/EnableSecurityHubV2Command";
|
|
55
|
+
import { type GetAdministratorAccountCommandInput, type GetAdministratorAccountCommandOutput } from "./commands/GetAdministratorAccountCommand";
|
|
56
|
+
import { type GetAggregatorV2CommandInput, type GetAggregatorV2CommandOutput } from "./commands/GetAggregatorV2Command";
|
|
57
|
+
import { type GetAutomationRuleV2CommandInput, type GetAutomationRuleV2CommandOutput } from "./commands/GetAutomationRuleV2Command";
|
|
58
|
+
import { type GetConfigurationPolicyAssociationCommandInput, type GetConfigurationPolicyAssociationCommandOutput } from "./commands/GetConfigurationPolicyAssociationCommand";
|
|
59
|
+
import { type GetConfigurationPolicyCommandInput, type GetConfigurationPolicyCommandOutput } from "./commands/GetConfigurationPolicyCommand";
|
|
60
|
+
import { type GetConnectorV2CommandInput, type GetConnectorV2CommandOutput } from "./commands/GetConnectorV2Command";
|
|
61
|
+
import { type GetEnabledStandardsCommandInput, type GetEnabledStandardsCommandOutput } from "./commands/GetEnabledStandardsCommand";
|
|
62
|
+
import { type GetFindingAggregatorCommandInput, type GetFindingAggregatorCommandOutput } from "./commands/GetFindingAggregatorCommand";
|
|
63
|
+
import { type GetFindingHistoryCommandInput, type GetFindingHistoryCommandOutput } from "./commands/GetFindingHistoryCommand";
|
|
64
|
+
import { type GetFindingsCommandInput, type GetFindingsCommandOutput } from "./commands/GetFindingsCommand";
|
|
65
|
+
import { type GetFindingStatisticsV2CommandInput, type GetFindingStatisticsV2CommandOutput } from "./commands/GetFindingStatisticsV2Command";
|
|
66
|
+
import { type GetFindingsTrendsV2CommandInput, type GetFindingsTrendsV2CommandOutput } from "./commands/GetFindingsTrendsV2Command";
|
|
67
|
+
import { type GetFindingsV2CommandInput, type GetFindingsV2CommandOutput } from "./commands/GetFindingsV2Command";
|
|
68
|
+
import { type GetInsightResultsCommandInput, type GetInsightResultsCommandOutput } from "./commands/GetInsightResultsCommand";
|
|
69
|
+
import { type GetInsightsCommandInput, type GetInsightsCommandOutput } from "./commands/GetInsightsCommand";
|
|
70
|
+
import { type GetInvitationsCountCommandInput, type GetInvitationsCountCommandOutput } from "./commands/GetInvitationsCountCommand";
|
|
71
|
+
import { type GetMasterAccountCommandInput, type GetMasterAccountCommandOutput } from "./commands/GetMasterAccountCommand";
|
|
72
|
+
import { type GetMembersCommandInput, type GetMembersCommandOutput } from "./commands/GetMembersCommand";
|
|
73
|
+
import { type GetResourcesStatisticsV2CommandInput, type GetResourcesStatisticsV2CommandOutput } from "./commands/GetResourcesStatisticsV2Command";
|
|
74
|
+
import { type GetResourcesTrendsV2CommandInput, type GetResourcesTrendsV2CommandOutput } from "./commands/GetResourcesTrendsV2Command";
|
|
75
|
+
import { type GetResourcesV2CommandInput, type GetResourcesV2CommandOutput } from "./commands/GetResourcesV2Command";
|
|
76
|
+
import { type GetSecurityControlDefinitionCommandInput, type GetSecurityControlDefinitionCommandOutput } from "./commands/GetSecurityControlDefinitionCommand";
|
|
77
|
+
import { type InviteMembersCommandInput, type InviteMembersCommandOutput } from "./commands/InviteMembersCommand";
|
|
78
|
+
import { type ListAggregatorsV2CommandInput, type ListAggregatorsV2CommandOutput } from "./commands/ListAggregatorsV2Command";
|
|
79
|
+
import { type ListAutomationRulesCommandInput, type ListAutomationRulesCommandOutput } from "./commands/ListAutomationRulesCommand";
|
|
80
|
+
import { type ListAutomationRulesV2CommandInput, type ListAutomationRulesV2CommandOutput } from "./commands/ListAutomationRulesV2Command";
|
|
81
|
+
import { type ListConfigurationPoliciesCommandInput, type ListConfigurationPoliciesCommandOutput } from "./commands/ListConfigurationPoliciesCommand";
|
|
82
|
+
import { type ListConfigurationPolicyAssociationsCommandInput, type ListConfigurationPolicyAssociationsCommandOutput } from "./commands/ListConfigurationPolicyAssociationsCommand";
|
|
83
|
+
import { type ListConnectorsV2CommandInput, type ListConnectorsV2CommandOutput } from "./commands/ListConnectorsV2Command";
|
|
84
|
+
import { type ListEnabledProductsForImportCommandInput, type ListEnabledProductsForImportCommandOutput } from "./commands/ListEnabledProductsForImportCommand";
|
|
85
|
+
import { type ListFindingAggregatorsCommandInput, type ListFindingAggregatorsCommandOutput } from "./commands/ListFindingAggregatorsCommand";
|
|
86
|
+
import { type ListInvitationsCommandInput, type ListInvitationsCommandOutput } from "./commands/ListInvitationsCommand";
|
|
87
|
+
import { type ListMembersCommandInput, type ListMembersCommandOutput } from "./commands/ListMembersCommand";
|
|
88
|
+
import { type ListOrganizationAdminAccountsCommandInput, type ListOrganizationAdminAccountsCommandOutput } from "./commands/ListOrganizationAdminAccountsCommand";
|
|
89
|
+
import { type ListSecurityControlDefinitionsCommandInput, type ListSecurityControlDefinitionsCommandOutput } from "./commands/ListSecurityControlDefinitionsCommand";
|
|
90
|
+
import { type ListStandardsControlAssociationsCommandInput, type ListStandardsControlAssociationsCommandOutput } from "./commands/ListStandardsControlAssociationsCommand";
|
|
91
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
92
|
+
import { type RegisterConnectorV2CommandInput, type RegisterConnectorV2CommandOutput } from "./commands/RegisterConnectorV2Command";
|
|
93
|
+
import { type StartConfigurationPolicyAssociationCommandInput, type StartConfigurationPolicyAssociationCommandOutput } from "./commands/StartConfigurationPolicyAssociationCommand";
|
|
94
|
+
import { type StartConfigurationPolicyDisassociationCommandInput, type StartConfigurationPolicyDisassociationCommandOutput } from "./commands/StartConfigurationPolicyDisassociationCommand";
|
|
95
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
96
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
97
|
+
import { type UpdateActionTargetCommandInput, type UpdateActionTargetCommandOutput } from "./commands/UpdateActionTargetCommand";
|
|
98
|
+
import { type UpdateAggregatorV2CommandInput, type UpdateAggregatorV2CommandOutput } from "./commands/UpdateAggregatorV2Command";
|
|
99
|
+
import { type UpdateAutomationRuleV2CommandInput, type UpdateAutomationRuleV2CommandOutput } from "./commands/UpdateAutomationRuleV2Command";
|
|
100
|
+
import { type UpdateConfigurationPolicyCommandInput, type UpdateConfigurationPolicyCommandOutput } from "./commands/UpdateConfigurationPolicyCommand";
|
|
101
|
+
import { type UpdateConnectorV2CommandInput, type UpdateConnectorV2CommandOutput } from "./commands/UpdateConnectorV2Command";
|
|
102
|
+
import { type UpdateFindingAggregatorCommandInput, type UpdateFindingAggregatorCommandOutput } from "./commands/UpdateFindingAggregatorCommand";
|
|
103
|
+
import { type UpdateFindingsCommandInput, type UpdateFindingsCommandOutput } from "./commands/UpdateFindingsCommand";
|
|
104
|
+
import { type UpdateInsightCommandInput, type UpdateInsightCommandOutput } from "./commands/UpdateInsightCommand";
|
|
105
|
+
import { type UpdateOrganizationConfigurationCommandInput, type UpdateOrganizationConfigurationCommandOutput } from "./commands/UpdateOrganizationConfigurationCommand";
|
|
106
|
+
import { type UpdateSecurityControlCommandInput, type UpdateSecurityControlCommandOutput } from "./commands/UpdateSecurityControlCommand";
|
|
107
|
+
import { type UpdateSecurityHubConfigurationCommandInput, type UpdateSecurityHubConfigurationCommandOutput } from "./commands/UpdateSecurityHubConfigurationCommand";
|
|
108
|
+
import { type UpdateStandardsControlCommandInput, type UpdateStandardsControlCommandOutput } from "./commands/UpdateStandardsControlCommand";
|
|
109
109
|
import { SecurityHubClient } from "./SecurityHubClient";
|
|
110
110
|
export interface SecurityHub {
|
|
111
111
|
/**
|