@aws-sdk/client-textract 3.427.0 → 3.429.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/README.md +103 -7
- package/dist-cjs/Textract.js +24 -0
- package/dist-cjs/commands/CreateAdapterCommand.js +51 -0
- package/dist-cjs/commands/CreateAdapterVersionCommand.js +51 -0
- package/dist-cjs/commands/DeleteAdapterCommand.js +51 -0
- package/dist-cjs/commands/DeleteAdapterVersionCommand.js +51 -0
- package/dist-cjs/commands/GetAdapterCommand.js +51 -0
- package/dist-cjs/commands/GetAdapterVersionCommand.js +51 -0
- package/dist-cjs/commands/ListAdapterVersionsCommand.js +51 -0
- package/dist-cjs/commands/ListAdaptersCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
- package/dist-cjs/commands/TagResourceCommand.js +51 -0
- package/dist-cjs/commands/UntagResourceCommand.js +51 -0
- package/dist-cjs/commands/UpdateAdapterCommand.js +51 -0
- package/dist-cjs/commands/index.js +12 -0
- package/dist-cjs/index.js +1 -0
- package/dist-cjs/models/models_0.js +92 -21
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListAdapterVersionsPaginator.js +29 -0
- package/dist-cjs/pagination/ListAdaptersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_json1_1.js +951 -40
- package/dist-es/Textract.js +24 -0
- package/dist-es/commands/CreateAdapterCommand.js +47 -0
- package/dist-es/commands/CreateAdapterVersionCommand.js +47 -0
- package/dist-es/commands/DeleteAdapterCommand.js +47 -0
- package/dist-es/commands/DeleteAdapterVersionCommand.js +47 -0
- package/dist-es/commands/GetAdapterCommand.js +47 -0
- package/dist-es/commands/GetAdapterVersionCommand.js +47 -0
- package/dist-es/commands/ListAdapterVersionsCommand.js +47 -0
- package/dist-es/commands/ListAdaptersCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
- package/dist-es/commands/TagResourceCommand.js +47 -0
- package/dist-es/commands/UntagResourceCommand.js +47 -0
- package/dist-es/commands/UpdateAdapterCommand.js +47 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +84 -17
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListAdapterVersionsPaginator.js +25 -0
- package/dist-es/pagination/ListAdaptersPaginator.js +25 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_json1_1.js +927 -40
- package/dist-types/Textract.d.ts +84 -0
- package/dist-types/TextractClient.d.ts +14 -2
- package/dist-types/commands/AnalyzeDocumentCommand.d.ts +11 -0
- package/dist-types/commands/CreateAdapterCommand.d.ts +128 -0
- package/dist-types/commands/CreateAdapterVersionCommand.d.ts +148 -0
- package/dist-types/commands/DeleteAdapterCommand.d.ts +101 -0
- package/dist-types/commands/DeleteAdapterVersionCommand.d.ts +103 -0
- package/dist-types/commands/GetAdapterCommand.d.ts +111 -0
- package/dist-types/commands/GetAdapterVersionCommand.d.ts +140 -0
- package/dist-types/commands/ListAdapterVersionsCommand.d.ts +116 -0
- package/dist-types/commands/ListAdaptersCommand.d.ts +110 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +102 -0
- package/dist-types/commands/StartDocumentAnalysisCommand.d.ts +11 -0
- package/dist-types/commands/TagResourceCommand.d.ts +104 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +101 -0
- package/dist-types/commands/UpdateAdapterCommand.d.ts +114 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1002 -187
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListAdapterVersionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListAdaptersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +108 -0
- package/dist-types/ts3.4/Textract.d.ts +204 -0
- package/dist-types/ts3.4/TextractClient.d.ts +74 -2
- package/dist-types/ts3.4/commands/CreateAdapterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateAdapterVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DeleteAdapterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/DeleteAdapterVersionCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/GetAdapterCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetAdapterVersionCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAdapterVersionsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListAdaptersCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateAdapterCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +252 -55
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListAdapterVersionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListAdaptersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +144 -0
- package/package.json +34 -32
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAdapterVersionsCommandInput, ListAdapterVersionsCommandOutput } from "../commands/ListAdapterVersionsCommand";
|
|
3
|
+
import { TextractPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAdapterVersions(config: TextractPaginationConfiguration, input: ListAdapterVersionsCommandInput, ...additionalArguments: any): Paginator<ListAdapterVersionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListAdaptersCommandInput, ListAdaptersCommandOutput } from "../commands/ListAdaptersCommand";
|
|
3
|
+
import { TextractPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare function paginateListAdapters(config: TextractPaginationConfiguration, input: ListAdaptersCommandInput, ...additionalArguments: any): Paginator<ListAdaptersCommandOutput>;
|
|
@@ -3,16 +3,28 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
|
3
3
|
import { AnalyzeDocumentCommandInput, AnalyzeDocumentCommandOutput } from "../commands/AnalyzeDocumentCommand";
|
|
4
4
|
import { AnalyzeExpenseCommandInput, AnalyzeExpenseCommandOutput } from "../commands/AnalyzeExpenseCommand";
|
|
5
5
|
import { AnalyzeIDCommandInput, AnalyzeIDCommandOutput } from "../commands/AnalyzeIDCommand";
|
|
6
|
+
import { CreateAdapterCommandInput, CreateAdapterCommandOutput } from "../commands/CreateAdapterCommand";
|
|
7
|
+
import { CreateAdapterVersionCommandInput, CreateAdapterVersionCommandOutput } from "../commands/CreateAdapterVersionCommand";
|
|
8
|
+
import { DeleteAdapterCommandInput, DeleteAdapterCommandOutput } from "../commands/DeleteAdapterCommand";
|
|
9
|
+
import { DeleteAdapterVersionCommandInput, DeleteAdapterVersionCommandOutput } from "../commands/DeleteAdapterVersionCommand";
|
|
6
10
|
import { DetectDocumentTextCommandInput, DetectDocumentTextCommandOutput } from "../commands/DetectDocumentTextCommand";
|
|
11
|
+
import { GetAdapterCommandInput, GetAdapterCommandOutput } from "../commands/GetAdapterCommand";
|
|
12
|
+
import { GetAdapterVersionCommandInput, GetAdapterVersionCommandOutput } from "../commands/GetAdapterVersionCommand";
|
|
7
13
|
import { GetDocumentAnalysisCommandInput, GetDocumentAnalysisCommandOutput } from "../commands/GetDocumentAnalysisCommand";
|
|
8
14
|
import { GetDocumentTextDetectionCommandInput, GetDocumentTextDetectionCommandOutput } from "../commands/GetDocumentTextDetectionCommand";
|
|
9
15
|
import { GetExpenseAnalysisCommandInput, GetExpenseAnalysisCommandOutput } from "../commands/GetExpenseAnalysisCommand";
|
|
10
16
|
import { GetLendingAnalysisCommandInput, GetLendingAnalysisCommandOutput } from "../commands/GetLendingAnalysisCommand";
|
|
11
17
|
import { GetLendingAnalysisSummaryCommandInput, GetLendingAnalysisSummaryCommandOutput } from "../commands/GetLendingAnalysisSummaryCommand";
|
|
18
|
+
import { ListAdaptersCommandInput, ListAdaptersCommandOutput } from "../commands/ListAdaptersCommand";
|
|
19
|
+
import { ListAdapterVersionsCommandInput, ListAdapterVersionsCommandOutput } from "../commands/ListAdapterVersionsCommand";
|
|
20
|
+
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
12
21
|
import { StartDocumentAnalysisCommandInput, StartDocumentAnalysisCommandOutput } from "../commands/StartDocumentAnalysisCommand";
|
|
13
22
|
import { StartDocumentTextDetectionCommandInput, StartDocumentTextDetectionCommandOutput } from "../commands/StartDocumentTextDetectionCommand";
|
|
14
23
|
import { StartExpenseAnalysisCommandInput, StartExpenseAnalysisCommandOutput } from "../commands/StartExpenseAnalysisCommand";
|
|
15
24
|
import { StartLendingAnalysisCommandInput, StartLendingAnalysisCommandOutput } from "../commands/StartLendingAnalysisCommand";
|
|
25
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
26
|
+
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
27
|
+
import { UpdateAdapterCommandInput, UpdateAdapterCommandOutput } from "../commands/UpdateAdapterCommand";
|
|
16
28
|
/**
|
|
17
29
|
* serializeAws_json1_1AnalyzeDocumentCommand
|
|
18
30
|
*/
|
|
@@ -25,10 +37,34 @@ export declare const se_AnalyzeExpenseCommand: (input: AnalyzeExpenseCommandInpu
|
|
|
25
37
|
* serializeAws_json1_1AnalyzeIDCommand
|
|
26
38
|
*/
|
|
27
39
|
export declare const se_AnalyzeIDCommand: (input: AnalyzeIDCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
|
+
/**
|
|
41
|
+
* serializeAws_json1_1CreateAdapterCommand
|
|
42
|
+
*/
|
|
43
|
+
export declare const se_CreateAdapterCommand: (input: CreateAdapterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
|
+
/**
|
|
45
|
+
* serializeAws_json1_1CreateAdapterVersionCommand
|
|
46
|
+
*/
|
|
47
|
+
export declare const se_CreateAdapterVersionCommand: (input: CreateAdapterVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* serializeAws_json1_1DeleteAdapterCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const se_DeleteAdapterCommand: (input: DeleteAdapterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_json1_1DeleteAdapterVersionCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_DeleteAdapterVersionCommand: (input: DeleteAdapterVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
28
56
|
/**
|
|
29
57
|
* serializeAws_json1_1DetectDocumentTextCommand
|
|
30
58
|
*/
|
|
31
59
|
export declare const se_DetectDocumentTextCommand: (input: DetectDocumentTextCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
60
|
+
/**
|
|
61
|
+
* serializeAws_json1_1GetAdapterCommand
|
|
62
|
+
*/
|
|
63
|
+
export declare const se_GetAdapterCommand: (input: GetAdapterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_json1_1GetAdapterVersionCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_GetAdapterVersionCommand: (input: GetAdapterVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
68
|
/**
|
|
33
69
|
* serializeAws_json1_1GetDocumentAnalysisCommand
|
|
34
70
|
*/
|
|
@@ -49,6 +85,18 @@ export declare const se_GetLendingAnalysisCommand: (input: GetLendingAnalysisCom
|
|
|
49
85
|
* serializeAws_json1_1GetLendingAnalysisSummaryCommand
|
|
50
86
|
*/
|
|
51
87
|
export declare const se_GetLendingAnalysisSummaryCommand: (input: GetLendingAnalysisSummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
88
|
+
/**
|
|
89
|
+
* serializeAws_json1_1ListAdaptersCommand
|
|
90
|
+
*/
|
|
91
|
+
export declare const se_ListAdaptersCommand: (input: ListAdaptersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
92
|
+
/**
|
|
93
|
+
* serializeAws_json1_1ListAdapterVersionsCommand
|
|
94
|
+
*/
|
|
95
|
+
export declare const se_ListAdapterVersionsCommand: (input: ListAdapterVersionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
96
|
+
/**
|
|
97
|
+
* serializeAws_json1_1ListTagsForResourceCommand
|
|
98
|
+
*/
|
|
99
|
+
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
100
|
/**
|
|
53
101
|
* serializeAws_json1_1StartDocumentAnalysisCommand
|
|
54
102
|
*/
|
|
@@ -65,6 +113,18 @@ export declare const se_StartExpenseAnalysisCommand: (input: StartExpenseAnalysi
|
|
|
65
113
|
* serializeAws_json1_1StartLendingAnalysisCommand
|
|
66
114
|
*/
|
|
67
115
|
export declare const se_StartLendingAnalysisCommand: (input: StartLendingAnalysisCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
116
|
+
/**
|
|
117
|
+
* serializeAws_json1_1TagResourceCommand
|
|
118
|
+
*/
|
|
119
|
+
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
120
|
+
/**
|
|
121
|
+
* serializeAws_json1_1UntagResourceCommand
|
|
122
|
+
*/
|
|
123
|
+
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
124
|
+
/**
|
|
125
|
+
* serializeAws_json1_1UpdateAdapterCommand
|
|
126
|
+
*/
|
|
127
|
+
export declare const se_UpdateAdapterCommand: (input: UpdateAdapterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
68
128
|
/**
|
|
69
129
|
* deserializeAws_json1_1AnalyzeDocumentCommand
|
|
70
130
|
*/
|
|
@@ -77,10 +137,34 @@ export declare const de_AnalyzeExpenseCommand: (output: __HttpResponse, context:
|
|
|
77
137
|
* deserializeAws_json1_1AnalyzeIDCommand
|
|
78
138
|
*/
|
|
79
139
|
export declare const de_AnalyzeIDCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AnalyzeIDCommandOutput>;
|
|
140
|
+
/**
|
|
141
|
+
* deserializeAws_json1_1CreateAdapterCommand
|
|
142
|
+
*/
|
|
143
|
+
export declare const de_CreateAdapterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAdapterCommandOutput>;
|
|
144
|
+
/**
|
|
145
|
+
* deserializeAws_json1_1CreateAdapterVersionCommand
|
|
146
|
+
*/
|
|
147
|
+
export declare const de_CreateAdapterVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAdapterVersionCommandOutput>;
|
|
148
|
+
/**
|
|
149
|
+
* deserializeAws_json1_1DeleteAdapterCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const de_DeleteAdapterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAdapterCommandOutput>;
|
|
152
|
+
/**
|
|
153
|
+
* deserializeAws_json1_1DeleteAdapterVersionCommand
|
|
154
|
+
*/
|
|
155
|
+
export declare const de_DeleteAdapterVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAdapterVersionCommandOutput>;
|
|
80
156
|
/**
|
|
81
157
|
* deserializeAws_json1_1DetectDocumentTextCommand
|
|
82
158
|
*/
|
|
83
159
|
export declare const de_DetectDocumentTextCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DetectDocumentTextCommandOutput>;
|
|
160
|
+
/**
|
|
161
|
+
* deserializeAws_json1_1GetAdapterCommand
|
|
162
|
+
*/
|
|
163
|
+
export declare const de_GetAdapterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdapterCommandOutput>;
|
|
164
|
+
/**
|
|
165
|
+
* deserializeAws_json1_1GetAdapterVersionCommand
|
|
166
|
+
*/
|
|
167
|
+
export declare const de_GetAdapterVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAdapterVersionCommandOutput>;
|
|
84
168
|
/**
|
|
85
169
|
* deserializeAws_json1_1GetDocumentAnalysisCommand
|
|
86
170
|
*/
|
|
@@ -101,6 +185,18 @@ export declare const de_GetLendingAnalysisCommand: (output: __HttpResponse, cont
|
|
|
101
185
|
* deserializeAws_json1_1GetLendingAnalysisSummaryCommand
|
|
102
186
|
*/
|
|
103
187
|
export declare const de_GetLendingAnalysisSummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetLendingAnalysisSummaryCommandOutput>;
|
|
188
|
+
/**
|
|
189
|
+
* deserializeAws_json1_1ListAdaptersCommand
|
|
190
|
+
*/
|
|
191
|
+
export declare const de_ListAdaptersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAdaptersCommandOutput>;
|
|
192
|
+
/**
|
|
193
|
+
* deserializeAws_json1_1ListAdapterVersionsCommand
|
|
194
|
+
*/
|
|
195
|
+
export declare const de_ListAdapterVersionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAdapterVersionsCommandOutput>;
|
|
196
|
+
/**
|
|
197
|
+
* deserializeAws_json1_1ListTagsForResourceCommand
|
|
198
|
+
*/
|
|
199
|
+
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
104
200
|
/**
|
|
105
201
|
* deserializeAws_json1_1StartDocumentAnalysisCommand
|
|
106
202
|
*/
|
|
@@ -117,3 +213,15 @@ export declare const de_StartExpenseAnalysisCommand: (output: __HttpResponse, co
|
|
|
117
213
|
* deserializeAws_json1_1StartLendingAnalysisCommand
|
|
118
214
|
*/
|
|
119
215
|
export declare const de_StartLendingAnalysisCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartLendingAnalysisCommandOutput>;
|
|
216
|
+
/**
|
|
217
|
+
* deserializeAws_json1_1TagResourceCommand
|
|
218
|
+
*/
|
|
219
|
+
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
220
|
+
/**
|
|
221
|
+
* deserializeAws_json1_1UntagResourceCommand
|
|
222
|
+
*/
|
|
223
|
+
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
224
|
+
/**
|
|
225
|
+
* deserializeAws_json1_1UpdateAdapterCommand
|
|
226
|
+
*/
|
|
227
|
+
export declare const de_UpdateAdapterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateAdapterCommandOutput>;
|
|
@@ -11,10 +11,34 @@ import {
|
|
|
11
11
|
AnalyzeIDCommandInput,
|
|
12
12
|
AnalyzeIDCommandOutput,
|
|
13
13
|
} from "./commands/AnalyzeIDCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAdapterCommandInput,
|
|
16
|
+
CreateAdapterCommandOutput,
|
|
17
|
+
} from "./commands/CreateAdapterCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateAdapterVersionCommandInput,
|
|
20
|
+
CreateAdapterVersionCommandOutput,
|
|
21
|
+
} from "./commands/CreateAdapterVersionCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteAdapterCommandInput,
|
|
24
|
+
DeleteAdapterCommandOutput,
|
|
25
|
+
} from "./commands/DeleteAdapterCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteAdapterVersionCommandInput,
|
|
28
|
+
DeleteAdapterVersionCommandOutput,
|
|
29
|
+
} from "./commands/DeleteAdapterVersionCommand";
|
|
14
30
|
import {
|
|
15
31
|
DetectDocumentTextCommandInput,
|
|
16
32
|
DetectDocumentTextCommandOutput,
|
|
17
33
|
} from "./commands/DetectDocumentTextCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetAdapterCommandInput,
|
|
36
|
+
GetAdapterCommandOutput,
|
|
37
|
+
} from "./commands/GetAdapterCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetAdapterVersionCommandInput,
|
|
40
|
+
GetAdapterVersionCommandOutput,
|
|
41
|
+
} from "./commands/GetAdapterVersionCommand";
|
|
18
42
|
import {
|
|
19
43
|
GetDocumentAnalysisCommandInput,
|
|
20
44
|
GetDocumentAnalysisCommandOutput,
|
|
@@ -35,6 +59,18 @@ import {
|
|
|
35
59
|
GetLendingAnalysisSummaryCommandInput,
|
|
36
60
|
GetLendingAnalysisSummaryCommandOutput,
|
|
37
61
|
} from "./commands/GetLendingAnalysisSummaryCommand";
|
|
62
|
+
import {
|
|
63
|
+
ListAdaptersCommandInput,
|
|
64
|
+
ListAdaptersCommandOutput,
|
|
65
|
+
} from "./commands/ListAdaptersCommand";
|
|
66
|
+
import {
|
|
67
|
+
ListAdapterVersionsCommandInput,
|
|
68
|
+
ListAdapterVersionsCommandOutput,
|
|
69
|
+
} from "./commands/ListAdapterVersionsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListTagsForResourceCommandInput,
|
|
72
|
+
ListTagsForResourceCommandOutput,
|
|
73
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
38
74
|
import {
|
|
39
75
|
StartDocumentAnalysisCommandInput,
|
|
40
76
|
StartDocumentAnalysisCommandOutput,
|
|
@@ -51,6 +87,18 @@ import {
|
|
|
51
87
|
StartLendingAnalysisCommandInput,
|
|
52
88
|
StartLendingAnalysisCommandOutput,
|
|
53
89
|
} from "./commands/StartLendingAnalysisCommand";
|
|
90
|
+
import {
|
|
91
|
+
TagResourceCommandInput,
|
|
92
|
+
TagResourceCommandOutput,
|
|
93
|
+
} from "./commands/TagResourceCommand";
|
|
94
|
+
import {
|
|
95
|
+
UntagResourceCommandInput,
|
|
96
|
+
UntagResourceCommandOutput,
|
|
97
|
+
} from "./commands/UntagResourceCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateAdapterCommandInput,
|
|
100
|
+
UpdateAdapterCommandOutput,
|
|
101
|
+
} from "./commands/UpdateAdapterCommand";
|
|
54
102
|
import { TextractClient } from "./TextractClient";
|
|
55
103
|
export interface Textract {
|
|
56
104
|
analyzeDocument(
|
|
@@ -92,6 +140,58 @@ export interface Textract {
|
|
|
92
140
|
options: __HttpHandlerOptions,
|
|
93
141
|
cb: (err: any, data?: AnalyzeIDCommandOutput) => void
|
|
94
142
|
): void;
|
|
143
|
+
createAdapter(
|
|
144
|
+
args: CreateAdapterCommandInput,
|
|
145
|
+
options?: __HttpHandlerOptions
|
|
146
|
+
): Promise<CreateAdapterCommandOutput>;
|
|
147
|
+
createAdapter(
|
|
148
|
+
args: CreateAdapterCommandInput,
|
|
149
|
+
cb: (err: any, data?: CreateAdapterCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
createAdapter(
|
|
152
|
+
args: CreateAdapterCommandInput,
|
|
153
|
+
options: __HttpHandlerOptions,
|
|
154
|
+
cb: (err: any, data?: CreateAdapterCommandOutput) => void
|
|
155
|
+
): void;
|
|
156
|
+
createAdapterVersion(
|
|
157
|
+
args: CreateAdapterVersionCommandInput,
|
|
158
|
+
options?: __HttpHandlerOptions
|
|
159
|
+
): Promise<CreateAdapterVersionCommandOutput>;
|
|
160
|
+
createAdapterVersion(
|
|
161
|
+
args: CreateAdapterVersionCommandInput,
|
|
162
|
+
cb: (err: any, data?: CreateAdapterVersionCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
createAdapterVersion(
|
|
165
|
+
args: CreateAdapterVersionCommandInput,
|
|
166
|
+
options: __HttpHandlerOptions,
|
|
167
|
+
cb: (err: any, data?: CreateAdapterVersionCommandOutput) => void
|
|
168
|
+
): void;
|
|
169
|
+
deleteAdapter(
|
|
170
|
+
args: DeleteAdapterCommandInput,
|
|
171
|
+
options?: __HttpHandlerOptions
|
|
172
|
+
): Promise<DeleteAdapterCommandOutput>;
|
|
173
|
+
deleteAdapter(
|
|
174
|
+
args: DeleteAdapterCommandInput,
|
|
175
|
+
cb: (err: any, data?: DeleteAdapterCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
deleteAdapter(
|
|
178
|
+
args: DeleteAdapterCommandInput,
|
|
179
|
+
options: __HttpHandlerOptions,
|
|
180
|
+
cb: (err: any, data?: DeleteAdapterCommandOutput) => void
|
|
181
|
+
): void;
|
|
182
|
+
deleteAdapterVersion(
|
|
183
|
+
args: DeleteAdapterVersionCommandInput,
|
|
184
|
+
options?: __HttpHandlerOptions
|
|
185
|
+
): Promise<DeleteAdapterVersionCommandOutput>;
|
|
186
|
+
deleteAdapterVersion(
|
|
187
|
+
args: DeleteAdapterVersionCommandInput,
|
|
188
|
+
cb: (err: any, data?: DeleteAdapterVersionCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
deleteAdapterVersion(
|
|
191
|
+
args: DeleteAdapterVersionCommandInput,
|
|
192
|
+
options: __HttpHandlerOptions,
|
|
193
|
+
cb: (err: any, data?: DeleteAdapterVersionCommandOutput) => void
|
|
194
|
+
): void;
|
|
95
195
|
detectDocumentText(
|
|
96
196
|
args: DetectDocumentTextCommandInput,
|
|
97
197
|
options?: __HttpHandlerOptions
|
|
@@ -105,6 +205,32 @@ export interface Textract {
|
|
|
105
205
|
options: __HttpHandlerOptions,
|
|
106
206
|
cb: (err: any, data?: DetectDocumentTextCommandOutput) => void
|
|
107
207
|
): void;
|
|
208
|
+
getAdapter(
|
|
209
|
+
args: GetAdapterCommandInput,
|
|
210
|
+
options?: __HttpHandlerOptions
|
|
211
|
+
): Promise<GetAdapterCommandOutput>;
|
|
212
|
+
getAdapter(
|
|
213
|
+
args: GetAdapterCommandInput,
|
|
214
|
+
cb: (err: any, data?: GetAdapterCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
getAdapter(
|
|
217
|
+
args: GetAdapterCommandInput,
|
|
218
|
+
options: __HttpHandlerOptions,
|
|
219
|
+
cb: (err: any, data?: GetAdapterCommandOutput) => void
|
|
220
|
+
): void;
|
|
221
|
+
getAdapterVersion(
|
|
222
|
+
args: GetAdapterVersionCommandInput,
|
|
223
|
+
options?: __HttpHandlerOptions
|
|
224
|
+
): Promise<GetAdapterVersionCommandOutput>;
|
|
225
|
+
getAdapterVersion(
|
|
226
|
+
args: GetAdapterVersionCommandInput,
|
|
227
|
+
cb: (err: any, data?: GetAdapterVersionCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
getAdapterVersion(
|
|
230
|
+
args: GetAdapterVersionCommandInput,
|
|
231
|
+
options: __HttpHandlerOptions,
|
|
232
|
+
cb: (err: any, data?: GetAdapterVersionCommandOutput) => void
|
|
233
|
+
): void;
|
|
108
234
|
getDocumentAnalysis(
|
|
109
235
|
args: GetDocumentAnalysisCommandInput,
|
|
110
236
|
options?: __HttpHandlerOptions
|
|
@@ -170,6 +296,45 @@ export interface Textract {
|
|
|
170
296
|
options: __HttpHandlerOptions,
|
|
171
297
|
cb: (err: any, data?: GetLendingAnalysisSummaryCommandOutput) => void
|
|
172
298
|
): void;
|
|
299
|
+
listAdapters(
|
|
300
|
+
args: ListAdaptersCommandInput,
|
|
301
|
+
options?: __HttpHandlerOptions
|
|
302
|
+
): Promise<ListAdaptersCommandOutput>;
|
|
303
|
+
listAdapters(
|
|
304
|
+
args: ListAdaptersCommandInput,
|
|
305
|
+
cb: (err: any, data?: ListAdaptersCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
listAdapters(
|
|
308
|
+
args: ListAdaptersCommandInput,
|
|
309
|
+
options: __HttpHandlerOptions,
|
|
310
|
+
cb: (err: any, data?: ListAdaptersCommandOutput) => void
|
|
311
|
+
): void;
|
|
312
|
+
listAdapterVersions(
|
|
313
|
+
args: ListAdapterVersionsCommandInput,
|
|
314
|
+
options?: __HttpHandlerOptions
|
|
315
|
+
): Promise<ListAdapterVersionsCommandOutput>;
|
|
316
|
+
listAdapterVersions(
|
|
317
|
+
args: ListAdapterVersionsCommandInput,
|
|
318
|
+
cb: (err: any, data?: ListAdapterVersionsCommandOutput) => void
|
|
319
|
+
): void;
|
|
320
|
+
listAdapterVersions(
|
|
321
|
+
args: ListAdapterVersionsCommandInput,
|
|
322
|
+
options: __HttpHandlerOptions,
|
|
323
|
+
cb: (err: any, data?: ListAdapterVersionsCommandOutput) => void
|
|
324
|
+
): void;
|
|
325
|
+
listTagsForResource(
|
|
326
|
+
args: ListTagsForResourceCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
329
|
+
listTagsForResource(
|
|
330
|
+
args: ListTagsForResourceCommandInput,
|
|
331
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
listTagsForResource(
|
|
334
|
+
args: ListTagsForResourceCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
337
|
+
): void;
|
|
173
338
|
startDocumentAnalysis(
|
|
174
339
|
args: StartDocumentAnalysisCommandInput,
|
|
175
340
|
options?: __HttpHandlerOptions
|
|
@@ -222,5 +387,44 @@ export interface Textract {
|
|
|
222
387
|
options: __HttpHandlerOptions,
|
|
223
388
|
cb: (err: any, data?: StartLendingAnalysisCommandOutput) => void
|
|
224
389
|
): void;
|
|
390
|
+
tagResource(
|
|
391
|
+
args: TagResourceCommandInput,
|
|
392
|
+
options?: __HttpHandlerOptions
|
|
393
|
+
): Promise<TagResourceCommandOutput>;
|
|
394
|
+
tagResource(
|
|
395
|
+
args: TagResourceCommandInput,
|
|
396
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
397
|
+
): void;
|
|
398
|
+
tagResource(
|
|
399
|
+
args: TagResourceCommandInput,
|
|
400
|
+
options: __HttpHandlerOptions,
|
|
401
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
402
|
+
): void;
|
|
403
|
+
untagResource(
|
|
404
|
+
args: UntagResourceCommandInput,
|
|
405
|
+
options?: __HttpHandlerOptions
|
|
406
|
+
): Promise<UntagResourceCommandOutput>;
|
|
407
|
+
untagResource(
|
|
408
|
+
args: UntagResourceCommandInput,
|
|
409
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
410
|
+
): void;
|
|
411
|
+
untagResource(
|
|
412
|
+
args: UntagResourceCommandInput,
|
|
413
|
+
options: __HttpHandlerOptions,
|
|
414
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
415
|
+
): void;
|
|
416
|
+
updateAdapter(
|
|
417
|
+
args: UpdateAdapterCommandInput,
|
|
418
|
+
options?: __HttpHandlerOptions
|
|
419
|
+
): Promise<UpdateAdapterCommandOutput>;
|
|
420
|
+
updateAdapter(
|
|
421
|
+
args: UpdateAdapterCommandInput,
|
|
422
|
+
cb: (err: any, data?: UpdateAdapterCommandOutput) => void
|
|
423
|
+
): void;
|
|
424
|
+
updateAdapter(
|
|
425
|
+
args: UpdateAdapterCommandInput,
|
|
426
|
+
options: __HttpHandlerOptions,
|
|
427
|
+
cb: (err: any, data?: UpdateAdapterCommandOutput) => void
|
|
428
|
+
): void;
|
|
225
429
|
}
|
|
226
430
|
export declare class Textract extends TextractClient implements Textract {}
|
|
@@ -57,10 +57,34 @@ import {
|
|
|
57
57
|
AnalyzeIDCommandInput,
|
|
58
58
|
AnalyzeIDCommandOutput,
|
|
59
59
|
} from "./commands/AnalyzeIDCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateAdapterCommandInput,
|
|
62
|
+
CreateAdapterCommandOutput,
|
|
63
|
+
} from "./commands/CreateAdapterCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateAdapterVersionCommandInput,
|
|
66
|
+
CreateAdapterVersionCommandOutput,
|
|
67
|
+
} from "./commands/CreateAdapterVersionCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeleteAdapterCommandInput,
|
|
70
|
+
DeleteAdapterCommandOutput,
|
|
71
|
+
} from "./commands/DeleteAdapterCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteAdapterVersionCommandInput,
|
|
74
|
+
DeleteAdapterVersionCommandOutput,
|
|
75
|
+
} from "./commands/DeleteAdapterVersionCommand";
|
|
60
76
|
import {
|
|
61
77
|
DetectDocumentTextCommandInput,
|
|
62
78
|
DetectDocumentTextCommandOutput,
|
|
63
79
|
} from "./commands/DetectDocumentTextCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetAdapterCommandInput,
|
|
82
|
+
GetAdapterCommandOutput,
|
|
83
|
+
} from "./commands/GetAdapterCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetAdapterVersionCommandInput,
|
|
86
|
+
GetAdapterVersionCommandOutput,
|
|
87
|
+
} from "./commands/GetAdapterVersionCommand";
|
|
64
88
|
import {
|
|
65
89
|
GetDocumentAnalysisCommandInput,
|
|
66
90
|
GetDocumentAnalysisCommandOutput,
|
|
@@ -81,6 +105,18 @@ import {
|
|
|
81
105
|
GetLendingAnalysisSummaryCommandInput,
|
|
82
106
|
GetLendingAnalysisSummaryCommandOutput,
|
|
83
107
|
} from "./commands/GetLendingAnalysisSummaryCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListAdaptersCommandInput,
|
|
110
|
+
ListAdaptersCommandOutput,
|
|
111
|
+
} from "./commands/ListAdaptersCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListAdapterVersionsCommandInput,
|
|
114
|
+
ListAdapterVersionsCommandOutput,
|
|
115
|
+
} from "./commands/ListAdapterVersionsCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListTagsForResourceCommandInput,
|
|
118
|
+
ListTagsForResourceCommandOutput,
|
|
119
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
84
120
|
import {
|
|
85
121
|
StartDocumentAnalysisCommandInput,
|
|
86
122
|
StartDocumentAnalysisCommandOutput,
|
|
@@ -97,6 +133,18 @@ import {
|
|
|
97
133
|
StartLendingAnalysisCommandInput,
|
|
98
134
|
StartLendingAnalysisCommandOutput,
|
|
99
135
|
} from "./commands/StartLendingAnalysisCommand";
|
|
136
|
+
import {
|
|
137
|
+
TagResourceCommandInput,
|
|
138
|
+
TagResourceCommandOutput,
|
|
139
|
+
} from "./commands/TagResourceCommand";
|
|
140
|
+
import {
|
|
141
|
+
UntagResourceCommandInput,
|
|
142
|
+
UntagResourceCommandOutput,
|
|
143
|
+
} from "./commands/UntagResourceCommand";
|
|
144
|
+
import {
|
|
145
|
+
UpdateAdapterCommandInput,
|
|
146
|
+
UpdateAdapterCommandOutput,
|
|
147
|
+
} from "./commands/UpdateAdapterCommand";
|
|
100
148
|
import {
|
|
101
149
|
ClientInputEndpointParameters,
|
|
102
150
|
ClientResolvedEndpointParameters,
|
|
@@ -108,30 +156,54 @@ export type ServiceInputTypes =
|
|
|
108
156
|
| AnalyzeDocumentCommandInput
|
|
109
157
|
| AnalyzeExpenseCommandInput
|
|
110
158
|
| AnalyzeIDCommandInput
|
|
159
|
+
| CreateAdapterCommandInput
|
|
160
|
+
| CreateAdapterVersionCommandInput
|
|
161
|
+
| DeleteAdapterCommandInput
|
|
162
|
+
| DeleteAdapterVersionCommandInput
|
|
111
163
|
| DetectDocumentTextCommandInput
|
|
164
|
+
| GetAdapterCommandInput
|
|
165
|
+
| GetAdapterVersionCommandInput
|
|
112
166
|
| GetDocumentAnalysisCommandInput
|
|
113
167
|
| GetDocumentTextDetectionCommandInput
|
|
114
168
|
| GetExpenseAnalysisCommandInput
|
|
115
169
|
| GetLendingAnalysisCommandInput
|
|
116
170
|
| GetLendingAnalysisSummaryCommandInput
|
|
171
|
+
| ListAdapterVersionsCommandInput
|
|
172
|
+
| ListAdaptersCommandInput
|
|
173
|
+
| ListTagsForResourceCommandInput
|
|
117
174
|
| StartDocumentAnalysisCommandInput
|
|
118
175
|
| StartDocumentTextDetectionCommandInput
|
|
119
176
|
| StartExpenseAnalysisCommandInput
|
|
120
|
-
| StartLendingAnalysisCommandInput
|
|
177
|
+
| StartLendingAnalysisCommandInput
|
|
178
|
+
| TagResourceCommandInput
|
|
179
|
+
| UntagResourceCommandInput
|
|
180
|
+
| UpdateAdapterCommandInput;
|
|
121
181
|
export type ServiceOutputTypes =
|
|
122
182
|
| AnalyzeDocumentCommandOutput
|
|
123
183
|
| AnalyzeExpenseCommandOutput
|
|
124
184
|
| AnalyzeIDCommandOutput
|
|
185
|
+
| CreateAdapterCommandOutput
|
|
186
|
+
| CreateAdapterVersionCommandOutput
|
|
187
|
+
| DeleteAdapterCommandOutput
|
|
188
|
+
| DeleteAdapterVersionCommandOutput
|
|
125
189
|
| DetectDocumentTextCommandOutput
|
|
190
|
+
| GetAdapterCommandOutput
|
|
191
|
+
| GetAdapterVersionCommandOutput
|
|
126
192
|
| GetDocumentAnalysisCommandOutput
|
|
127
193
|
| GetDocumentTextDetectionCommandOutput
|
|
128
194
|
| GetExpenseAnalysisCommandOutput
|
|
129
195
|
| GetLendingAnalysisCommandOutput
|
|
130
196
|
| GetLendingAnalysisSummaryCommandOutput
|
|
197
|
+
| ListAdapterVersionsCommandOutput
|
|
198
|
+
| ListAdaptersCommandOutput
|
|
199
|
+
| ListTagsForResourceCommandOutput
|
|
131
200
|
| StartDocumentAnalysisCommandOutput
|
|
132
201
|
| StartDocumentTextDetectionCommandOutput
|
|
133
202
|
| StartExpenseAnalysisCommandOutput
|
|
134
|
-
| StartLendingAnalysisCommandOutput
|
|
203
|
+
| StartLendingAnalysisCommandOutput
|
|
204
|
+
| TagResourceCommandOutput
|
|
205
|
+
| UntagResourceCommandOutput
|
|
206
|
+
| UpdateAdapterCommandOutput;
|
|
135
207
|
export interface ClientDefaults
|
|
136
208
|
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
137
209
|
requestHandler?: __HttpHandler;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateAdapterRequest,
|
|
11
|
+
CreateAdapterResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TextractClientResolvedConfig,
|
|
17
|
+
} from "../TextractClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateAdapterCommandInput extends CreateAdapterRequest {}
|
|
20
|
+
export interface CreateAdapterCommandOutput
|
|
21
|
+
extends CreateAdapterResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateAdapterCommand extends $Command<
|
|
24
|
+
CreateAdapterCommandInput,
|
|
25
|
+
CreateAdapterCommandOutput,
|
|
26
|
+
TextractClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateAdapterCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateAdapterCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: TextractClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateAdapterCommandInput, CreateAdapterCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
import {
|
|
10
|
+
CreateAdapterVersionRequest,
|
|
11
|
+
CreateAdapterVersionResponse,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
TextractClientResolvedConfig,
|
|
17
|
+
} from "../TextractClient";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateAdapterVersionCommandInput
|
|
20
|
+
extends CreateAdapterVersionRequest {}
|
|
21
|
+
export interface CreateAdapterVersionCommandOutput
|
|
22
|
+
extends CreateAdapterVersionResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateAdapterVersionCommand extends $Command<
|
|
25
|
+
CreateAdapterVersionCommandInput,
|
|
26
|
+
CreateAdapterVersionCommandOutput,
|
|
27
|
+
TextractClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateAdapterVersionCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateAdapterVersionCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: TextractClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<
|
|
37
|
+
CreateAdapterVersionCommandInput,
|
|
38
|
+
CreateAdapterVersionCommandOutput
|
|
39
|
+
>;
|
|
40
|
+
private serialize;
|
|
41
|
+
private deserialize;
|
|
42
|
+
}
|