aws-sdk-securityagent 1.1.0 → 1.3.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 +731 -5
- data/lib/aws-sdk-securityagent/client_api.rb +376 -2
- data/lib/aws-sdk-securityagent/types.rb +1118 -65
- data/lib/aws-sdk-securityagent.rb +1 -1
- data/sig/client.rbs +182 -131
- data/sig/params.rbs +82 -0
- data/sig/types.rbs +266 -0
- metadata +4 -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
|
|
@@ -376,6 +536,12 @@ module Aws::SecurityAgent
|
|
|
376
536
|
class DeleteArtifactOutput < Aws::EmptyStructure
|
|
377
537
|
end
|
|
378
538
|
|
|
539
|
+
class DeleteCodeReviewFailure
|
|
540
|
+
attr_accessor code_review_id: ::String
|
|
541
|
+
attr_accessor reason: ::String
|
|
542
|
+
SENSITIVE: []
|
|
543
|
+
end
|
|
544
|
+
|
|
379
545
|
class DeleteIntegrationInput
|
|
380
546
|
attr_accessor integration_id: ::String
|
|
381
547
|
SENSITIVE: []
|
|
@@ -458,6 +624,8 @@ module Aws::SecurityAgent
|
|
|
458
624
|
attr_accessor agent_space_id: ::String
|
|
459
625
|
attr_accessor pentest_id: ::String
|
|
460
626
|
attr_accessor pentest_job_id: ::String
|
|
627
|
+
attr_accessor code_review_id: ::String
|
|
628
|
+
attr_accessor code_review_job_id: ::String
|
|
461
629
|
attr_accessor task_id: ::String
|
|
462
630
|
attr_accessor name: ::String
|
|
463
631
|
attr_accessor description: ::String
|
|
@@ -470,6 +638,7 @@ module Aws::SecurityAgent
|
|
|
470
638
|
attr_accessor attack_script: ::String
|
|
471
639
|
attr_accessor code_remediation_task: Types::CodeRemediationTask
|
|
472
640
|
attr_accessor last_updated_by: ::String
|
|
641
|
+
attr_accessor code_locations: ::Array[Types::CodeLocation]
|
|
473
642
|
attr_accessor created_at: ::Time
|
|
474
643
|
attr_accessor updated_at: ::Time
|
|
475
644
|
SENSITIVE: []
|
|
@@ -480,6 +649,8 @@ module Aws::SecurityAgent
|
|
|
480
649
|
attr_accessor agent_space_id: ::String
|
|
481
650
|
attr_accessor pentest_id: ::String
|
|
482
651
|
attr_accessor pentest_job_id: ::String
|
|
652
|
+
attr_accessor code_review_id: ::String
|
|
653
|
+
attr_accessor code_review_job_id: ::String
|
|
483
654
|
attr_accessor name: ::String
|
|
484
655
|
attr_accessor status: ("ACTIVE" | "RESOLVED" | "ACCEPTED" | "FALSE_POSITIVE")
|
|
485
656
|
attr_accessor risk_type: ::String
|
|
@@ -691,6 +862,49 @@ module Aws::SecurityAgent
|
|
|
691
862
|
SENSITIVE: []
|
|
692
863
|
end
|
|
693
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
|
+
|
|
694
908
|
class ListDiscoveredEndpointsInput
|
|
695
909
|
attr_accessor max_results: ::Integer
|
|
696
910
|
attr_accessor pentest_job_id: ::String
|
|
@@ -709,6 +923,7 @@ module Aws::SecurityAgent
|
|
|
709
923
|
class ListFindingsInput
|
|
710
924
|
attr_accessor max_results: ::Integer
|
|
711
925
|
attr_accessor pentest_job_id: ::String
|
|
926
|
+
attr_accessor code_review_job_id: ::String
|
|
712
927
|
attr_accessor agent_space_id: ::String
|
|
713
928
|
attr_accessor next_token: ::String
|
|
714
929
|
attr_accessor risk_type: ::String
|
|
@@ -985,6 +1200,7 @@ module Aws::SecurityAgent
|
|
|
985
1200
|
class StartCodeRemediationInput
|
|
986
1201
|
attr_accessor agent_space_id: ::String
|
|
987
1202
|
attr_accessor pentest_job_id: ::String
|
|
1203
|
+
attr_accessor code_review_job_id: ::String
|
|
988
1204
|
attr_accessor finding_ids: ::Array[::String]
|
|
989
1205
|
SENSITIVE: []
|
|
990
1206
|
end
|
|
@@ -992,6 +1208,23 @@ module Aws::SecurityAgent
|
|
|
992
1208
|
class StartCodeRemediationOutput < Aws::EmptyStructure
|
|
993
1209
|
end
|
|
994
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
|
+
|
|
995
1228
|
class StartPentestJobInput
|
|
996
1229
|
attr_accessor agent_space_id: ::String
|
|
997
1230
|
attr_accessor pentest_id: ::String
|
|
@@ -1017,6 +1250,15 @@ module Aws::SecurityAgent
|
|
|
1017
1250
|
SENSITIVE: []
|
|
1018
1251
|
end
|
|
1019
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
|
+
|
|
1020
1262
|
class StopPentestJobInput
|
|
1021
1263
|
attr_accessor agent_space_id: ::String
|
|
1022
1264
|
attr_accessor pentest_job_id: ::String
|
|
@@ -1133,6 +1375,30 @@ module Aws::SecurityAgent
|
|
|
1133
1375
|
SENSITIVE: []
|
|
1134
1376
|
end
|
|
1135
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
|
+
|
|
1136
1402
|
class UpdateFindingInput
|
|
1137
1403
|
attr_accessor finding_id: ::String
|
|
1138
1404
|
attr_accessor agent_space_id: ::String
|
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.3.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
|
|
@@ -68,6 +68,7 @@ files:
|
|
|
68
68
|
- lib/aws-sdk-securityagent/waiters.rb
|
|
69
69
|
- sig/client.rbs
|
|
70
70
|
- sig/errors.rbs
|
|
71
|
+
- sig/params.rbs
|
|
71
72
|
- sig/resource.rbs
|
|
72
73
|
- sig/types.rbs
|
|
73
74
|
- sig/waiters.rbs
|