aws-sdk-transcribestreamingservice 1.78.0 → 1.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transcribestreamingservice/async_client.rb +410 -377
- data/lib/aws-sdk-transcribestreamingservice/client.rb +1 -1
- data/lib/aws-sdk-transcribestreamingservice.rb +1 -1
- data/sig/async_client.rbs +218 -0
- data/sig/client.rbs +0 -144
- metadata +3 -2
@@ -554,7 +554,7 @@ module Aws::TranscribeStreamingService
|
|
554
554
|
tracer: tracer
|
555
555
|
)
|
556
556
|
context[:gem_name] = 'aws-sdk-transcribestreamingservice'
|
557
|
-
context[:gem_version] = '1.
|
557
|
+
context[:gem_version] = '1.79.0'
|
558
558
|
Seahorse::Client::Request.new(handlers, context)
|
559
559
|
end
|
560
560
|
|
@@ -56,7 +56,7 @@ module Aws::TranscribeStreamingService
|
|
56
56
|
autoload :AsyncClient, 'aws-sdk-transcribestreamingservice/async_client'
|
57
57
|
autoload :EventStreams, 'aws-sdk-transcribestreamingservice/event_streams'
|
58
58
|
|
59
|
-
GEM_VERSION = '1.
|
59
|
+
GEM_VERSION = '1.79.0'
|
60
60
|
|
61
61
|
end
|
62
62
|
|
@@ -0,0 +1,218 @@
|
|
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 TranscribeStreamingService
|
10
|
+
class AsyncClient < ::Seahorse::Client::AsyncBase
|
11
|
+
include ::Aws::AsyncClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/AsyncClient.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?account_id: String,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?convert_params: bool,
|
21
|
+
?correct_clock_skew: bool,
|
22
|
+
?defaults_mode: String,
|
23
|
+
?disable_request_compression: bool,
|
24
|
+
?endpoint: String,
|
25
|
+
?event_stream_handler: Proc,
|
26
|
+
?ignore_configured_endpoint_urls: bool,
|
27
|
+
?input_event_stream_handler: Proc,
|
28
|
+
?log_formatter: untyped,
|
29
|
+
?log_level: Symbol,
|
30
|
+
?logger: untyped,
|
31
|
+
?max_attempts: Integer,
|
32
|
+
?output_event_stream_handler: Proc,
|
33
|
+
?profile: String,
|
34
|
+
?request_checksum_calculation: String,
|
35
|
+
?request_min_compression_size_bytes: Integer,
|
36
|
+
?response_checksum_validation: String,
|
37
|
+
?retry_backoff: Proc,
|
38
|
+
?retry_base_delay: Float,
|
39
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
40
|
+
?retry_limit: Integer,
|
41
|
+
?retry_max_delay: Integer,
|
42
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
43
|
+
?sdk_ua_app_id: String,
|
44
|
+
?secret_access_key: String,
|
45
|
+
?session_token: String,
|
46
|
+
?sigv4a_signing_region_set: Array[String],
|
47
|
+
?stub_responses: untyped,
|
48
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
49
|
+
?token_provider: untyped,
|
50
|
+
?use_dualstack_endpoint: bool,
|
51
|
+
?use_fips_endpoint: bool,
|
52
|
+
?validate_params: bool,
|
53
|
+
?endpoint_provider: untyped,
|
54
|
+
?connection_read_timeout: (Float | Integer),
|
55
|
+
?connection_timeout: (Float | Integer),
|
56
|
+
?enable_alpn: bool,
|
57
|
+
?max_concurrent_streams: (Float | Integer),
|
58
|
+
?read_chunk_size: (Float | Integer),
|
59
|
+
?http_wire_trace: bool,
|
60
|
+
?ssl_verify_peer: bool,
|
61
|
+
?ssl_ca_bundle: String,
|
62
|
+
?ssl_ca_directory: String,
|
63
|
+
?ssl_ca_store: String,
|
64
|
+
?raise_response_errors: bool
|
65
|
+
) -> instance
|
66
|
+
| (?Hash[Symbol, untyped]) -> instance
|
67
|
+
|
68
|
+
|
69
|
+
interface _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
70
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartCallAnalyticsStreamTranscriptionResponse]
|
71
|
+
def request_id: () -> ::String
|
72
|
+
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR")
|
73
|
+
def media_sample_rate_hertz: () -> ::Integer
|
74
|
+
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
75
|
+
def vocabulary_name: () -> ::String
|
76
|
+
def session_id: () -> ::String
|
77
|
+
def call_analytics_transcript_result_stream: () -> Types::CallAnalyticsTranscriptResultStream
|
78
|
+
def vocabulary_filter_name: () -> ::String
|
79
|
+
def vocabulary_filter_method: () -> ("remove" | "mask" | "tag")
|
80
|
+
def language_model_name: () -> ::String
|
81
|
+
def enable_partial_results_stabilization: () -> bool
|
82
|
+
def partial_results_stability: () -> ("high" | "medium" | "low")
|
83
|
+
def content_identification_type: () -> ("PII")
|
84
|
+
def content_redaction_type: () -> ("PII")
|
85
|
+
def pii_entity_types: () -> ::String
|
86
|
+
end
|
87
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/AsyncClient.html#start_call_analytics_stream_transcription-instance_method
|
88
|
+
def start_call_analytics_stream_transcription: (
|
89
|
+
language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR"),
|
90
|
+
media_sample_rate_hertz: ::Integer,
|
91
|
+
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
92
|
+
?vocabulary_name: ::String,
|
93
|
+
?session_id: ::String,
|
94
|
+
input_event_stream_handler: untyped,
|
95
|
+
output_event_stream_handler: untyped,
|
96
|
+
?vocabulary_filter_name: ::String,
|
97
|
+
?vocabulary_filter_method: ("remove" | "mask" | "tag"),
|
98
|
+
?language_model_name: ::String,
|
99
|
+
?enable_partial_results_stabilization: bool,
|
100
|
+
?partial_results_stability: ("high" | "medium" | "low"),
|
101
|
+
?content_identification_type: ("PII"),
|
102
|
+
?content_redaction_type: ("PII"),
|
103
|
+
?pii_entity_types: ::String
|
104
|
+
) ?{ (*untyped) -> void } -> _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
105
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
106
|
+
|
107
|
+
interface _StartMedicalScribeStreamResponseSuccess
|
108
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMedicalScribeStreamResponse]
|
109
|
+
def session_id: () -> ::String
|
110
|
+
def request_id: () -> ::String
|
111
|
+
def language_code: () -> ("en-US")
|
112
|
+
def media_sample_rate_hertz: () -> ::Integer
|
113
|
+
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
114
|
+
def result_stream: () -> Types::MedicalScribeResultStream
|
115
|
+
end
|
116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/AsyncClient.html#start_medical_scribe_stream-instance_method
|
117
|
+
def start_medical_scribe_stream: (
|
118
|
+
?session_id: ::String,
|
119
|
+
language_code: ("en-US"),
|
120
|
+
media_sample_rate_hertz: ::Integer,
|
121
|
+
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
122
|
+
input_event_stream_handler: untyped,
|
123
|
+
output_event_stream_handler: untyped
|
124
|
+
) ?{ (*untyped) -> void } -> _StartMedicalScribeStreamResponseSuccess
|
125
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartMedicalScribeStreamResponseSuccess
|
126
|
+
|
127
|
+
interface _StartMedicalStreamTranscriptionResponseSuccess
|
128
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartMedicalStreamTranscriptionResponse]
|
129
|
+
def request_id: () -> ::String
|
130
|
+
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
131
|
+
def media_sample_rate_hertz: () -> ::Integer
|
132
|
+
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
133
|
+
def vocabulary_name: () -> ::String
|
134
|
+
def specialty: () -> ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY")
|
135
|
+
def type: () -> ("CONVERSATION" | "DICTATION")
|
136
|
+
def show_speaker_label: () -> bool
|
137
|
+
def session_id: () -> ::String
|
138
|
+
def transcript_result_stream: () -> Types::MedicalTranscriptResultStream
|
139
|
+
def enable_channel_identification: () -> bool
|
140
|
+
def number_of_channels: () -> ::Integer
|
141
|
+
def content_identification_type: () -> ("PHI")
|
142
|
+
end
|
143
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/AsyncClient.html#start_medical_stream_transcription-instance_method
|
144
|
+
def start_medical_stream_transcription: (
|
145
|
+
language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
146
|
+
media_sample_rate_hertz: ::Integer,
|
147
|
+
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
148
|
+
?vocabulary_name: ::String,
|
149
|
+
specialty: ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY"),
|
150
|
+
type: ("CONVERSATION" | "DICTATION"),
|
151
|
+
?show_speaker_label: bool,
|
152
|
+
?session_id: ::String,
|
153
|
+
input_event_stream_handler: untyped,
|
154
|
+
output_event_stream_handler: untyped,
|
155
|
+
?enable_channel_identification: bool,
|
156
|
+
?number_of_channels: ::Integer,
|
157
|
+
?content_identification_type: ("PHI")
|
158
|
+
) ?{ (*untyped) -> void } -> _StartMedicalStreamTranscriptionResponseSuccess
|
159
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartMedicalStreamTranscriptionResponseSuccess
|
160
|
+
|
161
|
+
interface _StartStreamTranscriptionResponseSuccess
|
162
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartStreamTranscriptionResponse]
|
163
|
+
def request_id: () -> ::String
|
164
|
+
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
165
|
+
def media_sample_rate_hertz: () -> ::Integer
|
166
|
+
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
167
|
+
def vocabulary_name: () -> ::String
|
168
|
+
def session_id: () -> ::String
|
169
|
+
def transcript_result_stream: () -> Types::TranscriptResultStream
|
170
|
+
def vocabulary_filter_name: () -> ::String
|
171
|
+
def vocabulary_filter_method: () -> ("remove" | "mask" | "tag")
|
172
|
+
def show_speaker_label: () -> bool
|
173
|
+
def enable_channel_identification: () -> bool
|
174
|
+
def number_of_channels: () -> ::Integer
|
175
|
+
def enable_partial_results_stabilization: () -> bool
|
176
|
+
def partial_results_stability: () -> ("high" | "medium" | "low")
|
177
|
+
def content_identification_type: () -> ("PII")
|
178
|
+
def content_redaction_type: () -> ("PII")
|
179
|
+
def pii_entity_types: () -> ::String
|
180
|
+
def language_model_name: () -> ::String
|
181
|
+
def identify_language: () -> bool
|
182
|
+
def language_options: () -> ::String
|
183
|
+
def preferred_language: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
184
|
+
def identify_multiple_languages: () -> bool
|
185
|
+
def vocabulary_names: () -> ::String
|
186
|
+
def vocabulary_filter_names: () -> ::String
|
187
|
+
end
|
188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/AsyncClient.html#start_stream_transcription-instance_method
|
189
|
+
def start_stream_transcription: (
|
190
|
+
?language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
191
|
+
media_sample_rate_hertz: ::Integer,
|
192
|
+
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
193
|
+
?vocabulary_name: ::String,
|
194
|
+
?session_id: ::String,
|
195
|
+
input_event_stream_handler: untyped,
|
196
|
+
output_event_stream_handler: untyped,
|
197
|
+
?vocabulary_filter_name: ::String,
|
198
|
+
?vocabulary_filter_method: ("remove" | "mask" | "tag"),
|
199
|
+
?show_speaker_label: bool,
|
200
|
+
?enable_channel_identification: bool,
|
201
|
+
?number_of_channels: ::Integer,
|
202
|
+
?enable_partial_results_stabilization: bool,
|
203
|
+
?partial_results_stability: ("high" | "medium" | "low"),
|
204
|
+
?content_identification_type: ("PII"),
|
205
|
+
?content_redaction_type: ("PII"),
|
206
|
+
?pii_entity_types: ::String,
|
207
|
+
?language_model_name: ::String,
|
208
|
+
?identify_language: bool,
|
209
|
+
?language_options: ::String,
|
210
|
+
?preferred_language: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
211
|
+
?identify_multiple_languages: bool,
|
212
|
+
?vocabulary_names: ::String,
|
213
|
+
?vocabulary_filter_names: ::String
|
214
|
+
) ?{ (*untyped) -> void } -> _StartStreamTranscriptionResponseSuccess
|
215
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartStreamTranscriptionResponseSuccess
|
216
|
+
end
|
217
|
+
end
|
218
|
+
end
|
data/sig/client.rbs
CHANGED
@@ -89,150 +89,6 @@ module Aws
|
|
89
89
|
session_id: ::String
|
90
90
|
) -> _GetMedicalScribeStreamResponseSuccess
|
91
91
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetMedicalScribeStreamResponseSuccess
|
92
|
-
|
93
|
-
interface _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
94
|
-
include ::Seahorse::Client::_ResponseSuccess[Types::StartCallAnalyticsStreamTranscriptionResponse]
|
95
|
-
def request_id: () -> ::String
|
96
|
-
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR")
|
97
|
-
def media_sample_rate_hertz: () -> ::Integer
|
98
|
-
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
99
|
-
def vocabulary_name: () -> ::String
|
100
|
-
def session_id: () -> ::String
|
101
|
-
def call_analytics_transcript_result_stream: () -> Types::CallAnalyticsTranscriptResultStream
|
102
|
-
def vocabulary_filter_name: () -> ::String
|
103
|
-
def vocabulary_filter_method: () -> ("remove" | "mask" | "tag")
|
104
|
-
def language_model_name: () -> ::String
|
105
|
-
def enable_partial_results_stabilization: () -> bool
|
106
|
-
def partial_results_stability: () -> ("high" | "medium" | "low")
|
107
|
-
def content_identification_type: () -> ("PII")
|
108
|
-
def content_redaction_type: () -> ("PII")
|
109
|
-
def pii_entity_types: () -> ::String
|
110
|
-
end
|
111
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/Client.html#start_call_analytics_stream_transcription-instance_method
|
112
|
-
def start_call_analytics_stream_transcription: (
|
113
|
-
language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR"),
|
114
|
-
media_sample_rate_hertz: ::Integer,
|
115
|
-
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
116
|
-
?vocabulary_name: ::String,
|
117
|
-
?session_id: ::String,
|
118
|
-
input_event_stream_hander: untyped,
|
119
|
-
?vocabulary_filter_name: ::String,
|
120
|
-
?vocabulary_filter_method: ("remove" | "mask" | "tag"),
|
121
|
-
?language_model_name: ::String,
|
122
|
-
?enable_partial_results_stabilization: bool,
|
123
|
-
?partial_results_stability: ("high" | "medium" | "low"),
|
124
|
-
?content_identification_type: ("PII"),
|
125
|
-
?content_redaction_type: ("PII"),
|
126
|
-
?pii_entity_types: ::String
|
127
|
-
) ?{ (*untyped) -> void } -> _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
128
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartCallAnalyticsStreamTranscriptionResponseSuccess
|
129
|
-
|
130
|
-
interface _StartMedicalScribeStreamResponseSuccess
|
131
|
-
include ::Seahorse::Client::_ResponseSuccess[Types::StartMedicalScribeStreamResponse]
|
132
|
-
def session_id: () -> ::String
|
133
|
-
def request_id: () -> ::String
|
134
|
-
def language_code: () -> ("en-US")
|
135
|
-
def media_sample_rate_hertz: () -> ::Integer
|
136
|
-
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
137
|
-
def result_stream: () -> Types::MedicalScribeResultStream
|
138
|
-
end
|
139
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/Client.html#start_medical_scribe_stream-instance_method
|
140
|
-
def start_medical_scribe_stream: (
|
141
|
-
?session_id: ::String,
|
142
|
-
language_code: ("en-US"),
|
143
|
-
media_sample_rate_hertz: ::Integer,
|
144
|
-
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
145
|
-
input_event_stream_hander: untyped
|
146
|
-
) ?{ (*untyped) -> void } -> _StartMedicalScribeStreamResponseSuccess
|
147
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartMedicalScribeStreamResponseSuccess
|
148
|
-
|
149
|
-
interface _StartMedicalStreamTranscriptionResponseSuccess
|
150
|
-
include ::Seahorse::Client::_ResponseSuccess[Types::StartMedicalStreamTranscriptionResponse]
|
151
|
-
def request_id: () -> ::String
|
152
|
-
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
153
|
-
def media_sample_rate_hertz: () -> ::Integer
|
154
|
-
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
155
|
-
def vocabulary_name: () -> ::String
|
156
|
-
def specialty: () -> ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY")
|
157
|
-
def type: () -> ("CONVERSATION" | "DICTATION")
|
158
|
-
def show_speaker_label: () -> bool
|
159
|
-
def session_id: () -> ::String
|
160
|
-
def transcript_result_stream: () -> Types::MedicalTranscriptResultStream
|
161
|
-
def enable_channel_identification: () -> bool
|
162
|
-
def number_of_channels: () -> ::Integer
|
163
|
-
def content_identification_type: () -> ("PHI")
|
164
|
-
end
|
165
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/Client.html#start_medical_stream_transcription-instance_method
|
166
|
-
def start_medical_stream_transcription: (
|
167
|
-
language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
168
|
-
media_sample_rate_hertz: ::Integer,
|
169
|
-
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
170
|
-
?vocabulary_name: ::String,
|
171
|
-
specialty: ("PRIMARYCARE" | "CARDIOLOGY" | "NEUROLOGY" | "ONCOLOGY" | "RADIOLOGY" | "UROLOGY"),
|
172
|
-
type: ("CONVERSATION" | "DICTATION"),
|
173
|
-
?show_speaker_label: bool,
|
174
|
-
?session_id: ::String,
|
175
|
-
input_event_stream_hander: untyped,
|
176
|
-
?enable_channel_identification: bool,
|
177
|
-
?number_of_channels: ::Integer,
|
178
|
-
?content_identification_type: ("PHI")
|
179
|
-
) ?{ (*untyped) -> void } -> _StartMedicalStreamTranscriptionResponseSuccess
|
180
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartMedicalStreamTranscriptionResponseSuccess
|
181
|
-
|
182
|
-
interface _StartStreamTranscriptionResponseSuccess
|
183
|
-
include ::Seahorse::Client::_ResponseSuccess[Types::StartStreamTranscriptionResponse]
|
184
|
-
def request_id: () -> ::String
|
185
|
-
def language_code: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
186
|
-
def media_sample_rate_hertz: () -> ::Integer
|
187
|
-
def media_encoding: () -> ("pcm" | "ogg-opus" | "flac")
|
188
|
-
def vocabulary_name: () -> ::String
|
189
|
-
def session_id: () -> ::String
|
190
|
-
def transcript_result_stream: () -> Types::TranscriptResultStream
|
191
|
-
def vocabulary_filter_name: () -> ::String
|
192
|
-
def vocabulary_filter_method: () -> ("remove" | "mask" | "tag")
|
193
|
-
def show_speaker_label: () -> bool
|
194
|
-
def enable_channel_identification: () -> bool
|
195
|
-
def number_of_channels: () -> ::Integer
|
196
|
-
def enable_partial_results_stabilization: () -> bool
|
197
|
-
def partial_results_stability: () -> ("high" | "medium" | "low")
|
198
|
-
def content_identification_type: () -> ("PII")
|
199
|
-
def content_redaction_type: () -> ("PII")
|
200
|
-
def pii_entity_types: () -> ::String
|
201
|
-
def language_model_name: () -> ::String
|
202
|
-
def identify_language: () -> bool
|
203
|
-
def language_options: () -> ::String
|
204
|
-
def preferred_language: () -> ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA")
|
205
|
-
def identify_multiple_languages: () -> bool
|
206
|
-
def vocabulary_names: () -> ::String
|
207
|
-
def vocabulary_filter_names: () -> ::String
|
208
|
-
end
|
209
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/TranscribeStreamingService/Client.html#start_stream_transcription-instance_method
|
210
|
-
def start_stream_transcription: (
|
211
|
-
?language_code: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
212
|
-
media_sample_rate_hertz: ::Integer,
|
213
|
-
media_encoding: ("pcm" | "ogg-opus" | "flac"),
|
214
|
-
?vocabulary_name: ::String,
|
215
|
-
?session_id: ::String,
|
216
|
-
input_event_stream_hander: untyped,
|
217
|
-
?vocabulary_filter_name: ::String,
|
218
|
-
?vocabulary_filter_method: ("remove" | "mask" | "tag"),
|
219
|
-
?show_speaker_label: bool,
|
220
|
-
?enable_channel_identification: bool,
|
221
|
-
?number_of_channels: ::Integer,
|
222
|
-
?enable_partial_results_stabilization: bool,
|
223
|
-
?partial_results_stability: ("high" | "medium" | "low"),
|
224
|
-
?content_identification_type: ("PII"),
|
225
|
-
?content_redaction_type: ("PII"),
|
226
|
-
?pii_entity_types: ::String,
|
227
|
-
?language_model_name: ::String,
|
228
|
-
?identify_language: bool,
|
229
|
-
?language_options: ::String,
|
230
|
-
?preferred_language: ("en-US" | "en-GB" | "es-US" | "fr-CA" | "fr-FR" | "en-AU" | "it-IT" | "de-DE" | "pt-BR" | "ja-JP" | "ko-KR" | "zh-CN" | "th-TH" | "es-ES" | "ar-SA" | "pt-PT" | "ca-ES" | "ar-AE" | "hi-IN" | "zh-HK" | "nl-NL" | "no-NO" | "sv-SE" | "pl-PL" | "fi-FI" | "zh-TW" | "en-IN" | "en-IE" | "en-NZ" | "en-AB" | "en-ZA" | "en-WL" | "de-CH" | "af-ZA" | "eu-ES" | "hr-HR" | "cs-CZ" | "da-DK" | "fa-IR" | "gl-ES" | "el-GR" | "he-IL" | "id-ID" | "lv-LV" | "ms-MY" | "ro-RO" | "ru-RU" | "sr-RS" | "sk-SK" | "so-SO" | "tl-PH" | "uk-UA" | "vi-VN" | "zu-ZA"),
|
231
|
-
?identify_multiple_languages: bool,
|
232
|
-
?vocabulary_names: ::String,
|
233
|
-
?vocabulary_filter_names: ::String
|
234
|
-
) ?{ (*untyped) -> void } -> _StartStreamTranscriptionResponseSuccess
|
235
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _StartStreamTranscriptionResponseSuccess
|
236
92
|
end
|
237
93
|
end
|
238
94
|
end
|
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.79.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: 2025-
|
11
|
+
date: 2025-04-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -68,6 +68,7 @@ files:
|
|
68
68
|
- lib/aws-sdk-transcribestreamingservice/plugins/endpoints.rb
|
69
69
|
- lib/aws-sdk-transcribestreamingservice/resource.rb
|
70
70
|
- lib/aws-sdk-transcribestreamingservice/types.rb
|
71
|
+
- sig/async_client.rbs
|
71
72
|
- sig/client.rbs
|
72
73
|
- sig/errors.rbs
|
73
74
|
- sig/resource.rbs
|