aws-sdk-voiceid 1.6.0 → 1.7.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: 20ca633512173178e66ca61e427c1db73b22d3ac8f29186e2e642023e06b71d8
4
- data.tar.gz: 29a280f2ba0948ebebbf9b380f7ff14b0b47e6e7891fac406713737336ce8a9e
3
+ metadata.gz: 0b76a48ba7d13a86c8abb18c893542577852d7a6d306e4c0c6f8fbca03b1de1f
4
+ data.tar.gz: db8f4a87bc00afff2d90262f5cf33681d2895dc98f9753c9d464dfb3fc458cfd
5
5
  SHA512:
6
- metadata.gz: 739f3a5c3a40da973ca2a8b3e8136fc52839d42f3c237c2d7ed748182aa9a3f4b489978da0b11a8af5462d2bcf78f292f71e5ecf481dbb12d719336ec4cbfdfc
7
- data.tar.gz: f7de43943ef13ee54584d8f60ea17b6f108db85ed7d311c526e21938a74d9c47c66f350a84c03b342a2ad1e9ad75c9c2c8db72802844e4c1b7e962e5ba28e888
6
+ metadata.gz: 3643de13aea4c5ef93ec2e779e4d0b31b574713ae19891b94dce42bbeb27d8b2fdc1d5a0646c961fa0521c815170a6848e42c425d4d8b160948361ff09dfb99d
7
+ data.tar.gz: 8b09358593d88cf20550fd27253cae782d54b13523991ef7b665dde25c2378e1d400c43539375ff20bfae4438f66ec42056dafb60212d4d7dd1f4b51558cc928
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.6.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.6.0
1
+ 1.7.0
@@ -647,6 +647,7 @@ module Aws::VoiceID
647
647
  # resp.speaker.customer_speaker_id #=> String
648
648
  # resp.speaker.domain_id #=> String
649
649
  # resp.speaker.generated_speaker_id #=> String
650
+ # resp.speaker.last_accessed_at #=> Time
650
651
  # resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
651
652
  # resp.speaker.updated_at #=> Time
652
653
  #
@@ -739,7 +740,7 @@ module Aws::VoiceID
739
740
  # resp.authentication_result.authentication_result_id #=> String
740
741
  # resp.authentication_result.configuration.acceptance_threshold #=> Integer
741
742
  # resp.authentication_result.customer_speaker_id #=> String
742
- # 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"
743
744
  # resp.authentication_result.generated_speaker_id #=> String
744
745
  # resp.authentication_result.score #=> Integer
745
746
  # resp.domain_id #=> String
@@ -978,6 +979,7 @@ module Aws::VoiceID
978
979
  # resp.speaker_summaries[0].customer_speaker_id #=> String
979
980
  # resp.speaker_summaries[0].domain_id #=> String
980
981
  # resp.speaker_summaries[0].generated_speaker_id #=> String
982
+ # resp.speaker_summaries[0].last_accessed_at #=> Time
981
983
  # resp.speaker_summaries[0].status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
982
984
  # resp.speaker_summaries[0].updated_at #=> Time
983
985
  #
@@ -1052,6 +1054,7 @@ module Aws::VoiceID
1052
1054
  # resp.speaker.customer_speaker_id #=> String
1053
1055
  # resp.speaker.domain_id #=> String
1054
1056
  # resp.speaker.generated_speaker_id #=> String
1057
+ # resp.speaker.last_accessed_at #=> Time
1055
1058
  # resp.speaker.status #=> String, one of "ENROLLED", "EXPIRED", "OPTED_OUT", "PENDING"
1056
1059
  # resp.speaker.updated_at #=> Time
1057
1060
  #
@@ -1381,7 +1384,7 @@ module Aws::VoiceID
1381
1384
  params: params,
1382
1385
  config: config)
1383
1386
  context[:gem_name] = 'aws-sdk-voiceid'
1384
- context[:gem_version] = '1.6.0'
1387
+ context[:gem_version] = '1.7.0'
1385
1388
  Seahorse::Client::Request.new(handlers, context)
1386
1389
  end
1387
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]
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-voiceid/customizations'
48
48
  # @!group service
49
49
  module Aws::VoiceID
50
50
 
51
- GEM_VERSION = '1.6.0'
51
+ GEM_VERSION = '1.7.0'
52
52
 
53
53
  end
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.6.0
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: 2022-02-24 00:00:00.000000000 Z
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