aws-sdk-voiceid 1.21.0 → 1.22.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: eaf7572d489d4c4eb87de97c23ce6ff9304a6eba2c4679316e1437655d1b9644
4
- data.tar.gz: ca699066e012c0aa3adac40848de70a22e46f08f95b2be3fde0f5caeb2f4ab03
3
+ metadata.gz: f54f65427e86196dae539e9787104da37ab6c838dd65c1e1f70251fc1e735fae
4
+ data.tar.gz: 8eb86bb7fb775f3ade38ebe736e64cb0f659dc6f9f36546819d70a40b476cf7b
5
5
  SHA512:
6
- metadata.gz: c69b8375226b3be4cb216fbbbcf3e80bf13a31fd371f0d7cb2cf9dc1a798ae2a6b9c94a8a53556e4b8d74c3152517f1bd4cbb601e521c83036e8e53776861c34
7
- data.tar.gz: d2f355b85bdde8faa091bed5135f9b0ada86ff869105ecec3417f4d146d7299238e4150c708c2af1462d167d4f8f84fddb9ebd83582600b39f18a8f687e772f7
6
+ metadata.gz: 48407ab5d30cbf29ea246e0eb124e1bcd7958538aaefae4537488bc5c2b31a6e4b41b5c4017e08c18238fcc5abdd8b538a513303f07895420226d30883ff2d2c
7
+ data.tar.gz: d0aafa889025b60911f4a8734f4a12a10d905558b8cba7150b4bfb888aaa0636802dcba23aa65e54c0a8322911ef5fc65c6ab173e47f44bded0b29aa7e8b0c2a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2024-01-26)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.21.0 (2023-11-28)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -1840,7 +1840,7 @@ module Aws::VoiceID
1840
1840
  params: params,
1841
1841
  config: config)
1842
1842
  context[:gem_name] = 'aws-sdk-voiceid'
1843
- context[:gem_version] = '1.21.0'
1843
+ context[:gem_version] = '1.22.0'
1844
1844
  Seahorse::Client::Request.new(handlers, context)
1845
1845
  end
1846
1846
 
@@ -14,6 +14,7 @@ module Aws::VoiceID
14
14
  option(
15
15
  :endpoint_provider,
16
16
  doc_type: 'Aws::VoiceID::EndpointProvider',
17
+ rbs_type: 'untyped',
17
18
  docstring: 'The endpoint provider used to resolve endpoints. Any '\
18
19
  'object that responds to `#resolve_endpoint(parameters)` '\
19
20
  'where `parameters` is a Struct similar to '\
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-voiceid/customizations'
52
52
  # @!group service
53
53
  module Aws::VoiceID
54
54
 
55
- GEM_VERSION = '1.21.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end
data/sig/client.rbs ADDED
@@ -0,0 +1,451 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module VoiceID
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> instance
73
+ | (?Hash[Symbol, untyped]) -> instance
74
+
75
+
76
+ interface _AssociateFraudsterResponseSuccess
77
+ include ::Seahorse::Client::_ResponseSuccess[Types::AssociateFraudsterResponse]
78
+ def fraudster: () -> Types::Fraudster
79
+ end
80
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#associate_fraudster-instance_method
81
+ def associate_fraudster: (
82
+ domain_id: ::String,
83
+ fraudster_id: ::String,
84
+ watchlist_id: ::String
85
+ ) -> _AssociateFraudsterResponseSuccess
86
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFraudsterResponseSuccess
87
+
88
+ interface _CreateDomainResponseSuccess
89
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateDomainResponse]
90
+ def domain: () -> Types::Domain
91
+ end
92
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#create_domain-instance_method
93
+ def create_domain: (
94
+ ?client_token: ::String,
95
+ ?description: ::String,
96
+ name: ::String,
97
+ server_side_encryption_configuration: {
98
+ kms_key_id: ::String
99
+ },
100
+ ?tags: Array[
101
+ {
102
+ key: ::String,
103
+ value: ::String
104
+ },
105
+ ]
106
+ ) -> _CreateDomainResponseSuccess
107
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainResponseSuccess
108
+
109
+ interface _CreateWatchlistResponseSuccess
110
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateWatchlistResponse]
111
+ def watchlist: () -> Types::Watchlist
112
+ end
113
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#create_watchlist-instance_method
114
+ def create_watchlist: (
115
+ ?client_token: ::String,
116
+ ?description: ::String,
117
+ domain_id: ::String,
118
+ name: ::String
119
+ ) -> _CreateWatchlistResponseSuccess
120
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWatchlistResponseSuccess
121
+
122
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#delete_domain-instance_method
123
+ def delete_domain: (
124
+ domain_id: ::String
125
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
126
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
127
+
128
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#delete_fraudster-instance_method
129
+ def delete_fraudster: (
130
+ domain_id: ::String,
131
+ fraudster_id: ::String
132
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
133
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
134
+
135
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#delete_speaker-instance_method
136
+ def delete_speaker: (
137
+ domain_id: ::String,
138
+ speaker_id: ::String
139
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
140
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
141
+
142
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#delete_watchlist-instance_method
143
+ def delete_watchlist: (
144
+ domain_id: ::String,
145
+ watchlist_id: ::String
146
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
147
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
148
+
149
+ interface _DescribeDomainResponseSuccess
150
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeDomainResponse]
151
+ def domain: () -> Types::Domain
152
+ end
153
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_domain-instance_method
154
+ def describe_domain: (
155
+ domain_id: ::String
156
+ ) -> _DescribeDomainResponseSuccess
157
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeDomainResponseSuccess
158
+
159
+ interface _DescribeFraudsterResponseSuccess
160
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFraudsterResponse]
161
+ def fraudster: () -> Types::Fraudster
162
+ end
163
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_fraudster-instance_method
164
+ def describe_fraudster: (
165
+ domain_id: ::String,
166
+ fraudster_id: ::String
167
+ ) -> _DescribeFraudsterResponseSuccess
168
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFraudsterResponseSuccess
169
+
170
+ interface _DescribeFraudsterRegistrationJobResponseSuccess
171
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFraudsterRegistrationJobResponse]
172
+ def job: () -> Types::FraudsterRegistrationJob
173
+ end
174
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_fraudster_registration_job-instance_method
175
+ def describe_fraudster_registration_job: (
176
+ domain_id: ::String,
177
+ job_id: ::String
178
+ ) -> _DescribeFraudsterRegistrationJobResponseSuccess
179
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFraudsterRegistrationJobResponseSuccess
180
+
181
+ interface _DescribeSpeakerResponseSuccess
182
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSpeakerResponse]
183
+ def speaker: () -> Types::Speaker
184
+ end
185
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_speaker-instance_method
186
+ def describe_speaker: (
187
+ domain_id: ::String,
188
+ speaker_id: ::String
189
+ ) -> _DescribeSpeakerResponseSuccess
190
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSpeakerResponseSuccess
191
+
192
+ interface _DescribeSpeakerEnrollmentJobResponseSuccess
193
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSpeakerEnrollmentJobResponse]
194
+ def job: () -> Types::SpeakerEnrollmentJob
195
+ end
196
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_speaker_enrollment_job-instance_method
197
+ def describe_speaker_enrollment_job: (
198
+ domain_id: ::String,
199
+ job_id: ::String
200
+ ) -> _DescribeSpeakerEnrollmentJobResponseSuccess
201
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSpeakerEnrollmentJobResponseSuccess
202
+
203
+ interface _DescribeWatchlistResponseSuccess
204
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeWatchlistResponse]
205
+ def watchlist: () -> Types::Watchlist
206
+ end
207
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#describe_watchlist-instance_method
208
+ def describe_watchlist: (
209
+ domain_id: ::String,
210
+ watchlist_id: ::String
211
+ ) -> _DescribeWatchlistResponseSuccess
212
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeWatchlistResponseSuccess
213
+
214
+ interface _DisassociateFraudsterResponseSuccess
215
+ include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateFraudsterResponse]
216
+ def fraudster: () -> Types::Fraudster
217
+ end
218
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#disassociate_fraudster-instance_method
219
+ def disassociate_fraudster: (
220
+ domain_id: ::String,
221
+ fraudster_id: ::String,
222
+ watchlist_id: ::String
223
+ ) -> _DisassociateFraudsterResponseSuccess
224
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFraudsterResponseSuccess
225
+
226
+ interface _EvaluateSessionResponseSuccess
227
+ include ::Seahorse::Client::_ResponseSuccess[Types::EvaluateSessionResponse]
228
+ def authentication_result: () -> Types::AuthenticationResult
229
+ def domain_id: () -> ::String
230
+ def fraud_detection_result: () -> Types::FraudDetectionResult
231
+ def session_id: () -> ::String
232
+ def session_name: () -> ::String
233
+ def streaming_status: () -> ("PENDING_CONFIGURATION" | "ONGOING" | "ENDED")
234
+ end
235
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#evaluate_session-instance_method
236
+ def evaluate_session: (
237
+ domain_id: ::String,
238
+ session_name_or_id: ::String
239
+ ) -> _EvaluateSessionResponseSuccess
240
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _EvaluateSessionResponseSuccess
241
+
242
+ interface _ListDomainsResponseSuccess
243
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListDomainsResponse]
244
+ def domain_summaries: () -> ::Array[Types::DomainSummary]
245
+ def next_token: () -> ::String
246
+ end
247
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_domains-instance_method
248
+ def list_domains: (
249
+ ?max_results: ::Integer,
250
+ ?next_token: ::String
251
+ ) -> _ListDomainsResponseSuccess
252
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDomainsResponseSuccess
253
+
254
+ interface _ListFraudsterRegistrationJobsResponseSuccess
255
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFraudsterRegistrationJobsResponse]
256
+ def job_summaries: () -> ::Array[Types::FraudsterRegistrationJobSummary]
257
+ def next_token: () -> ::String
258
+ end
259
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_fraudster_registration_jobs-instance_method
260
+ def list_fraudster_registration_jobs: (
261
+ domain_id: ::String,
262
+ ?job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED"),
263
+ ?max_results: ::Integer,
264
+ ?next_token: ::String
265
+ ) -> _ListFraudsterRegistrationJobsResponseSuccess
266
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFraudsterRegistrationJobsResponseSuccess
267
+
268
+ interface _ListFraudstersResponseSuccess
269
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListFraudstersResponse]
270
+ def fraudster_summaries: () -> ::Array[Types::FraudsterSummary]
271
+ def next_token: () -> ::String
272
+ end
273
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_fraudsters-instance_method
274
+ def list_fraudsters: (
275
+ domain_id: ::String,
276
+ ?max_results: ::Integer,
277
+ ?next_token: ::String,
278
+ ?watchlist_id: ::String
279
+ ) -> _ListFraudstersResponseSuccess
280
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFraudstersResponseSuccess
281
+
282
+ interface _ListSpeakerEnrollmentJobsResponseSuccess
283
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSpeakerEnrollmentJobsResponse]
284
+ def job_summaries: () -> ::Array[Types::SpeakerEnrollmentJobSummary]
285
+ def next_token: () -> ::String
286
+ end
287
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_speaker_enrollment_jobs-instance_method
288
+ def list_speaker_enrollment_jobs: (
289
+ domain_id: ::String,
290
+ ?job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED"),
291
+ ?max_results: ::Integer,
292
+ ?next_token: ::String
293
+ ) -> _ListSpeakerEnrollmentJobsResponseSuccess
294
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpeakerEnrollmentJobsResponseSuccess
295
+
296
+ interface _ListSpeakersResponseSuccess
297
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSpeakersResponse]
298
+ def next_token: () -> ::String
299
+ def speaker_summaries: () -> ::Array[Types::SpeakerSummary]
300
+ end
301
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_speakers-instance_method
302
+ def list_speakers: (
303
+ domain_id: ::String,
304
+ ?max_results: ::Integer,
305
+ ?next_token: ::String
306
+ ) -> _ListSpeakersResponseSuccess
307
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSpeakersResponseSuccess
308
+
309
+ interface _ListTagsForResourceResponseSuccess
310
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
311
+ def tags: () -> ::Array[Types::Tag]
312
+ end
313
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_tags_for_resource-instance_method
314
+ def list_tags_for_resource: (
315
+ resource_arn: ::String
316
+ ) -> _ListTagsForResourceResponseSuccess
317
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
318
+
319
+ interface _ListWatchlistsResponseSuccess
320
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListWatchlistsResponse]
321
+ def next_token: () -> ::String
322
+ def watchlist_summaries: () -> ::Array[Types::WatchlistSummary]
323
+ end
324
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#list_watchlists-instance_method
325
+ def list_watchlists: (
326
+ domain_id: ::String,
327
+ ?max_results: ::Integer,
328
+ ?next_token: ::String
329
+ ) -> _ListWatchlistsResponseSuccess
330
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWatchlistsResponseSuccess
331
+
332
+ interface _OptOutSpeakerResponseSuccess
333
+ include ::Seahorse::Client::_ResponseSuccess[Types::OptOutSpeakerResponse]
334
+ def speaker: () -> Types::Speaker
335
+ end
336
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#opt_out_speaker-instance_method
337
+ def opt_out_speaker: (
338
+ domain_id: ::String,
339
+ speaker_id: ::String
340
+ ) -> _OptOutSpeakerResponseSuccess
341
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _OptOutSpeakerResponseSuccess
342
+
343
+ interface _StartFraudsterRegistrationJobResponseSuccess
344
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartFraudsterRegistrationJobResponse]
345
+ def job: () -> Types::FraudsterRegistrationJob
346
+ end
347
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#start_fraudster_registration_job-instance_method
348
+ def start_fraudster_registration_job: (
349
+ ?client_token: ::String,
350
+ data_access_role_arn: ::String,
351
+ domain_id: ::String,
352
+ input_data_config: {
353
+ s3_uri: ::String
354
+ },
355
+ ?job_name: ::String,
356
+ output_data_config: {
357
+ kms_key_id: ::String?,
358
+ s3_uri: ::String
359
+ },
360
+ ?registration_config: {
361
+ duplicate_registration_action: ("SKIP" | "REGISTER_AS_NEW")?,
362
+ fraudster_similarity_threshold: ::Integer?,
363
+ watchlist_ids: Array[::String]?
364
+ }
365
+ ) -> _StartFraudsterRegistrationJobResponseSuccess
366
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartFraudsterRegistrationJobResponseSuccess
367
+
368
+ interface _StartSpeakerEnrollmentJobResponseSuccess
369
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartSpeakerEnrollmentJobResponse]
370
+ def job: () -> Types::SpeakerEnrollmentJob
371
+ end
372
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#start_speaker_enrollment_job-instance_method
373
+ def start_speaker_enrollment_job: (
374
+ ?client_token: ::String,
375
+ data_access_role_arn: ::String,
376
+ domain_id: ::String,
377
+ ?enrollment_config: {
378
+ existing_enrollment_action: ("SKIP" | "OVERWRITE")?,
379
+ fraud_detection_config: {
380
+ fraud_detection_action: ("IGNORE" | "FAIL")?,
381
+ risk_threshold: ::Integer?,
382
+ watchlist_ids: Array[::String]?
383
+ }?
384
+ },
385
+ input_data_config: {
386
+ s3_uri: ::String
387
+ },
388
+ ?job_name: ::String,
389
+ output_data_config: {
390
+ kms_key_id: ::String?,
391
+ s3_uri: ::String
392
+ }
393
+ ) -> _StartSpeakerEnrollmentJobResponseSuccess
394
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartSpeakerEnrollmentJobResponseSuccess
395
+
396
+ interface _TagResourceResponseSuccess
397
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
398
+ end
399
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#tag_resource-instance_method
400
+ def tag_resource: (
401
+ resource_arn: ::String,
402
+ tags: Array[
403
+ {
404
+ key: ::String,
405
+ value: ::String
406
+ },
407
+ ]
408
+ ) -> _TagResourceResponseSuccess
409
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
410
+
411
+ interface _UntagResourceResponseSuccess
412
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
413
+ end
414
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#untag_resource-instance_method
415
+ def untag_resource: (
416
+ resource_arn: ::String,
417
+ tag_keys: Array[::String]
418
+ ) -> _UntagResourceResponseSuccess
419
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
420
+
421
+ interface _UpdateDomainResponseSuccess
422
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDomainResponse]
423
+ def domain: () -> Types::Domain
424
+ end
425
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#update_domain-instance_method
426
+ def update_domain: (
427
+ ?description: ::String,
428
+ domain_id: ::String,
429
+ name: ::String,
430
+ server_side_encryption_configuration: {
431
+ kms_key_id: ::String
432
+ }
433
+ ) -> _UpdateDomainResponseSuccess
434
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainResponseSuccess
435
+
436
+ interface _UpdateWatchlistResponseSuccess
437
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateWatchlistResponse]
438
+ def watchlist: () -> Types::Watchlist
439
+ end
440
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Client.html#update_watchlist-instance_method
441
+ def update_watchlist: (
442
+ ?description: ::String,
443
+ domain_id: ::String,
444
+ ?name: ::String,
445
+ watchlist_id: ::String
446
+ ) -> _UpdateWatchlistResponseSuccess
447
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateWatchlistResponseSuccess
448
+ end
449
+ end
450
+ end
451
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,39 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module VoiceID
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def conflict_type: () -> ::String
19
+ def message: () -> ::String
20
+ end
21
+ class InternalServerException < ::Aws::Errors::ServiceError
22
+ def message: () -> ::String
23
+ end
24
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
25
+ def message: () -> ::String
26
+ def resource_type: () -> ::String
27
+ end
28
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
29
+ def message: () -> ::String
30
+ end
31
+ class ThrottlingException < ::Aws::Errors::ServiceError
32
+ def message: () -> ::String
33
+ end
34
+ class ValidationException < ::Aws::Errors::ServiceError
35
+ def message: () -> ::String
36
+ end
37
+ end
38
+ end
39
+ end
data/sig/resource.rbs ADDED
@@ -0,0 +1,80 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module VoiceID
10
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Resource.html
11
+ class Resource
12
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/VoiceID/Resource.html#initialize-instance_method
13
+ def initialize: (
14
+ ?client: Client,
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?simple_json: bool,
52
+ ?stub_responses: untyped,
53
+ ?token_provider: untyped,
54
+ ?use_dualstack_endpoint: bool,
55
+ ?use_fips_endpoint: bool,
56
+ ?validate_params: bool,
57
+ ?endpoint_provider: untyped,
58
+ ?http_proxy: String,
59
+ ?http_open_timeout: (Float | Integer),
60
+ ?http_read_timeout: (Float | Integer),
61
+ ?http_idle_timeout: (Float | Integer),
62
+ ?http_continue_timeout: (Float | Integer),
63
+ ?ssl_timeout: (Float | Integer | nil),
64
+ ?http_wire_trace: bool,
65
+ ?ssl_verify_peer: bool,
66
+ ?ssl_ca_bundle: String,
67
+ ?ssl_ca_directory: String,
68
+ ?ssl_ca_store: String,
69
+ ?on_chunk_received: Proc,
70
+ ?on_chunk_sent: Proc,
71
+ ?raise_response_errors: bool
72
+ ) -> void
73
+ | (?Hash[Symbol, untyped]) -> void
74
+
75
+ def client: () -> Client
76
+
77
+
78
+ end
79
+ end
80
+ end
data/sig/types.rbs ADDED
@@ -0,0 +1,640 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws::VoiceID
9
+ module Types
10
+
11
+ class AccessDeniedException
12
+ attr_accessor message: ::String
13
+ SENSITIVE: []
14
+ end
15
+
16
+ class AssociateFraudsterRequest
17
+ attr_accessor domain_id: ::String
18
+ attr_accessor fraudster_id: ::String
19
+ attr_accessor watchlist_id: ::String
20
+ SENSITIVE: [:fraudster_id]
21
+ end
22
+
23
+ class AssociateFraudsterResponse
24
+ attr_accessor fraudster: Types::Fraudster
25
+ SENSITIVE: []
26
+ end
27
+
28
+ class AuthenticationConfiguration
29
+ attr_accessor acceptance_threshold: ::Integer
30
+ SENSITIVE: []
31
+ end
32
+
33
+ class AuthenticationResult
34
+ attr_accessor audio_aggregation_ended_at: ::Time
35
+ attr_accessor audio_aggregation_started_at: ::Time
36
+ attr_accessor authentication_result_id: ::String
37
+ attr_accessor configuration: Types::AuthenticationConfiguration
38
+ attr_accessor customer_speaker_id: ::String
39
+ attr_accessor decision: ("ACCEPT" | "REJECT" | "NOT_ENOUGH_SPEECH" | "SPEAKER_NOT_ENROLLED" | "SPEAKER_OPTED_OUT" | "SPEAKER_ID_NOT_PROVIDED" | "SPEAKER_EXPIRED")
40
+ attr_accessor generated_speaker_id: ::String
41
+ attr_accessor score: ::Integer
42
+ SENSITIVE: [:customer_speaker_id]
43
+ end
44
+
45
+ class ConflictException
46
+ attr_accessor conflict_type: ("ANOTHER_ACTIVE_STREAM" | "DOMAIN_NOT_ACTIVE" | "CANNOT_CHANGE_SPEAKER_AFTER_ENROLLMENT" | "ENROLLMENT_ALREADY_EXISTS" | "SPEAKER_NOT_SET" | "SPEAKER_OPTED_OUT" | "CONCURRENT_CHANGES" | "DOMAIN_LOCKED_FROM_ENCRYPTION_UPDATES" | "CANNOT_DELETE_NON_EMPTY_WATCHLIST" | "FRAUDSTER_MUST_BELONG_TO_AT_LEAST_ONE_WATCHLIST")
47
+ attr_accessor message: ::String
48
+ SENSITIVE: []
49
+ end
50
+
51
+ class CreateDomainRequest
52
+ attr_accessor client_token: ::String
53
+ attr_accessor description: ::String
54
+ attr_accessor name: ::String
55
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
56
+ attr_accessor tags: ::Array[Types::Tag]
57
+ SENSITIVE: [:description, :name]
58
+ end
59
+
60
+ class CreateDomainResponse
61
+ attr_accessor domain: Types::Domain
62
+ SENSITIVE: []
63
+ end
64
+
65
+ class CreateWatchlistRequest
66
+ attr_accessor client_token: ::String
67
+ attr_accessor description: ::String
68
+ attr_accessor domain_id: ::String
69
+ attr_accessor name: ::String
70
+ SENSITIVE: [:description, :name]
71
+ end
72
+
73
+ class CreateWatchlistResponse
74
+ attr_accessor watchlist: Types::Watchlist
75
+ SENSITIVE: []
76
+ end
77
+
78
+ class DeleteDomainRequest
79
+ attr_accessor domain_id: ::String
80
+ SENSITIVE: []
81
+ end
82
+
83
+ class DeleteFraudsterRequest
84
+ attr_accessor domain_id: ::String
85
+ attr_accessor fraudster_id: ::String
86
+ SENSITIVE: [:fraudster_id]
87
+ end
88
+
89
+ class DeleteSpeakerRequest
90
+ attr_accessor domain_id: ::String
91
+ attr_accessor speaker_id: ::String
92
+ SENSITIVE: [:speaker_id]
93
+ end
94
+
95
+ class DeleteWatchlistRequest
96
+ attr_accessor domain_id: ::String
97
+ attr_accessor watchlist_id: ::String
98
+ SENSITIVE: []
99
+ end
100
+
101
+ class DescribeDomainRequest
102
+ attr_accessor domain_id: ::String
103
+ SENSITIVE: []
104
+ end
105
+
106
+ class DescribeDomainResponse
107
+ attr_accessor domain: Types::Domain
108
+ SENSITIVE: []
109
+ end
110
+
111
+ class DescribeFraudsterRegistrationJobRequest
112
+ attr_accessor domain_id: ::String
113
+ attr_accessor job_id: ::String
114
+ SENSITIVE: []
115
+ end
116
+
117
+ class DescribeFraudsterRegistrationJobResponse
118
+ attr_accessor job: Types::FraudsterRegistrationJob
119
+ SENSITIVE: []
120
+ end
121
+
122
+ class DescribeFraudsterRequest
123
+ attr_accessor domain_id: ::String
124
+ attr_accessor fraudster_id: ::String
125
+ SENSITIVE: [:fraudster_id]
126
+ end
127
+
128
+ class DescribeFraudsterResponse
129
+ attr_accessor fraudster: Types::Fraudster
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class DescribeSpeakerEnrollmentJobRequest
134
+ attr_accessor domain_id: ::String
135
+ attr_accessor job_id: ::String
136
+ SENSITIVE: []
137
+ end
138
+
139
+ class DescribeSpeakerEnrollmentJobResponse
140
+ attr_accessor job: Types::SpeakerEnrollmentJob
141
+ SENSITIVE: []
142
+ end
143
+
144
+ class DescribeSpeakerRequest
145
+ attr_accessor domain_id: ::String
146
+ attr_accessor speaker_id: ::String
147
+ SENSITIVE: [:speaker_id]
148
+ end
149
+
150
+ class DescribeSpeakerResponse
151
+ attr_accessor speaker: Types::Speaker
152
+ SENSITIVE: []
153
+ end
154
+
155
+ class DescribeWatchlistRequest
156
+ attr_accessor domain_id: ::String
157
+ attr_accessor watchlist_id: ::String
158
+ SENSITIVE: []
159
+ end
160
+
161
+ class DescribeWatchlistResponse
162
+ attr_accessor watchlist: Types::Watchlist
163
+ SENSITIVE: []
164
+ end
165
+
166
+ class DisassociateFraudsterRequest
167
+ attr_accessor domain_id: ::String
168
+ attr_accessor fraudster_id: ::String
169
+ attr_accessor watchlist_id: ::String
170
+ SENSITIVE: [:fraudster_id]
171
+ end
172
+
173
+ class DisassociateFraudsterResponse
174
+ attr_accessor fraudster: Types::Fraudster
175
+ SENSITIVE: []
176
+ end
177
+
178
+ class Domain
179
+ attr_accessor arn: ::String
180
+ attr_accessor created_at: ::Time
181
+ attr_accessor description: ::String
182
+ attr_accessor domain_id: ::String
183
+ attr_accessor domain_status: ("ACTIVE" | "PENDING" | "SUSPENDED")
184
+ attr_accessor name: ::String
185
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
186
+ attr_accessor server_side_encryption_update_details: Types::ServerSideEncryptionUpdateDetails
187
+ attr_accessor updated_at: ::Time
188
+ attr_accessor watchlist_details: Types::WatchlistDetails
189
+ SENSITIVE: [:description, :name]
190
+ end
191
+
192
+ class DomainSummary
193
+ attr_accessor arn: ::String
194
+ attr_accessor created_at: ::Time
195
+ attr_accessor description: ::String
196
+ attr_accessor domain_id: ::String
197
+ attr_accessor domain_status: ("ACTIVE" | "PENDING" | "SUSPENDED")
198
+ attr_accessor name: ::String
199
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
200
+ attr_accessor server_side_encryption_update_details: Types::ServerSideEncryptionUpdateDetails
201
+ attr_accessor updated_at: ::Time
202
+ attr_accessor watchlist_details: Types::WatchlistDetails
203
+ SENSITIVE: [:description, :name]
204
+ end
205
+
206
+ class EnrollmentConfig
207
+ attr_accessor existing_enrollment_action: ("SKIP" | "OVERWRITE")
208
+ attr_accessor fraud_detection_config: Types::EnrollmentJobFraudDetectionConfig
209
+ SENSITIVE: []
210
+ end
211
+
212
+ class EnrollmentJobFraudDetectionConfig
213
+ attr_accessor fraud_detection_action: ("IGNORE" | "FAIL")
214
+ attr_accessor risk_threshold: ::Integer
215
+ attr_accessor watchlist_ids: ::Array[::String]
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class EvaluateSessionRequest
220
+ attr_accessor domain_id: ::String
221
+ attr_accessor session_name_or_id: ::String
222
+ SENSITIVE: []
223
+ end
224
+
225
+ class EvaluateSessionResponse
226
+ attr_accessor authentication_result: Types::AuthenticationResult
227
+ attr_accessor domain_id: ::String
228
+ attr_accessor fraud_detection_result: Types::FraudDetectionResult
229
+ attr_accessor session_id: ::String
230
+ attr_accessor session_name: ::String
231
+ attr_accessor streaming_status: ("PENDING_CONFIGURATION" | "ONGOING" | "ENDED")
232
+ SENSITIVE: []
233
+ end
234
+
235
+ class FailureDetails
236
+ attr_accessor message: ::String
237
+ attr_accessor status_code: ::Integer
238
+ SENSITIVE: []
239
+ end
240
+
241
+ class FraudDetectionConfiguration
242
+ attr_accessor risk_threshold: ::Integer
243
+ attr_accessor watchlist_id: ::String
244
+ SENSITIVE: []
245
+ end
246
+
247
+ class FraudDetectionResult
248
+ attr_accessor audio_aggregation_ended_at: ::Time
249
+ attr_accessor audio_aggregation_started_at: ::Time
250
+ attr_accessor configuration: Types::FraudDetectionConfiguration
251
+ attr_accessor decision: ("HIGH_RISK" | "LOW_RISK" | "NOT_ENOUGH_SPEECH")
252
+ attr_accessor fraud_detection_result_id: ::String
253
+ attr_accessor reasons: ::Array[("KNOWN_FRAUDSTER" | "VOICE_SPOOFING")]
254
+ attr_accessor risk_details: Types::FraudRiskDetails
255
+ SENSITIVE: []
256
+ end
257
+
258
+ class FraudRiskDetails
259
+ attr_accessor known_fraudster_risk: Types::KnownFraudsterRisk
260
+ attr_accessor voice_spoofing_risk: Types::VoiceSpoofingRisk
261
+ SENSITIVE: []
262
+ end
263
+
264
+ class Fraudster
265
+ attr_accessor created_at: ::Time
266
+ attr_accessor domain_id: ::String
267
+ attr_accessor generated_fraudster_id: ::String
268
+ attr_accessor watchlist_ids: ::Array[::String]
269
+ SENSITIVE: []
270
+ end
271
+
272
+ class FraudsterRegistrationJob
273
+ attr_accessor created_at: ::Time
274
+ attr_accessor data_access_role_arn: ::String
275
+ attr_accessor domain_id: ::String
276
+ attr_accessor ended_at: ::Time
277
+ attr_accessor failure_details: Types::FailureDetails
278
+ attr_accessor input_data_config: Types::InputDataConfig
279
+ attr_accessor job_id: ::String
280
+ attr_accessor job_name: ::String
281
+ attr_accessor job_progress: Types::JobProgress
282
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
283
+ attr_accessor output_data_config: Types::OutputDataConfig
284
+ attr_accessor registration_config: Types::RegistrationConfig
285
+ SENSITIVE: [:job_name]
286
+ end
287
+
288
+ class FraudsterRegistrationJobSummary
289
+ attr_accessor created_at: ::Time
290
+ attr_accessor domain_id: ::String
291
+ attr_accessor ended_at: ::Time
292
+ attr_accessor failure_details: Types::FailureDetails
293
+ attr_accessor job_id: ::String
294
+ attr_accessor job_name: ::String
295
+ attr_accessor job_progress: Types::JobProgress
296
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
297
+ SENSITIVE: [:job_name]
298
+ end
299
+
300
+ class FraudsterSummary
301
+ attr_accessor created_at: ::Time
302
+ attr_accessor domain_id: ::String
303
+ attr_accessor generated_fraudster_id: ::String
304
+ attr_accessor watchlist_ids: ::Array[::String]
305
+ SENSITIVE: []
306
+ end
307
+
308
+ class InputDataConfig
309
+ attr_accessor s3_uri: ::String
310
+ SENSITIVE: []
311
+ end
312
+
313
+ class InternalServerException
314
+ attr_accessor message: ::String
315
+ SENSITIVE: []
316
+ end
317
+
318
+ class JobProgress
319
+ attr_accessor percent_complete: ::Integer
320
+ SENSITIVE: []
321
+ end
322
+
323
+ class KnownFraudsterRisk
324
+ attr_accessor generated_fraudster_id: ::String
325
+ attr_accessor risk_score: ::Integer
326
+ SENSITIVE: []
327
+ end
328
+
329
+ class ListDomainsRequest
330
+ attr_accessor max_results: ::Integer
331
+ attr_accessor next_token: ::String
332
+ SENSITIVE: []
333
+ end
334
+
335
+ class ListDomainsResponse
336
+ attr_accessor domain_summaries: ::Array[Types::DomainSummary]
337
+ attr_accessor next_token: ::String
338
+ SENSITIVE: []
339
+ end
340
+
341
+ class ListFraudsterRegistrationJobsRequest
342
+ attr_accessor domain_id: ::String
343
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
344
+ attr_accessor max_results: ::Integer
345
+ attr_accessor next_token: ::String
346
+ SENSITIVE: []
347
+ end
348
+
349
+ class ListFraudsterRegistrationJobsResponse
350
+ attr_accessor job_summaries: ::Array[Types::FraudsterRegistrationJobSummary]
351
+ attr_accessor next_token: ::String
352
+ SENSITIVE: []
353
+ end
354
+
355
+ class ListFraudstersRequest
356
+ attr_accessor domain_id: ::String
357
+ attr_accessor max_results: ::Integer
358
+ attr_accessor next_token: ::String
359
+ attr_accessor watchlist_id: ::String
360
+ SENSITIVE: []
361
+ end
362
+
363
+ class ListFraudstersResponse
364
+ attr_accessor fraudster_summaries: ::Array[Types::FraudsterSummary]
365
+ attr_accessor next_token: ::String
366
+ SENSITIVE: []
367
+ end
368
+
369
+ class ListSpeakerEnrollmentJobsRequest
370
+ attr_accessor domain_id: ::String
371
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
372
+ attr_accessor max_results: ::Integer
373
+ attr_accessor next_token: ::String
374
+ SENSITIVE: []
375
+ end
376
+
377
+ class ListSpeakerEnrollmentJobsResponse
378
+ attr_accessor job_summaries: ::Array[Types::SpeakerEnrollmentJobSummary]
379
+ attr_accessor next_token: ::String
380
+ SENSITIVE: []
381
+ end
382
+
383
+ class ListSpeakersRequest
384
+ attr_accessor domain_id: ::String
385
+ attr_accessor max_results: ::Integer
386
+ attr_accessor next_token: ::String
387
+ SENSITIVE: []
388
+ end
389
+
390
+ class ListSpeakersResponse
391
+ attr_accessor next_token: ::String
392
+ attr_accessor speaker_summaries: ::Array[Types::SpeakerSummary]
393
+ SENSITIVE: []
394
+ end
395
+
396
+ class ListTagsForResourceRequest
397
+ attr_accessor resource_arn: ::String
398
+ SENSITIVE: []
399
+ end
400
+
401
+ class ListTagsForResourceResponse
402
+ attr_accessor tags: ::Array[Types::Tag]
403
+ SENSITIVE: []
404
+ end
405
+
406
+ class ListWatchlistsRequest
407
+ attr_accessor domain_id: ::String
408
+ attr_accessor max_results: ::Integer
409
+ attr_accessor next_token: ::String
410
+ SENSITIVE: []
411
+ end
412
+
413
+ class ListWatchlistsResponse
414
+ attr_accessor next_token: ::String
415
+ attr_accessor watchlist_summaries: ::Array[Types::WatchlistSummary]
416
+ SENSITIVE: []
417
+ end
418
+
419
+ class OptOutSpeakerRequest
420
+ attr_accessor domain_id: ::String
421
+ attr_accessor speaker_id: ::String
422
+ SENSITIVE: [:speaker_id]
423
+ end
424
+
425
+ class OptOutSpeakerResponse
426
+ attr_accessor speaker: Types::Speaker
427
+ SENSITIVE: []
428
+ end
429
+
430
+ class OutputDataConfig
431
+ attr_accessor kms_key_id: ::String
432
+ attr_accessor s3_uri: ::String
433
+ SENSITIVE: []
434
+ end
435
+
436
+ class RegistrationConfig
437
+ attr_accessor duplicate_registration_action: ("SKIP" | "REGISTER_AS_NEW")
438
+ attr_accessor fraudster_similarity_threshold: ::Integer
439
+ attr_accessor watchlist_ids: ::Array[::String]
440
+ SENSITIVE: []
441
+ end
442
+
443
+ class ResourceNotFoundException
444
+ attr_accessor message: ::String
445
+ attr_accessor resource_type: ("BATCH_JOB" | "COMPLIANCE_CONSENT" | "DOMAIN" | "FRAUDSTER" | "SESSION" | "SPEAKER" | "WATCHLIST")
446
+ SENSITIVE: []
447
+ end
448
+
449
+ class ServerSideEncryptionConfiguration
450
+ attr_accessor kms_key_id: ::String
451
+ SENSITIVE: []
452
+ end
453
+
454
+ class ServerSideEncryptionUpdateDetails
455
+ attr_accessor message: ::String
456
+ attr_accessor old_kms_key_id: ::String
457
+ attr_accessor update_status: ("IN_PROGRESS" | "COMPLETED" | "FAILED")
458
+ SENSITIVE: []
459
+ end
460
+
461
+ class ServiceQuotaExceededException
462
+ attr_accessor message: ::String
463
+ SENSITIVE: []
464
+ end
465
+
466
+ class Speaker
467
+ attr_accessor created_at: ::Time
468
+ attr_accessor customer_speaker_id: ::String
469
+ attr_accessor domain_id: ::String
470
+ attr_accessor generated_speaker_id: ::String
471
+ attr_accessor last_accessed_at: ::Time
472
+ attr_accessor status: ("ENROLLED" | "EXPIRED" | "OPTED_OUT" | "PENDING")
473
+ attr_accessor updated_at: ::Time
474
+ SENSITIVE: [:customer_speaker_id]
475
+ end
476
+
477
+ class SpeakerEnrollmentJob
478
+ attr_accessor created_at: ::Time
479
+ attr_accessor data_access_role_arn: ::String
480
+ attr_accessor domain_id: ::String
481
+ attr_accessor ended_at: ::Time
482
+ attr_accessor enrollment_config: Types::EnrollmentConfig
483
+ attr_accessor failure_details: Types::FailureDetails
484
+ attr_accessor input_data_config: Types::InputDataConfig
485
+ attr_accessor job_id: ::String
486
+ attr_accessor job_name: ::String
487
+ attr_accessor job_progress: Types::JobProgress
488
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
489
+ attr_accessor output_data_config: Types::OutputDataConfig
490
+ SENSITIVE: [:job_name]
491
+ end
492
+
493
+ class SpeakerEnrollmentJobSummary
494
+ attr_accessor created_at: ::Time
495
+ attr_accessor domain_id: ::String
496
+ attr_accessor ended_at: ::Time
497
+ attr_accessor failure_details: Types::FailureDetails
498
+ attr_accessor job_id: ::String
499
+ attr_accessor job_name: ::String
500
+ attr_accessor job_progress: Types::JobProgress
501
+ attr_accessor job_status: ("SUBMITTED" | "IN_PROGRESS" | "COMPLETED" | "COMPLETED_WITH_ERRORS" | "FAILED")
502
+ SENSITIVE: [:job_name]
503
+ end
504
+
505
+ class SpeakerSummary
506
+ attr_accessor created_at: ::Time
507
+ attr_accessor customer_speaker_id: ::String
508
+ attr_accessor domain_id: ::String
509
+ attr_accessor generated_speaker_id: ::String
510
+ attr_accessor last_accessed_at: ::Time
511
+ attr_accessor status: ("ENROLLED" | "EXPIRED" | "OPTED_OUT" | "PENDING")
512
+ attr_accessor updated_at: ::Time
513
+ SENSITIVE: [:customer_speaker_id]
514
+ end
515
+
516
+ class StartFraudsterRegistrationJobRequest
517
+ attr_accessor client_token: ::String
518
+ attr_accessor data_access_role_arn: ::String
519
+ attr_accessor domain_id: ::String
520
+ attr_accessor input_data_config: Types::InputDataConfig
521
+ attr_accessor job_name: ::String
522
+ attr_accessor output_data_config: Types::OutputDataConfig
523
+ attr_accessor registration_config: Types::RegistrationConfig
524
+ SENSITIVE: [:job_name]
525
+ end
526
+
527
+ class StartFraudsterRegistrationJobResponse
528
+ attr_accessor job: Types::FraudsterRegistrationJob
529
+ SENSITIVE: []
530
+ end
531
+
532
+ class StartSpeakerEnrollmentJobRequest
533
+ attr_accessor client_token: ::String
534
+ attr_accessor data_access_role_arn: ::String
535
+ attr_accessor domain_id: ::String
536
+ attr_accessor enrollment_config: Types::EnrollmentConfig
537
+ attr_accessor input_data_config: Types::InputDataConfig
538
+ attr_accessor job_name: ::String
539
+ attr_accessor output_data_config: Types::OutputDataConfig
540
+ SENSITIVE: [:job_name]
541
+ end
542
+
543
+ class StartSpeakerEnrollmentJobResponse
544
+ attr_accessor job: Types::SpeakerEnrollmentJob
545
+ SENSITIVE: []
546
+ end
547
+
548
+ class Tag
549
+ attr_accessor key: ::String
550
+ attr_accessor value: ::String
551
+ SENSITIVE: [:key, :value]
552
+ end
553
+
554
+ class TagResourceRequest
555
+ attr_accessor resource_arn: ::String
556
+ attr_accessor tags: ::Array[Types::Tag]
557
+ SENSITIVE: []
558
+ end
559
+
560
+ class TagResourceResponse < Aws::EmptyStructure
561
+ end
562
+
563
+ class ThrottlingException
564
+ attr_accessor message: ::String
565
+ SENSITIVE: []
566
+ end
567
+
568
+ class UntagResourceRequest
569
+ attr_accessor resource_arn: ::String
570
+ attr_accessor tag_keys: ::Array[::String]
571
+ SENSITIVE: []
572
+ end
573
+
574
+ class UntagResourceResponse < Aws::EmptyStructure
575
+ end
576
+
577
+ class UpdateDomainRequest
578
+ attr_accessor description: ::String
579
+ attr_accessor domain_id: ::String
580
+ attr_accessor name: ::String
581
+ attr_accessor server_side_encryption_configuration: Types::ServerSideEncryptionConfiguration
582
+ SENSITIVE: [:description, :name]
583
+ end
584
+
585
+ class UpdateDomainResponse
586
+ attr_accessor domain: Types::Domain
587
+ SENSITIVE: []
588
+ end
589
+
590
+ class UpdateWatchlistRequest
591
+ attr_accessor description: ::String
592
+ attr_accessor domain_id: ::String
593
+ attr_accessor name: ::String
594
+ attr_accessor watchlist_id: ::String
595
+ SENSITIVE: [:description, :name]
596
+ end
597
+
598
+ class UpdateWatchlistResponse
599
+ attr_accessor watchlist: Types::Watchlist
600
+ SENSITIVE: []
601
+ end
602
+
603
+ class ValidationException
604
+ attr_accessor message: ::String
605
+ SENSITIVE: []
606
+ end
607
+
608
+ class VoiceSpoofingRisk
609
+ attr_accessor risk_score: ::Integer
610
+ SENSITIVE: []
611
+ end
612
+
613
+ class Watchlist
614
+ attr_accessor created_at: ::Time
615
+ attr_accessor default_watchlist: bool
616
+ attr_accessor description: ::String
617
+ attr_accessor domain_id: ::String
618
+ attr_accessor name: ::String
619
+ attr_accessor updated_at: ::Time
620
+ attr_accessor watchlist_id: ::String
621
+ SENSITIVE: [:description, :name]
622
+ end
623
+
624
+ class WatchlistDetails
625
+ attr_accessor default_watchlist_id: ::String
626
+ SENSITIVE: []
627
+ end
628
+
629
+ class WatchlistSummary
630
+ attr_accessor created_at: ::Time
631
+ attr_accessor default_watchlist: bool
632
+ attr_accessor description: ::String
633
+ attr_accessor domain_id: ::String
634
+ attr_accessor name: ::String
635
+ attr_accessor updated_at: ::Time
636
+ attr_accessor watchlist_id: ::String
637
+ SENSITIVE: [:description, :name]
638
+ end
639
+ end
640
+ end
data/sig/waiters.rbs ADDED
@@ -0,0 +1,13 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module VoiceID
10
+ module Waiters
11
+ end
12
+ end
13
+ 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.21.0
4
+ version: 1.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-11-28 00:00:00.000000000 Z
11
+ date: 2024-01-26 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.188.0
22
+ version: 3.191.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.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -66,13 +66,18 @@ files:
66
66
  - lib/aws-sdk-voiceid/plugins/endpoints.rb
67
67
  - lib/aws-sdk-voiceid/resource.rb
68
68
  - lib/aws-sdk-voiceid/types.rb
69
+ - sig/client.rbs
70
+ - sig/errors.rbs
71
+ - sig/resource.rbs
72
+ - sig/types.rbs
73
+ - sig/waiters.rbs
69
74
  homepage: https://github.com/aws/aws-sdk-ruby
70
75
  licenses:
71
76
  - Apache-2.0
72
77
  metadata:
73
78
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-voiceid
74
79
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-voiceid/CHANGELOG.md
75
- post_install_message:
80
+ post_install_message:
76
81
  rdoc_options: []
77
82
  require_paths:
78
83
  - lib
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
92
  - !ruby/object:Gem::Version
88
93
  version: '0'
89
94
  requirements: []
90
- rubygems_version: 3.1.6
91
- signing_key:
95
+ rubygems_version: 3.4.10
96
+ signing_key:
92
97
  specification_version: 4
93
98
  summary: AWS SDK for Ruby - Amazon Voice ID
94
99
  test_files: []