aws-sdk-transcribestreamingservice 1.57.0 → 1.59.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribestreamingservice/async_client.rb +112 -63
- data/lib/aws-sdk-transcribestreamingservice/client.rb +73 -48
- data/lib/aws-sdk-transcribestreamingservice.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: cdf5d6aa920be99a2f99f27b4d5a0d26116f7e4c8c0bd067bf4fdeb588a43b15
|
4
|
+
data.tar.gz: 4d8cfedf0dd9da1c29315fa76430c13e72213fc6caf7a4224f7bb7c33ebec499
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b904aff7a8797472a20ca208f1f0add96f347d8b536de612702b140a32ec90a3f1b3594d62b26ac7a8b4ace3079814e13e4e135a63dda0b388c46c112ceb3c6b
|
7
|
+
data.tar.gz: b6112390cf51a03733f1faa0f611f9827dbd4708a7760bcb51dda86c18b8ffb2fb2f630771b1bc4c8523a8e8aca0f3ef87e3ce8a098d6e55154cf756b7394cd2
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.59.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.58.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.57.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.59.0
|
@@ -21,13 +21,13 @@ require 'aws-sdk-core/plugins/global_configuration.rb'
|
|
21
21
|
require 'aws-sdk-core/plugins/regional_endpoint.rb'
|
22
22
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
23
23
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
24
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
24
25
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
25
26
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
26
27
|
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
27
28
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
28
29
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
29
30
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
30
|
-
require 'aws-sdk-core/plugins/invocation_id.rb'
|
31
31
|
require 'aws-sdk-core/plugins/sign.rb'
|
32
32
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
33
|
require 'aws-sdk-core/plugins/event_stream_configuration.rb'
|
@@ -54,13 +54,13 @@ module Aws::TranscribeStreamingService
|
|
54
54
|
add_plugin(Aws::Plugins::RegionalEndpoint)
|
55
55
|
add_plugin(Aws::Plugins::StubResponses)
|
56
56
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
57
|
+
add_plugin(Aws::Plugins::InvocationId)
|
57
58
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
58
59
|
add_plugin(Aws::Plugins::HttpChecksum)
|
59
60
|
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
60
61
|
add_plugin(Aws::Plugins::RequestCompression)
|
61
62
|
add_plugin(Aws::Plugins::DefaultsMode)
|
62
63
|
add_plugin(Aws::Plugins::RecursionDetection)
|
63
|
-
add_plugin(Aws::Plugins::InvocationId)
|
64
64
|
add_plugin(Aws::Plugins::Sign)
|
65
65
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
66
66
|
add_plugin(Aws::Plugins::EventStreamConfiguration)
|
@@ -147,10 +147,17 @@ module Aws::TranscribeStreamingService
|
|
147
147
|
# When set to 'true' the request body will not be compressed
|
148
148
|
# for supported operations.
|
149
149
|
#
|
150
|
-
# @option options [String] :endpoint
|
151
|
-
#
|
152
|
-
#
|
153
|
-
#
|
150
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
151
|
+
# Normally you should not configure the `:endpoint` option
|
152
|
+
# directly. This is normally constructed from the `:region`
|
153
|
+
# option. Configuring `:endpoint` is normally reserved for
|
154
|
+
# connecting to test or custom endpoints. The endpoint should
|
155
|
+
# be a URI formatted like:
|
156
|
+
#
|
157
|
+
# 'http://example.com'
|
158
|
+
# 'https://example.com'
|
159
|
+
# 'http://example.com:123'
|
160
|
+
#
|
154
161
|
#
|
155
162
|
# @option options [Proc] :event_stream_handler
|
156
163
|
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
@@ -237,8 +244,9 @@ module Aws::TranscribeStreamingService
|
|
237
244
|
#
|
238
245
|
# @option options [String] :sdk_ua_app_id
|
239
246
|
# A unique and opaque application ID that is appended to the
|
240
|
-
# User-Agent header as app
|
241
|
-
# maximum length of 50.
|
247
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
248
|
+
# maximum length of 50. This variable is sourced from environment
|
249
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
242
250
|
#
|
243
251
|
# @option options [String] :secret_access_key
|
244
252
|
#
|
@@ -282,6 +290,44 @@ module Aws::TranscribeStreamingService
|
|
282
290
|
# @option options [Aws::TranscribeStreamingService::EndpointProvider] :endpoint_provider
|
283
291
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::TranscribeStreamingService::EndpointParameters`
|
284
292
|
#
|
293
|
+
# @option options [Integer] :connection_read_timeout (60)
|
294
|
+
# Connection read timeout in seconds, defaults to 60 sec.
|
295
|
+
#
|
296
|
+
# @option options [Integer] :connection_timeout (60)
|
297
|
+
# Connection timeout in seconds, defaults to 60 sec.
|
298
|
+
#
|
299
|
+
# @option options [Boolean] :enable_alpn (false)
|
300
|
+
# Set to `true` to enable ALPN in HTTP2 over TLS. Requires Openssl version >= 1.0.2.
|
301
|
+
# Defaults to false. Note: not all service HTTP2 operations supports ALPN on server
|
302
|
+
# side, please refer to service documentation.
|
303
|
+
#
|
304
|
+
# @option options [Boolean] :http_wire_trace (false)
|
305
|
+
# When `true`, HTTP2 debug output will be sent to the `:logger`.
|
306
|
+
#
|
307
|
+
# @option options [Integer] :max_concurrent_streams (100)
|
308
|
+
# Maximum concurrent streams used in HTTP2 connection, defaults to 100. Note that server may send back
|
309
|
+
# :settings_max_concurrent_streams value which will take priority when initializing new streams.
|
310
|
+
#
|
311
|
+
# @option options [Boolean] :raise_response_errors (true)
|
312
|
+
# Defaults to `true`, raises errors if exist when #wait or #join! is called upon async response.
|
313
|
+
#
|
314
|
+
# @option options [Integer] :read_chunk_size (1024)
|
315
|
+
#
|
316
|
+
# @option options [String] :ssl_ca_bundle
|
317
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
318
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_directory` or `:ssl_ca_bundle`
|
319
|
+
# the system default will be used if available.
|
320
|
+
#
|
321
|
+
# @option options [String] :ssl_ca_directory
|
322
|
+
# Full path of the directory that contains the unbundled SSL certificate authority
|
323
|
+
# files for verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
324
|
+
# `:ssl_ca_directory` the system default will be used if available.
|
325
|
+
#
|
326
|
+
# @option options [String] :ssl_ca_store
|
327
|
+
#
|
328
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
329
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
330
|
+
#
|
285
331
|
def initialize(*args)
|
286
332
|
unless Kernel.const_defined?("HTTP2")
|
287
333
|
raise "Must include http/2 gem to use AsyncClient instances."
|
@@ -506,19 +552,20 @@ module Aws::TranscribeStreamingService
|
|
506
552
|
#
|
507
553
|
# @example Bi-directional EventStream Operation Example
|
508
554
|
#
|
509
|
-
# You can signal input events after initial request is
|
510
|
-
#
|
511
|
-
#
|
555
|
+
# You can signal input events after the initial request is established. Events
|
556
|
+
# will be sent to the stream immediately once the stream connection is
|
557
|
+
# established successfully.
|
512
558
|
#
|
513
|
-
# To signal events, you can call #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
514
|
-
#
|
559
|
+
# To signal events, you can call the #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
560
|
+
# object. You must signal events before calling #wait or #join! on the async response.
|
515
561
|
#
|
516
562
|
# input_stream = Aws::TranscribeStreamingService::EventStreams::AudioStream.new
|
517
563
|
#
|
518
|
-
# async_resp = client.start_call_analytics_stream_transcription(
|
564
|
+
# async_resp = client.start_call_analytics_stream_transcription(
|
565
|
+
# # params input
|
519
566
|
# input_event_stream_handler: input_stream) do |out_stream|
|
520
567
|
#
|
521
|
-
# # register callbacks for events
|
568
|
+
# # register callbacks for events
|
522
569
|
# out_stream.on_utterance_event_event do |event|
|
523
570
|
# event # => Aws::TranscribeStreamingService::Types::UtteranceEvent
|
524
571
|
# end
|
@@ -542,25 +589,25 @@ module Aws::TranscribeStreamingService
|
|
542
589
|
# end
|
543
590
|
#
|
544
591
|
# end
|
545
|
-
# # =>
|
592
|
+
# # => Aws::Seahorse::Client::AsyncResponse
|
546
593
|
#
|
547
594
|
# # signal events
|
548
595
|
# input_stream.signal_audio_event_event( ... )
|
549
596
|
# input_stream.signal_configuration_event_event( ... )
|
550
597
|
#
|
551
|
-
# # make sure
|
598
|
+
# # make sure to signal :end_stream at the end
|
552
599
|
# input_stream.signal_end_stream
|
553
600
|
#
|
554
|
-
# # wait until stream is closed before finalizing sync response
|
601
|
+
# # wait until stream is closed before finalizing the sync response
|
555
602
|
# resp = async_resp.wait
|
556
|
-
# # Or close stream and
|
603
|
+
# # Or close the stream and finalize sync response immediately
|
557
604
|
# # resp = async_resp.join!
|
558
605
|
#
|
559
|
-
#
|
560
|
-
#
|
606
|
+
# You can also provide an Aws::TranscribeStreamingService::EventStreams::CallAnalyticsTranscriptResultStream object to register callbacks
|
607
|
+
# before initializing the request instead of processing from the request block.
|
561
608
|
#
|
562
609
|
# output_stream = Aws::TranscribeStreamingService::EventStreams::CallAnalyticsTranscriptResultStream.new
|
563
|
-
# # register callbacks for events
|
610
|
+
# # register callbacks for output events
|
564
611
|
# output_stream.on_utterance_event_event do |event|
|
565
612
|
# event # => Aws::TranscribeStreamingService::Types::UtteranceEvent
|
566
613
|
# end
|
@@ -591,15 +638,15 @@ module Aws::TranscribeStreamingService
|
|
591
638
|
# # event.error_message => String
|
592
639
|
# end
|
593
640
|
#
|
594
|
-
# async_resp = client.start_call_analytics_stream_transcription (
|
641
|
+
# async_resp = client.start_call_analytics_stream_transcription (
|
642
|
+
# # params input
|
595
643
|
# input_event_stream_handler: input_stream
|
596
644
|
# output_event_stream_handler: output_stream
|
597
645
|
# )
|
598
646
|
#
|
599
|
-
# resp = async_resp.
|
647
|
+
# resp = async_resp.join!
|
600
648
|
#
|
601
|
-
#
|
602
|
-
# iterate through events after response complete.
|
649
|
+
# You can also iterate through events after the response is complete.
|
603
650
|
#
|
604
651
|
# Events are available at resp.call_analytics_transcript_result_stream # => Enumerator
|
605
652
|
#
|
@@ -856,19 +903,20 @@ module Aws::TranscribeStreamingService
|
|
856
903
|
#
|
857
904
|
# @example Bi-directional EventStream Operation Example
|
858
905
|
#
|
859
|
-
# You can signal input events after initial request is
|
860
|
-
#
|
861
|
-
#
|
906
|
+
# You can signal input events after the initial request is established. Events
|
907
|
+
# will be sent to the stream immediately once the stream connection is
|
908
|
+
# established successfully.
|
862
909
|
#
|
863
|
-
# To signal events, you can call #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
864
|
-
#
|
910
|
+
# To signal events, you can call the #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
911
|
+
# object. You must signal events before calling #wait or #join! on the async response.
|
865
912
|
#
|
866
913
|
# input_stream = Aws::TranscribeStreamingService::EventStreams::AudioStream.new
|
867
914
|
#
|
868
|
-
# async_resp = client.start_medical_stream_transcription(
|
915
|
+
# async_resp = client.start_medical_stream_transcription(
|
916
|
+
# # params input
|
869
917
|
# input_event_stream_handler: input_stream) do |out_stream|
|
870
918
|
#
|
871
|
-
# # register callbacks for events
|
919
|
+
# # register callbacks for events
|
872
920
|
# out_stream.on_transcript_event_event do |event|
|
873
921
|
# event # => Aws::TranscribeStreamingService::Types::TranscriptEvent
|
874
922
|
# end
|
@@ -889,25 +937,25 @@ module Aws::TranscribeStreamingService
|
|
889
937
|
# end
|
890
938
|
#
|
891
939
|
# end
|
892
|
-
# # =>
|
940
|
+
# # => Aws::Seahorse::Client::AsyncResponse
|
893
941
|
#
|
894
942
|
# # signal events
|
895
943
|
# input_stream.signal_audio_event_event( ... )
|
896
944
|
# input_stream.signal_configuration_event_event( ... )
|
897
945
|
#
|
898
|
-
# # make sure
|
946
|
+
# # make sure to signal :end_stream at the end
|
899
947
|
# input_stream.signal_end_stream
|
900
948
|
#
|
901
|
-
# # wait until stream is closed before finalizing sync response
|
949
|
+
# # wait until stream is closed before finalizing the sync response
|
902
950
|
# resp = async_resp.wait
|
903
|
-
# # Or close stream and
|
951
|
+
# # Or close the stream and finalize sync response immediately
|
904
952
|
# # resp = async_resp.join!
|
905
953
|
#
|
906
|
-
#
|
907
|
-
#
|
954
|
+
# You can also provide an Aws::TranscribeStreamingService::EventStreams::MedicalTranscriptResultStream object to register callbacks
|
955
|
+
# before initializing the request instead of processing from the request block.
|
908
956
|
#
|
909
957
|
# output_stream = Aws::TranscribeStreamingService::EventStreams::MedicalTranscriptResultStream.new
|
910
|
-
# # register callbacks for events
|
958
|
+
# # register callbacks for output events
|
911
959
|
# output_stream.on_transcript_event_event do |event|
|
912
960
|
# event # => Aws::TranscribeStreamingService::Types::TranscriptEvent
|
913
961
|
# end
|
@@ -935,15 +983,15 @@ module Aws::TranscribeStreamingService
|
|
935
983
|
# # event.error_message => String
|
936
984
|
# end
|
937
985
|
#
|
938
|
-
# async_resp = client.start_medical_stream_transcription (
|
986
|
+
# async_resp = client.start_medical_stream_transcription (
|
987
|
+
# # params input
|
939
988
|
# input_event_stream_handler: input_stream
|
940
989
|
# output_event_stream_handler: output_stream
|
941
990
|
# )
|
942
991
|
#
|
943
|
-
# resp = async_resp.
|
992
|
+
# resp = async_resp.join!
|
944
993
|
#
|
945
|
-
#
|
946
|
-
# iterate through events after response complete.
|
994
|
+
# You can also iterate through events after the response is complete.
|
947
995
|
#
|
948
996
|
# Events are available at resp.transcript_result_stream # => Enumerator
|
949
997
|
#
|
@@ -1431,19 +1479,20 @@ module Aws::TranscribeStreamingService
|
|
1431
1479
|
#
|
1432
1480
|
# @example Bi-directional EventStream Operation Example
|
1433
1481
|
#
|
1434
|
-
# You can signal input events after initial request is
|
1435
|
-
#
|
1436
|
-
#
|
1482
|
+
# You can signal input events after the initial request is established. Events
|
1483
|
+
# will be sent to the stream immediately once the stream connection is
|
1484
|
+
# established successfully.
|
1437
1485
|
#
|
1438
|
-
# To signal events, you can call #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
1439
|
-
#
|
1486
|
+
# To signal events, you can call the #signal methods from an Aws::TranscribeStreamingService::EventStreams::AudioStream
|
1487
|
+
# object. You must signal events before calling #wait or #join! on the async response.
|
1440
1488
|
#
|
1441
1489
|
# input_stream = Aws::TranscribeStreamingService::EventStreams::AudioStream.new
|
1442
1490
|
#
|
1443
|
-
# async_resp = client.start_stream_transcription(
|
1491
|
+
# async_resp = client.start_stream_transcription(
|
1492
|
+
# # params input
|
1444
1493
|
# input_event_stream_handler: input_stream) do |out_stream|
|
1445
1494
|
#
|
1446
|
-
# # register callbacks for events
|
1495
|
+
# # register callbacks for events
|
1447
1496
|
# out_stream.on_transcript_event_event do |event|
|
1448
1497
|
# event # => Aws::TranscribeStreamingService::Types::TranscriptEvent
|
1449
1498
|
# end
|
@@ -1464,25 +1513,25 @@ module Aws::TranscribeStreamingService
|
|
1464
1513
|
# end
|
1465
1514
|
#
|
1466
1515
|
# end
|
1467
|
-
# # =>
|
1516
|
+
# # => Aws::Seahorse::Client::AsyncResponse
|
1468
1517
|
#
|
1469
1518
|
# # signal events
|
1470
1519
|
# input_stream.signal_audio_event_event( ... )
|
1471
1520
|
# input_stream.signal_configuration_event_event( ... )
|
1472
1521
|
#
|
1473
|
-
# # make sure
|
1522
|
+
# # make sure to signal :end_stream at the end
|
1474
1523
|
# input_stream.signal_end_stream
|
1475
1524
|
#
|
1476
|
-
# # wait until stream is closed before finalizing sync response
|
1525
|
+
# # wait until stream is closed before finalizing the sync response
|
1477
1526
|
# resp = async_resp.wait
|
1478
|
-
# # Or close stream and
|
1527
|
+
# # Or close the stream and finalize sync response immediately
|
1479
1528
|
# # resp = async_resp.join!
|
1480
1529
|
#
|
1481
|
-
#
|
1482
|
-
#
|
1530
|
+
# You can also provide an Aws::TranscribeStreamingService::EventStreams::TranscriptResultStream object to register callbacks
|
1531
|
+
# before initializing the request instead of processing from the request block.
|
1483
1532
|
#
|
1484
1533
|
# output_stream = Aws::TranscribeStreamingService::EventStreams::TranscriptResultStream.new
|
1485
|
-
# # register callbacks for events
|
1534
|
+
# # register callbacks for output events
|
1486
1535
|
# output_stream.on_transcript_event_event do |event|
|
1487
1536
|
# event # => Aws::TranscribeStreamingService::Types::TranscriptEvent
|
1488
1537
|
# end
|
@@ -1510,15 +1559,15 @@ module Aws::TranscribeStreamingService
|
|
1510
1559
|
# # event.error_message => String
|
1511
1560
|
# end
|
1512
1561
|
#
|
1513
|
-
# async_resp = client.start_stream_transcription (
|
1562
|
+
# async_resp = client.start_stream_transcription (
|
1563
|
+
# # params input
|
1514
1564
|
# input_event_stream_handler: input_stream
|
1515
1565
|
# output_event_stream_handler: output_stream
|
1516
1566
|
# )
|
1517
1567
|
#
|
1518
|
-
# resp = async_resp.
|
1568
|
+
# resp = async_resp.join!
|
1519
1569
|
#
|
1520
|
-
#
|
1521
|
-
# iterate through events after response complete.
|
1570
|
+
# You can also iterate through events after the response is complete.
|
1522
1571
|
#
|
1523
1572
|
# Events are available at resp.transcript_result_stream # => Enumerator
|
1524
1573
|
#
|
@@ -1672,7 +1721,7 @@ module Aws::TranscribeStreamingService
|
|
1672
1721
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
1673
1722
|
config: config)
|
1674
1723
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
1675
|
-
context[:gem_version] = '1.
|
1724
|
+
context[:gem_version] = '1.59.0'
|
1676
1725
|
Seahorse::Client::Request.new(handlers, context)
|
1677
1726
|
end
|
1678
1727
|
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -73,6 +74,7 @@ module Aws::TranscribeStreamingService
|
|
73
74
|
add_plugin(Aws::Plugins::ResponsePaging)
|
74
75
|
add_plugin(Aws::Plugins::StubResponses)
|
75
76
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
77
|
+
add_plugin(Aws::Plugins::InvocationId)
|
76
78
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
78
80
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -198,10 +200,17 @@ module Aws::TranscribeStreamingService
|
|
198
200
|
# When set to 'true' the request body will not be compressed
|
199
201
|
# for supported operations.
|
200
202
|
#
|
201
|
-
# @option options [String] :endpoint
|
202
|
-
#
|
203
|
-
#
|
204
|
-
#
|
203
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
204
|
+
# Normally you should not configure the `:endpoint` option
|
205
|
+
# directly. This is normally constructed from the `:region`
|
206
|
+
# option. Configuring `:endpoint` is normally reserved for
|
207
|
+
# connecting to test or custom endpoints. The endpoint should
|
208
|
+
# be a URI formatted like:
|
209
|
+
#
|
210
|
+
# 'http://example.com'
|
211
|
+
# 'https://example.com'
|
212
|
+
# 'http://example.com:123'
|
213
|
+
#
|
205
214
|
#
|
206
215
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
207
216
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -303,8 +312,9 @@ module Aws::TranscribeStreamingService
|
|
303
312
|
#
|
304
313
|
# @option options [String] :sdk_ua_app_id
|
305
314
|
# A unique and opaque application ID that is appended to the
|
306
|
-
# User-Agent header as app
|
307
|
-
# maximum length of 50.
|
315
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
316
|
+
# maximum length of 50. This variable is sourced from environment
|
317
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
308
318
|
#
|
309
319
|
# @option options [String] :secret_access_key
|
310
320
|
#
|
@@ -348,50 +358,65 @@ module Aws::TranscribeStreamingService
|
|
348
358
|
# @option options [Aws::TranscribeStreamingService::EndpointProvider] :endpoint_provider
|
349
359
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::TranscribeStreamingService::EndpointParameters`
|
350
360
|
#
|
351
|
-
# @option options [
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
# @option options [Float] :
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
375
|
-
#
|
361
|
+
# @option options [Float] :http_continue_timeout (1)
|
362
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
363
|
+
# request body. This option has no effect unless the request has "Expect"
|
364
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
365
|
+
# behaviour. This value can safely be set per request on the session.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_idle_timeout (5)
|
368
|
+
# The number of seconds a connection is allowed to sit idle before it
|
369
|
+
# is considered stale. Stale connections are closed and removed from the
|
370
|
+
# pool before making a request.
|
371
|
+
#
|
372
|
+
# @option options [Float] :http_open_timeout (15)
|
373
|
+
# The default number of seconds to wait for response data.
|
374
|
+
# This value can safely be set per-request on the session.
|
375
|
+
#
|
376
|
+
# @option options [URI::HTTP,String] :http_proxy
|
377
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
378
|
+
#
|
379
|
+
# @option options [Float] :http_read_timeout (60)
|
380
|
+
# The default number of seconds to wait for response data.
|
381
|
+
# This value can safely be set per-request on the session.
|
382
|
+
#
|
383
|
+
# @option options [Boolean] :http_wire_trace (false)
|
384
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
385
|
+
#
|
386
|
+
# @option options [Proc] :on_chunk_received
|
387
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
388
|
+
# of the response body is received. It provides three arguments: the chunk,
|
389
|
+
# the number of bytes received, and the total number of
|
390
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
391
|
+
#
|
392
|
+
# @option options [Proc] :on_chunk_sent
|
393
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
394
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
395
|
+
# the number of bytes read from the body, and the total number of
|
396
|
+
# bytes in the body.
|
397
|
+
#
|
398
|
+
# @option options [Boolean] :raise_response_errors (true)
|
399
|
+
# When `true`, response errors are raised.
|
400
|
+
#
|
401
|
+
# @option options [String] :ssl_ca_bundle
|
402
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
403
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
404
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
405
|
+
#
|
406
|
+
# @option options [String] :ssl_ca_directory
|
407
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
408
|
+
# authority files for verifying peer certificates. If you do
|
409
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
410
|
+
# default will be used if available.
|
376
411
|
#
|
377
|
-
# @option options [
|
378
|
-
#
|
412
|
+
# @option options [String] :ssl_ca_store
|
413
|
+
# Sets the X509::Store to verify peer certificate.
|
379
414
|
#
|
380
|
-
# @option options [
|
381
|
-
#
|
382
|
-
# connection.
|
415
|
+
# @option options [Float] :ssl_timeout
|
416
|
+
# Sets the SSL timeout in seconds
|
383
417
|
#
|
384
|
-
# @option options [
|
385
|
-
#
|
386
|
-
# verifying peer certificates. If you do not pass
|
387
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
388
|
-
# will be used if available.
|
389
|
-
#
|
390
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
391
|
-
# directory that contains the unbundled SSL certificate
|
392
|
-
# authority files for verifying peer certificates. If you do
|
393
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
394
|
-
# system default will be used if available.
|
418
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
419
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
395
420
|
#
|
396
421
|
def initialize(*args)
|
397
422
|
super
|
@@ -412,7 +437,7 @@ module Aws::TranscribeStreamingService
|
|
412
437
|
params: params,
|
413
438
|
config: config)
|
414
439
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
415
|
-
context[:gem_version] = '1.
|
440
|
+
context[:gem_version] = '1.59.0'
|
416
441
|
Seahorse::Client::Request.new(handlers, context)
|
417
442
|
end
|
418
443
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-transcribestreamingservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.59.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: 2024-
|
11
|
+
date: 2024-05-13 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|