@aws-sdk/client-securityagent 3.1041.0 → 3.1042.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/README.md +1 -1
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/schemas/schemas_0.js +9 -8
- package/dist-es/models/enums.js +1 -0
- package/dist-es/schemas/schemas_0.js +9 -8
- package/dist-types/SecurityAgent.d.ts +1 -1
- package/dist-types/SecurityAgentClient.d.ts +1 -1
- package/dist-types/commands/AddArtifactCommand.d.ts +6 -8
- package/dist-types/commands/BatchDeletePentestsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetAgentSpacesCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetArtifactMetadataCommand.d.ts +6 -8
- package/dist-types/commands/BatchGetFindingsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetPentestJobTasksCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetPentestJobsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetPentestsCommand.d.ts +1 -1
- package/dist-types/commands/BatchGetTargetDomainsCommand.d.ts +3 -2
- package/dist-types/commands/CreateAgentSpaceCommand.d.ts +1 -1
- package/dist-types/commands/CreateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/CreateIntegrationCommand.d.ts +7 -9
- package/dist-types/commands/CreateMembershipCommand.d.ts +1 -1
- package/dist-types/commands/CreatePentestCommand.d.ts +1 -1
- package/dist-types/commands/CreateTargetDomainCommand.d.ts +4 -3
- package/dist-types/commands/DeleteAgentSpaceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteArtifactCommand.d.ts +6 -8
- package/dist-types/commands/DeleteIntegrationCommand.d.ts +7 -9
- package/dist-types/commands/DeleteMembershipCommand.d.ts +1 -1
- package/dist-types/commands/DeleteTargetDomainCommand.d.ts +1 -1
- package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
- package/dist-types/commands/GetArtifactCommand.d.ts +6 -8
- package/dist-types/commands/GetIntegrationCommand.d.ts +6 -8
- package/dist-types/commands/InitiateProviderRegistrationCommand.d.ts +7 -9
- package/dist-types/commands/ListAgentSpacesCommand.d.ts +1 -1
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -1
- package/dist-types/commands/ListArtifactsCommand.d.ts +6 -8
- package/dist-types/commands/ListDiscoveredEndpointsCommand.d.ts +1 -1
- package/dist-types/commands/ListFindingsCommand.d.ts +1 -1
- package/dist-types/commands/ListIntegratedResourcesCommand.d.ts +6 -8
- package/dist-types/commands/ListIntegrationsCommand.d.ts +8 -5
- package/dist-types/commands/ListMembershipsCommand.d.ts +1 -1
- package/dist-types/commands/ListPentestJobTasksCommand.d.ts +1 -1
- package/dist-types/commands/ListPentestJobsForPentestCommand.d.ts +1 -1
- package/dist-types/commands/ListPentestsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListTargetDomainsCommand.d.ts +1 -1
- package/dist-types/commands/StartCodeRemediationCommand.d.ts +1 -1
- package/dist-types/commands/StartPentestJobCommand.d.ts +1 -1
- package/dist-types/commands/StopPentestJobCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateAgentSpaceCommand.d.ts +1 -1
- package/dist-types/commands/UpdateApplicationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFindingCommand.d.ts +1 -1
- package/dist-types/commands/UpdateIntegratedResourcesCommand.d.ts +7 -9
- package/dist-types/commands/UpdatePentestCommand.d.ts +1 -1
- package/dist-types/commands/UpdateTargetDomainCommand.d.ts +4 -3
- package/dist-types/commands/VerifyTargetDomainCommand.d.ts +2 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/enums.d.ts +81 -77
- package/dist-types/models/errors.d.ts +9 -12
- package/dist-types/models/models_0.d.ts +679 -659
- package/dist-types/ts3.4/models/enums.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +4 -0
- package/package.json +1 -1
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export declare const AccessType: {
|
|
6
6
|
/**
|
|
7
|
-
* Resource is private and has restricted access
|
|
7
|
+
* <p>Resource is private and has restricted access.</p>
|
|
8
8
|
*/
|
|
9
9
|
readonly PRIVATE: "PRIVATE";
|
|
10
10
|
/**
|
|
11
|
-
* Resource is public and openly accessible
|
|
11
|
+
* <p>Resource is public and openly accessible.</p>
|
|
12
12
|
*/
|
|
13
13
|
readonly PUBLIC: "PUBLIC";
|
|
14
14
|
};
|
|
@@ -22,19 +22,19 @@ export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
|
22
22
|
*/
|
|
23
23
|
export declare const AuthenticationProviderType: {
|
|
24
24
|
/**
|
|
25
|
-
* Authentication using an AWS IAM role
|
|
25
|
+
* <p>Authentication using an AWS IAM role.</p>
|
|
26
26
|
*/
|
|
27
27
|
readonly AWS_IAM_ROLE: "AWS_IAM_ROLE";
|
|
28
28
|
/**
|
|
29
|
-
* Internal AWS authentication
|
|
29
|
+
* <p>Internal AWS authentication.</p>
|
|
30
30
|
*/
|
|
31
31
|
readonly AWS_INTERNAL: "AWS_INTERNAL";
|
|
32
32
|
/**
|
|
33
|
-
* Credentials retrieved via AWS Lambda function
|
|
33
|
+
* <p>Credentials retrieved via AWS Lambda function.</p>
|
|
34
34
|
*/
|
|
35
35
|
readonly AWS_LAMBDA: "AWS_LAMBDA";
|
|
36
36
|
/**
|
|
37
|
-
* Credentials stored in AWS Secrets Manager
|
|
37
|
+
* <p>Credentials stored in AWS Secrets Manager.</p>
|
|
38
38
|
*/
|
|
39
39
|
readonly SECRETS_MANAGER: "SECRETS_MANAGER";
|
|
40
40
|
};
|
|
@@ -67,11 +67,11 @@ export type ArtifactType = (typeof ArtifactType)[keyof typeof ArtifactType];
|
|
|
67
67
|
*/
|
|
68
68
|
export declare const CodeRemediationStrategy: {
|
|
69
69
|
/**
|
|
70
|
-
* Automatically generate code remediation for findings
|
|
70
|
+
* <p>Automatically generate code remediation for findings.</p>
|
|
71
71
|
*/
|
|
72
72
|
readonly AUTOMATIC: "AUTOMATIC";
|
|
73
73
|
/**
|
|
74
|
-
* Code remediation is disabled
|
|
74
|
+
* <p>Code remediation is disabled.</p>
|
|
75
75
|
*/
|
|
76
76
|
readonly DISABLED: "DISABLED";
|
|
77
77
|
};
|
|
@@ -85,115 +85,115 @@ export type CodeRemediationStrategy = (typeof CodeRemediationStrategy)[keyof typ
|
|
|
85
85
|
*/
|
|
86
86
|
export declare const RiskType: {
|
|
87
87
|
/**
|
|
88
|
-
* Arbitrary file upload vulnerability
|
|
88
|
+
* <p>Arbitrary file upload vulnerability.</p>
|
|
89
89
|
*/
|
|
90
90
|
readonly ARBITRARY_FILE_UPLOAD: "ARBITRARY_FILE_UPLOAD";
|
|
91
91
|
/**
|
|
92
|
-
* Business logic vulnerability
|
|
92
|
+
* <p>Business logic vulnerability.</p>
|
|
93
93
|
*/
|
|
94
94
|
readonly BUSINESS_LOGIC_VULNERABILITIES: "BUSINESS_LOGIC_VULNERABILITIES";
|
|
95
95
|
/**
|
|
96
|
-
* Code injection vulnerability
|
|
96
|
+
* <p>Code injection vulnerability.</p>
|
|
97
97
|
*/
|
|
98
98
|
readonly CODE_INJECTION: "CODE_INJECTION";
|
|
99
99
|
/**
|
|
100
|
-
* Command injection vulnerability
|
|
100
|
+
* <p>Command injection vulnerability.</p>
|
|
101
101
|
*/
|
|
102
102
|
readonly COMMAND_INJECTION: "COMMAND_INJECTION";
|
|
103
103
|
/**
|
|
104
|
-
* Cross-site scripting vulnerability
|
|
104
|
+
* <p>Cross-site scripting vulnerability.</p>
|
|
105
105
|
*/
|
|
106
106
|
readonly CROSS_SITE_SCRIPTING: "CROSS_SITE_SCRIPTING";
|
|
107
107
|
/**
|
|
108
|
-
* Cryptographic vulnerability
|
|
108
|
+
* <p>Cryptographic vulnerability.</p>
|
|
109
109
|
*/
|
|
110
110
|
readonly CRYPTOGRAPHIC_VULNERABILITIES: "CRYPTOGRAPHIC_VULNERABILITIES";
|
|
111
111
|
/**
|
|
112
|
-
* Unauthorized database access
|
|
112
|
+
* <p>Unauthorized database access.</p>
|
|
113
113
|
*/
|
|
114
114
|
readonly DATABASE_ACCESS: "DATABASE_ACCESS";
|
|
115
115
|
/**
|
|
116
|
-
* Unauthorized database modification
|
|
116
|
+
* <p>Unauthorized database modification.</p>
|
|
117
117
|
*/
|
|
118
118
|
readonly DATABASE_MODIFICATION: "DATABASE_MODIFICATION";
|
|
119
119
|
/**
|
|
120
|
-
* Default or weak credentials detected
|
|
120
|
+
* <p>Default or weak credentials detected.</p>
|
|
121
121
|
*/
|
|
122
122
|
readonly DEFAULT_CREDENTIALS: "DEFAULT_CREDENTIALS";
|
|
123
123
|
/**
|
|
124
|
-
* Denial of service vulnerability
|
|
124
|
+
* <p>Denial of service vulnerability.</p>
|
|
125
125
|
*/
|
|
126
126
|
readonly DENIAL_OF_SERVICE: "DENIAL_OF_SERVICE";
|
|
127
127
|
/**
|
|
128
|
-
* Unauthorized file access vulnerability
|
|
128
|
+
* <p>Unauthorized file access vulnerability.</p>
|
|
129
129
|
*/
|
|
130
130
|
readonly FILE_ACCESS: "FILE_ACCESS";
|
|
131
131
|
/**
|
|
132
|
-
* Unauthorized file creation vulnerability
|
|
132
|
+
* <p>Unauthorized file creation vulnerability.</p>
|
|
133
133
|
*/
|
|
134
134
|
readonly FILE_CREATION: "FILE_CREATION";
|
|
135
135
|
/**
|
|
136
|
-
* File deletion vulnerability
|
|
136
|
+
* <p>File deletion vulnerability.</p>
|
|
137
137
|
*/
|
|
138
138
|
readonly FILE_DELETION: "FILE_DELETION";
|
|
139
139
|
/**
|
|
140
|
-
* GraphQL-specific vulnerability
|
|
140
|
+
* <p>GraphQL-specific vulnerability.</p>
|
|
141
141
|
*/
|
|
142
142
|
readonly GRAPHQL_VULNERABILITIES: "GRAPHQL_VULNERABILITIES";
|
|
143
143
|
/**
|
|
144
|
-
* Information disclosure vulnerability
|
|
144
|
+
* <p>Information disclosure vulnerability.</p>
|
|
145
145
|
*/
|
|
146
146
|
readonly INFORMATION_DISCLOSURE: "INFORMATION_DISCLOSURE";
|
|
147
147
|
/**
|
|
148
|
-
* Insecure deserialization vulnerability
|
|
148
|
+
* <p>Insecure deserialization vulnerability.</p>
|
|
149
149
|
*/
|
|
150
150
|
readonly INSECURE_DESERIALIZATION: "INSECURE_DESERIALIZATION";
|
|
151
151
|
/**
|
|
152
|
-
* Insecure direct object reference vulnerability
|
|
152
|
+
* <p>Insecure direct object reference vulnerability.</p>
|
|
153
153
|
*/
|
|
154
154
|
readonly INSECURE_DIRECT_OBJECT_REFERENCE: "INSECURE_DIRECT_OBJECT_REFERENCE";
|
|
155
155
|
/**
|
|
156
|
-
* JSON Web Token vulnerability
|
|
156
|
+
* <p>JSON Web Token vulnerability.</p>
|
|
157
157
|
*/
|
|
158
158
|
readonly JSON_WEB_TOKEN_VULNERABILITIES: "JSON_WEB_TOKEN_VULNERABILITIES";
|
|
159
159
|
/**
|
|
160
|
-
* Local file inclusion vulnerability
|
|
160
|
+
* <p>Local file inclusion vulnerability.</p>
|
|
161
161
|
*/
|
|
162
162
|
readonly LOCAL_FILE_INCLUSION: "LOCAL_FILE_INCLUSION";
|
|
163
163
|
/**
|
|
164
|
-
* Other risk type not covered by specific categories
|
|
164
|
+
* <p>Other risk type not covered by specific categories.</p>
|
|
165
165
|
*/
|
|
166
166
|
readonly OTHER: "OTHER";
|
|
167
167
|
/**
|
|
168
|
-
* Outbound service request vulnerability
|
|
168
|
+
* <p>Outbound service request vulnerability.</p>
|
|
169
169
|
*/
|
|
170
170
|
readonly OUTBOUND_SERVICE_REQUEST: "OUTBOUND_SERVICE_REQUEST";
|
|
171
171
|
/**
|
|
172
|
-
* Path traversal vulnerability
|
|
172
|
+
* <p>Path traversal vulnerability.</p>
|
|
173
173
|
*/
|
|
174
174
|
readonly PATH_TRAVERSAL: "PATH_TRAVERSAL";
|
|
175
175
|
/**
|
|
176
|
-
* Privilege escalation vulnerability
|
|
176
|
+
* <p>Privilege escalation vulnerability.</p>
|
|
177
177
|
*/
|
|
178
178
|
readonly PRIVILEGE_ESCALATION: "PRIVILEGE_ESCALATION";
|
|
179
179
|
/**
|
|
180
|
-
* Server-side request forgery vulnerability
|
|
180
|
+
* <p>Server-side request forgery vulnerability.</p>
|
|
181
181
|
*/
|
|
182
182
|
readonly SERVER_SIDE_REQUEST_FORGERY: "SERVER_SIDE_REQUEST_FORGERY";
|
|
183
183
|
/**
|
|
184
|
-
* Server-side template injection vulnerability
|
|
184
|
+
* <p>Server-side template injection vulnerability.</p>
|
|
185
185
|
*/
|
|
186
186
|
readonly SERVER_SIDE_TEMPLATE_INJECTION: "SERVER_SIDE_TEMPLATE_INJECTION";
|
|
187
187
|
/**
|
|
188
|
-
* SQL injection vulnerability
|
|
188
|
+
* <p>SQL injection vulnerability.</p>
|
|
189
189
|
*/
|
|
190
190
|
readonly SQL_INJECTION: "SQL_INJECTION";
|
|
191
191
|
/**
|
|
192
|
-
* Unknown risk type
|
|
192
|
+
* <p>Unknown risk type.</p>
|
|
193
193
|
*/
|
|
194
194
|
readonly UNKNOWN: "UNKNOWN";
|
|
195
195
|
/**
|
|
196
|
-
* XML external entity vulnerability
|
|
196
|
+
* <p>XML external entity vulnerability.</p>
|
|
197
197
|
*/
|
|
198
198
|
readonly XML_EXTERNAL_ENTITY: "XML_EXTERNAL_ENTITY";
|
|
199
199
|
};
|
|
@@ -207,11 +207,11 @@ export type RiskType = (typeof RiskType)[keyof typeof RiskType];
|
|
|
207
207
|
*/
|
|
208
208
|
export declare const NetworkTrafficRuleEffect: {
|
|
209
209
|
/**
|
|
210
|
-
* Allow matching traffic
|
|
210
|
+
* <p>Allow matching traffic.</p>
|
|
211
211
|
*/
|
|
212
212
|
readonly ALLOW: "ALLOW";
|
|
213
213
|
/**
|
|
214
|
-
* Deny matching traffic
|
|
214
|
+
* <p>Deny matching traffic.</p>
|
|
215
215
|
*/
|
|
216
216
|
readonly DENY: "DENY";
|
|
217
217
|
};
|
|
@@ -225,7 +225,7 @@ export type NetworkTrafficRuleEffect = (typeof NetworkTrafficRuleEffect)[keyof t
|
|
|
225
225
|
*/
|
|
226
226
|
export declare const NetworkTrafficRuleType: {
|
|
227
227
|
/**
|
|
228
|
-
* URL-based traffic rule
|
|
228
|
+
* <p>URL-based traffic rule.</p>
|
|
229
229
|
*/
|
|
230
230
|
readonly URL: "URL";
|
|
231
231
|
};
|
|
@@ -297,15 +297,15 @@ export type FindingStatus = (typeof FindingStatus)[keyof typeof FindingStatus];
|
|
|
297
297
|
*/
|
|
298
298
|
export declare const ErrorCode: {
|
|
299
299
|
/**
|
|
300
|
-
* Failure caused by a client-side error
|
|
300
|
+
* <p>Failure caused by a client-side error.</p>
|
|
301
301
|
*/
|
|
302
302
|
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
303
303
|
/**
|
|
304
|
-
* Failure caused by an internal error
|
|
304
|
+
* <p>Failure caused by an internal error.</p>
|
|
305
305
|
*/
|
|
306
306
|
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
307
307
|
/**
|
|
308
|
-
* Pentest job was stopped by the user
|
|
308
|
+
* <p>Pentest job was stopped by the user.</p>
|
|
309
309
|
*/
|
|
310
310
|
readonly STOPPED_BY_USER: "STOPPED_BY_USER";
|
|
311
311
|
};
|
|
@@ -319,19 +319,19 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
|
|
|
319
319
|
*/
|
|
320
320
|
export declare const ContextType: {
|
|
321
321
|
/**
|
|
322
|
-
* Client-side error encountered during execution
|
|
322
|
+
* <p>Client-side error encountered during execution.</p>
|
|
323
323
|
*/
|
|
324
324
|
readonly CLIENT_ERROR: "CLIENT_ERROR";
|
|
325
325
|
/**
|
|
326
|
-
* Error encountered during execution
|
|
326
|
+
* <p>Error encountered during execution.</p>
|
|
327
327
|
*/
|
|
328
328
|
readonly ERROR: "ERROR";
|
|
329
329
|
/**
|
|
330
|
-
* Informational message during execution
|
|
330
|
+
* <p>Informational message during execution.</p>
|
|
331
331
|
*/
|
|
332
332
|
readonly INFO: "INFO";
|
|
333
333
|
/**
|
|
334
|
-
* Warning encountered during execution
|
|
334
|
+
* <p>Warning encountered during execution.</p>
|
|
335
335
|
*/
|
|
336
336
|
readonly WARNING: "WARNING";
|
|
337
337
|
};
|
|
@@ -345,23 +345,23 @@ export type ContextType = (typeof ContextType)[keyof typeof ContextType];
|
|
|
345
345
|
*/
|
|
346
346
|
export declare const JobStatus: {
|
|
347
347
|
/**
|
|
348
|
-
* Pentest job completed successfully
|
|
348
|
+
* <p>Pentest job completed successfully.</p>
|
|
349
349
|
*/
|
|
350
350
|
readonly COMPLETED: "COMPLETED";
|
|
351
351
|
/**
|
|
352
|
-
* Pentest job failed during execution
|
|
352
|
+
* <p>Pentest job failed during execution.</p>
|
|
353
353
|
*/
|
|
354
354
|
readonly FAILED: "FAILED";
|
|
355
355
|
/**
|
|
356
|
-
* Pentest job is currently running
|
|
356
|
+
* <p>Pentest job is currently running.</p>
|
|
357
357
|
*/
|
|
358
358
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
359
359
|
/**
|
|
360
|
-
* Pentest job was stopped by the user
|
|
360
|
+
* <p>Pentest job was stopped by the user.</p>
|
|
361
361
|
*/
|
|
362
362
|
readonly STOPPED: "STOPPED";
|
|
363
363
|
/**
|
|
364
|
-
* Pentest job is being stopped
|
|
364
|
+
* <p>Pentest job is being stopped.</p>
|
|
365
365
|
*/
|
|
366
366
|
readonly STOPPING: "STOPPING";
|
|
367
367
|
};
|
|
@@ -375,19 +375,19 @@ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
|
|
|
375
375
|
*/
|
|
376
376
|
export declare const StepName: {
|
|
377
377
|
/**
|
|
378
|
-
* Cleanup of infrastructure and resources created by the agent
|
|
378
|
+
* <p>Cleanup of infrastructure and resources created by the agent.</p>
|
|
379
379
|
*/
|
|
380
380
|
readonly FINALIZING: "FINALIZING";
|
|
381
381
|
/**
|
|
382
|
-
* Active pentest step
|
|
382
|
+
* <p>Active pentest step.</p>
|
|
383
383
|
*/
|
|
384
384
|
readonly PENTEST: "PENTEST";
|
|
385
385
|
/**
|
|
386
|
-
* Pre-flight validation and setup step
|
|
386
|
+
* <p>Pre-flight validation and setup step.</p>
|
|
387
387
|
*/
|
|
388
388
|
readonly PREFLIGHT: "PREFLIGHT";
|
|
389
389
|
/**
|
|
390
|
-
* Static code and network scan analysis step
|
|
390
|
+
* <p>Static code and network scan analysis step.</p>
|
|
391
391
|
*/
|
|
392
392
|
readonly STATIC_ANALYSIS: "STATIC_ANALYSIS";
|
|
393
393
|
};
|
|
@@ -401,23 +401,23 @@ export type StepName = (typeof StepName)[keyof typeof StepName];
|
|
|
401
401
|
*/
|
|
402
402
|
export declare const StepStatus: {
|
|
403
403
|
/**
|
|
404
|
-
* Step completed successfully
|
|
404
|
+
* <p>Step completed successfully.</p>
|
|
405
405
|
*/
|
|
406
406
|
readonly COMPLETED: "COMPLETED";
|
|
407
407
|
/**
|
|
408
|
-
* Step failed during execution
|
|
408
|
+
* <p>Step failed during execution.</p>
|
|
409
409
|
*/
|
|
410
410
|
readonly FAILED: "FAILED";
|
|
411
411
|
/**
|
|
412
|
-
* Step is currently running
|
|
412
|
+
* <p>Step is currently running.</p>
|
|
413
413
|
*/
|
|
414
414
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
415
415
|
/**
|
|
416
|
-
* Step has not started yet
|
|
416
|
+
* <p>Step has not started yet.</p>
|
|
417
417
|
*/
|
|
418
418
|
readonly NOT_STARTED: "NOT_STARTED";
|
|
419
419
|
/**
|
|
420
|
-
* Step was stopped by the user
|
|
420
|
+
* <p>Step was stopped by the user.</p>
|
|
421
421
|
*/
|
|
422
422
|
readonly STOPPED: "STOPPED";
|
|
423
423
|
};
|
|
@@ -431,23 +431,23 @@ export type StepStatus = (typeof StepStatus)[keyof typeof StepStatus];
|
|
|
431
431
|
*/
|
|
432
432
|
export declare const TaskExecutionStatus: {
|
|
433
433
|
/**
|
|
434
|
-
* Task was aborted
|
|
434
|
+
* <p>Task was aborted.</p>
|
|
435
435
|
*/
|
|
436
436
|
readonly ABORTED: "ABORTED";
|
|
437
437
|
/**
|
|
438
|
-
* Task completed successfully
|
|
438
|
+
* <p>Task completed successfully.</p>
|
|
439
439
|
*/
|
|
440
440
|
readonly COMPLETED: "COMPLETED";
|
|
441
441
|
/**
|
|
442
|
-
* Task failed during execution
|
|
442
|
+
* <p>Task failed during execution.</p>
|
|
443
443
|
*/
|
|
444
444
|
readonly FAILED: "FAILED";
|
|
445
445
|
/**
|
|
446
|
-
* Task failed due to an internal error
|
|
446
|
+
* <p>Task failed due to an internal error.</p>
|
|
447
447
|
*/
|
|
448
448
|
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
449
449
|
/**
|
|
450
|
-
* Task is currently running
|
|
450
|
+
* <p>Task is currently running.</p>
|
|
451
451
|
*/
|
|
452
452
|
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
453
453
|
};
|
|
@@ -461,7 +461,7 @@ export type TaskExecutionStatus = (typeof TaskExecutionStatus)[keyof typeof Task
|
|
|
461
461
|
*/
|
|
462
462
|
export declare const LogType: {
|
|
463
463
|
/**
|
|
464
|
-
* Logs stored in CloudWatch
|
|
464
|
+
* <p>Logs stored in CloudWatch.</p>
|
|
465
465
|
*/
|
|
466
466
|
readonly CLOUDWATCH: "CLOUDWATCH";
|
|
467
467
|
};
|
|
@@ -475,7 +475,7 @@ export type LogType = (typeof LogType)[keyof typeof LogType];
|
|
|
475
475
|
*/
|
|
476
476
|
export declare const DNSRecordType: {
|
|
477
477
|
/**
|
|
478
|
-
* DNS TXT record
|
|
478
|
+
* <p>DNS TXT record.</p>
|
|
479
479
|
*/
|
|
480
480
|
readonly TXT: "TXT";
|
|
481
481
|
};
|
|
@@ -489,13 +489,17 @@ export type DNSRecordType = (typeof DNSRecordType)[keyof typeof DNSRecordType];
|
|
|
489
489
|
*/
|
|
490
490
|
export declare const DomainVerificationMethod: {
|
|
491
491
|
/**
|
|
492
|
-
* Verify ownership via DNS TXT record
|
|
492
|
+
* <p>Verify ownership via DNS TXT record.</p>
|
|
493
493
|
*/
|
|
494
494
|
readonly DNS_TXT: "DNS_TXT";
|
|
495
495
|
/**
|
|
496
|
-
* Verify ownership via HTTP route
|
|
496
|
+
* <p>Verify ownership via HTTP route.</p>
|
|
497
497
|
*/
|
|
498
498
|
readonly HTTP_ROUTE: "HTTP_ROUTE";
|
|
499
|
+
/**
|
|
500
|
+
* <p>Verify ownership via IP for private VPC pentests.</p>
|
|
501
|
+
*/
|
|
502
|
+
readonly PRIVATE_VPC: "PRIVATE_VPC";
|
|
499
503
|
};
|
|
500
504
|
/**
|
|
501
505
|
* @public
|
|
@@ -507,19 +511,19 @@ export type DomainVerificationMethod = (typeof DomainVerificationMethod)[keyof t
|
|
|
507
511
|
*/
|
|
508
512
|
export declare const TargetDomainStatus: {
|
|
509
513
|
/**
|
|
510
|
-
* Domain verification failed
|
|
514
|
+
* <p>Domain verification failed.</p>
|
|
511
515
|
*/
|
|
512
516
|
readonly FAILED: "FAILED";
|
|
513
517
|
/**
|
|
514
|
-
* Domain verification is pending
|
|
518
|
+
* <p>Domain verification is pending.</p>
|
|
515
519
|
*/
|
|
516
520
|
readonly PENDING: "PENDING";
|
|
517
521
|
/**
|
|
518
|
-
* Domain is unreachable for verification
|
|
522
|
+
* <p>Domain is unreachable for verification.</p>
|
|
519
523
|
*/
|
|
520
524
|
readonly UNREACHABLE: "UNREACHABLE";
|
|
521
525
|
/**
|
|
522
|
-
* Domain ownership has been verified
|
|
526
|
+
* <p>Domain ownership has been verified.</p>
|
|
523
527
|
*/
|
|
524
528
|
readonly VERIFIED: "VERIFIED";
|
|
525
529
|
};
|
|
@@ -544,7 +548,7 @@ export type Provider = (typeof Provider)[keyof typeof Provider];
|
|
|
544
548
|
*/
|
|
545
549
|
export declare const UserRole: {
|
|
546
550
|
/**
|
|
547
|
-
* Default member role with standard permissions
|
|
551
|
+
* <p>Default member role with standard permissions.</p>
|
|
548
552
|
*/
|
|
549
553
|
readonly MEMBER: "MEMBER";
|
|
550
554
|
};
|
|
@@ -558,7 +562,7 @@ export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
|
558
562
|
*/
|
|
559
563
|
export declare const MembershipType: {
|
|
560
564
|
/**
|
|
561
|
-
* Human user member
|
|
565
|
+
* <p>Human user member.</p>
|
|
562
566
|
*/
|
|
563
567
|
readonly USER: "USER";
|
|
564
568
|
};
|
|
@@ -595,11 +599,11 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
595
599
|
*/
|
|
596
600
|
export declare const MembershipTypeFilter: {
|
|
597
601
|
/**
|
|
598
|
-
* Show all member types
|
|
602
|
+
* <p>Show all member types.</p>
|
|
599
603
|
*/
|
|
600
604
|
readonly ALL: "ALL";
|
|
601
605
|
/**
|
|
602
|
-
* Show only user members
|
|
606
|
+
* <p>Show only user members.</p>
|
|
603
607
|
*/
|
|
604
608
|
readonly USER: "USER";
|
|
605
609
|
};
|
|
@@ -2,7 +2,7 @@ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smith
|
|
|
2
2
|
import type { ValidationExceptionField } from "./models_0";
|
|
3
3
|
import { SecurityAgentServiceException as __BaseException } from "./SecurityAgentServiceException";
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
5
|
+
* <p>You do not have sufficient access to perform this action.</p>
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
8
8
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -14,7 +14,7 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
14
14
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
15
15
|
}
|
|
16
16
|
/**
|
|
17
|
-
*
|
|
17
|
+
* <p>An unexpected error occurred during the processing of your request.</p>
|
|
18
18
|
* @public
|
|
19
19
|
*/
|
|
20
20
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -26,7 +26,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
26
26
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
|
-
*
|
|
29
|
+
* <p>The specified resource was not found. Verify that the resource identifier is correct and that the resource exists in the specified agent space or account.</p>
|
|
30
30
|
* @public
|
|
31
31
|
*/
|
|
32
32
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -38,19 +38,19 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
38
38
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* <p>The request was denied due to request throttling.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
44
|
export declare class ThrottlingException extends __BaseException {
|
|
45
45
|
readonly name: "ThrottlingException";
|
|
46
46
|
readonly $fault: "client";
|
|
47
47
|
/**
|
|
48
|
-
* Service code for throttling limit
|
|
48
|
+
* <p>Service code for throttling limit.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
51
|
serviceCode?: string | undefined;
|
|
52
52
|
/**
|
|
53
|
-
* Quota code for throttling limit
|
|
53
|
+
* <p>Quota code for throttling limit.</p>
|
|
54
54
|
* @public
|
|
55
55
|
*/
|
|
56
56
|
quotaCode?: string | undefined;
|
|
@@ -60,17 +60,14 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
60
60
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
61
61
|
}
|
|
62
62
|
/**
|
|
63
|
-
*
|
|
64
|
-
* This should be thrown by services when a member of the input structure
|
|
65
|
-
* falls outside of the modeled or documented constraints.
|
|
63
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
66
64
|
* @public
|
|
67
65
|
*/
|
|
68
66
|
export declare class ValidationException extends __BaseException {
|
|
69
67
|
readonly name: "ValidationException";
|
|
70
68
|
readonly $fault: "client";
|
|
71
69
|
/**
|
|
72
|
-
* A list of specific failures encountered
|
|
73
|
-
* A member can appear in this list more than once if it failed to satisfy multiple constraints.
|
|
70
|
+
* <p>A list of specific failures encountered during validation.</p>
|
|
74
71
|
* @public
|
|
75
72
|
*/
|
|
76
73
|
fieldList?: ValidationExceptionField[] | undefined;
|
|
@@ -80,7 +77,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
80
77
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
81
78
|
}
|
|
82
79
|
/**
|
|
83
|
-
*
|
|
80
|
+
* <p>The request could not be completed due to a conflict with the current state of the resource.</p>
|
|
84
81
|
* @public
|
|
85
82
|
*/
|
|
86
83
|
export declare class ConflictException extends __BaseException {
|