@aws-sdk/client-b2bi 3.459.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/LICENSE +201 -0
- package/README.md +431 -0
- package/dist-cjs/B2bi.js +65 -0
- package/dist-cjs/B2biClient.js +43 -0
- package/dist-cjs/commands/CreateCapabilityCommand.js +51 -0
- package/dist-cjs/commands/CreatePartnershipCommand.js +52 -0
- package/dist-cjs/commands/CreateProfileCommand.js +52 -0
- package/dist-cjs/commands/CreateTransformerCommand.js +51 -0
- package/dist-cjs/commands/DeleteCapabilityCommand.js +51 -0
- package/dist-cjs/commands/DeletePartnershipCommand.js +51 -0
- package/dist-cjs/commands/DeleteProfileCommand.js +51 -0
- package/dist-cjs/commands/DeleteTransformerCommand.js +51 -0
- package/dist-cjs/commands/GetCapabilityCommand.js +51 -0
- package/dist-cjs/commands/GetPartnershipCommand.js +52 -0
- package/dist-cjs/commands/GetProfileCommand.js +52 -0
- package/dist-cjs/commands/GetTransformerCommand.js +51 -0
- package/dist-cjs/commands/GetTransformerJobCommand.js +51 -0
- package/dist-cjs/commands/ListCapabilitiesCommand.js +51 -0
- package/dist-cjs/commands/ListPartnershipsCommand.js +51 -0
- package/dist-cjs/commands/ListProfilesCommand.js +51 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +51 -0
- package/dist-cjs/commands/ListTransformersCommand.js +51 -0
- package/dist-cjs/commands/StartTransformerJobCommand.js +51 -0
- package/dist-cjs/commands/TagResourceCommand.js +51 -0
- package/dist-cjs/commands/TestMappingCommand.js +51 -0
- package/dist-cjs/commands/TestParsingCommand.js +51 -0
- package/dist-cjs/commands/UntagResourceCommand.js +51 -0
- package/dist-cjs/commands/UpdateCapabilityCommand.js +51 -0
- package/dist-cjs/commands/UpdatePartnershipCommand.js +52 -0
- package/dist-cjs/commands/UpdateProfileCommand.js +52 -0
- package/dist-cjs/commands/UpdateTransformerCommand.js +51 -0
- package/dist-cjs/commands/index.js +30 -0
- package/dist-cjs/endpoint/EndpointParameters.js +12 -0
- package/dist-cjs/endpoint/endpointResolver.js +12 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +12 -0
- package/dist-cjs/models/B2biServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +227 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListCapabilitiesPaginator.js +29 -0
- package/dist-cjs/pagination/ListPartnershipsPaginator.js +29 -0
- package/dist-cjs/pagination/ListProfilesPaginator.js +29 -0
- package/dist-cjs/pagination/ListTransformersPaginator.js +29 -0
- package/dist-cjs/pagination/index.js +8 -0
- package/dist-cjs/protocols/Aws_json1_0.js +1822 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +24 -0
- package/dist-cjs/runtimeExtensions.js +22 -0
- package/dist-es/B2bi.js +61 -0
- package/dist-es/B2biClient.js +39 -0
- package/dist-es/commands/CreateCapabilityCommand.js +47 -0
- package/dist-es/commands/CreatePartnershipCommand.js +48 -0
- package/dist-es/commands/CreateProfileCommand.js +48 -0
- package/dist-es/commands/CreateTransformerCommand.js +47 -0
- package/dist-es/commands/DeleteCapabilityCommand.js +47 -0
- package/dist-es/commands/DeletePartnershipCommand.js +47 -0
- package/dist-es/commands/DeleteProfileCommand.js +47 -0
- package/dist-es/commands/DeleteTransformerCommand.js +47 -0
- package/dist-es/commands/GetCapabilityCommand.js +47 -0
- package/dist-es/commands/GetPartnershipCommand.js +48 -0
- package/dist-es/commands/GetProfileCommand.js +48 -0
- package/dist-es/commands/GetTransformerCommand.js +47 -0
- package/dist-es/commands/GetTransformerJobCommand.js +47 -0
- package/dist-es/commands/ListCapabilitiesCommand.js +47 -0
- package/dist-es/commands/ListPartnershipsCommand.js +47 -0
- package/dist-es/commands/ListProfilesCommand.js +47 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +47 -0
- package/dist-es/commands/ListTransformersCommand.js +47 -0
- package/dist-es/commands/StartTransformerJobCommand.js +47 -0
- package/dist-es/commands/TagResourceCommand.js +47 -0
- package/dist-es/commands/TestMappingCommand.js +47 -0
- package/dist-es/commands/TestParsingCommand.js +47 -0
- package/dist-es/commands/UntagResourceCommand.js +47 -0
- package/dist-es/commands/UpdateCapabilityCommand.js +47 -0
- package/dist-es/commands/UpdatePartnershipCommand.js +48 -0
- package/dist-es/commands/UpdateProfileCommand.js +48 -0
- package/dist-es/commands/UpdateTransformerCommand.js +47 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +8 -0
- package/dist-es/endpoint/endpointResolver.js +8 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/B2biServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +208 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListCapabilitiesPaginator.js +25 -0
- package/dist-es/pagination/ListPartnershipsPaginator.js +25 -0
- package/dist-es/pagination/ListProfilesPaginator.js +25 -0
- package/dist-es/pagination/ListTransformersPaginator.js +25 -0
- package/dist-es/pagination/index.js +5 -0
- package/dist-es/protocols/Aws_json1_0.js +1764 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +20 -0
- package/dist-es/runtimeExtensions.js +18 -0
- package/dist-types/B2bi.d.ts +209 -0
- package/dist-types/B2biClient.d.ts +206 -0
- package/dist-types/commands/CreateCapabilityCommand.d.ts +156 -0
- package/dist-types/commands/CreatePartnershipCommand.d.ts +117 -0
- package/dist-types/commands/CreateProfileCommand.d.ts +113 -0
- package/dist-types/commands/CreateTransformerCommand.d.ts +123 -0
- package/dist-types/commands/DeleteCapabilityCommand.d.ts +89 -0
- package/dist-types/commands/DeletePartnershipCommand.d.ts +89 -0
- package/dist-types/commands/DeleteProfileCommand.d.ts +89 -0
- package/dist-types/commands/DeleteTransformerCommand.d.ts +89 -0
- package/dist-types/commands/GetCapabilityCommand.d.ts +118 -0
- package/dist-types/commands/GetPartnershipCommand.d.ts +99 -0
- package/dist-types/commands/GetProfileCommand.d.ts +97 -0
- package/dist-types/commands/GetTransformerCommand.d.ts +102 -0
- package/dist-types/commands/GetTransformerJobCommand.d.ts +96 -0
- package/dist-types/commands/ListCapabilitiesCommand.d.ts +83 -0
- package/dist-types/commands/ListPartnershipsCommand.d.ts +103 -0
- package/dist-types/commands/ListProfilesCommand.d.ts +85 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +84 -0
- package/dist-types/commands/ListTransformersCommand.d.ts +92 -0
- package/dist-types/commands/StartTransformerJobCommand.d.ts +97 -0
- package/dist-types/commands/TagResourceCommand.d.ts +87 -0
- package/dist-types/commands/TestMappingCommand.d.ts +90 -0
- package/dist-types/commands/TestParsingCommand.d.ts +98 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +80 -0
- package/dist-types/commands/UpdateCapabilityCommand.d.ts +151 -0
- package/dist-types/commands/UpdatePartnershipCommand.d.ts +109 -0
- package/dist-types/commands/UpdateProfileCommand.d.ts +107 -0
- package/dist-types/commands/UpdateTransformerCommand.d.ts +119 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +22 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +8 -0
- package/dist-types/index.d.ts +25 -0
- package/dist-types/models/B2biServiceException.d.ts +13 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1859 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListCapabilitiesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPartnershipsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListProfilesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTransformersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +5 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +245 -0
- package/dist-types/runtimeConfig.browser.d.ts +46 -0
- package/dist-types/runtimeConfig.d.ts +46 -0
- package/dist-types/runtimeConfig.native.d.ts +45 -0
- package/dist-types/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/B2bi.d.ts +464 -0
- package/dist-types/ts3.4/B2biClient.d.ts +280 -0
- package/dist-types/ts3.4/commands/CreateCapabilityCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreatePartnershipCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/CreateTransformerCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteCapabilityCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/DeletePartnershipCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteProfileCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/DeleteTransformerCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetCapabilityCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetPartnershipCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetProfileCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/GetTransformerCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/GetTransformerJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListCapabilitiesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListPartnershipsCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/ListProfilesCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTransformersCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/StartTransformerJobCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/TestMappingCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/TestParsingCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +33 -0
- package/dist-types/ts3.4/commands/UpdateCapabilityCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdatePartnershipCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/UpdateProfileCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/UpdateTransformerCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +33 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +7 -0
- package/dist-types/ts3.4/index.d.ts +10 -0
- package/dist-types/ts3.4/models/B2biServiceException.d.ts +8 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +537 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +5 -0
- package/dist-types/ts3.4/pagination/ListCapabilitiesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPartnershipsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListProfilesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTransformersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +5 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +329 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +88 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +19 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +104 -0
|
@@ -0,0 +1,280 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HostHeaderInputConfig,
|
|
3
|
+
HostHeaderResolvedConfig,
|
|
4
|
+
} from "@aws-sdk/middleware-host-header";
|
|
5
|
+
import {
|
|
6
|
+
AwsAuthInputConfig,
|
|
7
|
+
AwsAuthResolvedConfig,
|
|
8
|
+
} from "@aws-sdk/middleware-signing";
|
|
9
|
+
import {
|
|
10
|
+
UserAgentInputConfig,
|
|
11
|
+
UserAgentResolvedConfig,
|
|
12
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
13
|
+
import { Credentials as __Credentials } from "@aws-sdk/types";
|
|
14
|
+
import {
|
|
15
|
+
RegionInputConfig,
|
|
16
|
+
RegionResolvedConfig,
|
|
17
|
+
} from "@smithy/config-resolver";
|
|
18
|
+
import {
|
|
19
|
+
EndpointInputConfig,
|
|
20
|
+
EndpointResolvedConfig,
|
|
21
|
+
} from "@smithy/middleware-endpoint";
|
|
22
|
+
import {
|
|
23
|
+
RetryInputConfig,
|
|
24
|
+
RetryResolvedConfig,
|
|
25
|
+
} from "@smithy/middleware-retry";
|
|
26
|
+
import { HttpHandler as __HttpHandler } from "@smithy/protocol-http";
|
|
27
|
+
import {
|
|
28
|
+
Client as __Client,
|
|
29
|
+
DefaultsMode as __DefaultsMode,
|
|
30
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
31
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
32
|
+
} from "@smithy/smithy-client";
|
|
33
|
+
import {
|
|
34
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
35
|
+
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
36
|
+
ChecksumConstructor as __ChecksumConstructor,
|
|
37
|
+
Decoder as __Decoder,
|
|
38
|
+
Encoder as __Encoder,
|
|
39
|
+
HashConstructor as __HashConstructor,
|
|
40
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
41
|
+
Logger as __Logger,
|
|
42
|
+
Provider as __Provider,
|
|
43
|
+
Provider,
|
|
44
|
+
StreamCollector as __StreamCollector,
|
|
45
|
+
UrlParser as __UrlParser,
|
|
46
|
+
UserAgent as __UserAgent,
|
|
47
|
+
} from "@smithy/types";
|
|
48
|
+
import {
|
|
49
|
+
CreateCapabilityCommandInput,
|
|
50
|
+
CreateCapabilityCommandOutput,
|
|
51
|
+
} from "./commands/CreateCapabilityCommand";
|
|
52
|
+
import {
|
|
53
|
+
CreatePartnershipCommandInput,
|
|
54
|
+
CreatePartnershipCommandOutput,
|
|
55
|
+
} from "./commands/CreatePartnershipCommand";
|
|
56
|
+
import {
|
|
57
|
+
CreateProfileCommandInput,
|
|
58
|
+
CreateProfileCommandOutput,
|
|
59
|
+
} from "./commands/CreateProfileCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateTransformerCommandInput,
|
|
62
|
+
CreateTransformerCommandOutput,
|
|
63
|
+
} from "./commands/CreateTransformerCommand";
|
|
64
|
+
import {
|
|
65
|
+
DeleteCapabilityCommandInput,
|
|
66
|
+
DeleteCapabilityCommandOutput,
|
|
67
|
+
} from "./commands/DeleteCapabilityCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeletePartnershipCommandInput,
|
|
70
|
+
DeletePartnershipCommandOutput,
|
|
71
|
+
} from "./commands/DeletePartnershipCommand";
|
|
72
|
+
import {
|
|
73
|
+
DeleteProfileCommandInput,
|
|
74
|
+
DeleteProfileCommandOutput,
|
|
75
|
+
} from "./commands/DeleteProfileCommand";
|
|
76
|
+
import {
|
|
77
|
+
DeleteTransformerCommandInput,
|
|
78
|
+
DeleteTransformerCommandOutput,
|
|
79
|
+
} from "./commands/DeleteTransformerCommand";
|
|
80
|
+
import {
|
|
81
|
+
GetCapabilityCommandInput,
|
|
82
|
+
GetCapabilityCommandOutput,
|
|
83
|
+
} from "./commands/GetCapabilityCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetPartnershipCommandInput,
|
|
86
|
+
GetPartnershipCommandOutput,
|
|
87
|
+
} from "./commands/GetPartnershipCommand";
|
|
88
|
+
import {
|
|
89
|
+
GetProfileCommandInput,
|
|
90
|
+
GetProfileCommandOutput,
|
|
91
|
+
} from "./commands/GetProfileCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetTransformerCommandInput,
|
|
94
|
+
GetTransformerCommandOutput,
|
|
95
|
+
} from "./commands/GetTransformerCommand";
|
|
96
|
+
import {
|
|
97
|
+
GetTransformerJobCommandInput,
|
|
98
|
+
GetTransformerJobCommandOutput,
|
|
99
|
+
} from "./commands/GetTransformerJobCommand";
|
|
100
|
+
import {
|
|
101
|
+
ListCapabilitiesCommandInput,
|
|
102
|
+
ListCapabilitiesCommandOutput,
|
|
103
|
+
} from "./commands/ListCapabilitiesCommand";
|
|
104
|
+
import {
|
|
105
|
+
ListPartnershipsCommandInput,
|
|
106
|
+
ListPartnershipsCommandOutput,
|
|
107
|
+
} from "./commands/ListPartnershipsCommand";
|
|
108
|
+
import {
|
|
109
|
+
ListProfilesCommandInput,
|
|
110
|
+
ListProfilesCommandOutput,
|
|
111
|
+
} from "./commands/ListProfilesCommand";
|
|
112
|
+
import {
|
|
113
|
+
ListTagsForResourceCommandInput,
|
|
114
|
+
ListTagsForResourceCommandOutput,
|
|
115
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListTransformersCommandInput,
|
|
118
|
+
ListTransformersCommandOutput,
|
|
119
|
+
} from "./commands/ListTransformersCommand";
|
|
120
|
+
import {
|
|
121
|
+
StartTransformerJobCommandInput,
|
|
122
|
+
StartTransformerJobCommandOutput,
|
|
123
|
+
} from "./commands/StartTransformerJobCommand";
|
|
124
|
+
import {
|
|
125
|
+
TagResourceCommandInput,
|
|
126
|
+
TagResourceCommandOutput,
|
|
127
|
+
} from "./commands/TagResourceCommand";
|
|
128
|
+
import {
|
|
129
|
+
TestMappingCommandInput,
|
|
130
|
+
TestMappingCommandOutput,
|
|
131
|
+
} from "./commands/TestMappingCommand";
|
|
132
|
+
import {
|
|
133
|
+
TestParsingCommandInput,
|
|
134
|
+
TestParsingCommandOutput,
|
|
135
|
+
} from "./commands/TestParsingCommand";
|
|
136
|
+
import {
|
|
137
|
+
UntagResourceCommandInput,
|
|
138
|
+
UntagResourceCommandOutput,
|
|
139
|
+
} from "./commands/UntagResourceCommand";
|
|
140
|
+
import {
|
|
141
|
+
UpdateCapabilityCommandInput,
|
|
142
|
+
UpdateCapabilityCommandOutput,
|
|
143
|
+
} from "./commands/UpdateCapabilityCommand";
|
|
144
|
+
import {
|
|
145
|
+
UpdatePartnershipCommandInput,
|
|
146
|
+
UpdatePartnershipCommandOutput,
|
|
147
|
+
} from "./commands/UpdatePartnershipCommand";
|
|
148
|
+
import {
|
|
149
|
+
UpdateProfileCommandInput,
|
|
150
|
+
UpdateProfileCommandOutput,
|
|
151
|
+
} from "./commands/UpdateProfileCommand";
|
|
152
|
+
import {
|
|
153
|
+
UpdateTransformerCommandInput,
|
|
154
|
+
UpdateTransformerCommandOutput,
|
|
155
|
+
} from "./commands/UpdateTransformerCommand";
|
|
156
|
+
import {
|
|
157
|
+
ClientInputEndpointParameters,
|
|
158
|
+
ClientResolvedEndpointParameters,
|
|
159
|
+
EndpointParameters,
|
|
160
|
+
} from "./endpoint/EndpointParameters";
|
|
161
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
162
|
+
export { __Client };
|
|
163
|
+
export type ServiceInputTypes =
|
|
164
|
+
| CreateCapabilityCommandInput
|
|
165
|
+
| CreatePartnershipCommandInput
|
|
166
|
+
| CreateProfileCommandInput
|
|
167
|
+
| CreateTransformerCommandInput
|
|
168
|
+
| DeleteCapabilityCommandInput
|
|
169
|
+
| DeletePartnershipCommandInput
|
|
170
|
+
| DeleteProfileCommandInput
|
|
171
|
+
| DeleteTransformerCommandInput
|
|
172
|
+
| GetCapabilityCommandInput
|
|
173
|
+
| GetPartnershipCommandInput
|
|
174
|
+
| GetProfileCommandInput
|
|
175
|
+
| GetTransformerCommandInput
|
|
176
|
+
| GetTransformerJobCommandInput
|
|
177
|
+
| ListCapabilitiesCommandInput
|
|
178
|
+
| ListPartnershipsCommandInput
|
|
179
|
+
| ListProfilesCommandInput
|
|
180
|
+
| ListTagsForResourceCommandInput
|
|
181
|
+
| ListTransformersCommandInput
|
|
182
|
+
| StartTransformerJobCommandInput
|
|
183
|
+
| TagResourceCommandInput
|
|
184
|
+
| TestMappingCommandInput
|
|
185
|
+
| TestParsingCommandInput
|
|
186
|
+
| UntagResourceCommandInput
|
|
187
|
+
| UpdateCapabilityCommandInput
|
|
188
|
+
| UpdatePartnershipCommandInput
|
|
189
|
+
| UpdateProfileCommandInput
|
|
190
|
+
| UpdateTransformerCommandInput;
|
|
191
|
+
export type ServiceOutputTypes =
|
|
192
|
+
| CreateCapabilityCommandOutput
|
|
193
|
+
| CreatePartnershipCommandOutput
|
|
194
|
+
| CreateProfileCommandOutput
|
|
195
|
+
| CreateTransformerCommandOutput
|
|
196
|
+
| DeleteCapabilityCommandOutput
|
|
197
|
+
| DeletePartnershipCommandOutput
|
|
198
|
+
| DeleteProfileCommandOutput
|
|
199
|
+
| DeleteTransformerCommandOutput
|
|
200
|
+
| GetCapabilityCommandOutput
|
|
201
|
+
| GetPartnershipCommandOutput
|
|
202
|
+
| GetProfileCommandOutput
|
|
203
|
+
| GetTransformerCommandOutput
|
|
204
|
+
| GetTransformerJobCommandOutput
|
|
205
|
+
| ListCapabilitiesCommandOutput
|
|
206
|
+
| ListPartnershipsCommandOutput
|
|
207
|
+
| ListProfilesCommandOutput
|
|
208
|
+
| ListTagsForResourceCommandOutput
|
|
209
|
+
| ListTransformersCommandOutput
|
|
210
|
+
| StartTransformerJobCommandOutput
|
|
211
|
+
| TagResourceCommandOutput
|
|
212
|
+
| TestMappingCommandOutput
|
|
213
|
+
| TestParsingCommandOutput
|
|
214
|
+
| UntagResourceCommandOutput
|
|
215
|
+
| UpdateCapabilityCommandOutput
|
|
216
|
+
| UpdatePartnershipCommandOutput
|
|
217
|
+
| UpdateProfileCommandOutput
|
|
218
|
+
| UpdateTransformerCommandOutput;
|
|
219
|
+
export interface ClientDefaults
|
|
220
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
221
|
+
requestHandler?: __HttpHandler;
|
|
222
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
223
|
+
urlParser?: __UrlParser;
|
|
224
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
225
|
+
streamCollector?: __StreamCollector;
|
|
226
|
+
base64Decoder?: __Decoder;
|
|
227
|
+
base64Encoder?: __Encoder;
|
|
228
|
+
utf8Decoder?: __Decoder;
|
|
229
|
+
utf8Encoder?: __Encoder;
|
|
230
|
+
runtime?: string;
|
|
231
|
+
disableHostPrefix?: boolean;
|
|
232
|
+
serviceId?: string;
|
|
233
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
234
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
235
|
+
region?: string | __Provider<string>;
|
|
236
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
237
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
238
|
+
maxAttempts?: number | __Provider<number>;
|
|
239
|
+
retryMode?: string | __Provider<string>;
|
|
240
|
+
logger?: __Logger;
|
|
241
|
+
extensions?: RuntimeExtension[];
|
|
242
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
243
|
+
}
|
|
244
|
+
export type B2biClientConfigType = Partial<
|
|
245
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
246
|
+
> &
|
|
247
|
+
ClientDefaults &
|
|
248
|
+
RegionInputConfig &
|
|
249
|
+
EndpointInputConfig<EndpointParameters> &
|
|
250
|
+
RetryInputConfig &
|
|
251
|
+
HostHeaderInputConfig &
|
|
252
|
+
AwsAuthInputConfig &
|
|
253
|
+
UserAgentInputConfig &
|
|
254
|
+
ClientInputEndpointParameters;
|
|
255
|
+
export interface B2biClientConfig extends B2biClientConfigType {}
|
|
256
|
+
export type B2biClientResolvedConfigType =
|
|
257
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
258
|
+
Required<ClientDefaults> &
|
|
259
|
+
RuntimeExtensionsConfig &
|
|
260
|
+
RegionResolvedConfig &
|
|
261
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
262
|
+
RetryResolvedConfig &
|
|
263
|
+
HostHeaderResolvedConfig &
|
|
264
|
+
AwsAuthResolvedConfig &
|
|
265
|
+
UserAgentResolvedConfig &
|
|
266
|
+
ClientResolvedEndpointParameters;
|
|
267
|
+
export interface B2biClientResolvedConfig
|
|
268
|
+
extends B2biClientResolvedConfigType {}
|
|
269
|
+
export declare class B2biClient extends __Client<
|
|
270
|
+
__HttpHandlerOptions,
|
|
271
|
+
ServiceInputTypes,
|
|
272
|
+
ServiceOutputTypes,
|
|
273
|
+
B2biClientResolvedConfig
|
|
274
|
+
> {
|
|
275
|
+
readonly config: B2biClientResolvedConfig;
|
|
276
|
+
constructor(
|
|
277
|
+
...[configuration]: __CheckOptionalClientConfig<B2biClientConfig>
|
|
278
|
+
);
|
|
279
|
+
destroy(): void;
|
|
280
|
+
}
|
|
@@ -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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateCapabilityRequest,
|
|
16
|
+
CreateCapabilityResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateCapabilityCommandInput extends CreateCapabilityRequest {}
|
|
20
|
+
export interface CreateCapabilityCommandOutput
|
|
21
|
+
extends CreateCapabilityResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateCapabilityCommand extends $Command<
|
|
24
|
+
CreateCapabilityCommandInput,
|
|
25
|
+
CreateCapabilityCommandOutput,
|
|
26
|
+
B2biClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateCapabilityCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateCapabilityCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: B2biClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateCapabilityCommandInput, CreateCapabilityCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
CreatePartnershipRequest,
|
|
16
|
+
CreatePartnershipResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreatePartnershipCommandInput
|
|
20
|
+
extends CreatePartnershipRequest {}
|
|
21
|
+
export interface CreatePartnershipCommandOutput
|
|
22
|
+
extends CreatePartnershipResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreatePartnershipCommand extends $Command<
|
|
25
|
+
CreatePartnershipCommandInput,
|
|
26
|
+
CreatePartnershipCommandOutput,
|
|
27
|
+
B2biClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreatePartnershipCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreatePartnershipCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: B2biClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreatePartnershipCommandInput, CreatePartnershipCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateProfileRequest,
|
|
16
|
+
CreateProfileResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateProfileCommandInput extends CreateProfileRequest {}
|
|
20
|
+
export interface CreateProfileCommandOutput
|
|
21
|
+
extends CreateProfileResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class CreateProfileCommand extends $Command<
|
|
24
|
+
CreateProfileCommandInput,
|
|
25
|
+
CreateProfileCommandOutput,
|
|
26
|
+
B2biClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: CreateProfileCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: CreateProfileCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: B2biClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<CreateProfileCommandInput, CreateProfileCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
CreateTransformerRequest,
|
|
16
|
+
CreateTransformerResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface CreateTransformerCommandInput
|
|
20
|
+
extends CreateTransformerRequest {}
|
|
21
|
+
export interface CreateTransformerCommandOutput
|
|
22
|
+
extends CreateTransformerResponse,
|
|
23
|
+
__MetadataBearer {}
|
|
24
|
+
export declare class CreateTransformerCommand extends $Command<
|
|
25
|
+
CreateTransformerCommandInput,
|
|
26
|
+
CreateTransformerCommandOutput,
|
|
27
|
+
B2biClientResolvedConfig
|
|
28
|
+
> {
|
|
29
|
+
readonly input: CreateTransformerCommandInput;
|
|
30
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
31
|
+
constructor(input: CreateTransformerCommandInput);
|
|
32
|
+
resolveMiddleware(
|
|
33
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
34
|
+
configuration: B2biClientResolvedConfig,
|
|
35
|
+
options?: __HttpHandlerOptions
|
|
36
|
+
): Handler<CreateTransformerCommandInput, CreateTransformerCommandOutput>;
|
|
37
|
+
private serialize;
|
|
38
|
+
private deserialize;
|
|
39
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import { DeleteCapabilityRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteCapabilityCommandInput extends DeleteCapabilityRequest {}
|
|
17
|
+
export interface DeleteCapabilityCommandOutput extends __MetadataBearer {}
|
|
18
|
+
export declare class DeleteCapabilityCommand extends $Command<
|
|
19
|
+
DeleteCapabilityCommandInput,
|
|
20
|
+
DeleteCapabilityCommandOutput,
|
|
21
|
+
B2biClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteCapabilityCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
25
|
+
constructor(input: DeleteCapabilityCommandInput);
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: B2biClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteCapabilityCommandInput, DeleteCapabilityCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import { DeletePartnershipRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeletePartnershipCommandInput
|
|
17
|
+
extends DeletePartnershipRequest {}
|
|
18
|
+
export interface DeletePartnershipCommandOutput extends __MetadataBearer {}
|
|
19
|
+
export declare class DeletePartnershipCommand extends $Command<
|
|
20
|
+
DeletePartnershipCommandInput,
|
|
21
|
+
DeletePartnershipCommandOutput,
|
|
22
|
+
B2biClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeletePartnershipCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeletePartnershipCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: B2biClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeletePartnershipCommandInput, DeletePartnershipCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import { DeleteProfileRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteProfileCommandInput extends DeleteProfileRequest {}
|
|
17
|
+
export interface DeleteProfileCommandOutput extends __MetadataBearer {}
|
|
18
|
+
export declare class DeleteProfileCommand extends $Command<
|
|
19
|
+
DeleteProfileCommandInput,
|
|
20
|
+
DeleteProfileCommandOutput,
|
|
21
|
+
B2biClientResolvedConfig
|
|
22
|
+
> {
|
|
23
|
+
readonly input: DeleteProfileCommandInput;
|
|
24
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
25
|
+
constructor(input: DeleteProfileCommandInput);
|
|
26
|
+
resolveMiddleware(
|
|
27
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
28
|
+
configuration: B2biClientResolvedConfig,
|
|
29
|
+
options?: __HttpHandlerOptions
|
|
30
|
+
): Handler<DeleteProfileCommandInput, DeleteProfileCommandOutput>;
|
|
31
|
+
private serialize;
|
|
32
|
+
private deserialize;
|
|
33
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import { DeleteTransformerRequest } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface DeleteTransformerCommandInput
|
|
17
|
+
extends DeleteTransformerRequest {}
|
|
18
|
+
export interface DeleteTransformerCommandOutput extends __MetadataBearer {}
|
|
19
|
+
export declare class DeleteTransformerCommand extends $Command<
|
|
20
|
+
DeleteTransformerCommandInput,
|
|
21
|
+
DeleteTransformerCommandOutput,
|
|
22
|
+
B2biClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteTransformerCommandInput;
|
|
25
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
26
|
+
constructor(input: DeleteTransformerCommandInput);
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: B2biClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteTransformerCommandInput, DeleteTransformerCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
GetCapabilityRequest,
|
|
16
|
+
GetCapabilityResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetCapabilityCommandInput extends GetCapabilityRequest {}
|
|
20
|
+
export interface GetCapabilityCommandOutput
|
|
21
|
+
extends GetCapabilityResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetCapabilityCommand extends $Command<
|
|
24
|
+
GetCapabilityCommandInput,
|
|
25
|
+
GetCapabilityCommandOutput,
|
|
26
|
+
B2biClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetCapabilityCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetCapabilityCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: B2biClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetCapabilityCommandInput, GetCapabilityCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import {
|
|
15
|
+
GetPartnershipRequest,
|
|
16
|
+
GetPartnershipResponse,
|
|
17
|
+
} from "../models/models_0";
|
|
18
|
+
export { __MetadataBearer, $Command };
|
|
19
|
+
export interface GetPartnershipCommandInput extends GetPartnershipRequest {}
|
|
20
|
+
export interface GetPartnershipCommandOutput
|
|
21
|
+
extends GetPartnershipResponse,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class GetPartnershipCommand extends $Command<
|
|
24
|
+
GetPartnershipCommandInput,
|
|
25
|
+
GetPartnershipCommandOutput,
|
|
26
|
+
B2biClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: GetPartnershipCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: GetPartnershipCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: B2biClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<GetPartnershipCommandInput, GetPartnershipCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
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
|
+
B2biClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../B2biClient";
|
|
14
|
+
import { GetProfileRequest, GetProfileResponse } from "../models/models_0";
|
|
15
|
+
export { __MetadataBearer, $Command };
|
|
16
|
+
export interface GetProfileCommandInput extends GetProfileRequest {}
|
|
17
|
+
export interface GetProfileCommandOutput
|
|
18
|
+
extends GetProfileResponse,
|
|
19
|
+
__MetadataBearer {}
|
|
20
|
+
export declare class GetProfileCommand extends $Command<
|
|
21
|
+
GetProfileCommandInput,
|
|
22
|
+
GetProfileCommandOutput,
|
|
23
|
+
B2biClientResolvedConfig
|
|
24
|
+
> {
|
|
25
|
+
readonly input: GetProfileCommandInput;
|
|
26
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
27
|
+
constructor(input: GetProfileCommandInput);
|
|
28
|
+
resolveMiddleware(
|
|
29
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
30
|
+
configuration: B2biClientResolvedConfig,
|
|
31
|
+
options?: __HttpHandlerOptions
|
|
32
|
+
): Handler<GetProfileCommandInput, GetProfileCommandOutput>;
|
|
33
|
+
private serialize;
|
|
34
|
+
private deserialize;
|
|
35
|
+
}
|