aws-sdk-securityagent 1.0.0 → 1.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-securityagent/client.rb +1040 -234
- data/lib/aws-sdk-securityagent/client_api.rb +381 -2
- data/lib/aws-sdk-securityagent/types.rb +1940 -713
- data/lib/aws-sdk-securityagent.rb +1 -1
- data/sig/client.rbs +248 -4
- data/sig/types.rbs +273 -3
- metadata +3 -3
data/sig/types.rbs
CHANGED
|
@@ -109,6 +109,18 @@ module Aws::SecurityAgent
|
|
|
109
109
|
SENSITIVE: []
|
|
110
110
|
end
|
|
111
111
|
|
|
112
|
+
class BatchDeleteCodeReviewsInput
|
|
113
|
+
attr_accessor code_review_ids: ::Array[::String]
|
|
114
|
+
attr_accessor agent_space_id: ::String
|
|
115
|
+
SENSITIVE: []
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
class BatchDeleteCodeReviewsOutput
|
|
119
|
+
attr_accessor deleted: ::Array[::String]
|
|
120
|
+
attr_accessor failed: ::Array[Types::DeleteCodeReviewFailure]
|
|
121
|
+
SENSITIVE: []
|
|
122
|
+
end
|
|
123
|
+
|
|
112
124
|
class BatchDeletePentestsInput
|
|
113
125
|
attr_accessor pentest_ids: ::Array[::String]
|
|
114
126
|
attr_accessor agent_space_id: ::String
|
|
@@ -143,6 +155,42 @@ module Aws::SecurityAgent
|
|
|
143
155
|
SENSITIVE: []
|
|
144
156
|
end
|
|
145
157
|
|
|
158
|
+
class BatchGetCodeReviewJobTasksInput
|
|
159
|
+
attr_accessor agent_space_id: ::String
|
|
160
|
+
attr_accessor code_review_job_task_ids: ::Array[::String]
|
|
161
|
+
SENSITIVE: []
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
class BatchGetCodeReviewJobTasksOutput
|
|
165
|
+
attr_accessor code_review_job_tasks: ::Array[Types::CodeReviewJobTask]
|
|
166
|
+
attr_accessor not_found: ::Array[::String]
|
|
167
|
+
SENSITIVE: []
|
|
168
|
+
end
|
|
169
|
+
|
|
170
|
+
class BatchGetCodeReviewJobsInput
|
|
171
|
+
attr_accessor code_review_job_ids: ::Array[::String]
|
|
172
|
+
attr_accessor agent_space_id: ::String
|
|
173
|
+
SENSITIVE: []
|
|
174
|
+
end
|
|
175
|
+
|
|
176
|
+
class BatchGetCodeReviewJobsOutput
|
|
177
|
+
attr_accessor code_review_jobs: ::Array[Types::CodeReviewJob]
|
|
178
|
+
attr_accessor not_found: ::Array[::String]
|
|
179
|
+
SENSITIVE: []
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
class BatchGetCodeReviewsInput
|
|
183
|
+
attr_accessor code_review_ids: ::Array[::String]
|
|
184
|
+
attr_accessor agent_space_id: ::String
|
|
185
|
+
SENSITIVE: []
|
|
186
|
+
end
|
|
187
|
+
|
|
188
|
+
class BatchGetCodeReviewsOutput
|
|
189
|
+
attr_accessor code_reviews: ::Array[Types::CodeReview]
|
|
190
|
+
attr_accessor not_found: ::Array[::String]
|
|
191
|
+
SENSITIVE: []
|
|
192
|
+
end
|
|
193
|
+
|
|
146
194
|
class BatchGetFindingsInput
|
|
147
195
|
attr_accessor finding_ids: ::Array[::String]
|
|
148
196
|
attr_accessor agent_space_id: ::String
|
|
@@ -214,6 +262,14 @@ module Aws::SecurityAgent
|
|
|
214
262
|
SENSITIVE: []
|
|
215
263
|
end
|
|
216
264
|
|
|
265
|
+
class CodeLocation
|
|
266
|
+
attr_accessor file_path: ::String
|
|
267
|
+
attr_accessor line_start: ::Integer
|
|
268
|
+
attr_accessor line_end: ::Integer
|
|
269
|
+
attr_accessor label: ::String
|
|
270
|
+
SENSITIVE: []
|
|
271
|
+
end
|
|
272
|
+
|
|
217
273
|
class CodeRemediationTask
|
|
218
274
|
attr_accessor status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
|
|
219
275
|
attr_accessor status_reason: ::String
|
|
@@ -228,12 +284,93 @@ module Aws::SecurityAgent
|
|
|
228
284
|
SENSITIVE: []
|
|
229
285
|
end
|
|
230
286
|
|
|
287
|
+
class CodeReview
|
|
288
|
+
attr_accessor code_review_id: ::String
|
|
289
|
+
attr_accessor agent_space_id: ::String
|
|
290
|
+
attr_accessor title: ::String
|
|
291
|
+
attr_accessor assets: Types::Assets
|
|
292
|
+
attr_accessor service_role: ::String
|
|
293
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
294
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
295
|
+
attr_accessor created_at: ::Time
|
|
296
|
+
attr_accessor updated_at: ::Time
|
|
297
|
+
SENSITIVE: []
|
|
298
|
+
end
|
|
299
|
+
|
|
300
|
+
class CodeReviewJob
|
|
301
|
+
attr_accessor code_review_job_id: ::String
|
|
302
|
+
attr_accessor code_review_id: ::String
|
|
303
|
+
attr_accessor title: ::String
|
|
304
|
+
attr_accessor overview: ::String
|
|
305
|
+
attr_accessor status: ("IN_PROGRESS" | "STOPPING" | "STOPPED" | "FAILED" | "COMPLETED")
|
|
306
|
+
attr_accessor documents: ::Array[Types::DocumentInfo]
|
|
307
|
+
attr_accessor source_code: ::Array[Types::SourceCodeRepository]
|
|
308
|
+
attr_accessor steps: ::Array[Types::Step]
|
|
309
|
+
attr_accessor execution_context: ::Array[Types::ExecutionContext]
|
|
310
|
+
attr_accessor service_role: ::String
|
|
311
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
312
|
+
attr_accessor error_information: Types::ErrorInformation
|
|
313
|
+
attr_accessor integrated_repositories: ::Array[Types::IntegratedRepository]
|
|
314
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
315
|
+
attr_accessor created_at: ::Time
|
|
316
|
+
attr_accessor updated_at: ::Time
|
|
317
|
+
SENSITIVE: []
|
|
318
|
+
end
|
|
319
|
+
|
|
320
|
+
class CodeReviewJobSummary
|
|
321
|
+
attr_accessor code_review_job_id: ::String
|
|
322
|
+
attr_accessor code_review_id: ::String
|
|
323
|
+
attr_accessor title: ::String
|
|
324
|
+
attr_accessor status: ("IN_PROGRESS" | "STOPPING" | "STOPPED" | "FAILED" | "COMPLETED")
|
|
325
|
+
attr_accessor created_at: ::Time
|
|
326
|
+
attr_accessor updated_at: ::Time
|
|
327
|
+
SENSITIVE: []
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
class CodeReviewJobTask
|
|
331
|
+
attr_accessor task_id: ::String
|
|
332
|
+
attr_accessor code_review_id: ::String
|
|
333
|
+
attr_accessor code_review_job_id: ::String
|
|
334
|
+
attr_accessor agent_space_id: ::String
|
|
335
|
+
attr_accessor title: ::String
|
|
336
|
+
attr_accessor description: ::String
|
|
337
|
+
attr_accessor categories: ::Array[Types::Category]
|
|
338
|
+
attr_accessor risk_type: ("CROSS_SITE_SCRIPTING" | "DEFAULT_CREDENTIALS" | "INSECURE_DIRECT_OBJECT_REFERENCE" | "PRIVILEGE_ESCALATION" | "SERVER_SIDE_TEMPLATE_INJECTION" | "COMMAND_INJECTION" | "CODE_INJECTION" | "SQL_INJECTION" | "ARBITRARY_FILE_UPLOAD" | "INSECURE_DESERIALIZATION" | "LOCAL_FILE_INCLUSION" | "INFORMATION_DISCLOSURE" | "PATH_TRAVERSAL" | "SERVER_SIDE_REQUEST_FORGERY" | "JSON_WEB_TOKEN_VULNERABILITIES" | "XML_EXTERNAL_ENTITY" | "FILE_DELETION" | "OTHER" | "GRAPHQL_VULNERABILITIES" | "BUSINESS_LOGIC_VULNERABILITIES" | "CRYPTOGRAPHIC_VULNERABILITIES" | "DENIAL_OF_SERVICE" | "FILE_ACCESS" | "FILE_CREATION" | "DATABASE_MODIFICATION" | "DATABASE_ACCESS" | "OUTBOUND_SERVICE_REQUEST" | "UNKNOWN")
|
|
339
|
+
attr_accessor execution_status: ("IN_PROGRESS" | "ABORTED" | "COMPLETED" | "INTERNAL_ERROR" | "FAILED")
|
|
340
|
+
attr_accessor logs_location: Types::LogLocation
|
|
341
|
+
attr_accessor created_at: ::Time
|
|
342
|
+
attr_accessor updated_at: ::Time
|
|
343
|
+
SENSITIVE: []
|
|
344
|
+
end
|
|
345
|
+
|
|
346
|
+
class CodeReviewJobTaskSummary
|
|
347
|
+
attr_accessor task_id: ::String
|
|
348
|
+
attr_accessor code_review_id: ::String
|
|
349
|
+
attr_accessor code_review_job_id: ::String
|
|
350
|
+
attr_accessor agent_space_id: ::String
|
|
351
|
+
attr_accessor title: ::String
|
|
352
|
+
attr_accessor risk_type: ("CROSS_SITE_SCRIPTING" | "DEFAULT_CREDENTIALS" | "INSECURE_DIRECT_OBJECT_REFERENCE" | "PRIVILEGE_ESCALATION" | "SERVER_SIDE_TEMPLATE_INJECTION" | "COMMAND_INJECTION" | "CODE_INJECTION" | "SQL_INJECTION" | "ARBITRARY_FILE_UPLOAD" | "INSECURE_DESERIALIZATION" | "LOCAL_FILE_INCLUSION" | "INFORMATION_DISCLOSURE" | "PATH_TRAVERSAL" | "SERVER_SIDE_REQUEST_FORGERY" | "JSON_WEB_TOKEN_VULNERABILITIES" | "XML_EXTERNAL_ENTITY" | "FILE_DELETION" | "OTHER" | "GRAPHQL_VULNERABILITIES" | "BUSINESS_LOGIC_VULNERABILITIES" | "CRYPTOGRAPHIC_VULNERABILITIES" | "DENIAL_OF_SERVICE" | "FILE_ACCESS" | "FILE_CREATION" | "DATABASE_MODIFICATION" | "DATABASE_ACCESS" | "OUTBOUND_SERVICE_REQUEST" | "UNKNOWN")
|
|
353
|
+
attr_accessor execution_status: ("IN_PROGRESS" | "ABORTED" | "COMPLETED" | "INTERNAL_ERROR" | "FAILED")
|
|
354
|
+
attr_accessor created_at: ::Time
|
|
355
|
+
attr_accessor updated_at: ::Time
|
|
356
|
+
SENSITIVE: []
|
|
357
|
+
end
|
|
358
|
+
|
|
231
359
|
class CodeReviewSettings
|
|
232
360
|
attr_accessor controls_scanning: bool
|
|
233
361
|
attr_accessor general_purpose_scanning: bool
|
|
234
362
|
SENSITIVE: []
|
|
235
363
|
end
|
|
236
364
|
|
|
365
|
+
class CodeReviewSummary
|
|
366
|
+
attr_accessor code_review_id: ::String
|
|
367
|
+
attr_accessor agent_space_id: ::String
|
|
368
|
+
attr_accessor title: ::String
|
|
369
|
+
attr_accessor created_at: ::Time
|
|
370
|
+
attr_accessor updated_at: ::Time
|
|
371
|
+
SENSITIVE: []
|
|
372
|
+
end
|
|
373
|
+
|
|
237
374
|
class ConflictException
|
|
238
375
|
attr_accessor message: ::String
|
|
239
376
|
SENSITIVE: []
|
|
@@ -276,6 +413,29 @@ module Aws::SecurityAgent
|
|
|
276
413
|
SENSITIVE: []
|
|
277
414
|
end
|
|
278
415
|
|
|
416
|
+
class CreateCodeReviewInput
|
|
417
|
+
attr_accessor title: ::String
|
|
418
|
+
attr_accessor agent_space_id: ::String
|
|
419
|
+
attr_accessor assets: Types::Assets
|
|
420
|
+
attr_accessor service_role: ::String
|
|
421
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
422
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
423
|
+
SENSITIVE: []
|
|
424
|
+
end
|
|
425
|
+
|
|
426
|
+
class CreateCodeReviewOutput
|
|
427
|
+
attr_accessor code_review_id: ::String
|
|
428
|
+
attr_accessor title: ::String
|
|
429
|
+
attr_accessor created_at: ::Time
|
|
430
|
+
attr_accessor updated_at: ::Time
|
|
431
|
+
attr_accessor assets: Types::Assets
|
|
432
|
+
attr_accessor service_role: ::String
|
|
433
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
434
|
+
attr_accessor agent_space_id: ::String
|
|
435
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
436
|
+
SENSITIVE: []
|
|
437
|
+
end
|
|
438
|
+
|
|
279
439
|
class CreateIntegrationInput
|
|
280
440
|
attr_accessor provider: ("GITHUB")
|
|
281
441
|
attr_accessor input: Types::ProviderInput
|
|
@@ -330,7 +490,7 @@ module Aws::SecurityAgent
|
|
|
330
490
|
|
|
331
491
|
class CreateTargetDomainInput
|
|
332
492
|
attr_accessor target_domain_name: ::String
|
|
333
|
-
attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE")
|
|
493
|
+
attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
|
|
334
494
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
335
495
|
SENSITIVE: []
|
|
336
496
|
end
|
|
@@ -339,6 +499,7 @@ module Aws::SecurityAgent
|
|
|
339
499
|
attr_accessor target_domain_id: ::String
|
|
340
500
|
attr_accessor domain_name: ::String
|
|
341
501
|
attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
|
|
502
|
+
attr_accessor verification_status_reason: ::String
|
|
342
503
|
attr_accessor verification_details: Types::VerificationDetails
|
|
343
504
|
attr_accessor created_at: ::Time
|
|
344
505
|
attr_accessor verified_at: ::Time
|
|
@@ -375,6 +536,12 @@ module Aws::SecurityAgent
|
|
|
375
536
|
class DeleteArtifactOutput < Aws::EmptyStructure
|
|
376
537
|
end
|
|
377
538
|
|
|
539
|
+
class DeleteCodeReviewFailure
|
|
540
|
+
attr_accessor code_review_id: ::String
|
|
541
|
+
attr_accessor reason: ::String
|
|
542
|
+
SENSITIVE: []
|
|
543
|
+
end
|
|
544
|
+
|
|
378
545
|
class DeleteIntegrationInput
|
|
379
546
|
attr_accessor integration_id: ::String
|
|
380
547
|
SENSITIVE: []
|
|
@@ -457,6 +624,8 @@ module Aws::SecurityAgent
|
|
|
457
624
|
attr_accessor agent_space_id: ::String
|
|
458
625
|
attr_accessor pentest_id: ::String
|
|
459
626
|
attr_accessor pentest_job_id: ::String
|
|
627
|
+
attr_accessor code_review_id: ::String
|
|
628
|
+
attr_accessor code_review_job_id: ::String
|
|
460
629
|
attr_accessor task_id: ::String
|
|
461
630
|
attr_accessor name: ::String
|
|
462
631
|
attr_accessor description: ::String
|
|
@@ -469,6 +638,7 @@ module Aws::SecurityAgent
|
|
|
469
638
|
attr_accessor attack_script: ::String
|
|
470
639
|
attr_accessor code_remediation_task: Types::CodeRemediationTask
|
|
471
640
|
attr_accessor last_updated_by: ::String
|
|
641
|
+
attr_accessor code_locations: ::Array[Types::CodeLocation]
|
|
472
642
|
attr_accessor created_at: ::Time
|
|
473
643
|
attr_accessor updated_at: ::Time
|
|
474
644
|
SENSITIVE: []
|
|
@@ -479,6 +649,8 @@ module Aws::SecurityAgent
|
|
|
479
649
|
attr_accessor agent_space_id: ::String
|
|
480
650
|
attr_accessor pentest_id: ::String
|
|
481
651
|
attr_accessor pentest_job_id: ::String
|
|
652
|
+
attr_accessor code_review_id: ::String
|
|
653
|
+
attr_accessor code_review_job_id: ::String
|
|
482
654
|
attr_accessor name: ::String
|
|
483
655
|
attr_accessor status: ("ACTIVE" | "RESOLVED" | "ACCEPTED" | "FALSE_POSITIVE")
|
|
484
656
|
attr_accessor risk_type: ::String
|
|
@@ -690,6 +862,49 @@ module Aws::SecurityAgent
|
|
|
690
862
|
SENSITIVE: []
|
|
691
863
|
end
|
|
692
864
|
|
|
865
|
+
class ListCodeReviewJobTasksInput
|
|
866
|
+
attr_accessor agent_space_id: ::String
|
|
867
|
+
attr_accessor max_results: ::Integer
|
|
868
|
+
attr_accessor code_review_job_id: ::String
|
|
869
|
+
attr_accessor step_name: ("PREFLIGHT" | "STATIC_ANALYSIS" | "PENTEST" | "FINALIZING")
|
|
870
|
+
attr_accessor category_name: ::String
|
|
871
|
+
attr_accessor next_token: ::String
|
|
872
|
+
SENSITIVE: []
|
|
873
|
+
end
|
|
874
|
+
|
|
875
|
+
class ListCodeReviewJobTasksOutput
|
|
876
|
+
attr_accessor code_review_job_task_summaries: ::Array[Types::CodeReviewJobTaskSummary]
|
|
877
|
+
attr_accessor next_token: ::String
|
|
878
|
+
SENSITIVE: []
|
|
879
|
+
end
|
|
880
|
+
|
|
881
|
+
class ListCodeReviewJobsForCodeReviewInput
|
|
882
|
+
attr_accessor max_results: ::Integer
|
|
883
|
+
attr_accessor code_review_id: ::String
|
|
884
|
+
attr_accessor agent_space_id: ::String
|
|
885
|
+
attr_accessor next_token: ::String
|
|
886
|
+
SENSITIVE: []
|
|
887
|
+
end
|
|
888
|
+
|
|
889
|
+
class ListCodeReviewJobsForCodeReviewOutput
|
|
890
|
+
attr_accessor code_review_job_summaries: ::Array[Types::CodeReviewJobSummary]
|
|
891
|
+
attr_accessor next_token: ::String
|
|
892
|
+
SENSITIVE: []
|
|
893
|
+
end
|
|
894
|
+
|
|
895
|
+
class ListCodeReviewsInput
|
|
896
|
+
attr_accessor max_results: ::Integer
|
|
897
|
+
attr_accessor next_token: ::String
|
|
898
|
+
attr_accessor agent_space_id: ::String
|
|
899
|
+
SENSITIVE: []
|
|
900
|
+
end
|
|
901
|
+
|
|
902
|
+
class ListCodeReviewsOutput
|
|
903
|
+
attr_accessor code_review_summaries: ::Array[Types::CodeReviewSummary]
|
|
904
|
+
attr_accessor next_token: ::String
|
|
905
|
+
SENSITIVE: []
|
|
906
|
+
end
|
|
907
|
+
|
|
693
908
|
class ListDiscoveredEndpointsInput
|
|
694
909
|
attr_accessor max_results: ::Integer
|
|
695
910
|
attr_accessor pentest_job_id: ::String
|
|
@@ -708,6 +923,7 @@ module Aws::SecurityAgent
|
|
|
708
923
|
class ListFindingsInput
|
|
709
924
|
attr_accessor max_results: ::Integer
|
|
710
925
|
attr_accessor pentest_job_id: ::String
|
|
926
|
+
attr_accessor code_review_job_id: ::String
|
|
711
927
|
attr_accessor agent_space_id: ::String
|
|
712
928
|
attr_accessor next_token: ::String
|
|
713
929
|
attr_accessor risk_type: ::String
|
|
@@ -984,6 +1200,7 @@ module Aws::SecurityAgent
|
|
|
984
1200
|
class StartCodeRemediationInput
|
|
985
1201
|
attr_accessor agent_space_id: ::String
|
|
986
1202
|
attr_accessor pentest_job_id: ::String
|
|
1203
|
+
attr_accessor code_review_job_id: ::String
|
|
987
1204
|
attr_accessor finding_ids: ::Array[::String]
|
|
988
1205
|
SENSITIVE: []
|
|
989
1206
|
end
|
|
@@ -991,6 +1208,23 @@ module Aws::SecurityAgent
|
|
|
991
1208
|
class StartCodeRemediationOutput < Aws::EmptyStructure
|
|
992
1209
|
end
|
|
993
1210
|
|
|
1211
|
+
class StartCodeReviewJobInput
|
|
1212
|
+
attr_accessor agent_space_id: ::String
|
|
1213
|
+
attr_accessor code_review_id: ::String
|
|
1214
|
+
SENSITIVE: []
|
|
1215
|
+
end
|
|
1216
|
+
|
|
1217
|
+
class StartCodeReviewJobOutput
|
|
1218
|
+
attr_accessor title: ::String
|
|
1219
|
+
attr_accessor status: ("IN_PROGRESS" | "STOPPING" | "STOPPED" | "FAILED" | "COMPLETED")
|
|
1220
|
+
attr_accessor created_at: ::Time
|
|
1221
|
+
attr_accessor updated_at: ::Time
|
|
1222
|
+
attr_accessor code_review_id: ::String
|
|
1223
|
+
attr_accessor code_review_job_id: ::String
|
|
1224
|
+
attr_accessor agent_space_id: ::String
|
|
1225
|
+
SENSITIVE: []
|
|
1226
|
+
end
|
|
1227
|
+
|
|
994
1228
|
class StartPentestJobInput
|
|
995
1229
|
attr_accessor agent_space_id: ::String
|
|
996
1230
|
attr_accessor pentest_id: ::String
|
|
@@ -1016,6 +1250,15 @@ module Aws::SecurityAgent
|
|
|
1016
1250
|
SENSITIVE: []
|
|
1017
1251
|
end
|
|
1018
1252
|
|
|
1253
|
+
class StopCodeReviewJobInput
|
|
1254
|
+
attr_accessor agent_space_id: ::String
|
|
1255
|
+
attr_accessor code_review_job_id: ::String
|
|
1256
|
+
SENSITIVE: []
|
|
1257
|
+
end
|
|
1258
|
+
|
|
1259
|
+
class StopCodeReviewJobOutput < Aws::EmptyStructure
|
|
1260
|
+
end
|
|
1261
|
+
|
|
1019
1262
|
class StopPentestJobInput
|
|
1020
1263
|
attr_accessor agent_space_id: ::String
|
|
1021
1264
|
attr_accessor pentest_job_id: ::String
|
|
@@ -1038,6 +1281,7 @@ module Aws::SecurityAgent
|
|
|
1038
1281
|
attr_accessor target_domain_id: ::String
|
|
1039
1282
|
attr_accessor domain_name: ::String
|
|
1040
1283
|
attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
|
|
1284
|
+
attr_accessor verification_status_reason: ::String
|
|
1041
1285
|
attr_accessor verification_details: Types::VerificationDetails
|
|
1042
1286
|
attr_accessor created_at: ::Time
|
|
1043
1287
|
attr_accessor verified_at: ::Time
|
|
@@ -1131,6 +1375,30 @@ module Aws::SecurityAgent
|
|
|
1131
1375
|
SENSITIVE: []
|
|
1132
1376
|
end
|
|
1133
1377
|
|
|
1378
|
+
class UpdateCodeReviewInput
|
|
1379
|
+
attr_accessor code_review_id: ::String
|
|
1380
|
+
attr_accessor agent_space_id: ::String
|
|
1381
|
+
attr_accessor title: ::String
|
|
1382
|
+
attr_accessor assets: Types::Assets
|
|
1383
|
+
attr_accessor service_role: ::String
|
|
1384
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
1385
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
1386
|
+
SENSITIVE: []
|
|
1387
|
+
end
|
|
1388
|
+
|
|
1389
|
+
class UpdateCodeReviewOutput
|
|
1390
|
+
attr_accessor code_review_id: ::String
|
|
1391
|
+
attr_accessor title: ::String
|
|
1392
|
+
attr_accessor created_at: ::Time
|
|
1393
|
+
attr_accessor updated_at: ::Time
|
|
1394
|
+
attr_accessor assets: Types::Assets
|
|
1395
|
+
attr_accessor service_role: ::String
|
|
1396
|
+
attr_accessor log_config: Types::CloudWatchLog
|
|
1397
|
+
attr_accessor agent_space_id: ::String
|
|
1398
|
+
attr_accessor code_remediation_strategy: ("AUTOMATIC" | "DISABLED")
|
|
1399
|
+
SENSITIVE: []
|
|
1400
|
+
end
|
|
1401
|
+
|
|
1134
1402
|
class UpdateFindingInput
|
|
1135
1403
|
attr_accessor finding_id: ::String
|
|
1136
1404
|
attr_accessor agent_space_id: ::String
|
|
@@ -1181,7 +1449,7 @@ module Aws::SecurityAgent
|
|
|
1181
1449
|
|
|
1182
1450
|
class UpdateTargetDomainInput
|
|
1183
1451
|
attr_accessor target_domain_id: ::String
|
|
1184
|
-
attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE")
|
|
1452
|
+
attr_accessor verification_method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
|
|
1185
1453
|
SENSITIVE: []
|
|
1186
1454
|
end
|
|
1187
1455
|
|
|
@@ -1189,6 +1457,7 @@ module Aws::SecurityAgent
|
|
|
1189
1457
|
attr_accessor target_domain_id: ::String
|
|
1190
1458
|
attr_accessor domain_name: ::String
|
|
1191
1459
|
attr_accessor verification_status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
|
|
1460
|
+
attr_accessor verification_status_reason: ::String
|
|
1192
1461
|
attr_accessor verification_details: Types::VerificationDetails
|
|
1193
1462
|
attr_accessor created_at: ::Time
|
|
1194
1463
|
attr_accessor verified_at: ::Time
|
|
@@ -1219,7 +1488,7 @@ module Aws::SecurityAgent
|
|
|
1219
1488
|
end
|
|
1220
1489
|
|
|
1221
1490
|
class VerificationDetails
|
|
1222
|
-
attr_accessor method: ("DNS_TXT" | "HTTP_ROUTE")
|
|
1491
|
+
attr_accessor method: ("DNS_TXT" | "HTTP_ROUTE" | "PRIVATE_VPC")
|
|
1223
1492
|
attr_accessor dns_txt: Types::DnsVerification
|
|
1224
1493
|
attr_accessor http_route: Types::HttpVerification
|
|
1225
1494
|
SENSITIVE: []
|
|
@@ -1237,6 +1506,7 @@ module Aws::SecurityAgent
|
|
|
1237
1506
|
attr_accessor updated_at: ::Time
|
|
1238
1507
|
attr_accessor verified_at: ::Time
|
|
1239
1508
|
attr_accessor status: ("PENDING" | "VERIFIED" | "FAILED" | "UNREACHABLE")
|
|
1509
|
+
attr_accessor verification_status_reason: ::String
|
|
1240
1510
|
SENSITIVE: []
|
|
1241
1511
|
end
|
|
1242
1512
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-securityagent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.247.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.247.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|