aws-sdk-voiceid 1.4.0 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-voiceid/client.rb +9 -2
- data/lib/aws-sdk-voiceid/client_api.rb +2 -0
- data/lib/aws-sdk-voiceid/types.rb +14 -0
- data/lib/aws-sdk-voiceid.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0b76a48ba7d13a86c8abb18c893542577852d7a6d306e4c0c6f8fbca03b1de1f
|
4
|
+
data.tar.gz: db8f4a87bc00afff2d90262f5cf33681d2895dc98f9753c9d464dfb3fc458cfd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3643de13aea4c5ef93ec2e779e4d0b31b574713ae19891b94dce42bbeb27d8b2fdc1d5a0646c961fa0521c815170a6848e42c425d4d8b160948361ff09dfb99d
|
7
|
+
data.tar.gz: 8b09358593d88cf20550fd27253cae782d54b13523991ef7b665dde25c2378e1d400c43539375ff20bfae4438f66ec42056dafb60212d4d7dd1f4b51558cc928
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.7.0 (2022-05-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - VoiceID will now automatically expire Speakers if they haven't been accessed for Enrollment, Re-enrollment or Successful Auth for three years. The Speaker APIs now return a "LastAccessedAt" time for Speakers, and the EvaluateSession API returns "SPEAKER_EXPIRED" Auth Decision for EXPIRED Speakers.
|
8
|
+
|
9
|
+
1.6.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.5.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.4.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.7.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::VoiceID
|
|
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
|
|
@@ -643,6 +647,7 @@ module Aws::VoiceID
|
|
643
647
|
# resp.speaker.customer_speaker_id #=> String
|
644
648
|
# resp.speaker.domain_id #=> String
|
645
649
|
# resp.speaker.generated_speaker_id #=> String
|
650
|
+
# resp.speaker.last_accessed_at #=> Time
|
646
651
|
# resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
|
647
652
|
# resp.speaker.updated_at #=> Time
|
648
653
|
#
|
@@ -735,7 +740,7 @@ module Aws::VoiceID
|
|
735
740
|
# resp.authentication_result.authentication_result_id #=> String
|
736
741
|
# resp.authentication_result.configuration.acceptance_threshold #=> Integer
|
737
742
|
# resp.authentication_result.customer_speaker_id #=> String
|
738
|
-
# resp.authentication_result.decision #=> String, one of "ACCEPT", "REJECT", "NOT_ENOUGH_SPEECH", "SPEAKER_NOT_ENROLLED", "SPEAKER_OPTED_OUT", "SPEAKER_ID_NOT_PROVIDED"
|
743
|
+
# resp.authentication_result.decision #=> String, one of "ACCEPT", "REJECT", "NOT_ENOUGH_SPEECH", "SPEAKER_NOT_ENROLLED", "SPEAKER_OPTED_OUT", "SPEAKER_ID_NOT_PROVIDED", "SPEAKER_EXPIRED"
|
739
744
|
# resp.authentication_result.generated_speaker_id #=> String
|
740
745
|
# resp.authentication_result.score #=> Integer
|
741
746
|
# resp.domain_id #=> String
|
@@ -974,6 +979,7 @@ module Aws::VoiceID
|
|
974
979
|
# resp.speaker_summaries[0].customer_speaker_id #=> String
|
975
980
|
# resp.speaker_summaries[0].domain_id #=> String
|
976
981
|
# resp.speaker_summaries[0].generated_speaker_id #=> String
|
982
|
+
# resp.speaker_summaries[0].last_accessed_at #=> Time
|
977
983
|
# resp.speaker_summaries[0].status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
|
978
984
|
# resp.speaker_summaries[0].updated_at #=> Time
|
979
985
|
#
|
@@ -1048,6 +1054,7 @@ module Aws::VoiceID
|
|
1048
1054
|
# resp.speaker.customer_speaker_id #=> String
|
1049
1055
|
# resp.speaker.domain_id #=> String
|
1050
1056
|
# resp.speaker.generated_speaker_id #=> String
|
1057
|
+
# resp.speaker.last_accessed_at #=> Time
|
1051
1058
|
# resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
|
1052
1059
|
# resp.speaker.updated_at #=> Time
|
1053
1060
|
#
|
@@ -1377,7 +1384,7 @@ module Aws::VoiceID
|
|
1377
1384
|
params: params,
|
1378
1385
|
config: config)
|
1379
1386
|
context[:gem_name] = 'aws-sdk-voiceid'
|
1380
|
-
context[:gem_version] = '1.
|
1387
|
+
context[:gem_version] = '1.7.0'
|
1381
1388
|
Seahorse::Client::Request.new(handlers, context)
|
1382
1389
|
end
|
1383
1390
|
|
@@ -387,6 +387,7 @@ module Aws::VoiceID
|
|
387
387
|
Speaker.add_member(:customer_speaker_id, Shapes::ShapeRef.new(shape: CustomerSpeakerId, location_name: "CustomerSpeakerId"))
|
388
388
|
Speaker.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
|
389
389
|
Speaker.add_member(:generated_speaker_id, Shapes::ShapeRef.new(shape: GeneratedSpeakerId, location_name: "GeneratedSpeakerId"))
|
390
|
+
Speaker.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastAccessedAt"))
|
390
391
|
Speaker.add_member(:status, Shapes::ShapeRef.new(shape: SpeakerStatus, location_name: "Status"))
|
391
392
|
Speaker.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
|
392
393
|
Speaker.struct_class = Types::Speaker
|
@@ -423,6 +424,7 @@ module Aws::VoiceID
|
|
423
424
|
SpeakerSummary.add_member(:customer_speaker_id, Shapes::ShapeRef.new(shape: CustomerSpeakerId, location_name: "CustomerSpeakerId"))
|
424
425
|
SpeakerSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, location_name: "DomainId"))
|
425
426
|
SpeakerSummary.add_member(:generated_speaker_id, Shapes::ShapeRef.new(shape: GeneratedSpeakerId, location_name: "GeneratedSpeakerId"))
|
427
|
+
SpeakerSummary.add_member(:last_accessed_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastAccessedAt"))
|
426
428
|
SpeakerSummary.add_member(:status, Shapes::ShapeRef.new(shape: SpeakerStatus, location_name: "Status"))
|
427
429
|
SpeakerSummary.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
|
428
430
|
SpeakerSummary.struct_class = Types::SpeakerSummary
|
@@ -1512,6 +1512,12 @@ module Aws::VoiceID
|
|
1512
1512
|
# The service-generated identifier for the speaker.
|
1513
1513
|
# @return [String]
|
1514
1514
|
#
|
1515
|
+
# @!attribute [rw] last_accessed_at
|
1516
|
+
# The timestamp when the speaker was last accessed for enrollment,
|
1517
|
+
# re-enrollment or a successful authentication. This timestamp is
|
1518
|
+
# accurate to one hour.
|
1519
|
+
# @return [Time]
|
1520
|
+
#
|
1515
1521
|
# @!attribute [rw] status
|
1516
1522
|
# The current status of the speaker.
|
1517
1523
|
# @return [String]
|
@@ -1527,6 +1533,7 @@ module Aws::VoiceID
|
|
1527
1533
|
:customer_speaker_id,
|
1528
1534
|
:domain_id,
|
1529
1535
|
:generated_speaker_id,
|
1536
|
+
:last_accessed_at,
|
1530
1537
|
:status,
|
1531
1538
|
:updated_at)
|
1532
1539
|
SENSITIVE = [:customer_speaker_id]
|
@@ -1689,6 +1696,12 @@ module Aws::VoiceID
|
|
1689
1696
|
# The service-generated identifier for the speaker.
|
1690
1697
|
# @return [String]
|
1691
1698
|
#
|
1699
|
+
# @!attribute [rw] last_accessed_at
|
1700
|
+
# The timestamp when the speaker was last accessed for enrollment,
|
1701
|
+
# re-enrollment or a successful authentication. This timestamp is
|
1702
|
+
# accurate to one hour.
|
1703
|
+
# @return [Time]
|
1704
|
+
#
|
1692
1705
|
# @!attribute [rw] status
|
1693
1706
|
# The current status of the speaker.
|
1694
1707
|
# @return [String]
|
@@ -1704,6 +1717,7 @@ module Aws::VoiceID
|
|
1704
1717
|
:customer_speaker_id,
|
1705
1718
|
:domain_id,
|
1706
1719
|
:generated_speaker_id,
|
1720
|
+
:last_accessed_at,
|
1707
1721
|
:status,
|
1708
1722
|
:updated_at)
|
1709
1723
|
SENSITIVE = [:customer_speaker_id]
|
data/lib/aws-sdk-voiceid.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-voiceid
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.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:
|
11
|
+
date: 2022-05-25 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.
|
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.
|
32
|
+
version: 3.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|