aws-sdk-securityir 1.0.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.
data/sig/resource.rbs ADDED
@@ -0,0 +1,82 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SecurityIR
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityIR/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SecurityIR/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?account_id: String,
19
+ ?active_endpoint_cache: bool,
20
+ ?adaptive_retry_wait_to_fill: bool,
21
+ ?client_side_monitoring: bool,
22
+ ?client_side_monitoring_client_id: String,
23
+ ?client_side_monitoring_host: String,
24
+ ?client_side_monitoring_port: Integer,
25
+ ?client_side_monitoring_publisher: untyped,
26
+ ?convert_params: bool,
27
+ ?correct_clock_skew: bool,
28
+ ?defaults_mode: String,
29
+ ?disable_host_prefix_injection: bool,
30
+ ?disable_request_compression: bool,
31
+ ?endpoint: String,
32
+ ?endpoint_cache_max_entries: Integer,
33
+ ?endpoint_cache_max_threads: Integer,
34
+ ?endpoint_cache_poll_interval: Integer,
35
+ ?endpoint_discovery: bool,
36
+ ?ignore_configured_endpoint_urls: bool,
37
+ ?log_formatter: untyped,
38
+ ?log_level: Symbol,
39
+ ?logger: untyped,
40
+ ?max_attempts: Integer,
41
+ ?profile: String,
42
+ ?request_min_compression_size_bytes: Integer,
43
+ ?retry_backoff: Proc,
44
+ ?retry_base_delay: Float,
45
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
46
+ ?retry_limit: Integer,
47
+ ?retry_max_delay: Integer,
48
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
49
+ ?sdk_ua_app_id: String,
50
+ ?secret_access_key: String,
51
+ ?session_token: String,
52
+ ?sigv4a_signing_region_set: Array[String],
53
+ ?stub_responses: untyped,
54
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
55
+ ?token_provider: untyped,
56
+ ?use_dualstack_endpoint: bool,
57
+ ?use_fips_endpoint: bool,
58
+ ?validate_params: bool,
59
+ ?endpoint_provider: untyped,
60
+ ?http_proxy: String,
61
+ ?http_open_timeout: (Float | Integer),
62
+ ?http_read_timeout: (Float | Integer),
63
+ ?http_idle_timeout: (Float | Integer),
64
+ ?http_continue_timeout: (Float | Integer),
65
+ ?ssl_timeout: (Float | Integer | nil),
66
+ ?http_wire_trace: bool,
67
+ ?ssl_verify_peer: bool,
68
+ ?ssl_ca_bundle: String,
69
+ ?ssl_ca_directory: String,
70
+ ?ssl_ca_store: String,
71
+ ?on_chunk_received: Proc,
72
+ ?on_chunk_sent: Proc,
73
+ ?raise_response_errors: bool
74
+ ) -> void
75
+ | (?Hash[Symbol, untyped]) -> void
76
+
77
+ def client: () -> Client
78
+
79
+
80
+ end
81
+ end
82
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,474 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::SecurityIR
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class BatchGetMemberAccountDetailsRequest
17
+ attr_accessor membership_id: ::String
18
+ attr_accessor account_ids: ::Array[::String]
19
+ SENSITIVE: []
20
+ end
21
+
22
+ class BatchGetMemberAccountDetailsResponse
23
+ attr_accessor items: ::Array[Types::GetMembershipAccountDetailItem]
24
+ attr_accessor errors: ::Array[Types::GetMembershipAccountDetailError]
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class CancelMembershipRequest
29
+ attr_accessor membership_id: ::String
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class CancelMembershipResponse
34
+ attr_accessor membership_id: ::String
35
+ SENSITIVE: []
36
+ end
37
+
38
+ class CaseAttachmentAttributes
39
+ attr_accessor attachment_id: ::String
40
+ attr_accessor file_name: ::String
41
+ attr_accessor attachment_status: ("Verified" | "Failed" | "Pending")
42
+ attr_accessor creator: ::String
43
+ attr_accessor created_date: ::Time
44
+ SENSITIVE: [:file_name]
45
+ end
46
+
47
+ class CaseEditItem
48
+ attr_accessor event_timestamp: ::Time
49
+ attr_accessor principal: ::String
50
+ attr_accessor action: ::String
51
+ attr_accessor message: ::String
52
+ SENSITIVE: []
53
+ end
54
+
55
+ class CloseCaseRequest
56
+ attr_accessor case_id: ::String
57
+ SENSITIVE: []
58
+ end
59
+
60
+ class CloseCaseResponse
61
+ attr_accessor case_status: ("Submitted" | "Acknowledged" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities" | "Ready to Close" | "Closed")
62
+ attr_accessor closed_date: ::Time
63
+ SENSITIVE: []
64
+ end
65
+
66
+ class ConflictException
67
+ attr_accessor message: ::String
68
+ attr_accessor resource_id: ::String
69
+ attr_accessor resource_type: ::String
70
+ SENSITIVE: []
71
+ end
72
+
73
+ class CreateCaseCommentRequest
74
+ attr_accessor case_id: ::String
75
+ attr_accessor client_token: ::String
76
+ attr_accessor body: ::String
77
+ SENSITIVE: [:body]
78
+ end
79
+
80
+ class CreateCaseCommentResponse
81
+ attr_accessor comment_id: ::String
82
+ SENSITIVE: []
83
+ end
84
+
85
+ class CreateCaseRequest
86
+ attr_accessor client_token: ::String
87
+ attr_accessor resolver_type: ("AWS" | "Self")
88
+ attr_accessor title: ::String
89
+ attr_accessor description: ::String
90
+ attr_accessor engagement_type: ("Security Incident" | "Investigation")
91
+ attr_accessor reported_incident_start_date: ::Time
92
+ attr_accessor impacted_accounts: ::Array[::String]
93
+ attr_accessor watchers: ::Array[Types::Watcher]
94
+ attr_accessor threat_actor_ip_addresses: ::Array[Types::ThreatActorIp]
95
+ attr_accessor impacted_services: ::Array[::String]
96
+ attr_accessor impacted_aws_regions: ::Array[Types::ImpactedAwsRegion]
97
+ attr_accessor tags: ::Hash[::String, ::String]
98
+ SENSITIVE: [:title, :description]
99
+ end
100
+
101
+ class CreateCaseResponse
102
+ attr_accessor case_id: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class CreateMembershipRequest
107
+ attr_accessor client_token: ::String
108
+ attr_accessor membership_name: ::String
109
+ attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
110
+ attr_accessor opt_in_features: ::Array[Types::OptInFeature]
111
+ attr_accessor tags: ::Hash[::String, ::String]
112
+ SENSITIVE: [:membership_name]
113
+ end
114
+
115
+ class CreateMembershipResponse
116
+ attr_accessor membership_id: ::String
117
+ SENSITIVE: []
118
+ end
119
+
120
+ class GetCaseAttachmentDownloadUrlRequest
121
+ attr_accessor case_id: ::String
122
+ attr_accessor attachment_id: ::String
123
+ SENSITIVE: []
124
+ end
125
+
126
+ class GetCaseAttachmentDownloadUrlResponse
127
+ attr_accessor attachment_presigned_url: ::String
128
+ SENSITIVE: [:attachment_presigned_url]
129
+ end
130
+
131
+ class GetCaseAttachmentUploadUrlRequest
132
+ attr_accessor case_id: ::String
133
+ attr_accessor file_name: ::String
134
+ attr_accessor content_length: ::Integer
135
+ attr_accessor client_token: ::String
136
+ SENSITIVE: [:file_name]
137
+ end
138
+
139
+ class GetCaseAttachmentUploadUrlResponse
140
+ attr_accessor attachment_presigned_url: ::String
141
+ SENSITIVE: [:attachment_presigned_url]
142
+ end
143
+
144
+ class GetCaseRequest
145
+ attr_accessor case_id: ::String
146
+ SENSITIVE: []
147
+ end
148
+
149
+ class GetCaseResponse
150
+ attr_accessor title: ::String
151
+ attr_accessor case_arn: ::String
152
+ attr_accessor description: ::String
153
+ attr_accessor case_status: ("Submitted" | "Acknowledged" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities" | "Ready to Close" | "Closed")
154
+ attr_accessor engagement_type: ("Security Incident" | "Investigation")
155
+ attr_accessor reported_incident_start_date: ::Time
156
+ attr_accessor actual_incident_start_date: ::Time
157
+ attr_accessor impacted_aws_regions: ::Array[Types::ImpactedAwsRegion]
158
+ attr_accessor threat_actor_ip_addresses: ::Array[Types::ThreatActorIp]
159
+ attr_accessor pending_action: ("Customer" | "None")
160
+ attr_accessor impacted_accounts: ::Array[::String]
161
+ attr_accessor watchers: ::Array[Types::Watcher]
162
+ attr_accessor created_date: ::Time
163
+ attr_accessor last_updated_date: ::Time
164
+ attr_accessor closure_code: ("Investigation Completed" | "Not Resolved" | "False Positive" | "Duplicate")
165
+ attr_accessor resolver_type: ("AWS" | "Self")
166
+ attr_accessor impacted_services: ::Array[::String]
167
+ attr_accessor case_attachments: ::Array[Types::CaseAttachmentAttributes]
168
+ attr_accessor closed_date: ::Time
169
+ SENSITIVE: [:title, :description]
170
+ end
171
+
172
+ class GetMembershipAccountDetailError
173
+ attr_accessor account_id: ::String
174
+ attr_accessor error: ::String
175
+ attr_accessor message: ::String
176
+ SENSITIVE: []
177
+ end
178
+
179
+ class GetMembershipAccountDetailItem
180
+ attr_accessor account_id: ::String
181
+ attr_accessor relationship_status: ("Associated" | "Disassociated")
182
+ attr_accessor relationship_type: ("Organization")
183
+ SENSITIVE: []
184
+ end
185
+
186
+ class GetMembershipRequest
187
+ attr_accessor membership_id: ::String
188
+ SENSITIVE: []
189
+ end
190
+
191
+ class GetMembershipResponse
192
+ attr_accessor membership_id: ::String
193
+ attr_accessor account_id: ::String
194
+ attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
195
+ attr_accessor membership_name: ::String
196
+ attr_accessor membership_arn: ::String
197
+ attr_accessor membership_status: ("Active" | "Cancelled" | "Terminated")
198
+ attr_accessor membership_activation_timestamp: ::Time
199
+ attr_accessor membership_deactivation_timestamp: ::Time
200
+ attr_accessor customer_type: ("Standalone" | "Organization")
201
+ attr_accessor number_of_accounts_covered: ::Integer
202
+ attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
203
+ attr_accessor opt_in_features: ::Array[Types::OptInFeature]
204
+ SENSITIVE: [:membership_name]
205
+ end
206
+
207
+ class ImpactedAwsRegion
208
+ attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class IncidentResponder
213
+ attr_accessor name: ::String
214
+ attr_accessor job_title: ::String
215
+ attr_accessor email: ::String
216
+ SENSITIVE: [:name, :job_title, :email]
217
+ end
218
+
219
+ class InternalServerException
220
+ attr_accessor message: ::String
221
+ attr_accessor retry_after_seconds: ::Integer
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class InvalidTokenException
226
+ attr_accessor message: ::String
227
+ SENSITIVE: []
228
+ end
229
+
230
+ class ListCaseEditsRequest
231
+ attr_accessor next_token: ::String
232
+ attr_accessor max_results: ::Integer
233
+ attr_accessor case_id: ::String
234
+ SENSITIVE: []
235
+ end
236
+
237
+ class ListCaseEditsResponse
238
+ attr_accessor next_token: ::String
239
+ attr_accessor items: ::Array[Types::CaseEditItem]
240
+ attr_accessor total: ::Integer
241
+ SENSITIVE: []
242
+ end
243
+
244
+ class ListCasesItem
245
+ attr_accessor case_id: ::String
246
+ attr_accessor last_updated_date: ::Time
247
+ attr_accessor title: ::String
248
+ attr_accessor case_arn: ::String
249
+ attr_accessor engagement_type: ("Security Incident" | "Investigation")
250
+ attr_accessor case_status: ("Submitted" | "Acknowledged" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities" | "Ready to Close" | "Closed")
251
+ attr_accessor created_date: ::Time
252
+ attr_accessor closed_date: ::Time
253
+ attr_accessor resolver_type: ("AWS" | "Self")
254
+ attr_accessor pending_action: ("Customer" | "None")
255
+ SENSITIVE: [:title]
256
+ end
257
+
258
+ class ListCasesRequest
259
+ attr_accessor next_token: ::String
260
+ attr_accessor max_results: ::Integer
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class ListCasesResponse
265
+ attr_accessor next_token: ::String
266
+ attr_accessor items: ::Array[Types::ListCasesItem]
267
+ attr_accessor total: ::Integer
268
+ SENSITIVE: []
269
+ end
270
+
271
+ class ListCommentsItem
272
+ attr_accessor comment_id: ::String
273
+ attr_accessor created_date: ::Time
274
+ attr_accessor last_updated_date: ::Time
275
+ attr_accessor creator: ::String
276
+ attr_accessor last_updated_by: ::String
277
+ attr_accessor body: ::String
278
+ SENSITIVE: [:body]
279
+ end
280
+
281
+ class ListCommentsRequest
282
+ attr_accessor next_token: ::String
283
+ attr_accessor max_results: ::Integer
284
+ attr_accessor case_id: ::String
285
+ SENSITIVE: []
286
+ end
287
+
288
+ class ListCommentsResponse
289
+ attr_accessor next_token: ::String
290
+ attr_accessor items: ::Array[Types::ListCommentsItem]
291
+ attr_accessor total: ::Integer
292
+ SENSITIVE: []
293
+ end
294
+
295
+ class ListMembershipItem
296
+ attr_accessor membership_id: ::String
297
+ attr_accessor account_id: ::String
298
+ attr_accessor region: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-northeast-3" | "ap-south-1" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-4" | "ap-southeast-5" | "ca-central-1" | "ca-west-1" | "cn-north-1" | "cn-northwest-1" | "eu-central-1" | "eu-central-2" | "eu-north-1" | "eu-south-1" | "eu-south-2" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "il-central-1" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")
299
+ attr_accessor membership_arn: ::String
300
+ attr_accessor membership_status: ("Active" | "Cancelled" | "Terminated")
301
+ SENSITIVE: []
302
+ end
303
+
304
+ class ListMembershipsRequest
305
+ attr_accessor next_token: ::String
306
+ attr_accessor max_results: ::Integer
307
+ SENSITIVE: []
308
+ end
309
+
310
+ class ListMembershipsResponse
311
+ attr_accessor next_token: ::String
312
+ attr_accessor items: ::Array[Types::ListMembershipItem]
313
+ SENSITIVE: []
314
+ end
315
+
316
+ class ListTagsForResourceInput
317
+ attr_accessor resource_arn: ::String
318
+ SENSITIVE: []
319
+ end
320
+
321
+ class ListTagsForResourceOutput
322
+ attr_accessor tags: ::Hash[::String, ::String]
323
+ SENSITIVE: []
324
+ end
325
+
326
+ class OptInFeature
327
+ attr_accessor feature_name: ("Triage")
328
+ attr_accessor is_enabled: bool
329
+ SENSITIVE: []
330
+ end
331
+
332
+ class ResourceNotFoundException
333
+ attr_accessor message: ::String
334
+ SENSITIVE: []
335
+ end
336
+
337
+ class SecurityIncidentResponseNotActiveException
338
+ attr_accessor message: ::String
339
+ SENSITIVE: []
340
+ end
341
+
342
+ class ServiceQuotaExceededException
343
+ attr_accessor message: ::String
344
+ attr_accessor resource_id: ::String
345
+ attr_accessor resource_type: ::String
346
+ attr_accessor service_code: ::String
347
+ attr_accessor quota_code: ::String
348
+ SENSITIVE: []
349
+ end
350
+
351
+ class TagResourceInput
352
+ attr_accessor resource_arn: ::String
353
+ attr_accessor tags: ::Hash[::String, ::String]
354
+ SENSITIVE: []
355
+ end
356
+
357
+ class TagResourceOutput < Aws::EmptyStructure
358
+ end
359
+
360
+ class ThreatActorIp
361
+ attr_accessor ip_address: ::String
362
+ attr_accessor user_agent: ::String
363
+ SENSITIVE: [:ip_address]
364
+ end
365
+
366
+ class ThrottlingException
367
+ attr_accessor message: ::String
368
+ attr_accessor service_code: ::String
369
+ attr_accessor quota_code: ::String
370
+ attr_accessor retry_after_seconds: ::Integer
371
+ SENSITIVE: []
372
+ end
373
+
374
+ class UntagResourceInput
375
+ attr_accessor resource_arn: ::String
376
+ attr_accessor tag_keys: ::Array[::String]
377
+ SENSITIVE: []
378
+ end
379
+
380
+ class UntagResourceOutput < Aws::EmptyStructure
381
+ end
382
+
383
+ class UpdateCaseCommentRequest
384
+ attr_accessor case_id: ::String
385
+ attr_accessor comment_id: ::String
386
+ attr_accessor body: ::String
387
+ SENSITIVE: [:body]
388
+ end
389
+
390
+ class UpdateCaseCommentResponse
391
+ attr_accessor comment_id: ::String
392
+ attr_accessor body: ::String
393
+ SENSITIVE: [:body]
394
+ end
395
+
396
+ class UpdateCaseRequest
397
+ attr_accessor case_id: ::String
398
+ attr_accessor title: ::String
399
+ attr_accessor description: ::String
400
+ attr_accessor reported_incident_start_date: ::Time
401
+ attr_accessor actual_incident_start_date: ::Time
402
+ attr_accessor engagement_type: ("Security Incident" | "Investigation")
403
+ attr_accessor watchers_to_add: ::Array[Types::Watcher]
404
+ attr_accessor watchers_to_delete: ::Array[Types::Watcher]
405
+ attr_accessor threat_actor_ip_addresses_to_add: ::Array[Types::ThreatActorIp]
406
+ attr_accessor threat_actor_ip_addresses_to_delete: ::Array[Types::ThreatActorIp]
407
+ attr_accessor impacted_services_to_add: ::Array[::String]
408
+ attr_accessor impacted_services_to_delete: ::Array[::String]
409
+ attr_accessor impacted_aws_regions_to_add: ::Array[Types::ImpactedAwsRegion]
410
+ attr_accessor impacted_aws_regions_to_delete: ::Array[Types::ImpactedAwsRegion]
411
+ attr_accessor impacted_accounts_to_add: ::Array[::String]
412
+ attr_accessor impacted_accounts_to_delete: ::Array[::String]
413
+ SENSITIVE: [:title, :description]
414
+ end
415
+
416
+ class UpdateCaseResponse < Aws::EmptyStructure
417
+ end
418
+
419
+ class UpdateCaseStatusRequest
420
+ attr_accessor case_id: ::String
421
+ attr_accessor case_status: ("Submitted" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities")
422
+ SENSITIVE: []
423
+ end
424
+
425
+ class UpdateCaseStatusResponse
426
+ attr_accessor case_status: ("Submitted" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities")
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class UpdateMembershipRequest
431
+ attr_accessor membership_id: ::String
432
+ attr_accessor membership_name: ::String
433
+ attr_accessor incident_response_team: ::Array[Types::IncidentResponder]
434
+ attr_accessor opt_in_features: ::Array[Types::OptInFeature]
435
+ SENSITIVE: [:membership_name]
436
+ end
437
+
438
+ class UpdateMembershipResponse < Aws::EmptyStructure
439
+ end
440
+
441
+ class UpdateResolverTypeRequest
442
+ attr_accessor case_id: ::String
443
+ attr_accessor resolver_type: ("AWS" | "Self")
444
+ SENSITIVE: []
445
+ end
446
+
447
+ class UpdateResolverTypeResponse
448
+ attr_accessor case_id: ::String
449
+ attr_accessor case_status: ("Submitted" | "Acknowledged" | "Detection and Analysis" | "Containment, Eradication and Recovery" | "Post-incident Activities" | "Ready to Close" | "Closed")
450
+ attr_accessor resolver_type: ("AWS" | "Self")
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class ValidationException
455
+ attr_accessor message: ::String
456
+ attr_accessor reason: ("UNKNOWN_OPERATION" | "CANNOT_PARSE" | "FIELD_VALIDATION_FAILED" | "OTHER")
457
+ attr_accessor field_list: ::Array[Types::ValidationExceptionField]
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class ValidationExceptionField
462
+ attr_accessor name: ::String
463
+ attr_accessor message: ::String
464
+ SENSITIVE: []
465
+ end
466
+
467
+ class Watcher
468
+ attr_accessor email: ::String
469
+ attr_accessor name: ::String
470
+ attr_accessor job_title: ::String
471
+ SENSITIVE: [:email, :name, :job_title]
472
+ end
473
+ end
474
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SecurityIR
10
+ module Waiters
11
+ end
12
+ end
13
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: aws-sdk-securityir
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Amazon Web Services
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: aws-sdk-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3'
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: 3.210.0
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - "~>"
28
+ - !ruby/object:Gem::Version
29
+ version: '3'
30
+ - - ">="
31
+ - !ruby/object:Gem::Version
32
+ version: 3.210.0
33
+ - !ruby/object:Gem::Dependency
34
+ name: aws-sigv4
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.5'
40
+ type: :runtime
41
+ prerelease: false
42
+ version_requirements: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: '1.5'
47
+ description: Official AWS Ruby gem for Security Incident Response. This gem is part
48
+ of the AWS SDK for Ruby.
49
+ email:
50
+ - aws-dr-rubygems@amazon.com
51
+ executables: []
52
+ extensions: []
53
+ extra_rdoc_files: []
54
+ files:
55
+ - CHANGELOG.md
56
+ - LICENSE.txt
57
+ - VERSION
58
+ - lib/aws-sdk-securityir.rb
59
+ - lib/aws-sdk-securityir/client.rb
60
+ - lib/aws-sdk-securityir/client_api.rb
61
+ - lib/aws-sdk-securityir/customizations.rb
62
+ - lib/aws-sdk-securityir/endpoint_parameters.rb
63
+ - lib/aws-sdk-securityir/endpoint_provider.rb
64
+ - lib/aws-sdk-securityir/endpoints.rb
65
+ - lib/aws-sdk-securityir/errors.rb
66
+ - lib/aws-sdk-securityir/plugins/endpoints.rb
67
+ - lib/aws-sdk-securityir/resource.rb
68
+ - lib/aws-sdk-securityir/types.rb
69
+ - lib/aws-sdk-securityir/waiters.rb
70
+ - sig/client.rbs
71
+ - sig/errors.rbs
72
+ - sig/resource.rbs
73
+ - sig/types.rbs
74
+ - sig/waiters.rbs
75
+ homepage: https://github.com/aws/aws-sdk-ruby
76
+ licenses:
77
+ - Apache-2.0
78
+ metadata:
79
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-securityir
80
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-securityir/CHANGELOG.md
81
+ post_install_message:
82
+ rdoc_options: []
83
+ require_paths:
84
+ - lib
85
+ required_ruby_version: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '2.5'
90
+ required_rubygems_version: !ruby/object:Gem::Requirement
91
+ requirements:
92
+ - - ">="
93
+ - !ruby/object:Gem::Version
94
+ version: '0'
95
+ requirements: []
96
+ rubygems_version: 3.4.10
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: AWS SDK for Ruby - Security Incident Response
100
+ test_files: []