@aws-sdk/client-transcribe 3.169.0 → 3.170.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/Transcribe.d.ts +706 -200
- package/dist-types/ts3.4/TranscribeClient.d.ts +363 -112
- package/dist-types/ts3.4/commands/CreateCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateLanguageModelCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/CreateMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateVocabularyFilterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCallAnalyticsJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteLanguageModelCommand.d.ts +33 -17
- package/dist-types/ts3.4/commands/DeleteMedicalTranscriptionJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteMedicalVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteTranscriptionJobCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/DeleteVocabularyFilterCommand.d.ts +36 -17
- package/dist-types/ts3.4/commands/DescribeLanguageModelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetCallAnalyticsJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetMedicalTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetTranscriptionJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetVocabularyFilterCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsCategoriesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListCallAnalyticsJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListLanguageModelsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListMedicalTranscriptionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListMedicalVocabulariesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTranscriptionJobsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListVocabulariesCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListVocabularyFiltersCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartCallAnalyticsJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartMedicalTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/StartTranscriptionJobCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateCallAnalyticsCategoryCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateMedicalVocabularyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateVocabularyFilterCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +39 -39
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/TranscribeServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1553 -1452
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListCallAnalyticsCategoriesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListCallAnalyticsJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListLanguageModelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMedicalTranscriptionJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListMedicalVocabulariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListTranscriptionJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVocabulariesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListVocabularyFiltersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +9 -9
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +473 -119
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateMedicalVocabularyRequest,
|
|
10
|
+
UpdateMedicalVocabularyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface UpdateMedicalVocabularyCommandInput
|
|
18
|
+
extends UpdateMedicalVocabularyRequest {}
|
|
19
|
+
export interface UpdateMedicalVocabularyCommandOutput
|
|
20
|
+
extends UpdateMedicalVocabularyResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateMedicalVocabularyCommand extends $Command<
|
|
24
|
+
UpdateMedicalVocabularyCommandInput,
|
|
25
|
+
UpdateMedicalVocabularyCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateMedicalVocabularyCommandInput;
|
|
29
|
+
constructor(input: UpdateMedicalVocabularyCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateMedicalVocabularyCommandInput,
|
|
37
|
+
UpdateMedicalVocabularyCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateVocabularyRequest,
|
|
10
|
+
UpdateVocabularyResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface UpdateVocabularyCommandInput extends UpdateVocabularyRequest {}
|
|
18
|
+
export interface UpdateVocabularyCommandOutput
|
|
19
|
+
extends UpdateVocabularyResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class UpdateVocabularyCommand extends $Command<
|
|
23
|
+
UpdateVocabularyCommandInput,
|
|
24
|
+
UpdateVocabularyCommandOutput,
|
|
25
|
+
TranscribeClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: UpdateVocabularyCommandInput;
|
|
28
|
+
constructor(input: UpdateVocabularyCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: TranscribeClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<UpdateVocabularyCommandInput, UpdateVocabularyCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,41 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
UpdateVocabularyFilterRequest,
|
|
10
|
+
UpdateVocabularyFilterResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
ServiceInputTypes,
|
|
14
|
+
ServiceOutputTypes,
|
|
15
|
+
TranscribeClientResolvedConfig,
|
|
16
|
+
} from "../TranscribeClient";
|
|
17
|
+
export interface UpdateVocabularyFilterCommandInput
|
|
18
|
+
extends UpdateVocabularyFilterRequest {}
|
|
19
|
+
export interface UpdateVocabularyFilterCommandOutput
|
|
20
|
+
extends UpdateVocabularyFilterResponse,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class UpdateVocabularyFilterCommand extends $Command<
|
|
24
|
+
UpdateVocabularyFilterCommandInput,
|
|
25
|
+
UpdateVocabularyFilterCommandOutput,
|
|
26
|
+
TranscribeClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: UpdateVocabularyFilterCommandInput;
|
|
29
|
+
constructor(input: UpdateVocabularyFilterCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TranscribeClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<
|
|
36
|
+
UpdateVocabularyFilterCommandInput,
|
|
37
|
+
UpdateVocabularyFilterCommandOutput
|
|
38
|
+
>;
|
|
39
|
+
private serialize;
|
|
40
|
+
private deserialize;
|
|
41
|
+
}
|
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
export * from "./CreateCallAnalyticsCategoryCommand";
|
|
2
|
-
export * from "./CreateLanguageModelCommand";
|
|
3
|
-
export * from "./CreateMedicalVocabularyCommand";
|
|
4
|
-
export * from "./CreateVocabularyCommand";
|
|
5
|
-
export * from "./CreateVocabularyFilterCommand";
|
|
6
|
-
export * from "./DeleteCallAnalyticsCategoryCommand";
|
|
7
|
-
export * from "./DeleteCallAnalyticsJobCommand";
|
|
8
|
-
export * from "./DeleteLanguageModelCommand";
|
|
9
|
-
export * from "./DeleteMedicalTranscriptionJobCommand";
|
|
10
|
-
export * from "./DeleteMedicalVocabularyCommand";
|
|
11
|
-
export * from "./DeleteTranscriptionJobCommand";
|
|
12
|
-
export * from "./DeleteVocabularyCommand";
|
|
13
|
-
export * from "./DeleteVocabularyFilterCommand";
|
|
14
|
-
export * from "./DescribeLanguageModelCommand";
|
|
15
|
-
export * from "./GetCallAnalyticsCategoryCommand";
|
|
16
|
-
export * from "./GetCallAnalyticsJobCommand";
|
|
17
|
-
export * from "./GetMedicalTranscriptionJobCommand";
|
|
18
|
-
export * from "./GetMedicalVocabularyCommand";
|
|
19
|
-
export * from "./GetTranscriptionJobCommand";
|
|
20
|
-
export * from "./GetVocabularyCommand";
|
|
21
|
-
export * from "./GetVocabularyFilterCommand";
|
|
22
|
-
export * from "./ListCallAnalyticsCategoriesCommand";
|
|
23
|
-
export * from "./ListCallAnalyticsJobsCommand";
|
|
24
|
-
export * from "./ListLanguageModelsCommand";
|
|
25
|
-
export * from "./ListMedicalTranscriptionJobsCommand";
|
|
26
|
-
export * from "./ListMedicalVocabulariesCommand";
|
|
27
|
-
export * from "./ListTagsForResourceCommand";
|
|
28
|
-
export * from "./ListTranscriptionJobsCommand";
|
|
29
|
-
export * from "./ListVocabulariesCommand";
|
|
30
|
-
export * from "./ListVocabularyFiltersCommand";
|
|
31
|
-
export * from "./StartCallAnalyticsJobCommand";
|
|
32
|
-
export * from "./StartMedicalTranscriptionJobCommand";
|
|
33
|
-
export * from "./StartTranscriptionJobCommand";
|
|
34
|
-
export * from "./TagResourceCommand";
|
|
35
|
-
export * from "./UntagResourceCommand";
|
|
36
|
-
export * from "./UpdateCallAnalyticsCategoryCommand";
|
|
37
|
-
export * from "./UpdateMedicalVocabularyCommand";
|
|
38
|
-
export * from "./UpdateVocabularyCommand";
|
|
39
|
-
export * from "./UpdateVocabularyFilterCommand";
|
|
1
|
+
export * from "./CreateCallAnalyticsCategoryCommand";
|
|
2
|
+
export * from "./CreateLanguageModelCommand";
|
|
3
|
+
export * from "./CreateMedicalVocabularyCommand";
|
|
4
|
+
export * from "./CreateVocabularyCommand";
|
|
5
|
+
export * from "./CreateVocabularyFilterCommand";
|
|
6
|
+
export * from "./DeleteCallAnalyticsCategoryCommand";
|
|
7
|
+
export * from "./DeleteCallAnalyticsJobCommand";
|
|
8
|
+
export * from "./DeleteLanguageModelCommand";
|
|
9
|
+
export * from "./DeleteMedicalTranscriptionJobCommand";
|
|
10
|
+
export * from "./DeleteMedicalVocabularyCommand";
|
|
11
|
+
export * from "./DeleteTranscriptionJobCommand";
|
|
12
|
+
export * from "./DeleteVocabularyCommand";
|
|
13
|
+
export * from "./DeleteVocabularyFilterCommand";
|
|
14
|
+
export * from "./DescribeLanguageModelCommand";
|
|
15
|
+
export * from "./GetCallAnalyticsCategoryCommand";
|
|
16
|
+
export * from "./GetCallAnalyticsJobCommand";
|
|
17
|
+
export * from "./GetMedicalTranscriptionJobCommand";
|
|
18
|
+
export * from "./GetMedicalVocabularyCommand";
|
|
19
|
+
export * from "./GetTranscriptionJobCommand";
|
|
20
|
+
export * from "./GetVocabularyCommand";
|
|
21
|
+
export * from "./GetVocabularyFilterCommand";
|
|
22
|
+
export * from "./ListCallAnalyticsCategoriesCommand";
|
|
23
|
+
export * from "./ListCallAnalyticsJobsCommand";
|
|
24
|
+
export * from "./ListLanguageModelsCommand";
|
|
25
|
+
export * from "./ListMedicalTranscriptionJobsCommand";
|
|
26
|
+
export * from "./ListMedicalVocabulariesCommand";
|
|
27
|
+
export * from "./ListTagsForResourceCommand";
|
|
28
|
+
export * from "./ListTranscriptionJobsCommand";
|
|
29
|
+
export * from "./ListVocabulariesCommand";
|
|
30
|
+
export * from "./ListVocabularyFiltersCommand";
|
|
31
|
+
export * from "./StartCallAnalyticsJobCommand";
|
|
32
|
+
export * from "./StartMedicalTranscriptionJobCommand";
|
|
33
|
+
export * from "./StartTranscriptionJobCommand";
|
|
34
|
+
export * from "./TagResourceCommand";
|
|
35
|
+
export * from "./UntagResourceCommand";
|
|
36
|
+
export * from "./UpdateCallAnalyticsCategoryCommand";
|
|
37
|
+
export * from "./UpdateMedicalVocabularyCommand";
|
|
38
|
+
export * from "./UpdateVocabularyCommand";
|
|
39
|
+
export * from "./UpdateVocabularyFilterCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./Transcribe";
|
|
2
|
-
export * from "./TranscribeClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { TranscribeServiceException } from "./models/TranscribeServiceException";
|
|
1
|
+
export * from "./Transcribe";
|
|
2
|
+
export * from "./TranscribeClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { TranscribeServiceException } from "./models/TranscribeServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class TranscribeServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|