@aws-sdk/client-securityagent 3.1075.0 → 3.1076.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/index.js +3427 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/SecurityAgentServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -91
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -3098
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultSecurityAgentHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "securityagent",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultSecurityAgentHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -29,6 +65,2979 @@ const commonParams = {
|
|
|
29
65
|
Region: { type: "builtInParams", name: "region" },
|
|
30
66
|
};
|
|
31
67
|
|
|
68
|
+
var version = "3.1075.0";
|
|
69
|
+
var packageInfo = {
|
|
70
|
+
version: version};
|
|
71
|
+
|
|
72
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
73
|
+
const _data = {
|
|
74
|
+
conditions: [
|
|
75
|
+
[a, [b]],
|
|
76
|
+
[a, c],
|
|
77
|
+
["aws.partition", c, "PartitionResult"],
|
|
78
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
79
|
+
],
|
|
80
|
+
results: [
|
|
81
|
+
[-1],
|
|
82
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
83
|
+
[b, {}],
|
|
84
|
+
["https://securityagent-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
85
|
+
["https://securityagent.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
const root = 2;
|
|
90
|
+
const r = 100_000_000;
|
|
91
|
+
const nodes = new Int32Array([
|
|
92
|
+
-1, 1, -1,
|
|
93
|
+
0, 6, 3,
|
|
94
|
+
1, 4, r + 5,
|
|
95
|
+
2, 5, r + 5,
|
|
96
|
+
3, r + 3, r + 4,
|
|
97
|
+
3, r + 1, r + 2,
|
|
98
|
+
]);
|
|
99
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
100
|
+
|
|
101
|
+
const cache = new EndpointCache({
|
|
102
|
+
size: 50,
|
|
103
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
104
|
+
});
|
|
105
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
106
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
107
|
+
endpointParams: endpointParams,
|
|
108
|
+
logger: context.logger,
|
|
109
|
+
}));
|
|
110
|
+
};
|
|
111
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
112
|
+
|
|
113
|
+
class SecurityAgentServiceException extends ServiceException {
|
|
114
|
+
constructor(options) {
|
|
115
|
+
super(options);
|
|
116
|
+
Object.setPrototypeOf(this, SecurityAgentServiceException.prototype);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class AccessDeniedException extends SecurityAgentServiceException {
|
|
121
|
+
name = "AccessDeniedException";
|
|
122
|
+
$fault = "client";
|
|
123
|
+
constructor(opts) {
|
|
124
|
+
super({
|
|
125
|
+
name: "AccessDeniedException",
|
|
126
|
+
$fault: "client",
|
|
127
|
+
...opts,
|
|
128
|
+
});
|
|
129
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
class InternalServerException extends SecurityAgentServiceException {
|
|
133
|
+
name = "InternalServerException";
|
|
134
|
+
$fault = "server";
|
|
135
|
+
constructor(opts) {
|
|
136
|
+
super({
|
|
137
|
+
name: "InternalServerException",
|
|
138
|
+
$fault: "server",
|
|
139
|
+
...opts,
|
|
140
|
+
});
|
|
141
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
class ResourceNotFoundException extends SecurityAgentServiceException {
|
|
145
|
+
name = "ResourceNotFoundException";
|
|
146
|
+
$fault = "client";
|
|
147
|
+
constructor(opts) {
|
|
148
|
+
super({
|
|
149
|
+
name: "ResourceNotFoundException",
|
|
150
|
+
$fault: "client",
|
|
151
|
+
...opts,
|
|
152
|
+
});
|
|
153
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
class ThrottlingException extends SecurityAgentServiceException {
|
|
157
|
+
name = "ThrottlingException";
|
|
158
|
+
$fault = "client";
|
|
159
|
+
serviceCode;
|
|
160
|
+
quotaCode;
|
|
161
|
+
constructor(opts) {
|
|
162
|
+
super({
|
|
163
|
+
name: "ThrottlingException",
|
|
164
|
+
$fault: "client",
|
|
165
|
+
...opts,
|
|
166
|
+
});
|
|
167
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
168
|
+
this.serviceCode = opts.serviceCode;
|
|
169
|
+
this.quotaCode = opts.quotaCode;
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
class ValidationException extends SecurityAgentServiceException {
|
|
173
|
+
name = "ValidationException";
|
|
174
|
+
$fault = "client";
|
|
175
|
+
fieldList;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "ValidationException",
|
|
179
|
+
$fault: "client",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
183
|
+
this.fieldList = opts.fieldList;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
class ConflictException extends SecurityAgentServiceException {
|
|
187
|
+
name = "ConflictException";
|
|
188
|
+
$fault = "client";
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "ConflictException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
class ServiceQuotaExceededException extends SecurityAgentServiceException {
|
|
199
|
+
name = "ServiceQuotaExceededException";
|
|
200
|
+
$fault = "client";
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "ServiceQuotaExceededException",
|
|
204
|
+
$fault: "client",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
const _A = "Actor";
|
|
212
|
+
const _AA = "AddArtifact";
|
|
213
|
+
const _AAI = "AddArtifactInput";
|
|
214
|
+
const _AAO = "AddArtifactOutput";
|
|
215
|
+
const _ADE = "AccessDeniedException";
|
|
216
|
+
const _AL = "ActorList";
|
|
217
|
+
const _AMI = "ArtifactMetadataItem";
|
|
218
|
+
const _AML = "ArtifactMetadataList";
|
|
219
|
+
const _AS = "AgentSpace";
|
|
220
|
+
const _ASL = "AgentSpaceList";
|
|
221
|
+
const _ASLp = "ApplicationSummaryList";
|
|
222
|
+
const _ASLr = "ArtifactSummaryList";
|
|
223
|
+
const _ASS = "AgentSpaceSummary";
|
|
224
|
+
const _ASSL = "AgentSpaceSummaryList";
|
|
225
|
+
const _ASp = "ApplicationSummary";
|
|
226
|
+
const _ASr = "ArtifactSummary";
|
|
227
|
+
const _AT = "AccessToken";
|
|
228
|
+
const _AWSR = "AWSResources";
|
|
229
|
+
const _Ar = "Artifact";
|
|
230
|
+
const _As = "Assets";
|
|
231
|
+
const _Au = "Authentication";
|
|
232
|
+
const _BCSR = "BatchCreateSecurityRequirements";
|
|
233
|
+
const _BCSRI = "BatchCreateSecurityRequirementsInput";
|
|
234
|
+
const _BCSRO = "BatchCreateSecurityRequirementsOutput";
|
|
235
|
+
const _BCSRR = "BatchCreateSecurityRequirementResult";
|
|
236
|
+
const _BCSRRL = "BatchCreateSecurityRequirementResultList";
|
|
237
|
+
const _BDCR = "BatchDeleteCodeReviews";
|
|
238
|
+
const _BDCRI = "BatchDeleteCodeReviewsInput";
|
|
239
|
+
const _BDCRO = "BatchDeleteCodeReviewsOutput";
|
|
240
|
+
const _BDP = "BatchDeletePentests";
|
|
241
|
+
const _BDPI = "BatchDeletePentestsInput";
|
|
242
|
+
const _BDPO = "BatchDeletePentestsOutput";
|
|
243
|
+
const _BDSR = "BatchDeleteSecurityRequirements";
|
|
244
|
+
const _BDSRI = "BatchDeleteSecurityRequirementsInput";
|
|
245
|
+
const _BDSRO = "BatchDeleteSecurityRequirementsOutput";
|
|
246
|
+
const _BDTM = "BatchDeleteThreatModels";
|
|
247
|
+
const _BDTMI = "BatchDeleteThreatModelsInput";
|
|
248
|
+
const _BDTMO = "BatchDeleteThreatModelsOutput";
|
|
249
|
+
const _BGAM = "BatchGetArtifactMetadata";
|
|
250
|
+
const _BGAMI = "BatchGetArtifactMetadataInput";
|
|
251
|
+
const _BGAMO = "BatchGetArtifactMetadataOutput";
|
|
252
|
+
const _BGAS = "BatchGetAgentSpaces";
|
|
253
|
+
const _BGASI = "BatchGetAgentSpacesInput";
|
|
254
|
+
const _BGASO = "BatchGetAgentSpacesOutput";
|
|
255
|
+
const _BGCR = "BatchGetCodeReviews";
|
|
256
|
+
const _BGCRI = "BatchGetCodeReviewsInput";
|
|
257
|
+
const _BGCRJ = "BatchGetCodeReviewJobs";
|
|
258
|
+
const _BGCRJI = "BatchGetCodeReviewJobsInput";
|
|
259
|
+
const _BGCRJO = "BatchGetCodeReviewJobsOutput";
|
|
260
|
+
const _BGCRJT = "BatchGetCodeReviewJobTasks";
|
|
261
|
+
const _BGCRJTI = "BatchGetCodeReviewJobTasksInput";
|
|
262
|
+
const _BGCRJTO = "BatchGetCodeReviewJobTasksOutput";
|
|
263
|
+
const _BGCRO = "BatchGetCodeReviewsOutput";
|
|
264
|
+
const _BGF = "BatchGetFindings";
|
|
265
|
+
const _BGFI = "BatchGetFindingsInput";
|
|
266
|
+
const _BGFO = "BatchGetFindingsOutput";
|
|
267
|
+
const _BGP = "BatchGetPentests";
|
|
268
|
+
const _BGPI = "BatchGetPentestsInput";
|
|
269
|
+
const _BGPJ = "BatchGetPentestJobs";
|
|
270
|
+
const _BGPJI = "BatchGetPentestJobsInput";
|
|
271
|
+
const _BGPJO = "BatchGetPentestJobsOutput";
|
|
272
|
+
const _BGPJT = "BatchGetPentestJobTasks";
|
|
273
|
+
const _BGPJTI = "BatchGetPentestJobTasksInput";
|
|
274
|
+
const _BGPJTO = "BatchGetPentestJobTasksOutput";
|
|
275
|
+
const _BGPO = "BatchGetPentestsOutput";
|
|
276
|
+
const _BGSR = "BatchGetSecurityRequirements";
|
|
277
|
+
const _BGSRI = "BatchGetSecurityRequirementsInput";
|
|
278
|
+
const _BGSRO = "BatchGetSecurityRequirementsOutput";
|
|
279
|
+
const _BGSRR = "BatchGetSecurityRequirementResult";
|
|
280
|
+
const _BGSRRL = "BatchGetSecurityRequirementResultList";
|
|
281
|
+
const _BGT = "BatchGetThreats";
|
|
282
|
+
const _BGTD = "BatchGetTargetDomains";
|
|
283
|
+
const _BGTDI = "BatchGetTargetDomainsInput";
|
|
284
|
+
const _BGTDO = "BatchGetTargetDomainsOutput";
|
|
285
|
+
const _BGTI = "BatchGetThreatsInput";
|
|
286
|
+
const _BGTM = "BatchGetThreatModels";
|
|
287
|
+
const _BGTMI = "BatchGetThreatModelsInput";
|
|
288
|
+
const _BGTMJ = "BatchGetThreatModelJobs";
|
|
289
|
+
const _BGTMJI = "BatchGetThreatModelJobsInput";
|
|
290
|
+
const _BGTMJO = "BatchGetThreatModelJobsOutput";
|
|
291
|
+
const _BGTMJT = "BatchGetThreatModelJobTasks";
|
|
292
|
+
const _BGTMJTI = "BatchGetThreatModelJobTasksInput";
|
|
293
|
+
const _BGTMJTO = "BatchGetThreatModelJobTasksOutput";
|
|
294
|
+
const _BGTMO = "BatchGetThreatModelsOutput";
|
|
295
|
+
const _BGTO = "BatchGetThreatsOutput";
|
|
296
|
+
const _BII = "BitbucketIntegrationInput";
|
|
297
|
+
const _BRC = "BitbucketResourceCapabilities";
|
|
298
|
+
const _BRM = "BitbucketRepositoryMetadata";
|
|
299
|
+
const _BRR = "BitbucketRepositoryResource";
|
|
300
|
+
const _BSRE = "BatchSecurityRequirementError";
|
|
301
|
+
const _BSREa = "BatchSecurityRequirementErrors";
|
|
302
|
+
const _BUSR = "BatchUpdateSecurityRequirements";
|
|
303
|
+
const _BUSRI = "BatchUpdateSecurityRequirementsInput";
|
|
304
|
+
const _BUSRO = "BatchUpdateSecurityRequirementsOutput";
|
|
305
|
+
const _C = "Category";
|
|
306
|
+
const _CA = "CreateApplication";
|
|
307
|
+
const _CAR = "CreateApplicationRequest";
|
|
308
|
+
const _CARr = "CreateApplicationResponse";
|
|
309
|
+
const _CAS = "CreateAgentSpace";
|
|
310
|
+
const _CASI = "CreateAgentSpaceInput";
|
|
311
|
+
const _CASO = "CreateAgentSpaceOutput";
|
|
312
|
+
const _CC = "CertificateChain";
|
|
313
|
+
const _CCR = "CreateCodeReview";
|
|
314
|
+
const _CCRI = "CreateCodeReviewInput";
|
|
315
|
+
const _CCRO = "CreateCodeReviewOutput";
|
|
316
|
+
const _CDM = "ConfluenceDocumentMetadata";
|
|
317
|
+
const _CDR = "ConfluenceDocumentResource";
|
|
318
|
+
const _CE = "ConflictException";
|
|
319
|
+
const _CH = "CustomHeader";
|
|
320
|
+
const _CHL = "CustomHeaderList";
|
|
321
|
+
const _CI = "CreateIntegration";
|
|
322
|
+
const _CII = "ConfluenceIntegrationInput";
|
|
323
|
+
const _CIIr = "CreateIntegrationInput";
|
|
324
|
+
const _CIO = "CreateIntegrationOutput";
|
|
325
|
+
const _CL = "CodeLocation";
|
|
326
|
+
const _CLL = "CodeLocationList";
|
|
327
|
+
const _CLa = "CategoryList";
|
|
328
|
+
const _CM = "CreateMembership";
|
|
329
|
+
const _CMR = "CreateMembershipRequest";
|
|
330
|
+
const _CMRr = "CreateMembershipResponse";
|
|
331
|
+
const _CP = "CreatePentest";
|
|
332
|
+
const _CPC = "CreatePrivateConnection";
|
|
333
|
+
const _CPCI = "CreatePrivateConnectionInput";
|
|
334
|
+
const _CPCO = "CreatePrivateConnectionOutput";
|
|
335
|
+
const _CPI = "CreatePentestInput";
|
|
336
|
+
const _CPO = "CreatePentestOutput";
|
|
337
|
+
const _CR = "CodeReview";
|
|
338
|
+
const _CRC = "ConfluenceResourceCapabilities";
|
|
339
|
+
const _CRJ = "CodeReviewJob";
|
|
340
|
+
const _CRJL = "CodeReviewJobList";
|
|
341
|
+
const _CRJS = "CodeReviewJobSummary";
|
|
342
|
+
const _CRJSL = "CodeReviewJobSummaryList";
|
|
343
|
+
const _CRJT = "CodeReviewJobTask";
|
|
344
|
+
const _CRJTL = "CodeReviewJobTaskList";
|
|
345
|
+
const _CRJTS = "CodeReviewJobTaskSummary";
|
|
346
|
+
const _CRJTSL = "CodeReviewJobTaskSummaryList";
|
|
347
|
+
const _CRL = "CodeReviewList";
|
|
348
|
+
const _CRS = "CodeReviewSettings";
|
|
349
|
+
const _CRSL = "CodeReviewSummaryList";
|
|
350
|
+
const _CRSo = "CodeReviewSummary";
|
|
351
|
+
const _CRT = "CodeRemediationTask";
|
|
352
|
+
const _CRTD = "CodeRemediationTaskDetails";
|
|
353
|
+
const _CRTDL = "CodeRemediationTaskDetailsList";
|
|
354
|
+
const _CSRE = "CreateSecurityRequirementEntry";
|
|
355
|
+
const _CSREL = "CreateSecurityRequirementEntryList";
|
|
356
|
+
const _CSRP = "CreateSecurityRequirementPack";
|
|
357
|
+
const _CSRPI = "CreateSecurityRequirementPackInput";
|
|
358
|
+
const _CSRPO = "CreateSecurityRequirementPackOutput";
|
|
359
|
+
const _CT = "CreateThreat";
|
|
360
|
+
const _CTD = "CreateTargetDomain";
|
|
361
|
+
const _CTDI = "CreateTargetDomainInput";
|
|
362
|
+
const _CTDO = "CreateTargetDomainOutput";
|
|
363
|
+
const _CTI = "CreateThreatInput";
|
|
364
|
+
const _CTM = "CreateThreatModel";
|
|
365
|
+
const _CTMI = "CreateThreatModelInput";
|
|
366
|
+
const _CTMO = "CreateThreatModelOutput";
|
|
367
|
+
const _CTO = "CreateThreatOutput";
|
|
368
|
+
const _CWL = "CloudWatchLog";
|
|
369
|
+
const _DA = "DeleteApplication";
|
|
370
|
+
const _DAI = "DeleteArtifactInput";
|
|
371
|
+
const _DAO = "DeleteArtifactOutput";
|
|
372
|
+
const _DAR = "DeleteApplicationRequest";
|
|
373
|
+
const _DAS = "DeleteAgentSpace";
|
|
374
|
+
const _DASI = "DeleteAgentSpaceInput";
|
|
375
|
+
const _DASO = "DeleteAgentSpaceOutput";
|
|
376
|
+
const _DAe = "DeleteArtifact";
|
|
377
|
+
const _DCRF = "DeleteCodeReviewFailure";
|
|
378
|
+
const _DCRFL = "DeleteCodeReviewFailureList";
|
|
379
|
+
const _DE = "DiscoveredEndpoint";
|
|
380
|
+
const _DEL = "DiscoveredEndpointList";
|
|
381
|
+
const _DI = "DocumentInfo";
|
|
382
|
+
const _DII = "DeleteIntegrationInput";
|
|
383
|
+
const _DIO = "DeleteIntegrationOutput";
|
|
384
|
+
const _DIe = "DeleteIntegration";
|
|
385
|
+
const _DL = "DocumentList";
|
|
386
|
+
const _DM = "DeleteMembership";
|
|
387
|
+
const _DMR = "DeleteMembershipRequest";
|
|
388
|
+
const _DMRe = "DeleteMembershipResponse";
|
|
389
|
+
const _DPC = "DeletePrivateConnection";
|
|
390
|
+
const _DPCI = "DeletePrivateConnectionInput";
|
|
391
|
+
const _DPCIe = "DescribePrivateConnectionInput";
|
|
392
|
+
const _DPCO = "DeletePrivateConnectionOutput";
|
|
393
|
+
const _DPCOe = "DescribePrivateConnectionOutput";
|
|
394
|
+
const _DPCe = "DescribePrivateConnection";
|
|
395
|
+
const _DPF = "DeletePentestFailure";
|
|
396
|
+
const _DPFL = "DeletePentestFailureList";
|
|
397
|
+
const _DS = "DiffSource";
|
|
398
|
+
const _DSRP = "DeleteSecurityRequirementPack";
|
|
399
|
+
const _DSRPI = "DeleteSecurityRequirementPackInput";
|
|
400
|
+
const _DSRPO = "DeleteSecurityRequirementPackOutput";
|
|
401
|
+
const _DTD = "DeleteTargetDomain";
|
|
402
|
+
const _DTDI = "DeleteTargetDomainInput";
|
|
403
|
+
const _DTDO = "DeleteTargetDomainOutput";
|
|
404
|
+
const _DTMF = "DeleteThreatModelFailure";
|
|
405
|
+
const _DTMFL = "DeleteThreatModelFailureList";
|
|
406
|
+
const _DV = "DnsVerification";
|
|
407
|
+
const _E = "Endpoint";
|
|
408
|
+
const _EC = "ExecutionContext";
|
|
409
|
+
const _ECL = "ExecutionContextList";
|
|
410
|
+
const _EI = "ErrorInformation";
|
|
411
|
+
const _EL = "EndpointList";
|
|
412
|
+
const _F = "Finding";
|
|
413
|
+
const _FL = "FindingList";
|
|
414
|
+
const _FS = "FindingSummary";
|
|
415
|
+
const _FSL = "FindingSummaryList";
|
|
416
|
+
const _GA = "GetApplication";
|
|
417
|
+
const _GAI = "GetArtifactInput";
|
|
418
|
+
const _GAO = "GetArtifactOutput";
|
|
419
|
+
const _GAR = "GetApplicationRequest";
|
|
420
|
+
const _GARe = "GetApplicationResponse";
|
|
421
|
+
const _GAe = "GetArtifact";
|
|
422
|
+
const _GHII = "GitHubIntegrationInput";
|
|
423
|
+
const _GHRC = "GitHubResourceCapabilities";
|
|
424
|
+
const _GHRM = "GitHubRepositoryMetadata";
|
|
425
|
+
const _GHRR = "GitHubRepositoryResource";
|
|
426
|
+
const _GI = "GetIntegration";
|
|
427
|
+
const _GII = "GetIntegrationInput";
|
|
428
|
+
const _GIO = "GetIntegrationOutput";
|
|
429
|
+
const _GLII = "GitLabIntegrationInput";
|
|
430
|
+
const _GLRC = "GitLabResourceCapabilities";
|
|
431
|
+
const _GLRM = "GitLabRepositoryMetadata";
|
|
432
|
+
const _GLRR = "GitLabRepositoryResource";
|
|
433
|
+
const _GSRP = "GetSecurityRequirementPack";
|
|
434
|
+
const _GSRPI = "GetSecurityRequirementPackInput";
|
|
435
|
+
const _GSRPO = "GetSecurityRequirementPackOutput";
|
|
436
|
+
const _HV = "HttpVerification";
|
|
437
|
+
const _ICC = "IdCConfiguration";
|
|
438
|
+
const _ID = "IntegratedDocument";
|
|
439
|
+
const _IF = "IntegrationFilter";
|
|
440
|
+
const _IPR = "InitiateProviderRegistration";
|
|
441
|
+
const _IPRI = "InitiateProviderRegistrationInput";
|
|
442
|
+
const _IPRO = "InitiateProviderRegistrationOutput";
|
|
443
|
+
const _IR = "IntegratedRepository";
|
|
444
|
+
const _IRII = "IntegratedResourceInputItem";
|
|
445
|
+
const _IRIIL = "IntegratedResourceInputItemList";
|
|
446
|
+
const _IRL = "IntegratedRepositoryList";
|
|
447
|
+
const _IRM = "IntegratedResourceMetadata";
|
|
448
|
+
const _IRS = "IntegratedResourceSummary";
|
|
449
|
+
const _IRSL = "IntegratedResourceSummaryList";
|
|
450
|
+
const _IRn = "IntegratedResource";
|
|
451
|
+
const _IS = "IntegrationSummary";
|
|
452
|
+
const _ISE = "InternalServerException";
|
|
453
|
+
const _ISL = "IntegrationSummaryList";
|
|
454
|
+
const _ISR = "ImportSecurityRequirements";
|
|
455
|
+
const _ISRI = "ImportSecurityRequirementsInput";
|
|
456
|
+
const _ISRO = "ImportSecurityRequirementsOutput";
|
|
457
|
+
const _ISm = "ImportSource";
|
|
458
|
+
const _LA = "ListApplications";
|
|
459
|
+
const _LAI = "ListArtifactsInput";
|
|
460
|
+
const _LAO = "ListArtifactsOutput";
|
|
461
|
+
const _LAR = "ListApplicationsRequest";
|
|
462
|
+
const _LARi = "ListApplicationsResponse";
|
|
463
|
+
const _LAS = "ListAgentSpaces";
|
|
464
|
+
const _LASI = "ListAgentSpacesInput";
|
|
465
|
+
const _LASO = "ListAgentSpacesOutput";
|
|
466
|
+
const _LAi = "ListArtifacts";
|
|
467
|
+
const _LCR = "ListCodeReviews";
|
|
468
|
+
const _LCRI = "ListCodeReviewsInput";
|
|
469
|
+
const _LCRJFCR = "ListCodeReviewJobsForCodeReview";
|
|
470
|
+
const _LCRJFCRI = "ListCodeReviewJobsForCodeReviewInput";
|
|
471
|
+
const _LCRJFCRO = "ListCodeReviewJobsForCodeReviewOutput";
|
|
472
|
+
const _LCRJT = "ListCodeReviewJobTasks";
|
|
473
|
+
const _LCRJTI = "ListCodeReviewJobTasksInput";
|
|
474
|
+
const _LCRJTO = "ListCodeReviewJobTasksOutput";
|
|
475
|
+
const _LCRO = "ListCodeReviewsOutput";
|
|
476
|
+
const _LDE = "ListDiscoveredEndpoints";
|
|
477
|
+
const _LDEI = "ListDiscoveredEndpointsInput";
|
|
478
|
+
const _LDEO = "ListDiscoveredEndpointsOutput";
|
|
479
|
+
const _LF = "ListFindings";
|
|
480
|
+
const _LFI = "ListFindingsInput";
|
|
481
|
+
const _LFO = "ListFindingsOutput";
|
|
482
|
+
const _LI = "ListIntegrations";
|
|
483
|
+
const _LII = "ListIntegrationsInput";
|
|
484
|
+
const _LIO = "ListIntegrationsOutput";
|
|
485
|
+
const _LIR = "ListIntegratedResources";
|
|
486
|
+
const _LIRI = "ListIntegratedResourcesInput";
|
|
487
|
+
const _LIRO = "ListIntegratedResourcesOutput";
|
|
488
|
+
const _LL = "LogLocation";
|
|
489
|
+
const _LM = "ListMemberships";
|
|
490
|
+
const _LMR = "ListMembershipsRequest";
|
|
491
|
+
const _LMRi = "ListMembershipsResponse";
|
|
492
|
+
const _LP = "ListPentests";
|
|
493
|
+
const _LPC = "ListPrivateConnections";
|
|
494
|
+
const _LPCI = "ListPrivateConnectionsInput";
|
|
495
|
+
const _LPCO = "ListPrivateConnectionsOutput";
|
|
496
|
+
const _LPI = "ListPentestsInput";
|
|
497
|
+
const _LPJFP = "ListPentestJobsForPentest";
|
|
498
|
+
const _LPJFPI = "ListPentestJobsForPentestInput";
|
|
499
|
+
const _LPJFPO = "ListPentestJobsForPentestOutput";
|
|
500
|
+
const _LPJT = "ListPentestJobTasks";
|
|
501
|
+
const _LPJTI = "ListPentestJobTasksInput";
|
|
502
|
+
const _LPJTO = "ListPentestJobTasksOutput";
|
|
503
|
+
const _LPO = "ListPentestsOutput";
|
|
504
|
+
const _LSR = "ListSecurityRequirements";
|
|
505
|
+
const _LSRI = "ListSecurityRequirementsInput";
|
|
506
|
+
const _LSRO = "ListSecurityRequirementsOutput";
|
|
507
|
+
const _LSRP = "ListSecurityRequirementPacks";
|
|
508
|
+
const _LSRPF = "ListSecurityRequirementPackFilter";
|
|
509
|
+
const _LSRPI = "ListSecurityRequirementPacksInput";
|
|
510
|
+
const _LSRPO = "ListSecurityRequirementPacksOutput";
|
|
511
|
+
const _LT = "ListThreats";
|
|
512
|
+
const _LTD = "ListTargetDomains";
|
|
513
|
+
const _LTDI = "ListTargetDomainsInput";
|
|
514
|
+
const _LTDO = "ListTargetDomainsOutput";
|
|
515
|
+
const _LTFR = "ListTagsForResource";
|
|
516
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
517
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
518
|
+
const _LTI = "ListThreatsInput";
|
|
519
|
+
const _LTM = "ListThreatModels";
|
|
520
|
+
const _LTMI = "ListThreatModelsInput";
|
|
521
|
+
const _LTMJ = "ListThreatModelJobs";
|
|
522
|
+
const _LTMJI = "ListThreatModelJobsInput";
|
|
523
|
+
const _LTMJO = "ListThreatModelJobsOutput";
|
|
524
|
+
const _LTMJT = "ListThreatModelJobTasks";
|
|
525
|
+
const _LTMJTI = "ListThreatModelJobTasksInput";
|
|
526
|
+
const _LTMJTO = "ListThreatModelJobTasksOutput";
|
|
527
|
+
const _LTMO = "ListThreatModelsOutput";
|
|
528
|
+
const _LTO = "ListThreatsOutput";
|
|
529
|
+
const _MC = "MembershipConfig";
|
|
530
|
+
const _MM = "MemberMetadata";
|
|
531
|
+
const _MS = "MembershipSummary";
|
|
532
|
+
const _MSL = "MembershipSummaryList";
|
|
533
|
+
const _NTC = "NetworkTrafficConfig";
|
|
534
|
+
const _NTR = "NetworkTrafficRule";
|
|
535
|
+
const _NTRL = "NetworkTrafficRuleList";
|
|
536
|
+
const _P = "Pentest";
|
|
537
|
+
const _PCL = "PrivateConnectionList";
|
|
538
|
+
const _PCM = "PrivateConnectionMode";
|
|
539
|
+
const _PCS = "PrivateConnectionSummary";
|
|
540
|
+
const _PI = "ProviderInput";
|
|
541
|
+
const _PJ = "PentestJob";
|
|
542
|
+
const _PJL = "PentestJobList";
|
|
543
|
+
const _PJS = "PentestJobSummary";
|
|
544
|
+
const _PJSL = "PentestJobSummaryList";
|
|
545
|
+
const _PL = "PentestList";
|
|
546
|
+
const _PRC = "ProviderResourceCapabilities";
|
|
547
|
+
const _PS = "PentestSummary";
|
|
548
|
+
const _PSL = "PentestSummaryList";
|
|
549
|
+
const _RD = "ReportDestination";
|
|
550
|
+
const _RNFE = "ResourceNotFoundException";
|
|
551
|
+
const _S = "Step";
|
|
552
|
+
const _SCR = "SourceCodeRepository";
|
|
553
|
+
const _SCRI = "StartCodeRemediationInput";
|
|
554
|
+
const _SCRJ = "StartCodeReviewJob";
|
|
555
|
+
const _SCRJI = "StartCodeReviewJobInput";
|
|
556
|
+
const _SCRJIt = "StopCodeReviewJobInput";
|
|
557
|
+
const _SCRJO = "StartCodeReviewJobOutput";
|
|
558
|
+
const _SCRJOt = "StopCodeReviewJobOutput";
|
|
559
|
+
const _SCRJt = "StopCodeReviewJob";
|
|
560
|
+
const _SCRL = "SourceCodeRepositoryList";
|
|
561
|
+
const _SCRO = "StartCodeRemediationOutput";
|
|
562
|
+
const _SCRt = "StartCodeRemediation";
|
|
563
|
+
const _SL = "StepList";
|
|
564
|
+
const _SMI = "SelfManagedInput";
|
|
565
|
+
const _SMIe = "ServiceManagedInput";
|
|
566
|
+
const _SPJ = "StartPentestJob";
|
|
567
|
+
const _SPJI = "StartPentestJobInput";
|
|
568
|
+
const _SPJIt = "StopPentestJobInput";
|
|
569
|
+
const _SPJO = "StartPentestJobOutput";
|
|
570
|
+
const _SPJOt = "StopPentestJobOutput";
|
|
571
|
+
const _SPJt = "StopPentestJob";
|
|
572
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
573
|
+
const _SRA = "SecurityRequirementArtifact";
|
|
574
|
+
const _SRAL = "SecurityRequirementArtifactList";
|
|
575
|
+
const _SRDC = "SecurityRequirementDocumentContent";
|
|
576
|
+
const _SRPS = "SecurityRequirementPackSummary";
|
|
577
|
+
const _SRPSL = "SecurityRequirementPackSummaryList";
|
|
578
|
+
const _SRS = "SecurityRequirementSummary";
|
|
579
|
+
const _SRSL = "SecurityRequirementSummaryList";
|
|
580
|
+
const _STMJ = "StartThreatModelJob";
|
|
581
|
+
const _STMJI = "StartThreatModelJobInput";
|
|
582
|
+
const _STMJIt = "StopThreatModelJobInput";
|
|
583
|
+
const _STMJO = "StartThreatModelJobOutput";
|
|
584
|
+
const _STMJOt = "StopThreatModelJobOutput";
|
|
585
|
+
const _STMJt = "StopThreatModelJob";
|
|
586
|
+
const _T = "Task";
|
|
587
|
+
const _TAS = "ThreatAnchorShape";
|
|
588
|
+
const _TD = "TargetDomain";
|
|
589
|
+
const _TDL = "TargetDomainList";
|
|
590
|
+
const _TDS = "TargetDomainSummary";
|
|
591
|
+
const _TDSL = "TargetDomainSummaryList";
|
|
592
|
+
const _TE = "ThrottlingException";
|
|
593
|
+
const _TEL = "ThreatEvidenceList";
|
|
594
|
+
const _TES = "ThreatEvidenceShape";
|
|
595
|
+
const _TL = "TaskList";
|
|
596
|
+
const _TLh = "ThreatList";
|
|
597
|
+
const _TM = "ThreatModel";
|
|
598
|
+
const _TMJ = "ThreatModelJob";
|
|
599
|
+
const _TMJL = "ThreatModelJobList";
|
|
600
|
+
const _TMJS = "ThreatModelJobSummary";
|
|
601
|
+
const _TMJSL = "ThreatModelJobSummaryList";
|
|
602
|
+
const _TMJT = "ThreatModelJobTask";
|
|
603
|
+
const _TMJTL = "ThreatModelJobTaskList";
|
|
604
|
+
const _TMJTS = "ThreatModelJobTaskSummary";
|
|
605
|
+
const _TMJTSL = "ThreatModelJobTaskSummaryList";
|
|
606
|
+
const _TML = "ThreatModelList";
|
|
607
|
+
const _TMS = "ThreatModelSummary";
|
|
608
|
+
const _TMSL = "ThreatModelSummaryList";
|
|
609
|
+
const _TR = "TagResource";
|
|
610
|
+
const _TRI = "TagResourceInput";
|
|
611
|
+
const _TRO = "TagResourceOutput";
|
|
612
|
+
const _TS = "TaskSummary";
|
|
613
|
+
const _TSL = "TaskSummaryList";
|
|
614
|
+
const _TSLh = "ThreatSummaryList";
|
|
615
|
+
const _TSh = "ThreatSummary";
|
|
616
|
+
const _Th = "Threat";
|
|
617
|
+
const _UA = "UpdateApplication";
|
|
618
|
+
const _UAR = "UpdateApplicationRequest";
|
|
619
|
+
const _UARp = "UpdateApplicationResponse";
|
|
620
|
+
const _UAS = "UpdateAgentSpace";
|
|
621
|
+
const _UASI = "UpdateAgentSpaceInput";
|
|
622
|
+
const _UASO = "UpdateAgentSpaceOutput";
|
|
623
|
+
const _UC = "UserConfig";
|
|
624
|
+
const _UCR = "UpdateCodeReview";
|
|
625
|
+
const _UCRI = "UpdateCodeReviewInput";
|
|
626
|
+
const _UCRO = "UpdateCodeReviewOutput";
|
|
627
|
+
const _UF = "UpdateFinding";
|
|
628
|
+
const _UFI = "UpdateFindingInput";
|
|
629
|
+
const _UFO = "UpdateFindingOutput";
|
|
630
|
+
const _UIR = "UpdateIntegratedResources";
|
|
631
|
+
const _UIRI = "UpdateIntegratedResourcesInput";
|
|
632
|
+
const _UIRO = "UpdateIntegratedResourcesOutput";
|
|
633
|
+
const _UM = "UserMetadata";
|
|
634
|
+
const _UP = "UpdatePentest";
|
|
635
|
+
const _UPCC = "UpdatePrivateConnectionCertificate";
|
|
636
|
+
const _UPCCI = "UpdatePrivateConnectionCertificateInput";
|
|
637
|
+
const _UPCCO = "UpdatePrivateConnectionCertificateOutput";
|
|
638
|
+
const _UPI = "UpdatePentestInput";
|
|
639
|
+
const _UPO = "UpdatePentestOutput";
|
|
640
|
+
const _UR = "UntagResource";
|
|
641
|
+
const _URI = "UntagResourceInput";
|
|
642
|
+
const _URO = "UntagResourceOutput";
|
|
643
|
+
const _USRE = "UpdateSecurityRequirementEntry";
|
|
644
|
+
const _USREL = "UpdateSecurityRequirementEntryList";
|
|
645
|
+
const _USRP = "UpdateSecurityRequirementPack";
|
|
646
|
+
const _USRPI = "UpdateSecurityRequirementPackInput";
|
|
647
|
+
const _USRPO = "UpdateSecurityRequirementPackOutput";
|
|
648
|
+
const _UT = "UpdateThreat";
|
|
649
|
+
const _UTD = "UpdateTargetDomain";
|
|
650
|
+
const _UTDI = "UpdateTargetDomainInput";
|
|
651
|
+
const _UTDO = "UpdateTargetDomainOutput";
|
|
652
|
+
const _UTI = "UpdateThreatInput";
|
|
653
|
+
const _UTM = "UpdateThreatModel";
|
|
654
|
+
const _UTMI = "UpdateThreatModelInput";
|
|
655
|
+
const _UTMO = "UpdateThreatModelOutput";
|
|
656
|
+
const _UTO = "UpdateThreatOutput";
|
|
657
|
+
const _VC = "VpcConfig";
|
|
658
|
+
const _VCp = "VpcConfigs";
|
|
659
|
+
const _VD = "VerificationDetails";
|
|
660
|
+
const _VE = "ValidationException";
|
|
661
|
+
const _VEF = "ValidationExceptionField";
|
|
662
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
663
|
+
const _VS = "VerificationScript";
|
|
664
|
+
const _VSEV = "VerificationScriptEnvVar";
|
|
665
|
+
const _VSEVL = "VerificationScriptEnvVarList";
|
|
666
|
+
const _VTD = "VerifyTargetDomain";
|
|
667
|
+
const _VTDI = "VerifyTargetDomainInput";
|
|
668
|
+
const _VTDO = "VerifyTargetDomainOutput";
|
|
669
|
+
const _a = "authentication";
|
|
670
|
+
const _aC = "artifactContent";
|
|
671
|
+
const _aD = "allowedDomains";
|
|
672
|
+
const _aI = "artifactId";
|
|
673
|
+
const _aIp = "applicationId";
|
|
674
|
+
const _aIr = "artifactIds";
|
|
675
|
+
const _aML = "artifactMetadataList";
|
|
676
|
+
const _aN = "applicationName";
|
|
677
|
+
const _aR = "awsResources";
|
|
678
|
+
const _aRl = "alignmentRationale";
|
|
679
|
+
const _aS = "agentSpaces";
|
|
680
|
+
const _aSI = "agentSpaceId";
|
|
681
|
+
const _aSIg = "agentSpaceIds";
|
|
682
|
+
const _aSS = "agentSpaceSummaries";
|
|
683
|
+
const _aSp = "applicationSummaries";
|
|
684
|
+
const _aSr = "artifactSummaries";
|
|
685
|
+
const _aSt = "attackScript";
|
|
686
|
+
const _aT = "artifactType";
|
|
687
|
+
const _aTc = "accessType";
|
|
688
|
+
const _aTcc = "accessToken";
|
|
689
|
+
const _ac = "actors";
|
|
690
|
+
const _an = "anchor";
|
|
691
|
+
const _ar = "artifact";
|
|
692
|
+
const _as = "assets";
|
|
693
|
+
const _b = "bitbucket";
|
|
694
|
+
const _bR = "bitbucketRepository";
|
|
695
|
+
const _c = "client";
|
|
696
|
+
const _cA = "createdAt";
|
|
697
|
+
const _cB = "createdBy";
|
|
698
|
+
const _cD = "createDocument";
|
|
699
|
+
const _cDL = "codeDiffLink";
|
|
700
|
+
const _cDo = "confluenceDocument";
|
|
701
|
+
const _cET = "certificateExpiryTime";
|
|
702
|
+
const _cH = "customHeaders";
|
|
703
|
+
const _cI = "containerId";
|
|
704
|
+
const _cL = "codeLocations";
|
|
705
|
+
const _cN = "customerNote";
|
|
706
|
+
const _cNa = "categoryName";
|
|
707
|
+
const _cR = "codeReviews";
|
|
708
|
+
const _cRI = "codeReviewIds";
|
|
709
|
+
const _cRIo = "codeReviewId";
|
|
710
|
+
const _cRJ = "codeReviewJobs";
|
|
711
|
+
const _cRJI = "codeReviewJobIds";
|
|
712
|
+
const _cRJIo = "codeReviewJobId";
|
|
713
|
+
const _cRJS = "codeReviewJobSummaries";
|
|
714
|
+
const _cRJT = "codeReviewJobTasks";
|
|
715
|
+
const _cRJTI = "codeReviewJobTaskIds";
|
|
716
|
+
const _cRJTS = "codeReviewJobTaskSummaries";
|
|
717
|
+
const _cRS = "codeReviewSettings";
|
|
718
|
+
const _cRSo = "codeRemediationStrategy";
|
|
719
|
+
const _cRSod = "codeReviewSummaries";
|
|
720
|
+
const _cRT = "codeRemediationTask";
|
|
721
|
+
const _cS = "controlsScanning";
|
|
722
|
+
const _cSs = "csrfState";
|
|
723
|
+
const _cT = "contextType";
|
|
724
|
+
const _cUS = "cleanUpStrategy";
|
|
725
|
+
const _cWL = "cloudWatchLog";
|
|
726
|
+
const _ca = "categories";
|
|
727
|
+
const _cap = "capabilities";
|
|
728
|
+
const _ce = "certificate";
|
|
729
|
+
const _co = "contents";
|
|
730
|
+
const _cod = "code";
|
|
731
|
+
const _com = "comments";
|
|
732
|
+
const _con = "config";
|
|
733
|
+
const _conf = "confidence";
|
|
734
|
+
const _confl = "confluence";
|
|
735
|
+
const _cont = "context";
|
|
736
|
+
const _conte = "content";
|
|
737
|
+
const _d = "description";
|
|
738
|
+
const _dE = "discoveredEndpoints";
|
|
739
|
+
const _dI = "documentId";
|
|
740
|
+
const _dKKI = "defaultKmsKeyId";
|
|
741
|
+
const _dMS = "disableManagedSkills";
|
|
742
|
+
const _dN = "domainName";
|
|
743
|
+
const _dNi = "displayName";
|
|
744
|
+
const _dR = "dnsResolution";
|
|
745
|
+
const _dRN = "dnsRecordName";
|
|
746
|
+
const _dRT = "dnsRecordType";
|
|
747
|
+
const _dS = "diffSource";
|
|
748
|
+
const _dSRN = "deletedSecurityRequirementNames";
|
|
749
|
+
const _dT = "dnsTxt";
|
|
750
|
+
const _de = "deleted";
|
|
751
|
+
const _do = "domain";
|
|
752
|
+
const _doc = "documents";
|
|
753
|
+
const _e = "error";
|
|
754
|
+
const _eC = "executionContext";
|
|
755
|
+
const _eET = "executionEndTime";
|
|
756
|
+
const _eI = "errorInformation";
|
|
757
|
+
const _eP = "excludePaths";
|
|
758
|
+
const _eRT = "excludeRiskTypes";
|
|
759
|
+
const _eS = "executionStatus";
|
|
760
|
+
const _eST = "executionStartTime";
|
|
761
|
+
const _eV = "envVars";
|
|
762
|
+
const _ef = "effect";
|
|
763
|
+
const _em = "email";
|
|
764
|
+
const _en = "endpoints";
|
|
765
|
+
const _er = "errors";
|
|
766
|
+
const _ev = "evaluation";
|
|
767
|
+
const _evi = "evidence";
|
|
768
|
+
const _f = "failed";
|
|
769
|
+
const _fD = "fetchDocument";
|
|
770
|
+
const _fI = "findingIds";
|
|
771
|
+
const _fIi = "findingId";
|
|
772
|
+
const _fL = "fieldList";
|
|
773
|
+
const _fM = "failureMessage";
|
|
774
|
+
const _fN = "fileName";
|
|
775
|
+
const _fP = "filePath";
|
|
776
|
+
const _fS = "findingsSummaries";
|
|
777
|
+
const _fi = "findings";
|
|
778
|
+
const _fil = "filter";
|
|
779
|
+
const _fo = "format";
|
|
780
|
+
const _g = "github";
|
|
781
|
+
const _gI = "groupId";
|
|
782
|
+
const _gPS = "generalPurposeScanning";
|
|
783
|
+
const _gR = "githubRepository";
|
|
784
|
+
const _gRi = "gitlabRepository";
|
|
785
|
+
const _gi = "gitlab";
|
|
786
|
+
const _h = "http";
|
|
787
|
+
const _hA = "hostAddress";
|
|
788
|
+
const _hE = "httpError";
|
|
789
|
+
const _hQ = "httpQuery";
|
|
790
|
+
const _hR = "httpRoute";
|
|
791
|
+
const _i = "identifier";
|
|
792
|
+
const _iA = "impactedAssets";
|
|
793
|
+
const _iAA = "idcApplicationArn";
|
|
794
|
+
const _iAPE = "ipv4AddressesPerEni";
|
|
795
|
+
const _iAT = "ipAddressType";
|
|
796
|
+
const _iC = "idcConfiguration";
|
|
797
|
+
const _iD = "integratedDocument";
|
|
798
|
+
const _iDN = "integrationDisplayName";
|
|
799
|
+
const _iG = "impactedGoal";
|
|
800
|
+
const _iI = "installationId";
|
|
801
|
+
const _iIA = "idcInstanceArn";
|
|
802
|
+
const _iIn = "integrationId";
|
|
803
|
+
const _iP = "isPrimary";
|
|
804
|
+
const _iR = "integratedRepositories";
|
|
805
|
+
const _iRS = "integratedResourceSummaries";
|
|
806
|
+
const _iRa = "iamRoles";
|
|
807
|
+
const _iS = "importStatus";
|
|
808
|
+
const _iSn = "integrationSummaries";
|
|
809
|
+
const _id = "id";
|
|
810
|
+
const _in = "input";
|
|
811
|
+
const _ins = "instructions";
|
|
812
|
+
const _it = "items";
|
|
813
|
+
const _k = "kind";
|
|
814
|
+
const _kKI = "kmsKeyId";
|
|
815
|
+
const _l = "label";
|
|
816
|
+
const _lC = "leaveComments";
|
|
817
|
+
const _lCo = "logConfig";
|
|
818
|
+
const _lE = "lineEnd";
|
|
819
|
+
const _lFA = "lambdaFunctionArns";
|
|
820
|
+
const _lG = "logGroups";
|
|
821
|
+
const _lGo = "logGroup";
|
|
822
|
+
const _lL = "logsLocation";
|
|
823
|
+
const _lS = "logStream";
|
|
824
|
+
const _lSi = "lineStart";
|
|
825
|
+
const _lT = "logType";
|
|
826
|
+
const _lUB = "lastUpdatedBy";
|
|
827
|
+
const _m = "message";
|
|
828
|
+
const _mI = "membershipId";
|
|
829
|
+
const _mR = "maxResults";
|
|
830
|
+
const _mS = "membershipSummaries";
|
|
831
|
+
const _mT = "memberType";
|
|
832
|
+
const _mTa = "managementType";
|
|
833
|
+
const _me = "metadata";
|
|
834
|
+
const _met = "method";
|
|
835
|
+
const _mo = "mode";
|
|
836
|
+
const _n = "name";
|
|
837
|
+
const _nF = "notFound";
|
|
838
|
+
const _nT = "nextToken";
|
|
839
|
+
const _nTC = "networkTrafficConfig";
|
|
840
|
+
const _nTRT = "networkTrafficRuleType";
|
|
841
|
+
const _na = "namespace";
|
|
842
|
+
const _o = "overview";
|
|
843
|
+
const _oN = "organizationName";
|
|
844
|
+
const _op = "operation";
|
|
845
|
+
const _ow = "owner";
|
|
846
|
+
const _p = "pentests";
|
|
847
|
+
const _pC = "privateConnections";
|
|
848
|
+
const _pCN = "privateConnectionName";
|
|
849
|
+
const _pI = "packId";
|
|
850
|
+
const _pIa = "pageId";
|
|
851
|
+
const _pIac = "packageId";
|
|
852
|
+
const _pIar = "parentId";
|
|
853
|
+
const _pIe = "pentestIds";
|
|
854
|
+
const _pIen = "pentestId";
|
|
855
|
+
const _pJ = "pentestJobs";
|
|
856
|
+
const _pJI = "pentestJobIds";
|
|
857
|
+
const _pJIe = "pentestJobId";
|
|
858
|
+
const _pJS = "pentestJobSummaries";
|
|
859
|
+
const _pR = "portRanges";
|
|
860
|
+
const _pRI = "providerResourceId";
|
|
861
|
+
const _pRL = "pullRequestLink";
|
|
862
|
+
const _pS = "pentestSummaries";
|
|
863
|
+
const _pT = "providerType";
|
|
864
|
+
const _pa = "pattern";
|
|
865
|
+
const _pat = "path";
|
|
866
|
+
const _pr = "provider";
|
|
867
|
+
const _pre = "prerequisites";
|
|
868
|
+
const _pref = "prefix";
|
|
869
|
+
const _qC = "quotaCode";
|
|
870
|
+
const _r = "remediation";
|
|
871
|
+
const _rA = "roleArn";
|
|
872
|
+
const _rAe = "resourceArn";
|
|
873
|
+
const _rC = "remediateCode";
|
|
874
|
+
const _rCI = "resourceConfigurationId";
|
|
875
|
+
const _rD = "reportDestination";
|
|
876
|
+
const _rGI = "resourceGatewayId";
|
|
877
|
+
const _rI = "resourceId";
|
|
878
|
+
const _rL = "riskLevel";
|
|
879
|
+
const _rN = "repoName";
|
|
880
|
+
const _rP = "routePath";
|
|
881
|
+
const _rS = "riskScore";
|
|
882
|
+
const _rT = "riskType";
|
|
883
|
+
const _rTe = "redirectTo";
|
|
884
|
+
const _rTes = "resourceType";
|
|
885
|
+
const _re = "recommendation";
|
|
886
|
+
const _rea = "reason";
|
|
887
|
+
const _reas = "reasoning";
|
|
888
|
+
const _res = "resource";
|
|
889
|
+
const _ro = "role";
|
|
890
|
+
const _ru = "rules";
|
|
891
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.securityagent";
|
|
892
|
+
const _sA = "secretArns";
|
|
893
|
+
const _sAu = "subnetArns";
|
|
894
|
+
const _sB = "s3Buckets";
|
|
895
|
+
const _sC = "serviceCode";
|
|
896
|
+
const _sCo = "sourceCode";
|
|
897
|
+
const _sD = "scopeDocs";
|
|
898
|
+
const _sGA = "securityGroupArns";
|
|
899
|
+
const _sGI = "securityGroupIds";
|
|
900
|
+
const _sI = "subnetIds";
|
|
901
|
+
const _sK = "spaceKey";
|
|
902
|
+
const _sL = "s3Location";
|
|
903
|
+
const _sM = "serviceManaged";
|
|
904
|
+
const _sMe = "selfManaged";
|
|
905
|
+
const _sN = "stepName";
|
|
906
|
+
const _sO = "systemOverview";
|
|
907
|
+
const _sR = "securityRequirements";
|
|
908
|
+
const _sRN = "securityRequirementNames";
|
|
909
|
+
const _sRNe = "securityRequirementName";
|
|
910
|
+
const _sRPS = "securityRequirementPackSummaries";
|
|
911
|
+
const _sRS = "securityRequirementSummaries";
|
|
912
|
+
const _sRe = "serviceRole";
|
|
913
|
+
const _sRt = "statusReason";
|
|
914
|
+
const _sT = "spaceTitle";
|
|
915
|
+
const _sTc = "scriptType";
|
|
916
|
+
const _sU = "siteUrl";
|
|
917
|
+
const _sUc = "scriptUrl";
|
|
918
|
+
const _sUr = "s3Uri";
|
|
919
|
+
const _se = "server";
|
|
920
|
+
const _sev = "severity";
|
|
921
|
+
const _st = "state";
|
|
922
|
+
const _sta = "status";
|
|
923
|
+
const _stat = "statement";
|
|
924
|
+
const _ste = "steps";
|
|
925
|
+
const _str = "stride";
|
|
926
|
+
const _t = "type";
|
|
927
|
+
const _tA = "threatAction";
|
|
928
|
+
const _tD = "targetDomains";
|
|
929
|
+
const _tDI = "targetDomainIds";
|
|
930
|
+
const _tDIa = "targetDomainId";
|
|
931
|
+
const _tDN = "targetDomainName";
|
|
932
|
+
const _tDS = "targetDomainSummaries";
|
|
933
|
+
const _tDa = "taskDetails";
|
|
934
|
+
const _tE = "targetEndpoint";
|
|
935
|
+
const _tI = "taskIds";
|
|
936
|
+
const _tIa = "taskId";
|
|
937
|
+
const _tIh = "threatIds";
|
|
938
|
+
const _tIhr = "threatImpact";
|
|
939
|
+
const _tIhre = "threatId";
|
|
940
|
+
const _tJI = "threatJobId";
|
|
941
|
+
const _tK = "tagKeys";
|
|
942
|
+
const _tM = "threatModels";
|
|
943
|
+
const _tMI = "threatModelIds";
|
|
944
|
+
const _tMIh = "threatModelId";
|
|
945
|
+
const _tMJ = "threatModelJobs";
|
|
946
|
+
const _tMJI = "threatModelJobIds";
|
|
947
|
+
const _tMJIh = "threatModelJobId";
|
|
948
|
+
const _tMJS = "threatModelJobSummaries";
|
|
949
|
+
const _tMJT = "threatModelJobTasks";
|
|
950
|
+
const _tMJTI = "threatModelJobTaskIds";
|
|
951
|
+
const _tMJTS = "threatModelJobTaskSummaries";
|
|
952
|
+
const _tMS = "threatModelSummaries";
|
|
953
|
+
const _tS = "threatSource";
|
|
954
|
+
const _tSa = "taskSummaries";
|
|
955
|
+
const _tT = "tokenType";
|
|
956
|
+
const _tU = "targetUrl";
|
|
957
|
+
const _ta = "tasks";
|
|
958
|
+
const _tag = "tags";
|
|
959
|
+
const _th = "threats";
|
|
960
|
+
const _ti = "title";
|
|
961
|
+
const _tim = "timestamp";
|
|
962
|
+
const _to = "token";
|
|
963
|
+
const _u = "uris";
|
|
964
|
+
const _uA = "updatedAt";
|
|
965
|
+
const _uB = "updatedBy";
|
|
966
|
+
const _uD = "updateDocument";
|
|
967
|
+
const _uSRN = "updatedSecurityRequirementNames";
|
|
968
|
+
const _ur = "uri";
|
|
969
|
+
const _us = "username";
|
|
970
|
+
const _use = "user";
|
|
971
|
+
const _v = "value";
|
|
972
|
+
const _vA = "verifiedAt";
|
|
973
|
+
const _vAp = "vpcArn";
|
|
974
|
+
const _vC = "vpcConfig";
|
|
975
|
+
const _vD = "verificationDetails";
|
|
976
|
+
const _vI = "vpcId";
|
|
977
|
+
const _vM = "validationMode";
|
|
978
|
+
const _vMe = "verificationMethod";
|
|
979
|
+
const _vN = "vendorName";
|
|
980
|
+
const _vS = "verificationStatus";
|
|
981
|
+
const _vSR = "verificationStatusReason";
|
|
982
|
+
const _vSa = "validationStatus";
|
|
983
|
+
const _vSe = "verificationScript";
|
|
984
|
+
const _vp = "vpcs";
|
|
985
|
+
const _w = "workspace";
|
|
986
|
+
const n0 = "com.amazonaws.securityagent";
|
|
987
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
988
|
+
var SecurityAgentServiceException$ = [-3, _s, "SecurityAgentServiceException", 0, [], []];
|
|
989
|
+
_s_registry.registerError(SecurityAgentServiceException$, SecurityAgentServiceException);
|
|
990
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
991
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
992
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
993
|
+
[_m],
|
|
994
|
+
[0], 1
|
|
995
|
+
];
|
|
996
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
997
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
998
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
999
|
+
[_m],
|
|
1000
|
+
[0], 1
|
|
1001
|
+
];
|
|
1002
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1003
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
1004
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
1005
|
+
[_m],
|
|
1006
|
+
[0], 1
|
|
1007
|
+
];
|
|
1008
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
1009
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1010
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1011
|
+
[_m],
|
|
1012
|
+
[0], 1
|
|
1013
|
+
];
|
|
1014
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1015
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1016
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
1017
|
+
[_m],
|
|
1018
|
+
[0], 1
|
|
1019
|
+
];
|
|
1020
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1021
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
1022
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
1023
|
+
[_m, _sC, _qC],
|
|
1024
|
+
[0, 0, 0], 1
|
|
1025
|
+
];
|
|
1026
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
1027
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1028
|
+
{ [_e]: _c },
|
|
1029
|
+
[_m, _fL],
|
|
1030
|
+
[0, () => ValidationExceptionFieldList], 1
|
|
1031
|
+
];
|
|
1032
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1033
|
+
const errorTypeRegistries = [
|
|
1034
|
+
_s_registry,
|
|
1035
|
+
n0_registry,
|
|
1036
|
+
];
|
|
1037
|
+
var AccessToken = [0, n0, _AT, 8, 0];
|
|
1038
|
+
var CertificateChain = [0, n0, _CC, 8, 0];
|
|
1039
|
+
var SecurityRequirementDocumentContent = [0, n0, _SRDC, 8, 21];
|
|
1040
|
+
var Actor$ = [3, n0, _A,
|
|
1041
|
+
0,
|
|
1042
|
+
[_i, _u, _a, _d],
|
|
1043
|
+
[0, 64 | 0, () => Authentication$, 0]
|
|
1044
|
+
];
|
|
1045
|
+
var AddArtifactInput$ = [3, n0, _AAI,
|
|
1046
|
+
0,
|
|
1047
|
+
[_aSI, _aC, _aT, _fN],
|
|
1048
|
+
[0, 21, 0, 0], 4
|
|
1049
|
+
];
|
|
1050
|
+
var AddArtifactOutput$ = [3, n0, _AAO,
|
|
1051
|
+
0,
|
|
1052
|
+
[_aI],
|
|
1053
|
+
[0], 1
|
|
1054
|
+
];
|
|
1055
|
+
var AgentSpace$ = [3, n0, _AS,
|
|
1056
|
+
0,
|
|
1057
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _kKI, _cA, _uA],
|
|
1058
|
+
[0, 0, 0, () => AWSResources$, 64 | 0, () => CodeReviewSettings$, 0, 5, 5], 2
|
|
1059
|
+
];
|
|
1060
|
+
var AgentSpaceSummary$ = [3, n0, _ASS,
|
|
1061
|
+
0,
|
|
1062
|
+
[_aSI, _n, _cA, _uA],
|
|
1063
|
+
[0, 0, 5, 5], 2
|
|
1064
|
+
];
|
|
1065
|
+
var ApplicationSummary$ = [3, n0, _ASp,
|
|
1066
|
+
0,
|
|
1067
|
+
[_aIp, _aN, _do, _dKKI],
|
|
1068
|
+
[0, 0, 0, 0], 3
|
|
1069
|
+
];
|
|
1070
|
+
var Artifact$ = [3, n0, _Ar,
|
|
1071
|
+
0,
|
|
1072
|
+
[_co, _t],
|
|
1073
|
+
[0, 0], 2
|
|
1074
|
+
];
|
|
1075
|
+
var ArtifactMetadataItem$ = [3, n0, _AMI,
|
|
1076
|
+
0,
|
|
1077
|
+
[_aSI, _aI, _fN, _uA],
|
|
1078
|
+
[0, 0, 0, 5], 4
|
|
1079
|
+
];
|
|
1080
|
+
var ArtifactSummary$ = [3, n0, _ASr,
|
|
1081
|
+
0,
|
|
1082
|
+
[_aI, _fN, _aT],
|
|
1083
|
+
[0, 0, 0], 3
|
|
1084
|
+
];
|
|
1085
|
+
var Assets$ = [3, n0, _As,
|
|
1086
|
+
0,
|
|
1087
|
+
[_en, _ac, _doc, _sCo, _iR],
|
|
1088
|
+
[() => EndpointList, () => ActorList, () => DocumentList, () => SourceCodeRepositoryList, () => IntegratedRepositoryList]
|
|
1089
|
+
];
|
|
1090
|
+
var Authentication$ = [3, n0, _Au,
|
|
1091
|
+
0,
|
|
1092
|
+
[_pT, _v],
|
|
1093
|
+
[0, 0]
|
|
1094
|
+
];
|
|
1095
|
+
var AWSResources$ = [3, n0, _AWSR,
|
|
1096
|
+
0,
|
|
1097
|
+
[_vp, _lG, _sB, _sA, _lFA, _iRa],
|
|
1098
|
+
[() => VpcConfigs, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0]
|
|
1099
|
+
];
|
|
1100
|
+
var BatchCreateSecurityRequirementResult$ = [3, n0, _BCSRR,
|
|
1101
|
+
0,
|
|
1102
|
+
[_pI, _n, _d, _do, _ev, _cA, _uA, _r],
|
|
1103
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1104
|
+
];
|
|
1105
|
+
var BatchCreateSecurityRequirementsInput$ = [3, n0, _BCSRI,
|
|
1106
|
+
0,
|
|
1107
|
+
[_pI, _sR],
|
|
1108
|
+
[0, () => CreateSecurityRequirementEntryList], 2
|
|
1109
|
+
];
|
|
1110
|
+
var BatchCreateSecurityRequirementsOutput$ = [3, n0, _BCSRO,
|
|
1111
|
+
0,
|
|
1112
|
+
[_sR, _er],
|
|
1113
|
+
[() => BatchCreateSecurityRequirementResultList, () => BatchSecurityRequirementErrors], 2
|
|
1114
|
+
];
|
|
1115
|
+
var BatchDeleteCodeReviewsInput$ = [3, n0, _BDCRI,
|
|
1116
|
+
0,
|
|
1117
|
+
[_cRI, _aSI],
|
|
1118
|
+
[64 | 0, 0], 2
|
|
1119
|
+
];
|
|
1120
|
+
var BatchDeleteCodeReviewsOutput$ = [3, n0, _BDCRO,
|
|
1121
|
+
0,
|
|
1122
|
+
[_de, _f],
|
|
1123
|
+
[64 | 0, () => DeleteCodeReviewFailureList]
|
|
1124
|
+
];
|
|
1125
|
+
var BatchDeletePentestsInput$ = [3, n0, _BDPI,
|
|
1126
|
+
0,
|
|
1127
|
+
[_pIe, _aSI],
|
|
1128
|
+
[64 | 0, 0], 2
|
|
1129
|
+
];
|
|
1130
|
+
var BatchDeletePentestsOutput$ = [3, n0, _BDPO,
|
|
1131
|
+
0,
|
|
1132
|
+
[_de, _f],
|
|
1133
|
+
[() => PentestList, () => DeletePentestFailureList]
|
|
1134
|
+
];
|
|
1135
|
+
var BatchDeleteSecurityRequirementsInput$ = [3, n0, _BDSRI,
|
|
1136
|
+
0,
|
|
1137
|
+
[_pI, _sRN],
|
|
1138
|
+
[0, 64 | 0], 2
|
|
1139
|
+
];
|
|
1140
|
+
var BatchDeleteSecurityRequirementsOutput$ = [3, n0, _BDSRO,
|
|
1141
|
+
0,
|
|
1142
|
+
[_dSRN, _er],
|
|
1143
|
+
[64 | 0, () => BatchSecurityRequirementErrors], 2
|
|
1144
|
+
];
|
|
1145
|
+
var BatchDeleteThreatModelsInput$ = [3, n0, _BDTMI,
|
|
1146
|
+
0,
|
|
1147
|
+
[_tMI, _aSI],
|
|
1148
|
+
[64 | 0, 0], 2
|
|
1149
|
+
];
|
|
1150
|
+
var BatchDeleteThreatModelsOutput$ = [3, n0, _BDTMO,
|
|
1151
|
+
0,
|
|
1152
|
+
[_de, _f],
|
|
1153
|
+
[64 | 0, () => DeleteThreatModelFailureList]
|
|
1154
|
+
];
|
|
1155
|
+
var BatchGetAgentSpacesInput$ = [3, n0, _BGASI,
|
|
1156
|
+
0,
|
|
1157
|
+
[_aSIg],
|
|
1158
|
+
[64 | 0], 1
|
|
1159
|
+
];
|
|
1160
|
+
var BatchGetAgentSpacesOutput$ = [3, n0, _BGASO,
|
|
1161
|
+
0,
|
|
1162
|
+
[_aS, _nF],
|
|
1163
|
+
[() => AgentSpaceList, 64 | 0]
|
|
1164
|
+
];
|
|
1165
|
+
var BatchGetArtifactMetadataInput$ = [3, n0, _BGAMI,
|
|
1166
|
+
0,
|
|
1167
|
+
[_aSI, _aIr],
|
|
1168
|
+
[0, 64 | 0], 2
|
|
1169
|
+
];
|
|
1170
|
+
var BatchGetArtifactMetadataOutput$ = [3, n0, _BGAMO,
|
|
1171
|
+
0,
|
|
1172
|
+
[_aML],
|
|
1173
|
+
[() => ArtifactMetadataList], 1
|
|
1174
|
+
];
|
|
1175
|
+
var BatchGetCodeReviewJobsInput$ = [3, n0, _BGCRJI,
|
|
1176
|
+
0,
|
|
1177
|
+
[_cRJI, _aSI],
|
|
1178
|
+
[64 | 0, 0], 2
|
|
1179
|
+
];
|
|
1180
|
+
var BatchGetCodeReviewJobsOutput$ = [3, n0, _BGCRJO,
|
|
1181
|
+
0,
|
|
1182
|
+
[_cRJ, _nF],
|
|
1183
|
+
[() => CodeReviewJobList, 64 | 0]
|
|
1184
|
+
];
|
|
1185
|
+
var BatchGetCodeReviewJobTasksInput$ = [3, n0, _BGCRJTI,
|
|
1186
|
+
0,
|
|
1187
|
+
[_aSI, _cRJTI],
|
|
1188
|
+
[0, 64 | 0], 2
|
|
1189
|
+
];
|
|
1190
|
+
var BatchGetCodeReviewJobTasksOutput$ = [3, n0, _BGCRJTO,
|
|
1191
|
+
0,
|
|
1192
|
+
[_cRJT, _nF],
|
|
1193
|
+
[() => CodeReviewJobTaskList, 64 | 0]
|
|
1194
|
+
];
|
|
1195
|
+
var BatchGetCodeReviewsInput$ = [3, n0, _BGCRI,
|
|
1196
|
+
0,
|
|
1197
|
+
[_cRI, _aSI],
|
|
1198
|
+
[64 | 0, 0], 2
|
|
1199
|
+
];
|
|
1200
|
+
var BatchGetCodeReviewsOutput$ = [3, n0, _BGCRO,
|
|
1201
|
+
0,
|
|
1202
|
+
[_cR, _nF],
|
|
1203
|
+
[() => CodeReviewList, 64 | 0]
|
|
1204
|
+
];
|
|
1205
|
+
var BatchGetFindingsInput$ = [3, n0, _BGFI,
|
|
1206
|
+
0,
|
|
1207
|
+
[_fI, _aSI],
|
|
1208
|
+
[64 | 0, 0], 2
|
|
1209
|
+
];
|
|
1210
|
+
var BatchGetFindingsOutput$ = [3, n0, _BGFO,
|
|
1211
|
+
0,
|
|
1212
|
+
[_fi, _nF],
|
|
1213
|
+
[() => FindingList, 64 | 0]
|
|
1214
|
+
];
|
|
1215
|
+
var BatchGetPentestJobsInput$ = [3, n0, _BGPJI,
|
|
1216
|
+
0,
|
|
1217
|
+
[_pJI, _aSI],
|
|
1218
|
+
[64 | 0, 0], 2
|
|
1219
|
+
];
|
|
1220
|
+
var BatchGetPentestJobsOutput$ = [3, n0, _BGPJO,
|
|
1221
|
+
0,
|
|
1222
|
+
[_pJ, _nF],
|
|
1223
|
+
[() => PentestJobList, 64 | 0]
|
|
1224
|
+
];
|
|
1225
|
+
var BatchGetPentestJobTasksInput$ = [3, n0, _BGPJTI,
|
|
1226
|
+
0,
|
|
1227
|
+
[_aSI, _tI],
|
|
1228
|
+
[0, 64 | 0], 2
|
|
1229
|
+
];
|
|
1230
|
+
var BatchGetPentestJobTasksOutput$ = [3, n0, _BGPJTO,
|
|
1231
|
+
0,
|
|
1232
|
+
[_ta, _nF],
|
|
1233
|
+
[() => TaskList, 64 | 0]
|
|
1234
|
+
];
|
|
1235
|
+
var BatchGetPentestsInput$ = [3, n0, _BGPI,
|
|
1236
|
+
0,
|
|
1237
|
+
[_pIe, _aSI],
|
|
1238
|
+
[64 | 0, 0], 2
|
|
1239
|
+
];
|
|
1240
|
+
var BatchGetPentestsOutput$ = [3, n0, _BGPO,
|
|
1241
|
+
0,
|
|
1242
|
+
[_p, _nF],
|
|
1243
|
+
[() => PentestList, 64 | 0]
|
|
1244
|
+
];
|
|
1245
|
+
var BatchGetSecurityRequirementResult$ = [3, n0, _BGSRR,
|
|
1246
|
+
0,
|
|
1247
|
+
[_pI, _n, _d, _do, _ev, _cA, _uA, _r],
|
|
1248
|
+
[0, 0, 0, 0, 0, 5, 5, 0], 7
|
|
1249
|
+
];
|
|
1250
|
+
var BatchGetSecurityRequirementsInput$ = [3, n0, _BGSRI,
|
|
1251
|
+
0,
|
|
1252
|
+
[_pI, _sRN],
|
|
1253
|
+
[0, 64 | 0], 2
|
|
1254
|
+
];
|
|
1255
|
+
var BatchGetSecurityRequirementsOutput$ = [3, n0, _BGSRO,
|
|
1256
|
+
0,
|
|
1257
|
+
[_sR, _er],
|
|
1258
|
+
[() => BatchGetSecurityRequirementResultList, () => BatchSecurityRequirementErrors], 2
|
|
1259
|
+
];
|
|
1260
|
+
var BatchGetTargetDomainsInput$ = [3, n0, _BGTDI,
|
|
1261
|
+
0,
|
|
1262
|
+
[_tDI],
|
|
1263
|
+
[64 | 0], 1
|
|
1264
|
+
];
|
|
1265
|
+
var BatchGetTargetDomainsOutput$ = [3, n0, _BGTDO,
|
|
1266
|
+
0,
|
|
1267
|
+
[_tD, _nF],
|
|
1268
|
+
[() => TargetDomainList, 64 | 0]
|
|
1269
|
+
];
|
|
1270
|
+
var BatchGetThreatModelJobsInput$ = [3, n0, _BGTMJI,
|
|
1271
|
+
0,
|
|
1272
|
+
[_tMJI, _aSI],
|
|
1273
|
+
[64 | 0, 0], 2
|
|
1274
|
+
];
|
|
1275
|
+
var BatchGetThreatModelJobsOutput$ = [3, n0, _BGTMJO,
|
|
1276
|
+
0,
|
|
1277
|
+
[_tMJ, _nF],
|
|
1278
|
+
[() => ThreatModelJobList, 64 | 0]
|
|
1279
|
+
];
|
|
1280
|
+
var BatchGetThreatModelJobTasksInput$ = [3, n0, _BGTMJTI,
|
|
1281
|
+
0,
|
|
1282
|
+
[_aSI, _tMJTI],
|
|
1283
|
+
[0, 64 | 0], 2
|
|
1284
|
+
];
|
|
1285
|
+
var BatchGetThreatModelJobTasksOutput$ = [3, n0, _BGTMJTO,
|
|
1286
|
+
0,
|
|
1287
|
+
[_tMJT, _nF],
|
|
1288
|
+
[() => ThreatModelJobTaskList, 64 | 0]
|
|
1289
|
+
];
|
|
1290
|
+
var BatchGetThreatModelsInput$ = [3, n0, _BGTMI,
|
|
1291
|
+
0,
|
|
1292
|
+
[_tMI, _aSI],
|
|
1293
|
+
[64 | 0, 0], 2
|
|
1294
|
+
];
|
|
1295
|
+
var BatchGetThreatModelsOutput$ = [3, n0, _BGTMO,
|
|
1296
|
+
0,
|
|
1297
|
+
[_tM, _nF],
|
|
1298
|
+
[() => ThreatModelList, 64 | 0]
|
|
1299
|
+
];
|
|
1300
|
+
var BatchGetThreatsInput$ = [3, n0, _BGTI,
|
|
1301
|
+
0,
|
|
1302
|
+
[_tIh, _aSI],
|
|
1303
|
+
[64 | 0, 0], 2
|
|
1304
|
+
];
|
|
1305
|
+
var BatchGetThreatsOutput$ = [3, n0, _BGTO,
|
|
1306
|
+
0,
|
|
1307
|
+
[_th, _nF],
|
|
1308
|
+
[() => ThreatList, 64 | 0]
|
|
1309
|
+
];
|
|
1310
|
+
var BatchSecurityRequirementError$ = [3, n0, _BSRE,
|
|
1311
|
+
0,
|
|
1312
|
+
[_sRNe, _cod, _m],
|
|
1313
|
+
[0, 0, 0], 3
|
|
1314
|
+
];
|
|
1315
|
+
var BatchUpdateSecurityRequirementsInput$ = [3, n0, _BUSRI,
|
|
1316
|
+
0,
|
|
1317
|
+
[_pI, _sR],
|
|
1318
|
+
[0, () => UpdateSecurityRequirementEntryList], 2
|
|
1319
|
+
];
|
|
1320
|
+
var BatchUpdateSecurityRequirementsOutput$ = [3, n0, _BUSRO,
|
|
1321
|
+
0,
|
|
1322
|
+
[_uSRN, _er],
|
|
1323
|
+
[64 | 0, () => BatchSecurityRequirementErrors], 2
|
|
1324
|
+
];
|
|
1325
|
+
var BitbucketIntegrationInput$ = [3, n0, _BII,
|
|
1326
|
+
0,
|
|
1327
|
+
[_iI, _w, _cod, _st],
|
|
1328
|
+
[0, 0, 0, 0], 4
|
|
1329
|
+
];
|
|
1330
|
+
var BitbucketRepositoryMetadata$ = [3, n0, _BRM,
|
|
1331
|
+
0,
|
|
1332
|
+
[_n, _pRI, _w, _aTc],
|
|
1333
|
+
[0, 0, 0, 0], 3
|
|
1334
|
+
];
|
|
1335
|
+
var BitbucketRepositoryResource$ = [3, n0, _BRR,
|
|
1336
|
+
0,
|
|
1337
|
+
[_n, _w],
|
|
1338
|
+
[0, 0], 2
|
|
1339
|
+
];
|
|
1340
|
+
var BitbucketResourceCapabilities$ = [3, n0, _BRC,
|
|
1341
|
+
0,
|
|
1342
|
+
[_lC, _rC],
|
|
1343
|
+
[2, 2]
|
|
1344
|
+
];
|
|
1345
|
+
var Category$ = [3, n0, _C,
|
|
1346
|
+
0,
|
|
1347
|
+
[_n, _iP],
|
|
1348
|
+
[0, 2]
|
|
1349
|
+
];
|
|
1350
|
+
var CloudWatchLog$ = [3, n0, _CWL,
|
|
1351
|
+
0,
|
|
1352
|
+
[_lGo, _lS],
|
|
1353
|
+
[0, 0]
|
|
1354
|
+
];
|
|
1355
|
+
var CodeLocation$ = [3, n0, _CL,
|
|
1356
|
+
0,
|
|
1357
|
+
[_fP, _lSi, _lE, _l],
|
|
1358
|
+
[0, 1, 1, 0], 1
|
|
1359
|
+
];
|
|
1360
|
+
var CodeRemediationTask$ = [3, n0, _CRT,
|
|
1361
|
+
0,
|
|
1362
|
+
[_sta, _sRt, _tDa],
|
|
1363
|
+
[0, 0, () => CodeRemediationTaskDetailsList], 1
|
|
1364
|
+
];
|
|
1365
|
+
var CodeRemediationTaskDetails$ = [3, n0, _CRTD,
|
|
1366
|
+
0,
|
|
1367
|
+
[_rN, _cDL, _pRL],
|
|
1368
|
+
[0, 0, 0]
|
|
1369
|
+
];
|
|
1370
|
+
var CodeReview$ = [3, n0, _CR,
|
|
1371
|
+
0,
|
|
1372
|
+
[_cRIo, _aSI, _ti, _as, _sRe, _lCo, _cRSo, _vM, _cA, _uA],
|
|
1373
|
+
[0, 0, 0, () => Assets$, 0, () => CloudWatchLog$, 0, 0, 5, 5], 4
|
|
1374
|
+
];
|
|
1375
|
+
var CodeReviewJob$ = [3, n0, _CRJ,
|
|
1376
|
+
0,
|
|
1377
|
+
[_cRJIo, _cRIo, _ti, _o, _sta, _doc, _sCo, _ste, _eC, _sRe, _lCo, _eI, _iR, _cRSo, _cA, _uA],
|
|
1378
|
+
[0, 0, 0, 0, 0, () => DocumentList, () => SourceCodeRepositoryList, () => StepList, () => ExecutionContextList, 0, () => CloudWatchLog$, () => ErrorInformation$, () => IntegratedRepositoryList, 0, 5, 5]
|
|
1379
|
+
];
|
|
1380
|
+
var CodeReviewJobSummary$ = [3, n0, _CRJS,
|
|
1381
|
+
0,
|
|
1382
|
+
[_cRJIo, _cRIo, _ti, _sta, _cA, _uA],
|
|
1383
|
+
[0, 0, 0, 0, 5, 5], 2
|
|
1384
|
+
];
|
|
1385
|
+
var CodeReviewJobTask$ = [3, n0, _CRJT,
|
|
1386
|
+
0,
|
|
1387
|
+
[_tIa, _cRIo, _cRJIo, _aSI, _ti, _d, _ca, _rT, _eS, _lL, _cA, _uA],
|
|
1388
|
+
[0, 0, 0, 0, 0, 0, () => CategoryList, 0, 0, () => LogLocation$, 5, 5], 1
|
|
1389
|
+
];
|
|
1390
|
+
var CodeReviewJobTaskSummary$ = [3, n0, _CRJTS,
|
|
1391
|
+
0,
|
|
1392
|
+
[_tIa, _cRIo, _cRJIo, _aSI, _ti, _rT, _eS, _cA, _uA],
|
|
1393
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5], 1
|
|
1394
|
+
];
|
|
1395
|
+
var CodeReviewSettings$ = [3, n0, _CRS,
|
|
1396
|
+
0,
|
|
1397
|
+
[_cS, _gPS],
|
|
1398
|
+
[2, 2], 2
|
|
1399
|
+
];
|
|
1400
|
+
var CodeReviewSummary$ = [3, n0, _CRSo,
|
|
1401
|
+
0,
|
|
1402
|
+
[_cRIo, _aSI, _ti, _cA, _uA],
|
|
1403
|
+
[0, 0, 0, 5, 5], 3
|
|
1404
|
+
];
|
|
1405
|
+
var ConfluenceDocumentMetadata$ = [3, n0, _CDM,
|
|
1406
|
+
0,
|
|
1407
|
+
[_n, _pRI, _sK, _pIa, _ti, _sT],
|
|
1408
|
+
[0, 0, 0, 0, 0, 0], 4
|
|
1409
|
+
];
|
|
1410
|
+
var ConfluenceDocumentResource$ = [3, n0, _CDR,
|
|
1411
|
+
0,
|
|
1412
|
+
[_n, _sK, _pIa, _ti, _sT],
|
|
1413
|
+
[0, 0, 0, 0, 0], 3
|
|
1414
|
+
];
|
|
1415
|
+
var ConfluenceIntegrationInput$ = [3, n0, _CII,
|
|
1416
|
+
0,
|
|
1417
|
+
[_iI, _cod, _st, _sU],
|
|
1418
|
+
[0, 0, 0, 0], 4
|
|
1419
|
+
];
|
|
1420
|
+
var ConfluenceResourceCapabilities$ = [3, n0, _CRC,
|
|
1421
|
+
0,
|
|
1422
|
+
[_fD, _cD, _uD],
|
|
1423
|
+
[2, 2, 2]
|
|
1424
|
+
];
|
|
1425
|
+
var CreateAgentSpaceInput$ = [3, n0, _CASI,
|
|
1426
|
+
0,
|
|
1427
|
+
[_n, _d, _aR, _tDI, _cRS, _kKI, _tag],
|
|
1428
|
+
[0, 0, () => AWSResources$, 64 | 0, () => CodeReviewSettings$, 0, 128 | 0], 1
|
|
1429
|
+
];
|
|
1430
|
+
var CreateAgentSpaceOutput$ = [3, n0, _CASO,
|
|
1431
|
+
0,
|
|
1432
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _kKI, _cA, _uA],
|
|
1433
|
+
[0, 0, 0, () => AWSResources$, 64 | 0, () => CodeReviewSettings$, 0, 5, 5], 2
|
|
1434
|
+
];
|
|
1435
|
+
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
1436
|
+
0,
|
|
1437
|
+
[_iIA, _rA, _dKKI, _tag],
|
|
1438
|
+
[0, 0, 0, 128 | 0]
|
|
1439
|
+
];
|
|
1440
|
+
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
1441
|
+
0,
|
|
1442
|
+
[_aIp],
|
|
1443
|
+
[0], 1
|
|
1444
|
+
];
|
|
1445
|
+
var CreateCodeReviewInput$ = [3, n0, _CCRI,
|
|
1446
|
+
0,
|
|
1447
|
+
[_ti, _aSI, _as, _sRe, _lCo, _cRSo, _vM],
|
|
1448
|
+
[0, 0, () => Assets$, 0, () => CloudWatchLog$, 0, 0], 3
|
|
1449
|
+
];
|
|
1450
|
+
var CreateCodeReviewOutput$ = [3, n0, _CCRO,
|
|
1451
|
+
0,
|
|
1452
|
+
[_cRIo, _ti, _cA, _uA, _as, _sRe, _lCo, _aSI, _cRSo, _vM],
|
|
1453
|
+
[0, 0, 5, 5, () => Assets$, 0, () => CloudWatchLog$, 0, 0, 0], 1
|
|
1454
|
+
];
|
|
1455
|
+
var CreateIntegrationInput$ = [3, n0, _CIIr,
|
|
1456
|
+
0,
|
|
1457
|
+
[_pr, _in, _iDN, _kKI, _tag, _pCN],
|
|
1458
|
+
[0, [() => ProviderInput$, 0], 0, 0, 128 | 0, 0], 3
|
|
1459
|
+
];
|
|
1460
|
+
var CreateIntegrationOutput$ = [3, n0, _CIO,
|
|
1461
|
+
0,
|
|
1462
|
+
[_iIn],
|
|
1463
|
+
[0], 1
|
|
1464
|
+
];
|
|
1465
|
+
var CreateMembershipRequest$ = [3, n0, _CMR,
|
|
1466
|
+
0,
|
|
1467
|
+
[_aIp, _aSI, _mI, _mT, _con],
|
|
1468
|
+
[0, 0, 0, 0, () => MembershipConfig$], 4
|
|
1469
|
+
];
|
|
1470
|
+
var CreateMembershipResponse$ = [3, n0, _CMRr,
|
|
1471
|
+
0,
|
|
1472
|
+
[],
|
|
1473
|
+
[]
|
|
1474
|
+
];
|
|
1475
|
+
var CreatePentestInput$ = [3, n0, _CPI,
|
|
1476
|
+
0,
|
|
1477
|
+
[_ti, _aSI, _as, _eRT, _sRe, _lCo, _vC, _nTC, _cRSo, _dMS],
|
|
1478
|
+
[0, 0, () => Assets$, 64 | 0, 0, () => CloudWatchLog$, () => VpcConfig$, () => NetworkTrafficConfig$, 0, 64 | 0], 2
|
|
1479
|
+
];
|
|
1480
|
+
var CreatePentestOutput$ = [3, n0, _CPO,
|
|
1481
|
+
0,
|
|
1482
|
+
[_pIen, _ti, _cA, _uA, _as, _eRT, _sRe, _lCo, _aSI],
|
|
1483
|
+
[0, 0, 5, 5, () => Assets$, 64 | 0, 0, () => CloudWatchLog$, 0]
|
|
1484
|
+
];
|
|
1485
|
+
var CreatePrivateConnectionInput$ = [3, n0, _CPCI,
|
|
1486
|
+
0,
|
|
1487
|
+
[_pCN, _mo, _tag],
|
|
1488
|
+
[0, [() => PrivateConnectionMode$, 0], 128 | 0], 2
|
|
1489
|
+
];
|
|
1490
|
+
var CreatePrivateConnectionOutput$ = [3, n0, _CPCO,
|
|
1491
|
+
0,
|
|
1492
|
+
[_n, _t, _sta, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _tag],
|
|
1493
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
1494
|
+
];
|
|
1495
|
+
var CreateSecurityRequirementEntry$ = [3, n0, _CSRE,
|
|
1496
|
+
0,
|
|
1497
|
+
[_n, _d, _do, _ev, _r],
|
|
1498
|
+
[0, 0, 0, 0, 0], 4
|
|
1499
|
+
];
|
|
1500
|
+
var CreateSecurityRequirementPackInput$ = [3, n0, _CSRPI,
|
|
1501
|
+
0,
|
|
1502
|
+
[_n, _d, _sta, _kKI, _tag],
|
|
1503
|
+
[0, 0, 0, 0, 128 | 0], 1
|
|
1504
|
+
];
|
|
1505
|
+
var CreateSecurityRequirementPackOutput$ = [3, n0, _CSRPO,
|
|
1506
|
+
0,
|
|
1507
|
+
[_pI, _sta, _kKI],
|
|
1508
|
+
[0, 0, 0], 2
|
|
1509
|
+
];
|
|
1510
|
+
var CreateTargetDomainInput$ = [3, n0, _CTDI,
|
|
1511
|
+
0,
|
|
1512
|
+
[_tDN, _vMe, _tag],
|
|
1513
|
+
[0, 0, 128 | 0], 2
|
|
1514
|
+
];
|
|
1515
|
+
var CreateTargetDomainOutput$ = [3, n0, _CTDO,
|
|
1516
|
+
0,
|
|
1517
|
+
[_tDIa, _dN, _vS, _vSR, _vD, _cA, _vA],
|
|
1518
|
+
[0, 0, 0, 0, () => VerificationDetails$, 5, 5], 3
|
|
1519
|
+
];
|
|
1520
|
+
var CreateThreatInput$ = [3, n0, _CTI,
|
|
1521
|
+
0,
|
|
1522
|
+
[_aSI, _tJI, _ti, _stat, _sev, _com, _str, _tS, _pre, _tA, _tIhr, _iG, _iA, _an, _evi, _re],
|
|
1523
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => ThreatAnchorShape$, () => ThreatEvidenceList, 0], 2
|
|
1524
|
+
];
|
|
1525
|
+
var CreateThreatModelInput$ = [3, n0, _CTMI,
|
|
1526
|
+
0,
|
|
1527
|
+
[_ti, _aSI, _sRe, _d, _as, _sD, _lCo, _rD],
|
|
1528
|
+
[0, 0, 0, 0, () => Assets$, () => DocumentList, () => CloudWatchLog$, () => ReportDestination$], 3
|
|
1529
|
+
];
|
|
1530
|
+
var CreateThreatModelOutput$ = [3, n0, _CTMO,
|
|
1531
|
+
0,
|
|
1532
|
+
[_tMIh, _ti, _aSI, _d, _as, _sD, _sRe, _lCo, _cA, _uA],
|
|
1533
|
+
[0, 0, 0, 0, () => Assets$, () => DocumentList, 0, () => CloudWatchLog$, 5, 5], 1
|
|
1534
|
+
];
|
|
1535
|
+
var CreateThreatOutput$ = [3, n0, _CTO,
|
|
1536
|
+
0,
|
|
1537
|
+
[_tIhre, _tJI, _ti, _stat, _sev, _sta, _com, _str, _tS, _pre, _tA, _tIhr, _iG, _iA, _an, _evi, _re, _cB, _uB, _cA, _uA],
|
|
1538
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => ThreatAnchorShape$, () => ThreatEvidenceList, 0, 0, 0, 5, 5], 2
|
|
1539
|
+
];
|
|
1540
|
+
var CustomHeader$ = [3, n0, _CH,
|
|
1541
|
+
0,
|
|
1542
|
+
[_n, _v],
|
|
1543
|
+
[0, 0]
|
|
1544
|
+
];
|
|
1545
|
+
var DeleteAgentSpaceInput$ = [3, n0, _DASI,
|
|
1546
|
+
0,
|
|
1547
|
+
[_aSI],
|
|
1548
|
+
[0], 1
|
|
1549
|
+
];
|
|
1550
|
+
var DeleteAgentSpaceOutput$ = [3, n0, _DASO,
|
|
1551
|
+
0,
|
|
1552
|
+
[_aSI],
|
|
1553
|
+
[0]
|
|
1554
|
+
];
|
|
1555
|
+
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
1556
|
+
0,
|
|
1557
|
+
[_aIp],
|
|
1558
|
+
[0], 1
|
|
1559
|
+
];
|
|
1560
|
+
var DeleteArtifactInput$ = [3, n0, _DAI,
|
|
1561
|
+
0,
|
|
1562
|
+
[_aSI, _aI],
|
|
1563
|
+
[0, 0], 2
|
|
1564
|
+
];
|
|
1565
|
+
var DeleteArtifactOutput$ = [3, n0, _DAO,
|
|
1566
|
+
0,
|
|
1567
|
+
[],
|
|
1568
|
+
[]
|
|
1569
|
+
];
|
|
1570
|
+
var DeleteCodeReviewFailure$ = [3, n0, _DCRF,
|
|
1571
|
+
0,
|
|
1572
|
+
[_cRIo, _rea],
|
|
1573
|
+
[0, 0]
|
|
1574
|
+
];
|
|
1575
|
+
var DeleteIntegrationInput$ = [3, n0, _DII,
|
|
1576
|
+
0,
|
|
1577
|
+
[_iIn],
|
|
1578
|
+
[0], 1
|
|
1579
|
+
];
|
|
1580
|
+
var DeleteIntegrationOutput$ = [3, n0, _DIO,
|
|
1581
|
+
0,
|
|
1582
|
+
[],
|
|
1583
|
+
[]
|
|
1584
|
+
];
|
|
1585
|
+
var DeleteMembershipRequest$ = [3, n0, _DMR,
|
|
1586
|
+
0,
|
|
1587
|
+
[_aIp, _aSI, _mI, _mT],
|
|
1588
|
+
[0, 0, 0, 0], 3
|
|
1589
|
+
];
|
|
1590
|
+
var DeleteMembershipResponse$ = [3, n0, _DMRe,
|
|
1591
|
+
0,
|
|
1592
|
+
[],
|
|
1593
|
+
[]
|
|
1594
|
+
];
|
|
1595
|
+
var DeletePentestFailure$ = [3, n0, _DPF,
|
|
1596
|
+
0,
|
|
1597
|
+
[_pIen, _rea],
|
|
1598
|
+
[0, 0]
|
|
1599
|
+
];
|
|
1600
|
+
var DeletePrivateConnectionInput$ = [3, n0, _DPCI,
|
|
1601
|
+
0,
|
|
1602
|
+
[_pCN],
|
|
1603
|
+
[0], 1
|
|
1604
|
+
];
|
|
1605
|
+
var DeletePrivateConnectionOutput$ = [3, n0, _DPCO,
|
|
1606
|
+
0,
|
|
1607
|
+
[_n, _t, _sta, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _tag],
|
|
1608
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
1609
|
+
];
|
|
1610
|
+
var DeleteSecurityRequirementPackInput$ = [3, n0, _DSRPI,
|
|
1611
|
+
0,
|
|
1612
|
+
[_pI],
|
|
1613
|
+
[0], 1
|
|
1614
|
+
];
|
|
1615
|
+
var DeleteSecurityRequirementPackOutput$ = [3, n0, _DSRPO,
|
|
1616
|
+
0,
|
|
1617
|
+
[],
|
|
1618
|
+
[]
|
|
1619
|
+
];
|
|
1620
|
+
var DeleteTargetDomainInput$ = [3, n0, _DTDI,
|
|
1621
|
+
0,
|
|
1622
|
+
[_tDIa],
|
|
1623
|
+
[0], 1
|
|
1624
|
+
];
|
|
1625
|
+
var DeleteTargetDomainOutput$ = [3, n0, _DTDO,
|
|
1626
|
+
0,
|
|
1627
|
+
[_tDIa],
|
|
1628
|
+
[0]
|
|
1629
|
+
];
|
|
1630
|
+
var DeleteThreatModelFailure$ = [3, n0, _DTMF,
|
|
1631
|
+
0,
|
|
1632
|
+
[_tMIh, _rea],
|
|
1633
|
+
[0, 0]
|
|
1634
|
+
];
|
|
1635
|
+
var DescribePrivateConnectionInput$ = [3, n0, _DPCIe,
|
|
1636
|
+
0,
|
|
1637
|
+
[_pCN],
|
|
1638
|
+
[0], 1
|
|
1639
|
+
];
|
|
1640
|
+
var DescribePrivateConnectionOutput$ = [3, n0, _DPCOe,
|
|
1641
|
+
0,
|
|
1642
|
+
[_n, _t, _sta, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _tag],
|
|
1643
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
1644
|
+
];
|
|
1645
|
+
var DiscoveredEndpoint$ = [3, n0, _DE,
|
|
1646
|
+
0,
|
|
1647
|
+
[_ur, _pJIe, _tIa, _aSI, _evi, _op, _d],
|
|
1648
|
+
[0, 0, 0, 0, 0, 0, 0], 4
|
|
1649
|
+
];
|
|
1650
|
+
var DnsVerification$ = [3, n0, _DV,
|
|
1651
|
+
0,
|
|
1652
|
+
[_to, _dRN, _dRT],
|
|
1653
|
+
[0, 0, 0]
|
|
1654
|
+
];
|
|
1655
|
+
var DocumentInfo$ = [3, n0, _DI,
|
|
1656
|
+
0,
|
|
1657
|
+
[_sL, _aI, _iD],
|
|
1658
|
+
[0, 0, () => IntegratedDocument$]
|
|
1659
|
+
];
|
|
1660
|
+
var Endpoint$ = [3, n0, _E,
|
|
1661
|
+
0,
|
|
1662
|
+
[_ur],
|
|
1663
|
+
[0]
|
|
1664
|
+
];
|
|
1665
|
+
var ErrorInformation$ = [3, n0, _EI,
|
|
1666
|
+
0,
|
|
1667
|
+
[_cod, _m],
|
|
1668
|
+
[0, 0]
|
|
1669
|
+
];
|
|
1670
|
+
var ExecutionContext$ = [3, n0, _EC,
|
|
1671
|
+
0,
|
|
1672
|
+
[_cT, _cont, _tim],
|
|
1673
|
+
[0, 0, 5]
|
|
1674
|
+
];
|
|
1675
|
+
var Finding$ = [3, n0, _F,
|
|
1676
|
+
0,
|
|
1677
|
+
[_fIi, _aSI, _pIen, _pJIe, _cRIo, _cRJIo, _tIa, _n, _d, _sta, _rT, _rL, _rS, _reas, _conf, _vSa, _aSt, _cRT, _lUB, _cN, _cL, _vSe, _aRl, _cA, _uA],
|
|
1678
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => CodeRemediationTask$, 0, 0, () => CodeLocationList, () => VerificationScript$, 0, 5, 5], 2
|
|
1679
|
+
];
|
|
1680
|
+
var FindingSummary$ = [3, n0, _FS,
|
|
1681
|
+
0,
|
|
1682
|
+
[_fIi, _aSI, _pIen, _pJIe, _cRIo, _cRJIo, _n, _sta, _rT, _rL, _conf, _vSa, _cA, _uA],
|
|
1683
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 5], 2
|
|
1684
|
+
];
|
|
1685
|
+
var GetApplicationRequest$ = [3, n0, _GAR,
|
|
1686
|
+
0,
|
|
1687
|
+
[_aIp],
|
|
1688
|
+
[0], 1
|
|
1689
|
+
];
|
|
1690
|
+
var GetApplicationResponse$ = [3, n0, _GARe,
|
|
1691
|
+
0,
|
|
1692
|
+
[_aIp, _do, _aN, _iC, _rA, _dKKI],
|
|
1693
|
+
[0, 0, 0, () => IdCConfiguration$, 0, 0], 2
|
|
1694
|
+
];
|
|
1695
|
+
var GetArtifactInput$ = [3, n0, _GAI,
|
|
1696
|
+
0,
|
|
1697
|
+
[_aSI, _aI],
|
|
1698
|
+
[0, 0], 2
|
|
1699
|
+
];
|
|
1700
|
+
var GetArtifactOutput$ = [3, n0, _GAO,
|
|
1701
|
+
0,
|
|
1702
|
+
[_aSI, _aI, _ar, _fN, _uA],
|
|
1703
|
+
[0, 0, () => Artifact$, 0, 5], 5
|
|
1704
|
+
];
|
|
1705
|
+
var GetIntegrationInput$ = [3, n0, _GII,
|
|
1706
|
+
0,
|
|
1707
|
+
[_iIn],
|
|
1708
|
+
[0], 1
|
|
1709
|
+
];
|
|
1710
|
+
var GetIntegrationOutput$ = [3, n0, _GIO,
|
|
1711
|
+
0,
|
|
1712
|
+
[_iIn, _iI, _pr, _pT, _dNi, _kKI, _tU, _pCN],
|
|
1713
|
+
[0, 0, 0, 0, 0, 0, 0, 0], 4
|
|
1714
|
+
];
|
|
1715
|
+
var GetSecurityRequirementPackInput$ = [3, n0, _GSRPI,
|
|
1716
|
+
0,
|
|
1717
|
+
[_pI],
|
|
1718
|
+
[0], 1
|
|
1719
|
+
];
|
|
1720
|
+
var GetSecurityRequirementPackOutput$ = [3, n0, _GSRPO,
|
|
1721
|
+
0,
|
|
1722
|
+
[_pI, _n, _mTa, _sta, _cA, _uA, _d, _vN, _iS, _kKI],
|
|
1723
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0], 6
|
|
1724
|
+
];
|
|
1725
|
+
var GitHubIntegrationInput$ = [3, n0, _GHII,
|
|
1726
|
+
0,
|
|
1727
|
+
[_cod, _st, _oN, _tU, _iI],
|
|
1728
|
+
[0, 0, 0, 0, 0], 2
|
|
1729
|
+
];
|
|
1730
|
+
var GitHubRepositoryMetadata$ = [3, n0, _GHRM,
|
|
1731
|
+
0,
|
|
1732
|
+
[_n, _pRI, _ow, _aTc],
|
|
1733
|
+
[0, 0, 0, 0], 3
|
|
1734
|
+
];
|
|
1735
|
+
var GitHubRepositoryResource$ = [3, n0, _GHRR,
|
|
1736
|
+
0,
|
|
1737
|
+
[_n, _ow],
|
|
1738
|
+
[0, 0], 2
|
|
1739
|
+
];
|
|
1740
|
+
var GitHubResourceCapabilities$ = [3, n0, _GHRC,
|
|
1741
|
+
0,
|
|
1742
|
+
[_lC, _rC],
|
|
1743
|
+
[2, 2]
|
|
1744
|
+
];
|
|
1745
|
+
var GitLabIntegrationInput$ = [3, n0, _GLII,
|
|
1746
|
+
0,
|
|
1747
|
+
[_aTcc, _tT, _tU, _gI],
|
|
1748
|
+
[[() => AccessToken, 0], 0, 0, 0], 2
|
|
1749
|
+
];
|
|
1750
|
+
var GitLabRepositoryMetadata$ = [3, n0, _GLRM,
|
|
1751
|
+
0,
|
|
1752
|
+
[_n, _pRI, _na, _aTc],
|
|
1753
|
+
[0, 0, 0, 0], 3
|
|
1754
|
+
];
|
|
1755
|
+
var GitLabRepositoryResource$ = [3, n0, _GLRR,
|
|
1756
|
+
0,
|
|
1757
|
+
[_n, _na],
|
|
1758
|
+
[0, 0], 2
|
|
1759
|
+
];
|
|
1760
|
+
var GitLabResourceCapabilities$ = [3, n0, _GLRC,
|
|
1761
|
+
0,
|
|
1762
|
+
[_lC, _rC],
|
|
1763
|
+
[2, 2]
|
|
1764
|
+
];
|
|
1765
|
+
var HttpVerification$ = [3, n0, _HV,
|
|
1766
|
+
0,
|
|
1767
|
+
[_to, _rP],
|
|
1768
|
+
[0, 0]
|
|
1769
|
+
];
|
|
1770
|
+
var IdCConfiguration$ = [3, n0, _ICC,
|
|
1771
|
+
0,
|
|
1772
|
+
[_iAA, _iIA],
|
|
1773
|
+
[0, 0]
|
|
1774
|
+
];
|
|
1775
|
+
var ImportSecurityRequirementsInput$ = [3, n0, _ISRI,
|
|
1776
|
+
0,
|
|
1777
|
+
[_pI, _in],
|
|
1778
|
+
[0, [() => ImportSource$, 0]], 2
|
|
1779
|
+
];
|
|
1780
|
+
var ImportSecurityRequirementsOutput$ = [3, n0, _ISRO,
|
|
1781
|
+
0,
|
|
1782
|
+
[_pI, _iS],
|
|
1783
|
+
[0, 0], 2
|
|
1784
|
+
];
|
|
1785
|
+
var InitiateProviderRegistrationInput$ = [3, n0, _IPRI,
|
|
1786
|
+
0,
|
|
1787
|
+
[_pr],
|
|
1788
|
+
[0], 1
|
|
1789
|
+
];
|
|
1790
|
+
var InitiateProviderRegistrationOutput$ = [3, n0, _IPRO,
|
|
1791
|
+
0,
|
|
1792
|
+
[_rTe, _cSs],
|
|
1793
|
+
[0, 0], 2
|
|
1794
|
+
];
|
|
1795
|
+
var IntegratedDocument$ = [3, n0, _ID,
|
|
1796
|
+
0,
|
|
1797
|
+
[_iIn, _rI],
|
|
1798
|
+
[0, 0], 2
|
|
1799
|
+
];
|
|
1800
|
+
var IntegratedRepository$ = [3, n0, _IR,
|
|
1801
|
+
0,
|
|
1802
|
+
[_iIn, _pRI],
|
|
1803
|
+
[0, 0], 2
|
|
1804
|
+
];
|
|
1805
|
+
var IntegratedResourceInputItem$ = [3, n0, _IRII,
|
|
1806
|
+
0,
|
|
1807
|
+
[_res, _cap],
|
|
1808
|
+
[() => IntegratedResource$, () => ProviderResourceCapabilities$], 1
|
|
1809
|
+
];
|
|
1810
|
+
var IntegratedResourceSummary$ = [3, n0, _IRS,
|
|
1811
|
+
0,
|
|
1812
|
+
[_iIn, _res, _cap],
|
|
1813
|
+
[0, () => IntegratedResourceMetadata$, () => ProviderResourceCapabilities$], 2
|
|
1814
|
+
];
|
|
1815
|
+
var IntegrationSummary$ = [3, n0, _IS,
|
|
1816
|
+
0,
|
|
1817
|
+
[_iIn, _iI, _pr, _pT, _dNi, _tU, _pCN],
|
|
1818
|
+
[0, 0, 0, 0, 0, 0, 0], 5
|
|
1819
|
+
];
|
|
1820
|
+
var ListAgentSpacesInput$ = [3, n0, _LASI,
|
|
1821
|
+
0,
|
|
1822
|
+
[_nT, _mR],
|
|
1823
|
+
[0, 1]
|
|
1824
|
+
];
|
|
1825
|
+
var ListAgentSpacesOutput$ = [3, n0, _LASO,
|
|
1826
|
+
0,
|
|
1827
|
+
[_aSS, _nT],
|
|
1828
|
+
[() => AgentSpaceSummaryList, 0]
|
|
1829
|
+
];
|
|
1830
|
+
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
1831
|
+
0,
|
|
1832
|
+
[_nT, _mR],
|
|
1833
|
+
[0, 1]
|
|
1834
|
+
];
|
|
1835
|
+
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
1836
|
+
0,
|
|
1837
|
+
[_aSp, _nT],
|
|
1838
|
+
[() => ApplicationSummaryList, 0], 1
|
|
1839
|
+
];
|
|
1840
|
+
var ListArtifactsInput$ = [3, n0, _LAI,
|
|
1841
|
+
0,
|
|
1842
|
+
[_aSI, _nT, _mR],
|
|
1843
|
+
[0, 0, 1], 1
|
|
1844
|
+
];
|
|
1845
|
+
var ListArtifactsOutput$ = [3, n0, _LAO,
|
|
1846
|
+
0,
|
|
1847
|
+
[_aSr, _nT],
|
|
1848
|
+
[() => ArtifactSummaryList, 0], 1
|
|
1849
|
+
];
|
|
1850
|
+
var ListCodeReviewJobsForCodeReviewInput$ = [3, n0, _LCRJFCRI,
|
|
1851
|
+
0,
|
|
1852
|
+
[_cRIo, _aSI, _mR, _nT],
|
|
1853
|
+
[0, 0, 1, 0], 2
|
|
1854
|
+
];
|
|
1855
|
+
var ListCodeReviewJobsForCodeReviewOutput$ = [3, n0, _LCRJFCRO,
|
|
1856
|
+
0,
|
|
1857
|
+
[_cRJS, _nT],
|
|
1858
|
+
[() => CodeReviewJobSummaryList, 0]
|
|
1859
|
+
];
|
|
1860
|
+
var ListCodeReviewJobTasksInput$ = [3, n0, _LCRJTI,
|
|
1861
|
+
0,
|
|
1862
|
+
[_aSI, _mR, _cRJIo, _sN, _cNa, _nT],
|
|
1863
|
+
[0, 1, 0, 0, 0, 0], 1
|
|
1864
|
+
];
|
|
1865
|
+
var ListCodeReviewJobTasksOutput$ = [3, n0, _LCRJTO,
|
|
1866
|
+
0,
|
|
1867
|
+
[_cRJTS, _nT],
|
|
1868
|
+
[() => CodeReviewJobTaskSummaryList, 0]
|
|
1869
|
+
];
|
|
1870
|
+
var ListCodeReviewsInput$ = [3, n0, _LCRI,
|
|
1871
|
+
0,
|
|
1872
|
+
[_aSI, _mR, _nT],
|
|
1873
|
+
[0, 1, 0], 1
|
|
1874
|
+
];
|
|
1875
|
+
var ListCodeReviewsOutput$ = [3, n0, _LCRO,
|
|
1876
|
+
0,
|
|
1877
|
+
[_cRSod, _nT],
|
|
1878
|
+
[() => CodeReviewSummaryList, 0]
|
|
1879
|
+
];
|
|
1880
|
+
var ListDiscoveredEndpointsInput$ = [3, n0, _LDEI,
|
|
1881
|
+
0,
|
|
1882
|
+
[_pJIe, _aSI, _mR, _pref, _nT],
|
|
1883
|
+
[0, 0, 1, 0, 0], 2
|
|
1884
|
+
];
|
|
1885
|
+
var ListDiscoveredEndpointsOutput$ = [3, n0, _LDEO,
|
|
1886
|
+
0,
|
|
1887
|
+
[_dE, _nT],
|
|
1888
|
+
[() => DiscoveredEndpointList, 0]
|
|
1889
|
+
];
|
|
1890
|
+
var ListFindingsInput$ = [3, n0, _LFI,
|
|
1891
|
+
0,
|
|
1892
|
+
[_aSI, _mR, _pJIe, _cRJIo, _nT, _rT, _rL, _sta, _conf, _n],
|
|
1893
|
+
[0, 1, 0, 0, 0, 0, 0, 0, 0, 0], 1
|
|
1894
|
+
];
|
|
1895
|
+
var ListFindingsOutput$ = [3, n0, _LFO,
|
|
1896
|
+
0,
|
|
1897
|
+
[_fS, _nT],
|
|
1898
|
+
[() => FindingSummaryList, 0]
|
|
1899
|
+
];
|
|
1900
|
+
var ListIntegratedResourcesInput$ = [3, n0, _LIRI,
|
|
1901
|
+
0,
|
|
1902
|
+
[_aSI, _iIn, _rTes, _nT, _mR],
|
|
1903
|
+
[0, 0, 0, 0, 1], 1
|
|
1904
|
+
];
|
|
1905
|
+
var ListIntegratedResourcesOutput$ = [3, n0, _LIRO,
|
|
1906
|
+
0,
|
|
1907
|
+
[_iRS, _nT],
|
|
1908
|
+
[() => IntegratedResourceSummaryList, 0], 1
|
|
1909
|
+
];
|
|
1910
|
+
var ListIntegrationsInput$ = [3, n0, _LII,
|
|
1911
|
+
0,
|
|
1912
|
+
[_fil, _nT, _mR],
|
|
1913
|
+
[() => IntegrationFilter$, 0, 1]
|
|
1914
|
+
];
|
|
1915
|
+
var ListIntegrationsOutput$ = [3, n0, _LIO,
|
|
1916
|
+
0,
|
|
1917
|
+
[_iSn, _nT],
|
|
1918
|
+
[() => IntegrationSummaryList, 0], 1
|
|
1919
|
+
];
|
|
1920
|
+
var ListMembershipsRequest$ = [3, n0, _LMR,
|
|
1921
|
+
0,
|
|
1922
|
+
[_aIp, _aSI, _mT, _mR, _nT],
|
|
1923
|
+
[0, 0, 0, 1, 0], 2
|
|
1924
|
+
];
|
|
1925
|
+
var ListMembershipsResponse$ = [3, n0, _LMRi,
|
|
1926
|
+
0,
|
|
1927
|
+
[_mS, _nT],
|
|
1928
|
+
[() => MembershipSummaryList, 0], 1
|
|
1929
|
+
];
|
|
1930
|
+
var ListPentestJobsForPentestInput$ = [3, n0, _LPJFPI,
|
|
1931
|
+
0,
|
|
1932
|
+
[_pIen, _aSI, _mR, _nT],
|
|
1933
|
+
[0, 0, 1, 0], 2
|
|
1934
|
+
];
|
|
1935
|
+
var ListPentestJobsForPentestOutput$ = [3, n0, _LPJFPO,
|
|
1936
|
+
0,
|
|
1937
|
+
[_pJS, _nT],
|
|
1938
|
+
[() => PentestJobSummaryList, 0]
|
|
1939
|
+
];
|
|
1940
|
+
var ListPentestJobTasksInput$ = [3, n0, _LPJTI,
|
|
1941
|
+
0,
|
|
1942
|
+
[_aSI, _mR, _pJIe, _sN, _cNa, _nT],
|
|
1943
|
+
[0, 1, 0, 0, 0, 0], 1
|
|
1944
|
+
];
|
|
1945
|
+
var ListPentestJobTasksOutput$ = [3, n0, _LPJTO,
|
|
1946
|
+
0,
|
|
1947
|
+
[_tSa, _nT],
|
|
1948
|
+
[() => TaskSummaryList, 0]
|
|
1949
|
+
];
|
|
1950
|
+
var ListPentestsInput$ = [3, n0, _LPI,
|
|
1951
|
+
0,
|
|
1952
|
+
[_aSI, _mR, _nT],
|
|
1953
|
+
[0, 1, 0], 1
|
|
1954
|
+
];
|
|
1955
|
+
var ListPentestsOutput$ = [3, n0, _LPO,
|
|
1956
|
+
0,
|
|
1957
|
+
[_pS, _nT],
|
|
1958
|
+
[() => PentestSummaryList, 0]
|
|
1959
|
+
];
|
|
1960
|
+
var ListPrivateConnectionsInput$ = [3, n0, _LPCI,
|
|
1961
|
+
0,
|
|
1962
|
+
[_mR, _nT],
|
|
1963
|
+
[1, 0]
|
|
1964
|
+
];
|
|
1965
|
+
var ListPrivateConnectionsOutput$ = [3, n0, _LPCO,
|
|
1966
|
+
0,
|
|
1967
|
+
[_pC, _nT],
|
|
1968
|
+
[() => PrivateConnectionList, 0], 1
|
|
1969
|
+
];
|
|
1970
|
+
var ListSecurityRequirementPackFilter$ = [3, n0, _LSRPF,
|
|
1971
|
+
0,
|
|
1972
|
+
[_mTa, _sta],
|
|
1973
|
+
[0, 0]
|
|
1974
|
+
];
|
|
1975
|
+
var ListSecurityRequirementPacksInput$ = [3, n0, _LSRPI,
|
|
1976
|
+
0,
|
|
1977
|
+
[_fil, _nT, _mR],
|
|
1978
|
+
[() => ListSecurityRequirementPackFilter$, 0, 1]
|
|
1979
|
+
];
|
|
1980
|
+
var ListSecurityRequirementPacksOutput$ = [3, n0, _LSRPO,
|
|
1981
|
+
0,
|
|
1982
|
+
[_sRPS, _nT],
|
|
1983
|
+
[() => SecurityRequirementPackSummaryList, 0], 1
|
|
1984
|
+
];
|
|
1985
|
+
var ListSecurityRequirementsInput$ = [3, n0, _LSRI,
|
|
1986
|
+
0,
|
|
1987
|
+
[_pI, _nT, _mR],
|
|
1988
|
+
[0, 0, 1], 1
|
|
1989
|
+
];
|
|
1990
|
+
var ListSecurityRequirementsOutput$ = [3, n0, _LSRO,
|
|
1991
|
+
0,
|
|
1992
|
+
[_sRS, _nT],
|
|
1993
|
+
[() => SecurityRequirementSummaryList, 0], 1
|
|
1994
|
+
];
|
|
1995
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1996
|
+
0,
|
|
1997
|
+
[_rAe],
|
|
1998
|
+
[[0, 1]], 1
|
|
1999
|
+
];
|
|
2000
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
2001
|
+
0,
|
|
2002
|
+
[_tag],
|
|
2003
|
+
[128 | 0]
|
|
2004
|
+
];
|
|
2005
|
+
var ListTargetDomainsInput$ = [3, n0, _LTDI,
|
|
2006
|
+
0,
|
|
2007
|
+
[_nT, _mR],
|
|
2008
|
+
[0, 1]
|
|
2009
|
+
];
|
|
2010
|
+
var ListTargetDomainsOutput$ = [3, n0, _LTDO,
|
|
2011
|
+
0,
|
|
2012
|
+
[_tDS, _nT],
|
|
2013
|
+
[() => TargetDomainSummaryList, 0]
|
|
2014
|
+
];
|
|
2015
|
+
var ListThreatModelJobsInput$ = [3, n0, _LTMJI,
|
|
2016
|
+
0,
|
|
2017
|
+
[_tMIh, _aSI, _mR, _nT],
|
|
2018
|
+
[0, 0, 1, 0], 2
|
|
2019
|
+
];
|
|
2020
|
+
var ListThreatModelJobsOutput$ = [3, n0, _LTMJO,
|
|
2021
|
+
0,
|
|
2022
|
+
[_tMJS, _nT],
|
|
2023
|
+
[() => ThreatModelJobSummaryList, 0]
|
|
2024
|
+
];
|
|
2025
|
+
var ListThreatModelJobTasksInput$ = [3, n0, _LTMJTI,
|
|
2026
|
+
0,
|
|
2027
|
+
[_aSI, _tMJIh, _mR, _nT],
|
|
2028
|
+
[0, 0, 1, 0], 2
|
|
2029
|
+
];
|
|
2030
|
+
var ListThreatModelJobTasksOutput$ = [3, n0, _LTMJTO,
|
|
2031
|
+
0,
|
|
2032
|
+
[_tMJTS, _nT],
|
|
2033
|
+
[() => ThreatModelJobTaskSummaryList, 0]
|
|
2034
|
+
];
|
|
2035
|
+
var ListThreatModelsInput$ = [3, n0, _LTMI,
|
|
2036
|
+
0,
|
|
2037
|
+
[_aSI, _mR, _nT],
|
|
2038
|
+
[0, 1, 0], 1
|
|
2039
|
+
];
|
|
2040
|
+
var ListThreatModelsOutput$ = [3, n0, _LTMO,
|
|
2041
|
+
0,
|
|
2042
|
+
[_tMS, _nT],
|
|
2043
|
+
[() => ThreatModelSummaryList, 0]
|
|
2044
|
+
];
|
|
2045
|
+
var ListThreatsInput$ = [3, n0, _LTI,
|
|
2046
|
+
0,
|
|
2047
|
+
[_tJI, _aSI, _nT, _mR],
|
|
2048
|
+
[0, 0, 0, 1], 2
|
|
2049
|
+
];
|
|
2050
|
+
var ListThreatsOutput$ = [3, n0, _LTO,
|
|
2051
|
+
0,
|
|
2052
|
+
[_th, _nT],
|
|
2053
|
+
[() => ThreatSummaryList, 0]
|
|
2054
|
+
];
|
|
2055
|
+
var LogLocation$ = [3, n0, _LL,
|
|
2056
|
+
0,
|
|
2057
|
+
[_lT, _cWL],
|
|
2058
|
+
[0, () => CloudWatchLog$]
|
|
2059
|
+
];
|
|
2060
|
+
var MembershipSummary$ = [3, n0, _MS,
|
|
2061
|
+
0,
|
|
2062
|
+
[_mI, _aIp, _aSI, _mT, _cA, _uA, _cB, _uB, _con, _me],
|
|
2063
|
+
[0, 0, 0, 0, 5, 5, 0, 0, () => MembershipConfig$, () => MemberMetadata$], 8
|
|
2064
|
+
];
|
|
2065
|
+
var NetworkTrafficConfig$ = [3, n0, _NTC,
|
|
2066
|
+
0,
|
|
2067
|
+
[_ru, _cH],
|
|
2068
|
+
[() => NetworkTrafficRuleList, () => CustomHeaderList]
|
|
2069
|
+
];
|
|
2070
|
+
var NetworkTrafficRule$ = [3, n0, _NTR,
|
|
2071
|
+
0,
|
|
2072
|
+
[_ef, _pa, _nTRT],
|
|
2073
|
+
[0, 0, 0]
|
|
2074
|
+
];
|
|
2075
|
+
var Pentest$ = [3, n0, _P,
|
|
2076
|
+
0,
|
|
2077
|
+
[_pIen, _aSI, _ti, _as, _eRT, _sRe, _lCo, _vC, _nTC, _cRSo, _cUS, _dMS, _cA, _uA],
|
|
2078
|
+
[0, 0, 0, () => Assets$, 64 | 0, 0, () => CloudWatchLog$, () => VpcConfig$, () => NetworkTrafficConfig$, 0, 0, 64 | 0, 5, 5], 4
|
|
2079
|
+
];
|
|
2080
|
+
var PentestJob$ = [3, n0, _PJ,
|
|
2081
|
+
0,
|
|
2082
|
+
[_pJIe, _pIen, _ti, _o, _sta, _en, _ac, _doc, _sCo, _eP, _aD, _eRT, _ste, _eC, _sRe, _lCo, _vC, _nTC, _eI, _iR, _cRSo, _cUS, _dMS, _cA, _uA],
|
|
2083
|
+
[0, 0, 0, 0, 0, () => EndpointList, () => ActorList, () => DocumentList, () => SourceCodeRepositoryList, () => EndpointList, () => EndpointList, 64 | 0, () => StepList, () => ExecutionContextList, 0, () => CloudWatchLog$, () => VpcConfig$, () => NetworkTrafficConfig$, () => ErrorInformation$, () => IntegratedRepositoryList, 0, 0, 64 | 0, 5, 5]
|
|
2084
|
+
];
|
|
2085
|
+
var PentestJobSummary$ = [3, n0, _PJS,
|
|
2086
|
+
0,
|
|
2087
|
+
[_pJIe, _pIen, _ti, _sta, _cA, _uA],
|
|
2088
|
+
[0, 0, 0, 0, 5, 5], 2
|
|
2089
|
+
];
|
|
2090
|
+
var PentestSummary$ = [3, n0, _PS,
|
|
2091
|
+
0,
|
|
2092
|
+
[_pIen, _aSI, _ti, _cA, _uA],
|
|
2093
|
+
[0, 0, 0, 5, 5], 3
|
|
2094
|
+
];
|
|
2095
|
+
var PrivateConnectionSummary$ = [3, n0, _PCS,
|
|
2096
|
+
0,
|
|
2097
|
+
[_n, _t, _sta, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _tag],
|
|
2098
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
2099
|
+
];
|
|
2100
|
+
var ReportDestination$ = [3, n0, _RD,
|
|
2101
|
+
0,
|
|
2102
|
+
[_iIn, _cI, _pIar, _dI],
|
|
2103
|
+
[0, 0, 0, 0], 2
|
|
2104
|
+
];
|
|
2105
|
+
var SecurityRequirementArtifact$ = [3, n0, _SRA,
|
|
2106
|
+
0,
|
|
2107
|
+
[_n, _fo, _conte],
|
|
2108
|
+
[0, 0, [() => SecurityRequirementDocumentContent, 0]], 3
|
|
2109
|
+
];
|
|
2110
|
+
var SecurityRequirementPackSummary$ = [3, n0, _SRPS,
|
|
2111
|
+
0,
|
|
2112
|
+
[_pI, _n, _mTa, _sta, _cA, _uA, _d, _vN],
|
|
2113
|
+
[0, 0, 0, 0, 5, 5, 0, 0], 6
|
|
2114
|
+
];
|
|
2115
|
+
var SecurityRequirementSummary$ = [3, n0, _SRS,
|
|
2116
|
+
0,
|
|
2117
|
+
[_pI, _n, _d, _cA, _uA],
|
|
2118
|
+
[0, 0, 0, 5, 5], 5
|
|
2119
|
+
];
|
|
2120
|
+
var SelfManagedInput$ = [3, n0, _SMI,
|
|
2121
|
+
0,
|
|
2122
|
+
[_rCI, _ce],
|
|
2123
|
+
[0, [() => CertificateChain, 0]], 1
|
|
2124
|
+
];
|
|
2125
|
+
var ServiceManagedInput$ = [3, n0, _SMIe,
|
|
2126
|
+
0,
|
|
2127
|
+
[_hA, _vI, _sI, _sGI, _iAT, _iAPE, _pR, _ce, _dR],
|
|
2128
|
+
[0, 0, 64 | 0, 64 | 0, 0, 1, 64 | 0, [() => CertificateChain, 0], 0], 3
|
|
2129
|
+
];
|
|
2130
|
+
var SourceCodeRepository$ = [3, n0, _SCR,
|
|
2131
|
+
0,
|
|
2132
|
+
[_sL],
|
|
2133
|
+
[0]
|
|
2134
|
+
];
|
|
2135
|
+
var StartCodeRemediationInput$ = [3, n0, _SCRI,
|
|
2136
|
+
0,
|
|
2137
|
+
[_aSI, _fI, _pJIe, _cRJIo],
|
|
2138
|
+
[0, 64 | 0, 0, 0], 2
|
|
2139
|
+
];
|
|
2140
|
+
var StartCodeRemediationOutput$ = [3, n0, _SCRO,
|
|
2141
|
+
0,
|
|
2142
|
+
[],
|
|
2143
|
+
[]
|
|
2144
|
+
];
|
|
2145
|
+
var StartCodeReviewJobInput$ = [3, n0, _SCRJI,
|
|
2146
|
+
0,
|
|
2147
|
+
[_aSI, _cRIo, _dS],
|
|
2148
|
+
[0, 0, () => DiffSource$], 2
|
|
2149
|
+
];
|
|
2150
|
+
var StartCodeReviewJobOutput$ = [3, n0, _SCRJO,
|
|
2151
|
+
0,
|
|
2152
|
+
[_cRIo, _cRJIo, _ti, _sta, _cA, _uA, _aSI],
|
|
2153
|
+
[0, 0, 0, 0, 5, 5, 0], 2
|
|
2154
|
+
];
|
|
2155
|
+
var StartPentestJobInput$ = [3, n0, _SPJI,
|
|
2156
|
+
0,
|
|
2157
|
+
[_aSI, _pIen],
|
|
2158
|
+
[0, 0], 2
|
|
2159
|
+
];
|
|
2160
|
+
var StartPentestJobOutput$ = [3, n0, _SPJO,
|
|
2161
|
+
0,
|
|
2162
|
+
[_ti, _sta, _cA, _uA, _pIen, _pJIe, _aSI],
|
|
2163
|
+
[0, 0, 5, 5, 0, 0, 0]
|
|
2164
|
+
];
|
|
2165
|
+
var StartThreatModelJobInput$ = [3, n0, _STMJI,
|
|
2166
|
+
0,
|
|
2167
|
+
[_aSI, _tMIh],
|
|
2168
|
+
[0, 0], 2
|
|
2169
|
+
];
|
|
2170
|
+
var StartThreatModelJobOutput$ = [3, n0, _STMJO,
|
|
2171
|
+
0,
|
|
2172
|
+
[_tMJIh, _ti, _sta, _cA, _uA, _tMIh, _aSI],
|
|
2173
|
+
[0, 0, 0, 5, 5, 0, 0], 1
|
|
2174
|
+
];
|
|
2175
|
+
var Step$ = [3, n0, _S,
|
|
2176
|
+
0,
|
|
2177
|
+
[_n, _sta, _cA, _uA],
|
|
2178
|
+
[0, 0, 5, 5]
|
|
2179
|
+
];
|
|
2180
|
+
var StopCodeReviewJobInput$ = [3, n0, _SCRJIt,
|
|
2181
|
+
0,
|
|
2182
|
+
[_aSI, _cRJIo],
|
|
2183
|
+
[0, 0], 2
|
|
2184
|
+
];
|
|
2185
|
+
var StopCodeReviewJobOutput$ = [3, n0, _SCRJOt,
|
|
2186
|
+
0,
|
|
2187
|
+
[],
|
|
2188
|
+
[]
|
|
2189
|
+
];
|
|
2190
|
+
var StopPentestJobInput$ = [3, n0, _SPJIt,
|
|
2191
|
+
0,
|
|
2192
|
+
[_aSI, _pJIe],
|
|
2193
|
+
[0, 0], 2
|
|
2194
|
+
];
|
|
2195
|
+
var StopPentestJobOutput$ = [3, n0, _SPJOt,
|
|
2196
|
+
0,
|
|
2197
|
+
[],
|
|
2198
|
+
[]
|
|
2199
|
+
];
|
|
2200
|
+
var StopThreatModelJobInput$ = [3, n0, _STMJIt,
|
|
2201
|
+
0,
|
|
2202
|
+
[_aSI, _tMJIh],
|
|
2203
|
+
[0, 0], 2
|
|
2204
|
+
];
|
|
2205
|
+
var StopThreatModelJobOutput$ = [3, n0, _STMJOt,
|
|
2206
|
+
0,
|
|
2207
|
+
[],
|
|
2208
|
+
[]
|
|
2209
|
+
];
|
|
2210
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
2211
|
+
0,
|
|
2212
|
+
[_rAe, _tag],
|
|
2213
|
+
[[0, 1], 128 | 0], 2
|
|
2214
|
+
];
|
|
2215
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
2216
|
+
0,
|
|
2217
|
+
[],
|
|
2218
|
+
[]
|
|
2219
|
+
];
|
|
2220
|
+
var TargetDomain$ = [3, n0, _TD,
|
|
2221
|
+
0,
|
|
2222
|
+
[_tDIa, _dN, _vS, _vSR, _vD, _cA, _vA],
|
|
2223
|
+
[0, 0, 0, 0, () => VerificationDetails$, 5, 5], 2
|
|
2224
|
+
];
|
|
2225
|
+
var TargetDomainSummary$ = [3, n0, _TDS,
|
|
2226
|
+
0,
|
|
2227
|
+
[_tDIa, _dN, _vS],
|
|
2228
|
+
[0, 0, 0], 2
|
|
2229
|
+
];
|
|
2230
|
+
var Task$ = [3, n0, _T,
|
|
2231
|
+
0,
|
|
2232
|
+
[_tIa, _pIen, _pJIe, _aSI, _ti, _d, _ca, _rT, _tE, _eS, _lL, _cA, _uA],
|
|
2233
|
+
[0, 0, 0, 0, 0, 0, () => CategoryList, 0, () => Endpoint$, 0, () => LogLocation$, 5, 5], 1
|
|
2234
|
+
];
|
|
2235
|
+
var TaskSummary$ = [3, n0, _TS,
|
|
2236
|
+
0,
|
|
2237
|
+
[_tIa, _pIen, _pJIe, _aSI, _ti, _rT, _eS, _cA, _uA],
|
|
2238
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 5], 1
|
|
2239
|
+
];
|
|
2240
|
+
var Threat$ = [3, n0, _Th,
|
|
2241
|
+
0,
|
|
2242
|
+
[_tIhre, _tJI, _ti, _stat, _sev, _sta, _com, _tS, _pre, _tA, _tIhr, _iG, _iA, _an, _evi, _str, _re, _cB, _uB, _cA, _uA],
|
|
2243
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => ThreatAnchorShape$, () => ThreatEvidenceList, 64 | 0, 0, 0, 0, 5, 5]
|
|
2244
|
+
];
|
|
2245
|
+
var ThreatAnchorShape$ = [3, n0, _TAS,
|
|
2246
|
+
0,
|
|
2247
|
+
[_k, _id, _pIac],
|
|
2248
|
+
[0, 0, 0]
|
|
2249
|
+
];
|
|
2250
|
+
var ThreatEvidenceShape$ = [3, n0, _TES,
|
|
2251
|
+
0,
|
|
2252
|
+
[_pIac, _pat],
|
|
2253
|
+
[0, 0]
|
|
2254
|
+
];
|
|
2255
|
+
var ThreatModel$ = [3, n0, _TM,
|
|
2256
|
+
0,
|
|
2257
|
+
[_tMIh, _aSI, _ti, _as, _d, _sD, _sRe, _lCo, _cA, _uA],
|
|
2258
|
+
[0, 0, 0, () => Assets$, 0, () => DocumentList, 0, () => CloudWatchLog$, 5, 5], 4
|
|
2259
|
+
];
|
|
2260
|
+
var ThreatModelJob$ = [3, n0, _TMJ,
|
|
2261
|
+
0,
|
|
2262
|
+
[_tMJIh, _tMIh, _aSI, _ti, _sta, _cA, _uA, _eST, _eET, _sCo, _iR, _doc, _sD, _eI, _sO],
|
|
2263
|
+
[0, 0, 0, 0, 0, 5, 5, 5, 5, () => SourceCodeRepositoryList, () => IntegratedRepositoryList, () => DocumentList, () => DocumentList, () => ErrorInformation$, 0]
|
|
2264
|
+
];
|
|
2265
|
+
var ThreatModelJobSummary$ = [3, n0, _TMJS,
|
|
2266
|
+
0,
|
|
2267
|
+
[_tMJIh, _tMIh, _aSI, _ti, _sta, _cA, _uA],
|
|
2268
|
+
[0, 0, 0, 0, 0, 5, 5], 2
|
|
2269
|
+
];
|
|
2270
|
+
var ThreatModelJobTask$ = [3, n0, _TMJT,
|
|
2271
|
+
0,
|
|
2272
|
+
[_tIa, _tMIh, _tMJIh, _aSI, _ti, _d, _eS, _lL, _cA, _uA],
|
|
2273
|
+
[0, 0, 0, 0, 0, 0, 0, () => LogLocation$, 5, 5], 1
|
|
2274
|
+
];
|
|
2275
|
+
var ThreatModelJobTaskSummary$ = [3, n0, _TMJTS,
|
|
2276
|
+
0,
|
|
2277
|
+
[_tIa, _tMIh, _tMJIh, _aSI, _ti, _eS, _cA, _uA],
|
|
2278
|
+
[0, 0, 0, 0, 0, 0, 5, 5], 1
|
|
2279
|
+
];
|
|
2280
|
+
var ThreatModelSummary$ = [3, n0, _TMS,
|
|
2281
|
+
0,
|
|
2282
|
+
[_tMIh, _aSI, _ti, _cA, _uA],
|
|
2283
|
+
[0, 0, 0, 5, 5], 3
|
|
2284
|
+
];
|
|
2285
|
+
var ThreatSummary$ = [3, n0, _TSh,
|
|
2286
|
+
0,
|
|
2287
|
+
[_tIhre, _tJI, _ti, _stat, _sev, _sta, _str, _cB, _uB, _cA, _uA],
|
|
2288
|
+
[0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 5, 5]
|
|
2289
|
+
];
|
|
2290
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
2291
|
+
0,
|
|
2292
|
+
[_rAe, _tK],
|
|
2293
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
2294
|
+
];
|
|
2295
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
2296
|
+
0,
|
|
2297
|
+
[],
|
|
2298
|
+
[]
|
|
2299
|
+
];
|
|
2300
|
+
var UpdateAgentSpaceInput$ = [3, n0, _UASI,
|
|
2301
|
+
0,
|
|
2302
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS],
|
|
2303
|
+
[0, 0, 0, () => AWSResources$, 64 | 0, () => CodeReviewSettings$], 1
|
|
2304
|
+
];
|
|
2305
|
+
var UpdateAgentSpaceOutput$ = [3, n0, _UASO,
|
|
2306
|
+
0,
|
|
2307
|
+
[_aSI, _n, _d, _aR, _tDI, _cRS, _cA, _uA],
|
|
2308
|
+
[0, 0, 0, () => AWSResources$, 64 | 0, () => CodeReviewSettings$, 5, 5], 2
|
|
2309
|
+
];
|
|
2310
|
+
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
2311
|
+
0,
|
|
2312
|
+
[_aIp, _rA, _dKKI],
|
|
2313
|
+
[0, 0, 0], 1
|
|
2314
|
+
];
|
|
2315
|
+
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
2316
|
+
0,
|
|
2317
|
+
[_aIp],
|
|
2318
|
+
[0], 1
|
|
2319
|
+
];
|
|
2320
|
+
var UpdateCodeReviewInput$ = [3, n0, _UCRI,
|
|
2321
|
+
0,
|
|
2322
|
+
[_cRIo, _aSI, _ti, _as, _sRe, _lCo, _cRSo, _vM],
|
|
2323
|
+
[0, 0, 0, () => Assets$, 0, () => CloudWatchLog$, 0, 0], 2
|
|
2324
|
+
];
|
|
2325
|
+
var UpdateCodeReviewOutput$ = [3, n0, _UCRO,
|
|
2326
|
+
0,
|
|
2327
|
+
[_cRIo, _ti, _cA, _uA, _as, _sRe, _lCo, _aSI, _cRSo, _vM],
|
|
2328
|
+
[0, 0, 5, 5, () => Assets$, 0, () => CloudWatchLog$, 0, 0, 0], 1
|
|
2329
|
+
];
|
|
2330
|
+
var UpdateFindingInput$ = [3, n0, _UFI,
|
|
2331
|
+
0,
|
|
2332
|
+
[_fIi, _aSI, _n, _d, _rT, _rL, _rS, _aSt, _reas, _sta, _cN],
|
|
2333
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], 2
|
|
2334
|
+
];
|
|
2335
|
+
var UpdateFindingOutput$ = [3, n0, _UFO,
|
|
2336
|
+
0,
|
|
2337
|
+
[],
|
|
2338
|
+
[]
|
|
2339
|
+
];
|
|
2340
|
+
var UpdateIntegratedResourcesInput$ = [3, n0, _UIRI,
|
|
2341
|
+
0,
|
|
2342
|
+
[_aSI, _iIn, _it],
|
|
2343
|
+
[0, 0, () => IntegratedResourceInputItemList], 3
|
|
2344
|
+
];
|
|
2345
|
+
var UpdateIntegratedResourcesOutput$ = [3, n0, _UIRO,
|
|
2346
|
+
0,
|
|
2347
|
+
[],
|
|
2348
|
+
[]
|
|
2349
|
+
];
|
|
2350
|
+
var UpdatePentestInput$ = [3, n0, _UPI,
|
|
2351
|
+
0,
|
|
2352
|
+
[_pIen, _aSI, _ti, _as, _eRT, _sRe, _lCo, _vC, _nTC, _cRSo, _dMS],
|
|
2353
|
+
[0, 0, 0, () => Assets$, 64 | 0, 0, () => CloudWatchLog$, () => VpcConfig$, () => NetworkTrafficConfig$, 0, 64 | 0], 2
|
|
2354
|
+
];
|
|
2355
|
+
var UpdatePentestOutput$ = [3, n0, _UPO,
|
|
2356
|
+
0,
|
|
2357
|
+
[_pIen, _ti, _cA, _uA, _as, _eRT, _sRe, _lCo, _aSI],
|
|
2358
|
+
[0, 0, 5, 5, () => Assets$, 64 | 0, 0, () => CloudWatchLog$, 0]
|
|
2359
|
+
];
|
|
2360
|
+
var UpdatePrivateConnectionCertificateInput$ = [3, n0, _UPCCI,
|
|
2361
|
+
0,
|
|
2362
|
+
[_pCN, _ce],
|
|
2363
|
+
[0, [() => CertificateChain, 0]], 2
|
|
2364
|
+
];
|
|
2365
|
+
var UpdatePrivateConnectionCertificateOutput$ = [3, n0, _UPCCO,
|
|
2366
|
+
0,
|
|
2367
|
+
[_n, _t, _sta, _rGI, _hA, _vI, _rCI, _cET, _dR, _fM, _tag],
|
|
2368
|
+
[0, 0, 0, 0, 0, 0, 0, 5, 0, 0, 128 | 0], 3
|
|
2369
|
+
];
|
|
2370
|
+
var UpdateSecurityRequirementEntry$ = [3, n0, _USRE,
|
|
2371
|
+
0,
|
|
2372
|
+
[_n, _d, _do, _ev, _r],
|
|
2373
|
+
[0, 0, 0, 0, 0], 1
|
|
2374
|
+
];
|
|
2375
|
+
var UpdateSecurityRequirementPackInput$ = [3, n0, _USRPI,
|
|
2376
|
+
0,
|
|
2377
|
+
[_pI, _n, _d, _sta],
|
|
2378
|
+
[0, 0, 0, 0], 1
|
|
2379
|
+
];
|
|
2380
|
+
var UpdateSecurityRequirementPackOutput$ = [3, n0, _USRPO,
|
|
2381
|
+
0,
|
|
2382
|
+
[_pI, _n, _d, _sta],
|
|
2383
|
+
[0, 0, 0, 0], 1
|
|
2384
|
+
];
|
|
2385
|
+
var UpdateTargetDomainInput$ = [3, n0, _UTDI,
|
|
2386
|
+
0,
|
|
2387
|
+
[_tDIa, _vMe],
|
|
2388
|
+
[0, 0], 2
|
|
2389
|
+
];
|
|
2390
|
+
var UpdateTargetDomainOutput$ = [3, n0, _UTDO,
|
|
2391
|
+
0,
|
|
2392
|
+
[_tDIa, _dN, _vS, _vSR, _vD, _cA, _vA],
|
|
2393
|
+
[0, 0, 0, 0, () => VerificationDetails$, 5, 5], 3
|
|
2394
|
+
];
|
|
2395
|
+
var UpdateThreatInput$ = [3, n0, _UTI,
|
|
2396
|
+
0,
|
|
2397
|
+
[_tIhre, _aSI, _ti, _sta, _com, _stat, _sev, _tS, _pre, _tA, _tIhr, _iG, _iA, _an, _evi, _re],
|
|
2398
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => ThreatAnchorShape$, () => ThreatEvidenceList, 0], 2
|
|
2399
|
+
];
|
|
2400
|
+
var UpdateThreatModelInput$ = [3, n0, _UTMI,
|
|
2401
|
+
0,
|
|
2402
|
+
[_tMIh, _aSI, _ti, _d, _as, _sD, _sRe, _lCo],
|
|
2403
|
+
[0, 0, 0, 0, () => Assets$, () => DocumentList, 0, () => CloudWatchLog$], 2
|
|
2404
|
+
];
|
|
2405
|
+
var UpdateThreatModelOutput$ = [3, n0, _UTMO,
|
|
2406
|
+
0,
|
|
2407
|
+
[_tMIh, _ti, _aSI, _d, _as, _sD, _sRe, _lCo, _cA, _uA],
|
|
2408
|
+
[0, 0, 0, 0, () => Assets$, () => DocumentList, 0, () => CloudWatchLog$, 5, 5], 1
|
|
2409
|
+
];
|
|
2410
|
+
var UpdateThreatOutput$ = [3, n0, _UTO,
|
|
2411
|
+
0,
|
|
2412
|
+
[_tIhre, _tJI, _ti, _stat, _sev, _sta, _com, _str, _tS, _pre, _tA, _tIhr, _iG, _iA, _an, _evi, _re, _cB, _uB, _cA, _uA],
|
|
2413
|
+
[0, 0, 0, 0, 0, 0, 0, 64 | 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => ThreatAnchorShape$, () => ThreatEvidenceList, 0, 0, 0, 5, 5], 2
|
|
2414
|
+
];
|
|
2415
|
+
var UserConfig$ = [3, n0, _UC,
|
|
2416
|
+
0,
|
|
2417
|
+
[_ro],
|
|
2418
|
+
[0]
|
|
2419
|
+
];
|
|
2420
|
+
var UserMetadata$ = [3, n0, _UM,
|
|
2421
|
+
0,
|
|
2422
|
+
[_us, _em],
|
|
2423
|
+
[0, 0], 2
|
|
2424
|
+
];
|
|
2425
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
2426
|
+
0,
|
|
2427
|
+
[_pat, _m],
|
|
2428
|
+
[0, 0], 2
|
|
2429
|
+
];
|
|
2430
|
+
var VerificationDetails$ = [3, n0, _VD,
|
|
2431
|
+
0,
|
|
2432
|
+
[_met, _dT, _hR],
|
|
2433
|
+
[0, () => DnsVerification$, () => HttpVerification$]
|
|
2434
|
+
];
|
|
2435
|
+
var VerificationScript$ = [3, n0, _VS,
|
|
2436
|
+
0,
|
|
2437
|
+
[_sTc, _sUc, _ins, _eV],
|
|
2438
|
+
[0, 0, 0, () => VerificationScriptEnvVarList]
|
|
2439
|
+
];
|
|
2440
|
+
var VerificationScriptEnvVar$ = [3, n0, _VSEV,
|
|
2441
|
+
0,
|
|
2442
|
+
[_n, _v],
|
|
2443
|
+
[0, 0]
|
|
2444
|
+
];
|
|
2445
|
+
var VerifyTargetDomainInput$ = [3, n0, _VTDI,
|
|
2446
|
+
0,
|
|
2447
|
+
[_tDIa],
|
|
2448
|
+
[0], 1
|
|
2449
|
+
];
|
|
2450
|
+
var VerifyTargetDomainOutput$ = [3, n0, _VTDO,
|
|
2451
|
+
0,
|
|
2452
|
+
[_tDIa, _dN, _cA, _uA, _vA, _sta, _vSR],
|
|
2453
|
+
[0, 0, 5, 5, 5, 0, 0]
|
|
2454
|
+
];
|
|
2455
|
+
var VpcConfig$ = [3, n0, _VC,
|
|
2456
|
+
0,
|
|
2457
|
+
[_vAp, _sGA, _sAu],
|
|
2458
|
+
[0, 64 | 0, 64 | 0]
|
|
2459
|
+
];
|
|
2460
|
+
var __Unit = "unit";
|
|
2461
|
+
var ActorList = [1, n0, _AL,
|
|
2462
|
+
0, () => Actor$
|
|
2463
|
+
];
|
|
2464
|
+
var AgentSpaceList = [1, n0, _ASL,
|
|
2465
|
+
0, () => AgentSpace$
|
|
2466
|
+
];
|
|
2467
|
+
var AgentSpaceSummaryList = [1, n0, _ASSL,
|
|
2468
|
+
0, () => AgentSpaceSummary$
|
|
2469
|
+
];
|
|
2470
|
+
var ApplicationSummaryList = [1, n0, _ASLp,
|
|
2471
|
+
0, () => ApplicationSummary$
|
|
2472
|
+
];
|
|
2473
|
+
var ArtifactMetadataList = [1, n0, _AML,
|
|
2474
|
+
0, () => ArtifactMetadataItem$
|
|
2475
|
+
];
|
|
2476
|
+
var ArtifactSummaryList = [1, n0, _ASLr,
|
|
2477
|
+
0, () => ArtifactSummary$
|
|
2478
|
+
];
|
|
2479
|
+
var BatchCreateSecurityRequirementResultList = [1, n0, _BCSRRL,
|
|
2480
|
+
0, () => BatchCreateSecurityRequirementResult$
|
|
2481
|
+
];
|
|
2482
|
+
var BatchGetSecurityRequirementResultList = [1, n0, _BGSRRL,
|
|
2483
|
+
0, () => BatchGetSecurityRequirementResult$
|
|
2484
|
+
];
|
|
2485
|
+
var BatchSecurityRequirementErrors = [1, n0, _BSREa,
|
|
2486
|
+
0, () => BatchSecurityRequirementError$
|
|
2487
|
+
];
|
|
2488
|
+
var CategoryList = [1, n0, _CLa,
|
|
2489
|
+
0, () => Category$
|
|
2490
|
+
];
|
|
2491
|
+
var CodeLocationList = [1, n0, _CLL,
|
|
2492
|
+
0, () => CodeLocation$
|
|
2493
|
+
];
|
|
2494
|
+
var CodeRemediationTaskDetailsList = [1, n0, _CRTDL,
|
|
2495
|
+
0, () => CodeRemediationTaskDetails$
|
|
2496
|
+
];
|
|
2497
|
+
var CodeReviewJobList = [1, n0, _CRJL,
|
|
2498
|
+
0, () => CodeReviewJob$
|
|
2499
|
+
];
|
|
2500
|
+
var CodeReviewJobSummaryList = [1, n0, _CRJSL,
|
|
2501
|
+
0, () => CodeReviewJobSummary$
|
|
2502
|
+
];
|
|
2503
|
+
var CodeReviewJobTaskList = [1, n0, _CRJTL,
|
|
2504
|
+
0, () => CodeReviewJobTask$
|
|
2505
|
+
];
|
|
2506
|
+
var CodeReviewJobTaskSummaryList = [1, n0, _CRJTSL,
|
|
2507
|
+
0, () => CodeReviewJobTaskSummary$
|
|
2508
|
+
];
|
|
2509
|
+
var CodeReviewList = [1, n0, _CRL,
|
|
2510
|
+
0, () => CodeReview$
|
|
2511
|
+
];
|
|
2512
|
+
var CodeReviewSummaryList = [1, n0, _CRSL,
|
|
2513
|
+
0, () => CodeReviewSummary$
|
|
2514
|
+
];
|
|
2515
|
+
var CreateSecurityRequirementEntryList = [1, n0, _CSREL,
|
|
2516
|
+
0, () => CreateSecurityRequirementEntry$
|
|
2517
|
+
];
|
|
2518
|
+
var CustomHeaderList = [1, n0, _CHL,
|
|
2519
|
+
0, () => CustomHeader$
|
|
2520
|
+
];
|
|
2521
|
+
var DeleteCodeReviewFailureList = [1, n0, _DCRFL,
|
|
2522
|
+
0, () => DeleteCodeReviewFailure$
|
|
2523
|
+
];
|
|
2524
|
+
var DeletePentestFailureList = [1, n0, _DPFL,
|
|
2525
|
+
0, () => DeletePentestFailure$
|
|
2526
|
+
];
|
|
2527
|
+
var DeleteThreatModelFailureList = [1, n0, _DTMFL,
|
|
2528
|
+
0, () => DeleteThreatModelFailure$
|
|
2529
|
+
];
|
|
2530
|
+
var DiscoveredEndpointList = [1, n0, _DEL,
|
|
2531
|
+
0, () => DiscoveredEndpoint$
|
|
2532
|
+
];
|
|
2533
|
+
var DocumentList = [1, n0, _DL,
|
|
2534
|
+
0, () => DocumentInfo$
|
|
2535
|
+
];
|
|
2536
|
+
var EndpointList = [1, n0, _EL,
|
|
2537
|
+
0, () => Endpoint$
|
|
2538
|
+
];
|
|
2539
|
+
var ExecutionContextList = [1, n0, _ECL,
|
|
2540
|
+
0, () => ExecutionContext$
|
|
2541
|
+
];
|
|
2542
|
+
var FindingList = [1, n0, _FL,
|
|
2543
|
+
0, () => Finding$
|
|
2544
|
+
];
|
|
2545
|
+
var FindingSummaryList = [1, n0, _FSL,
|
|
2546
|
+
0, () => FindingSummary$
|
|
2547
|
+
];
|
|
2548
|
+
var IntegratedRepositoryList = [1, n0, _IRL,
|
|
2549
|
+
0, () => IntegratedRepository$
|
|
2550
|
+
];
|
|
2551
|
+
var IntegratedResourceInputItemList = [1, n0, _IRIIL,
|
|
2552
|
+
0, () => IntegratedResourceInputItem$
|
|
2553
|
+
];
|
|
2554
|
+
var IntegratedResourceSummaryList = [1, n0, _IRSL,
|
|
2555
|
+
0, () => IntegratedResourceSummary$
|
|
2556
|
+
];
|
|
2557
|
+
var IntegrationSummaryList = [1, n0, _ISL,
|
|
2558
|
+
0, () => IntegrationSummary$
|
|
2559
|
+
];
|
|
2560
|
+
var MembershipSummaryList = [1, n0, _MSL,
|
|
2561
|
+
0, () => MembershipSummary$
|
|
2562
|
+
];
|
|
2563
|
+
var NetworkTrafficRuleList = [1, n0, _NTRL,
|
|
2564
|
+
0, () => NetworkTrafficRule$
|
|
2565
|
+
];
|
|
2566
|
+
var PentestJobList = [1, n0, _PJL,
|
|
2567
|
+
0, () => PentestJob$
|
|
2568
|
+
];
|
|
2569
|
+
var PentestJobSummaryList = [1, n0, _PJSL,
|
|
2570
|
+
0, () => PentestJobSummary$
|
|
2571
|
+
];
|
|
2572
|
+
var PentestList = [1, n0, _PL,
|
|
2573
|
+
0, () => Pentest$
|
|
2574
|
+
];
|
|
2575
|
+
var PentestSummaryList = [1, n0, _PSL,
|
|
2576
|
+
0, () => PentestSummary$
|
|
2577
|
+
];
|
|
2578
|
+
var PrivateConnectionList = [1, n0, _PCL,
|
|
2579
|
+
0, () => PrivateConnectionSummary$
|
|
2580
|
+
];
|
|
2581
|
+
var SecurityRequirementArtifactList = [1, n0, _SRAL,
|
|
2582
|
+
0, [() => SecurityRequirementArtifact$,
|
|
2583
|
+
0]
|
|
2584
|
+
];
|
|
2585
|
+
var SecurityRequirementPackSummaryList = [1, n0, _SRPSL,
|
|
2586
|
+
0, () => SecurityRequirementPackSummary$
|
|
2587
|
+
];
|
|
2588
|
+
var SecurityRequirementSummaryList = [1, n0, _SRSL,
|
|
2589
|
+
0, () => SecurityRequirementSummary$
|
|
2590
|
+
];
|
|
2591
|
+
var SourceCodeRepositoryList = [1, n0, _SCRL,
|
|
2592
|
+
0, () => SourceCodeRepository$
|
|
2593
|
+
];
|
|
2594
|
+
var StepList = [1, n0, _SL,
|
|
2595
|
+
0, () => Step$
|
|
2596
|
+
];
|
|
2597
|
+
var TargetDomainList = [1, n0, _TDL,
|
|
2598
|
+
0, () => TargetDomain$
|
|
2599
|
+
];
|
|
2600
|
+
var TargetDomainSummaryList = [1, n0, _TDSL,
|
|
2601
|
+
0, () => TargetDomainSummary$
|
|
2602
|
+
];
|
|
2603
|
+
var TaskList = [1, n0, _TL,
|
|
2604
|
+
0, () => Task$
|
|
2605
|
+
];
|
|
2606
|
+
var TaskSummaryList = [1, n0, _TSL,
|
|
2607
|
+
0, () => TaskSummary$
|
|
2608
|
+
];
|
|
2609
|
+
var ThreatEvidenceList = [1, n0, _TEL,
|
|
2610
|
+
0, () => ThreatEvidenceShape$
|
|
2611
|
+
];
|
|
2612
|
+
var ThreatList = [1, n0, _TLh,
|
|
2613
|
+
0, () => Threat$
|
|
2614
|
+
];
|
|
2615
|
+
var ThreatModelJobList = [1, n0, _TMJL,
|
|
2616
|
+
0, () => ThreatModelJob$
|
|
2617
|
+
];
|
|
2618
|
+
var ThreatModelJobSummaryList = [1, n0, _TMJSL,
|
|
2619
|
+
0, () => ThreatModelJobSummary$
|
|
2620
|
+
];
|
|
2621
|
+
var ThreatModelJobTaskList = [1, n0, _TMJTL,
|
|
2622
|
+
0, () => ThreatModelJobTask$
|
|
2623
|
+
];
|
|
2624
|
+
var ThreatModelJobTaskSummaryList = [1, n0, _TMJTSL,
|
|
2625
|
+
0, () => ThreatModelJobTaskSummary$
|
|
2626
|
+
];
|
|
2627
|
+
var ThreatModelList = [1, n0, _TML,
|
|
2628
|
+
0, () => ThreatModel$
|
|
2629
|
+
];
|
|
2630
|
+
var ThreatModelSummaryList = [1, n0, _TMSL,
|
|
2631
|
+
0, () => ThreatModelSummary$
|
|
2632
|
+
];
|
|
2633
|
+
var ThreatSummaryList = [1, n0, _TSLh,
|
|
2634
|
+
0, () => ThreatSummary$
|
|
2635
|
+
];
|
|
2636
|
+
var UpdateSecurityRequirementEntryList = [1, n0, _USREL,
|
|
2637
|
+
0, () => UpdateSecurityRequirementEntry$
|
|
2638
|
+
];
|
|
2639
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
2640
|
+
0, () => ValidationExceptionField$
|
|
2641
|
+
];
|
|
2642
|
+
var VerificationScriptEnvVarList = [1, n0, _VSEVL,
|
|
2643
|
+
0, () => VerificationScriptEnvVar$
|
|
2644
|
+
];
|
|
2645
|
+
var VpcConfigs = [1, n0, _VCp,
|
|
2646
|
+
0, () => VpcConfig$
|
|
2647
|
+
];
|
|
2648
|
+
var DiffSource$ = [4, n0, _DS,
|
|
2649
|
+
0,
|
|
2650
|
+
[_sUr],
|
|
2651
|
+
[0]
|
|
2652
|
+
];
|
|
2653
|
+
var ImportSource$ = [4, n0, _ISm,
|
|
2654
|
+
0,
|
|
2655
|
+
[_doc],
|
|
2656
|
+
[[() => SecurityRequirementArtifactList, 0]]
|
|
2657
|
+
];
|
|
2658
|
+
var IntegratedResource$ = [4, n0, _IRn,
|
|
2659
|
+
0,
|
|
2660
|
+
[_gR, _gRi, _bR, _cDo],
|
|
2661
|
+
[() => GitHubRepositoryResource$, () => GitLabRepositoryResource$, () => BitbucketRepositoryResource$, () => ConfluenceDocumentResource$]
|
|
2662
|
+
];
|
|
2663
|
+
var IntegratedResourceMetadata$ = [4, n0, _IRM,
|
|
2664
|
+
0,
|
|
2665
|
+
[_gR, _gRi, _bR, _cDo],
|
|
2666
|
+
[() => GitHubRepositoryMetadata$, () => GitLabRepositoryMetadata$, () => BitbucketRepositoryMetadata$, () => ConfluenceDocumentMetadata$]
|
|
2667
|
+
];
|
|
2668
|
+
var IntegrationFilter$ = [4, n0, _IF,
|
|
2669
|
+
0,
|
|
2670
|
+
[_pr, _pT],
|
|
2671
|
+
[0, 0]
|
|
2672
|
+
];
|
|
2673
|
+
var MemberMetadata$ = [4, n0, _MM,
|
|
2674
|
+
0,
|
|
2675
|
+
[_use],
|
|
2676
|
+
[() => UserMetadata$]
|
|
2677
|
+
];
|
|
2678
|
+
var MembershipConfig$ = [4, n0, _MC,
|
|
2679
|
+
0,
|
|
2680
|
+
[_use],
|
|
2681
|
+
[() => UserConfig$]
|
|
2682
|
+
];
|
|
2683
|
+
var PrivateConnectionMode$ = [4, n0, _PCM,
|
|
2684
|
+
0,
|
|
2685
|
+
[_sM, _sMe],
|
|
2686
|
+
[[() => ServiceManagedInput$, 0], [() => SelfManagedInput$, 0]]
|
|
2687
|
+
];
|
|
2688
|
+
var ProviderInput$ = [4, n0, _PI,
|
|
2689
|
+
0,
|
|
2690
|
+
[_g, _gi, _b, _confl],
|
|
2691
|
+
[() => GitHubIntegrationInput$, [() => GitLabIntegrationInput$, 0], () => BitbucketIntegrationInput$, () => ConfluenceIntegrationInput$]
|
|
2692
|
+
];
|
|
2693
|
+
var ProviderResourceCapabilities$ = [4, n0, _PRC,
|
|
2694
|
+
0,
|
|
2695
|
+
[_g, _gi, _b, _confl],
|
|
2696
|
+
[() => GitHubResourceCapabilities$, () => GitLabResourceCapabilities$, () => BitbucketResourceCapabilities$, () => ConfluenceResourceCapabilities$]
|
|
2697
|
+
];
|
|
2698
|
+
var AddArtifact$ = [9, n0, _AA,
|
|
2699
|
+
{ [_h]: ["POST", "/AddArtifact", 201] }, () => AddArtifactInput$, () => AddArtifactOutput$
|
|
2700
|
+
];
|
|
2701
|
+
var BatchCreateSecurityRequirements$ = [9, n0, _BCSR,
|
|
2702
|
+
{ [_h]: ["POST", "/BatchCreateSecurityRequirements", 201] }, () => BatchCreateSecurityRequirementsInput$, () => BatchCreateSecurityRequirementsOutput$
|
|
2703
|
+
];
|
|
2704
|
+
var BatchDeleteCodeReviews$ = [9, n0, _BDCR,
|
|
2705
|
+
{ [_h]: ["POST", "/BatchDeleteCodeReviews", 200] }, () => BatchDeleteCodeReviewsInput$, () => BatchDeleteCodeReviewsOutput$
|
|
2706
|
+
];
|
|
2707
|
+
var BatchDeletePentests$ = [9, n0, _BDP,
|
|
2708
|
+
{ [_h]: ["POST", "/BatchDeletePentests", 200] }, () => BatchDeletePentestsInput$, () => BatchDeletePentestsOutput$
|
|
2709
|
+
];
|
|
2710
|
+
var BatchDeleteSecurityRequirements$ = [9, n0, _BDSR,
|
|
2711
|
+
{ [_h]: ["POST", "/BatchDeleteSecurityRequirements", 200] }, () => BatchDeleteSecurityRequirementsInput$, () => BatchDeleteSecurityRequirementsOutput$
|
|
2712
|
+
];
|
|
2713
|
+
var BatchDeleteThreatModels$ = [9, n0, _BDTM,
|
|
2714
|
+
{ [_h]: ["POST", "/BatchDeleteThreatModels", 200] }, () => BatchDeleteThreatModelsInput$, () => BatchDeleteThreatModelsOutput$
|
|
2715
|
+
];
|
|
2716
|
+
var BatchGetAgentSpaces$ = [9, n0, _BGAS,
|
|
2717
|
+
{ [_h]: ["POST", "/BatchGetAgentSpaces", 200] }, () => BatchGetAgentSpacesInput$, () => BatchGetAgentSpacesOutput$
|
|
2718
|
+
];
|
|
2719
|
+
var BatchGetArtifactMetadata$ = [9, n0, _BGAM,
|
|
2720
|
+
{ [_h]: ["POST", "/BatchGetArtifactMetadata", 200] }, () => BatchGetArtifactMetadataInput$, () => BatchGetArtifactMetadataOutput$
|
|
2721
|
+
];
|
|
2722
|
+
var BatchGetCodeReviewJobs$ = [9, n0, _BGCRJ,
|
|
2723
|
+
{ [_h]: ["POST", "/BatchGetCodeReviewJobs", 200] }, () => BatchGetCodeReviewJobsInput$, () => BatchGetCodeReviewJobsOutput$
|
|
2724
|
+
];
|
|
2725
|
+
var BatchGetCodeReviewJobTasks$ = [9, n0, _BGCRJT,
|
|
2726
|
+
{ [_h]: ["POST", "/BatchGetCodeReviewJobTasks", 200] }, () => BatchGetCodeReviewJobTasksInput$, () => BatchGetCodeReviewJobTasksOutput$
|
|
2727
|
+
];
|
|
2728
|
+
var BatchGetCodeReviews$ = [9, n0, _BGCR,
|
|
2729
|
+
{ [_h]: ["POST", "/BatchGetCodeReviews", 200] }, () => BatchGetCodeReviewsInput$, () => BatchGetCodeReviewsOutput$
|
|
2730
|
+
];
|
|
2731
|
+
var BatchGetFindings$ = [9, n0, _BGF,
|
|
2732
|
+
{ [_h]: ["POST", "/BatchGetFindings", 200] }, () => BatchGetFindingsInput$, () => BatchGetFindingsOutput$
|
|
2733
|
+
];
|
|
2734
|
+
var BatchGetPentestJobs$ = [9, n0, _BGPJ,
|
|
2735
|
+
{ [_h]: ["POST", "/BatchGetPentestJobs", 200] }, () => BatchGetPentestJobsInput$, () => BatchGetPentestJobsOutput$
|
|
2736
|
+
];
|
|
2737
|
+
var BatchGetPentestJobTasks$ = [9, n0, _BGPJT,
|
|
2738
|
+
{ [_h]: ["POST", "/BatchGetPentestJobTasks", 200] }, () => BatchGetPentestJobTasksInput$, () => BatchGetPentestJobTasksOutput$
|
|
2739
|
+
];
|
|
2740
|
+
var BatchGetPentests$ = [9, n0, _BGP,
|
|
2741
|
+
{ [_h]: ["POST", "/BatchGetPentests", 200] }, () => BatchGetPentestsInput$, () => BatchGetPentestsOutput$
|
|
2742
|
+
];
|
|
2743
|
+
var BatchGetSecurityRequirements$ = [9, n0, _BGSR,
|
|
2744
|
+
{ [_h]: ["POST", "/BatchGetSecurityRequirements", 200] }, () => BatchGetSecurityRequirementsInput$, () => BatchGetSecurityRequirementsOutput$
|
|
2745
|
+
];
|
|
2746
|
+
var BatchGetTargetDomains$ = [9, n0, _BGTD,
|
|
2747
|
+
{ [_h]: ["POST", "/BatchGetTargetDomains", 200] }, () => BatchGetTargetDomainsInput$, () => BatchGetTargetDomainsOutput$
|
|
2748
|
+
];
|
|
2749
|
+
var BatchGetThreatModelJobs$ = [9, n0, _BGTMJ,
|
|
2750
|
+
{ [_h]: ["POST", "/BatchGetThreatModelJobs", 200] }, () => BatchGetThreatModelJobsInput$, () => BatchGetThreatModelJobsOutput$
|
|
2751
|
+
];
|
|
2752
|
+
var BatchGetThreatModelJobTasks$ = [9, n0, _BGTMJT,
|
|
2753
|
+
{ [_h]: ["POST", "/BatchGetThreatModelJobTasks", 200] }, () => BatchGetThreatModelJobTasksInput$, () => BatchGetThreatModelJobTasksOutput$
|
|
2754
|
+
];
|
|
2755
|
+
var BatchGetThreatModels$ = [9, n0, _BGTM,
|
|
2756
|
+
{ [_h]: ["POST", "/BatchGetThreatModels", 200] }, () => BatchGetThreatModelsInput$, () => BatchGetThreatModelsOutput$
|
|
2757
|
+
];
|
|
2758
|
+
var BatchGetThreats$ = [9, n0, _BGT,
|
|
2759
|
+
{ [_h]: ["POST", "/BatchGetThreats", 200] }, () => BatchGetThreatsInput$, () => BatchGetThreatsOutput$
|
|
2760
|
+
];
|
|
2761
|
+
var BatchUpdateSecurityRequirements$ = [9, n0, _BUSR,
|
|
2762
|
+
{ [_h]: ["POST", "/BatchUpdateSecurityRequirements", 200] }, () => BatchUpdateSecurityRequirementsInput$, () => BatchUpdateSecurityRequirementsOutput$
|
|
2763
|
+
];
|
|
2764
|
+
var CreateAgentSpace$ = [9, n0, _CAS,
|
|
2765
|
+
{ [_h]: ["POST", "/CreateAgentSpace", 200] }, () => CreateAgentSpaceInput$, () => CreateAgentSpaceOutput$
|
|
2766
|
+
];
|
|
2767
|
+
var CreateApplication$ = [9, n0, _CA,
|
|
2768
|
+
{ [_h]: ["POST", "/CreateApplication", 200] }, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
2769
|
+
];
|
|
2770
|
+
var CreateCodeReview$ = [9, n0, _CCR,
|
|
2771
|
+
{ [_h]: ["POST", "/CreateCodeReview", 200] }, () => CreateCodeReviewInput$, () => CreateCodeReviewOutput$
|
|
2772
|
+
];
|
|
2773
|
+
var CreateIntegration$ = [9, n0, _CI,
|
|
2774
|
+
{ [_h]: ["POST", "/CreateIntegration", 201] }, () => CreateIntegrationInput$, () => CreateIntegrationOutput$
|
|
2775
|
+
];
|
|
2776
|
+
var CreateMembership$ = [9, n0, _CM,
|
|
2777
|
+
{ [_h]: ["POST", "/CreateMembership", 200] }, () => CreateMembershipRequest$, () => CreateMembershipResponse$
|
|
2778
|
+
];
|
|
2779
|
+
var CreatePentest$ = [9, n0, _CP,
|
|
2780
|
+
{ [_h]: ["POST", "/CreatePentest", 200] }, () => CreatePentestInput$, () => CreatePentestOutput$
|
|
2781
|
+
];
|
|
2782
|
+
var CreatePrivateConnection$ = [9, n0, _CPC,
|
|
2783
|
+
{ [_h]: ["POST", "/CreatePrivateConnection", 201] }, () => CreatePrivateConnectionInput$, () => CreatePrivateConnectionOutput$
|
|
2784
|
+
];
|
|
2785
|
+
var CreateSecurityRequirementPack$ = [9, n0, _CSRP,
|
|
2786
|
+
{ [_h]: ["POST", "/CreateSecurityRequirementPack", 201] }, () => CreateSecurityRequirementPackInput$, () => CreateSecurityRequirementPackOutput$
|
|
2787
|
+
];
|
|
2788
|
+
var CreateTargetDomain$ = [9, n0, _CTD,
|
|
2789
|
+
{ [_h]: ["POST", "/CreateTargetDomain", 200] }, () => CreateTargetDomainInput$, () => CreateTargetDomainOutput$
|
|
2790
|
+
];
|
|
2791
|
+
var CreateThreat$ = [9, n0, _CT,
|
|
2792
|
+
{ [_h]: ["POST", "/CreateThreat", 200] }, () => CreateThreatInput$, () => CreateThreatOutput$
|
|
2793
|
+
];
|
|
2794
|
+
var CreateThreatModel$ = [9, n0, _CTM,
|
|
2795
|
+
{ [_h]: ["POST", "/CreateThreatModel", 200] }, () => CreateThreatModelInput$, () => CreateThreatModelOutput$
|
|
2796
|
+
];
|
|
2797
|
+
var DeleteAgentSpace$ = [9, n0, _DAS,
|
|
2798
|
+
{ [_h]: ["POST", "/DeleteAgentSpace", 200] }, () => DeleteAgentSpaceInput$, () => DeleteAgentSpaceOutput$
|
|
2799
|
+
];
|
|
2800
|
+
var DeleteApplication$ = [9, n0, _DA,
|
|
2801
|
+
{ [_h]: ["POST", "/DeleteApplication", 200] }, () => DeleteApplicationRequest$, () => __Unit
|
|
2802
|
+
];
|
|
2803
|
+
var DeleteArtifact$ = [9, n0, _DAe,
|
|
2804
|
+
{ [_h]: ["POST", "/DeleteArtifact", 200] }, () => DeleteArtifactInput$, () => DeleteArtifactOutput$
|
|
2805
|
+
];
|
|
2806
|
+
var DeleteIntegration$ = [9, n0, _DIe,
|
|
2807
|
+
{ [_h]: ["POST", "/DeleteIntegration", 200] }, () => DeleteIntegrationInput$, () => DeleteIntegrationOutput$
|
|
2808
|
+
];
|
|
2809
|
+
var DeleteMembership$ = [9, n0, _DM,
|
|
2810
|
+
{ [_h]: ["POST", "/DeleteMembership", 200] }, () => DeleteMembershipRequest$, () => DeleteMembershipResponse$
|
|
2811
|
+
];
|
|
2812
|
+
var DeletePrivateConnection$ = [9, n0, _DPC,
|
|
2813
|
+
{ [_h]: ["POST", "/DeletePrivateConnection", 200] }, () => DeletePrivateConnectionInput$, () => DeletePrivateConnectionOutput$
|
|
2814
|
+
];
|
|
2815
|
+
var DeleteSecurityRequirementPack$ = [9, n0, _DSRP,
|
|
2816
|
+
{ [_h]: ["POST", "/DeleteSecurityRequirementPack", 200] }, () => DeleteSecurityRequirementPackInput$, () => DeleteSecurityRequirementPackOutput$
|
|
2817
|
+
];
|
|
2818
|
+
var DeleteTargetDomain$ = [9, n0, _DTD,
|
|
2819
|
+
{ [_h]: ["POST", "/DeleteTargetDomain", 200] }, () => DeleteTargetDomainInput$, () => DeleteTargetDomainOutput$
|
|
2820
|
+
];
|
|
2821
|
+
var DescribePrivateConnection$ = [9, n0, _DPCe,
|
|
2822
|
+
{ [_h]: ["POST", "/DescribePrivateConnection", 200] }, () => DescribePrivateConnectionInput$, () => DescribePrivateConnectionOutput$
|
|
2823
|
+
];
|
|
2824
|
+
var GetApplication$ = [9, n0, _GA,
|
|
2825
|
+
{ [_h]: ["POST", "/GetApplication", 200] }, () => GetApplicationRequest$, () => GetApplicationResponse$
|
|
2826
|
+
];
|
|
2827
|
+
var GetArtifact$ = [9, n0, _GAe,
|
|
2828
|
+
{ [_h]: ["POST", "/GetArtifact", 200] }, () => GetArtifactInput$, () => GetArtifactOutput$
|
|
2829
|
+
];
|
|
2830
|
+
var GetIntegration$ = [9, n0, _GI,
|
|
2831
|
+
{ [_h]: ["POST", "/GetIntegration", 200] }, () => GetIntegrationInput$, () => GetIntegrationOutput$
|
|
2832
|
+
];
|
|
2833
|
+
var GetSecurityRequirementPack$ = [9, n0, _GSRP,
|
|
2834
|
+
{ [_h]: ["POST", "/GetSecurityRequirementPack", 200] }, () => GetSecurityRequirementPackInput$, () => GetSecurityRequirementPackOutput$
|
|
2835
|
+
];
|
|
2836
|
+
var ImportSecurityRequirements$ = [9, n0, _ISR,
|
|
2837
|
+
{ [_h]: ["POST", "/ImportSecurityRequirements", 201] }, () => ImportSecurityRequirementsInput$, () => ImportSecurityRequirementsOutput$
|
|
2838
|
+
];
|
|
2839
|
+
var InitiateProviderRegistration$ = [9, n0, _IPR,
|
|
2840
|
+
{ [_h]: ["POST", "/oauth2/provider/register", 200] }, () => InitiateProviderRegistrationInput$, () => InitiateProviderRegistrationOutput$
|
|
2841
|
+
];
|
|
2842
|
+
var ListAgentSpaces$ = [9, n0, _LAS,
|
|
2843
|
+
{ [_h]: ["POST", "/ListAgentSpaces", 200] }, () => ListAgentSpacesInput$, () => ListAgentSpacesOutput$
|
|
2844
|
+
];
|
|
2845
|
+
var ListApplications$ = [9, n0, _LA,
|
|
2846
|
+
{ [_h]: ["POST", "/ListApplications", 200] }, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
2847
|
+
];
|
|
2848
|
+
var ListArtifacts$ = [9, n0, _LAi,
|
|
2849
|
+
{ [_h]: ["POST", "/ListArtifacts", 200] }, () => ListArtifactsInput$, () => ListArtifactsOutput$
|
|
2850
|
+
];
|
|
2851
|
+
var ListCodeReviewJobsForCodeReview$ = [9, n0, _LCRJFCR,
|
|
2852
|
+
{ [_h]: ["POST", "/ListCodeReviewJobsForCodeReview", 200] }, () => ListCodeReviewJobsForCodeReviewInput$, () => ListCodeReviewJobsForCodeReviewOutput$
|
|
2853
|
+
];
|
|
2854
|
+
var ListCodeReviewJobTasks$ = [9, n0, _LCRJT,
|
|
2855
|
+
{ [_h]: ["POST", "/ListCodeReviewJobTasks", 200] }, () => ListCodeReviewJobTasksInput$, () => ListCodeReviewJobTasksOutput$
|
|
2856
|
+
];
|
|
2857
|
+
var ListCodeReviews$ = [9, n0, _LCR,
|
|
2858
|
+
{ [_h]: ["POST", "/ListCodeReviews", 200] }, () => ListCodeReviewsInput$, () => ListCodeReviewsOutput$
|
|
2859
|
+
];
|
|
2860
|
+
var ListDiscoveredEndpoints$ = [9, n0, _LDE,
|
|
2861
|
+
{ [_h]: ["POST", "/ListDiscoveredEndpoints", 200] }, () => ListDiscoveredEndpointsInput$, () => ListDiscoveredEndpointsOutput$
|
|
2862
|
+
];
|
|
2863
|
+
var ListFindings$ = [9, n0, _LF,
|
|
2864
|
+
{ [_h]: ["POST", "/ListFindings", 200] }, () => ListFindingsInput$, () => ListFindingsOutput$
|
|
2865
|
+
];
|
|
2866
|
+
var ListIntegratedResources$ = [9, n0, _LIR,
|
|
2867
|
+
{ [_h]: ["POST", "/ListIntegratedResources", 200] }, () => ListIntegratedResourcesInput$, () => ListIntegratedResourcesOutput$
|
|
2868
|
+
];
|
|
2869
|
+
var ListIntegrations$ = [9, n0, _LI,
|
|
2870
|
+
{ [_h]: ["POST", "/ListIntegrations", 200] }, () => ListIntegrationsInput$, () => ListIntegrationsOutput$
|
|
2871
|
+
];
|
|
2872
|
+
var ListMemberships$ = [9, n0, _LM,
|
|
2873
|
+
{ [_h]: ["POST", "/ListMemberships", 200] }, () => ListMembershipsRequest$, () => ListMembershipsResponse$
|
|
2874
|
+
];
|
|
2875
|
+
var ListPentestJobsForPentest$ = [9, n0, _LPJFP,
|
|
2876
|
+
{ [_h]: ["POST", "/ListPentestJobsForPentest", 200] }, () => ListPentestJobsForPentestInput$, () => ListPentestJobsForPentestOutput$
|
|
2877
|
+
];
|
|
2878
|
+
var ListPentestJobTasks$ = [9, n0, _LPJT,
|
|
2879
|
+
{ [_h]: ["POST", "/ListPentestJobTasks", 200] }, () => ListPentestJobTasksInput$, () => ListPentestJobTasksOutput$
|
|
2880
|
+
];
|
|
2881
|
+
var ListPentests$ = [9, n0, _LP,
|
|
2882
|
+
{ [_h]: ["POST", "/ListPentests", 200] }, () => ListPentestsInput$, () => ListPentestsOutput$
|
|
2883
|
+
];
|
|
2884
|
+
var ListPrivateConnections$ = [9, n0, _LPC,
|
|
2885
|
+
{ [_h]: ["POST", "/ListPrivateConnections", 200] }, () => ListPrivateConnectionsInput$, () => ListPrivateConnectionsOutput$
|
|
2886
|
+
];
|
|
2887
|
+
var ListSecurityRequirementPacks$ = [9, n0, _LSRP,
|
|
2888
|
+
{ [_h]: ["POST", "/ListSecurityRequirementPacks", 200] }, () => ListSecurityRequirementPacksInput$, () => ListSecurityRequirementPacksOutput$
|
|
2889
|
+
];
|
|
2890
|
+
var ListSecurityRequirements$ = [9, n0, _LSR,
|
|
2891
|
+
{ [_h]: ["POST", "/ListSecurityRequirements", 200] }, () => ListSecurityRequirementsInput$, () => ListSecurityRequirementsOutput$
|
|
2892
|
+
];
|
|
2893
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2894
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
2895
|
+
];
|
|
2896
|
+
var ListTargetDomains$ = [9, n0, _LTD,
|
|
2897
|
+
{ [_h]: ["POST", "/ListTargetDomains", 200] }, () => ListTargetDomainsInput$, () => ListTargetDomainsOutput$
|
|
2898
|
+
];
|
|
2899
|
+
var ListThreatModelJobs$ = [9, n0, _LTMJ,
|
|
2900
|
+
{ [_h]: ["POST", "/ListThreatModelJobs", 200] }, () => ListThreatModelJobsInput$, () => ListThreatModelJobsOutput$
|
|
2901
|
+
];
|
|
2902
|
+
var ListThreatModelJobTasks$ = [9, n0, _LTMJT,
|
|
2903
|
+
{ [_h]: ["POST", "/ListThreatModelJobTasks", 200] }, () => ListThreatModelJobTasksInput$, () => ListThreatModelJobTasksOutput$
|
|
2904
|
+
];
|
|
2905
|
+
var ListThreatModels$ = [9, n0, _LTM,
|
|
2906
|
+
{ [_h]: ["POST", "/ListThreatModels", 200] }, () => ListThreatModelsInput$, () => ListThreatModelsOutput$
|
|
2907
|
+
];
|
|
2908
|
+
var ListThreats$ = [9, n0, _LT,
|
|
2909
|
+
{ [_h]: ["POST", "/ListThreats", 200] }, () => ListThreatsInput$, () => ListThreatsOutput$
|
|
2910
|
+
];
|
|
2911
|
+
var StartCodeRemediation$ = [9, n0, _SCRt,
|
|
2912
|
+
{ [_h]: ["POST", "/StartCodeRemediation", 200] }, () => StartCodeRemediationInput$, () => StartCodeRemediationOutput$
|
|
2913
|
+
];
|
|
2914
|
+
var StartCodeReviewJob$ = [9, n0, _SCRJ,
|
|
2915
|
+
{ [_h]: ["POST", "/StartCodeReviewJob", 200] }, () => StartCodeReviewJobInput$, () => StartCodeReviewJobOutput$
|
|
2916
|
+
];
|
|
2917
|
+
var StartPentestJob$ = [9, n0, _SPJ,
|
|
2918
|
+
{ [_h]: ["POST", "/StartPentestJob", 200] }, () => StartPentestJobInput$, () => StartPentestJobOutput$
|
|
2919
|
+
];
|
|
2920
|
+
var StartThreatModelJob$ = [9, n0, _STMJ,
|
|
2921
|
+
{ [_h]: ["POST", "/StartThreatModelJob", 200] }, () => StartThreatModelJobInput$, () => StartThreatModelJobOutput$
|
|
2922
|
+
];
|
|
2923
|
+
var StopCodeReviewJob$ = [9, n0, _SCRJt,
|
|
2924
|
+
{ [_h]: ["POST", "/StopCodeReviewJob", 200] }, () => StopCodeReviewJobInput$, () => StopCodeReviewJobOutput$
|
|
2925
|
+
];
|
|
2926
|
+
var StopPentestJob$ = [9, n0, _SPJt,
|
|
2927
|
+
{ [_h]: ["POST", "/StopPentestJob", 200] }, () => StopPentestJobInput$, () => StopPentestJobOutput$
|
|
2928
|
+
];
|
|
2929
|
+
var StopThreatModelJob$ = [9, n0, _STMJt,
|
|
2930
|
+
{ [_h]: ["POST", "/StopThreatModelJob", 200] }, () => StopThreatModelJobInput$, () => StopThreatModelJobOutput$
|
|
2931
|
+
];
|
|
2932
|
+
var TagResource$ = [9, n0, _TR,
|
|
2933
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceInput$, () => TagResourceOutput$
|
|
2934
|
+
];
|
|
2935
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2936
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
2937
|
+
];
|
|
2938
|
+
var UpdateAgentSpace$ = [9, n0, _UAS,
|
|
2939
|
+
{ [_h]: ["POST", "/UpdateAgentSpace", 200] }, () => UpdateAgentSpaceInput$, () => UpdateAgentSpaceOutput$
|
|
2940
|
+
];
|
|
2941
|
+
var UpdateApplication$ = [9, n0, _UA,
|
|
2942
|
+
{ [_h]: ["POST", "/UpdateApplication", 200] }, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
2943
|
+
];
|
|
2944
|
+
var UpdateCodeReview$ = [9, n0, _UCR,
|
|
2945
|
+
{ [_h]: ["POST", "/UpdateCodeReview", 200] }, () => UpdateCodeReviewInput$, () => UpdateCodeReviewOutput$
|
|
2946
|
+
];
|
|
2947
|
+
var UpdateFinding$ = [9, n0, _UF,
|
|
2948
|
+
{ [_h]: ["POST", "/UpdateFinding", 200] }, () => UpdateFindingInput$, () => UpdateFindingOutput$
|
|
2949
|
+
];
|
|
2950
|
+
var UpdateIntegratedResources$ = [9, n0, _UIR,
|
|
2951
|
+
{ [_h]: ["POST", "/UpdateIntegratedResources", 200] }, () => UpdateIntegratedResourcesInput$, () => UpdateIntegratedResourcesOutput$
|
|
2952
|
+
];
|
|
2953
|
+
var UpdatePentest$ = [9, n0, _UP,
|
|
2954
|
+
{ [_h]: ["POST", "/UpdatePentest", 200] }, () => UpdatePentestInput$, () => UpdatePentestOutput$
|
|
2955
|
+
];
|
|
2956
|
+
var UpdatePrivateConnectionCertificate$ = [9, n0, _UPCC,
|
|
2957
|
+
{ [_h]: ["POST", "/UpdatePrivateConnectionCertificate", 200] }, () => UpdatePrivateConnectionCertificateInput$, () => UpdatePrivateConnectionCertificateOutput$
|
|
2958
|
+
];
|
|
2959
|
+
var UpdateSecurityRequirementPack$ = [9, n0, _USRP,
|
|
2960
|
+
{ [_h]: ["POST", "/UpdateSecurityRequirementPack", 200] }, () => UpdateSecurityRequirementPackInput$, () => UpdateSecurityRequirementPackOutput$
|
|
2961
|
+
];
|
|
2962
|
+
var UpdateTargetDomain$ = [9, n0, _UTD,
|
|
2963
|
+
{ [_h]: ["POST", "/UpdateTargetDomain", 200] }, () => UpdateTargetDomainInput$, () => UpdateTargetDomainOutput$
|
|
2964
|
+
];
|
|
2965
|
+
var UpdateThreat$ = [9, n0, _UT,
|
|
2966
|
+
{ [_h]: ["POST", "/UpdateThreat", 200] }, () => UpdateThreatInput$, () => UpdateThreatOutput$
|
|
2967
|
+
];
|
|
2968
|
+
var UpdateThreatModel$ = [9, n0, _UTM,
|
|
2969
|
+
{ [_h]: ["POST", "/UpdateThreatModel", 200] }, () => UpdateThreatModelInput$, () => UpdateThreatModelOutput$
|
|
2970
|
+
];
|
|
2971
|
+
var VerifyTargetDomain$ = [9, n0, _VTD,
|
|
2972
|
+
{ [_h]: ["POST", "/VerifyTargetDomain", 200] }, () => VerifyTargetDomainInput$, () => VerifyTargetDomainOutput$
|
|
2973
|
+
];
|
|
2974
|
+
|
|
2975
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2976
|
+
return {
|
|
2977
|
+
apiVersion: "2025-09-06",
|
|
2978
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2979
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2980
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2981
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2982
|
+
extensions: config?.extensions ?? [],
|
|
2983
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSecurityAgentHttpAuthSchemeProvider,
|
|
2984
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2985
|
+
{
|
|
2986
|
+
schemeId: "aws.auth#sigv4",
|
|
2987
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2988
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2989
|
+
},
|
|
2990
|
+
],
|
|
2991
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2992
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2993
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2994
|
+
defaultNamespace: "com.amazonaws.securityagent",
|
|
2995
|
+
errorTypeRegistries,
|
|
2996
|
+
version: "2025-09-06",
|
|
2997
|
+
serviceTarget: "SecurityAgent",
|
|
2998
|
+
},
|
|
2999
|
+
serviceId: config?.serviceId ?? "SecurityAgent",
|
|
3000
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
3001
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
3002
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
3003
|
+
};
|
|
3004
|
+
};
|
|
3005
|
+
|
|
3006
|
+
const getRuntimeConfig = (config) => {
|
|
3007
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
3008
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
3009
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
3010
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
3011
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
3012
|
+
const loaderConfig = {
|
|
3013
|
+
profile: config?.profile,
|
|
3014
|
+
logger: clientSharedValues.logger,
|
|
3015
|
+
};
|
|
3016
|
+
return {
|
|
3017
|
+
...clientSharedValues,
|
|
3018
|
+
...config,
|
|
3019
|
+
runtime: "node",
|
|
3020
|
+
defaultsMode,
|
|
3021
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
3022
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
3023
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
3024
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
3025
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
3026
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
3027
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
3028
|
+
retryMode: config?.retryMode ??
|
|
3029
|
+
loadConfig({
|
|
3030
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
3031
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
3032
|
+
}, config),
|
|
3033
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
3034
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
3035
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3036
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3037
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
3038
|
+
};
|
|
3039
|
+
};
|
|
3040
|
+
|
|
32
3041
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
3042
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
3043
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1636,144 +4645,547 @@ const MembershipTypeFilter = {
|
|
|
1636
4645
|
USER: "USER",
|
|
1637
4646
|
};
|
|
1638
4647
|
|
|
4648
|
+
exports.AWSResources$ = AWSResources$;
|
|
4649
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
4650
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1639
4651
|
exports.AccessType = AccessType;
|
|
4652
|
+
exports.Actor$ = Actor$;
|
|
4653
|
+
exports.AddArtifact$ = AddArtifact$;
|
|
1640
4654
|
exports.AddArtifactCommand = AddArtifactCommand;
|
|
4655
|
+
exports.AddArtifactInput$ = AddArtifactInput$;
|
|
4656
|
+
exports.AddArtifactOutput$ = AddArtifactOutput$;
|
|
4657
|
+
exports.AgentSpace$ = AgentSpace$;
|
|
4658
|
+
exports.AgentSpaceSummary$ = AgentSpaceSummary$;
|
|
4659
|
+
exports.ApplicationSummary$ = ApplicationSummary$;
|
|
4660
|
+
exports.Artifact$ = Artifact$;
|
|
4661
|
+
exports.ArtifactMetadataItem$ = ArtifactMetadataItem$;
|
|
4662
|
+
exports.ArtifactSummary$ = ArtifactSummary$;
|
|
1641
4663
|
exports.ArtifactType = ArtifactType;
|
|
4664
|
+
exports.Assets$ = Assets$;
|
|
4665
|
+
exports.Authentication$ = Authentication$;
|
|
1642
4666
|
exports.AuthenticationProviderType = AuthenticationProviderType;
|
|
4667
|
+
exports.BatchCreateSecurityRequirementResult$ = BatchCreateSecurityRequirementResult$;
|
|
4668
|
+
exports.BatchCreateSecurityRequirements$ = BatchCreateSecurityRequirements$;
|
|
1643
4669
|
exports.BatchCreateSecurityRequirementsCommand = BatchCreateSecurityRequirementsCommand;
|
|
4670
|
+
exports.BatchCreateSecurityRequirementsInput$ = BatchCreateSecurityRequirementsInput$;
|
|
4671
|
+
exports.BatchCreateSecurityRequirementsOutput$ = BatchCreateSecurityRequirementsOutput$;
|
|
4672
|
+
exports.BatchDeleteCodeReviews$ = BatchDeleteCodeReviews$;
|
|
1644
4673
|
exports.BatchDeleteCodeReviewsCommand = BatchDeleteCodeReviewsCommand;
|
|
4674
|
+
exports.BatchDeleteCodeReviewsInput$ = BatchDeleteCodeReviewsInput$;
|
|
4675
|
+
exports.BatchDeleteCodeReviewsOutput$ = BatchDeleteCodeReviewsOutput$;
|
|
4676
|
+
exports.BatchDeletePentests$ = BatchDeletePentests$;
|
|
1645
4677
|
exports.BatchDeletePentestsCommand = BatchDeletePentestsCommand;
|
|
4678
|
+
exports.BatchDeletePentestsInput$ = BatchDeletePentestsInput$;
|
|
4679
|
+
exports.BatchDeletePentestsOutput$ = BatchDeletePentestsOutput$;
|
|
4680
|
+
exports.BatchDeleteSecurityRequirements$ = BatchDeleteSecurityRequirements$;
|
|
1646
4681
|
exports.BatchDeleteSecurityRequirementsCommand = BatchDeleteSecurityRequirementsCommand;
|
|
4682
|
+
exports.BatchDeleteSecurityRequirementsInput$ = BatchDeleteSecurityRequirementsInput$;
|
|
4683
|
+
exports.BatchDeleteSecurityRequirementsOutput$ = BatchDeleteSecurityRequirementsOutput$;
|
|
4684
|
+
exports.BatchDeleteThreatModels$ = BatchDeleteThreatModels$;
|
|
1647
4685
|
exports.BatchDeleteThreatModelsCommand = BatchDeleteThreatModelsCommand;
|
|
4686
|
+
exports.BatchDeleteThreatModelsInput$ = BatchDeleteThreatModelsInput$;
|
|
4687
|
+
exports.BatchDeleteThreatModelsOutput$ = BatchDeleteThreatModelsOutput$;
|
|
4688
|
+
exports.BatchGetAgentSpaces$ = BatchGetAgentSpaces$;
|
|
1648
4689
|
exports.BatchGetAgentSpacesCommand = BatchGetAgentSpacesCommand;
|
|
4690
|
+
exports.BatchGetAgentSpacesInput$ = BatchGetAgentSpacesInput$;
|
|
4691
|
+
exports.BatchGetAgentSpacesOutput$ = BatchGetAgentSpacesOutput$;
|
|
4692
|
+
exports.BatchGetArtifactMetadata$ = BatchGetArtifactMetadata$;
|
|
1649
4693
|
exports.BatchGetArtifactMetadataCommand = BatchGetArtifactMetadataCommand;
|
|
4694
|
+
exports.BatchGetArtifactMetadataInput$ = BatchGetArtifactMetadataInput$;
|
|
4695
|
+
exports.BatchGetArtifactMetadataOutput$ = BatchGetArtifactMetadataOutput$;
|
|
4696
|
+
exports.BatchGetCodeReviewJobTasks$ = BatchGetCodeReviewJobTasks$;
|
|
1650
4697
|
exports.BatchGetCodeReviewJobTasksCommand = BatchGetCodeReviewJobTasksCommand;
|
|
4698
|
+
exports.BatchGetCodeReviewJobTasksInput$ = BatchGetCodeReviewJobTasksInput$;
|
|
4699
|
+
exports.BatchGetCodeReviewJobTasksOutput$ = BatchGetCodeReviewJobTasksOutput$;
|
|
4700
|
+
exports.BatchGetCodeReviewJobs$ = BatchGetCodeReviewJobs$;
|
|
1651
4701
|
exports.BatchGetCodeReviewJobsCommand = BatchGetCodeReviewJobsCommand;
|
|
4702
|
+
exports.BatchGetCodeReviewJobsInput$ = BatchGetCodeReviewJobsInput$;
|
|
4703
|
+
exports.BatchGetCodeReviewJobsOutput$ = BatchGetCodeReviewJobsOutput$;
|
|
4704
|
+
exports.BatchGetCodeReviews$ = BatchGetCodeReviews$;
|
|
1652
4705
|
exports.BatchGetCodeReviewsCommand = BatchGetCodeReviewsCommand;
|
|
4706
|
+
exports.BatchGetCodeReviewsInput$ = BatchGetCodeReviewsInput$;
|
|
4707
|
+
exports.BatchGetCodeReviewsOutput$ = BatchGetCodeReviewsOutput$;
|
|
4708
|
+
exports.BatchGetFindings$ = BatchGetFindings$;
|
|
1653
4709
|
exports.BatchGetFindingsCommand = BatchGetFindingsCommand;
|
|
4710
|
+
exports.BatchGetFindingsInput$ = BatchGetFindingsInput$;
|
|
4711
|
+
exports.BatchGetFindingsOutput$ = BatchGetFindingsOutput$;
|
|
4712
|
+
exports.BatchGetPentestJobTasks$ = BatchGetPentestJobTasks$;
|
|
1654
4713
|
exports.BatchGetPentestJobTasksCommand = BatchGetPentestJobTasksCommand;
|
|
4714
|
+
exports.BatchGetPentestJobTasksInput$ = BatchGetPentestJobTasksInput$;
|
|
4715
|
+
exports.BatchGetPentestJobTasksOutput$ = BatchGetPentestJobTasksOutput$;
|
|
4716
|
+
exports.BatchGetPentestJobs$ = BatchGetPentestJobs$;
|
|
1655
4717
|
exports.BatchGetPentestJobsCommand = BatchGetPentestJobsCommand;
|
|
4718
|
+
exports.BatchGetPentestJobsInput$ = BatchGetPentestJobsInput$;
|
|
4719
|
+
exports.BatchGetPentestJobsOutput$ = BatchGetPentestJobsOutput$;
|
|
4720
|
+
exports.BatchGetPentests$ = BatchGetPentests$;
|
|
1656
4721
|
exports.BatchGetPentestsCommand = BatchGetPentestsCommand;
|
|
4722
|
+
exports.BatchGetPentestsInput$ = BatchGetPentestsInput$;
|
|
4723
|
+
exports.BatchGetPentestsOutput$ = BatchGetPentestsOutput$;
|
|
4724
|
+
exports.BatchGetSecurityRequirementResult$ = BatchGetSecurityRequirementResult$;
|
|
4725
|
+
exports.BatchGetSecurityRequirements$ = BatchGetSecurityRequirements$;
|
|
1657
4726
|
exports.BatchGetSecurityRequirementsCommand = BatchGetSecurityRequirementsCommand;
|
|
4727
|
+
exports.BatchGetSecurityRequirementsInput$ = BatchGetSecurityRequirementsInput$;
|
|
4728
|
+
exports.BatchGetSecurityRequirementsOutput$ = BatchGetSecurityRequirementsOutput$;
|
|
4729
|
+
exports.BatchGetTargetDomains$ = BatchGetTargetDomains$;
|
|
1658
4730
|
exports.BatchGetTargetDomainsCommand = BatchGetTargetDomainsCommand;
|
|
4731
|
+
exports.BatchGetTargetDomainsInput$ = BatchGetTargetDomainsInput$;
|
|
4732
|
+
exports.BatchGetTargetDomainsOutput$ = BatchGetTargetDomainsOutput$;
|
|
4733
|
+
exports.BatchGetThreatModelJobTasks$ = BatchGetThreatModelJobTasks$;
|
|
1659
4734
|
exports.BatchGetThreatModelJobTasksCommand = BatchGetThreatModelJobTasksCommand;
|
|
4735
|
+
exports.BatchGetThreatModelJobTasksInput$ = BatchGetThreatModelJobTasksInput$;
|
|
4736
|
+
exports.BatchGetThreatModelJobTasksOutput$ = BatchGetThreatModelJobTasksOutput$;
|
|
4737
|
+
exports.BatchGetThreatModelJobs$ = BatchGetThreatModelJobs$;
|
|
1660
4738
|
exports.BatchGetThreatModelJobsCommand = BatchGetThreatModelJobsCommand;
|
|
4739
|
+
exports.BatchGetThreatModelJobsInput$ = BatchGetThreatModelJobsInput$;
|
|
4740
|
+
exports.BatchGetThreatModelJobsOutput$ = BatchGetThreatModelJobsOutput$;
|
|
4741
|
+
exports.BatchGetThreatModels$ = BatchGetThreatModels$;
|
|
1661
4742
|
exports.BatchGetThreatModelsCommand = BatchGetThreatModelsCommand;
|
|
4743
|
+
exports.BatchGetThreatModelsInput$ = BatchGetThreatModelsInput$;
|
|
4744
|
+
exports.BatchGetThreatModelsOutput$ = BatchGetThreatModelsOutput$;
|
|
4745
|
+
exports.BatchGetThreats$ = BatchGetThreats$;
|
|
1662
4746
|
exports.BatchGetThreatsCommand = BatchGetThreatsCommand;
|
|
4747
|
+
exports.BatchGetThreatsInput$ = BatchGetThreatsInput$;
|
|
4748
|
+
exports.BatchGetThreatsOutput$ = BatchGetThreatsOutput$;
|
|
4749
|
+
exports.BatchSecurityRequirementError$ = BatchSecurityRequirementError$;
|
|
4750
|
+
exports.BatchUpdateSecurityRequirements$ = BatchUpdateSecurityRequirements$;
|
|
1663
4751
|
exports.BatchUpdateSecurityRequirementsCommand = BatchUpdateSecurityRequirementsCommand;
|
|
4752
|
+
exports.BatchUpdateSecurityRequirementsInput$ = BatchUpdateSecurityRequirementsInput$;
|
|
4753
|
+
exports.BatchUpdateSecurityRequirementsOutput$ = BatchUpdateSecurityRequirementsOutput$;
|
|
4754
|
+
exports.BitbucketIntegrationInput$ = BitbucketIntegrationInput$;
|
|
4755
|
+
exports.BitbucketRepositoryMetadata$ = BitbucketRepositoryMetadata$;
|
|
4756
|
+
exports.BitbucketRepositoryResource$ = BitbucketRepositoryResource$;
|
|
4757
|
+
exports.BitbucketResourceCapabilities$ = BitbucketResourceCapabilities$;
|
|
4758
|
+
exports.Category$ = Category$;
|
|
1664
4759
|
exports.CleanUpStrategy = CleanUpStrategy;
|
|
4760
|
+
exports.CloudWatchLog$ = CloudWatchLog$;
|
|
4761
|
+
exports.CodeLocation$ = CodeLocation$;
|
|
1665
4762
|
exports.CodeRemediationStrategy = CodeRemediationStrategy;
|
|
4763
|
+
exports.CodeRemediationTask$ = CodeRemediationTask$;
|
|
4764
|
+
exports.CodeRemediationTaskDetails$ = CodeRemediationTaskDetails$;
|
|
1666
4765
|
exports.CodeRemediationTaskStatus = CodeRemediationTaskStatus;
|
|
4766
|
+
exports.CodeReview$ = CodeReview$;
|
|
4767
|
+
exports.CodeReviewJob$ = CodeReviewJob$;
|
|
4768
|
+
exports.CodeReviewJobSummary$ = CodeReviewJobSummary$;
|
|
4769
|
+
exports.CodeReviewJobTask$ = CodeReviewJobTask$;
|
|
4770
|
+
exports.CodeReviewJobTaskSummary$ = CodeReviewJobTaskSummary$;
|
|
4771
|
+
exports.CodeReviewSettings$ = CodeReviewSettings$;
|
|
4772
|
+
exports.CodeReviewSummary$ = CodeReviewSummary$;
|
|
1667
4773
|
exports.ConfidenceLevel = ConfidenceLevel;
|
|
4774
|
+
exports.ConflictException = ConflictException;
|
|
4775
|
+
exports.ConflictException$ = ConflictException$;
|
|
4776
|
+
exports.ConfluenceDocumentMetadata$ = ConfluenceDocumentMetadata$;
|
|
4777
|
+
exports.ConfluenceDocumentResource$ = ConfluenceDocumentResource$;
|
|
4778
|
+
exports.ConfluenceIntegrationInput$ = ConfluenceIntegrationInput$;
|
|
4779
|
+
exports.ConfluenceResourceCapabilities$ = ConfluenceResourceCapabilities$;
|
|
1668
4780
|
exports.ContextType = ContextType;
|
|
4781
|
+
exports.CreateAgentSpace$ = CreateAgentSpace$;
|
|
1669
4782
|
exports.CreateAgentSpaceCommand = CreateAgentSpaceCommand;
|
|
4783
|
+
exports.CreateAgentSpaceInput$ = CreateAgentSpaceInput$;
|
|
4784
|
+
exports.CreateAgentSpaceOutput$ = CreateAgentSpaceOutput$;
|
|
4785
|
+
exports.CreateApplication$ = CreateApplication$;
|
|
1670
4786
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
4787
|
+
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
4788
|
+
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
4789
|
+
exports.CreateCodeReview$ = CreateCodeReview$;
|
|
1671
4790
|
exports.CreateCodeReviewCommand = CreateCodeReviewCommand;
|
|
4791
|
+
exports.CreateCodeReviewInput$ = CreateCodeReviewInput$;
|
|
4792
|
+
exports.CreateCodeReviewOutput$ = CreateCodeReviewOutput$;
|
|
4793
|
+
exports.CreateIntegration$ = CreateIntegration$;
|
|
1672
4794
|
exports.CreateIntegrationCommand = CreateIntegrationCommand;
|
|
4795
|
+
exports.CreateIntegrationInput$ = CreateIntegrationInput$;
|
|
4796
|
+
exports.CreateIntegrationOutput$ = CreateIntegrationOutput$;
|
|
4797
|
+
exports.CreateMembership$ = CreateMembership$;
|
|
1673
4798
|
exports.CreateMembershipCommand = CreateMembershipCommand;
|
|
4799
|
+
exports.CreateMembershipRequest$ = CreateMembershipRequest$;
|
|
4800
|
+
exports.CreateMembershipResponse$ = CreateMembershipResponse$;
|
|
4801
|
+
exports.CreatePentest$ = CreatePentest$;
|
|
1674
4802
|
exports.CreatePentestCommand = CreatePentestCommand;
|
|
4803
|
+
exports.CreatePentestInput$ = CreatePentestInput$;
|
|
4804
|
+
exports.CreatePentestOutput$ = CreatePentestOutput$;
|
|
4805
|
+
exports.CreatePrivateConnection$ = CreatePrivateConnection$;
|
|
1675
4806
|
exports.CreatePrivateConnectionCommand = CreatePrivateConnectionCommand;
|
|
4807
|
+
exports.CreatePrivateConnectionInput$ = CreatePrivateConnectionInput$;
|
|
4808
|
+
exports.CreatePrivateConnectionOutput$ = CreatePrivateConnectionOutput$;
|
|
4809
|
+
exports.CreateSecurityRequirementEntry$ = CreateSecurityRequirementEntry$;
|
|
4810
|
+
exports.CreateSecurityRequirementPack$ = CreateSecurityRequirementPack$;
|
|
1676
4811
|
exports.CreateSecurityRequirementPackCommand = CreateSecurityRequirementPackCommand;
|
|
4812
|
+
exports.CreateSecurityRequirementPackInput$ = CreateSecurityRequirementPackInput$;
|
|
4813
|
+
exports.CreateSecurityRequirementPackOutput$ = CreateSecurityRequirementPackOutput$;
|
|
4814
|
+
exports.CreateTargetDomain$ = CreateTargetDomain$;
|
|
1677
4815
|
exports.CreateTargetDomainCommand = CreateTargetDomainCommand;
|
|
4816
|
+
exports.CreateTargetDomainInput$ = CreateTargetDomainInput$;
|
|
4817
|
+
exports.CreateTargetDomainOutput$ = CreateTargetDomainOutput$;
|
|
4818
|
+
exports.CreateThreat$ = CreateThreat$;
|
|
1678
4819
|
exports.CreateThreatCommand = CreateThreatCommand;
|
|
4820
|
+
exports.CreateThreatInput$ = CreateThreatInput$;
|
|
4821
|
+
exports.CreateThreatModel$ = CreateThreatModel$;
|
|
1679
4822
|
exports.CreateThreatModelCommand = CreateThreatModelCommand;
|
|
4823
|
+
exports.CreateThreatModelInput$ = CreateThreatModelInput$;
|
|
4824
|
+
exports.CreateThreatModelOutput$ = CreateThreatModelOutput$;
|
|
4825
|
+
exports.CreateThreatOutput$ = CreateThreatOutput$;
|
|
4826
|
+
exports.CustomHeader$ = CustomHeader$;
|
|
1680
4827
|
exports.DNSRecordType = DNSRecordType;
|
|
4828
|
+
exports.DeleteAgentSpace$ = DeleteAgentSpace$;
|
|
1681
4829
|
exports.DeleteAgentSpaceCommand = DeleteAgentSpaceCommand;
|
|
4830
|
+
exports.DeleteAgentSpaceInput$ = DeleteAgentSpaceInput$;
|
|
4831
|
+
exports.DeleteAgentSpaceOutput$ = DeleteAgentSpaceOutput$;
|
|
4832
|
+
exports.DeleteApplication$ = DeleteApplication$;
|
|
1682
4833
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
4834
|
+
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
4835
|
+
exports.DeleteArtifact$ = DeleteArtifact$;
|
|
1683
4836
|
exports.DeleteArtifactCommand = DeleteArtifactCommand;
|
|
4837
|
+
exports.DeleteArtifactInput$ = DeleteArtifactInput$;
|
|
4838
|
+
exports.DeleteArtifactOutput$ = DeleteArtifactOutput$;
|
|
4839
|
+
exports.DeleteCodeReviewFailure$ = DeleteCodeReviewFailure$;
|
|
4840
|
+
exports.DeleteIntegration$ = DeleteIntegration$;
|
|
1684
4841
|
exports.DeleteIntegrationCommand = DeleteIntegrationCommand;
|
|
4842
|
+
exports.DeleteIntegrationInput$ = DeleteIntegrationInput$;
|
|
4843
|
+
exports.DeleteIntegrationOutput$ = DeleteIntegrationOutput$;
|
|
4844
|
+
exports.DeleteMembership$ = DeleteMembership$;
|
|
1685
4845
|
exports.DeleteMembershipCommand = DeleteMembershipCommand;
|
|
4846
|
+
exports.DeleteMembershipRequest$ = DeleteMembershipRequest$;
|
|
4847
|
+
exports.DeleteMembershipResponse$ = DeleteMembershipResponse$;
|
|
4848
|
+
exports.DeletePentestFailure$ = DeletePentestFailure$;
|
|
4849
|
+
exports.DeletePrivateConnection$ = DeletePrivateConnection$;
|
|
1686
4850
|
exports.DeletePrivateConnectionCommand = DeletePrivateConnectionCommand;
|
|
4851
|
+
exports.DeletePrivateConnectionInput$ = DeletePrivateConnectionInput$;
|
|
4852
|
+
exports.DeletePrivateConnectionOutput$ = DeletePrivateConnectionOutput$;
|
|
4853
|
+
exports.DeleteSecurityRequirementPack$ = DeleteSecurityRequirementPack$;
|
|
1687
4854
|
exports.DeleteSecurityRequirementPackCommand = DeleteSecurityRequirementPackCommand;
|
|
4855
|
+
exports.DeleteSecurityRequirementPackInput$ = DeleteSecurityRequirementPackInput$;
|
|
4856
|
+
exports.DeleteSecurityRequirementPackOutput$ = DeleteSecurityRequirementPackOutput$;
|
|
4857
|
+
exports.DeleteTargetDomain$ = DeleteTargetDomain$;
|
|
1688
4858
|
exports.DeleteTargetDomainCommand = DeleteTargetDomainCommand;
|
|
4859
|
+
exports.DeleteTargetDomainInput$ = DeleteTargetDomainInput$;
|
|
4860
|
+
exports.DeleteTargetDomainOutput$ = DeleteTargetDomainOutput$;
|
|
4861
|
+
exports.DeleteThreatModelFailure$ = DeleteThreatModelFailure$;
|
|
4862
|
+
exports.DescribePrivateConnection$ = DescribePrivateConnection$;
|
|
1689
4863
|
exports.DescribePrivateConnectionCommand = DescribePrivateConnectionCommand;
|
|
4864
|
+
exports.DescribePrivateConnectionInput$ = DescribePrivateConnectionInput$;
|
|
4865
|
+
exports.DescribePrivateConnectionOutput$ = DescribePrivateConnectionOutput$;
|
|
4866
|
+
exports.DiffSource$ = DiffSource$;
|
|
4867
|
+
exports.DiscoveredEndpoint$ = DiscoveredEndpoint$;
|
|
4868
|
+
exports.DnsVerification$ = DnsVerification$;
|
|
4869
|
+
exports.DocumentInfo$ = DocumentInfo$;
|
|
1690
4870
|
exports.DomainVerificationMethod = DomainVerificationMethod;
|
|
4871
|
+
exports.Endpoint$ = Endpoint$;
|
|
1691
4872
|
exports.ErrorCode = ErrorCode;
|
|
4873
|
+
exports.ErrorInformation$ = ErrorInformation$;
|
|
4874
|
+
exports.ExecutionContext$ = ExecutionContext$;
|
|
4875
|
+
exports.Finding$ = Finding$;
|
|
1692
4876
|
exports.FindingStatus = FindingStatus;
|
|
4877
|
+
exports.FindingSummary$ = FindingSummary$;
|
|
4878
|
+
exports.GetApplication$ = GetApplication$;
|
|
1693
4879
|
exports.GetApplicationCommand = GetApplicationCommand;
|
|
4880
|
+
exports.GetApplicationRequest$ = GetApplicationRequest$;
|
|
4881
|
+
exports.GetApplicationResponse$ = GetApplicationResponse$;
|
|
4882
|
+
exports.GetArtifact$ = GetArtifact$;
|
|
1694
4883
|
exports.GetArtifactCommand = GetArtifactCommand;
|
|
4884
|
+
exports.GetArtifactInput$ = GetArtifactInput$;
|
|
4885
|
+
exports.GetArtifactOutput$ = GetArtifactOutput$;
|
|
4886
|
+
exports.GetIntegration$ = GetIntegration$;
|
|
1695
4887
|
exports.GetIntegrationCommand = GetIntegrationCommand;
|
|
4888
|
+
exports.GetIntegrationInput$ = GetIntegrationInput$;
|
|
4889
|
+
exports.GetIntegrationOutput$ = GetIntegrationOutput$;
|
|
4890
|
+
exports.GetSecurityRequirementPack$ = GetSecurityRequirementPack$;
|
|
1696
4891
|
exports.GetSecurityRequirementPackCommand = GetSecurityRequirementPackCommand;
|
|
4892
|
+
exports.GetSecurityRequirementPackInput$ = GetSecurityRequirementPackInput$;
|
|
4893
|
+
exports.GetSecurityRequirementPackOutput$ = GetSecurityRequirementPackOutput$;
|
|
4894
|
+
exports.GitHubIntegrationInput$ = GitHubIntegrationInput$;
|
|
4895
|
+
exports.GitHubRepositoryMetadata$ = GitHubRepositoryMetadata$;
|
|
4896
|
+
exports.GitHubRepositoryResource$ = GitHubRepositoryResource$;
|
|
4897
|
+
exports.GitHubResourceCapabilities$ = GitHubResourceCapabilities$;
|
|
4898
|
+
exports.GitLabIntegrationInput$ = GitLabIntegrationInput$;
|
|
4899
|
+
exports.GitLabRepositoryMetadata$ = GitLabRepositoryMetadata$;
|
|
4900
|
+
exports.GitLabRepositoryResource$ = GitLabRepositoryResource$;
|
|
4901
|
+
exports.GitLabResourceCapabilities$ = GitLabResourceCapabilities$;
|
|
1697
4902
|
exports.GitLabTokenType = GitLabTokenType;
|
|
4903
|
+
exports.HttpVerification$ = HttpVerification$;
|
|
4904
|
+
exports.IdCConfiguration$ = IdCConfiguration$;
|
|
4905
|
+
exports.ImportSecurityRequirements$ = ImportSecurityRequirements$;
|
|
1698
4906
|
exports.ImportSecurityRequirementsCommand = ImportSecurityRequirementsCommand;
|
|
4907
|
+
exports.ImportSecurityRequirementsInput$ = ImportSecurityRequirementsInput$;
|
|
4908
|
+
exports.ImportSecurityRequirementsOutput$ = ImportSecurityRequirementsOutput$;
|
|
4909
|
+
exports.ImportSource$ = ImportSource$;
|
|
4910
|
+
exports.InitiateProviderRegistration$ = InitiateProviderRegistration$;
|
|
1699
4911
|
exports.InitiateProviderRegistrationCommand = InitiateProviderRegistrationCommand;
|
|
4912
|
+
exports.InitiateProviderRegistrationInput$ = InitiateProviderRegistrationInput$;
|
|
4913
|
+
exports.InitiateProviderRegistrationOutput$ = InitiateProviderRegistrationOutput$;
|
|
4914
|
+
exports.IntegratedDocument$ = IntegratedDocument$;
|
|
4915
|
+
exports.IntegratedRepository$ = IntegratedRepository$;
|
|
4916
|
+
exports.IntegratedResource$ = IntegratedResource$;
|
|
4917
|
+
exports.IntegratedResourceInputItem$ = IntegratedResourceInputItem$;
|
|
4918
|
+
exports.IntegratedResourceMetadata$ = IntegratedResourceMetadata$;
|
|
4919
|
+
exports.IntegratedResourceSummary$ = IntegratedResourceSummary$;
|
|
4920
|
+
exports.IntegrationFilter$ = IntegrationFilter$;
|
|
4921
|
+
exports.IntegrationSummary$ = IntegrationSummary$;
|
|
4922
|
+
exports.InternalServerException = InternalServerException;
|
|
4923
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
1700
4924
|
exports.IpAddressType = IpAddressType;
|
|
1701
4925
|
exports.JobStatus = JobStatus;
|
|
4926
|
+
exports.ListAgentSpaces$ = ListAgentSpaces$;
|
|
1702
4927
|
exports.ListAgentSpacesCommand = ListAgentSpacesCommand;
|
|
4928
|
+
exports.ListAgentSpacesInput$ = ListAgentSpacesInput$;
|
|
4929
|
+
exports.ListAgentSpacesOutput$ = ListAgentSpacesOutput$;
|
|
4930
|
+
exports.ListApplications$ = ListApplications$;
|
|
1703
4931
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
4932
|
+
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
4933
|
+
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
4934
|
+
exports.ListArtifacts$ = ListArtifacts$;
|
|
1704
4935
|
exports.ListArtifactsCommand = ListArtifactsCommand;
|
|
4936
|
+
exports.ListArtifactsInput$ = ListArtifactsInput$;
|
|
4937
|
+
exports.ListArtifactsOutput$ = ListArtifactsOutput$;
|
|
4938
|
+
exports.ListCodeReviewJobTasks$ = ListCodeReviewJobTasks$;
|
|
1705
4939
|
exports.ListCodeReviewJobTasksCommand = ListCodeReviewJobTasksCommand;
|
|
4940
|
+
exports.ListCodeReviewJobTasksInput$ = ListCodeReviewJobTasksInput$;
|
|
4941
|
+
exports.ListCodeReviewJobTasksOutput$ = ListCodeReviewJobTasksOutput$;
|
|
4942
|
+
exports.ListCodeReviewJobsForCodeReview$ = ListCodeReviewJobsForCodeReview$;
|
|
1706
4943
|
exports.ListCodeReviewJobsForCodeReviewCommand = ListCodeReviewJobsForCodeReviewCommand;
|
|
4944
|
+
exports.ListCodeReviewJobsForCodeReviewInput$ = ListCodeReviewJobsForCodeReviewInput$;
|
|
4945
|
+
exports.ListCodeReviewJobsForCodeReviewOutput$ = ListCodeReviewJobsForCodeReviewOutput$;
|
|
4946
|
+
exports.ListCodeReviews$ = ListCodeReviews$;
|
|
1707
4947
|
exports.ListCodeReviewsCommand = ListCodeReviewsCommand;
|
|
4948
|
+
exports.ListCodeReviewsInput$ = ListCodeReviewsInput$;
|
|
4949
|
+
exports.ListCodeReviewsOutput$ = ListCodeReviewsOutput$;
|
|
4950
|
+
exports.ListDiscoveredEndpoints$ = ListDiscoveredEndpoints$;
|
|
1708
4951
|
exports.ListDiscoveredEndpointsCommand = ListDiscoveredEndpointsCommand;
|
|
4952
|
+
exports.ListDiscoveredEndpointsInput$ = ListDiscoveredEndpointsInput$;
|
|
4953
|
+
exports.ListDiscoveredEndpointsOutput$ = ListDiscoveredEndpointsOutput$;
|
|
4954
|
+
exports.ListFindings$ = ListFindings$;
|
|
1709
4955
|
exports.ListFindingsCommand = ListFindingsCommand;
|
|
4956
|
+
exports.ListFindingsInput$ = ListFindingsInput$;
|
|
4957
|
+
exports.ListFindingsOutput$ = ListFindingsOutput$;
|
|
4958
|
+
exports.ListIntegratedResources$ = ListIntegratedResources$;
|
|
1710
4959
|
exports.ListIntegratedResourcesCommand = ListIntegratedResourcesCommand;
|
|
4960
|
+
exports.ListIntegratedResourcesInput$ = ListIntegratedResourcesInput$;
|
|
4961
|
+
exports.ListIntegratedResourcesOutput$ = ListIntegratedResourcesOutput$;
|
|
4962
|
+
exports.ListIntegrations$ = ListIntegrations$;
|
|
1711
4963
|
exports.ListIntegrationsCommand = ListIntegrationsCommand;
|
|
4964
|
+
exports.ListIntegrationsInput$ = ListIntegrationsInput$;
|
|
4965
|
+
exports.ListIntegrationsOutput$ = ListIntegrationsOutput$;
|
|
4966
|
+
exports.ListMemberships$ = ListMemberships$;
|
|
1712
4967
|
exports.ListMembershipsCommand = ListMembershipsCommand;
|
|
4968
|
+
exports.ListMembershipsRequest$ = ListMembershipsRequest$;
|
|
4969
|
+
exports.ListMembershipsResponse$ = ListMembershipsResponse$;
|
|
4970
|
+
exports.ListPentestJobTasks$ = ListPentestJobTasks$;
|
|
1713
4971
|
exports.ListPentestJobTasksCommand = ListPentestJobTasksCommand;
|
|
4972
|
+
exports.ListPentestJobTasksInput$ = ListPentestJobTasksInput$;
|
|
4973
|
+
exports.ListPentestJobTasksOutput$ = ListPentestJobTasksOutput$;
|
|
4974
|
+
exports.ListPentestJobsForPentest$ = ListPentestJobsForPentest$;
|
|
1714
4975
|
exports.ListPentestJobsForPentestCommand = ListPentestJobsForPentestCommand;
|
|
4976
|
+
exports.ListPentestJobsForPentestInput$ = ListPentestJobsForPentestInput$;
|
|
4977
|
+
exports.ListPentestJobsForPentestOutput$ = ListPentestJobsForPentestOutput$;
|
|
4978
|
+
exports.ListPentests$ = ListPentests$;
|
|
1715
4979
|
exports.ListPentestsCommand = ListPentestsCommand;
|
|
4980
|
+
exports.ListPentestsInput$ = ListPentestsInput$;
|
|
4981
|
+
exports.ListPentestsOutput$ = ListPentestsOutput$;
|
|
4982
|
+
exports.ListPrivateConnections$ = ListPrivateConnections$;
|
|
1716
4983
|
exports.ListPrivateConnectionsCommand = ListPrivateConnectionsCommand;
|
|
4984
|
+
exports.ListPrivateConnectionsInput$ = ListPrivateConnectionsInput$;
|
|
4985
|
+
exports.ListPrivateConnectionsOutput$ = ListPrivateConnectionsOutput$;
|
|
4986
|
+
exports.ListSecurityRequirementPackFilter$ = ListSecurityRequirementPackFilter$;
|
|
4987
|
+
exports.ListSecurityRequirementPacks$ = ListSecurityRequirementPacks$;
|
|
1717
4988
|
exports.ListSecurityRequirementPacksCommand = ListSecurityRequirementPacksCommand;
|
|
4989
|
+
exports.ListSecurityRequirementPacksInput$ = ListSecurityRequirementPacksInput$;
|
|
4990
|
+
exports.ListSecurityRequirementPacksOutput$ = ListSecurityRequirementPacksOutput$;
|
|
4991
|
+
exports.ListSecurityRequirements$ = ListSecurityRequirements$;
|
|
1718
4992
|
exports.ListSecurityRequirementsCommand = ListSecurityRequirementsCommand;
|
|
4993
|
+
exports.ListSecurityRequirementsInput$ = ListSecurityRequirementsInput$;
|
|
4994
|
+
exports.ListSecurityRequirementsOutput$ = ListSecurityRequirementsOutput$;
|
|
4995
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1719
4996
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4997
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
4998
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
4999
|
+
exports.ListTargetDomains$ = ListTargetDomains$;
|
|
1720
5000
|
exports.ListTargetDomainsCommand = ListTargetDomainsCommand;
|
|
5001
|
+
exports.ListTargetDomainsInput$ = ListTargetDomainsInput$;
|
|
5002
|
+
exports.ListTargetDomainsOutput$ = ListTargetDomainsOutput$;
|
|
5003
|
+
exports.ListThreatModelJobTasks$ = ListThreatModelJobTasks$;
|
|
1721
5004
|
exports.ListThreatModelJobTasksCommand = ListThreatModelJobTasksCommand;
|
|
5005
|
+
exports.ListThreatModelJobTasksInput$ = ListThreatModelJobTasksInput$;
|
|
5006
|
+
exports.ListThreatModelJobTasksOutput$ = ListThreatModelJobTasksOutput$;
|
|
5007
|
+
exports.ListThreatModelJobs$ = ListThreatModelJobs$;
|
|
1722
5008
|
exports.ListThreatModelJobsCommand = ListThreatModelJobsCommand;
|
|
5009
|
+
exports.ListThreatModelJobsInput$ = ListThreatModelJobsInput$;
|
|
5010
|
+
exports.ListThreatModelJobsOutput$ = ListThreatModelJobsOutput$;
|
|
5011
|
+
exports.ListThreatModels$ = ListThreatModels$;
|
|
1723
5012
|
exports.ListThreatModelsCommand = ListThreatModelsCommand;
|
|
5013
|
+
exports.ListThreatModelsInput$ = ListThreatModelsInput$;
|
|
5014
|
+
exports.ListThreatModelsOutput$ = ListThreatModelsOutput$;
|
|
5015
|
+
exports.ListThreats$ = ListThreats$;
|
|
1724
5016
|
exports.ListThreatsCommand = ListThreatsCommand;
|
|
5017
|
+
exports.ListThreatsInput$ = ListThreatsInput$;
|
|
5018
|
+
exports.ListThreatsOutput$ = ListThreatsOutput$;
|
|
5019
|
+
exports.LogLocation$ = LogLocation$;
|
|
1725
5020
|
exports.LogType = LogType;
|
|
1726
5021
|
exports.ManagementType = ManagementType;
|
|
5022
|
+
exports.MemberMetadata$ = MemberMetadata$;
|
|
5023
|
+
exports.MembershipConfig$ = MembershipConfig$;
|
|
5024
|
+
exports.MembershipSummary$ = MembershipSummary$;
|
|
1727
5025
|
exports.MembershipType = MembershipType;
|
|
1728
5026
|
exports.MembershipTypeFilter = MembershipTypeFilter;
|
|
5027
|
+
exports.NetworkTrafficConfig$ = NetworkTrafficConfig$;
|
|
5028
|
+
exports.NetworkTrafficRule$ = NetworkTrafficRule$;
|
|
1729
5029
|
exports.NetworkTrafficRuleEffect = NetworkTrafficRuleEffect;
|
|
1730
5030
|
exports.NetworkTrafficRuleType = NetworkTrafficRuleType;
|
|
5031
|
+
exports.Pentest$ = Pentest$;
|
|
5032
|
+
exports.PentestJob$ = PentestJob$;
|
|
5033
|
+
exports.PentestJobSummary$ = PentestJobSummary$;
|
|
5034
|
+
exports.PentestSummary$ = PentestSummary$;
|
|
5035
|
+
exports.PrivateConnectionMode$ = PrivateConnectionMode$;
|
|
1731
5036
|
exports.PrivateConnectionStatus = PrivateConnectionStatus;
|
|
5037
|
+
exports.PrivateConnectionSummary$ = PrivateConnectionSummary$;
|
|
1732
5038
|
exports.PrivateConnectionType = PrivateConnectionType;
|
|
1733
5039
|
exports.Provider = Provider;
|
|
5040
|
+
exports.ProviderInput$ = ProviderInput$;
|
|
5041
|
+
exports.ProviderResourceCapabilities$ = ProviderResourceCapabilities$;
|
|
1734
5042
|
exports.ProviderType = ProviderType;
|
|
5043
|
+
exports.ReportDestination$ = ReportDestination$;
|
|
1735
5044
|
exports.ResourceConfigDnsResolution = ResourceConfigDnsResolution;
|
|
5045
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
5046
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1736
5047
|
exports.ResourceType = ResourceType;
|
|
1737
5048
|
exports.RiskLevel = RiskLevel;
|
|
1738
5049
|
exports.RiskType = RiskType;
|
|
1739
5050
|
exports.SecurityAgent = SecurityAgent;
|
|
1740
5051
|
exports.SecurityAgentClient = SecurityAgentClient;
|
|
5052
|
+
exports.SecurityAgentServiceException = SecurityAgentServiceException;
|
|
5053
|
+
exports.SecurityAgentServiceException$ = SecurityAgentServiceException$;
|
|
5054
|
+
exports.SecurityRequirementArtifact$ = SecurityRequirementArtifact$;
|
|
1741
5055
|
exports.SecurityRequirementArtifactFormat = SecurityRequirementArtifactFormat;
|
|
1742
5056
|
exports.SecurityRequirementPackImportStatus = SecurityRequirementPackImportStatus;
|
|
1743
5057
|
exports.SecurityRequirementPackStatus = SecurityRequirementPackStatus;
|
|
5058
|
+
exports.SecurityRequirementPackSummary$ = SecurityRequirementPackSummary$;
|
|
5059
|
+
exports.SecurityRequirementSummary$ = SecurityRequirementSummary$;
|
|
5060
|
+
exports.SelfManagedInput$ = SelfManagedInput$;
|
|
5061
|
+
exports.ServiceManagedInput$ = ServiceManagedInput$;
|
|
5062
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
5063
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1744
5064
|
exports.SkillType = SkillType;
|
|
5065
|
+
exports.SourceCodeRepository$ = SourceCodeRepository$;
|
|
5066
|
+
exports.StartCodeRemediation$ = StartCodeRemediation$;
|
|
1745
5067
|
exports.StartCodeRemediationCommand = StartCodeRemediationCommand;
|
|
5068
|
+
exports.StartCodeRemediationInput$ = StartCodeRemediationInput$;
|
|
5069
|
+
exports.StartCodeRemediationOutput$ = StartCodeRemediationOutput$;
|
|
5070
|
+
exports.StartCodeReviewJob$ = StartCodeReviewJob$;
|
|
1746
5071
|
exports.StartCodeReviewJobCommand = StartCodeReviewJobCommand;
|
|
5072
|
+
exports.StartCodeReviewJobInput$ = StartCodeReviewJobInput$;
|
|
5073
|
+
exports.StartCodeReviewJobOutput$ = StartCodeReviewJobOutput$;
|
|
5074
|
+
exports.StartPentestJob$ = StartPentestJob$;
|
|
1747
5075
|
exports.StartPentestJobCommand = StartPentestJobCommand;
|
|
5076
|
+
exports.StartPentestJobInput$ = StartPentestJobInput$;
|
|
5077
|
+
exports.StartPentestJobOutput$ = StartPentestJobOutput$;
|
|
5078
|
+
exports.StartThreatModelJob$ = StartThreatModelJob$;
|
|
1748
5079
|
exports.StartThreatModelJobCommand = StartThreatModelJobCommand;
|
|
5080
|
+
exports.StartThreatModelJobInput$ = StartThreatModelJobInput$;
|
|
5081
|
+
exports.StartThreatModelJobOutput$ = StartThreatModelJobOutput$;
|
|
5082
|
+
exports.Step$ = Step$;
|
|
1749
5083
|
exports.StepName = StepName;
|
|
1750
5084
|
exports.StepStatus = StepStatus;
|
|
5085
|
+
exports.StopCodeReviewJob$ = StopCodeReviewJob$;
|
|
1751
5086
|
exports.StopCodeReviewJobCommand = StopCodeReviewJobCommand;
|
|
5087
|
+
exports.StopCodeReviewJobInput$ = StopCodeReviewJobInput$;
|
|
5088
|
+
exports.StopCodeReviewJobOutput$ = StopCodeReviewJobOutput$;
|
|
5089
|
+
exports.StopPentestJob$ = StopPentestJob$;
|
|
1752
5090
|
exports.StopPentestJobCommand = StopPentestJobCommand;
|
|
5091
|
+
exports.StopPentestJobInput$ = StopPentestJobInput$;
|
|
5092
|
+
exports.StopPentestJobOutput$ = StopPentestJobOutput$;
|
|
5093
|
+
exports.StopThreatModelJob$ = StopThreatModelJob$;
|
|
1753
5094
|
exports.StopThreatModelJobCommand = StopThreatModelJobCommand;
|
|
5095
|
+
exports.StopThreatModelJobInput$ = StopThreatModelJobInput$;
|
|
5096
|
+
exports.StopThreatModelJobOutput$ = StopThreatModelJobOutput$;
|
|
1754
5097
|
exports.StrideCategory = StrideCategory;
|
|
5098
|
+
exports.TagResource$ = TagResource$;
|
|
1755
5099
|
exports.TagResourceCommand = TagResourceCommand;
|
|
5100
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
5101
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
5102
|
+
exports.TargetDomain$ = TargetDomain$;
|
|
1756
5103
|
exports.TargetDomainStatus = TargetDomainStatus;
|
|
5104
|
+
exports.TargetDomainSummary$ = TargetDomainSummary$;
|
|
5105
|
+
exports.Task$ = Task$;
|
|
1757
5106
|
exports.TaskExecutionStatus = TaskExecutionStatus;
|
|
5107
|
+
exports.TaskSummary$ = TaskSummary$;
|
|
5108
|
+
exports.Threat$ = Threat$;
|
|
1758
5109
|
exports.ThreatActor = ThreatActor;
|
|
5110
|
+
exports.ThreatAnchorShape$ = ThreatAnchorShape$;
|
|
5111
|
+
exports.ThreatEvidenceShape$ = ThreatEvidenceShape$;
|
|
5112
|
+
exports.ThreatModel$ = ThreatModel$;
|
|
5113
|
+
exports.ThreatModelJob$ = ThreatModelJob$;
|
|
5114
|
+
exports.ThreatModelJobSummary$ = ThreatModelJobSummary$;
|
|
5115
|
+
exports.ThreatModelJobTask$ = ThreatModelJobTask$;
|
|
5116
|
+
exports.ThreatModelJobTaskSummary$ = ThreatModelJobTaskSummary$;
|
|
5117
|
+
exports.ThreatModelSummary$ = ThreatModelSummary$;
|
|
1759
5118
|
exports.ThreatSeverity = ThreatSeverity;
|
|
1760
5119
|
exports.ThreatStatus = ThreatStatus;
|
|
5120
|
+
exports.ThreatSummary$ = ThreatSummary$;
|
|
5121
|
+
exports.ThrottlingException = ThrottlingException;
|
|
5122
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
5123
|
+
exports.UntagResource$ = UntagResource$;
|
|
1761
5124
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
5125
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
5126
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
5127
|
+
exports.UpdateAgentSpace$ = UpdateAgentSpace$;
|
|
1762
5128
|
exports.UpdateAgentSpaceCommand = UpdateAgentSpaceCommand;
|
|
5129
|
+
exports.UpdateAgentSpaceInput$ = UpdateAgentSpaceInput$;
|
|
5130
|
+
exports.UpdateAgentSpaceOutput$ = UpdateAgentSpaceOutput$;
|
|
5131
|
+
exports.UpdateApplication$ = UpdateApplication$;
|
|
1763
5132
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
5133
|
+
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
5134
|
+
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
5135
|
+
exports.UpdateCodeReview$ = UpdateCodeReview$;
|
|
1764
5136
|
exports.UpdateCodeReviewCommand = UpdateCodeReviewCommand;
|
|
5137
|
+
exports.UpdateCodeReviewInput$ = UpdateCodeReviewInput$;
|
|
5138
|
+
exports.UpdateCodeReviewOutput$ = UpdateCodeReviewOutput$;
|
|
5139
|
+
exports.UpdateFinding$ = UpdateFinding$;
|
|
1765
5140
|
exports.UpdateFindingCommand = UpdateFindingCommand;
|
|
5141
|
+
exports.UpdateFindingInput$ = UpdateFindingInput$;
|
|
5142
|
+
exports.UpdateFindingOutput$ = UpdateFindingOutput$;
|
|
5143
|
+
exports.UpdateIntegratedResources$ = UpdateIntegratedResources$;
|
|
1766
5144
|
exports.UpdateIntegratedResourcesCommand = UpdateIntegratedResourcesCommand;
|
|
5145
|
+
exports.UpdateIntegratedResourcesInput$ = UpdateIntegratedResourcesInput$;
|
|
5146
|
+
exports.UpdateIntegratedResourcesOutput$ = UpdateIntegratedResourcesOutput$;
|
|
5147
|
+
exports.UpdatePentest$ = UpdatePentest$;
|
|
1767
5148
|
exports.UpdatePentestCommand = UpdatePentestCommand;
|
|
5149
|
+
exports.UpdatePentestInput$ = UpdatePentestInput$;
|
|
5150
|
+
exports.UpdatePentestOutput$ = UpdatePentestOutput$;
|
|
5151
|
+
exports.UpdatePrivateConnectionCertificate$ = UpdatePrivateConnectionCertificate$;
|
|
1768
5152
|
exports.UpdatePrivateConnectionCertificateCommand = UpdatePrivateConnectionCertificateCommand;
|
|
5153
|
+
exports.UpdatePrivateConnectionCertificateInput$ = UpdatePrivateConnectionCertificateInput$;
|
|
5154
|
+
exports.UpdatePrivateConnectionCertificateOutput$ = UpdatePrivateConnectionCertificateOutput$;
|
|
5155
|
+
exports.UpdateSecurityRequirementEntry$ = UpdateSecurityRequirementEntry$;
|
|
5156
|
+
exports.UpdateSecurityRequirementPack$ = UpdateSecurityRequirementPack$;
|
|
1769
5157
|
exports.UpdateSecurityRequirementPackCommand = UpdateSecurityRequirementPackCommand;
|
|
5158
|
+
exports.UpdateSecurityRequirementPackInput$ = UpdateSecurityRequirementPackInput$;
|
|
5159
|
+
exports.UpdateSecurityRequirementPackOutput$ = UpdateSecurityRequirementPackOutput$;
|
|
5160
|
+
exports.UpdateTargetDomain$ = UpdateTargetDomain$;
|
|
1770
5161
|
exports.UpdateTargetDomainCommand = UpdateTargetDomainCommand;
|
|
5162
|
+
exports.UpdateTargetDomainInput$ = UpdateTargetDomainInput$;
|
|
5163
|
+
exports.UpdateTargetDomainOutput$ = UpdateTargetDomainOutput$;
|
|
5164
|
+
exports.UpdateThreat$ = UpdateThreat$;
|
|
1771
5165
|
exports.UpdateThreatCommand = UpdateThreatCommand;
|
|
5166
|
+
exports.UpdateThreatInput$ = UpdateThreatInput$;
|
|
5167
|
+
exports.UpdateThreatModel$ = UpdateThreatModel$;
|
|
1772
5168
|
exports.UpdateThreatModelCommand = UpdateThreatModelCommand;
|
|
5169
|
+
exports.UpdateThreatModelInput$ = UpdateThreatModelInput$;
|
|
5170
|
+
exports.UpdateThreatModelOutput$ = UpdateThreatModelOutput$;
|
|
5171
|
+
exports.UpdateThreatOutput$ = UpdateThreatOutput$;
|
|
5172
|
+
exports.UserConfig$ = UserConfig$;
|
|
5173
|
+
exports.UserMetadata$ = UserMetadata$;
|
|
1773
5174
|
exports.UserRole = UserRole;
|
|
5175
|
+
exports.ValidationException = ValidationException;
|
|
5176
|
+
exports.ValidationException$ = ValidationException$;
|
|
5177
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
1774
5178
|
exports.ValidationMode = ValidationMode;
|
|
1775
5179
|
exports.ValidationStatus = ValidationStatus;
|
|
5180
|
+
exports.VerificationDetails$ = VerificationDetails$;
|
|
5181
|
+
exports.VerificationScript$ = VerificationScript$;
|
|
5182
|
+
exports.VerificationScriptEnvVar$ = VerificationScriptEnvVar$;
|
|
5183
|
+
exports.VerifyTargetDomain$ = VerifyTargetDomain$;
|
|
1776
5184
|
exports.VerifyTargetDomainCommand = VerifyTargetDomainCommand;
|
|
5185
|
+
exports.VerifyTargetDomainInput$ = VerifyTargetDomainInput$;
|
|
5186
|
+
exports.VerifyTargetDomainOutput$ = VerifyTargetDomainOutput$;
|
|
5187
|
+
exports.VpcConfig$ = VpcConfig$;
|
|
5188
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1777
5189
|
exports.paginateListAgentSpaces = paginateListAgentSpaces;
|
|
1778
5190
|
exports.paginateListApplications = paginateListApplications;
|
|
1779
5191
|
exports.paginateListArtifacts = paginateListArtifacts;
|