@aws-sdk/client-transcribe 3.489.0 → 3.495.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/Transcribe.js +1 -97
- package/dist-cjs/TranscribeClient.js +1 -43
- package/dist-cjs/commands/CreateCallAnalyticsCategoryCommand.js +1 -28
- package/dist-cjs/commands/CreateLanguageModelCommand.js +1 -28
- package/dist-cjs/commands/CreateMedicalVocabularyCommand.js +1 -28
- package/dist-cjs/commands/CreateVocabularyCommand.js +1 -28
- package/dist-cjs/commands/CreateVocabularyFilterCommand.js +1 -28
- package/dist-cjs/commands/DeleteCallAnalyticsCategoryCommand.js +1 -28
- package/dist-cjs/commands/DeleteCallAnalyticsJobCommand.js +1 -28
- package/dist-cjs/commands/DeleteLanguageModelCommand.js +1 -28
- package/dist-cjs/commands/DeleteMedicalScribeJobCommand.js +1 -28
- package/dist-cjs/commands/DeleteMedicalTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/DeleteMedicalVocabularyCommand.js +1 -28
- package/dist-cjs/commands/DeleteTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/DeleteVocabularyCommand.js +1 -28
- package/dist-cjs/commands/DeleteVocabularyFilterCommand.js +1 -28
- package/dist-cjs/commands/DescribeLanguageModelCommand.js +1 -28
- package/dist-cjs/commands/GetCallAnalyticsCategoryCommand.js +1 -28
- package/dist-cjs/commands/GetCallAnalyticsJobCommand.js +1 -28
- package/dist-cjs/commands/GetMedicalScribeJobCommand.js +1 -28
- package/dist-cjs/commands/GetMedicalTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/GetMedicalVocabularyCommand.js +1 -28
- package/dist-cjs/commands/GetTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/GetVocabularyCommand.js +1 -28
- package/dist-cjs/commands/GetVocabularyFilterCommand.js +1 -28
- package/dist-cjs/commands/ListCallAnalyticsCategoriesCommand.js +1 -28
- package/dist-cjs/commands/ListCallAnalyticsJobsCommand.js +1 -28
- package/dist-cjs/commands/ListLanguageModelsCommand.js +1 -28
- package/dist-cjs/commands/ListMedicalScribeJobsCommand.js +1 -28
- package/dist-cjs/commands/ListMedicalTranscriptionJobsCommand.js +1 -28
- package/dist-cjs/commands/ListMedicalVocabulariesCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListTranscriptionJobsCommand.js +1 -28
- package/dist-cjs/commands/ListVocabulariesCommand.js +1 -28
- package/dist-cjs/commands/ListVocabularyFiltersCommand.js +1 -28
- package/dist-cjs/commands/StartCallAnalyticsJobCommand.js +1 -28
- package/dist-cjs/commands/StartMedicalScribeJobCommand.js +1 -28
- package/dist-cjs/commands/StartMedicalTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/StartTranscriptionJobCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateCallAnalyticsCategoryCommand.js +1 -28
- package/dist-cjs/commands/UpdateMedicalVocabularyCommand.js +1 -28
- package/dist-cjs/commands/UpdateVocabularyCommand.js +1 -28
- package/dist-cjs/commands/UpdateVocabularyFilterCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -46
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +3990 -11
- package/dist-cjs/models/TranscribeServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -315
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListCallAnalyticsCategoriesPaginator.js +1 -7
- package/dist-cjs/pagination/ListCallAnalyticsJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListLanguageModelsPaginator.js +1 -7
- package/dist-cjs/pagination/ListMedicalScribeJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListMedicalTranscriptionJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListMedicalVocabulariesPaginator.js +1 -7
- package/dist-cjs/pagination/ListTranscriptionJobsPaginator.js +1 -7
- package/dist-cjs/pagination/ListVocabulariesPaginator.js +1 -7
- package/dist-cjs/pagination/ListVocabularyFiltersPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -13
- package/dist-cjs/protocols/Aws_json1_1.js +1 -2635
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
package/dist-cjs/Transcribe.js
CHANGED
|
@@ -1,97 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.Transcribe = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const CreateCallAnalyticsCategoryCommand_1 = require("./commands/CreateCallAnalyticsCategoryCommand");
|
|
6
|
-
const CreateLanguageModelCommand_1 = require("./commands/CreateLanguageModelCommand");
|
|
7
|
-
const CreateMedicalVocabularyCommand_1 = require("./commands/CreateMedicalVocabularyCommand");
|
|
8
|
-
const CreateVocabularyCommand_1 = require("./commands/CreateVocabularyCommand");
|
|
9
|
-
const CreateVocabularyFilterCommand_1 = require("./commands/CreateVocabularyFilterCommand");
|
|
10
|
-
const DeleteCallAnalyticsCategoryCommand_1 = require("./commands/DeleteCallAnalyticsCategoryCommand");
|
|
11
|
-
const DeleteCallAnalyticsJobCommand_1 = require("./commands/DeleteCallAnalyticsJobCommand");
|
|
12
|
-
const DeleteLanguageModelCommand_1 = require("./commands/DeleteLanguageModelCommand");
|
|
13
|
-
const DeleteMedicalScribeJobCommand_1 = require("./commands/DeleteMedicalScribeJobCommand");
|
|
14
|
-
const DeleteMedicalTranscriptionJobCommand_1 = require("./commands/DeleteMedicalTranscriptionJobCommand");
|
|
15
|
-
const DeleteMedicalVocabularyCommand_1 = require("./commands/DeleteMedicalVocabularyCommand");
|
|
16
|
-
const DeleteTranscriptionJobCommand_1 = require("./commands/DeleteTranscriptionJobCommand");
|
|
17
|
-
const DeleteVocabularyCommand_1 = require("./commands/DeleteVocabularyCommand");
|
|
18
|
-
const DeleteVocabularyFilterCommand_1 = require("./commands/DeleteVocabularyFilterCommand");
|
|
19
|
-
const DescribeLanguageModelCommand_1 = require("./commands/DescribeLanguageModelCommand");
|
|
20
|
-
const GetCallAnalyticsCategoryCommand_1 = require("./commands/GetCallAnalyticsCategoryCommand");
|
|
21
|
-
const GetCallAnalyticsJobCommand_1 = require("./commands/GetCallAnalyticsJobCommand");
|
|
22
|
-
const GetMedicalScribeJobCommand_1 = require("./commands/GetMedicalScribeJobCommand");
|
|
23
|
-
const GetMedicalTranscriptionJobCommand_1 = require("./commands/GetMedicalTranscriptionJobCommand");
|
|
24
|
-
const GetMedicalVocabularyCommand_1 = require("./commands/GetMedicalVocabularyCommand");
|
|
25
|
-
const GetTranscriptionJobCommand_1 = require("./commands/GetTranscriptionJobCommand");
|
|
26
|
-
const GetVocabularyCommand_1 = require("./commands/GetVocabularyCommand");
|
|
27
|
-
const GetVocabularyFilterCommand_1 = require("./commands/GetVocabularyFilterCommand");
|
|
28
|
-
const ListCallAnalyticsCategoriesCommand_1 = require("./commands/ListCallAnalyticsCategoriesCommand");
|
|
29
|
-
const ListCallAnalyticsJobsCommand_1 = require("./commands/ListCallAnalyticsJobsCommand");
|
|
30
|
-
const ListLanguageModelsCommand_1 = require("./commands/ListLanguageModelsCommand");
|
|
31
|
-
const ListMedicalScribeJobsCommand_1 = require("./commands/ListMedicalScribeJobsCommand");
|
|
32
|
-
const ListMedicalTranscriptionJobsCommand_1 = require("./commands/ListMedicalTranscriptionJobsCommand");
|
|
33
|
-
const ListMedicalVocabulariesCommand_1 = require("./commands/ListMedicalVocabulariesCommand");
|
|
34
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
35
|
-
const ListTranscriptionJobsCommand_1 = require("./commands/ListTranscriptionJobsCommand");
|
|
36
|
-
const ListVocabulariesCommand_1 = require("./commands/ListVocabulariesCommand");
|
|
37
|
-
const ListVocabularyFiltersCommand_1 = require("./commands/ListVocabularyFiltersCommand");
|
|
38
|
-
const StartCallAnalyticsJobCommand_1 = require("./commands/StartCallAnalyticsJobCommand");
|
|
39
|
-
const StartMedicalScribeJobCommand_1 = require("./commands/StartMedicalScribeJobCommand");
|
|
40
|
-
const StartMedicalTranscriptionJobCommand_1 = require("./commands/StartMedicalTranscriptionJobCommand");
|
|
41
|
-
const StartTranscriptionJobCommand_1 = require("./commands/StartTranscriptionJobCommand");
|
|
42
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
43
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
44
|
-
const UpdateCallAnalyticsCategoryCommand_1 = require("./commands/UpdateCallAnalyticsCategoryCommand");
|
|
45
|
-
const UpdateMedicalVocabularyCommand_1 = require("./commands/UpdateMedicalVocabularyCommand");
|
|
46
|
-
const UpdateVocabularyCommand_1 = require("./commands/UpdateVocabularyCommand");
|
|
47
|
-
const UpdateVocabularyFilterCommand_1 = require("./commands/UpdateVocabularyFilterCommand");
|
|
48
|
-
const TranscribeClient_1 = require("./TranscribeClient");
|
|
49
|
-
const commands = {
|
|
50
|
-
CreateCallAnalyticsCategoryCommand: CreateCallAnalyticsCategoryCommand_1.CreateCallAnalyticsCategoryCommand,
|
|
51
|
-
CreateLanguageModelCommand: CreateLanguageModelCommand_1.CreateLanguageModelCommand,
|
|
52
|
-
CreateMedicalVocabularyCommand: CreateMedicalVocabularyCommand_1.CreateMedicalVocabularyCommand,
|
|
53
|
-
CreateVocabularyCommand: CreateVocabularyCommand_1.CreateVocabularyCommand,
|
|
54
|
-
CreateVocabularyFilterCommand: CreateVocabularyFilterCommand_1.CreateVocabularyFilterCommand,
|
|
55
|
-
DeleteCallAnalyticsCategoryCommand: DeleteCallAnalyticsCategoryCommand_1.DeleteCallAnalyticsCategoryCommand,
|
|
56
|
-
DeleteCallAnalyticsJobCommand: DeleteCallAnalyticsJobCommand_1.DeleteCallAnalyticsJobCommand,
|
|
57
|
-
DeleteLanguageModelCommand: DeleteLanguageModelCommand_1.DeleteLanguageModelCommand,
|
|
58
|
-
DeleteMedicalScribeJobCommand: DeleteMedicalScribeJobCommand_1.DeleteMedicalScribeJobCommand,
|
|
59
|
-
DeleteMedicalTranscriptionJobCommand: DeleteMedicalTranscriptionJobCommand_1.DeleteMedicalTranscriptionJobCommand,
|
|
60
|
-
DeleteMedicalVocabularyCommand: DeleteMedicalVocabularyCommand_1.DeleteMedicalVocabularyCommand,
|
|
61
|
-
DeleteTranscriptionJobCommand: DeleteTranscriptionJobCommand_1.DeleteTranscriptionJobCommand,
|
|
62
|
-
DeleteVocabularyCommand: DeleteVocabularyCommand_1.DeleteVocabularyCommand,
|
|
63
|
-
DeleteVocabularyFilterCommand: DeleteVocabularyFilterCommand_1.DeleteVocabularyFilterCommand,
|
|
64
|
-
DescribeLanguageModelCommand: DescribeLanguageModelCommand_1.DescribeLanguageModelCommand,
|
|
65
|
-
GetCallAnalyticsCategoryCommand: GetCallAnalyticsCategoryCommand_1.GetCallAnalyticsCategoryCommand,
|
|
66
|
-
GetCallAnalyticsJobCommand: GetCallAnalyticsJobCommand_1.GetCallAnalyticsJobCommand,
|
|
67
|
-
GetMedicalScribeJobCommand: GetMedicalScribeJobCommand_1.GetMedicalScribeJobCommand,
|
|
68
|
-
GetMedicalTranscriptionJobCommand: GetMedicalTranscriptionJobCommand_1.GetMedicalTranscriptionJobCommand,
|
|
69
|
-
GetMedicalVocabularyCommand: GetMedicalVocabularyCommand_1.GetMedicalVocabularyCommand,
|
|
70
|
-
GetTranscriptionJobCommand: GetTranscriptionJobCommand_1.GetTranscriptionJobCommand,
|
|
71
|
-
GetVocabularyCommand: GetVocabularyCommand_1.GetVocabularyCommand,
|
|
72
|
-
GetVocabularyFilterCommand: GetVocabularyFilterCommand_1.GetVocabularyFilterCommand,
|
|
73
|
-
ListCallAnalyticsCategoriesCommand: ListCallAnalyticsCategoriesCommand_1.ListCallAnalyticsCategoriesCommand,
|
|
74
|
-
ListCallAnalyticsJobsCommand: ListCallAnalyticsJobsCommand_1.ListCallAnalyticsJobsCommand,
|
|
75
|
-
ListLanguageModelsCommand: ListLanguageModelsCommand_1.ListLanguageModelsCommand,
|
|
76
|
-
ListMedicalScribeJobsCommand: ListMedicalScribeJobsCommand_1.ListMedicalScribeJobsCommand,
|
|
77
|
-
ListMedicalTranscriptionJobsCommand: ListMedicalTranscriptionJobsCommand_1.ListMedicalTranscriptionJobsCommand,
|
|
78
|
-
ListMedicalVocabulariesCommand: ListMedicalVocabulariesCommand_1.ListMedicalVocabulariesCommand,
|
|
79
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
80
|
-
ListTranscriptionJobsCommand: ListTranscriptionJobsCommand_1.ListTranscriptionJobsCommand,
|
|
81
|
-
ListVocabulariesCommand: ListVocabulariesCommand_1.ListVocabulariesCommand,
|
|
82
|
-
ListVocabularyFiltersCommand: ListVocabularyFiltersCommand_1.ListVocabularyFiltersCommand,
|
|
83
|
-
StartCallAnalyticsJobCommand: StartCallAnalyticsJobCommand_1.StartCallAnalyticsJobCommand,
|
|
84
|
-
StartMedicalScribeJobCommand: StartMedicalScribeJobCommand_1.StartMedicalScribeJobCommand,
|
|
85
|
-
StartMedicalTranscriptionJobCommand: StartMedicalTranscriptionJobCommand_1.StartMedicalTranscriptionJobCommand,
|
|
86
|
-
StartTranscriptionJobCommand: StartTranscriptionJobCommand_1.StartTranscriptionJobCommand,
|
|
87
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
88
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
89
|
-
UpdateCallAnalyticsCategoryCommand: UpdateCallAnalyticsCategoryCommand_1.UpdateCallAnalyticsCategoryCommand,
|
|
90
|
-
UpdateMedicalVocabularyCommand: UpdateMedicalVocabularyCommand_1.UpdateMedicalVocabularyCommand,
|
|
91
|
-
UpdateVocabularyCommand: UpdateVocabularyCommand_1.UpdateVocabularyCommand,
|
|
92
|
-
UpdateVocabularyFilterCommand: UpdateVocabularyFilterCommand_1.UpdateVocabularyFilterCommand,
|
|
93
|
-
};
|
|
94
|
-
class Transcribe extends TranscribeClient_1.TranscribeClient {
|
|
95
|
-
}
|
|
96
|
-
exports.Transcribe = Transcribe;
|
|
97
|
-
(0, smithy_client_1.createAggregatedClient)(commands, Transcribe);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.TranscribeClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class TranscribeClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.TranscribeClient = TranscribeClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateCallAnalyticsCategoryCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateCallAnalyticsCategoryCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "CreateCallAnalyticsCategory", {})
|
|
22
|
-
.n("TranscribeClient", "CreateCallAnalyticsCategoryCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateCallAnalyticsCategoryCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateCallAnalyticsCategoryCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateCallAnalyticsCategoryCommand = CreateCallAnalyticsCategoryCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLanguageModelCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLanguageModelCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "CreateLanguageModel", {})
|
|
22
|
-
.n("TranscribeClient", "CreateLanguageModelCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLanguageModelCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLanguageModelCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLanguageModelCommand = CreateLanguageModelCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateMedicalVocabularyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateMedicalVocabularyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "CreateMedicalVocabulary", {})
|
|
22
|
-
.n("TranscribeClient", "CreateMedicalVocabularyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateMedicalVocabularyCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateMedicalVocabularyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateMedicalVocabularyCommand = CreateMedicalVocabularyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateVocabularyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateVocabularyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "CreateVocabulary", {})
|
|
22
|
-
.n("TranscribeClient", "CreateVocabularyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateVocabularyCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateVocabularyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateVocabularyCommand = CreateVocabularyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateVocabularyFilterCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateVocabularyFilterCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "CreateVocabularyFilter", {})
|
|
22
|
-
.n("TranscribeClient", "CreateVocabularyFilterCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateVocabularyFilterCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateVocabularyFilterCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateVocabularyFilterCommand = CreateVocabularyFilterCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCallAnalyticsCategoryCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteCallAnalyticsCategoryCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteCallAnalyticsCategory", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteCallAnalyticsCategoryCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteCallAnalyticsCategoryCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteCallAnalyticsCategoryCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCallAnalyticsCategoryCommand = DeleteCallAnalyticsCategoryCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteCallAnalyticsJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteCallAnalyticsJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteCallAnalyticsJob", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteCallAnalyticsJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteCallAnalyticsJobCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteCallAnalyticsJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteCallAnalyticsJobCommand = DeleteCallAnalyticsJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteLanguageModelCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteLanguageModelCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteLanguageModel", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteLanguageModelCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteLanguageModelCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteLanguageModelCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteLanguageModelCommand = DeleteLanguageModelCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteMedicalScribeJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteMedicalScribeJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteMedicalScribeJob", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteMedicalScribeJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteMedicalScribeJobCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteMedicalScribeJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteMedicalScribeJobCommand = DeleteMedicalScribeJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteMedicalTranscriptionJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteMedicalTranscriptionJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteMedicalTranscriptionJob", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteMedicalTranscriptionJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteMedicalTranscriptionJobCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteMedicalTranscriptionJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteMedicalTranscriptionJobCommand = DeleteMedicalTranscriptionJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteMedicalVocabularyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteMedicalVocabularyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteMedicalVocabulary", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteMedicalVocabularyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteMedicalVocabularyCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteMedicalVocabularyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteMedicalVocabularyCommand = DeleteMedicalVocabularyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteTranscriptionJobCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteTranscriptionJobCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteTranscriptionJob", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteTranscriptionJobCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteTranscriptionJobCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteTranscriptionJobCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteTranscriptionJobCommand = DeleteTranscriptionJobCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteVocabularyCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteVocabularyCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteVocabulary", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteVocabularyCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteVocabularyCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteVocabularyCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteVocabularyCommand = DeleteVocabularyCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteVocabularyFilterCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteVocabularyFilterCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DeleteVocabularyFilter", {})
|
|
22
|
-
.n("TranscribeClient", "DeleteVocabularyFilterCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteVocabularyFilterCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteVocabularyFilterCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteVocabularyFilterCommand = DeleteVocabularyFilterCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeLanguageModelCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeLanguageModelCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "DescribeLanguageModel", {})
|
|
22
|
-
.n("TranscribeClient", "DescribeLanguageModelCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeLanguageModelCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeLanguageModelCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeLanguageModelCommand = DescribeLanguageModelCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.GetCallAnalyticsCategoryCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class GetCallAnalyticsCategoryCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("Transcribe", "GetCallAnalyticsCategory", {})
|
|
22
|
-
.n("TranscribeClient", "GetCallAnalyticsCategoryCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_GetCallAnalyticsCategoryCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_GetCallAnalyticsCategoryCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.GetCallAnalyticsCategoryCommand = GetCallAnalyticsCategoryCommand;
|
|
1
|
+
module.exports = require("../index.js");
|