@aws-sdk/client-entityresolution 3.378.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.
Files changed (147) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +346 -0
  3. package/dist-cjs/EntityResolution.js +43 -0
  4. package/dist-cjs/EntityResolutionClient.js +41 -0
  5. package/dist-cjs/commands/CreateMatchingWorkflowCommand.js +46 -0
  6. package/dist-cjs/commands/CreateSchemaMappingCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteMatchingWorkflowCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteSchemaMappingCommand.js +46 -0
  9. package/dist-cjs/commands/GetMatchIdCommand.js +47 -0
  10. package/dist-cjs/commands/GetMatchingJobCommand.js +46 -0
  11. package/dist-cjs/commands/GetMatchingWorkflowCommand.js +46 -0
  12. package/dist-cjs/commands/GetSchemaMappingCommand.js +46 -0
  13. package/dist-cjs/commands/ListMatchingJobsCommand.js +46 -0
  14. package/dist-cjs/commands/ListMatchingWorkflowsCommand.js +46 -0
  15. package/dist-cjs/commands/ListSchemaMappingsCommand.js +46 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  17. package/dist-cjs/commands/StartMatchingJobCommand.js +46 -0
  18. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  19. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  20. package/dist-cjs/commands/UpdateMatchingWorkflowCommand.js +46 -0
  21. package/dist-cjs/commands/index.js +19 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/index.js +11 -0
  26. package/dist-cjs/models/EntityResolutionServiceException.js +12 -0
  27. package/dist-cjs/models/index.js +4 -0
  28. package/dist-cjs/models/models_0.js +143 -0
  29. package/dist-cjs/pagination/Interfaces.js +2 -0
  30. package/dist-cjs/pagination/ListMatchingJobsPaginator.js +29 -0
  31. package/dist-cjs/pagination/ListMatchingWorkflowsPaginator.js +29 -0
  32. package/dist-cjs/pagination/ListSchemaMappingsPaginator.js +29 -0
  33. package/dist-cjs/pagination/index.js +7 -0
  34. package/dist-cjs/protocols/Aws_restJson1.js +1281 -0
  35. package/dist-cjs/runtimeConfig.browser.js +39 -0
  36. package/dist-cjs/runtimeConfig.js +48 -0
  37. package/dist-cjs/runtimeConfig.native.js +15 -0
  38. package/dist-cjs/runtimeConfig.shared.js +21 -0
  39. package/dist-es/EntityResolution.js +39 -0
  40. package/dist-es/EntityResolutionClient.js +37 -0
  41. package/dist-es/commands/CreateMatchingWorkflowCommand.js +42 -0
  42. package/dist-es/commands/CreateSchemaMappingCommand.js +42 -0
  43. package/dist-es/commands/DeleteMatchingWorkflowCommand.js +42 -0
  44. package/dist-es/commands/DeleteSchemaMappingCommand.js +42 -0
  45. package/dist-es/commands/GetMatchIdCommand.js +43 -0
  46. package/dist-es/commands/GetMatchingJobCommand.js +42 -0
  47. package/dist-es/commands/GetMatchingWorkflowCommand.js +42 -0
  48. package/dist-es/commands/GetSchemaMappingCommand.js +42 -0
  49. package/dist-es/commands/ListMatchingJobsCommand.js +42 -0
  50. package/dist-es/commands/ListMatchingWorkflowsCommand.js +42 -0
  51. package/dist-es/commands/ListSchemaMappingsCommand.js +42 -0
  52. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  53. package/dist-es/commands/StartMatchingJobCommand.js +42 -0
  54. package/dist-es/commands/TagResourceCommand.js +42 -0
  55. package/dist-es/commands/UntagResourceCommand.js +42 -0
  56. package/dist-es/commands/UpdateMatchingWorkflowCommand.js +42 -0
  57. package/dist-es/commands/index.js +16 -0
  58. package/dist-es/endpoint/EndpointParameters.js +8 -0
  59. package/dist-es/endpoint/endpointResolver.js +8 -0
  60. package/dist-es/endpoint/ruleset.js +4 -0
  61. package/dist-es/index.js +6 -0
  62. package/dist-es/models/EntityResolutionServiceException.js +8 -0
  63. package/dist-es/models/index.js +1 -0
  64. package/dist-es/models/models_0.js +132 -0
  65. package/dist-es/pagination/Interfaces.js +1 -0
  66. package/dist-es/pagination/ListMatchingJobsPaginator.js +25 -0
  67. package/dist-es/pagination/ListMatchingWorkflowsPaginator.js +25 -0
  68. package/dist-es/pagination/ListSchemaMappingsPaginator.js +25 -0
  69. package/dist-es/pagination/index.js +4 -0
  70. package/dist-es/protocols/Aws_restJson1.js +1246 -0
  71. package/dist-es/runtimeConfig.browser.js +34 -0
  72. package/dist-es/runtimeConfig.js +43 -0
  73. package/dist-es/runtimeConfig.native.js +11 -0
  74. package/dist-es/runtimeConfig.shared.js +17 -0
  75. package/dist-types/EntityResolution.d.ts +135 -0
  76. package/dist-types/EntityResolutionClient.d.ts +191 -0
  77. package/dist-types/commands/CreateMatchingWorkflowCommand.d.ts +183 -0
  78. package/dist-types/commands/CreateSchemaMappingCommand.d.ts +123 -0
  79. package/dist-types/commands/DeleteMatchingWorkflowCommand.d.ts +90 -0
  80. package/dist-types/commands/DeleteSchemaMappingCommand.d.ts +96 -0
  81. package/dist-types/commands/GetMatchIdCommand.d.ts +96 -0
  82. package/dist-types/commands/GetMatchingJobCommand.d.ts +106 -0
  83. package/dist-types/commands/GetMatchingWorkflowCommand.d.ts +138 -0
  84. package/dist-types/commands/GetSchemaMappingCommand.d.ts +108 -0
  85. package/dist-types/commands/ListMatchingJobsCommand.d.ts +103 -0
  86. package/dist-types/commands/ListMatchingWorkflowsCommand.d.ts +98 -0
  87. package/dist-types/commands/ListSchemaMappingsCommand.d.ts +98 -0
  88. package/dist-types/commands/ListTagsForResourceCommand.d.ts +89 -0
  89. package/dist-types/commands/StartMatchingJobCommand.d.ts +104 -0
  90. package/dist-types/commands/TagResourceCommand.d.ts +95 -0
  91. package/dist-types/commands/UntagResourceCommand.d.ts +84 -0
  92. package/dist-types/commands/UpdateMatchingWorkflowCommand.d.ts +174 -0
  93. package/dist-types/commands/index.d.ts +16 -0
  94. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  95. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  96. package/dist-types/endpoint/ruleset.d.ts +2 -0
  97. package/dist-types/index.d.ts +24 -0
  98. package/dist-types/models/EntityResolutionServiceException.d.ts +13 -0
  99. package/dist-types/models/index.d.ts +1 -0
  100. package/dist-types/models/models_0.d.ts +1017 -0
  101. package/dist-types/pagination/Interfaces.d.ts +8 -0
  102. package/dist-types/pagination/ListMatchingJobsPaginator.d.ts +7 -0
  103. package/dist-types/pagination/ListMatchingWorkflowsPaginator.d.ts +7 -0
  104. package/dist-types/pagination/ListSchemaMappingsPaginator.d.ts +7 -0
  105. package/dist-types/pagination/index.d.ts +4 -0
  106. package/dist-types/protocols/Aws_restJson1.d.ts +146 -0
  107. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  108. package/dist-types/runtimeConfig.d.ts +42 -0
  109. package/dist-types/runtimeConfig.native.d.ts +41 -0
  110. package/dist-types/runtimeConfig.shared.d.ts +18 -0
  111. package/dist-types/ts3.4/EntityResolution.d.ts +279 -0
  112. package/dist-types/ts3.4/EntityResolutionClient.d.ts +209 -0
  113. package/dist-types/ts3.4/commands/CreateMatchingWorkflowCommand.d.ts +42 -0
  114. package/dist-types/ts3.4/commands/CreateSchemaMappingCommand.d.ts +39 -0
  115. package/dist-types/ts3.4/commands/DeleteMatchingWorkflowCommand.d.ts +42 -0
  116. package/dist-types/ts3.4/commands/DeleteSchemaMappingCommand.d.ts +39 -0
  117. package/dist-types/ts3.4/commands/GetMatchIdCommand.d.ts +35 -0
  118. package/dist-types/ts3.4/commands/GetMatchingJobCommand.d.ts +35 -0
  119. package/dist-types/ts3.4/commands/GetMatchingWorkflowCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/GetSchemaMappingCommand.d.ts +38 -0
  121. package/dist-types/ts3.4/commands/ListMatchingJobsCommand.d.ts +38 -0
  122. package/dist-types/ts3.4/commands/ListMatchingWorkflowsCommand.d.ts +42 -0
  123. package/dist-types/ts3.4/commands/ListSchemaMappingsCommand.d.ts +39 -0
  124. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  125. package/dist-types/ts3.4/commands/StartMatchingJobCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  127. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  128. package/dist-types/ts3.4/commands/UpdateMatchingWorkflowCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/index.d.ts +16 -0
  130. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
  131. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  132. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  133. package/dist-types/ts3.4/index.d.ts +6 -0
  134. package/dist-types/ts3.4/models/EntityResolutionServiceException.d.ts +8 -0
  135. package/dist-types/ts3.4/models/index.d.ts +1 -0
  136. package/dist-types/ts3.4/models/models_0.d.ts +322 -0
  137. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  138. package/dist-types/ts3.4/pagination/ListMatchingJobsPaginator.d.ts +11 -0
  139. package/dist-types/ts3.4/pagination/ListMatchingWorkflowsPaginator.d.ts +11 -0
  140. package/dist-types/ts3.4/pagination/ListSchemaMappingsPaginator.d.ts +11 -0
  141. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  142. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +197 -0
  143. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  144. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  145. package/dist-types/ts3.4/runtimeConfig.native.d.ts +82 -0
  146. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
  147. package/package.json +99 -0
@@ -0,0 +1,197 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@smithy/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ CreateMatchingWorkflowCommandInput,
8
+ CreateMatchingWorkflowCommandOutput,
9
+ } from "../commands/CreateMatchingWorkflowCommand";
10
+ import {
11
+ CreateSchemaMappingCommandInput,
12
+ CreateSchemaMappingCommandOutput,
13
+ } from "../commands/CreateSchemaMappingCommand";
14
+ import {
15
+ DeleteMatchingWorkflowCommandInput,
16
+ DeleteMatchingWorkflowCommandOutput,
17
+ } from "../commands/DeleteMatchingWorkflowCommand";
18
+ import {
19
+ DeleteSchemaMappingCommandInput,
20
+ DeleteSchemaMappingCommandOutput,
21
+ } from "../commands/DeleteSchemaMappingCommand";
22
+ import {
23
+ GetMatchIdCommandInput,
24
+ GetMatchIdCommandOutput,
25
+ } from "../commands/GetMatchIdCommand";
26
+ import {
27
+ GetMatchingJobCommandInput,
28
+ GetMatchingJobCommandOutput,
29
+ } from "../commands/GetMatchingJobCommand";
30
+ import {
31
+ GetMatchingWorkflowCommandInput,
32
+ GetMatchingWorkflowCommandOutput,
33
+ } from "../commands/GetMatchingWorkflowCommand";
34
+ import {
35
+ GetSchemaMappingCommandInput,
36
+ GetSchemaMappingCommandOutput,
37
+ } from "../commands/GetSchemaMappingCommand";
38
+ import {
39
+ ListMatchingJobsCommandInput,
40
+ ListMatchingJobsCommandOutput,
41
+ } from "../commands/ListMatchingJobsCommand";
42
+ import {
43
+ ListMatchingWorkflowsCommandInput,
44
+ ListMatchingWorkflowsCommandOutput,
45
+ } from "../commands/ListMatchingWorkflowsCommand";
46
+ import {
47
+ ListSchemaMappingsCommandInput,
48
+ ListSchemaMappingsCommandOutput,
49
+ } from "../commands/ListSchemaMappingsCommand";
50
+ import {
51
+ ListTagsForResourceCommandInput,
52
+ ListTagsForResourceCommandOutput,
53
+ } from "../commands/ListTagsForResourceCommand";
54
+ import {
55
+ StartMatchingJobCommandInput,
56
+ StartMatchingJobCommandOutput,
57
+ } from "../commands/StartMatchingJobCommand";
58
+ import {
59
+ TagResourceCommandInput,
60
+ TagResourceCommandOutput,
61
+ } from "../commands/TagResourceCommand";
62
+ import {
63
+ UntagResourceCommandInput,
64
+ UntagResourceCommandOutput,
65
+ } from "../commands/UntagResourceCommand";
66
+ import {
67
+ UpdateMatchingWorkflowCommandInput,
68
+ UpdateMatchingWorkflowCommandOutput,
69
+ } from "../commands/UpdateMatchingWorkflowCommand";
70
+ export declare const se_CreateMatchingWorkflowCommand: (
71
+ input: CreateMatchingWorkflowCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const se_CreateSchemaMappingCommand: (
75
+ input: CreateSchemaMappingCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const se_DeleteMatchingWorkflowCommand: (
79
+ input: DeleteMatchingWorkflowCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const se_DeleteSchemaMappingCommand: (
83
+ input: DeleteSchemaMappingCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const se_GetMatchIdCommand: (
87
+ input: GetMatchIdCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const se_GetMatchingJobCommand: (
91
+ input: GetMatchingJobCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const se_GetMatchingWorkflowCommand: (
95
+ input: GetMatchingWorkflowCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const se_GetSchemaMappingCommand: (
99
+ input: GetSchemaMappingCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const se_ListMatchingJobsCommand: (
103
+ input: ListMatchingJobsCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const se_ListMatchingWorkflowsCommand: (
107
+ input: ListMatchingWorkflowsCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const se_ListSchemaMappingsCommand: (
111
+ input: ListSchemaMappingsCommandInput,
112
+ context: __SerdeContext
113
+ ) => Promise<__HttpRequest>;
114
+ export declare const se_ListTagsForResourceCommand: (
115
+ input: ListTagsForResourceCommandInput,
116
+ context: __SerdeContext
117
+ ) => Promise<__HttpRequest>;
118
+ export declare const se_StartMatchingJobCommand: (
119
+ input: StartMatchingJobCommandInput,
120
+ context: __SerdeContext
121
+ ) => Promise<__HttpRequest>;
122
+ export declare const se_TagResourceCommand: (
123
+ input: TagResourceCommandInput,
124
+ context: __SerdeContext
125
+ ) => Promise<__HttpRequest>;
126
+ export declare const se_UntagResourceCommand: (
127
+ input: UntagResourceCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_UpdateMatchingWorkflowCommand: (
131
+ input: UpdateMatchingWorkflowCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const de_CreateMatchingWorkflowCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<CreateMatchingWorkflowCommandOutput>;
138
+ export declare const de_CreateSchemaMappingCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<CreateSchemaMappingCommandOutput>;
142
+ export declare const de_DeleteMatchingWorkflowCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<DeleteMatchingWorkflowCommandOutput>;
146
+ export declare const de_DeleteSchemaMappingCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<DeleteSchemaMappingCommandOutput>;
150
+ export declare const de_GetMatchIdCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<GetMatchIdCommandOutput>;
154
+ export declare const de_GetMatchingJobCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<GetMatchingJobCommandOutput>;
158
+ export declare const de_GetMatchingWorkflowCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<GetMatchingWorkflowCommandOutput>;
162
+ export declare const de_GetSchemaMappingCommand: (
163
+ output: __HttpResponse,
164
+ context: __SerdeContext
165
+ ) => Promise<GetSchemaMappingCommandOutput>;
166
+ export declare const de_ListMatchingJobsCommand: (
167
+ output: __HttpResponse,
168
+ context: __SerdeContext
169
+ ) => Promise<ListMatchingJobsCommandOutput>;
170
+ export declare const de_ListMatchingWorkflowsCommand: (
171
+ output: __HttpResponse,
172
+ context: __SerdeContext
173
+ ) => Promise<ListMatchingWorkflowsCommandOutput>;
174
+ export declare const de_ListSchemaMappingsCommand: (
175
+ output: __HttpResponse,
176
+ context: __SerdeContext
177
+ ) => Promise<ListSchemaMappingsCommandOutput>;
178
+ export declare const de_ListTagsForResourceCommand: (
179
+ output: __HttpResponse,
180
+ context: __SerdeContext
181
+ ) => Promise<ListTagsForResourceCommandOutput>;
182
+ export declare const de_StartMatchingJobCommand: (
183
+ output: __HttpResponse,
184
+ context: __SerdeContext
185
+ ) => Promise<StartMatchingJobCommandOutput>;
186
+ export declare const de_TagResourceCommand: (
187
+ output: __HttpResponse,
188
+ context: __SerdeContext
189
+ ) => Promise<TagResourceCommandOutput>;
190
+ export declare const de_UntagResourceCommand: (
191
+ output: __HttpResponse,
192
+ context: __SerdeContext
193
+ ) => Promise<UntagResourceCommandOutput>;
194
+ export declare const de_UpdateMatchingWorkflowCommand: (
195
+ output: __HttpResponse,
196
+ context: __SerdeContext
197
+ ) => Promise<UpdateMatchingWorkflowCommandOutput>;
@@ -0,0 +1,91 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { EntityResolutionClientConfig } from "./EntityResolutionClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: EntityResolutionClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@smithy/types").Provider<
15
+ import("@smithy/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@smithy/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@smithy/types").HttpHandlerOptions
24
+ > &
25
+ import("@smithy/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ sha256: import("@smithy/types").HashConstructor;
29
+ streamCollector: import("@smithy/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ apiVersion: string;
33
+ urlParser: import("@smithy/types").UrlParser;
34
+ base64Decoder: import("@smithy/types").Decoder;
35
+ base64Encoder: import("@smithy/types").Encoder;
36
+ utf8Decoder: import("@smithy/types").Decoder;
37
+ utf8Encoder: import("@smithy/types").Encoder;
38
+ disableHostPrefix: boolean;
39
+ serviceId: string;
40
+ logger: import("@smithy/types").Logger;
41
+ endpoint?:
42
+ | ((
43
+ | string
44
+ | import("@smithy/types").Endpoint
45
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
46
+ | import("@smithy/types").EndpointV2
47
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
48
+ ) &
49
+ (
50
+ | string
51
+ | import("@smithy/types").Provider<string>
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@smithy/types").Logger | undefined;
62
+ }
63
+ ) => import("@smithy/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?:
66
+ | import("@smithy/types").RetryStrategy
67
+ | import("@smithy/types").RetryStrategyV2
68
+ | undefined;
69
+ credentials?:
70
+ | import("@smithy/types").AwsCredentialIdentity
71
+ | import("@smithy/types").Provider<
72
+ import("@smithy/types").AwsCredentialIdentity
73
+ >
74
+ | undefined;
75
+ signer?:
76
+ | import("@smithy/types").RequestSigner
77
+ | ((
78
+ authScheme?: import("@smithy/types").AuthScheme | undefined
79
+ ) => Promise<import("@smithy/types").RequestSigner>)
80
+ | undefined;
81
+ signingEscapePath?: boolean | undefined;
82
+ systemClockOffset?: number | undefined;
83
+ signingRegion?: string | undefined;
84
+ signerConstructor?:
85
+ | (new (
86
+ options: import("@smithy/signature-v4").SignatureV4Init &
87
+ import("@smithy/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@smithy/types").RequestSigner)
89
+ | undefined;
90
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
91
+ };
@@ -0,0 +1,91 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { EntityResolutionClientConfig } from "./EntityResolutionClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: EntityResolutionClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@smithy/types").Provider<
8
+ import("@smithy/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@smithy/types").Provider<
15
+ import("@smithy/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@smithy/types").Provider<number>;
18
+ region: string | import("@smithy/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@smithy/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@smithy/types").HttpHandlerOptions
24
+ > &
25
+ import("@smithy/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@smithy/types").Provider<string>;
28
+ sha256: import("@smithy/types").HashConstructor;
29
+ streamCollector: import("@smithy/types").StreamCollector;
30
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
31
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
32
+ apiVersion: string;
33
+ urlParser: import("@smithy/types").UrlParser;
34
+ base64Decoder: import("@smithy/types").Decoder;
35
+ base64Encoder: import("@smithy/types").Encoder;
36
+ utf8Decoder: import("@smithy/types").Decoder;
37
+ utf8Encoder: import("@smithy/types").Encoder;
38
+ disableHostPrefix: boolean;
39
+ serviceId: string;
40
+ logger: import("@smithy/types").Logger;
41
+ endpoint?:
42
+ | ((
43
+ | string
44
+ | import("@smithy/types").Endpoint
45
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
46
+ | import("@smithy/types").EndpointV2
47
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
48
+ ) &
49
+ (
50
+ | string
51
+ | import("@smithy/types").Provider<string>
52
+ | import("@smithy/types").Endpoint
53
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
54
+ | import("@smithy/types").EndpointV2
55
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
56
+ ))
57
+ | undefined;
58
+ endpointProvider: (
59
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
60
+ context?: {
61
+ logger?: import("@smithy/types").Logger | undefined;
62
+ }
63
+ ) => import("@smithy/types").EndpointV2;
64
+ tls?: boolean | undefined;
65
+ retryStrategy?:
66
+ | import("@smithy/types").RetryStrategy
67
+ | import("@smithy/types").RetryStrategyV2
68
+ | undefined;
69
+ credentials?:
70
+ | import("@smithy/types").AwsCredentialIdentity
71
+ | import("@smithy/types").Provider<
72
+ import("@smithy/types").AwsCredentialIdentity
73
+ >
74
+ | undefined;
75
+ signer?:
76
+ | import("@smithy/types").RequestSigner
77
+ | ((
78
+ authScheme?: import("@smithy/types").AuthScheme | undefined
79
+ ) => Promise<import("@smithy/types").RequestSigner>)
80
+ | undefined;
81
+ signingEscapePath?: boolean | undefined;
82
+ systemClockOffset?: number | undefined;
83
+ signingRegion?: string | undefined;
84
+ signerConstructor?:
85
+ | (new (
86
+ options: import("@smithy/signature-v4").SignatureV4Init &
87
+ import("@smithy/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@smithy/types").RequestSigner)
89
+ | undefined;
90
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
91
+ };
@@ -0,0 +1,82 @@
1
+ import { EntityResolutionClientConfig } from "./EntityResolutionClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: EntityResolutionClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@smithy/types").HashConstructor;
7
+ requestHandler:
8
+ | (import("@smithy/types").RequestHandler<
9
+ any,
10
+ any,
11
+ import("@smithy/types").HttpHandlerOptions
12
+ > &
13
+ import("@smithy/protocol-http").HttpHandler)
14
+ | import("@smithy/fetch-http-handler").FetchHttpHandler;
15
+ apiVersion: string;
16
+ urlParser: import("@smithy/types").UrlParser;
17
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
+ streamCollector: import("@smithy/types").StreamCollector;
19
+ base64Decoder: import("@smithy/types").Decoder;
20
+ base64Encoder: import("@smithy/types").Encoder;
21
+ utf8Decoder: import("@smithy/types").Decoder;
22
+ utf8Encoder: import("@smithy/types").Encoder;
23
+ disableHostPrefix: boolean;
24
+ serviceId: string;
25
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
26
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
27
+ region: string | import("@smithy/types").Provider<any>;
28
+ credentialDefaultProvider: (
29
+ input: any
30
+ ) => import("@smithy/types").Provider<import("@aws-sdk/types").Credentials>;
31
+ defaultUserAgentProvider: import("@smithy/types").Provider<
32
+ import("@smithy/types").UserAgent
33
+ >;
34
+ maxAttempts: number | import("@smithy/types").Provider<number>;
35
+ retryMode: string | import("@smithy/types").Provider<string>;
36
+ logger: import("@smithy/types").Logger;
37
+ defaultsMode:
38
+ | import("@smithy/smithy-client").DefaultsMode
39
+ | import("@smithy/types").Provider<
40
+ import("@smithy/smithy-client").DefaultsMode
41
+ >;
42
+ endpoint?:
43
+ | string
44
+ | import("@smithy/types").Endpoint
45
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
46
+ | import("@smithy/types").EndpointV2
47
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
48
+ | undefined;
49
+ endpointProvider: (
50
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
51
+ context?: {
52
+ logger?: import("@smithy/types").Logger | undefined;
53
+ }
54
+ ) => import("@smithy/types").EndpointV2;
55
+ tls?: boolean | undefined;
56
+ retryStrategy?:
57
+ | import("@smithy/types").RetryStrategy
58
+ | import("@smithy/types").RetryStrategyV2
59
+ | undefined;
60
+ credentials?:
61
+ | import("@smithy/types").AwsCredentialIdentity
62
+ | import("@smithy/types").Provider<
63
+ import("@smithy/types").AwsCredentialIdentity
64
+ >
65
+ | undefined;
66
+ signer?:
67
+ | import("@smithy/types").RequestSigner
68
+ | ((
69
+ authScheme?: import("@smithy/types").AuthScheme | undefined
70
+ ) => Promise<import("@smithy/types").RequestSigner>)
71
+ | undefined;
72
+ signingEscapePath?: boolean | undefined;
73
+ systemClockOffset?: number | undefined;
74
+ signingRegion?: string | undefined;
75
+ signerConstructor?:
76
+ | (new (
77
+ options: import("@smithy/signature-v4").SignatureV4Init &
78
+ import("@smithy/signature-v4").SignatureV4CryptoInit
79
+ ) => import("@smithy/types").RequestSigner)
80
+ | undefined;
81
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
82
+ };
@@ -0,0 +1,20 @@
1
+ import { EntityResolutionClientConfig } from "./EntityResolutionClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: EntityResolutionClientConfig
4
+ ) => {
5
+ apiVersion: string;
6
+ base64Decoder: import("@smithy/types").Decoder;
7
+ base64Encoder: import("@smithy/types").Encoder;
8
+ disableHostPrefix: boolean;
9
+ endpointProvider: (
10
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
+ context?: {
12
+ logger?: import("@smithy/types").Logger | undefined;
13
+ }
14
+ ) => import("@smithy/types").EndpointV2;
15
+ logger: import("@smithy/types").Logger;
16
+ serviceId: string;
17
+ urlParser: import("@smithy/types").UrlParser;
18
+ utf8Decoder: import("@smithy/types").Decoder;
19
+ utf8Encoder: import("@smithy/types").Encoder;
20
+ };
package/package.json ADDED
@@ -0,0 +1,99 @@
1
+ {
2
+ "name": "@aws-sdk/client-entityresolution",
3
+ "description": "AWS SDK for JavaScript Entityresolution Client for Node.js, Browser and React Native",
4
+ "version": "3.378.0",
5
+ "scripts": {
6
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
+ "build:cjs": "tsc -p tsconfig.cjs.json",
8
+ "build:docs": "typedoc",
9
+ "build:es": "tsc -p tsconfig.es.json",
10
+ "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
11
+ "build:types": "tsc -p tsconfig.types.json",
12
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
+ "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
15
+ "generate:client": "node ../../scripts/generate-clients/single-service --solo entityresolution"
16
+ },
17
+ "main": "./dist-cjs/index.js",
18
+ "types": "./dist-types/index.d.ts",
19
+ "module": "./dist-es/index.js",
20
+ "sideEffects": false,
21
+ "dependencies": {
22
+ "@aws-crypto/sha256-browser": "3.0.0",
23
+ "@aws-crypto/sha256-js": "3.0.0",
24
+ "@aws-sdk/client-sts": "3.378.0",
25
+ "@aws-sdk/credential-provider-node": "3.378.0",
26
+ "@aws-sdk/middleware-host-header": "3.378.0",
27
+ "@aws-sdk/middleware-logger": "3.378.0",
28
+ "@aws-sdk/middleware-recursion-detection": "3.378.0",
29
+ "@aws-sdk/middleware-signing": "3.378.0",
30
+ "@aws-sdk/middleware-user-agent": "3.378.0",
31
+ "@aws-sdk/types": "3.378.0",
32
+ "@aws-sdk/util-endpoints": "3.378.0",
33
+ "@aws-sdk/util-user-agent-browser": "3.378.0",
34
+ "@aws-sdk/util-user-agent-node": "3.378.0",
35
+ "@smithy/config-resolver": "^2.0.1",
36
+ "@smithy/fetch-http-handler": "^2.0.1",
37
+ "@smithy/hash-node": "^2.0.1",
38
+ "@smithy/invalid-dependency": "^2.0.1",
39
+ "@smithy/middleware-content-length": "^2.0.1",
40
+ "@smithy/middleware-endpoint": "^2.0.1",
41
+ "@smithy/middleware-retry": "^2.0.1",
42
+ "@smithy/middleware-serde": "^2.0.1",
43
+ "@smithy/middleware-stack": "^2.0.0",
44
+ "@smithy/node-config-provider": "^2.0.1",
45
+ "@smithy/node-http-handler": "^2.0.1",
46
+ "@smithy/protocol-http": "^2.0.1",
47
+ "@smithy/smithy-client": "^2.0.1",
48
+ "@smithy/types": "^2.0.2",
49
+ "@smithy/url-parser": "^2.0.1",
50
+ "@smithy/util-base64": "^2.0.0",
51
+ "@smithy/util-body-length-browser": "^2.0.0",
52
+ "@smithy/util-body-length-node": "^2.0.0",
53
+ "@smithy/util-defaults-mode-browser": "^2.0.1",
54
+ "@smithy/util-defaults-mode-node": "^2.0.1",
55
+ "@smithy/util-retry": "^2.0.0",
56
+ "@smithy/util-utf8": "^2.0.0",
57
+ "tslib": "^2.5.0"
58
+ },
59
+ "devDependencies": {
60
+ "@smithy/service-client-documentation-generator": "^2.0.0",
61
+ "@tsconfig/node14": "1.0.3",
62
+ "@types/node": "^14.14.31",
63
+ "concurrently": "7.0.0",
64
+ "downlevel-dts": "0.10.1",
65
+ "rimraf": "3.0.2",
66
+ "typedoc": "0.23.23",
67
+ "typescript": "~4.9.5"
68
+ },
69
+ "engines": {
70
+ "node": ">=14.0.0"
71
+ },
72
+ "typesVersions": {
73
+ "<4.0": {
74
+ "dist-types/*": [
75
+ "dist-types/ts3.4/*"
76
+ ]
77
+ }
78
+ },
79
+ "files": [
80
+ "dist-*/**"
81
+ ],
82
+ "author": {
83
+ "name": "AWS SDK for JavaScript Team",
84
+ "url": "https://aws.amazon.com/javascript/"
85
+ },
86
+ "license": "Apache-2.0",
87
+ "browser": {
88
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
89
+ },
90
+ "react-native": {
91
+ "./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
92
+ },
93
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-entityresolution",
94
+ "repository": {
95
+ "type": "git",
96
+ "url": "https://github.com/aws/aws-sdk-js-v3.git",
97
+ "directory": "clients/client-entityresolution"
98
+ }
99
+ }