aws-sdk-frauddetector 1.30.0 → 1.33.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: de1040dac4897b7124d1638c45a389f9844599a2957f01d33f9723b774b0dfb0
4
- data.tar.gz: bf4e2a12f37f89ea886b1e3e25ca7ec1536ac63908a8d2ef8fe29e292f16e003
3
+ metadata.gz: 8a094a9e5b30822d7895d08d72590c8a7383a9866933051d108a46856c636ad5
4
+ data.tar.gz: d73cdd873e287e48814a284351510721734f6db99af9aacebb52edd157eb13b0
5
5
  SHA512:
6
- metadata.gz: d7d85fe3b7543f52bf44b77f2d634d56d82e0e56d7333d32c368762c3eeb7753d73cd07e59cab5fd1ea5691a21bf81420d75ed89f9e101c5d8c1d5cb29a30c9d
7
- data.tar.gz: de017cedc6e66c9577c9c05bd3cbb72d23ccc5c8288d436f0f24f0f87db6a6cc79c427fe6f7b14ab29ddc496ad19313785a6f1940dee73a4eca8f1177c5d8d7c
6
+ metadata.gz: d02cea09ce691547c5e730f78d9ccd6d73dfde9263b71abd9ad2b2c2b679514ba800871b45a11d1bbbc599c9c76486bd0b9428ae2aa556af9eae82e781d16c54
7
+ data.tar.gz: fab68c139cad4f73d0845b92d55748d3381537f4871787a9ccaa256b210fdded884d930aeabe3703912bdd2592cf4882d4d2907033040d7291276a51d0edeb92
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2022-06-10)
5
+ ------------------
6
+
7
+ * Feature - Documentation updates for Amazon Fraud Detector (AWSHawksNest)
8
+
9
+ 1.32.0 (2022-02-24)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.31.0 (2022-02-03)
15
+ ------------------
16
+
17
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
18
+
4
19
  1.30.0 (2022-01-26)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.33.0
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
28
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
29
  require 'aws-sdk-core/plugins/http_checksum.rb'
30
+ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
30
31
  require 'aws-sdk-core/plugins/defaults_mode.rb'
32
+ require 'aws-sdk-core/plugins/recursion_detection.rb'
31
33
  require 'aws-sdk-core/plugins/signature_v4.rb'
32
34
  require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
33
35
 
@@ -74,7 +76,9 @@ module Aws::FraudDetector
74
76
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
75
77
  add_plugin(Aws::Plugins::TransferEncoding)
76
78
  add_plugin(Aws::Plugins::HttpChecksum)
79
+ add_plugin(Aws::Plugins::ChecksumAlgorithm)
77
80
  add_plugin(Aws::Plugins::DefaultsMode)
81
+ add_plugin(Aws::Plugins::RecursionDetection)
78
82
  add_plugin(Aws::Plugins::SignatureV4)
79
83
  add_plugin(Aws::Plugins::Protocols::JsonRpc)
80
84
 
@@ -939,7 +943,8 @@ module Aws::FraudDetector
939
943
  req.send_request(options)
940
944
  end
941
945
 
942
- # Deletes data that was batch imported to Amazon Fraud Detector.
946
+ # Deletes the specified batch import job ID record. This action does not
947
+ # delete the data that was batch imported.
943
948
  #
944
949
  # @option params [required, String] :job_id
945
950
  # The ID of the batch import job to delete.
@@ -2000,7 +2005,16 @@ module Aws::FraudDetector
2000
2005
  # The detector version ID.
2001
2006
  #
2002
2007
  # @option params [required, String] :prediction_timestamp
2003
- # The timestamp that defines when the prediction was generated.
2008
+ # The timestamp that defines when the prediction was generated. The
2009
+ # timestamp must be specified using ISO 8601 standard in UTC.
2010
+ #
2011
+ # We recommend calling [ListEventPredictions][1] first, and using the
2012
+ # `predictionTimestamp` value in the response to provide an accurate
2013
+ # prediction timestamp value.
2014
+ #
2015
+ #
2016
+ #
2017
+ # [1]: https://docs.aws.amazon.com/frauddetector/latest/api/API_ListEventPredictions.html
2004
2018
  #
2005
2019
  # @return [Types::GetEventPredictionMetadataResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2006
2020
  #
@@ -3405,9 +3419,11 @@ module Aws::FraudDetector
3405
3419
  #
3406
3420
  # You can perform the following status updates:
3407
3421
  #
3408
- # 1. Change the `TRAINING_COMPLETE` status to `ACTIVE`.
3422
+ # 1. Change the `TRAINING_IN_PROGRESS` status to `TRAINING_CANCELLED`.
3423
+ #
3424
+ # 2. Change the `TRAINING_COMPLETE` status to `ACTIVE`.
3409
3425
  #
3410
- # 2. Change `ACTIVE` to `INACTIVE`.
3426
+ # 3. Change `ACTIVE` to `INACTIVE`.
3411
3427
  #
3412
3428
  # @option params [required, String] :model_id
3413
3429
  # The model ID of the model version to update.
@@ -3582,7 +3598,7 @@ module Aws::FraudDetector
3582
3598
  params: params,
3583
3599
  config: config)
3584
3600
  context[:gem_name] = 'aws-sdk-frauddetector'
3585
- context[:gem_version] = '1.30.0'
3601
+ context[:gem_version] = '1.33.0'
3586
3602
  Seahorse::Client::Request.new(handlers, context)
3587
3603
  end
3588
3604
 
@@ -2433,7 +2433,16 @@ module Aws::FraudDetector
2433
2433
  # @return [String]
2434
2434
  #
2435
2435
  # @!attribute [rw] prediction_timestamp
2436
- # The timestamp that defines when the prediction was generated.
2436
+ # The timestamp that defines when the prediction was generated. The
2437
+ # timestamp must be specified using ISO 8601 standard in UTC.
2438
+ #
2439
+ # We recommend calling [ListEventPredictions][1] first, and using the
2440
+ # `predictionTimestamp` value in the response to provide an accurate
2441
+ # prediction timestamp value.
2442
+ #
2443
+ #
2444
+ #
2445
+ # [1]: https://docs.aws.amazon.com/frauddetector/latest/api/API_ListEventPredictions.html
2437
2446
  # @return [String]
2438
2447
  #
2439
2448
  # @see http://docs.aws.amazon.com/goto/WebAPI/frauddetector-2019-11-15/GetEventPredictionMetadataRequest AWS API Documentation
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-frauddetector/customizations'
48
48
  # @!group service
49
49
  module Aws::FraudDetector
50
50
 
51
- GEM_VERSION = '1.30.0'
51
+ GEM_VERSION = '1.33.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-frauddetector
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.33.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: 2022-01-26 00:00:00.000000000 Z
11
+ date: 2022-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.125.0
22
+ version: 3.127.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.125.0
32
+ version: 3.127.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement