aws-sdk-rekognition 1.63.0 → 1.66.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: 39bfb1f73b71085052d174189b9b4fe3456d37c2e5371eb16a64c83ae97e4f60
4
- data.tar.gz: 9cd9756728192ca25d5a7660a6ed0b04c3d010ef849987e4062493e2151e5698
3
+ metadata.gz: a610d3a80b6fd1349aeb2d2c7c48042a7cd74dec4c2831959502a7d74bbbd76f
4
+ data.tar.gz: 026ab7787798e52fb40aa0a0e8a4b92eb270d0890f7a44defeacae40210a90eb
5
5
  SHA512:
6
- metadata.gz: aad1e44caf9cf0d1bfcdb7a18c3ecf5f5a59e3e7c1127fc922fcba634ce6ff40c5276df161518d16924e6e7f4049158684061ca2c4e0445b8eabe429fc198815
7
- data.tar.gz: a32ab3c208756add46c70aed921da35f8e57a65fca301a06e324a8c8b550865f0ef3b5578ea072ee0650ba72b66e1ea8b4e4474509e2e821bded416f33349230
6
+ metadata.gz: 240372e558a7c409f08c3fadc7d6cb096844db1ec08988e98f0d3216986bce4e5a80d17ea853b7e684ddc2907cff0e7062d67f0ea1395b713a796d62e806e07c
7
+ data.tar.gz: c22787cfcb6fcbee1cf5930a4c73c288dd5e9575406101be1ca8aafc9cd3ca6071b69fdd21ac11f9474f00b31647582f905d5e6a41fc00281f7075a159c77569
data/CHANGELOG.md CHANGED
@@ -1,6 +1,21 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.66.0 (2022-02-24)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.65.0 (2022-02-03)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
14
+ 1.64.0 (2022-01-04)
15
+ ------------------
16
+
17
+ * Feature - This release introduces a new field IndexFacesModelVersion, which is the version of the face detect and storage model that was used when indexing the face vector.
18
+
4
19
  1.63.0 (2021-12-21)
5
20
  ------------------
6
21
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.63.0
1
+ 1.66.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::Rekognition
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
 
@@ -2945,6 +2949,7 @@ module Aws::Rekognition
2945
2949
  # resp.persons[0].face_matches[0].face.image_id #=> String
2946
2950
  # resp.persons[0].face_matches[0].face.external_image_id #=> String
2947
2951
  # resp.persons[0].face_matches[0].face.confidence #=> Float
2952
+ # resp.persons[0].face_matches[0].face.index_faces_model_version #=> String
2948
2953
  #
2949
2954
  # @overload get_face_search(params = {})
2950
2955
  # @param [Hash] params ({})
@@ -3512,9 +3517,9 @@ module Aws::Rekognition
3512
3517
  # `detectionAttributes` parameter), Amazon Rekognition returns detailed
3513
3518
  # facial attributes, such as facial landmarks (for example, location of
3514
3519
  # eye and mouth) and other facial attributes. If you provide the same
3515
- # image, specify the same collection, and use the same external ID in
3516
- # the `IndexFaces` operation, Amazon Rekognition doesn't save duplicate
3517
- # face metadata.
3520
+ # image, specify the same collection, use the same external ID, and use
3521
+ # the same model version in the `IndexFaces` operation, Amazon
3522
+ # Rekognition doesn't save duplicate face metadata.
3518
3523
  #
3519
3524
  #
3520
3525
  #
@@ -3767,6 +3772,7 @@ module Aws::Rekognition
3767
3772
  # resp.face_records[0].face.image_id #=> String
3768
3773
  # resp.face_records[0].face.external_image_id #=> String
3769
3774
  # resp.face_records[0].face.confidence #=> Float
3775
+ # resp.face_records[0].face.index_faces_model_version #=> String
3770
3776
  # resp.face_records[0].face_detail.bounding_box.width #=> Float
3771
3777
  # resp.face_records[0].face_detail.bounding_box.height #=> Float
3772
3778
  # resp.face_records[0].face_detail.bounding_box.left #=> Float
@@ -4245,6 +4251,7 @@ module Aws::Rekognition
4245
4251
  # resp.faces[0].image_id #=> String
4246
4252
  # resp.faces[0].external_image_id #=> String
4247
4253
  # resp.faces[0].confidence #=> Float
4254
+ # resp.faces[0].index_faces_model_version #=> String
4248
4255
  # resp.next_token #=> String
4249
4256
  # resp.face_model_version #=> String
4250
4257
  #
@@ -4577,6 +4584,7 @@ module Aws::Rekognition
4577
4584
  # resp.face_matches[0].face.image_id #=> String
4578
4585
  # resp.face_matches[0].face.external_image_id #=> String
4579
4586
  # resp.face_matches[0].face.confidence #=> Float
4587
+ # resp.face_matches[0].face.index_faces_model_version #=> String
4580
4588
  # resp.face_model_version #=> String
4581
4589
  #
4582
4590
  # @overload search_faces(params = {})
@@ -4759,6 +4767,7 @@ module Aws::Rekognition
4759
4767
  # resp.face_matches[0].face.image_id #=> String
4760
4768
  # resp.face_matches[0].face.external_image_id #=> String
4761
4769
  # resp.face_matches[0].face.confidence #=> Float
4770
+ # resp.face_matches[0].face.index_faces_model_version #=> String
4762
4771
  # resp.face_model_version #=> String
4763
4772
  #
4764
4773
  # @overload search_faces_by_image(params = {})
@@ -5713,7 +5722,7 @@ module Aws::Rekognition
5713
5722
  params: params,
5714
5723
  config: config)
5715
5724
  context[:gem_name] = 'aws-sdk-rekognition'
5716
- context[:gem_version] = '1.63.0'
5725
+ context[:gem_version] = '1.66.0'
5717
5726
  Seahorse::Client::Request.new(handlers, context)
5718
5727
  end
5719
5728
 
@@ -190,6 +190,7 @@ module Aws::Rekognition
190
190
  ImageId = Shapes::StringShape.new(name: 'ImageId')
191
191
  ImageQuality = Shapes::StructureShape.new(name: 'ImageQuality')
192
192
  ImageTooLargeException = Shapes::StructureShape.new(name: 'ImageTooLargeException')
193
+ IndexFacesModelVersion = Shapes::StringShape.new(name: 'IndexFacesModelVersion')
193
194
  IndexFacesRequest = Shapes::StructureShape.new(name: 'IndexFacesRequest')
194
195
  IndexFacesResponse = Shapes::StructureShape.new(name: 'IndexFacesResponse')
195
196
  InferenceUnits = Shapes::IntegerShape.new(name: 'InferenceUnits')
@@ -794,6 +795,7 @@ module Aws::Rekognition
794
795
  Face.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
795
796
  Face.add_member(:external_image_id, Shapes::ShapeRef.new(shape: ExternalImageId, location_name: "ExternalImageId"))
796
797
  Face.add_member(:confidence, Shapes::ShapeRef.new(shape: Percent, location_name: "Confidence"))
798
+ Face.add_member(:index_faces_model_version, Shapes::ShapeRef.new(shape: IndexFacesModelVersion, location_name: "IndexFacesModelVersion"))
797
799
  Face.struct_class = Types::Face
798
800
 
799
801
  FaceDetail.add_member(:bounding_box, Shapes::ShapeRef.new(shape: BoundingBox, location_name: "BoundingBox"))
@@ -632,8 +632,12 @@ module Aws::Rekognition
632
632
  # @return [String]
633
633
  #
634
634
  # @!attribute [rw] face_model_version
635
- # Version number of the face detection model associated with the
636
- # collection you are creating.
635
+ # Latest face model being used with the collection. For more
636
+ # information, see [Model versioning][1].
637
+ #
638
+ #
639
+ #
640
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
637
641
  # @return [String]
638
642
  #
639
643
  class CreateCollectionResponse < Struct.new(
@@ -2332,12 +2336,18 @@ module Aws::Rekognition
2332
2336
  # different object such as a tree).
2333
2337
  # @return [Float]
2334
2338
  #
2339
+ # @!attribute [rw] index_faces_model_version
2340
+ # The version of the face detect and storage model that was used when
2341
+ # indexing the face vector.
2342
+ # @return [String]
2343
+ #
2335
2344
  class Face < Struct.new(
2336
2345
  :face_id,
2337
2346
  :bounding_box,
2338
2347
  :image_id,
2339
2348
  :external_image_id,
2340
- :confidence)
2349
+ :confidence,
2350
+ :index_faces_model_version)
2341
2351
  SENSITIVE = []
2342
2352
  include Aws::Structure
2343
2353
  end
@@ -3684,8 +3694,12 @@ module Aws::Rekognition
3684
3694
  # @return [String]
3685
3695
  #
3686
3696
  # @!attribute [rw] face_model_version
3687
- # The version number of the face detection model that's associated
3688
- # with the input collection (`CollectionId`).
3697
+ # Latest face model being used with the collection. For more
3698
+ # information, see [Model versioning][1].
3699
+ #
3700
+ #
3701
+ #
3702
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
3689
3703
  # @return [String]
3690
3704
  #
3691
3705
  # @!attribute [rw] unindexed_faces
@@ -3926,10 +3940,15 @@ module Aws::Rekognition
3926
3940
  # @return [String]
3927
3941
  #
3928
3942
  # @!attribute [rw] face_model_versions
3929
- # Version numbers of the face detection models associated with the
3930
- # collections in the array `CollectionIds`. For example, the value of
3931
- # `FaceModelVersions[2]` is the version number for the face detection
3932
- # model used by the collection in `CollectionId[2]`.
3943
+ # Latest face models being used with the corresponding collections in
3944
+ # the array. For more information, see [Model versioning][1]. For
3945
+ # example, the value of `FaceModelVersions[2]` is the version number
3946
+ # for the face detection model used by the collection in
3947
+ # `CollectionId[2]`.
3948
+ #
3949
+ #
3950
+ #
3951
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
3933
3952
  # @return [Array<String>]
3934
3953
  #
3935
3954
  class ListCollectionsResponse < Struct.new(
@@ -4125,8 +4144,12 @@ module Aws::Rekognition
4125
4144
  # @return [String]
4126
4145
  #
4127
4146
  # @!attribute [rw] face_model_version
4128
- # Version number of the face detection model associated with the input
4129
- # collection (`CollectionId`).
4147
+ # Latest face model being used with the collection. For more
4148
+ # information, see [Model versioning][1].
4149
+ #
4150
+ #
4151
+ #
4152
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
4130
4153
  # @return [String]
4131
4154
  #
4132
4155
  class ListFacesResponse < Struct.new(
@@ -4991,8 +5014,12 @@ module Aws::Rekognition
4991
5014
  # @return [Array<Types::FaceMatch>]
4992
5015
  #
4993
5016
  # @!attribute [rw] face_model_version
4994
- # Version number of the face detection model associated with the input
4995
- # collection (`CollectionId`).
5017
+ # Latest face model being used with the collection. For more
5018
+ # information, see [Model versioning][1].
5019
+ #
5020
+ #
5021
+ #
5022
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
4996
5023
  # @return [String]
4997
5024
  #
4998
5025
  class SearchFacesByImageResponse < Struct.new(
@@ -5052,8 +5079,12 @@ module Aws::Rekognition
5052
5079
  # @return [Array<Types::FaceMatch>]
5053
5080
  #
5054
5081
  # @!attribute [rw] face_model_version
5055
- # Version number of the face detection model associated with the input
5056
- # collection (`CollectionId`).
5082
+ # Latest face model being used with the collection. For more
5083
+ # information, see [Model versioning][1].
5084
+ #
5085
+ #
5086
+ #
5087
+ # [1]: https://docs.aws.amazon.com/rekognition/latest/dg/face-detection-model.html
5057
5088
  # @return [String]
5058
5089
  #
5059
5090
  class SearchFacesResponse < Struct.new(
@@ -49,6 +49,6 @@ require_relative 'aws-sdk-rekognition/customizations'
49
49
  # @!group service
50
50
  module Aws::Rekognition
51
51
 
52
- GEM_VERSION = '1.63.0'
52
+ GEM_VERSION = '1.66.0'
53
53
 
54
54
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-rekognition
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.63.0
4
+ version: 1.66.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: 2021-12-21 00:00:00.000000000 Z
11
+ date: 2022-02-24 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