@aws-sdk/client-inspector2 3.509.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 +156 -98
- package/dist-cjs/runtimeConfig.shared.js +10 -0
- package/dist-es/Inspector2Client.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/Inspector2Client.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 +6 -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/Inspector2Client.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 +16 -16
package/dist-cjs/index.js
CHANGED
|
@@ -206,13 +206,14 @@ module.exports = __toCommonJS(src_exports);
|
|
|
206
206
|
var import_middleware_host_header = require("@aws-sdk/middleware-host-header");
|
|
207
207
|
var import_middleware_logger = require("@aws-sdk/middleware-logger");
|
|
208
208
|
var import_middleware_recursion_detection = require("@aws-sdk/middleware-recursion-detection");
|
|
209
|
-
var import_middleware_signing = require("@aws-sdk/middleware-signing");
|
|
210
209
|
var import_middleware_user_agent = require("@aws-sdk/middleware-user-agent");
|
|
211
210
|
var import_config_resolver = require("@smithy/config-resolver");
|
|
211
|
+
var import_core = require("@smithy/core");
|
|
212
212
|
var import_middleware_content_length = require("@smithy/middleware-content-length");
|
|
213
213
|
var import_middleware_endpoint = require("@smithy/middleware-endpoint");
|
|
214
214
|
var import_middleware_retry = require("@smithy/middleware-retry");
|
|
215
215
|
|
|
216
|
+
var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
216
217
|
|
|
217
218
|
// src/endpoint/EndpointParameters.ts
|
|
218
219
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
@@ -237,19 +238,62 @@ var import_runtimeConfig = require("././runtimeConfig");
|
|
|
237
238
|
var import_region_config_resolver = require("@aws-sdk/region-config-resolver");
|
|
238
239
|
var import_protocol_http = require("@smithy/protocol-http");
|
|
239
240
|
var import_smithy_client = require("@smithy/smithy-client");
|
|
241
|
+
|
|
242
|
+
// src/auth/httpAuthExtensionConfiguration.ts
|
|
243
|
+
var getHttpAuthExtensionConfiguration = /* @__PURE__ */ __name((runtimeConfig) => {
|
|
244
|
+
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
245
|
+
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
246
|
+
let _credentials = runtimeConfig.credentials;
|
|
247
|
+
return {
|
|
248
|
+
setHttpAuthScheme(httpAuthScheme) {
|
|
249
|
+
const index = _httpAuthSchemes.findIndex((scheme) => scheme.schemeId === httpAuthScheme.schemeId);
|
|
250
|
+
if (index === -1) {
|
|
251
|
+
_httpAuthSchemes.push(httpAuthScheme);
|
|
252
|
+
} else {
|
|
253
|
+
_httpAuthSchemes.splice(index, 1, httpAuthScheme);
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
httpAuthSchemes() {
|
|
257
|
+
return _httpAuthSchemes;
|
|
258
|
+
},
|
|
259
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider) {
|
|
260
|
+
_httpAuthSchemeProvider = httpAuthSchemeProvider;
|
|
261
|
+
},
|
|
262
|
+
httpAuthSchemeProvider() {
|
|
263
|
+
return _httpAuthSchemeProvider;
|
|
264
|
+
},
|
|
265
|
+
setCredentials(credentials) {
|
|
266
|
+
_credentials = credentials;
|
|
267
|
+
},
|
|
268
|
+
credentials() {
|
|
269
|
+
return _credentials;
|
|
270
|
+
}
|
|
271
|
+
};
|
|
272
|
+
}, "getHttpAuthExtensionConfiguration");
|
|
273
|
+
var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
274
|
+
return {
|
|
275
|
+
httpAuthSchemes: config.httpAuthSchemes(),
|
|
276
|
+
httpAuthSchemeProvider: config.httpAuthSchemeProvider(),
|
|
277
|
+
credentials: config.credentials()
|
|
278
|
+
};
|
|
279
|
+
}, "resolveHttpAuthRuntimeConfig");
|
|
280
|
+
|
|
281
|
+
// src/runtimeExtensions.ts
|
|
240
282
|
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
241
283
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
242
284
|
const extensionConfiguration = {
|
|
243
285
|
...asPartial((0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig)),
|
|
244
286
|
...asPartial((0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig)),
|
|
245
|
-
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig))
|
|
287
|
+
...asPartial((0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig)),
|
|
288
|
+
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig))
|
|
246
289
|
};
|
|
247
290
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
248
291
|
return {
|
|
249
292
|
...runtimeConfig,
|
|
250
293
|
...(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
251
294
|
...(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
252
|
-
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration)
|
|
295
|
+
...(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
296
|
+
...resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
253
297
|
};
|
|
254
298
|
}, "resolveRuntimeExtensions");
|
|
255
299
|
|
|
@@ -262,8 +306,8 @@ var _Inspector2Client = class _Inspector2Client extends import_smithy_client.Cli
|
|
|
262
306
|
const _config_3 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_2);
|
|
263
307
|
const _config_4 = (0, import_middleware_retry.resolveRetryConfig)(_config_3);
|
|
264
308
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
265
|
-
const _config_6 = (0,
|
|
266
|
-
const _config_7 = (0,
|
|
309
|
+
const _config_6 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_5);
|
|
310
|
+
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
267
311
|
const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
|
|
268
312
|
super(_config_8);
|
|
269
313
|
this.config = _config_8;
|
|
@@ -272,8 +316,14 @@ var _Inspector2Client = class _Inspector2Client extends import_smithy_client.Cli
|
|
|
272
316
|
this.middlewareStack.use((0, import_middleware_host_header.getHostHeaderPlugin)(this.config));
|
|
273
317
|
this.middlewareStack.use((0, import_middleware_logger.getLoggerPlugin)(this.config));
|
|
274
318
|
this.middlewareStack.use((0, import_middleware_recursion_detection.getRecursionDetectionPlugin)(this.config));
|
|
275
|
-
this.middlewareStack.use((0, import_middleware_signing.getAwsAuthPlugin)(this.config));
|
|
276
319
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
320
|
+
this.middlewareStack.use(
|
|
321
|
+
(0, import_core.getHttpAuthSchemeEndpointRuleSetPlugin)(this.config, {
|
|
322
|
+
httpAuthSchemeParametersProvider: this.getDefaultHttpAuthSchemeParametersProvider(),
|
|
323
|
+
identityProviderConfigProvider: this.getIdentityProviderConfigProvider()
|
|
324
|
+
})
|
|
325
|
+
);
|
|
326
|
+
this.middlewareStack.use((0, import_core.getHttpSigningPlugin)(this.config));
|
|
277
327
|
}
|
|
278
328
|
/**
|
|
279
329
|
* Destroy underlying resources, like sockets. It's usually not necessary to do this.
|
|
@@ -283,6 +333,14 @@ var _Inspector2Client = class _Inspector2Client extends import_smithy_client.Cli
|
|
|
283
333
|
destroy() {
|
|
284
334
|
super.destroy();
|
|
285
335
|
}
|
|
336
|
+
getDefaultHttpAuthSchemeParametersProvider() {
|
|
337
|
+
return import_httpAuthSchemeProvider.defaultInspector2HttpAuthSchemeParametersProvider;
|
|
338
|
+
}
|
|
339
|
+
getIdentityProviderConfigProvider() {
|
|
340
|
+
return async (config) => new import_core.DefaultIdentityProviderConfig({
|
|
341
|
+
"aws.auth#sigv4": config.credentials
|
|
342
|
+
});
|
|
343
|
+
}
|
|
286
344
|
};
|
|
287
345
|
__name(_Inspector2Client, "Inspector2Client");
|
|
288
346
|
var Inspector2Client = _Inspector2Client;
|
|
@@ -297,8 +355,8 @@ var import_middleware_serde = require("@smithy/middleware-serde");
|
|
|
297
355
|
var import_types = require("@smithy/types");
|
|
298
356
|
|
|
299
357
|
// src/protocols/Aws_restJson1.ts
|
|
300
|
-
var
|
|
301
|
-
|
|
358
|
+
var import_core2 = require("@aws-sdk/core");
|
|
359
|
+
|
|
302
360
|
|
|
303
361
|
var import_uuid = require("uuid");
|
|
304
362
|
|
|
@@ -1042,7 +1100,7 @@ var ListCisScansSortBy = {
|
|
|
1042
1100
|
|
|
1043
1101
|
// src/protocols/Aws_restJson1.ts
|
|
1044
1102
|
var se_AssociateMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1045
|
-
const b = (0,
|
|
1103
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1046
1104
|
const headers = {
|
|
1047
1105
|
"content-type": "application/json"
|
|
1048
1106
|
};
|
|
@@ -1057,7 +1115,7 @@ var se_AssociateMemberCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1057
1115
|
return b.build();
|
|
1058
1116
|
}, "se_AssociateMemberCommand");
|
|
1059
1117
|
var se_BatchGetAccountStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1060
|
-
const b = (0,
|
|
1118
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1061
1119
|
const headers = {
|
|
1062
1120
|
"content-type": "application/json"
|
|
1063
1121
|
};
|
|
@@ -1072,7 +1130,7 @@ var se_BatchGetAccountStatusCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1072
1130
|
return b.build();
|
|
1073
1131
|
}, "se_BatchGetAccountStatusCommand");
|
|
1074
1132
|
var se_BatchGetCodeSnippetCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1075
|
-
const b = (0,
|
|
1133
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1076
1134
|
const headers = {
|
|
1077
1135
|
"content-type": "application/json"
|
|
1078
1136
|
};
|
|
@@ -1087,7 +1145,7 @@ var se_BatchGetCodeSnippetCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1087
1145
|
return b.build();
|
|
1088
1146
|
}, "se_BatchGetCodeSnippetCommand");
|
|
1089
1147
|
var se_BatchGetFindingDetailsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1090
|
-
const b = (0,
|
|
1148
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1091
1149
|
const headers = {
|
|
1092
1150
|
"content-type": "application/json"
|
|
1093
1151
|
};
|
|
@@ -1102,7 +1160,7 @@ var se_BatchGetFindingDetailsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1102
1160
|
return b.build();
|
|
1103
1161
|
}, "se_BatchGetFindingDetailsCommand");
|
|
1104
1162
|
var se_BatchGetFreeTrialInfoCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1105
|
-
const b = (0,
|
|
1163
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1106
1164
|
const headers = {
|
|
1107
1165
|
"content-type": "application/json"
|
|
1108
1166
|
};
|
|
@@ -1117,7 +1175,7 @@ var se_BatchGetFreeTrialInfoCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1117
1175
|
return b.build();
|
|
1118
1176
|
}, "se_BatchGetFreeTrialInfoCommand");
|
|
1119
1177
|
var se_BatchGetMemberEc2DeepInspectionStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1120
|
-
const b = (0,
|
|
1178
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1121
1179
|
const headers = {
|
|
1122
1180
|
"content-type": "application/json"
|
|
1123
1181
|
};
|
|
@@ -1132,7 +1190,7 @@ var se_BatchGetMemberEc2DeepInspectionStatusCommand = /* @__PURE__ */ __name(asy
|
|
|
1132
1190
|
return b.build();
|
|
1133
1191
|
}, "se_BatchGetMemberEc2DeepInspectionStatusCommand");
|
|
1134
1192
|
var se_BatchUpdateMemberEc2DeepInspectionStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1135
|
-
const b = (0,
|
|
1193
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1136
1194
|
const headers = {
|
|
1137
1195
|
"content-type": "application/json"
|
|
1138
1196
|
};
|
|
@@ -1147,7 +1205,7 @@ var se_BatchUpdateMemberEc2DeepInspectionStatusCommand = /* @__PURE__ */ __name(
|
|
|
1147
1205
|
return b.build();
|
|
1148
1206
|
}, "se_BatchUpdateMemberEc2DeepInspectionStatusCommand");
|
|
1149
1207
|
var se_CancelFindingsReportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1150
|
-
const b = (0,
|
|
1208
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1151
1209
|
const headers = {
|
|
1152
1210
|
"content-type": "application/json"
|
|
1153
1211
|
};
|
|
@@ -1162,7 +1220,7 @@ var se_CancelFindingsReportCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1162
1220
|
return b.build();
|
|
1163
1221
|
}, "se_CancelFindingsReportCommand");
|
|
1164
1222
|
var se_CancelSbomExportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1165
|
-
const b = (0,
|
|
1223
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1166
1224
|
const headers = {
|
|
1167
1225
|
"content-type": "application/json"
|
|
1168
1226
|
};
|
|
@@ -1177,7 +1235,7 @@ var se_CancelSbomExportCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1177
1235
|
return b.build();
|
|
1178
1236
|
}, "se_CancelSbomExportCommand");
|
|
1179
1237
|
var se_CreateCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1180
|
-
const b = (0,
|
|
1238
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1181
1239
|
const headers = {
|
|
1182
1240
|
"content-type": "application/json"
|
|
1183
1241
|
};
|
|
@@ -1196,7 +1254,7 @@ var se_CreateCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1196
1254
|
return b.build();
|
|
1197
1255
|
}, "se_CreateCisScanConfigurationCommand");
|
|
1198
1256
|
var se_CreateFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1199
|
-
const b = (0,
|
|
1257
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1200
1258
|
const headers = {
|
|
1201
1259
|
"content-type": "application/json"
|
|
1202
1260
|
};
|
|
@@ -1216,7 +1274,7 @@ var se_CreateFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1216
1274
|
return b.build();
|
|
1217
1275
|
}, "se_CreateFilterCommand");
|
|
1218
1276
|
var se_CreateFindingsReportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1219
|
-
const b = (0,
|
|
1277
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1220
1278
|
const headers = {
|
|
1221
1279
|
"content-type": "application/json"
|
|
1222
1280
|
};
|
|
@@ -1233,7 +1291,7 @@ var se_CreateFindingsReportCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1233
1291
|
return b.build();
|
|
1234
1292
|
}, "se_CreateFindingsReportCommand");
|
|
1235
1293
|
var se_CreateSbomExportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1236
|
-
const b = (0,
|
|
1294
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1237
1295
|
const headers = {
|
|
1238
1296
|
"content-type": "application/json"
|
|
1239
1297
|
};
|
|
@@ -1250,7 +1308,7 @@ var se_CreateSbomExportCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1250
1308
|
return b.build();
|
|
1251
1309
|
}, "se_CreateSbomExportCommand");
|
|
1252
1310
|
var se_DeleteCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1253
|
-
const b = (0,
|
|
1311
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1254
1312
|
const headers = {
|
|
1255
1313
|
"content-type": "application/json"
|
|
1256
1314
|
};
|
|
@@ -1265,7 +1323,7 @@ var se_DeleteCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1265
1323
|
return b.build();
|
|
1266
1324
|
}, "se_DeleteCisScanConfigurationCommand");
|
|
1267
1325
|
var se_DeleteFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1268
|
-
const b = (0,
|
|
1326
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1269
1327
|
const headers = {
|
|
1270
1328
|
"content-type": "application/json"
|
|
1271
1329
|
};
|
|
@@ -1280,7 +1338,7 @@ var se_DeleteFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1280
1338
|
return b.build();
|
|
1281
1339
|
}, "se_DeleteFilterCommand");
|
|
1282
1340
|
var se_DescribeOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1283
|
-
const b = (0,
|
|
1341
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1284
1342
|
const headers = {
|
|
1285
1343
|
"content-type": "application/json"
|
|
1286
1344
|
};
|
|
@@ -1291,7 +1349,7 @@ var se_DescribeOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (
|
|
|
1291
1349
|
return b.build();
|
|
1292
1350
|
}, "se_DescribeOrganizationConfigurationCommand");
|
|
1293
1351
|
var se_DisableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1294
|
-
const b = (0,
|
|
1352
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1295
1353
|
const headers = {
|
|
1296
1354
|
"content-type": "application/json"
|
|
1297
1355
|
};
|
|
@@ -1307,7 +1365,7 @@ var se_DisableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1307
1365
|
return b.build();
|
|
1308
1366
|
}, "se_DisableCommand");
|
|
1309
1367
|
var se_DisableDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1310
|
-
const b = (0,
|
|
1368
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1311
1369
|
const headers = {
|
|
1312
1370
|
"content-type": "application/json"
|
|
1313
1371
|
};
|
|
@@ -1322,7 +1380,7 @@ var se_DisableDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input
|
|
|
1322
1380
|
return b.build();
|
|
1323
1381
|
}, "se_DisableDelegatedAdminAccountCommand");
|
|
1324
1382
|
var se_DisassociateMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1325
|
-
const b = (0,
|
|
1383
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1326
1384
|
const headers = {
|
|
1327
1385
|
"content-type": "application/json"
|
|
1328
1386
|
};
|
|
@@ -1337,7 +1395,7 @@ var se_DisassociateMemberCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1337
1395
|
return b.build();
|
|
1338
1396
|
}, "se_DisassociateMemberCommand");
|
|
1339
1397
|
var se_EnableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1340
|
-
const b = (0,
|
|
1398
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1341
1399
|
const headers = {
|
|
1342
1400
|
"content-type": "application/json"
|
|
1343
1401
|
};
|
|
@@ -1354,7 +1412,7 @@ var se_EnableCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1354
1412
|
return b.build();
|
|
1355
1413
|
}, "se_EnableCommand");
|
|
1356
1414
|
var se_EnableDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1357
|
-
const b = (0,
|
|
1415
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1358
1416
|
const headers = {
|
|
1359
1417
|
"content-type": "application/json"
|
|
1360
1418
|
};
|
|
@@ -1370,7 +1428,7 @@ var se_EnableDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1370
1428
|
return b.build();
|
|
1371
1429
|
}, "se_EnableDelegatedAdminAccountCommand");
|
|
1372
1430
|
var se_GetCisScanReportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1373
|
-
const b = (0,
|
|
1431
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1374
1432
|
const headers = {
|
|
1375
1433
|
"content-type": "application/json"
|
|
1376
1434
|
};
|
|
@@ -1386,7 +1444,7 @@ var se_GetCisScanReportCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1386
1444
|
return b.build();
|
|
1387
1445
|
}, "se_GetCisScanReportCommand");
|
|
1388
1446
|
var se_GetCisScanResultDetailsCommand = /* @__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
|
};
|
|
@@ -1408,7 +1466,7 @@ var se_GetCisScanResultDetailsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1408
1466
|
return b.build();
|
|
1409
1467
|
}, "se_GetCisScanResultDetailsCommand");
|
|
1410
1468
|
var se_GetConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1411
|
-
const b = (0,
|
|
1469
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1412
1470
|
const headers = {
|
|
1413
1471
|
"content-type": "application/json"
|
|
1414
1472
|
};
|
|
@@ -1419,7 +1477,7 @@ var se_GetConfigurationCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1419
1477
|
return b.build();
|
|
1420
1478
|
}, "se_GetConfigurationCommand");
|
|
1421
1479
|
var se_GetDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1422
|
-
const b = (0,
|
|
1480
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1423
1481
|
const headers = {
|
|
1424
1482
|
"content-type": "application/json"
|
|
1425
1483
|
};
|
|
@@ -1430,7 +1488,7 @@ var se_GetDelegatedAdminAccountCommand = /* @__PURE__ */ __name(async (input, co
|
|
|
1430
1488
|
return b.build();
|
|
1431
1489
|
}, "se_GetDelegatedAdminAccountCommand");
|
|
1432
1490
|
var se_GetEc2DeepInspectionConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1433
|
-
const b = (0,
|
|
1491
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1434
1492
|
const headers = {
|
|
1435
1493
|
"content-type": "application/json"
|
|
1436
1494
|
};
|
|
@@ -1441,7 +1499,7 @@ var se_GetEc2DeepInspectionConfigurationCommand = /* @__PURE__ */ __name(async (
|
|
|
1441
1499
|
return b.build();
|
|
1442
1500
|
}, "se_GetEc2DeepInspectionConfigurationCommand");
|
|
1443
1501
|
var se_GetEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1444
|
-
const b = (0,
|
|
1502
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1445
1503
|
const headers = {};
|
|
1446
1504
|
b.bp("/encryptionkey/get");
|
|
1447
1505
|
const query = (0, import_smithy_client.map)({
|
|
@@ -1453,7 +1511,7 @@ var se_GetEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context) =
|
|
|
1453
1511
|
return b.build();
|
|
1454
1512
|
}, "se_GetEncryptionKeyCommand");
|
|
1455
1513
|
var se_GetFindingsReportStatusCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1456
|
-
const b = (0,
|
|
1514
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1457
1515
|
const headers = {
|
|
1458
1516
|
"content-type": "application/json"
|
|
1459
1517
|
};
|
|
@@ -1468,7 +1526,7 @@ var se_GetFindingsReportStatusCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1468
1526
|
return b.build();
|
|
1469
1527
|
}, "se_GetFindingsReportStatusCommand");
|
|
1470
1528
|
var se_GetMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1471
|
-
const b = (0,
|
|
1529
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1472
1530
|
const headers = {
|
|
1473
1531
|
"content-type": "application/json"
|
|
1474
1532
|
};
|
|
@@ -1483,7 +1541,7 @@ var se_GetMemberCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1483
1541
|
return b.build();
|
|
1484
1542
|
}, "se_GetMemberCommand");
|
|
1485
1543
|
var se_GetSbomExportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1486
|
-
const b = (0,
|
|
1544
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1487
1545
|
const headers = {
|
|
1488
1546
|
"content-type": "application/json"
|
|
1489
1547
|
};
|
|
@@ -1498,7 +1556,7 @@ var se_GetSbomExportCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1498
1556
|
return b.build();
|
|
1499
1557
|
}, "se_GetSbomExportCommand");
|
|
1500
1558
|
var se_ListAccountPermissionsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1501
|
-
const b = (0,
|
|
1559
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1502
1560
|
const headers = {
|
|
1503
1561
|
"content-type": "application/json"
|
|
1504
1562
|
};
|
|
@@ -1515,7 +1573,7 @@ var se_ListAccountPermissionsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1515
1573
|
return b.build();
|
|
1516
1574
|
}, "se_ListAccountPermissionsCommand");
|
|
1517
1575
|
var se_ListCisScanConfigurationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1518
|
-
const b = (0,
|
|
1576
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1519
1577
|
const headers = {
|
|
1520
1578
|
"content-type": "application/json"
|
|
1521
1579
|
};
|
|
@@ -1534,7 +1592,7 @@ var se_ListCisScanConfigurationsCommand = /* @__PURE__ */ __name(async (input, c
|
|
|
1534
1592
|
return b.build();
|
|
1535
1593
|
}, "se_ListCisScanConfigurationsCommand");
|
|
1536
1594
|
var se_ListCisScanResultsAggregatedByChecksCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1537
|
-
const b = (0,
|
|
1595
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1538
1596
|
const headers = {
|
|
1539
1597
|
"content-type": "application/json"
|
|
1540
1598
|
};
|
|
@@ -1554,7 +1612,7 @@ var se_ListCisScanResultsAggregatedByChecksCommand = /* @__PURE__ */ __name(asyn
|
|
|
1554
1612
|
return b.build();
|
|
1555
1613
|
}, "se_ListCisScanResultsAggregatedByChecksCommand");
|
|
1556
1614
|
var se_ListCisScanResultsAggregatedByTargetResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1557
|
-
const b = (0,
|
|
1615
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1558
1616
|
const headers = {
|
|
1559
1617
|
"content-type": "application/json"
|
|
1560
1618
|
};
|
|
@@ -1574,7 +1632,7 @@ var se_ListCisScanResultsAggregatedByTargetResourceCommand = /* @__PURE__ */ __n
|
|
|
1574
1632
|
return b.build();
|
|
1575
1633
|
}, "se_ListCisScanResultsAggregatedByTargetResourceCommand");
|
|
1576
1634
|
var se_ListCisScansCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1577
|
-
const b = (0,
|
|
1635
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1578
1636
|
const headers = {
|
|
1579
1637
|
"content-type": "application/json"
|
|
1580
1638
|
};
|
|
@@ -1594,7 +1652,7 @@ var se_ListCisScansCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1594
1652
|
return b.build();
|
|
1595
1653
|
}, "se_ListCisScansCommand");
|
|
1596
1654
|
var se_ListCoverageCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1597
|
-
const b = (0,
|
|
1655
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1598
1656
|
const headers = {
|
|
1599
1657
|
"content-type": "application/json"
|
|
1600
1658
|
};
|
|
@@ -1611,7 +1669,7 @@ var se_ListCoverageCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1611
1669
|
return b.build();
|
|
1612
1670
|
}, "se_ListCoverageCommand");
|
|
1613
1671
|
var se_ListCoverageStatisticsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1614
|
-
const b = (0,
|
|
1672
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1615
1673
|
const headers = {
|
|
1616
1674
|
"content-type": "application/json"
|
|
1617
1675
|
};
|
|
@@ -1628,7 +1686,7 @@ var se_ListCoverageStatisticsCommand = /* @__PURE__ */ __name(async (input, cont
|
|
|
1628
1686
|
return b.build();
|
|
1629
1687
|
}, "se_ListCoverageStatisticsCommand");
|
|
1630
1688
|
var se_ListDelegatedAdminAccountsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1631
|
-
const b = (0,
|
|
1689
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1632
1690
|
const headers = {
|
|
1633
1691
|
"content-type": "application/json"
|
|
1634
1692
|
};
|
|
@@ -1644,7 +1702,7 @@ var se_ListDelegatedAdminAccountsCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1644
1702
|
return b.build();
|
|
1645
1703
|
}, "se_ListDelegatedAdminAccountsCommand");
|
|
1646
1704
|
var se_ListFiltersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1647
|
-
const b = (0,
|
|
1705
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1648
1706
|
const headers = {
|
|
1649
1707
|
"content-type": "application/json"
|
|
1650
1708
|
};
|
|
@@ -1662,7 +1720,7 @@ var se_ListFiltersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1662
1720
|
return b.build();
|
|
1663
1721
|
}, "se_ListFiltersCommand");
|
|
1664
1722
|
var se_ListFindingAggregationsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1665
|
-
const b = (0,
|
|
1723
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1666
1724
|
const headers = {
|
|
1667
1725
|
"content-type": "application/json"
|
|
1668
1726
|
};
|
|
@@ -1681,7 +1739,7 @@ var se_ListFindingAggregationsCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1681
1739
|
return b.build();
|
|
1682
1740
|
}, "se_ListFindingAggregationsCommand");
|
|
1683
1741
|
var se_ListFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1684
|
-
const b = (0,
|
|
1742
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1685
1743
|
const headers = {
|
|
1686
1744
|
"content-type": "application/json"
|
|
1687
1745
|
};
|
|
@@ -1699,7 +1757,7 @@ var se_ListFindingsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1699
1757
|
return b.build();
|
|
1700
1758
|
}, "se_ListFindingsCommand");
|
|
1701
1759
|
var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1702
|
-
const b = (0,
|
|
1760
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1703
1761
|
const headers = {
|
|
1704
1762
|
"content-type": "application/json"
|
|
1705
1763
|
};
|
|
@@ -1716,7 +1774,7 @@ var se_ListMembersCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1716
1774
|
return b.build();
|
|
1717
1775
|
}, "se_ListMembersCommand");
|
|
1718
1776
|
var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1719
|
-
const b = (0,
|
|
1777
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1720
1778
|
const headers = {};
|
|
1721
1779
|
b.bp("/tags/{resourceArn}");
|
|
1722
1780
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -1725,7 +1783,7 @@ var se_ListTagsForResourceCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1725
1783
|
return b.build();
|
|
1726
1784
|
}, "se_ListTagsForResourceCommand");
|
|
1727
1785
|
var se_ListUsageTotalsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1728
|
-
const b = (0,
|
|
1786
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1729
1787
|
const headers = {
|
|
1730
1788
|
"content-type": "application/json"
|
|
1731
1789
|
};
|
|
@@ -1742,7 +1800,7 @@ var se_ListUsageTotalsCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1742
1800
|
return b.build();
|
|
1743
1801
|
}, "se_ListUsageTotalsCommand");
|
|
1744
1802
|
var se_ResetEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1745
|
-
const b = (0,
|
|
1803
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1746
1804
|
const headers = {
|
|
1747
1805
|
"content-type": "application/json"
|
|
1748
1806
|
};
|
|
@@ -1758,7 +1816,7 @@ var se_ResetEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context)
|
|
|
1758
1816
|
return b.build();
|
|
1759
1817
|
}, "se_ResetEncryptionKeyCommand");
|
|
1760
1818
|
var se_SearchVulnerabilitiesCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1761
|
-
const b = (0,
|
|
1819
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1762
1820
|
const headers = {
|
|
1763
1821
|
"content-type": "application/json"
|
|
1764
1822
|
};
|
|
@@ -1774,7 +1832,7 @@ var se_SearchVulnerabilitiesCommand = /* @__PURE__ */ __name(async (input, conte
|
|
|
1774
1832
|
return b.build();
|
|
1775
1833
|
}, "se_SearchVulnerabilitiesCommand");
|
|
1776
1834
|
var se_SendCisSessionHealthCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1777
|
-
const b = (0,
|
|
1835
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1778
1836
|
const headers = {
|
|
1779
1837
|
"content-type": "application/json"
|
|
1780
1838
|
};
|
|
@@ -1790,7 +1848,7 @@ var se_SendCisSessionHealthCommand = /* @__PURE__ */ __name(async (input, contex
|
|
|
1790
1848
|
return b.build();
|
|
1791
1849
|
}, "se_SendCisSessionHealthCommand");
|
|
1792
1850
|
var se_SendCisSessionTelemetryCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1793
|
-
const b = (0,
|
|
1851
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1794
1852
|
const headers = {
|
|
1795
1853
|
"content-type": "application/json"
|
|
1796
1854
|
};
|
|
@@ -1807,7 +1865,7 @@ var se_SendCisSessionTelemetryCommand = /* @__PURE__ */ __name(async (input, con
|
|
|
1807
1865
|
return b.build();
|
|
1808
1866
|
}, "se_SendCisSessionTelemetryCommand");
|
|
1809
1867
|
var se_StartCisSessionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1810
|
-
const b = (0,
|
|
1868
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1811
1869
|
const headers = {
|
|
1812
1870
|
"content-type": "application/json"
|
|
1813
1871
|
};
|
|
@@ -1823,7 +1881,7 @@ var se_StartCisSessionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1823
1881
|
return b.build();
|
|
1824
1882
|
}, "se_StartCisSessionCommand");
|
|
1825
1883
|
var se_StopCisSessionCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1826
|
-
const b = (0,
|
|
1884
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1827
1885
|
const headers = {
|
|
1828
1886
|
"content-type": "application/json"
|
|
1829
1887
|
};
|
|
@@ -1840,7 +1898,7 @@ var se_StopCisSessionCommand = /* @__PURE__ */ __name(async (input, context) =>
|
|
|
1840
1898
|
return b.build();
|
|
1841
1899
|
}, "se_StopCisSessionCommand");
|
|
1842
1900
|
var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1843
|
-
const b = (0,
|
|
1901
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1844
1902
|
const headers = {
|
|
1845
1903
|
"content-type": "application/json"
|
|
1846
1904
|
};
|
|
@@ -1856,7 +1914,7 @@ var se_TagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1856
1914
|
return b.build();
|
|
1857
1915
|
}, "se_TagResourceCommand");
|
|
1858
1916
|
var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1859
|
-
const b = (0,
|
|
1917
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1860
1918
|
const headers = {};
|
|
1861
1919
|
b.bp("/tags/{resourceArn}");
|
|
1862
1920
|
b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
@@ -1871,7 +1929,7 @@ var se_UntagResourceCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1871
1929
|
return b.build();
|
|
1872
1930
|
}, "se_UntagResourceCommand");
|
|
1873
1931
|
var se_UpdateCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1874
|
-
const b = (0,
|
|
1932
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1875
1933
|
const headers = {
|
|
1876
1934
|
"content-type": "application/json"
|
|
1877
1935
|
};
|
|
@@ -1890,7 +1948,7 @@ var se_UpdateCisScanConfigurationCommand = /* @__PURE__ */ __name(async (input,
|
|
|
1890
1948
|
return b.build();
|
|
1891
1949
|
}, "se_UpdateCisScanConfigurationCommand");
|
|
1892
1950
|
var se_UpdateConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1893
|
-
const b = (0,
|
|
1951
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1894
1952
|
const headers = {
|
|
1895
1953
|
"content-type": "application/json"
|
|
1896
1954
|
};
|
|
@@ -1905,7 +1963,7 @@ var se_UpdateConfigurationCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1905
1963
|
return b.build();
|
|
1906
1964
|
}, "se_UpdateConfigurationCommand");
|
|
1907
1965
|
var se_UpdateEc2DeepInspectionConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1908
|
-
const b = (0,
|
|
1966
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1909
1967
|
const headers = {
|
|
1910
1968
|
"content-type": "application/json"
|
|
1911
1969
|
};
|
|
@@ -1921,7 +1979,7 @@ var se_UpdateEc2DeepInspectionConfigurationCommand = /* @__PURE__ */ __name(asyn
|
|
|
1921
1979
|
return b.build();
|
|
1922
1980
|
}, "se_UpdateEc2DeepInspectionConfigurationCommand");
|
|
1923
1981
|
var se_UpdateEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1924
|
-
const b = (0,
|
|
1982
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1925
1983
|
const headers = {
|
|
1926
1984
|
"content-type": "application/json"
|
|
1927
1985
|
};
|
|
@@ -1938,7 +1996,7 @@ var se_UpdateEncryptionKeyCommand = /* @__PURE__ */ __name(async (input, context
|
|
|
1938
1996
|
return b.build();
|
|
1939
1997
|
}, "se_UpdateEncryptionKeyCommand");
|
|
1940
1998
|
var se_UpdateFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1941
|
-
const b = (0,
|
|
1999
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1942
2000
|
const headers = {
|
|
1943
2001
|
"content-type": "application/json"
|
|
1944
2002
|
};
|
|
@@ -1958,7 +2016,7 @@ var se_UpdateFilterCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
|
1958
2016
|
return b.build();
|
|
1959
2017
|
}, "se_UpdateFilterCommand");
|
|
1960
2018
|
var se_UpdateOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1961
|
-
const b = (0,
|
|
2019
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1962
2020
|
const headers = {
|
|
1963
2021
|
"content-type": "application/json"
|
|
1964
2022
|
};
|
|
@@ -1973,7 +2031,7 @@ var se_UpdateOrganizationConfigurationCommand = /* @__PURE__ */ __name(async (in
|
|
|
1973
2031
|
return b.build();
|
|
1974
2032
|
}, "se_UpdateOrganizationConfigurationCommand");
|
|
1975
2033
|
var se_UpdateOrgEc2DeepInspectionConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
1976
|
-
const b = (0,
|
|
2034
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
1977
2035
|
const headers = {
|
|
1978
2036
|
"content-type": "application/json"
|
|
1979
2037
|
};
|
|
@@ -3181,7 +3239,7 @@ var de_AggregationResponse = /* @__PURE__ */ __name((output, context) => {
|
|
|
3181
3239
|
}, "de_AggregationResponse");
|
|
3182
3240
|
var de_AggregationResponseList = /* @__PURE__ */ __name((output, context) => {
|
|
3183
3241
|
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
3184
|
-
return de_AggregationResponse((0,
|
|
3242
|
+
return de_AggregationResponse((0, import_core2.awsExpectUnion)(entry), context);
|
|
3185
3243
|
});
|
|
3186
3244
|
return retVal;
|
|
3187
3245
|
}, "de_AggregationResponseList");
|
|
@@ -4786,64 +4844,64 @@ var Inspector2 = _Inspector2;
|
|
|
4786
4844
|
(0, import_smithy_client.createAggregatedClient)(commands, Inspector2);
|
|
4787
4845
|
|
|
4788
4846
|
// src/pagination/GetCisScanResultDetailsPaginator.ts
|
|
4789
|
-
|
|
4790
|
-
var paginateGetCisScanResultDetails = (0,
|
|
4847
|
+
|
|
4848
|
+
var paginateGetCisScanResultDetails = (0, import_core.createPaginator)(Inspector2Client, GetCisScanResultDetailsCommand, "nextToken", "nextToken", "maxResults");
|
|
4791
4849
|
|
|
4792
4850
|
// src/pagination/ListAccountPermissionsPaginator.ts
|
|
4793
|
-
|
|
4794
|
-
var paginateListAccountPermissions = (0,
|
|
4851
|
+
|
|
4852
|
+
var paginateListAccountPermissions = (0, import_core.createPaginator)(Inspector2Client, ListAccountPermissionsCommand, "nextToken", "nextToken", "maxResults");
|
|
4795
4853
|
|
|
4796
4854
|
// src/pagination/ListCisScanConfigurationsPaginator.ts
|
|
4797
|
-
|
|
4798
|
-
var paginateListCisScanConfigurations = (0,
|
|
4855
|
+
|
|
4856
|
+
var paginateListCisScanConfigurations = (0, import_core.createPaginator)(Inspector2Client, ListCisScanConfigurationsCommand, "nextToken", "nextToken", "maxResults");
|
|
4799
4857
|
|
|
4800
4858
|
// src/pagination/ListCisScanResultsAggregatedByChecksPaginator.ts
|
|
4801
|
-
|
|
4802
|
-
var paginateListCisScanResultsAggregatedByChecks = (0,
|
|
4859
|
+
|
|
4860
|
+
var paginateListCisScanResultsAggregatedByChecks = (0, import_core.createPaginator)(Inspector2Client, ListCisScanResultsAggregatedByChecksCommand, "nextToken", "nextToken", "maxResults");
|
|
4803
4861
|
|
|
4804
4862
|
// src/pagination/ListCisScanResultsAggregatedByTargetResourcePaginator.ts
|
|
4805
|
-
|
|
4806
|
-
var paginateListCisScanResultsAggregatedByTargetResource = (0,
|
|
4863
|
+
|
|
4864
|
+
var paginateListCisScanResultsAggregatedByTargetResource = (0, import_core.createPaginator)(Inspector2Client, ListCisScanResultsAggregatedByTargetResourceCommand, "nextToken", "nextToken", "maxResults");
|
|
4807
4865
|
|
|
4808
4866
|
// src/pagination/ListCisScansPaginator.ts
|
|
4809
|
-
|
|
4810
|
-
var paginateListCisScans = (0,
|
|
4867
|
+
|
|
4868
|
+
var paginateListCisScans = (0, import_core.createPaginator)(Inspector2Client, ListCisScansCommand, "nextToken", "nextToken", "maxResults");
|
|
4811
4869
|
|
|
4812
4870
|
// src/pagination/ListCoveragePaginator.ts
|
|
4813
|
-
|
|
4814
|
-
var paginateListCoverage = (0,
|
|
4871
|
+
|
|
4872
|
+
var paginateListCoverage = (0, import_core.createPaginator)(Inspector2Client, ListCoverageCommand, "nextToken", "nextToken", "maxResults");
|
|
4815
4873
|
|
|
4816
4874
|
// src/pagination/ListCoverageStatisticsPaginator.ts
|
|
4817
|
-
|
|
4818
|
-
var paginateListCoverageStatistics = (0,
|
|
4875
|
+
|
|
4876
|
+
var paginateListCoverageStatistics = (0, import_core.createPaginator)(Inspector2Client, ListCoverageStatisticsCommand, "nextToken", "nextToken", "");
|
|
4819
4877
|
|
|
4820
4878
|
// src/pagination/ListDelegatedAdminAccountsPaginator.ts
|
|
4821
|
-
|
|
4822
|
-
var paginateListDelegatedAdminAccounts = (0,
|
|
4879
|
+
|
|
4880
|
+
var paginateListDelegatedAdminAccounts = (0, import_core.createPaginator)(Inspector2Client, ListDelegatedAdminAccountsCommand, "nextToken", "nextToken", "maxResults");
|
|
4823
4881
|
|
|
4824
4882
|
// src/pagination/ListFiltersPaginator.ts
|
|
4825
|
-
|
|
4826
|
-
var paginateListFilters = (0,
|
|
4883
|
+
|
|
4884
|
+
var paginateListFilters = (0, import_core.createPaginator)(Inspector2Client, ListFiltersCommand, "nextToken", "nextToken", "maxResults");
|
|
4827
4885
|
|
|
4828
4886
|
// src/pagination/ListFindingAggregationsPaginator.ts
|
|
4829
|
-
|
|
4830
|
-
var paginateListFindingAggregations = (0,
|
|
4887
|
+
|
|
4888
|
+
var paginateListFindingAggregations = (0, import_core.createPaginator)(Inspector2Client, ListFindingAggregationsCommand, "nextToken", "nextToken", "maxResults");
|
|
4831
4889
|
|
|
4832
4890
|
// src/pagination/ListFindingsPaginator.ts
|
|
4833
|
-
|
|
4834
|
-
var paginateListFindings = (0,
|
|
4891
|
+
|
|
4892
|
+
var paginateListFindings = (0, import_core.createPaginator)(Inspector2Client, ListFindingsCommand, "nextToken", "nextToken", "maxResults");
|
|
4835
4893
|
|
|
4836
4894
|
// src/pagination/ListMembersPaginator.ts
|
|
4837
|
-
|
|
4838
|
-
var paginateListMembers = (0,
|
|
4895
|
+
|
|
4896
|
+
var paginateListMembers = (0, import_core.createPaginator)(Inspector2Client, ListMembersCommand, "nextToken", "nextToken", "maxResults");
|
|
4839
4897
|
|
|
4840
4898
|
// src/pagination/ListUsageTotalsPaginator.ts
|
|
4841
|
-
|
|
4842
|
-
var paginateListUsageTotals = (0,
|
|
4899
|
+
|
|
4900
|
+
var paginateListUsageTotals = (0, import_core.createPaginator)(Inspector2Client, ListUsageTotalsCommand, "nextToken", "nextToken", "maxResults");
|
|
4843
4901
|
|
|
4844
4902
|
// src/pagination/SearchVulnerabilitiesPaginator.ts
|
|
4845
|
-
|
|
4846
|
-
var paginateSearchVulnerabilities = (0,
|
|
4903
|
+
|
|
4904
|
+
var paginateSearchVulnerabilities = (0, import_core.createPaginator)(Inspector2Client, SearchVulnerabilitiesCommand, "nextToken", "nextToken", "");
|
|
4847
4905
|
|
|
4848
4906
|
// src/models/models_1.ts
|
|
4849
4907
|
var SortField = {
|