@aws-sdk/client-transcribe 3.948.0 → 3.953.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 +570 -383
- package/dist-cjs/runtimeConfig.shared.js +6 -6
- package/dist-es/commands/CreateCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/CreateLanguageModelCommand.js +2 -2
- package/dist-es/commands/CreateMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/CreateVocabularyCommand.js +2 -2
- package/dist-es/commands/CreateVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/DeleteCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/DeleteCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/DeleteLanguageModelCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/DeleteMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/DeleteTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/DeleteVocabularyCommand.js +2 -2
- package/dist-es/commands/DeleteVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/DescribeLanguageModelCommand.js +2 -2
- package/dist-es/commands/GetCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/GetCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/GetMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/GetTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/GetVocabularyCommand.js +2 -2
- package/dist-es/commands/GetVocabularyFilterCommand.js +2 -2
- package/dist-es/commands/ListCallAnalyticsCategoriesCommand.js +2 -2
- package/dist-es/commands/ListCallAnalyticsJobsCommand.js +2 -2
- package/dist-es/commands/ListLanguageModelsCommand.js +2 -2
- package/dist-es/commands/ListMedicalScribeJobsCommand.js +2 -2
- package/dist-es/commands/ListMedicalTranscriptionJobsCommand.js +2 -2
- package/dist-es/commands/ListMedicalVocabulariesCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTranscriptionJobsCommand.js +2 -2
- package/dist-es/commands/ListVocabulariesCommand.js +2 -2
- package/dist-es/commands/ListVocabularyFiltersCommand.js +2 -2
- package/dist-es/commands/StartCallAnalyticsJobCommand.js +2 -2
- package/dist-es/commands/StartMedicalScribeJobCommand.js +2 -2
- package/dist-es/commands/StartMedicalTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/StartTranscriptionJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateCallAnalyticsCategoryCommand.js +2 -2
- package/dist-es/commands/UpdateMedicalVocabularyCommand.js +2 -2
- package/dist-es/commands/UpdateVocabularyCommand.js +2 -2
- package/dist-es/commands/UpdateVocabularyFilterCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -6
- package/dist-es/schemas/schemas_0.js +351 -337
- package/dist-types/TranscribeClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +174 -203
- package/dist-types/ts3.4/TranscribeClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +173 -205
- package/package.json +34 -34
|
@@ -26,12 +26,12 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.transcribe",
|
|
32
|
+
version: "2017-10-26",
|
|
33
|
+
serviceTarget: "Transcribe",
|
|
34
|
+
},
|
|
35
35
|
serviceId: config?.serviceId ?? "Transcribe",
|
|
36
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
37
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateCallAnalyticsCategory } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateCallAnalyticsCategory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateCallAnalyticsCategoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateCallAnalyticsCategoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "CreateCallAnalyticsCategory", {})
|
|
13
13
|
.n("TranscribeClient", "CreateCallAnalyticsCategoryCommand")
|
|
14
|
-
.sc(CreateCallAnalyticsCategory)
|
|
14
|
+
.sc(CreateCallAnalyticsCategory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateLanguageModel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLanguageModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLanguageModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLanguageModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "CreateLanguageModel", {})
|
|
13
13
|
.n("TranscribeClient", "CreateLanguageModelCommand")
|
|
14
|
-
.sc(CreateLanguageModel)
|
|
14
|
+
.sc(CreateLanguageModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateMedicalVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateMedicalVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateMedicalVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateMedicalVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "CreateMedicalVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "CreateMedicalVocabularyCommand")
|
|
14
|
-
.sc(CreateMedicalVocabulary)
|
|
14
|
+
.sc(CreateMedicalVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "CreateVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "CreateVocabularyCommand")
|
|
14
|
-
.sc(CreateVocabulary)
|
|
14
|
+
.sc(CreateVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateVocabularyFilter } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVocabularyFilter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVocabularyFilterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVocabularyFilterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "CreateVocabularyFilter", {})
|
|
13
13
|
.n("TranscribeClient", "CreateVocabularyFilterCommand")
|
|
14
|
-
.sc(CreateVocabularyFilter)
|
|
14
|
+
.sc(CreateVocabularyFilter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCallAnalyticsCategory } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCallAnalyticsCategory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCallAnalyticsCategoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCallAnalyticsCategoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteCallAnalyticsCategory", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteCallAnalyticsCategoryCommand")
|
|
14
|
-
.sc(DeleteCallAnalyticsCategory)
|
|
14
|
+
.sc(DeleteCallAnalyticsCategory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCallAnalyticsJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCallAnalyticsJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCallAnalyticsJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCallAnalyticsJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteCallAnalyticsJob", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteCallAnalyticsJobCommand")
|
|
14
|
-
.sc(DeleteCallAnalyticsJob)
|
|
14
|
+
.sc(DeleteCallAnalyticsJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLanguageModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLanguageModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLanguageModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLanguageModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteLanguageModel", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteLanguageModelCommand")
|
|
14
|
-
.sc(DeleteLanguageModel)
|
|
14
|
+
.sc(DeleteLanguageModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMedicalScribeJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMedicalScribeJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMedicalScribeJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMedicalScribeJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteMedicalScribeJob", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteMedicalScribeJobCommand")
|
|
14
|
-
.sc(DeleteMedicalScribeJob)
|
|
14
|
+
.sc(DeleteMedicalScribeJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMedicalTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMedicalTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMedicalTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMedicalTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteMedicalTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteMedicalTranscriptionJobCommand")
|
|
14
|
-
.sc(DeleteMedicalTranscriptionJob)
|
|
14
|
+
.sc(DeleteMedicalTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMedicalVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMedicalVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMedicalVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMedicalVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteMedicalVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteMedicalVocabularyCommand")
|
|
14
|
-
.sc(DeleteMedicalVocabulary)
|
|
14
|
+
.sc(DeleteMedicalVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteTranscriptionJobCommand")
|
|
14
|
-
.sc(DeleteTranscriptionJob)
|
|
14
|
+
.sc(DeleteTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteVocabularyCommand")
|
|
14
|
-
.sc(DeleteVocabulary)
|
|
14
|
+
.sc(DeleteVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVocabularyFilter } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVocabularyFilter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVocabularyFilterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVocabularyFilterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DeleteVocabularyFilter", {})
|
|
13
13
|
.n("TranscribeClient", "DeleteVocabularyFilterCommand")
|
|
14
|
-
.sc(DeleteVocabularyFilter)
|
|
14
|
+
.sc(DeleteVocabularyFilter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeLanguageModel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLanguageModel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLanguageModelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLanguageModelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "DescribeLanguageModel", {})
|
|
13
13
|
.n("TranscribeClient", "DescribeLanguageModelCommand")
|
|
14
|
-
.sc(DescribeLanguageModel)
|
|
14
|
+
.sc(DescribeLanguageModel$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCallAnalyticsCategory } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCallAnalyticsCategory$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCallAnalyticsCategoryCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCallAnalyticsCategoryCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetCallAnalyticsCategory", {})
|
|
13
13
|
.n("TranscribeClient", "GetCallAnalyticsCategoryCommand")
|
|
14
|
-
.sc(GetCallAnalyticsCategory)
|
|
14
|
+
.sc(GetCallAnalyticsCategory$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCallAnalyticsJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCallAnalyticsJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCallAnalyticsJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCallAnalyticsJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetCallAnalyticsJob", {})
|
|
13
13
|
.n("TranscribeClient", "GetCallAnalyticsJobCommand")
|
|
14
|
-
.sc(GetCallAnalyticsJob)
|
|
14
|
+
.sc(GetCallAnalyticsJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMedicalScribeJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMedicalScribeJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMedicalScribeJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMedicalScribeJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetMedicalScribeJob", {})
|
|
13
13
|
.n("TranscribeClient", "GetMedicalScribeJobCommand")
|
|
14
|
-
.sc(GetMedicalScribeJob)
|
|
14
|
+
.sc(GetMedicalScribeJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMedicalTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMedicalTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMedicalTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMedicalTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetMedicalTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "GetMedicalTranscriptionJobCommand")
|
|
14
|
-
.sc(GetMedicalTranscriptionJob)
|
|
14
|
+
.sc(GetMedicalTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMedicalVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMedicalVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMedicalVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMedicalVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetMedicalVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "GetMedicalVocabularyCommand")
|
|
14
|
-
.sc(GetMedicalVocabulary)
|
|
14
|
+
.sc(GetMedicalVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTranscriptionJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTranscriptionJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTranscriptionJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTranscriptionJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetTranscriptionJob", {})
|
|
13
13
|
.n("TranscribeClient", "GetTranscriptionJobCommand")
|
|
14
|
-
.sc(GetTranscriptionJob)
|
|
14
|
+
.sc(GetTranscriptionJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVocabulary } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVocabulary$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVocabularyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVocabularyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetVocabulary", {})
|
|
13
13
|
.n("TranscribeClient", "GetVocabularyCommand")
|
|
14
|
-
.sc(GetVocabulary)
|
|
14
|
+
.sc(GetVocabulary$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVocabularyFilter } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVocabularyFilter$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVocabularyFilterCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVocabularyFilterCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "GetVocabularyFilter", {})
|
|
13
13
|
.n("TranscribeClient", "GetVocabularyFilterCommand")
|
|
14
|
-
.sc(GetVocabularyFilter)
|
|
14
|
+
.sc(GetVocabularyFilter$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCallAnalyticsCategories } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCallAnalyticsCategories$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCallAnalyticsCategoriesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCallAnalyticsCategoriesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListCallAnalyticsCategories", {})
|
|
13
13
|
.n("TranscribeClient", "ListCallAnalyticsCategoriesCommand")
|
|
14
|
-
.sc(ListCallAnalyticsCategories)
|
|
14
|
+
.sc(ListCallAnalyticsCategories$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListCallAnalyticsJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListCallAnalyticsJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListCallAnalyticsJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListCallAnalyticsJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListCallAnalyticsJobs", {})
|
|
13
13
|
.n("TranscribeClient", "ListCallAnalyticsJobsCommand")
|
|
14
|
-
.sc(ListCallAnalyticsJobs)
|
|
14
|
+
.sc(ListCallAnalyticsJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListLanguageModels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLanguageModels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLanguageModelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLanguageModelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListLanguageModels", {})
|
|
13
13
|
.n("TranscribeClient", "ListLanguageModelsCommand")
|
|
14
|
-
.sc(ListLanguageModels)
|
|
14
|
+
.sc(ListLanguageModels$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMedicalScribeJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMedicalScribeJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMedicalScribeJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMedicalScribeJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListMedicalScribeJobs", {})
|
|
13
13
|
.n("TranscribeClient", "ListMedicalScribeJobsCommand")
|
|
14
|
-
.sc(ListMedicalScribeJobs)
|
|
14
|
+
.sc(ListMedicalScribeJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMedicalTranscriptionJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMedicalTranscriptionJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMedicalTranscriptionJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMedicalTranscriptionJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListMedicalTranscriptionJobs", {})
|
|
13
13
|
.n("TranscribeClient", "ListMedicalTranscriptionJobsCommand")
|
|
14
|
-
.sc(ListMedicalTranscriptionJobs)
|
|
14
|
+
.sc(ListMedicalTranscriptionJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListMedicalVocabularies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListMedicalVocabularies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListMedicalVocabulariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListMedicalVocabulariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListMedicalVocabularies", {})
|
|
13
13
|
.n("TranscribeClient", "ListMedicalVocabulariesCommand")
|
|
14
|
-
.sc(ListMedicalVocabularies)
|
|
14
|
+
.sc(ListMedicalVocabularies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListTagsForResource", {})
|
|
13
13
|
.n("TranscribeClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTranscriptionJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTranscriptionJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTranscriptionJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTranscriptionJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListTranscriptionJobs", {})
|
|
13
13
|
.n("TranscribeClient", "ListTranscriptionJobsCommand")
|
|
14
|
-
.sc(ListTranscriptionJobs)
|
|
14
|
+
.sc(ListTranscriptionJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVocabularies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVocabularies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVocabulariesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVocabulariesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListVocabularies", {})
|
|
13
13
|
.n("TranscribeClient", "ListVocabulariesCommand")
|
|
14
|
-
.sc(ListVocabularies)
|
|
14
|
+
.sc(ListVocabularies$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVocabularyFilters } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVocabularyFilters$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVocabularyFiltersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVocabularyFiltersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "ListVocabularyFilters", {})
|
|
13
13
|
.n("TranscribeClient", "ListVocabularyFiltersCommand")
|
|
14
|
-
.sc(ListVocabularyFilters)
|
|
14
|
+
.sc(ListVocabularyFilters$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartCallAnalyticsJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartCallAnalyticsJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartCallAnalyticsJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartCallAnalyticsJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "StartCallAnalyticsJob", {})
|
|
13
13
|
.n("TranscribeClient", "StartCallAnalyticsJobCommand")
|
|
14
|
-
.sc(StartCallAnalyticsJob)
|
|
14
|
+
.sc(StartCallAnalyticsJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartMedicalScribeJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartMedicalScribeJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartMedicalScribeJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartMedicalScribeJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("Transcribe", "StartMedicalScribeJob", {})
|
|
13
13
|
.n("TranscribeClient", "StartMedicalScribeJobCommand")
|
|
14
|
-
.sc(StartMedicalScribeJob)
|
|
14
|
+
.sc(StartMedicalScribeJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|