@aws-sdk/client-securityhub 3.511.0 → 3.513.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/httpAuthExtensionConfiguration.js +1 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/index.js +184 -126
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/SecurityHubClient.js +17 -4
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/runtimeConfig.shared.js +10 -0
- package/dist-es/runtimeExtensions.js +3 -0
- package/dist-types/SecurityHubClient.d.ts +13 -11
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/extensionConfiguration.d.ts +2 -1
- package/dist-types/runtimeConfig.browser.d.ts +5 -6
- package/dist-types/runtimeConfig.d.ts +4 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -4
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/SecurityHubClient.d.ts +11 -9
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -4
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -8
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -182,13 +182,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
182
182
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
183
183
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
184
184
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
185
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
186
185
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
187
186
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
187
|
+
var import_core = require("@smithy/core");
|
|
188
188
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
189
189
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
190
190
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
191
191
|
|
|
192
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
192
193
|
|
|
193
194
|
// src/endpoint/EndpointParameters.ts
|
|
194
195
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -213,19 +214,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
213
214
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
214
215
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
215
216
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
217
|
+
|
|
218
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
219
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
220
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
221
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
222
|
+
let _credentials = runtimeConfig.credentials;
|
|
223
|
+
return {
|
|
224
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
225
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
226
|
+
if (index === -1) {
|
|
227
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
228
|
+
} else {
|
|
229
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
httpAuthSchemes() {
|
|
233
|
+
return _httpAuthSchemes;
|
|
234
|
+
},
|
|
235
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
236
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
237
|
+
},
|
|
238
|
+
httpAuthSchemeProvider() {
|
|
239
|
+
return _httpAuthSchemeProvider;
|
|
240
|
+
},
|
|
241
|
+
setCredentials(credentials) {
|
|
242
|
+
_credentials = credentials;
|
|
243
|
+
},
|
|
244
|
+
credentials() {
|
|
245
|
+
return _credentials;
|
|
246
|
+
}
|
|
247
|
+
};
|
|
248
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
249
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
250
|
+
return {
|
|
251
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
252
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
253
|
+
credentials: config.credentials()
|
|
254
|
+
};
|
|
255
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
256
|
+
|
|
257
|
+
// src/runtimeExtensions.ts
|
|
216
258
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
217
259
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
218
260
|
const extensionConfiguration = {
|
|
219
261
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
220
262
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
221
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
263
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
264
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
222
265
|
};
|
|
223
266
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
224
267
|
return {
|
|
225
268
|
...runtimeConfig,
|
|
226
269
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
227
270
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
228
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
271
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
272
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
229
273
|
};
|
|
230
274
|
}, "resolveRuntimeExtensions");
|
|
231
275
|
|
|
@@ -238,8 +282,8 @@ var _SecurityHubClient = class _SecurityHubClient extends import_smithy_client.C
|
|
|
238
282
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
239
283
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
240
284
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
241
|
-
const _config_6 = (0,
|
|
242
|
-
const _config_7 = (0,
|
|
285
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
286
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
243
287
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
244
288
|
super(_config_8);
|
|
245
289
|
this.config = _config_8;
|
|
@@ -248,8 +292,14 @@ var _SecurityHubClient = class _SecurityHubClient extends import_smithy_client.C
|
|
|
248
292
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
249
293
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
250
294
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
251
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
252
295
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
296
|
+
this.middlewareStack.use(
|
|
297
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
298
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
299
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
300
|
+
})
|
|
301
|
+
);
|
|
302
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
253
303
|
}
|
|
254
304
|
/**
|
|
255
305
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -259,6 +309,14 @@ var _SecurityHubClient = class _SecurityHubClient extends import_smithy_client.C
|
|
|
259
309
|
destroy() {
|
|
260
310
|
super.destroy();
|
|
261
311
|
}
|
|
312
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
313
|
+
return import_httpAuthSchemeProvider.defaultSecurityHubHttpAuthSchemeParametersProvider;
|
|
314
|
+
}
|
|
315
|
+
getIdentityProviderConfigProvider() {
|
|
316
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
317
|
+
"aws.auth#sigv4": config.credentials
|
|
318
|
+
});
|
|
319
|
+
}
|
|
262
320
|
};
|
|
263
321
|
__name(_SecurityHubClient, "SecurityHubClient");
|
|
264
322
|
var SecurityHubClient = _SecurityHubClient;
|
|
@@ -273,8 +331,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
273
331
|
var import_types = require("@smithy/types");
|
|
274
332
|
|
|
275
333
|
// src/protocols/Aws_restJson1.ts
|
|
276
|
-
var
|
|
277
|
-
|
|
334
|
+
var import_core2 = require("@aws-sdk/core");
|
|
335
|
+
|
|
278
336
|
|
|
279
337
|
|
|
280
338
|
// src/models/SecurityHubServiceException.ts
|
|
@@ -691,7 +749,7 @@ var ResourceInUseException = _ResourceInUseException;
|
|
|
691
749
|
|
|
692
750
|
// src/protocols/Aws_restJson1.ts
|
|
693
751
|
var se_AcceptAdministratorInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
694
|
-
const b = (0,
|
|
752
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
695
753
|
const headers = {
|
|
696
754
|
"content-type": "application/json"
|
|
697
755
|
};
|
|
@@ -707,7 +765,7 @@ var se_AcceptAdministratorInvitationCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
707
765
|
return b.build();
|
|
708
766
|
}, "se_AcceptAdministratorInvitationCommand");
|
|
709
767
|
var se_AcceptInvitationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
710
|
-
const b = (0,
|
|
768
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
711
769
|
const headers = {
|
|
712
770
|
"content-type": "application/json"
|
|
713
771
|
};
|
|
@@ -723,7 +781,7 @@ var se_AcceptInvitationCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
723
781
|
return b.build();
|
|
724
782
|
}, "se_AcceptInvitationCommand");
|
|
725
783
|
var se_BatchDeleteAutomationRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
726
|
-
const b = (0,
|
|
784
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
727
785
|
const headers = {
|
|
728
786
|
"content-type": "application/json"
|
|
729
787
|
};
|
|
@@ -738,7 +796,7 @@ var se_BatchDeleteAutomationRulesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
738
796
|
return b.build();
|
|
739
797
|
}, "se_BatchDeleteAutomationRulesCommand");
|
|
740
798
|
var se_BatchDisableStandardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
741
|
-
const b = (0,
|
|
799
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
742
800
|
const headers = {
|
|
743
801
|
"content-type": "application/json"
|
|
744
802
|
};
|
|
@@ -753,7 +811,7 @@ var se_BatchDisableStandardsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
753
811
|
return b.build();
|
|
754
812
|
}, "se_BatchDisableStandardsCommand");
|
|
755
813
|
var se_BatchEnableStandardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
756
|
-
const b = (0,
|
|
814
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
757
815
|
const headers = {
|
|
758
816
|
"content-type": "application/json"
|
|
759
817
|
};
|
|
@@ -768,7 +826,7 @@ var se_BatchEnableStandardsCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
768
826
|
return b.build();
|
|
769
827
|
}, "se_BatchEnableStandardsCommand");
|
|
770
828
|
var se_BatchGetAutomationRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
771
|
-
const b = (0,
|
|
829
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
772
830
|
const headers = {
|
|
773
831
|
"content-type": "application/json"
|
|
774
832
|
};
|
|
@@ -783,7 +841,7 @@ var se_BatchGetAutomationRulesCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
783
841
|
return b.build();
|
|
784
842
|
}, "se_BatchGetAutomationRulesCommand");
|
|
785
843
|
var se_BatchGetConfigurationPolicyAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
786
|
-
const b = (0,
|
|
844
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
787
845
|
const headers = {
|
|
788
846
|
"content-type": "application/json"
|
|
789
847
|
};
|
|
@@ -798,7 +856,7 @@ var se_BatchGetConfigurationPolicyAssociationsCommand = /* @__PURE__ */ __name(a
|
|
|
798
856
|
return b.build();
|
|
799
857
|
}, "se_BatchGetConfigurationPolicyAssociationsCommand");
|
|
800
858
|
var se_BatchGetSecurityControlsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
801
|
-
const b = (0,
|
|
859
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
802
860
|
const headers = {
|
|
803
861
|
"content-type": "application/json"
|
|
804
862
|
};
|
|
@@ -813,7 +871,7 @@ var se_BatchGetSecurityControlsCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
813
871
|
return b.build();
|
|
814
872
|
}, "se_BatchGetSecurityControlsCommand");
|
|
815
873
|
var se_BatchGetStandardsControlAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
816
|
-
const b = (0,
|
|
874
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
817
875
|
const headers = {
|
|
818
876
|
"content-type": "application/json"
|
|
819
877
|
};
|
|
@@ -828,7 +886,7 @@ var se_BatchGetStandardsControlAssociationsCommand = /* @__PURE__ */ __name(asyn
|
|
|
828
886
|
return b.build();
|
|
829
887
|
}, "se_BatchGetStandardsControlAssociationsCommand");
|
|
830
888
|
var se_BatchImportFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
831
|
-
const b = (0,
|
|
889
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
832
890
|
const headers = {
|
|
833
891
|
"content-type": "application/json"
|
|
834
892
|
};
|
|
@@ -843,7 +901,7 @@ var se_BatchImportFindingsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
843
901
|
return b.build();
|
|
844
902
|
}, "se_BatchImportFindingsCommand");
|
|
845
903
|
var se_BatchUpdateAutomationRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
846
|
-
const b = (0,
|
|
904
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
847
905
|
const headers = {
|
|
848
906
|
"content-type": "application/json"
|
|
849
907
|
};
|
|
@@ -858,7 +916,7 @@ var se_BatchUpdateAutomationRulesCommand = /* @__PURE__ */ __name(async (input,
|
|
|
858
916
|
return b.build();
|
|
859
917
|
}, "se_BatchUpdateAutomationRulesCommand");
|
|
860
918
|
var se_BatchUpdateFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
861
|
-
const b = (0,
|
|
919
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
862
920
|
const headers = {
|
|
863
921
|
"content-type": "application/json"
|
|
864
922
|
};
|
|
@@ -882,7 +940,7 @@ var se_BatchUpdateFindingsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
882
940
|
return b.build();
|
|
883
941
|
}, "se_BatchUpdateFindingsCommand");
|
|
884
942
|
var se_BatchUpdateStandardsControlAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
885
|
-
const b = (0,
|
|
943
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
886
944
|
const headers = {
|
|
887
945
|
"content-type": "application/json"
|
|
888
946
|
};
|
|
@@ -897,7 +955,7 @@ var se_BatchUpdateStandardsControlAssociationsCommand = /* @__PURE__ */ __name(a
|
|
|
897
955
|
return b.build();
|
|
898
956
|
}, "se_BatchUpdateStandardsControlAssociationsCommand");
|
|
899
957
|
var se_CreateActionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
900
|
-
const b = (0,
|
|
958
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
901
959
|
const headers = {
|
|
902
960
|
"content-type": "application/json"
|
|
903
961
|
};
|
|
@@ -914,7 +972,7 @@ var se_CreateActionTargetCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
914
972
|
return b.build();
|
|
915
973
|
}, "se_CreateActionTargetCommand");
|
|
916
974
|
var se_CreateAutomationRuleCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
917
|
-
const b = (0,
|
|
975
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
918
976
|
const headers = {
|
|
919
977
|
"content-type": "application/json"
|
|
920
978
|
};
|
|
@@ -936,7 +994,7 @@ var se_CreateAutomationRuleCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
936
994
|
return b.build();
|
|
937
995
|
}, "se_CreateAutomationRuleCommand");
|
|
938
996
|
var se_CreateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
939
|
-
const b = (0,
|
|
997
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
940
998
|
const headers = {
|
|
941
999
|
"content-type": "application/json"
|
|
942
1000
|
};
|
|
@@ -954,7 +1012,7 @@ var se_CreateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
954
1012
|
return b.build();
|
|
955
1013
|
}, "se_CreateConfigurationPolicyCommand");
|
|
956
1014
|
var se_CreateFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
957
|
-
const b = (0,
|
|
1015
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
958
1016
|
const headers = {
|
|
959
1017
|
"content-type": "application/json"
|
|
960
1018
|
};
|
|
@@ -970,7 +1028,7 @@ var se_CreateFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
970
1028
|
return b.build();
|
|
971
1029
|
}, "se_CreateFindingAggregatorCommand");
|
|
972
1030
|
var se_CreateInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
973
|
-
const b = (0,
|
|
1031
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
974
1032
|
const headers = {
|
|
975
1033
|
"content-type": "application/json"
|
|
976
1034
|
};
|
|
@@ -987,7 +1045,7 @@ var se_CreateInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
987
1045
|
return b.build();
|
|
988
1046
|
}, "se_CreateInsightCommand");
|
|
989
1047
|
var se_CreateMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
990
|
-
const b = (0,
|
|
1048
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
991
1049
|
const headers = {
|
|
992
1050
|
"content-type": "application/json"
|
|
993
1051
|
};
|
|
@@ -1002,7 +1060,7 @@ var se_CreateMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1002
1060
|
return b.build();
|
|
1003
1061
|
}, "se_CreateMembersCommand");
|
|
1004
1062
|
var se_DeclineInvitationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1005
|
-
const b = (0,
|
|
1063
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1006
1064
|
const headers = {
|
|
1007
1065
|
"content-type": "application/json"
|
|
1008
1066
|
};
|
|
@@ -1017,7 +1075,7 @@ var se_DeclineInvitationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1017
1075
|
return b.build();
|
|
1018
1076
|
}, "se_DeclineInvitationsCommand");
|
|
1019
1077
|
var se_DeleteActionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1020
|
-
const b = (0,
|
|
1078
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1021
1079
|
const headers = {};
|
|
1022
1080
|
b.bp("/actionTargets/{ActionTargetArn+}");
|
|
1023
1081
|
b.p("ActionTargetArn", () => input.ActionTargetArn, "{ActionTargetArn+}", true);
|
|
@@ -1026,7 +1084,7 @@ var se_DeleteActionTargetCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1026
1084
|
return b.build();
|
|
1027
1085
|
}, "se_DeleteActionTargetCommand");
|
|
1028
1086
|
var se_DeleteConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1029
|
-
const b = (0,
|
|
1087
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1030
1088
|
const headers = {};
|
|
1031
1089
|
b.bp("/configurationPolicy/{Identifier}");
|
|
1032
1090
|
b.p("Identifier", () => input.Identifier, "{Identifier}", false);
|
|
@@ -1035,7 +1093,7 @@ var se_DeleteConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1035
1093
|
return b.build();
|
|
1036
1094
|
}, "se_DeleteConfigurationPolicyCommand");
|
|
1037
1095
|
var se_DeleteFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1038
|
-
const b = (0,
|
|
1096
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1039
1097
|
const headers = {};
|
|
1040
1098
|
b.bp("/findingAggregator/delete/{FindingAggregatorArn+}");
|
|
1041
1099
|
b.p("FindingAggregatorArn", () => input.FindingAggregatorArn, "{FindingAggregatorArn+}", true);
|
|
@@ -1044,7 +1102,7 @@ var se_DeleteFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1044
1102
|
return b.build();
|
|
1045
1103
|
}, "se_DeleteFindingAggregatorCommand");
|
|
1046
1104
|
var se_DeleteInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1047
|
-
const b = (0,
|
|
1105
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1048
1106
|
const headers = {};
|
|
1049
1107
|
b.bp("/insights/{InsightArn+}");
|
|
1050
1108
|
b.p("InsightArn", () => input.InsightArn, "{InsightArn+}", true);
|
|
@@ -1053,7 +1111,7 @@ var se_DeleteInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1053
1111
|
return b.build();
|
|
1054
1112
|
}, "se_DeleteInsightCommand");
|
|
1055
1113
|
var se_DeleteInvitationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1056
|
-
const b = (0,
|
|
1114
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1057
1115
|
const headers = {
|
|
1058
1116
|
"content-type": "application/json"
|
|
1059
1117
|
};
|
|
@@ -1068,7 +1126,7 @@ var se_DeleteInvitationsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1068
1126
|
return b.build();
|
|
1069
1127
|
}, "se_DeleteInvitationsCommand");
|
|
1070
1128
|
var se_DeleteMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1071
|
-
const b = (0,
|
|
1129
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1072
1130
|
const headers = {
|
|
1073
1131
|
"content-type": "application/json"
|
|
1074
1132
|
};
|
|
@@ -1083,7 +1141,7 @@ var se_DeleteMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1083
1141
|
return b.build();
|
|
1084
1142
|
}, "se_DeleteMembersCommand");
|
|
1085
1143
|
var se_DescribeActionTargetsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1086
|
-
const b = (0,
|
|
1144
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1087
1145
|
const headers = {
|
|
1088
1146
|
"content-type": "application/json"
|
|
1089
1147
|
};
|
|
@@ -1100,7 +1158,7 @@ var se_DescribeActionTargetsCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1100
1158
|
return b.build();
|
|
1101
1159
|
}, "se_DescribeActionTargetsCommand");
|
|
1102
1160
|
var se_DescribeHubCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1103
|
-
const b = (0,
|
|
1161
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1104
1162
|
const headers = {};
|
|
1105
1163
|
b.bp("/accounts");
|
|
1106
1164
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1111,7 +1169,7 @@ var se_DescribeHubCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1111
1169
|
return b.build();
|
|
1112
1170
|
}, "se_DescribeHubCommand");
|
|
1113
1171
|
var se_DescribeOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1114
|
-
const b = (0,
|
|
1172
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1115
1173
|
const headers = {
|
|
1116
1174
|
"content-type": "application/json"
|
|
1117
1175
|
};
|
|
@@ -1122,7 +1180,7 @@ var se_DescribeOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (
|
|
|
1122
1180
|
return b.build();
|
|
1123
1181
|
}, "se_DescribeOrganizationConfigurationCommand");
|
|
1124
1182
|
var se_DescribeProductsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1125
|
-
const b = (0,
|
|
1183
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1126
1184
|
const headers = {};
|
|
1127
1185
|
b.bp("/products");
|
|
1128
1186
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1135,7 +1193,7 @@ var se_DescribeProductsCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1135
1193
|
return b.build();
|
|
1136
1194
|
}, "se_DescribeProductsCommand");
|
|
1137
1195
|
var se_DescribeStandardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1138
|
-
const b = (0,
|
|
1196
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1139
1197
|
const headers = {};
|
|
1140
1198
|
b.bp("/standards");
|
|
1141
1199
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1147,7 +1205,7 @@ var se_DescribeStandardsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1147
1205
|
return b.build();
|
|
1148
1206
|
}, "se_DescribeStandardsCommand");
|
|
1149
1207
|
var se_DescribeStandardsControlsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1150
|
-
const b = (0,
|
|
1208
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1151
1209
|
const headers = {};
|
|
1152
1210
|
b.bp("/standards/controls/{StandardsSubscriptionArn+}");
|
|
1153
1211
|
b.p("StandardsSubscriptionArn", () => input.StandardsSubscriptionArn, "{StandardsSubscriptionArn+}", true);
|
|
@@ -1160,7 +1218,7 @@ var se_DescribeStandardsControlsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1160
1218
|
return b.build();
|
|
1161
1219
|
}, "se_DescribeStandardsControlsCommand");
|
|
1162
1220
|
var se_DisableImportFindingsForProductCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1163
|
-
const b = (0,
|
|
1221
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1164
1222
|
const headers = {};
|
|
1165
1223
|
b.bp("/productSubscriptions/{ProductSubscriptionArn+}");
|
|
1166
1224
|
b.p("ProductSubscriptionArn", () => input.ProductSubscriptionArn, "{ProductSubscriptionArn+}", true);
|
|
@@ -1169,7 +1227,7 @@ var se_DisableImportFindingsForProductCommand = /* @__PURE__ */ __name(async (in
|
|
|
1169
1227
|
return b.build();
|
|
1170
1228
|
}, "se_DisableImportFindingsForProductCommand");
|
|
1171
1229
|
var se_DisableOrganizationAdminAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1172
|
-
const b = (0,
|
|
1230
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1173
1231
|
const headers = {
|
|
1174
1232
|
"content-type": "application/json"
|
|
1175
1233
|
};
|
|
@@ -1184,7 +1242,7 @@ var se_DisableOrganizationAdminAccountCommand = /* @__PURE__ */ __name(async (in
|
|
|
1184
1242
|
return b.build();
|
|
1185
1243
|
}, "se_DisableOrganizationAdminAccountCommand");
|
|
1186
1244
|
var se_DisableSecurityHubCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1187
|
-
const b = (0,
|
|
1245
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1188
1246
|
const headers = {
|
|
1189
1247
|
"content-type": "application/json"
|
|
1190
1248
|
};
|
|
@@ -1195,7 +1253,7 @@ var se_DisableSecurityHubCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1195
1253
|
return b.build();
|
|
1196
1254
|
}, "se_DisableSecurityHubCommand");
|
|
1197
1255
|
var se_DisassociateFromAdministratorAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1198
|
-
const b = (0,
|
|
1256
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1199
1257
|
const headers = {
|
|
1200
1258
|
"content-type": "application/json"
|
|
1201
1259
|
};
|
|
@@ -1206,7 +1264,7 @@ var se_DisassociateFromAdministratorAccountCommand = /* @__PURE__ */ __name(asyn
|
|
|
1206
1264
|
return b.build();
|
|
1207
1265
|
}, "se_DisassociateFromAdministratorAccountCommand");
|
|
1208
1266
|
var se_DisassociateFromMasterAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1209
|
-
const b = (0,
|
|
1267
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1210
1268
|
const headers = {
|
|
1211
1269
|
"content-type": "application/json"
|
|
1212
1270
|
};
|
|
@@ -1217,7 +1275,7 @@ var se_DisassociateFromMasterAccountCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
1217
1275
|
return b.build();
|
|
1218
1276
|
}, "se_DisassociateFromMasterAccountCommand");
|
|
1219
1277
|
var se_DisassociateMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1220
|
-
const b = (0,
|
|
1278
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1221
1279
|
const headers = {
|
|
1222
1280
|
"content-type": "application/json"
|
|
1223
1281
|
};
|
|
@@ -1232,7 +1290,7 @@ var se_DisassociateMembersCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1232
1290
|
return b.build();
|
|
1233
1291
|
}, "se_DisassociateMembersCommand");
|
|
1234
1292
|
var se_EnableImportFindingsForProductCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1235
|
-
const b = (0,
|
|
1293
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1236
1294
|
const headers = {
|
|
1237
1295
|
"content-type": "application/json"
|
|
1238
1296
|
};
|
|
@@ -1247,7 +1305,7 @@ var se_EnableImportFindingsForProductCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1247
1305
|
return b.build();
|
|
1248
1306
|
}, "se_EnableImportFindingsForProductCommand");
|
|
1249
1307
|
var se_EnableOrganizationAdminAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1250
|
-
const b = (0,
|
|
1308
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1251
1309
|
const headers = {
|
|
1252
1310
|
"content-type": "application/json"
|
|
1253
1311
|
};
|
|
@@ -1262,7 +1320,7 @@ var se_EnableOrganizationAdminAccountCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1262
1320
|
return b.build();
|
|
1263
1321
|
}, "se_EnableOrganizationAdminAccountCommand");
|
|
1264
1322
|
var se_EnableSecurityHubCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1265
|
-
const b = (0,
|
|
1323
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1266
1324
|
const headers = {
|
|
1267
1325
|
"content-type": "application/json"
|
|
1268
1326
|
};
|
|
@@ -1279,7 +1337,7 @@ var se_EnableSecurityHubCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1279
1337
|
return b.build();
|
|
1280
1338
|
}, "se_EnableSecurityHubCommand");
|
|
1281
1339
|
var se_GetAdministratorAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1282
|
-
const b = (0,
|
|
1340
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1283
1341
|
const headers = {
|
|
1284
1342
|
"content-type": "application/json"
|
|
1285
1343
|
};
|
|
@@ -1290,7 +1348,7 @@ var se_GetAdministratorAccountCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1290
1348
|
return b.build();
|
|
1291
1349
|
}, "se_GetAdministratorAccountCommand");
|
|
1292
1350
|
var se_GetConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1293
|
-
const b = (0,
|
|
1351
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1294
1352
|
const headers = {};
|
|
1295
1353
|
b.bp("/configurationPolicy/get/{Identifier}");
|
|
1296
1354
|
b.p("Identifier", () => input.Identifier, "{Identifier}", false);
|
|
@@ -1299,7 +1357,7 @@ var se_GetConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1299
1357
|
return b.build();
|
|
1300
1358
|
}, "se_GetConfigurationPolicyCommand");
|
|
1301
1359
|
var se_GetConfigurationPolicyAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1302
|
-
const b = (0,
|
|
1360
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1303
1361
|
const headers = {
|
|
1304
1362
|
"content-type": "application/json"
|
|
1305
1363
|
};
|
|
@@ -1314,7 +1372,7 @@ var se_GetConfigurationPolicyAssociationCommand = /* @__PURE__ */ __name(async (
|
|
|
1314
1372
|
return b.build();
|
|
1315
1373
|
}, "se_GetConfigurationPolicyAssociationCommand");
|
|
1316
1374
|
var se_GetEnabledStandardsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1317
|
-
const b = (0,
|
|
1375
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1318
1376
|
const headers = {
|
|
1319
1377
|
"content-type": "application/json"
|
|
1320
1378
|
};
|
|
@@ -1331,7 +1389,7 @@ var se_GetEnabledStandardsCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1331
1389
|
return b.build();
|
|
1332
1390
|
}, "se_GetEnabledStandardsCommand");
|
|
1333
1391
|
var se_GetFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1334
|
-
const b = (0,
|
|
1392
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1335
1393
|
const headers = {};
|
|
1336
1394
|
b.bp("/findingAggregator/get/{FindingAggregatorArn+}");
|
|
1337
1395
|
b.p("FindingAggregatorArn", () => input.FindingAggregatorArn, "{FindingAggregatorArn+}", true);
|
|
@@ -1340,7 +1398,7 @@ var se_GetFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1340
1398
|
return b.build();
|
|
1341
1399
|
}, "se_GetFindingAggregatorCommand");
|
|
1342
1400
|
var se_GetFindingHistoryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1343
|
-
const b = (0,
|
|
1401
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1344
1402
|
const headers = {
|
|
1345
1403
|
"content-type": "application/json"
|
|
1346
1404
|
};
|
|
@@ -1359,7 +1417,7 @@ var se_GetFindingHistoryCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1359
1417
|
return b.build();
|
|
1360
1418
|
}, "se_GetFindingHistoryCommand");
|
|
1361
1419
|
var se_GetFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1362
|
-
const b = (0,
|
|
1420
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1363
1421
|
const headers = {
|
|
1364
1422
|
"content-type": "application/json"
|
|
1365
1423
|
};
|
|
@@ -1377,7 +1435,7 @@ var se_GetFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1377
1435
|
return b.build();
|
|
1378
1436
|
}, "se_GetFindingsCommand");
|
|
1379
1437
|
var se_GetInsightResultsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1380
|
-
const b = (0,
|
|
1438
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1381
1439
|
const headers = {};
|
|
1382
1440
|
b.bp("/insights/results/{InsightArn+}");
|
|
1383
1441
|
b.p("InsightArn", () => input.InsightArn, "{InsightArn+}", true);
|
|
@@ -1386,7 +1444,7 @@ var se_GetInsightResultsCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1386
1444
|
return b.build();
|
|
1387
1445
|
}, "se_GetInsightResultsCommand");
|
|
1388
1446
|
var se_GetInsightsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1389
|
-
const b = (0,
|
|
1447
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1390
1448
|
const headers = {
|
|
1391
1449
|
"content-type": "application/json"
|
|
1392
1450
|
};
|
|
@@ -1403,7 +1461,7 @@ var se_GetInsightsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1403
1461
|
return b.build();
|
|
1404
1462
|
}, "se_GetInsightsCommand");
|
|
1405
1463
|
var se_GetInvitationsCountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1406
|
-
const b = (0,
|
|
1464
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1407
1465
|
const headers = {
|
|
1408
1466
|
"content-type": "application/json"
|
|
1409
1467
|
};
|
|
@@ -1414,7 +1472,7 @@ var se_GetInvitationsCountCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1414
1472
|
return b.build();
|
|
1415
1473
|
}, "se_GetInvitationsCountCommand");
|
|
1416
1474
|
var se_GetMasterAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1417
|
-
const b = (0,
|
|
1475
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1418
1476
|
const headers = {
|
|
1419
1477
|
"content-type": "application/json"
|
|
1420
1478
|
};
|
|
@@ -1425,7 +1483,7 @@ var se_GetMasterAccountCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1425
1483
|
return b.build();
|
|
1426
1484
|
}, "se_GetMasterAccountCommand");
|
|
1427
1485
|
var se_GetMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1428
|
-
const b = (0,
|
|
1486
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1429
1487
|
const headers = {
|
|
1430
1488
|
"content-type": "application/json"
|
|
1431
1489
|
};
|
|
@@ -1440,7 +1498,7 @@ var se_GetMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1440
1498
|
return b.build();
|
|
1441
1499
|
}, "se_GetMembersCommand");
|
|
1442
1500
|
var se_GetSecurityControlDefinitionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1443
|
-
const b = (0,
|
|
1501
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1444
1502
|
const headers = {};
|
|
1445
1503
|
b.bp("/securityControl/definition");
|
|
1446
1504
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1451,7 +1509,7 @@ var se_GetSecurityControlDefinitionCommand = /* @__PURE__ */ __name(async (input
|
|
|
1451
1509
|
return b.build();
|
|
1452
1510
|
}, "se_GetSecurityControlDefinitionCommand");
|
|
1453
1511
|
var se_InviteMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1454
|
-
const b = (0,
|
|
1512
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1455
1513
|
const headers = {
|
|
1456
1514
|
"content-type": "application/json"
|
|
1457
1515
|
};
|
|
@@ -1466,7 +1524,7 @@ var se_InviteMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1466
1524
|
return b.build();
|
|
1467
1525
|
}, "se_InviteMembersCommand");
|
|
1468
1526
|
var se_ListAutomationRulesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1469
|
-
const b = (0,
|
|
1527
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1470
1528
|
const headers = {};
|
|
1471
1529
|
b.bp("/automationrules/list");
|
|
1472
1530
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1478,7 +1536,7 @@ var se_ListAutomationRulesCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1478
1536
|
return b.build();
|
|
1479
1537
|
}, "se_ListAutomationRulesCommand");
|
|
1480
1538
|
var se_ListConfigurationPoliciesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1481
|
-
const b = (0,
|
|
1539
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1482
1540
|
const headers = {};
|
|
1483
1541
|
b.bp("/configurationPolicy/list");
|
|
1484
1542
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1490,7 +1548,7 @@ var se_ListConfigurationPoliciesCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1490
1548
|
return b.build();
|
|
1491
1549
|
}, "se_ListConfigurationPoliciesCommand");
|
|
1492
1550
|
var se_ListConfigurationPolicyAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1493
|
-
const b = (0,
|
|
1551
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1494
1552
|
const headers = {
|
|
1495
1553
|
"content-type": "application/json"
|
|
1496
1554
|
};
|
|
@@ -1507,7 +1565,7 @@ var se_ListConfigurationPolicyAssociationsCommand = /* @__PURE__ */ __name(async
|
|
|
1507
1565
|
return b.build();
|
|
1508
1566
|
}, "se_ListConfigurationPolicyAssociationsCommand");
|
|
1509
1567
|
var se_ListEnabledProductsForImportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1510
|
-
const b = (0,
|
|
1568
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1511
1569
|
const headers = {};
|
|
1512
1570
|
b.bp("/productSubscriptions");
|
|
1513
1571
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1519,7 +1577,7 @@ var se_ListEnabledProductsForImportCommand = /* @__PURE__ */ __name(async (input
|
|
|
1519
1577
|
return b.build();
|
|
1520
1578
|
}, "se_ListEnabledProductsForImportCommand");
|
|
1521
1579
|
var se_ListFindingAggregatorsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1522
|
-
const b = (0,
|
|
1580
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1523
1581
|
const headers = {};
|
|
1524
1582
|
b.bp("/findingAggregator/list");
|
|
1525
1583
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1531,7 +1589,7 @@ var se_ListFindingAggregatorsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1531
1589
|
return b.build();
|
|
1532
1590
|
}, "se_ListFindingAggregatorsCommand");
|
|
1533
1591
|
var se_ListInvitationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1534
|
-
const b = (0,
|
|
1592
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1535
1593
|
const headers = {};
|
|
1536
1594
|
b.bp("/invitations");
|
|
1537
1595
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1543,7 +1601,7 @@ var se_ListInvitationsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1543
1601
|
return b.build();
|
|
1544
1602
|
}, "se_ListInvitationsCommand");
|
|
1545
1603
|
var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1546
|
-
const b = (0,
|
|
1604
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1547
1605
|
const headers = {};
|
|
1548
1606
|
b.bp("/members");
|
|
1549
1607
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1556,7 +1614,7 @@ var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1556
1614
|
return b.build();
|
|
1557
1615
|
}, "se_ListMembersCommand");
|
|
1558
1616
|
var se_ListOrganizationAdminAccountsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1559
|
-
const b = (0,
|
|
1617
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1560
1618
|
const headers = {};
|
|
1561
1619
|
b.bp("/organization/admin");
|
|
1562
1620
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1568,7 +1626,7 @@ var se_ListOrganizationAdminAccountsCommand = /* @__PURE__ */ __name(async (inpu
|
|
|
1568
1626
|
return b.build();
|
|
1569
1627
|
}, "se_ListOrganizationAdminAccountsCommand");
|
|
1570
1628
|
var se_ListSecurityControlDefinitionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1571
|
-
const b = (0,
|
|
1629
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1572
1630
|
const headers = {};
|
|
1573
1631
|
b.bp("/securityControls/definitions");
|
|
1574
1632
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1581,7 +1639,7 @@ var se_ListSecurityControlDefinitionsCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1581
1639
|
return b.build();
|
|
1582
1640
|
}, "se_ListSecurityControlDefinitionsCommand");
|
|
1583
1641
|
var se_ListStandardsControlAssociationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1584
|
-
const b = (0,
|
|
1642
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1585
1643
|
const headers = {};
|
|
1586
1644
|
b.bp("/associations");
|
|
1587
1645
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1594,7 +1652,7 @@ var se_ListStandardsControlAssociationsCommand = /* @__PURE__ */ __name(async (i
|
|
|
1594
1652
|
return b.build();
|
|
1595
1653
|
}, "se_ListStandardsControlAssociationsCommand");
|
|
1596
1654
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1597
|
-
const b = (0,
|
|
1655
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1598
1656
|
const headers = {};
|
|
1599
1657
|
b.bp("/tags/{ResourceArn}");
|
|
1600
1658
|
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
@@ -1603,7 +1661,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1603
1661
|
return b.build();
|
|
1604
1662
|
}, "se_ListTagsForResourceCommand");
|
|
1605
1663
|
var se_StartConfigurationPolicyAssociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1606
|
-
const b = (0,
|
|
1664
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1607
1665
|
const headers = {
|
|
1608
1666
|
"content-type": "application/json"
|
|
1609
1667
|
};
|
|
@@ -1619,7 +1677,7 @@ var se_StartConfigurationPolicyAssociationCommand = /* @__PURE__ */ __name(async
|
|
|
1619
1677
|
return b.build();
|
|
1620
1678
|
}, "se_StartConfigurationPolicyAssociationCommand");
|
|
1621
1679
|
var se_StartConfigurationPolicyDisassociationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1622
|
-
const b = (0,
|
|
1680
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1623
1681
|
const headers = {
|
|
1624
1682
|
"content-type": "application/json"
|
|
1625
1683
|
};
|
|
@@ -1635,7 +1693,7 @@ var se_StartConfigurationPolicyDisassociationCommand = /* @__PURE__ */ __name(as
|
|
|
1635
1693
|
return b.build();
|
|
1636
1694
|
}, "se_StartConfigurationPolicyDisassociationCommand");
|
|
1637
1695
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1638
|
-
const b = (0,
|
|
1696
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1639
1697
|
const headers = {
|
|
1640
1698
|
"content-type": "application/json"
|
|
1641
1699
|
};
|
|
@@ -1651,7 +1709,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1651
1709
|
return b.build();
|
|
1652
1710
|
}, "se_TagResourceCommand");
|
|
1653
1711
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1654
|
-
const b = (0,
|
|
1712
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1655
1713
|
const headers = {};
|
|
1656
1714
|
b.bp("/tags/{ResourceArn}");
|
|
1657
1715
|
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
@@ -1666,7 +1724,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1666
1724
|
return b.build();
|
|
1667
1725
|
}, "se_UntagResourceCommand");
|
|
1668
1726
|
var se_UpdateActionTargetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1669
|
-
const b = (0,
|
|
1727
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1670
1728
|
const headers = {
|
|
1671
1729
|
"content-type": "application/json"
|
|
1672
1730
|
};
|
|
@@ -1683,7 +1741,7 @@ var se_UpdateActionTargetCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1683
1741
|
return b.build();
|
|
1684
1742
|
}, "se_UpdateActionTargetCommand");
|
|
1685
1743
|
var se_UpdateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1686
|
-
const b = (0,
|
|
1744
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1687
1745
|
const headers = {
|
|
1688
1746
|
"content-type": "application/json"
|
|
1689
1747
|
};
|
|
@@ -1702,7 +1760,7 @@ var se_UpdateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1702
1760
|
return b.build();
|
|
1703
1761
|
}, "se_UpdateConfigurationPolicyCommand");
|
|
1704
1762
|
var se_UpdateFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1705
|
-
const b = (0,
|
|
1763
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1706
1764
|
const headers = {
|
|
1707
1765
|
"content-type": "application/json"
|
|
1708
1766
|
};
|
|
@@ -1719,7 +1777,7 @@ var se_UpdateFindingAggregatorCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1719
1777
|
return b.build();
|
|
1720
1778
|
}, "se_UpdateFindingAggregatorCommand");
|
|
1721
1779
|
var se_UpdateFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1722
|
-
const b = (0,
|
|
1780
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1723
1781
|
const headers = {
|
|
1724
1782
|
"content-type": "application/json"
|
|
1725
1783
|
};
|
|
@@ -1736,7 +1794,7 @@ var se_UpdateFindingsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1736
1794
|
return b.build();
|
|
1737
1795
|
}, "se_UpdateFindingsCommand");
|
|
1738
1796
|
var se_UpdateInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1739
|
-
const b = (0,
|
|
1797
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1740
1798
|
const headers = {
|
|
1741
1799
|
"content-type": "application/json"
|
|
1742
1800
|
};
|
|
@@ -1754,7 +1812,7 @@ var se_UpdateInsightCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1754
1812
|
return b.build();
|
|
1755
1813
|
}, "se_UpdateInsightCommand");
|
|
1756
1814
|
var se_UpdateOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1757
|
-
const b = (0,
|
|
1815
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1758
1816
|
const headers = {
|
|
1759
1817
|
"content-type": "application/json"
|
|
1760
1818
|
};
|
|
@@ -1771,7 +1829,7 @@ var se_UpdateOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (in
|
|
|
1771
1829
|
return b.build();
|
|
1772
1830
|
}, "se_UpdateOrganizationConfigurationCommand");
|
|
1773
1831
|
var se_UpdateSecurityControlCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1774
|
-
const b = (0,
|
|
1832
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1775
1833
|
const headers = {
|
|
1776
1834
|
"content-type": "application/json"
|
|
1777
1835
|
};
|
|
@@ -1788,7 +1846,7 @@ var se_UpdateSecurityControlCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1788
1846
|
return b.build();
|
|
1789
1847
|
}, "se_UpdateSecurityControlCommand");
|
|
1790
1848
|
var se_UpdateSecurityHubConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1791
|
-
const b = (0,
|
|
1849
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1792
1850
|
const headers = {
|
|
1793
1851
|
"content-type": "application/json"
|
|
1794
1852
|
};
|
|
@@ -1804,7 +1862,7 @@ var se_UpdateSecurityHubConfigurationCommand = /* @__PURE__ */ __name(async (inp
|
|
|
1804
1862
|
return b.build();
|
|
1805
1863
|
}, "se_UpdateSecurityHubConfigurationCommand");
|
|
1806
1864
|
var se_UpdateStandardsControlCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1807
|
-
const b = (0,
|
|
1865
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1808
1866
|
const headers = {
|
|
1809
1867
|
"content-type": "application/json"
|
|
1810
1868
|
};
|
|
@@ -2041,7 +2099,7 @@ var de_CreateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (output,
|
|
|
2041
2099
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
2042
2100
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2043
2101
|
Arn: import_smithy_client.expectString,
|
|
2044
|
-
ConfigurationPolicy: (_) => de_Policy((0,
|
|
2102
|
+
ConfigurationPolicy: (_) => de_Policy((0, import_core2.awsExpectUnion)(_), context),
|
|
2045
2103
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
2046
2104
|
Description: import_smithy_client.expectString,
|
|
2047
2105
|
Id: import_smithy_client.expectString,
|
|
@@ -2398,7 +2456,7 @@ var de_GetConfigurationPolicyCommand = /* @__PURE__ */ __name(async (output, con
|
|
|
2398
2456
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
2399
2457
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2400
2458
|
Arn: import_smithy_client.expectString,
|
|
2401
|
-
ConfigurationPolicy: (_) => de_Policy((0,
|
|
2459
|
+
ConfigurationPolicy: (_) => de_Policy((0, import_core2.awsExpectUnion)(_), context),
|
|
2402
2460
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
2403
2461
|
Description: import_smithy_client.expectString,
|
|
2404
2462
|
Id: import_smithy_client.expectString,
|
|
@@ -2824,7 +2882,7 @@ var de_UpdateConfigurationPolicyCommand = /* @__PURE__ */ __name(async (output,
|
|
|
2824
2882
|
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await parseBody(output.body, context)), "body");
|
|
2825
2883
|
const doc = (0, import_smithy_client.take)(data, {
|
|
2826
2884
|
Arn: import_smithy_client.expectString,
|
|
2827
|
-
ConfigurationPolicy: (_) => de_Policy((0,
|
|
2885
|
+
ConfigurationPolicy: (_) => de_Policy((0, import_core2.awsExpectUnion)(_), context),
|
|
2828
2886
|
CreatedAt: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(_)),
|
|
2829
2887
|
Description: import_smithy_client.expectString,
|
|
2830
2888
|
Id: import_smithy_client.expectString,
|
|
@@ -4637,13 +4695,13 @@ var de_NumberFilterList = /* @__PURE__ */ __name((output, context) => {
|
|
|
4637
4695
|
}, "de_NumberFilterList");
|
|
4638
4696
|
var de_ParameterConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
4639
4697
|
return (0, import_smithy_client.take)(output, {
|
|
4640
|
-
Value: (_) => de_ParameterValue((0,
|
|
4698
|
+
Value: (_) => de_ParameterValue((0, import_core2.awsExpectUnion)(_), context),
|
|
4641
4699
|
ValueType: import_smithy_client.expectString
|
|
4642
4700
|
});
|
|
4643
4701
|
}, "de_ParameterConfiguration");
|
|
4644
4702
|
var de_ParameterDefinition = /* @__PURE__ */ __name((output, context) => {
|
|
4645
4703
|
return (0, import_smithy_client.take)(output, {
|
|
4646
|
-
ConfigurationOptions: (_) => de_ConfigurationOptions((0,
|
|
4704
|
+
ConfigurationOptions: (_) => de_ConfigurationOptions((0, import_core2.awsExpectUnion)(_), context),
|
|
4647
4705
|
Description: import_smithy_client.expectString
|
|
4648
4706
|
});
|
|
4649
4707
|
}, "de_ParameterDefinition");
|
|
@@ -6491,72 +6549,72 @@ var SecurityHub = _SecurityHub;
|
|
|
6491
6549
|
(0, import_smithy_client.createAggregatedClient)(commands, SecurityHub);
|
|
6492
6550
|
|
|
6493
6551
|
// src/pagination/DescribeActionTargetsPaginator.ts
|
|
6494
|
-
|
|
6495
|
-
var paginateDescribeActionTargets = (0,
|
|
6552
|
+
|
|
6553
|
+
var paginateDescribeActionTargets = (0, import_core.createPaginator)(SecurityHubClient, DescribeActionTargetsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6496
6554
|
|
|
6497
6555
|
// src/pagination/DescribeProductsPaginator.ts
|
|
6498
|
-
|
|
6499
|
-
var paginateDescribeProducts = (0,
|
|
6556
|
+
|
|
6557
|
+
var paginateDescribeProducts = (0, import_core.createPaginator)(SecurityHubClient, DescribeProductsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6500
6558
|
|
|
6501
6559
|
// src/pagination/DescribeStandardsControlsPaginator.ts
|
|
6502
|
-
|
|
6503
|
-
var paginateDescribeStandardsControls = (0,
|
|
6560
|
+
|
|
6561
|
+
var paginateDescribeStandardsControls = (0, import_core.createPaginator)(SecurityHubClient, DescribeStandardsControlsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6504
6562
|
|
|
6505
6563
|
// src/pagination/DescribeStandardsPaginator.ts
|
|
6506
|
-
|
|
6507
|
-
var paginateDescribeStandards = (0,
|
|
6564
|
+
|
|
6565
|
+
var paginateDescribeStandards = (0, import_core.createPaginator)(SecurityHubClient, DescribeStandardsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6508
6566
|
|
|
6509
6567
|
// src/pagination/GetEnabledStandardsPaginator.ts
|
|
6510
|
-
|
|
6511
|
-
var paginateGetEnabledStandards = (0,
|
|
6568
|
+
|
|
6569
|
+
var paginateGetEnabledStandards = (0, import_core.createPaginator)(SecurityHubClient, GetEnabledStandardsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6512
6570
|
|
|
6513
6571
|
// src/pagination/GetFindingHistoryPaginator.ts
|
|
6514
|
-
|
|
6515
|
-
var paginateGetFindingHistory = (0,
|
|
6572
|
+
|
|
6573
|
+
var paginateGetFindingHistory = (0, import_core.createPaginator)(SecurityHubClient, GetFindingHistoryCommand, "NextToken", "NextToken", "MaxResults");
|
|
6516
6574
|
|
|
6517
6575
|
// src/pagination/GetFindingsPaginator.ts
|
|
6518
|
-
|
|
6519
|
-
var paginateGetFindings = (0,
|
|
6576
|
+
|
|
6577
|
+
var paginateGetFindings = (0, import_core.createPaginator)(SecurityHubClient, GetFindingsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6520
6578
|
|
|
6521
6579
|
// src/pagination/GetInsightsPaginator.ts
|
|
6522
|
-
|
|
6523
|
-
var paginateGetInsights = (0,
|
|
6580
|
+
|
|
6581
|
+
var paginateGetInsights = (0, import_core.createPaginator)(SecurityHubClient, GetInsightsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6524
6582
|
|
|
6525
6583
|
// src/pagination/ListConfigurationPoliciesPaginator.ts
|
|
6526
|
-
|
|
6527
|
-
var paginateListConfigurationPolicies = (0,
|
|
6584
|
+
|
|
6585
|
+
var paginateListConfigurationPolicies = (0, import_core.createPaginator)(SecurityHubClient, ListConfigurationPoliciesCommand, "NextToken", "NextToken", "MaxResults");
|
|
6528
6586
|
|
|
6529
6587
|
// src/pagination/ListConfigurationPolicyAssociationsPaginator.ts
|
|
6530
|
-
|
|
6531
|
-
var paginateListConfigurationPolicyAssociations = (0,
|
|
6588
|
+
|
|
6589
|
+
var paginateListConfigurationPolicyAssociations = (0, import_core.createPaginator)(SecurityHubClient, ListConfigurationPolicyAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6532
6590
|
|
|
6533
6591
|
// src/pagination/ListEnabledProductsForImportPaginator.ts
|
|
6534
|
-
|
|
6535
|
-
var paginateListEnabledProductsForImport = (0,
|
|
6592
|
+
|
|
6593
|
+
var paginateListEnabledProductsForImport = (0, import_core.createPaginator)(SecurityHubClient, ListEnabledProductsForImportCommand, "NextToken", "NextToken", "MaxResults");
|
|
6536
6594
|
|
|
6537
6595
|
// src/pagination/ListFindingAggregatorsPaginator.ts
|
|
6538
|
-
|
|
6539
|
-
var paginateListFindingAggregators = (0,
|
|
6596
|
+
|
|
6597
|
+
var paginateListFindingAggregators = (0, import_core.createPaginator)(SecurityHubClient, ListFindingAggregatorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6540
6598
|
|
|
6541
6599
|
// src/pagination/ListInvitationsPaginator.ts
|
|
6542
|
-
|
|
6543
|
-
var paginateListInvitations = (0,
|
|
6600
|
+
|
|
6601
|
+
var paginateListInvitations = (0, import_core.createPaginator)(SecurityHubClient, ListInvitationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6544
6602
|
|
|
6545
6603
|
// src/pagination/ListMembersPaginator.ts
|
|
6546
|
-
|
|
6547
|
-
var paginateListMembers = (0,
|
|
6604
|
+
|
|
6605
|
+
var paginateListMembers = (0, import_core.createPaginator)(SecurityHubClient, ListMembersCommand, "NextToken", "NextToken", "MaxResults");
|
|
6548
6606
|
|
|
6549
6607
|
// src/pagination/ListOrganizationAdminAccountsPaginator.ts
|
|
6550
|
-
|
|
6551
|
-
var paginateListOrganizationAdminAccounts = (0,
|
|
6608
|
+
|
|
6609
|
+
var paginateListOrganizationAdminAccounts = (0, import_core.createPaginator)(SecurityHubClient, ListOrganizationAdminAccountsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6552
6610
|
|
|
6553
6611
|
// src/pagination/ListSecurityControlDefinitionsPaginator.ts
|
|
6554
|
-
|
|
6555
|
-
var paginateListSecurityControlDefinitions = (0,
|
|
6612
|
+
|
|
6613
|
+
var paginateListSecurityControlDefinitions = (0, import_core.createPaginator)(SecurityHubClient, ListSecurityControlDefinitionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6556
6614
|
|
|
6557
6615
|
// src/pagination/ListStandardsControlAssociationsPaginator.ts
|
|
6558
|
-
|
|
6559
|
-
var paginateListStandardsControlAssociations = (0,
|
|
6616
|
+
|
|
6617
|
+
var paginateListStandardsControlAssociations = (0, import_core.createPaginator)(SecurityHubClient, ListStandardsControlAssociationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
6560
6618
|
|
|
6561
6619
|
// src/models/models_1.ts
|
|
6562
6620
|
var AwsIamAccessKeyStatus = {
|