aws-sdk-guardduty 1.39.0 → 1.40.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/lib/aws-sdk-guardduty.rb +1 -1
- data/lib/aws-sdk-guardduty/client.rb +2 -1
- data/lib/aws-sdk-guardduty/client_api.rb +1 -0
- data/lib/aws-sdk-guardduty/types.rb +9 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 425dc70d854ceb12718b2d40a6837f94f1c338690796813915ce9fc89855113a
|
|
4
|
+
data.tar.gz: 8059e9f22e06c76bc38de1a3ff67780563f618623f6669dec2fddba6112a1ea2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d7ed9bb5d82948973e48d38d429f64d7cbc67528360722b8311b97cc8bf10a9087038fdab7ab60c65c17ea4b8195aa0209d5cb1f6045f2fb66b471cb110079b5
|
|
7
|
+
data.tar.gz: 6239acd12842d9d6fc8fcddefd83f396a255eb88623a4a11f377ac099d8784274b50a239cac6b0eff2657bba81e7ef279183a127be04b49e2a1767e25abca1fa
|
data/lib/aws-sdk-guardduty.rb
CHANGED
|
@@ -1537,6 +1537,7 @@ module Aws::GuardDuty
|
|
|
1537
1537
|
# resp.findings[0].service.action.aws_api_call_action.api #=> String
|
|
1538
1538
|
# resp.findings[0].service.action.aws_api_call_action.caller_type #=> String
|
|
1539
1539
|
# resp.findings[0].service.action.aws_api_call_action.domain_details.domain #=> String
|
|
1540
|
+
# resp.findings[0].service.action.aws_api_call_action.error_code #=> String
|
|
1540
1541
|
# resp.findings[0].service.action.aws_api_call_action.remote_ip_details.city.city_name #=> String
|
|
1541
1542
|
# resp.findings[0].service.action.aws_api_call_action.remote_ip_details.country.country_code #=> String
|
|
1542
1543
|
# resp.findings[0].service.action.aws_api_call_action.remote_ip_details.country.country_name #=> String
|
|
@@ -3136,7 +3137,7 @@ module Aws::GuardDuty
|
|
|
3136
3137
|
params: params,
|
|
3137
3138
|
config: config)
|
|
3138
3139
|
context[:gem_name] = 'aws-sdk-guardduty'
|
|
3139
|
-
context[:gem_version] = '1.
|
|
3140
|
+
context[:gem_version] = '1.40.0'
|
|
3140
3141
|
Seahorse::Client::Request.new(handlers, context)
|
|
3141
3142
|
end
|
|
3142
3143
|
|
|
@@ -326,6 +326,7 @@ module Aws::GuardDuty
|
|
|
326
326
|
AwsApiCallAction.add_member(:api, Shapes::ShapeRef.new(shape: String, location_name: "api"))
|
|
327
327
|
AwsApiCallAction.add_member(:caller_type, Shapes::ShapeRef.new(shape: String, location_name: "callerType"))
|
|
328
328
|
AwsApiCallAction.add_member(:domain_details, Shapes::ShapeRef.new(shape: DomainDetails, location_name: "domainDetails"))
|
|
329
|
+
AwsApiCallAction.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "errorCode"))
|
|
329
330
|
AwsApiCallAction.add_member(:remote_ip_details, Shapes::ShapeRef.new(shape: RemoteIpDetails, location_name: "remoteIpDetails"))
|
|
330
331
|
AwsApiCallAction.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
|
331
332
|
AwsApiCallAction.struct_class = Types::AwsApiCallAction
|
|
@@ -228,7 +228,7 @@ module Aws::GuardDuty
|
|
|
228
228
|
#
|
|
229
229
|
class ArchiveFindingsResponse < Aws::EmptyStructure; end
|
|
230
230
|
|
|
231
|
-
# Contains information about the API
|
|
231
|
+
# Contains information about the API action.
|
|
232
232
|
#
|
|
233
233
|
# @!attribute [rw] api
|
|
234
234
|
# The AWS API name.
|
|
@@ -242,8 +242,13 @@ module Aws::GuardDuty
|
|
|
242
242
|
# The domain information for the AWS API call.
|
|
243
243
|
# @return [Types::DomainDetails]
|
|
244
244
|
#
|
|
245
|
+
# @!attribute [rw] error_code
|
|
246
|
+
# The error code of the failed AWS API action.
|
|
247
|
+
# @return [String]
|
|
248
|
+
#
|
|
245
249
|
# @!attribute [rw] remote_ip_details
|
|
246
|
-
# The remote IP information of the connection
|
|
250
|
+
# The remote IP information of the connection that initiated the AWS
|
|
251
|
+
# API call.
|
|
247
252
|
# @return [Types::RemoteIpDetails]
|
|
248
253
|
#
|
|
249
254
|
# @!attribute [rw] service_name
|
|
@@ -256,6 +261,7 @@ module Aws::GuardDuty
|
|
|
256
261
|
:api,
|
|
257
262
|
:caller_type,
|
|
258
263
|
:domain_details,
|
|
264
|
+
:error_code,
|
|
259
265
|
:remote_ip_details,
|
|
260
266
|
:service_name)
|
|
261
267
|
SENSITIVE = []
|
|
@@ -1188,7 +1194,7 @@ module Aws::GuardDuty
|
|
|
1188
1194
|
#
|
|
1189
1195
|
#
|
|
1190
1196
|
#
|
|
1191
|
-
# [1]: https://docs.aws.amazon.com/AmazonS3/
|
|
1197
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html
|
|
1192
1198
|
#
|
|
1193
1199
|
# @!attribute [rw] encryption_type
|
|
1194
1200
|
# The type of encryption used for objects within the S3 bucket.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-guardduty
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.40.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|