aws-sdk-voiceid 1.20.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: 01410f9046754ff46cf5bf2b84dd7ff425fdab69c367d03501df78d2095bc2f8
4
- data.tar.gz: 92ced0ffe488440aada6f13abbe23af2aadeef777b416c2c4dbc226f6c11196a
3
+ metadata.gz: f54f65427e86196dae539e9787104da37ab6c838dd65c1e1f70251fc1e735fae
4
+ data.tar.gz: 8eb86bb7fb775f3ade38ebe736e64cb0f659dc6f9f36546819d70a40b476cf7b
5
5
  SHA512:
6
- metadata.gz: 36fa4d32538c455dfea22ae7b1a1c14b9fb859886f672b5ef26c5dd189c196606b5dc24ea8047506daa881248b4dfbc59777a890b0de7232f599605d0ad88a09
7
- data.tar.gz: df2db026772d41e31210d14bd04f63ff109cd28e74a7db1df7aa2e9ab228ef4c72a77462764aeef8941fec1e0772be59dcc4e6fcc6ea5cacc47e35f3f72f9f17
6
+ metadata.gz: 48407ab5d30cbf29ea246e0eb124e1bcd7958538aaefae4537488bc5c2b31a6e4b41b5c4017e08c18238fcc5abdd8b538a513303f07895420226d30883ff2d2c
7
+ data.tar.gz: d0aafa889025b60911f4a8734f4a12a10d905558b8cba7150b4bfb888aaa0636802dcba23aa65e54c0a8322911ef5fc65c6ab173e47f44bded0b29aa7e8b0c2a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.21.0 (2023-11-28)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.20.0 (2023-11-22)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.20.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.20.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 '\
@@ -25,16 +26,17 @@ module Aws::VoiceID
25
26
  # @api private
26
27
  class Handler < Seahorse::Client::Handler
27
28
  def call(context)
28
- # If endpoint was discovered, do not resolve or apply the endpoint.
29
29
  unless context[:discovered_endpoint]
30
30
  params = parameters_for_operation(context)
31
31
  endpoint = context.config.endpoint_provider.resolve_endpoint(params)
32
32
 
33
33
  context.http_request.endpoint = endpoint.url
34
34
  apply_endpoint_headers(context, endpoint.headers)
35
+
36
+ context[:endpoint_params] = params
37
+ context[:endpoint_properties] = endpoint.properties
35
38
  end
36
39
 
37
- context[:endpoint_params] = params
38
40
  context[:auth_scheme] =
39
41
  Aws::Endpoints.resolve_auth_scheme(context, endpoint)
40
42
 
@@ -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.20.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