@aws-sdk/client-transcribe 3.721.0 → 3.726.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.
- package/dist-cjs/index.js +224 -164
- package/dist-es/TranscribeClient.js +1 -0
- package/dist-es/models/models_0.js +15 -10
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -209,7 +209,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
209
209
|
}, "resolveRuntimeExtensions");
|
|
210
210
|
|
|
211
211
|
// src/TranscribeClient.ts
|
|
212
|
-
var
|
|
212
|
+
var TranscribeClient = class extends import_smithy_client.Client {
|
|
213
|
+
static {
|
|
214
|
+
__name(this, "TranscribeClient");
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* The resolved configuration of TranscribeClient class. This is resolved and normalized from the {@link TranscribeClientConfig | constructor configuration interface}.
|
|
218
|
+
*/
|
|
219
|
+
config;
|
|
213
220
|
constructor(...[configuration]) {
|
|
214
221
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
215
222
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -219,7 +226,7 @@ var _TranscribeClient = class _TranscribeClient extends import_smithy_client.Cli
|
|
|
219
226
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
220
227
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
221
228
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
222
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
229
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
223
230
|
super(_config_8);
|
|
224
231
|
this.config = _config_8;
|
|
225
232
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -247,8 +254,6 @@ var _TranscribeClient = class _TranscribeClient extends import_smithy_client.Cli
|
|
|
247
254
|
super.destroy();
|
|
248
255
|
}
|
|
249
256
|
};
|
|
250
|
-
__name(_TranscribeClient, "TranscribeClient");
|
|
251
|
-
var TranscribeClient = _TranscribeClient;
|
|
252
257
|
|
|
253
258
|
// src/Transcribe.ts
|
|
254
259
|
|
|
@@ -265,7 +270,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
265
270
|
|
|
266
271
|
// src/models/TranscribeServiceException.ts
|
|
267
272
|
|
|
268
|
-
var
|
|
273
|
+
var TranscribeServiceException = class _TranscribeServiceException extends import_smithy_client.ServiceException {
|
|
274
|
+
static {
|
|
275
|
+
__name(this, "TranscribeServiceException");
|
|
276
|
+
}
|
|
269
277
|
/**
|
|
270
278
|
* @internal
|
|
271
279
|
*/
|
|
@@ -274,11 +282,15 @@ var _TranscribeServiceException = class _TranscribeServiceException extends impo
|
|
|
274
282
|
Object.setPrototypeOf(this, _TranscribeServiceException.prototype);
|
|
275
283
|
}
|
|
276
284
|
};
|
|
277
|
-
__name(_TranscribeServiceException, "TranscribeServiceException");
|
|
278
|
-
var TranscribeServiceException = _TranscribeServiceException;
|
|
279
285
|
|
|
280
286
|
// src/models/models_0.ts
|
|
281
|
-
var
|
|
287
|
+
var BadRequestException = class _BadRequestException extends TranscribeServiceException {
|
|
288
|
+
static {
|
|
289
|
+
__name(this, "BadRequestException");
|
|
290
|
+
}
|
|
291
|
+
name = "BadRequestException";
|
|
292
|
+
$fault = "client";
|
|
293
|
+
Message;
|
|
282
294
|
/**
|
|
283
295
|
* @internal
|
|
284
296
|
*/
|
|
@@ -288,14 +300,10 @@ var _BadRequestException = class _BadRequestException extends TranscribeServiceE
|
|
|
288
300
|
$fault: "client",
|
|
289
301
|
...opts
|
|
290
302
|
});
|
|
291
|
-
this.name = "BadRequestException";
|
|
292
|
-
this.$fault = "client";
|
|
293
303
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
294
304
|
this.Message = opts.Message;
|
|
295
305
|
}
|
|
296
306
|
};
|
|
297
|
-
__name(_BadRequestException, "BadRequestException");
|
|
298
|
-
var BadRequestException = _BadRequestException;
|
|
299
307
|
var BaseModelName = {
|
|
300
308
|
NARROW_BAND: "NarrowBand",
|
|
301
309
|
WIDE_BAND: "WideBand"
|
|
@@ -494,7 +502,13 @@ var CLMLanguageCode = {
|
|
|
494
502
|
HI_IN: "hi-IN",
|
|
495
503
|
JA_JP: "ja-JP"
|
|
496
504
|
};
|
|
497
|
-
var
|
|
505
|
+
var ConflictException = class _ConflictException extends TranscribeServiceException {
|
|
506
|
+
static {
|
|
507
|
+
__name(this, "ConflictException");
|
|
508
|
+
}
|
|
509
|
+
name = "ConflictException";
|
|
510
|
+
$fault = "client";
|
|
511
|
+
Message;
|
|
498
512
|
/**
|
|
499
513
|
* @internal
|
|
500
514
|
*/
|
|
@@ -504,15 +518,17 @@ var _ConflictException = class _ConflictException extends TranscribeServiceExcep
|
|
|
504
518
|
$fault: "client",
|
|
505
519
|
...opts
|
|
506
520
|
});
|
|
507
|
-
this.name = "ConflictException";
|
|
508
|
-
this.$fault = "client";
|
|
509
521
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
510
522
|
this.Message = opts.Message;
|
|
511
523
|
}
|
|
512
524
|
};
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
525
|
+
var InternalFailureException = class _InternalFailureException extends TranscribeServiceException {
|
|
526
|
+
static {
|
|
527
|
+
__name(this, "InternalFailureException");
|
|
528
|
+
}
|
|
529
|
+
name = "InternalFailureException";
|
|
530
|
+
$fault = "server";
|
|
531
|
+
Message;
|
|
516
532
|
/**
|
|
517
533
|
* @internal
|
|
518
534
|
*/
|
|
@@ -522,15 +538,17 @@ var _InternalFailureException = class _InternalFailureException extends Transcri
|
|
|
522
538
|
$fault: "server",
|
|
523
539
|
...opts
|
|
524
540
|
});
|
|
525
|
-
this.name = "InternalFailureException";
|
|
526
|
-
this.$fault = "server";
|
|
527
541
|
Object.setPrototypeOf(this, _InternalFailureException.prototype);
|
|
528
542
|
this.Message = opts.Message;
|
|
529
543
|
}
|
|
530
544
|
};
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
545
|
+
var LimitExceededException = class _LimitExceededException extends TranscribeServiceException {
|
|
546
|
+
static {
|
|
547
|
+
__name(this, "LimitExceededException");
|
|
548
|
+
}
|
|
549
|
+
name = "LimitExceededException";
|
|
550
|
+
$fault = "client";
|
|
551
|
+
Message;
|
|
534
552
|
/**
|
|
535
553
|
* @internal
|
|
536
554
|
*/
|
|
@@ -540,14 +558,10 @@ var _LimitExceededException = class _LimitExceededException extends TranscribeSe
|
|
|
540
558
|
$fault: "client",
|
|
541
559
|
...opts
|
|
542
560
|
});
|
|
543
|
-
this.name = "LimitExceededException";
|
|
544
|
-
this.$fault = "client";
|
|
545
561
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
546
562
|
this.Message = opts.Message;
|
|
547
563
|
}
|
|
548
564
|
};
|
|
549
|
-
__name(_LimitExceededException, "LimitExceededException");
|
|
550
|
-
var LimitExceededException = _LimitExceededException;
|
|
551
565
|
var ModelStatus = {
|
|
552
566
|
COMPLETED: "COMPLETED",
|
|
553
567
|
FAILED: "FAILED",
|
|
@@ -558,7 +572,13 @@ var VocabularyState = {
|
|
|
558
572
|
PENDING: "PENDING",
|
|
559
573
|
READY: "READY"
|
|
560
574
|
};
|
|
561
|
-
var
|
|
575
|
+
var NotFoundException = class _NotFoundException extends TranscribeServiceException {
|
|
576
|
+
static {
|
|
577
|
+
__name(this, "NotFoundException");
|
|
578
|
+
}
|
|
579
|
+
name = "NotFoundException";
|
|
580
|
+
$fault = "client";
|
|
581
|
+
Message;
|
|
562
582
|
/**
|
|
563
583
|
* @internal
|
|
564
584
|
*/
|
|
@@ -568,14 +588,10 @@ var _NotFoundException = class _NotFoundException extends TranscribeServiceExcep
|
|
|
568
588
|
$fault: "client",
|
|
569
589
|
...opts
|
|
570
590
|
});
|
|
571
|
-
this.name = "NotFoundException";
|
|
572
|
-
this.$fault = "client";
|
|
573
591
|
Object.setPrototypeOf(this, _NotFoundException.prototype);
|
|
574
592
|
this.Message = opts.Message;
|
|
575
593
|
}
|
|
576
594
|
};
|
|
577
|
-
__name(_NotFoundException, "NotFoundException");
|
|
578
|
-
var NotFoundException = _NotFoundException;
|
|
579
595
|
var MedicalScribeParticipantRole = {
|
|
580
596
|
CLINICIAN: "CLINICIAN",
|
|
581
597
|
PATIENT: "PATIENT"
|
|
@@ -1959,603 +1975,646 @@ function sharedHeaders(operation) {
|
|
|
1959
1975
|
__name(sharedHeaders, "sharedHeaders");
|
|
1960
1976
|
|
|
1961
1977
|
// src/commands/CreateCallAnalyticsCategoryCommand.ts
|
|
1962
|
-
var
|
|
1978
|
+
var CreateCallAnalyticsCategoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1963
1979
|
return [
|
|
1964
1980
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1965
1981
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1966
1982
|
];
|
|
1967
1983
|
}).s("Transcribe", "CreateCallAnalyticsCategory", {}).n("TranscribeClient", "CreateCallAnalyticsCategoryCommand").f(void 0, void 0).ser(se_CreateCallAnalyticsCategoryCommand).de(de_CreateCallAnalyticsCategoryCommand).build() {
|
|
1984
|
+
static {
|
|
1985
|
+
__name(this, "CreateCallAnalyticsCategoryCommand");
|
|
1986
|
+
}
|
|
1968
1987
|
};
|
|
1969
|
-
__name(_CreateCallAnalyticsCategoryCommand, "CreateCallAnalyticsCategoryCommand");
|
|
1970
|
-
var CreateCallAnalyticsCategoryCommand = _CreateCallAnalyticsCategoryCommand;
|
|
1971
1988
|
|
|
1972
1989
|
// src/commands/CreateLanguageModelCommand.ts
|
|
1973
1990
|
|
|
1974
1991
|
|
|
1975
1992
|
|
|
1976
|
-
var
|
|
1993
|
+
var CreateLanguageModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1977
1994
|
return [
|
|
1978
1995
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1979
1996
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1980
1997
|
];
|
|
1981
1998
|
}).s("Transcribe", "CreateLanguageModel", {}).n("TranscribeClient", "CreateLanguageModelCommand").f(void 0, void 0).ser(se_CreateLanguageModelCommand).de(de_CreateLanguageModelCommand).build() {
|
|
1999
|
+
static {
|
|
2000
|
+
__name(this, "CreateLanguageModelCommand");
|
|
2001
|
+
}
|
|
1982
2002
|
};
|
|
1983
|
-
__name(_CreateLanguageModelCommand, "CreateLanguageModelCommand");
|
|
1984
|
-
var CreateLanguageModelCommand = _CreateLanguageModelCommand;
|
|
1985
2003
|
|
|
1986
2004
|
// src/commands/CreateMedicalVocabularyCommand.ts
|
|
1987
2005
|
|
|
1988
2006
|
|
|
1989
2007
|
|
|
1990
|
-
var
|
|
2008
|
+
var CreateMedicalVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1991
2009
|
return [
|
|
1992
2010
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1993
2011
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1994
2012
|
];
|
|
1995
2013
|
}).s("Transcribe", "CreateMedicalVocabulary", {}).n("TranscribeClient", "CreateMedicalVocabularyCommand").f(void 0, void 0).ser(se_CreateMedicalVocabularyCommand).de(de_CreateMedicalVocabularyCommand).build() {
|
|
2014
|
+
static {
|
|
2015
|
+
__name(this, "CreateMedicalVocabularyCommand");
|
|
2016
|
+
}
|
|
1996
2017
|
};
|
|
1997
|
-
__name(_CreateMedicalVocabularyCommand, "CreateMedicalVocabularyCommand");
|
|
1998
|
-
var CreateMedicalVocabularyCommand = _CreateMedicalVocabularyCommand;
|
|
1999
2018
|
|
|
2000
2019
|
// src/commands/CreateVocabularyCommand.ts
|
|
2001
2020
|
|
|
2002
2021
|
|
|
2003
2022
|
|
|
2004
|
-
var
|
|
2023
|
+
var CreateVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2005
2024
|
return [
|
|
2006
2025
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2007
2026
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2008
2027
|
];
|
|
2009
2028
|
}).s("Transcribe", "CreateVocabulary", {}).n("TranscribeClient", "CreateVocabularyCommand").f(void 0, void 0).ser(se_CreateVocabularyCommand).de(de_CreateVocabularyCommand).build() {
|
|
2029
|
+
static {
|
|
2030
|
+
__name(this, "CreateVocabularyCommand");
|
|
2031
|
+
}
|
|
2010
2032
|
};
|
|
2011
|
-
__name(_CreateVocabularyCommand, "CreateVocabularyCommand");
|
|
2012
|
-
var CreateVocabularyCommand = _CreateVocabularyCommand;
|
|
2013
2033
|
|
|
2014
2034
|
// src/commands/CreateVocabularyFilterCommand.ts
|
|
2015
2035
|
|
|
2016
2036
|
|
|
2017
2037
|
|
|
2018
|
-
var
|
|
2038
|
+
var CreateVocabularyFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2019
2039
|
return [
|
|
2020
2040
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2021
2041
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2022
2042
|
];
|
|
2023
2043
|
}).s("Transcribe", "CreateVocabularyFilter", {}).n("TranscribeClient", "CreateVocabularyFilterCommand").f(void 0, void 0).ser(se_CreateVocabularyFilterCommand).de(de_CreateVocabularyFilterCommand).build() {
|
|
2044
|
+
static {
|
|
2045
|
+
__name(this, "CreateVocabularyFilterCommand");
|
|
2046
|
+
}
|
|
2024
2047
|
};
|
|
2025
|
-
__name(_CreateVocabularyFilterCommand, "CreateVocabularyFilterCommand");
|
|
2026
|
-
var CreateVocabularyFilterCommand = _CreateVocabularyFilterCommand;
|
|
2027
2048
|
|
|
2028
2049
|
// src/commands/DeleteCallAnalyticsCategoryCommand.ts
|
|
2029
2050
|
|
|
2030
2051
|
|
|
2031
2052
|
|
|
2032
|
-
var
|
|
2053
|
+
var DeleteCallAnalyticsCategoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2033
2054
|
return [
|
|
2034
2055
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2035
2056
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2036
2057
|
];
|
|
2037
2058
|
}).s("Transcribe", "DeleteCallAnalyticsCategory", {}).n("TranscribeClient", "DeleteCallAnalyticsCategoryCommand").f(void 0, void 0).ser(se_DeleteCallAnalyticsCategoryCommand).de(de_DeleteCallAnalyticsCategoryCommand).build() {
|
|
2059
|
+
static {
|
|
2060
|
+
__name(this, "DeleteCallAnalyticsCategoryCommand");
|
|
2061
|
+
}
|
|
2038
2062
|
};
|
|
2039
|
-
__name(_DeleteCallAnalyticsCategoryCommand, "DeleteCallAnalyticsCategoryCommand");
|
|
2040
|
-
var DeleteCallAnalyticsCategoryCommand = _DeleteCallAnalyticsCategoryCommand;
|
|
2041
2063
|
|
|
2042
2064
|
// src/commands/DeleteCallAnalyticsJobCommand.ts
|
|
2043
2065
|
|
|
2044
2066
|
|
|
2045
2067
|
|
|
2046
|
-
var
|
|
2068
|
+
var DeleteCallAnalyticsJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2047
2069
|
return [
|
|
2048
2070
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2049
2071
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2050
2072
|
];
|
|
2051
2073
|
}).s("Transcribe", "DeleteCallAnalyticsJob", {}).n("TranscribeClient", "DeleteCallAnalyticsJobCommand").f(void 0, void 0).ser(se_DeleteCallAnalyticsJobCommand).de(de_DeleteCallAnalyticsJobCommand).build() {
|
|
2074
|
+
static {
|
|
2075
|
+
__name(this, "DeleteCallAnalyticsJobCommand");
|
|
2076
|
+
}
|
|
2052
2077
|
};
|
|
2053
|
-
__name(_DeleteCallAnalyticsJobCommand, "DeleteCallAnalyticsJobCommand");
|
|
2054
|
-
var DeleteCallAnalyticsJobCommand = _DeleteCallAnalyticsJobCommand;
|
|
2055
2078
|
|
|
2056
2079
|
// src/commands/DeleteLanguageModelCommand.ts
|
|
2057
2080
|
|
|
2058
2081
|
|
|
2059
2082
|
|
|
2060
|
-
var
|
|
2083
|
+
var DeleteLanguageModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2061
2084
|
return [
|
|
2062
2085
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2063
2086
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2064
2087
|
];
|
|
2065
2088
|
}).s("Transcribe", "DeleteLanguageModel", {}).n("TranscribeClient", "DeleteLanguageModelCommand").f(void 0, void 0).ser(se_DeleteLanguageModelCommand).de(de_DeleteLanguageModelCommand).build() {
|
|
2089
|
+
static {
|
|
2090
|
+
__name(this, "DeleteLanguageModelCommand");
|
|
2091
|
+
}
|
|
2066
2092
|
};
|
|
2067
|
-
__name(_DeleteLanguageModelCommand, "DeleteLanguageModelCommand");
|
|
2068
|
-
var DeleteLanguageModelCommand = _DeleteLanguageModelCommand;
|
|
2069
2093
|
|
|
2070
2094
|
// src/commands/DeleteMedicalScribeJobCommand.ts
|
|
2071
2095
|
|
|
2072
2096
|
|
|
2073
2097
|
|
|
2074
|
-
var
|
|
2098
|
+
var DeleteMedicalScribeJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2075
2099
|
return [
|
|
2076
2100
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2077
2101
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2078
2102
|
];
|
|
2079
2103
|
}).s("Transcribe", "DeleteMedicalScribeJob", {}).n("TranscribeClient", "DeleteMedicalScribeJobCommand").f(void 0, void 0).ser(se_DeleteMedicalScribeJobCommand).de(de_DeleteMedicalScribeJobCommand).build() {
|
|
2104
|
+
static {
|
|
2105
|
+
__name(this, "DeleteMedicalScribeJobCommand");
|
|
2106
|
+
}
|
|
2080
2107
|
};
|
|
2081
|
-
__name(_DeleteMedicalScribeJobCommand, "DeleteMedicalScribeJobCommand");
|
|
2082
|
-
var DeleteMedicalScribeJobCommand = _DeleteMedicalScribeJobCommand;
|
|
2083
2108
|
|
|
2084
2109
|
// src/commands/DeleteMedicalTranscriptionJobCommand.ts
|
|
2085
2110
|
|
|
2086
2111
|
|
|
2087
2112
|
|
|
2088
|
-
var
|
|
2113
|
+
var DeleteMedicalTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2089
2114
|
return [
|
|
2090
2115
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2091
2116
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2092
2117
|
];
|
|
2093
2118
|
}).s("Transcribe", "DeleteMedicalTranscriptionJob", {}).n("TranscribeClient", "DeleteMedicalTranscriptionJobCommand").f(void 0, void 0).ser(se_DeleteMedicalTranscriptionJobCommand).de(de_DeleteMedicalTranscriptionJobCommand).build() {
|
|
2119
|
+
static {
|
|
2120
|
+
__name(this, "DeleteMedicalTranscriptionJobCommand");
|
|
2121
|
+
}
|
|
2094
2122
|
};
|
|
2095
|
-
__name(_DeleteMedicalTranscriptionJobCommand, "DeleteMedicalTranscriptionJobCommand");
|
|
2096
|
-
var DeleteMedicalTranscriptionJobCommand = _DeleteMedicalTranscriptionJobCommand;
|
|
2097
2123
|
|
|
2098
2124
|
// src/commands/DeleteMedicalVocabularyCommand.ts
|
|
2099
2125
|
|
|
2100
2126
|
|
|
2101
2127
|
|
|
2102
|
-
var
|
|
2128
|
+
var DeleteMedicalVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2103
2129
|
return [
|
|
2104
2130
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2105
2131
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2106
2132
|
];
|
|
2107
2133
|
}).s("Transcribe", "DeleteMedicalVocabulary", {}).n("TranscribeClient", "DeleteMedicalVocabularyCommand").f(void 0, void 0).ser(se_DeleteMedicalVocabularyCommand).de(de_DeleteMedicalVocabularyCommand).build() {
|
|
2134
|
+
static {
|
|
2135
|
+
__name(this, "DeleteMedicalVocabularyCommand");
|
|
2136
|
+
}
|
|
2108
2137
|
};
|
|
2109
|
-
__name(_DeleteMedicalVocabularyCommand, "DeleteMedicalVocabularyCommand");
|
|
2110
|
-
var DeleteMedicalVocabularyCommand = _DeleteMedicalVocabularyCommand;
|
|
2111
2138
|
|
|
2112
2139
|
// src/commands/DeleteTranscriptionJobCommand.ts
|
|
2113
2140
|
|
|
2114
2141
|
|
|
2115
2142
|
|
|
2116
|
-
var
|
|
2143
|
+
var DeleteTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2117
2144
|
return [
|
|
2118
2145
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2119
2146
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2120
2147
|
];
|
|
2121
2148
|
}).s("Transcribe", "DeleteTranscriptionJob", {}).n("TranscribeClient", "DeleteTranscriptionJobCommand").f(void 0, void 0).ser(se_DeleteTranscriptionJobCommand).de(de_DeleteTranscriptionJobCommand).build() {
|
|
2149
|
+
static {
|
|
2150
|
+
__name(this, "DeleteTranscriptionJobCommand");
|
|
2151
|
+
}
|
|
2122
2152
|
};
|
|
2123
|
-
__name(_DeleteTranscriptionJobCommand, "DeleteTranscriptionJobCommand");
|
|
2124
|
-
var DeleteTranscriptionJobCommand = _DeleteTranscriptionJobCommand;
|
|
2125
2153
|
|
|
2126
2154
|
// src/commands/DeleteVocabularyCommand.ts
|
|
2127
2155
|
|
|
2128
2156
|
|
|
2129
2157
|
|
|
2130
|
-
var
|
|
2158
|
+
var DeleteVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2131
2159
|
return [
|
|
2132
2160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2133
2161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2134
2162
|
];
|
|
2135
2163
|
}).s("Transcribe", "DeleteVocabulary", {}).n("TranscribeClient", "DeleteVocabularyCommand").f(void 0, void 0).ser(se_DeleteVocabularyCommand).de(de_DeleteVocabularyCommand).build() {
|
|
2164
|
+
static {
|
|
2165
|
+
__name(this, "DeleteVocabularyCommand");
|
|
2166
|
+
}
|
|
2136
2167
|
};
|
|
2137
|
-
__name(_DeleteVocabularyCommand, "DeleteVocabularyCommand");
|
|
2138
|
-
var DeleteVocabularyCommand = _DeleteVocabularyCommand;
|
|
2139
2168
|
|
|
2140
2169
|
// src/commands/DeleteVocabularyFilterCommand.ts
|
|
2141
2170
|
|
|
2142
2171
|
|
|
2143
2172
|
|
|
2144
|
-
var
|
|
2173
|
+
var DeleteVocabularyFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2145
2174
|
return [
|
|
2146
2175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2147
2176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2148
2177
|
];
|
|
2149
2178
|
}).s("Transcribe", "DeleteVocabularyFilter", {}).n("TranscribeClient", "DeleteVocabularyFilterCommand").f(void 0, void 0).ser(se_DeleteVocabularyFilterCommand).de(de_DeleteVocabularyFilterCommand).build() {
|
|
2179
|
+
static {
|
|
2180
|
+
__name(this, "DeleteVocabularyFilterCommand");
|
|
2181
|
+
}
|
|
2150
2182
|
};
|
|
2151
|
-
__name(_DeleteVocabularyFilterCommand, "DeleteVocabularyFilterCommand");
|
|
2152
|
-
var DeleteVocabularyFilterCommand = _DeleteVocabularyFilterCommand;
|
|
2153
2183
|
|
|
2154
2184
|
// src/commands/DescribeLanguageModelCommand.ts
|
|
2155
2185
|
|
|
2156
2186
|
|
|
2157
2187
|
|
|
2158
|
-
var
|
|
2188
|
+
var DescribeLanguageModelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2159
2189
|
return [
|
|
2160
2190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2161
2191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2162
2192
|
];
|
|
2163
2193
|
}).s("Transcribe", "DescribeLanguageModel", {}).n("TranscribeClient", "DescribeLanguageModelCommand").f(void 0, void 0).ser(se_DescribeLanguageModelCommand).de(de_DescribeLanguageModelCommand).build() {
|
|
2194
|
+
static {
|
|
2195
|
+
__name(this, "DescribeLanguageModelCommand");
|
|
2196
|
+
}
|
|
2164
2197
|
};
|
|
2165
|
-
__name(_DescribeLanguageModelCommand, "DescribeLanguageModelCommand");
|
|
2166
|
-
var DescribeLanguageModelCommand = _DescribeLanguageModelCommand;
|
|
2167
2198
|
|
|
2168
2199
|
// src/commands/GetCallAnalyticsCategoryCommand.ts
|
|
2169
2200
|
|
|
2170
2201
|
|
|
2171
2202
|
|
|
2172
|
-
var
|
|
2203
|
+
var GetCallAnalyticsCategoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2173
2204
|
return [
|
|
2174
2205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2175
2206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2176
2207
|
];
|
|
2177
2208
|
}).s("Transcribe", "GetCallAnalyticsCategory", {}).n("TranscribeClient", "GetCallAnalyticsCategoryCommand").f(void 0, void 0).ser(se_GetCallAnalyticsCategoryCommand).de(de_GetCallAnalyticsCategoryCommand).build() {
|
|
2209
|
+
static {
|
|
2210
|
+
__name(this, "GetCallAnalyticsCategoryCommand");
|
|
2211
|
+
}
|
|
2178
2212
|
};
|
|
2179
|
-
__name(_GetCallAnalyticsCategoryCommand, "GetCallAnalyticsCategoryCommand");
|
|
2180
|
-
var GetCallAnalyticsCategoryCommand = _GetCallAnalyticsCategoryCommand;
|
|
2181
2213
|
|
|
2182
2214
|
// src/commands/GetCallAnalyticsJobCommand.ts
|
|
2183
2215
|
|
|
2184
2216
|
|
|
2185
2217
|
|
|
2186
|
-
var
|
|
2218
|
+
var GetCallAnalyticsJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2187
2219
|
return [
|
|
2188
2220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2189
2221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2190
2222
|
];
|
|
2191
2223
|
}).s("Transcribe", "GetCallAnalyticsJob", {}).n("TranscribeClient", "GetCallAnalyticsJobCommand").f(void 0, void 0).ser(se_GetCallAnalyticsJobCommand).de(de_GetCallAnalyticsJobCommand).build() {
|
|
2224
|
+
static {
|
|
2225
|
+
__name(this, "GetCallAnalyticsJobCommand");
|
|
2226
|
+
}
|
|
2192
2227
|
};
|
|
2193
|
-
__name(_GetCallAnalyticsJobCommand, "GetCallAnalyticsJobCommand");
|
|
2194
|
-
var GetCallAnalyticsJobCommand = _GetCallAnalyticsJobCommand;
|
|
2195
2228
|
|
|
2196
2229
|
// src/commands/GetMedicalScribeJobCommand.ts
|
|
2197
2230
|
|
|
2198
2231
|
|
|
2199
2232
|
|
|
2200
|
-
var
|
|
2233
|
+
var GetMedicalScribeJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2201
2234
|
return [
|
|
2202
2235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2203
2236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2204
2237
|
];
|
|
2205
2238
|
}).s("Transcribe", "GetMedicalScribeJob", {}).n("TranscribeClient", "GetMedicalScribeJobCommand").f(void 0, void 0).ser(se_GetMedicalScribeJobCommand).de(de_GetMedicalScribeJobCommand).build() {
|
|
2239
|
+
static {
|
|
2240
|
+
__name(this, "GetMedicalScribeJobCommand");
|
|
2241
|
+
}
|
|
2206
2242
|
};
|
|
2207
|
-
__name(_GetMedicalScribeJobCommand, "GetMedicalScribeJobCommand");
|
|
2208
|
-
var GetMedicalScribeJobCommand = _GetMedicalScribeJobCommand;
|
|
2209
2243
|
|
|
2210
2244
|
// src/commands/GetMedicalTranscriptionJobCommand.ts
|
|
2211
2245
|
|
|
2212
2246
|
|
|
2213
2247
|
|
|
2214
|
-
var
|
|
2248
|
+
var GetMedicalTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2215
2249
|
return [
|
|
2216
2250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2217
2251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2218
2252
|
];
|
|
2219
2253
|
}).s("Transcribe", "GetMedicalTranscriptionJob", {}).n("TranscribeClient", "GetMedicalTranscriptionJobCommand").f(void 0, void 0).ser(se_GetMedicalTranscriptionJobCommand).de(de_GetMedicalTranscriptionJobCommand).build() {
|
|
2254
|
+
static {
|
|
2255
|
+
__name(this, "GetMedicalTranscriptionJobCommand");
|
|
2256
|
+
}
|
|
2220
2257
|
};
|
|
2221
|
-
__name(_GetMedicalTranscriptionJobCommand, "GetMedicalTranscriptionJobCommand");
|
|
2222
|
-
var GetMedicalTranscriptionJobCommand = _GetMedicalTranscriptionJobCommand;
|
|
2223
2258
|
|
|
2224
2259
|
// src/commands/GetMedicalVocabularyCommand.ts
|
|
2225
2260
|
|
|
2226
2261
|
|
|
2227
2262
|
|
|
2228
|
-
var
|
|
2263
|
+
var GetMedicalVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2229
2264
|
return [
|
|
2230
2265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2231
2266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2232
2267
|
];
|
|
2233
2268
|
}).s("Transcribe", "GetMedicalVocabulary", {}).n("TranscribeClient", "GetMedicalVocabularyCommand").f(void 0, void 0).ser(se_GetMedicalVocabularyCommand).de(de_GetMedicalVocabularyCommand).build() {
|
|
2269
|
+
static {
|
|
2270
|
+
__name(this, "GetMedicalVocabularyCommand");
|
|
2271
|
+
}
|
|
2234
2272
|
};
|
|
2235
|
-
__name(_GetMedicalVocabularyCommand, "GetMedicalVocabularyCommand");
|
|
2236
|
-
var GetMedicalVocabularyCommand = _GetMedicalVocabularyCommand;
|
|
2237
2273
|
|
|
2238
2274
|
// src/commands/GetTranscriptionJobCommand.ts
|
|
2239
2275
|
|
|
2240
2276
|
|
|
2241
2277
|
|
|
2242
|
-
var
|
|
2278
|
+
var GetTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2243
2279
|
return [
|
|
2244
2280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2245
2281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2246
2282
|
];
|
|
2247
2283
|
}).s("Transcribe", "GetTranscriptionJob", {}).n("TranscribeClient", "GetTranscriptionJobCommand").f(void 0, void 0).ser(se_GetTranscriptionJobCommand).de(de_GetTranscriptionJobCommand).build() {
|
|
2284
|
+
static {
|
|
2285
|
+
__name(this, "GetTranscriptionJobCommand");
|
|
2286
|
+
}
|
|
2248
2287
|
};
|
|
2249
|
-
__name(_GetTranscriptionJobCommand, "GetTranscriptionJobCommand");
|
|
2250
|
-
var GetTranscriptionJobCommand = _GetTranscriptionJobCommand;
|
|
2251
2288
|
|
|
2252
2289
|
// src/commands/GetVocabularyCommand.ts
|
|
2253
2290
|
|
|
2254
2291
|
|
|
2255
2292
|
|
|
2256
|
-
var
|
|
2293
|
+
var GetVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2257
2294
|
return [
|
|
2258
2295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2259
2296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2260
2297
|
];
|
|
2261
2298
|
}).s("Transcribe", "GetVocabulary", {}).n("TranscribeClient", "GetVocabularyCommand").f(void 0, void 0).ser(se_GetVocabularyCommand).de(de_GetVocabularyCommand).build() {
|
|
2299
|
+
static {
|
|
2300
|
+
__name(this, "GetVocabularyCommand");
|
|
2301
|
+
}
|
|
2262
2302
|
};
|
|
2263
|
-
__name(_GetVocabularyCommand, "GetVocabularyCommand");
|
|
2264
|
-
var GetVocabularyCommand = _GetVocabularyCommand;
|
|
2265
2303
|
|
|
2266
2304
|
// src/commands/GetVocabularyFilterCommand.ts
|
|
2267
2305
|
|
|
2268
2306
|
|
|
2269
2307
|
|
|
2270
|
-
var
|
|
2308
|
+
var GetVocabularyFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2271
2309
|
return [
|
|
2272
2310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2273
2311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2274
2312
|
];
|
|
2275
2313
|
}).s("Transcribe", "GetVocabularyFilter", {}).n("TranscribeClient", "GetVocabularyFilterCommand").f(void 0, void 0).ser(se_GetVocabularyFilterCommand).de(de_GetVocabularyFilterCommand).build() {
|
|
2314
|
+
static {
|
|
2315
|
+
__name(this, "GetVocabularyFilterCommand");
|
|
2316
|
+
}
|
|
2276
2317
|
};
|
|
2277
|
-
__name(_GetVocabularyFilterCommand, "GetVocabularyFilterCommand");
|
|
2278
|
-
var GetVocabularyFilterCommand = _GetVocabularyFilterCommand;
|
|
2279
2318
|
|
|
2280
2319
|
// src/commands/ListCallAnalyticsCategoriesCommand.ts
|
|
2281
2320
|
|
|
2282
2321
|
|
|
2283
2322
|
|
|
2284
|
-
var
|
|
2323
|
+
var ListCallAnalyticsCategoriesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2285
2324
|
return [
|
|
2286
2325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2287
2326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2288
2327
|
];
|
|
2289
2328
|
}).s("Transcribe", "ListCallAnalyticsCategories", {}).n("TranscribeClient", "ListCallAnalyticsCategoriesCommand").f(void 0, void 0).ser(se_ListCallAnalyticsCategoriesCommand).de(de_ListCallAnalyticsCategoriesCommand).build() {
|
|
2329
|
+
static {
|
|
2330
|
+
__name(this, "ListCallAnalyticsCategoriesCommand");
|
|
2331
|
+
}
|
|
2290
2332
|
};
|
|
2291
|
-
__name(_ListCallAnalyticsCategoriesCommand, "ListCallAnalyticsCategoriesCommand");
|
|
2292
|
-
var ListCallAnalyticsCategoriesCommand = _ListCallAnalyticsCategoriesCommand;
|
|
2293
2333
|
|
|
2294
2334
|
// src/commands/ListCallAnalyticsJobsCommand.ts
|
|
2295
2335
|
|
|
2296
2336
|
|
|
2297
2337
|
|
|
2298
|
-
var
|
|
2338
|
+
var ListCallAnalyticsJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2299
2339
|
return [
|
|
2300
2340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2301
2341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2302
2342
|
];
|
|
2303
2343
|
}).s("Transcribe", "ListCallAnalyticsJobs", {}).n("TranscribeClient", "ListCallAnalyticsJobsCommand").f(void 0, void 0).ser(se_ListCallAnalyticsJobsCommand).de(de_ListCallAnalyticsJobsCommand).build() {
|
|
2344
|
+
static {
|
|
2345
|
+
__name(this, "ListCallAnalyticsJobsCommand");
|
|
2346
|
+
}
|
|
2304
2347
|
};
|
|
2305
|
-
__name(_ListCallAnalyticsJobsCommand, "ListCallAnalyticsJobsCommand");
|
|
2306
|
-
var ListCallAnalyticsJobsCommand = _ListCallAnalyticsJobsCommand;
|
|
2307
2348
|
|
|
2308
2349
|
// src/commands/ListLanguageModelsCommand.ts
|
|
2309
2350
|
|
|
2310
2351
|
|
|
2311
2352
|
|
|
2312
|
-
var
|
|
2353
|
+
var ListLanguageModelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2313
2354
|
return [
|
|
2314
2355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2315
2356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2316
2357
|
];
|
|
2317
2358
|
}).s("Transcribe", "ListLanguageModels", {}).n("TranscribeClient", "ListLanguageModelsCommand").f(void 0, void 0).ser(se_ListLanguageModelsCommand).de(de_ListLanguageModelsCommand).build() {
|
|
2359
|
+
static {
|
|
2360
|
+
__name(this, "ListLanguageModelsCommand");
|
|
2361
|
+
}
|
|
2318
2362
|
};
|
|
2319
|
-
__name(_ListLanguageModelsCommand, "ListLanguageModelsCommand");
|
|
2320
|
-
var ListLanguageModelsCommand = _ListLanguageModelsCommand;
|
|
2321
2363
|
|
|
2322
2364
|
// src/commands/ListMedicalScribeJobsCommand.ts
|
|
2323
2365
|
|
|
2324
2366
|
|
|
2325
2367
|
|
|
2326
|
-
var
|
|
2368
|
+
var ListMedicalScribeJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2327
2369
|
return [
|
|
2328
2370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2329
2371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2330
2372
|
];
|
|
2331
2373
|
}).s("Transcribe", "ListMedicalScribeJobs", {}).n("TranscribeClient", "ListMedicalScribeJobsCommand").f(void 0, void 0).ser(se_ListMedicalScribeJobsCommand).de(de_ListMedicalScribeJobsCommand).build() {
|
|
2374
|
+
static {
|
|
2375
|
+
__name(this, "ListMedicalScribeJobsCommand");
|
|
2376
|
+
}
|
|
2332
2377
|
};
|
|
2333
|
-
__name(_ListMedicalScribeJobsCommand, "ListMedicalScribeJobsCommand");
|
|
2334
|
-
var ListMedicalScribeJobsCommand = _ListMedicalScribeJobsCommand;
|
|
2335
2378
|
|
|
2336
2379
|
// src/commands/ListMedicalTranscriptionJobsCommand.ts
|
|
2337
2380
|
|
|
2338
2381
|
|
|
2339
2382
|
|
|
2340
|
-
var
|
|
2383
|
+
var ListMedicalTranscriptionJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2341
2384
|
return [
|
|
2342
2385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2343
2386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2344
2387
|
];
|
|
2345
2388
|
}).s("Transcribe", "ListMedicalTranscriptionJobs", {}).n("TranscribeClient", "ListMedicalTranscriptionJobsCommand").f(void 0, void 0).ser(se_ListMedicalTranscriptionJobsCommand).de(de_ListMedicalTranscriptionJobsCommand).build() {
|
|
2389
|
+
static {
|
|
2390
|
+
__name(this, "ListMedicalTranscriptionJobsCommand");
|
|
2391
|
+
}
|
|
2346
2392
|
};
|
|
2347
|
-
__name(_ListMedicalTranscriptionJobsCommand, "ListMedicalTranscriptionJobsCommand");
|
|
2348
|
-
var ListMedicalTranscriptionJobsCommand = _ListMedicalTranscriptionJobsCommand;
|
|
2349
2393
|
|
|
2350
2394
|
// src/commands/ListMedicalVocabulariesCommand.ts
|
|
2351
2395
|
|
|
2352
2396
|
|
|
2353
2397
|
|
|
2354
|
-
var
|
|
2398
|
+
var ListMedicalVocabulariesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2355
2399
|
return [
|
|
2356
2400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2357
2401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2358
2402
|
];
|
|
2359
2403
|
}).s("Transcribe", "ListMedicalVocabularies", {}).n("TranscribeClient", "ListMedicalVocabulariesCommand").f(void 0, void 0).ser(se_ListMedicalVocabulariesCommand).de(de_ListMedicalVocabulariesCommand).build() {
|
|
2404
|
+
static {
|
|
2405
|
+
__name(this, "ListMedicalVocabulariesCommand");
|
|
2406
|
+
}
|
|
2360
2407
|
};
|
|
2361
|
-
__name(_ListMedicalVocabulariesCommand, "ListMedicalVocabulariesCommand");
|
|
2362
|
-
var ListMedicalVocabulariesCommand = _ListMedicalVocabulariesCommand;
|
|
2363
2408
|
|
|
2364
2409
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2365
2410
|
|
|
2366
2411
|
|
|
2367
2412
|
|
|
2368
|
-
var
|
|
2413
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2369
2414
|
return [
|
|
2370
2415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2371
2416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2372
2417
|
];
|
|
2373
2418
|
}).s("Transcribe", "ListTagsForResource", {}).n("TranscribeClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2419
|
+
static {
|
|
2420
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2421
|
+
}
|
|
2374
2422
|
};
|
|
2375
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2376
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2377
2423
|
|
|
2378
2424
|
// src/commands/ListTranscriptionJobsCommand.ts
|
|
2379
2425
|
|
|
2380
2426
|
|
|
2381
2427
|
|
|
2382
|
-
var
|
|
2428
|
+
var ListTranscriptionJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2383
2429
|
return [
|
|
2384
2430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2385
2431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2386
2432
|
];
|
|
2387
2433
|
}).s("Transcribe", "ListTranscriptionJobs", {}).n("TranscribeClient", "ListTranscriptionJobsCommand").f(void 0, void 0).ser(se_ListTranscriptionJobsCommand).de(de_ListTranscriptionJobsCommand).build() {
|
|
2434
|
+
static {
|
|
2435
|
+
__name(this, "ListTranscriptionJobsCommand");
|
|
2436
|
+
}
|
|
2388
2437
|
};
|
|
2389
|
-
__name(_ListTranscriptionJobsCommand, "ListTranscriptionJobsCommand");
|
|
2390
|
-
var ListTranscriptionJobsCommand = _ListTranscriptionJobsCommand;
|
|
2391
2438
|
|
|
2392
2439
|
// src/commands/ListVocabulariesCommand.ts
|
|
2393
2440
|
|
|
2394
2441
|
|
|
2395
2442
|
|
|
2396
|
-
var
|
|
2443
|
+
var ListVocabulariesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2397
2444
|
return [
|
|
2398
2445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2399
2446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2400
2447
|
];
|
|
2401
2448
|
}).s("Transcribe", "ListVocabularies", {}).n("TranscribeClient", "ListVocabulariesCommand").f(void 0, void 0).ser(se_ListVocabulariesCommand).de(de_ListVocabulariesCommand).build() {
|
|
2449
|
+
static {
|
|
2450
|
+
__name(this, "ListVocabulariesCommand");
|
|
2451
|
+
}
|
|
2402
2452
|
};
|
|
2403
|
-
__name(_ListVocabulariesCommand, "ListVocabulariesCommand");
|
|
2404
|
-
var ListVocabulariesCommand = _ListVocabulariesCommand;
|
|
2405
2453
|
|
|
2406
2454
|
// src/commands/ListVocabularyFiltersCommand.ts
|
|
2407
2455
|
|
|
2408
2456
|
|
|
2409
2457
|
|
|
2410
|
-
var
|
|
2458
|
+
var ListVocabularyFiltersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2411
2459
|
return [
|
|
2412
2460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2413
2461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2414
2462
|
];
|
|
2415
2463
|
}).s("Transcribe", "ListVocabularyFilters", {}).n("TranscribeClient", "ListVocabularyFiltersCommand").f(void 0, void 0).ser(se_ListVocabularyFiltersCommand).de(de_ListVocabularyFiltersCommand).build() {
|
|
2464
|
+
static {
|
|
2465
|
+
__name(this, "ListVocabularyFiltersCommand");
|
|
2466
|
+
}
|
|
2416
2467
|
};
|
|
2417
|
-
__name(_ListVocabularyFiltersCommand, "ListVocabularyFiltersCommand");
|
|
2418
|
-
var ListVocabularyFiltersCommand = _ListVocabularyFiltersCommand;
|
|
2419
2468
|
|
|
2420
2469
|
// src/commands/StartCallAnalyticsJobCommand.ts
|
|
2421
2470
|
|
|
2422
2471
|
|
|
2423
2472
|
|
|
2424
|
-
var
|
|
2473
|
+
var StartCallAnalyticsJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2425
2474
|
return [
|
|
2426
2475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2427
2476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2428
2477
|
];
|
|
2429
2478
|
}).s("Transcribe", "StartCallAnalyticsJob", {}).n("TranscribeClient", "StartCallAnalyticsJobCommand").f(void 0, void 0).ser(se_StartCallAnalyticsJobCommand).de(de_StartCallAnalyticsJobCommand).build() {
|
|
2479
|
+
static {
|
|
2480
|
+
__name(this, "StartCallAnalyticsJobCommand");
|
|
2481
|
+
}
|
|
2430
2482
|
};
|
|
2431
|
-
__name(_StartCallAnalyticsJobCommand, "StartCallAnalyticsJobCommand");
|
|
2432
|
-
var StartCallAnalyticsJobCommand = _StartCallAnalyticsJobCommand;
|
|
2433
2483
|
|
|
2434
2484
|
// src/commands/StartMedicalScribeJobCommand.ts
|
|
2435
2485
|
|
|
2436
2486
|
|
|
2437
2487
|
|
|
2438
|
-
var
|
|
2488
|
+
var StartMedicalScribeJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2439
2489
|
return [
|
|
2440
2490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2441
2491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2442
2492
|
];
|
|
2443
2493
|
}).s("Transcribe", "StartMedicalScribeJob", {}).n("TranscribeClient", "StartMedicalScribeJobCommand").f(void 0, void 0).ser(se_StartMedicalScribeJobCommand).de(de_StartMedicalScribeJobCommand).build() {
|
|
2494
|
+
static {
|
|
2495
|
+
__name(this, "StartMedicalScribeJobCommand");
|
|
2496
|
+
}
|
|
2444
2497
|
};
|
|
2445
|
-
__name(_StartMedicalScribeJobCommand, "StartMedicalScribeJobCommand");
|
|
2446
|
-
var StartMedicalScribeJobCommand = _StartMedicalScribeJobCommand;
|
|
2447
2498
|
|
|
2448
2499
|
// src/commands/StartMedicalTranscriptionJobCommand.ts
|
|
2449
2500
|
|
|
2450
2501
|
|
|
2451
2502
|
|
|
2452
|
-
var
|
|
2503
|
+
var StartMedicalTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2453
2504
|
return [
|
|
2454
2505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2455
2506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2456
2507
|
];
|
|
2457
2508
|
}).s("Transcribe", "StartMedicalTranscriptionJob", {}).n("TranscribeClient", "StartMedicalTranscriptionJobCommand").f(void 0, void 0).ser(se_StartMedicalTranscriptionJobCommand).de(de_StartMedicalTranscriptionJobCommand).build() {
|
|
2509
|
+
static {
|
|
2510
|
+
__name(this, "StartMedicalTranscriptionJobCommand");
|
|
2511
|
+
}
|
|
2458
2512
|
};
|
|
2459
|
-
__name(_StartMedicalTranscriptionJobCommand, "StartMedicalTranscriptionJobCommand");
|
|
2460
|
-
var StartMedicalTranscriptionJobCommand = _StartMedicalTranscriptionJobCommand;
|
|
2461
2513
|
|
|
2462
2514
|
// src/commands/StartTranscriptionJobCommand.ts
|
|
2463
2515
|
|
|
2464
2516
|
|
|
2465
2517
|
|
|
2466
|
-
var
|
|
2518
|
+
var StartTranscriptionJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2467
2519
|
return [
|
|
2468
2520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2469
2521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2470
2522
|
];
|
|
2471
2523
|
}).s("Transcribe", "StartTranscriptionJob", {}).n("TranscribeClient", "StartTranscriptionJobCommand").f(void 0, void 0).ser(se_StartTranscriptionJobCommand).de(de_StartTranscriptionJobCommand).build() {
|
|
2524
|
+
static {
|
|
2525
|
+
__name(this, "StartTranscriptionJobCommand");
|
|
2526
|
+
}
|
|
2472
2527
|
};
|
|
2473
|
-
__name(_StartTranscriptionJobCommand, "StartTranscriptionJobCommand");
|
|
2474
|
-
var StartTranscriptionJobCommand = _StartTranscriptionJobCommand;
|
|
2475
2528
|
|
|
2476
2529
|
// src/commands/TagResourceCommand.ts
|
|
2477
2530
|
|
|
2478
2531
|
|
|
2479
2532
|
|
|
2480
|
-
var
|
|
2533
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2481
2534
|
return [
|
|
2482
2535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2483
2536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2484
2537
|
];
|
|
2485
2538
|
}).s("Transcribe", "TagResource", {}).n("TranscribeClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2539
|
+
static {
|
|
2540
|
+
__name(this, "TagResourceCommand");
|
|
2541
|
+
}
|
|
2486
2542
|
};
|
|
2487
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2488
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2489
2543
|
|
|
2490
2544
|
// src/commands/UntagResourceCommand.ts
|
|
2491
2545
|
|
|
2492
2546
|
|
|
2493
2547
|
|
|
2494
|
-
var
|
|
2548
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2495
2549
|
return [
|
|
2496
2550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2497
2551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2498
2552
|
];
|
|
2499
2553
|
}).s("Transcribe", "UntagResource", {}).n("TranscribeClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2554
|
+
static {
|
|
2555
|
+
__name(this, "UntagResourceCommand");
|
|
2556
|
+
}
|
|
2500
2557
|
};
|
|
2501
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2502
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2503
2558
|
|
|
2504
2559
|
// src/commands/UpdateCallAnalyticsCategoryCommand.ts
|
|
2505
2560
|
|
|
2506
2561
|
|
|
2507
2562
|
|
|
2508
|
-
var
|
|
2563
|
+
var UpdateCallAnalyticsCategoryCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2509
2564
|
return [
|
|
2510
2565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2511
2566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2512
2567
|
];
|
|
2513
2568
|
}).s("Transcribe", "UpdateCallAnalyticsCategory", {}).n("TranscribeClient", "UpdateCallAnalyticsCategoryCommand").f(void 0, void 0).ser(se_UpdateCallAnalyticsCategoryCommand).de(de_UpdateCallAnalyticsCategoryCommand).build() {
|
|
2569
|
+
static {
|
|
2570
|
+
__name(this, "UpdateCallAnalyticsCategoryCommand");
|
|
2571
|
+
}
|
|
2514
2572
|
};
|
|
2515
|
-
__name(_UpdateCallAnalyticsCategoryCommand, "UpdateCallAnalyticsCategoryCommand");
|
|
2516
|
-
var UpdateCallAnalyticsCategoryCommand = _UpdateCallAnalyticsCategoryCommand;
|
|
2517
2573
|
|
|
2518
2574
|
// src/commands/UpdateMedicalVocabularyCommand.ts
|
|
2519
2575
|
|
|
2520
2576
|
|
|
2521
2577
|
|
|
2522
|
-
var
|
|
2578
|
+
var UpdateMedicalVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2523
2579
|
return [
|
|
2524
2580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2525
2581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2526
2582
|
];
|
|
2527
2583
|
}).s("Transcribe", "UpdateMedicalVocabulary", {}).n("TranscribeClient", "UpdateMedicalVocabularyCommand").f(void 0, void 0).ser(se_UpdateMedicalVocabularyCommand).de(de_UpdateMedicalVocabularyCommand).build() {
|
|
2584
|
+
static {
|
|
2585
|
+
__name(this, "UpdateMedicalVocabularyCommand");
|
|
2586
|
+
}
|
|
2528
2587
|
};
|
|
2529
|
-
__name(_UpdateMedicalVocabularyCommand, "UpdateMedicalVocabularyCommand");
|
|
2530
|
-
var UpdateMedicalVocabularyCommand = _UpdateMedicalVocabularyCommand;
|
|
2531
2588
|
|
|
2532
2589
|
// src/commands/UpdateVocabularyCommand.ts
|
|
2533
2590
|
|
|
2534
2591
|
|
|
2535
2592
|
|
|
2536
|
-
var
|
|
2593
|
+
var UpdateVocabularyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2537
2594
|
return [
|
|
2538
2595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2539
2596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2540
2597
|
];
|
|
2541
2598
|
}).s("Transcribe", "UpdateVocabulary", {}).n("TranscribeClient", "UpdateVocabularyCommand").f(void 0, void 0).ser(se_UpdateVocabularyCommand).de(de_UpdateVocabularyCommand).build() {
|
|
2599
|
+
static {
|
|
2600
|
+
__name(this, "UpdateVocabularyCommand");
|
|
2601
|
+
}
|
|
2542
2602
|
};
|
|
2543
|
-
__name(_UpdateVocabularyCommand, "UpdateVocabularyCommand");
|
|
2544
|
-
var UpdateVocabularyCommand = _UpdateVocabularyCommand;
|
|
2545
2603
|
|
|
2546
2604
|
// src/commands/UpdateVocabularyFilterCommand.ts
|
|
2547
2605
|
|
|
2548
2606
|
|
|
2549
2607
|
|
|
2550
|
-
var
|
|
2608
|
+
var UpdateVocabularyFilterCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2551
2609
|
return [
|
|
2552
2610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2553
2611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2554
2612
|
];
|
|
2555
2613
|
}).s("Transcribe", "UpdateVocabularyFilter", {}).n("TranscribeClient", "UpdateVocabularyFilterCommand").f(void 0, void 0).ser(se_UpdateVocabularyFilterCommand).de(de_UpdateVocabularyFilterCommand).build() {
|
|
2614
|
+
static {
|
|
2615
|
+
__name(this, "UpdateVocabularyFilterCommand");
|
|
2616
|
+
}
|
|
2556
2617
|
};
|
|
2557
|
-
__name(_UpdateVocabularyFilterCommand, "UpdateVocabularyFilterCommand");
|
|
2558
|
-
var UpdateVocabularyFilterCommand = _UpdateVocabularyFilterCommand;
|
|
2559
2618
|
|
|
2560
2619
|
// src/Transcribe.ts
|
|
2561
2620
|
var commands = {
|
|
@@ -2603,10 +2662,11 @@ var commands = {
|
|
|
2603
2662
|
UpdateVocabularyCommand,
|
|
2604
2663
|
UpdateVocabularyFilterCommand
|
|
2605
2664
|
};
|
|
2606
|
-
var
|
|
2665
|
+
var Transcribe = class extends TranscribeClient {
|
|
2666
|
+
static {
|
|
2667
|
+
__name(this, "Transcribe");
|
|
2668
|
+
}
|
|
2607
2669
|
};
|
|
2608
|
-
__name(_Transcribe, "Transcribe");
|
|
2609
|
-
var Transcribe = _Transcribe;
|
|
2610
2670
|
(0, import_smithy_client.createAggregatedClient)(commands, Transcribe);
|
|
2611
2671
|
|
|
2612
2672
|
// src/pagination/ListCallAnalyticsCategoriesPaginator.ts
|