@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,464 @@
|
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { B2biClient } from "./B2biClient";
|
|
3
|
+
import {
|
|
4
|
+
CreateCapabilityCommandInput,
|
|
5
|
+
CreateCapabilityCommandOutput,
|
|
6
|
+
} from "./commands/CreateCapabilityCommand";
|
|
7
|
+
import {
|
|
8
|
+
CreatePartnershipCommandInput,
|
|
9
|
+
CreatePartnershipCommandOutput,
|
|
10
|
+
} from "./commands/CreatePartnershipCommand";
|
|
11
|
+
import {
|
|
12
|
+
CreateProfileCommandInput,
|
|
13
|
+
CreateProfileCommandOutput,
|
|
14
|
+
} from "./commands/CreateProfileCommand";
|
|
15
|
+
import {
|
|
16
|
+
CreateTransformerCommandInput,
|
|
17
|
+
CreateTransformerCommandOutput,
|
|
18
|
+
} from "./commands/CreateTransformerCommand";
|
|
19
|
+
import {
|
|
20
|
+
DeleteCapabilityCommandInput,
|
|
21
|
+
DeleteCapabilityCommandOutput,
|
|
22
|
+
} from "./commands/DeleteCapabilityCommand";
|
|
23
|
+
import {
|
|
24
|
+
DeletePartnershipCommandInput,
|
|
25
|
+
DeletePartnershipCommandOutput,
|
|
26
|
+
} from "./commands/DeletePartnershipCommand";
|
|
27
|
+
import {
|
|
28
|
+
DeleteProfileCommandInput,
|
|
29
|
+
DeleteProfileCommandOutput,
|
|
30
|
+
} from "./commands/DeleteProfileCommand";
|
|
31
|
+
import {
|
|
32
|
+
DeleteTransformerCommandInput,
|
|
33
|
+
DeleteTransformerCommandOutput,
|
|
34
|
+
} from "./commands/DeleteTransformerCommand";
|
|
35
|
+
import {
|
|
36
|
+
GetCapabilityCommandInput,
|
|
37
|
+
GetCapabilityCommandOutput,
|
|
38
|
+
} from "./commands/GetCapabilityCommand";
|
|
39
|
+
import {
|
|
40
|
+
GetPartnershipCommandInput,
|
|
41
|
+
GetPartnershipCommandOutput,
|
|
42
|
+
} from "./commands/GetPartnershipCommand";
|
|
43
|
+
import {
|
|
44
|
+
GetProfileCommandInput,
|
|
45
|
+
GetProfileCommandOutput,
|
|
46
|
+
} from "./commands/GetProfileCommand";
|
|
47
|
+
import {
|
|
48
|
+
GetTransformerCommandInput,
|
|
49
|
+
GetTransformerCommandOutput,
|
|
50
|
+
} from "./commands/GetTransformerCommand";
|
|
51
|
+
import {
|
|
52
|
+
GetTransformerJobCommandInput,
|
|
53
|
+
GetTransformerJobCommandOutput,
|
|
54
|
+
} from "./commands/GetTransformerJobCommand";
|
|
55
|
+
import {
|
|
56
|
+
ListCapabilitiesCommandInput,
|
|
57
|
+
ListCapabilitiesCommandOutput,
|
|
58
|
+
} from "./commands/ListCapabilitiesCommand";
|
|
59
|
+
import {
|
|
60
|
+
ListPartnershipsCommandInput,
|
|
61
|
+
ListPartnershipsCommandOutput,
|
|
62
|
+
} from "./commands/ListPartnershipsCommand";
|
|
63
|
+
import {
|
|
64
|
+
ListProfilesCommandInput,
|
|
65
|
+
ListProfilesCommandOutput,
|
|
66
|
+
} from "./commands/ListProfilesCommand";
|
|
67
|
+
import {
|
|
68
|
+
ListTagsForResourceCommandInput,
|
|
69
|
+
ListTagsForResourceCommandOutput,
|
|
70
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
71
|
+
import {
|
|
72
|
+
ListTransformersCommandInput,
|
|
73
|
+
ListTransformersCommandOutput,
|
|
74
|
+
} from "./commands/ListTransformersCommand";
|
|
75
|
+
import {
|
|
76
|
+
StartTransformerJobCommandInput,
|
|
77
|
+
StartTransformerJobCommandOutput,
|
|
78
|
+
} from "./commands/StartTransformerJobCommand";
|
|
79
|
+
import {
|
|
80
|
+
TagResourceCommandInput,
|
|
81
|
+
TagResourceCommandOutput,
|
|
82
|
+
} from "./commands/TagResourceCommand";
|
|
83
|
+
import {
|
|
84
|
+
TestMappingCommandInput,
|
|
85
|
+
TestMappingCommandOutput,
|
|
86
|
+
} from "./commands/TestMappingCommand";
|
|
87
|
+
import {
|
|
88
|
+
TestParsingCommandInput,
|
|
89
|
+
TestParsingCommandOutput,
|
|
90
|
+
} from "./commands/TestParsingCommand";
|
|
91
|
+
import {
|
|
92
|
+
UntagResourceCommandInput,
|
|
93
|
+
UntagResourceCommandOutput,
|
|
94
|
+
} from "./commands/UntagResourceCommand";
|
|
95
|
+
import {
|
|
96
|
+
UpdateCapabilityCommandInput,
|
|
97
|
+
UpdateCapabilityCommandOutput,
|
|
98
|
+
} from "./commands/UpdateCapabilityCommand";
|
|
99
|
+
import {
|
|
100
|
+
UpdatePartnershipCommandInput,
|
|
101
|
+
UpdatePartnershipCommandOutput,
|
|
102
|
+
} from "./commands/UpdatePartnershipCommand";
|
|
103
|
+
import {
|
|
104
|
+
UpdateProfileCommandInput,
|
|
105
|
+
UpdateProfileCommandOutput,
|
|
106
|
+
} from "./commands/UpdateProfileCommand";
|
|
107
|
+
import {
|
|
108
|
+
UpdateTransformerCommandInput,
|
|
109
|
+
UpdateTransformerCommandOutput,
|
|
110
|
+
} from "./commands/UpdateTransformerCommand";
|
|
111
|
+
export interface B2bi {
|
|
112
|
+
createCapability(
|
|
113
|
+
args: CreateCapabilityCommandInput,
|
|
114
|
+
options?: __HttpHandlerOptions
|
|
115
|
+
): Promise<CreateCapabilityCommandOutput>;
|
|
116
|
+
createCapability(
|
|
117
|
+
args: CreateCapabilityCommandInput,
|
|
118
|
+
cb: (err: any, data?: CreateCapabilityCommandOutput) => void
|
|
119
|
+
): void;
|
|
120
|
+
createCapability(
|
|
121
|
+
args: CreateCapabilityCommandInput,
|
|
122
|
+
options: __HttpHandlerOptions,
|
|
123
|
+
cb: (err: any, data?: CreateCapabilityCommandOutput) => void
|
|
124
|
+
): void;
|
|
125
|
+
createPartnership(
|
|
126
|
+
args: CreatePartnershipCommandInput,
|
|
127
|
+
options?: __HttpHandlerOptions
|
|
128
|
+
): Promise<CreatePartnershipCommandOutput>;
|
|
129
|
+
createPartnership(
|
|
130
|
+
args: CreatePartnershipCommandInput,
|
|
131
|
+
cb: (err: any, data?: CreatePartnershipCommandOutput) => void
|
|
132
|
+
): void;
|
|
133
|
+
createPartnership(
|
|
134
|
+
args: CreatePartnershipCommandInput,
|
|
135
|
+
options: __HttpHandlerOptions,
|
|
136
|
+
cb: (err: any, data?: CreatePartnershipCommandOutput) => void
|
|
137
|
+
): void;
|
|
138
|
+
createProfile(
|
|
139
|
+
args: CreateProfileCommandInput,
|
|
140
|
+
options?: __HttpHandlerOptions
|
|
141
|
+
): Promise<CreateProfileCommandOutput>;
|
|
142
|
+
createProfile(
|
|
143
|
+
args: CreateProfileCommandInput,
|
|
144
|
+
cb: (err: any, data?: CreateProfileCommandOutput) => void
|
|
145
|
+
): void;
|
|
146
|
+
createProfile(
|
|
147
|
+
args: CreateProfileCommandInput,
|
|
148
|
+
options: __HttpHandlerOptions,
|
|
149
|
+
cb: (err: any, data?: CreateProfileCommandOutput) => void
|
|
150
|
+
): void;
|
|
151
|
+
createTransformer(
|
|
152
|
+
args: CreateTransformerCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<CreateTransformerCommandOutput>;
|
|
155
|
+
createTransformer(
|
|
156
|
+
args: CreateTransformerCommandInput,
|
|
157
|
+
cb: (err: any, data?: CreateTransformerCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
createTransformer(
|
|
160
|
+
args: CreateTransformerCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: CreateTransformerCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
deleteCapability(
|
|
165
|
+
args: DeleteCapabilityCommandInput,
|
|
166
|
+
options?: __HttpHandlerOptions
|
|
167
|
+
): Promise<DeleteCapabilityCommandOutput>;
|
|
168
|
+
deleteCapability(
|
|
169
|
+
args: DeleteCapabilityCommandInput,
|
|
170
|
+
cb: (err: any, data?: DeleteCapabilityCommandOutput) => void
|
|
171
|
+
): void;
|
|
172
|
+
deleteCapability(
|
|
173
|
+
args: DeleteCapabilityCommandInput,
|
|
174
|
+
options: __HttpHandlerOptions,
|
|
175
|
+
cb: (err: any, data?: DeleteCapabilityCommandOutput) => void
|
|
176
|
+
): void;
|
|
177
|
+
deletePartnership(
|
|
178
|
+
args: DeletePartnershipCommandInput,
|
|
179
|
+
options?: __HttpHandlerOptions
|
|
180
|
+
): Promise<DeletePartnershipCommandOutput>;
|
|
181
|
+
deletePartnership(
|
|
182
|
+
args: DeletePartnershipCommandInput,
|
|
183
|
+
cb: (err: any, data?: DeletePartnershipCommandOutput) => void
|
|
184
|
+
): void;
|
|
185
|
+
deletePartnership(
|
|
186
|
+
args: DeletePartnershipCommandInput,
|
|
187
|
+
options: __HttpHandlerOptions,
|
|
188
|
+
cb: (err: any, data?: DeletePartnershipCommandOutput) => void
|
|
189
|
+
): void;
|
|
190
|
+
deleteProfile(
|
|
191
|
+
args: DeleteProfileCommandInput,
|
|
192
|
+
options?: __HttpHandlerOptions
|
|
193
|
+
): Promise<DeleteProfileCommandOutput>;
|
|
194
|
+
deleteProfile(
|
|
195
|
+
args: DeleteProfileCommandInput,
|
|
196
|
+
cb: (err: any, data?: DeleteProfileCommandOutput) => void
|
|
197
|
+
): void;
|
|
198
|
+
deleteProfile(
|
|
199
|
+
args: DeleteProfileCommandInput,
|
|
200
|
+
options: __HttpHandlerOptions,
|
|
201
|
+
cb: (err: any, data?: DeleteProfileCommandOutput) => void
|
|
202
|
+
): void;
|
|
203
|
+
deleteTransformer(
|
|
204
|
+
args: DeleteTransformerCommandInput,
|
|
205
|
+
options?: __HttpHandlerOptions
|
|
206
|
+
): Promise<DeleteTransformerCommandOutput>;
|
|
207
|
+
deleteTransformer(
|
|
208
|
+
args: DeleteTransformerCommandInput,
|
|
209
|
+
cb: (err: any, data?: DeleteTransformerCommandOutput) => void
|
|
210
|
+
): void;
|
|
211
|
+
deleteTransformer(
|
|
212
|
+
args: DeleteTransformerCommandInput,
|
|
213
|
+
options: __HttpHandlerOptions,
|
|
214
|
+
cb: (err: any, data?: DeleteTransformerCommandOutput) => void
|
|
215
|
+
): void;
|
|
216
|
+
getCapability(
|
|
217
|
+
args: GetCapabilityCommandInput,
|
|
218
|
+
options?: __HttpHandlerOptions
|
|
219
|
+
): Promise<GetCapabilityCommandOutput>;
|
|
220
|
+
getCapability(
|
|
221
|
+
args: GetCapabilityCommandInput,
|
|
222
|
+
cb: (err: any, data?: GetCapabilityCommandOutput) => void
|
|
223
|
+
): void;
|
|
224
|
+
getCapability(
|
|
225
|
+
args: GetCapabilityCommandInput,
|
|
226
|
+
options: __HttpHandlerOptions,
|
|
227
|
+
cb: (err: any, data?: GetCapabilityCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
getPartnership(
|
|
230
|
+
args: GetPartnershipCommandInput,
|
|
231
|
+
options?: __HttpHandlerOptions
|
|
232
|
+
): Promise<GetPartnershipCommandOutput>;
|
|
233
|
+
getPartnership(
|
|
234
|
+
args: GetPartnershipCommandInput,
|
|
235
|
+
cb: (err: any, data?: GetPartnershipCommandOutput) => void
|
|
236
|
+
): void;
|
|
237
|
+
getPartnership(
|
|
238
|
+
args: GetPartnershipCommandInput,
|
|
239
|
+
options: __HttpHandlerOptions,
|
|
240
|
+
cb: (err: any, data?: GetPartnershipCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
getProfile(
|
|
243
|
+
args: GetProfileCommandInput,
|
|
244
|
+
options?: __HttpHandlerOptions
|
|
245
|
+
): Promise<GetProfileCommandOutput>;
|
|
246
|
+
getProfile(
|
|
247
|
+
args: GetProfileCommandInput,
|
|
248
|
+
cb: (err: any, data?: GetProfileCommandOutput) => void
|
|
249
|
+
): void;
|
|
250
|
+
getProfile(
|
|
251
|
+
args: GetProfileCommandInput,
|
|
252
|
+
options: __HttpHandlerOptions,
|
|
253
|
+
cb: (err: any, data?: GetProfileCommandOutput) => void
|
|
254
|
+
): void;
|
|
255
|
+
getTransformer(
|
|
256
|
+
args: GetTransformerCommandInput,
|
|
257
|
+
options?: __HttpHandlerOptions
|
|
258
|
+
): Promise<GetTransformerCommandOutput>;
|
|
259
|
+
getTransformer(
|
|
260
|
+
args: GetTransformerCommandInput,
|
|
261
|
+
cb: (err: any, data?: GetTransformerCommandOutput) => void
|
|
262
|
+
): void;
|
|
263
|
+
getTransformer(
|
|
264
|
+
args: GetTransformerCommandInput,
|
|
265
|
+
options: __HttpHandlerOptions,
|
|
266
|
+
cb: (err: any, data?: GetTransformerCommandOutput) => void
|
|
267
|
+
): void;
|
|
268
|
+
getTransformerJob(
|
|
269
|
+
args: GetTransformerJobCommandInput,
|
|
270
|
+
options?: __HttpHandlerOptions
|
|
271
|
+
): Promise<GetTransformerJobCommandOutput>;
|
|
272
|
+
getTransformerJob(
|
|
273
|
+
args: GetTransformerJobCommandInput,
|
|
274
|
+
cb: (err: any, data?: GetTransformerJobCommandOutput) => void
|
|
275
|
+
): void;
|
|
276
|
+
getTransformerJob(
|
|
277
|
+
args: GetTransformerJobCommandInput,
|
|
278
|
+
options: __HttpHandlerOptions,
|
|
279
|
+
cb: (err: any, data?: GetTransformerJobCommandOutput) => void
|
|
280
|
+
): void;
|
|
281
|
+
listCapabilities(
|
|
282
|
+
args: ListCapabilitiesCommandInput,
|
|
283
|
+
options?: __HttpHandlerOptions
|
|
284
|
+
): Promise<ListCapabilitiesCommandOutput>;
|
|
285
|
+
listCapabilities(
|
|
286
|
+
args: ListCapabilitiesCommandInput,
|
|
287
|
+
cb: (err: any, data?: ListCapabilitiesCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
listCapabilities(
|
|
290
|
+
args: ListCapabilitiesCommandInput,
|
|
291
|
+
options: __HttpHandlerOptions,
|
|
292
|
+
cb: (err: any, data?: ListCapabilitiesCommandOutput) => void
|
|
293
|
+
): void;
|
|
294
|
+
listPartnerships(
|
|
295
|
+
args: ListPartnershipsCommandInput,
|
|
296
|
+
options?: __HttpHandlerOptions
|
|
297
|
+
): Promise<ListPartnershipsCommandOutput>;
|
|
298
|
+
listPartnerships(
|
|
299
|
+
args: ListPartnershipsCommandInput,
|
|
300
|
+
cb: (err: any, data?: ListPartnershipsCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
listPartnerships(
|
|
303
|
+
args: ListPartnershipsCommandInput,
|
|
304
|
+
options: __HttpHandlerOptions,
|
|
305
|
+
cb: (err: any, data?: ListPartnershipsCommandOutput) => void
|
|
306
|
+
): void;
|
|
307
|
+
listProfiles(
|
|
308
|
+
args: ListProfilesCommandInput,
|
|
309
|
+
options?: __HttpHandlerOptions
|
|
310
|
+
): Promise<ListProfilesCommandOutput>;
|
|
311
|
+
listProfiles(
|
|
312
|
+
args: ListProfilesCommandInput,
|
|
313
|
+
cb: (err: any, data?: ListProfilesCommandOutput) => void
|
|
314
|
+
): void;
|
|
315
|
+
listProfiles(
|
|
316
|
+
args: ListProfilesCommandInput,
|
|
317
|
+
options: __HttpHandlerOptions,
|
|
318
|
+
cb: (err: any, data?: ListProfilesCommandOutput) => void
|
|
319
|
+
): void;
|
|
320
|
+
listTagsForResource(
|
|
321
|
+
args: ListTagsForResourceCommandInput,
|
|
322
|
+
options?: __HttpHandlerOptions
|
|
323
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
324
|
+
listTagsForResource(
|
|
325
|
+
args: ListTagsForResourceCommandInput,
|
|
326
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
327
|
+
): void;
|
|
328
|
+
listTagsForResource(
|
|
329
|
+
args: ListTagsForResourceCommandInput,
|
|
330
|
+
options: __HttpHandlerOptions,
|
|
331
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
listTransformers(
|
|
334
|
+
args: ListTransformersCommandInput,
|
|
335
|
+
options?: __HttpHandlerOptions
|
|
336
|
+
): Promise<ListTransformersCommandOutput>;
|
|
337
|
+
listTransformers(
|
|
338
|
+
args: ListTransformersCommandInput,
|
|
339
|
+
cb: (err: any, data?: ListTransformersCommandOutput) => void
|
|
340
|
+
): void;
|
|
341
|
+
listTransformers(
|
|
342
|
+
args: ListTransformersCommandInput,
|
|
343
|
+
options: __HttpHandlerOptions,
|
|
344
|
+
cb: (err: any, data?: ListTransformersCommandOutput) => void
|
|
345
|
+
): void;
|
|
346
|
+
startTransformerJob(
|
|
347
|
+
args: StartTransformerJobCommandInput,
|
|
348
|
+
options?: __HttpHandlerOptions
|
|
349
|
+
): Promise<StartTransformerJobCommandOutput>;
|
|
350
|
+
startTransformerJob(
|
|
351
|
+
args: StartTransformerJobCommandInput,
|
|
352
|
+
cb: (err: any, data?: StartTransformerJobCommandOutput) => void
|
|
353
|
+
): void;
|
|
354
|
+
startTransformerJob(
|
|
355
|
+
args: StartTransformerJobCommandInput,
|
|
356
|
+
options: __HttpHandlerOptions,
|
|
357
|
+
cb: (err: any, data?: StartTransformerJobCommandOutput) => void
|
|
358
|
+
): void;
|
|
359
|
+
tagResource(
|
|
360
|
+
args: TagResourceCommandInput,
|
|
361
|
+
options?: __HttpHandlerOptions
|
|
362
|
+
): Promise<TagResourceCommandOutput>;
|
|
363
|
+
tagResource(
|
|
364
|
+
args: TagResourceCommandInput,
|
|
365
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
366
|
+
): void;
|
|
367
|
+
tagResource(
|
|
368
|
+
args: TagResourceCommandInput,
|
|
369
|
+
options: __HttpHandlerOptions,
|
|
370
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
371
|
+
): void;
|
|
372
|
+
testMapping(
|
|
373
|
+
args: TestMappingCommandInput,
|
|
374
|
+
options?: __HttpHandlerOptions
|
|
375
|
+
): Promise<TestMappingCommandOutput>;
|
|
376
|
+
testMapping(
|
|
377
|
+
args: TestMappingCommandInput,
|
|
378
|
+
cb: (err: any, data?: TestMappingCommandOutput) => void
|
|
379
|
+
): void;
|
|
380
|
+
testMapping(
|
|
381
|
+
args: TestMappingCommandInput,
|
|
382
|
+
options: __HttpHandlerOptions,
|
|
383
|
+
cb: (err: any, data?: TestMappingCommandOutput) => void
|
|
384
|
+
): void;
|
|
385
|
+
testParsing(
|
|
386
|
+
args: TestParsingCommandInput,
|
|
387
|
+
options?: __HttpHandlerOptions
|
|
388
|
+
): Promise<TestParsingCommandOutput>;
|
|
389
|
+
testParsing(
|
|
390
|
+
args: TestParsingCommandInput,
|
|
391
|
+
cb: (err: any, data?: TestParsingCommandOutput) => void
|
|
392
|
+
): void;
|
|
393
|
+
testParsing(
|
|
394
|
+
args: TestParsingCommandInput,
|
|
395
|
+
options: __HttpHandlerOptions,
|
|
396
|
+
cb: (err: any, data?: TestParsingCommandOutput) => void
|
|
397
|
+
): void;
|
|
398
|
+
untagResource(
|
|
399
|
+
args: UntagResourceCommandInput,
|
|
400
|
+
options?: __HttpHandlerOptions
|
|
401
|
+
): Promise<UntagResourceCommandOutput>;
|
|
402
|
+
untagResource(
|
|
403
|
+
args: UntagResourceCommandInput,
|
|
404
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
405
|
+
): void;
|
|
406
|
+
untagResource(
|
|
407
|
+
args: UntagResourceCommandInput,
|
|
408
|
+
options: __HttpHandlerOptions,
|
|
409
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
410
|
+
): void;
|
|
411
|
+
updateCapability(
|
|
412
|
+
args: UpdateCapabilityCommandInput,
|
|
413
|
+
options?: __HttpHandlerOptions
|
|
414
|
+
): Promise<UpdateCapabilityCommandOutput>;
|
|
415
|
+
updateCapability(
|
|
416
|
+
args: UpdateCapabilityCommandInput,
|
|
417
|
+
cb: (err: any, data?: UpdateCapabilityCommandOutput) => void
|
|
418
|
+
): void;
|
|
419
|
+
updateCapability(
|
|
420
|
+
args: UpdateCapabilityCommandInput,
|
|
421
|
+
options: __HttpHandlerOptions,
|
|
422
|
+
cb: (err: any, data?: UpdateCapabilityCommandOutput) => void
|
|
423
|
+
): void;
|
|
424
|
+
updatePartnership(
|
|
425
|
+
args: UpdatePartnershipCommandInput,
|
|
426
|
+
options?: __HttpHandlerOptions
|
|
427
|
+
): Promise<UpdatePartnershipCommandOutput>;
|
|
428
|
+
updatePartnership(
|
|
429
|
+
args: UpdatePartnershipCommandInput,
|
|
430
|
+
cb: (err: any, data?: UpdatePartnershipCommandOutput) => void
|
|
431
|
+
): void;
|
|
432
|
+
updatePartnership(
|
|
433
|
+
args: UpdatePartnershipCommandInput,
|
|
434
|
+
options: __HttpHandlerOptions,
|
|
435
|
+
cb: (err: any, data?: UpdatePartnershipCommandOutput) => void
|
|
436
|
+
): void;
|
|
437
|
+
updateProfile(
|
|
438
|
+
args: UpdateProfileCommandInput,
|
|
439
|
+
options?: __HttpHandlerOptions
|
|
440
|
+
): Promise<UpdateProfileCommandOutput>;
|
|
441
|
+
updateProfile(
|
|
442
|
+
args: UpdateProfileCommandInput,
|
|
443
|
+
cb: (err: any, data?: UpdateProfileCommandOutput) => void
|
|
444
|
+
): void;
|
|
445
|
+
updateProfile(
|
|
446
|
+
args: UpdateProfileCommandInput,
|
|
447
|
+
options: __HttpHandlerOptions,
|
|
448
|
+
cb: (err: any, data?: UpdateProfileCommandOutput) => void
|
|
449
|
+
): void;
|
|
450
|
+
updateTransformer(
|
|
451
|
+
args: UpdateTransformerCommandInput,
|
|
452
|
+
options?: __HttpHandlerOptions
|
|
453
|
+
): Promise<UpdateTransformerCommandOutput>;
|
|
454
|
+
updateTransformer(
|
|
455
|
+
args: UpdateTransformerCommandInput,
|
|
456
|
+
cb: (err: any, data?: UpdateTransformerCommandOutput) => void
|
|
457
|
+
): void;
|
|
458
|
+
updateTransformer(
|
|
459
|
+
args: UpdateTransformerCommandInput,
|
|
460
|
+
options: __HttpHandlerOptions,
|
|
461
|
+
cb: (err: any, data?: UpdateTransformerCommandOutput) => void
|
|
462
|
+
): void;
|
|
463
|
+
}
|
|
464
|
+
export declare class B2bi extends B2biClient implements B2bi {}
|