@aws-sdk/client-partnercentral-account 3.1067.0 → 3.1069.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/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +130 -150
- package/dist-cjs/models/PartnerCentralAccountServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +257 -170
- package/package.json +8 -8
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultPartnerCentralAccountHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { AcceptConnectionInvitation$, AssociateAwsTrainingCertificationEmailDomain$, CancelConnection$, CancelConnectionInvitation$, CancelProfileUpdateTask$, CreateConnectionInvitation$, CreatePartner$, DisassociateAwsTrainingCertificationEmailDomain$, GetAllianceLeadContact$, GetConnection$, GetConnectionInvitation$, GetConnectionPreferences$, GetPartner$, GetProfileUpdateTask$, GetProfileVisibility$, GetVerification$, ListConnectionInvitations$, ListConnections$, ListPartners$, ListTagsForResource$, PutAllianceLeadContact$, PutProfileVisibility$, RejectConnectionInvitation$, SendEmailVerificationCode$, StartProfileUpdateTask$, StartVerification$, TagResource$, UntagResource$, UpdateConnectionPreferences$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { PartnerCentralAccountServiceException } = require("./models/PartnerCentralAccountServiceException");
|
|
18
|
+
exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -66,399 +69,399 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
66
69
|
};
|
|
67
70
|
|
|
68
71
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
69
|
-
const extensionConfiguration = Object.assign(
|
|
72
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
70
73
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
71
|
-
return Object.assign(runtimeConfig,
|
|
74
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
72
75
|
};
|
|
73
76
|
|
|
74
|
-
class PartnerCentralAccountClient extends
|
|
77
|
+
class PartnerCentralAccountClient extends Client {
|
|
75
78
|
config;
|
|
76
79
|
constructor(...[configuration]) {
|
|
77
|
-
const _config_0 =
|
|
80
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
78
81
|
super(_config_0);
|
|
79
82
|
this.initConfig = _config_0;
|
|
80
83
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
81
|
-
const _config_2 =
|
|
82
|
-
const _config_3 =
|
|
83
|
-
const _config_4 =
|
|
84
|
-
const _config_5 =
|
|
85
|
-
const _config_6 =
|
|
86
|
-
const _config_7 =
|
|
84
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
85
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
86
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
87
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
88
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
89
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
87
90
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
88
91
|
this.config = _config_8;
|
|
89
|
-
this.middlewareStack.use(
|
|
90
|
-
this.middlewareStack.use(
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
httpAuthSchemeParametersProvider:
|
|
98
|
-
identityProviderConfigProvider: async (config) => new
|
|
92
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
93
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
94
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
100
|
+
httpAuthSchemeParametersProvider: defaultPartnerCentralAccountHttpAuthSchemeParametersProvider,
|
|
101
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
99
102
|
"aws.auth#sigv4": config.credentials,
|
|
100
103
|
}),
|
|
101
104
|
}));
|
|
102
|
-
this.middlewareStack.use(
|
|
105
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
103
106
|
}
|
|
104
107
|
destroy() {
|
|
105
108
|
super.destroy();
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
|
|
109
|
-
class AcceptConnectionInvitationCommand extends
|
|
112
|
+
class AcceptConnectionInvitationCommand extends Command
|
|
110
113
|
.classBuilder()
|
|
111
114
|
.ep(commonParams)
|
|
112
115
|
.m(function (Command, cs, config, o) {
|
|
113
|
-
return [
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
114
117
|
})
|
|
115
118
|
.s("PartnerCentralAccount", "AcceptConnectionInvitation", {})
|
|
116
119
|
.n("PartnerCentralAccountClient", "AcceptConnectionInvitationCommand")
|
|
117
|
-
.sc(
|
|
120
|
+
.sc(AcceptConnectionInvitation$)
|
|
118
121
|
.build() {
|
|
119
122
|
}
|
|
120
123
|
|
|
121
|
-
class AssociateAwsTrainingCertificationEmailDomainCommand extends
|
|
124
|
+
class AssociateAwsTrainingCertificationEmailDomainCommand extends Command
|
|
122
125
|
.classBuilder()
|
|
123
126
|
.ep(commonParams)
|
|
124
127
|
.m(function (Command, cs, config, o) {
|
|
125
|
-
return [
|
|
128
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
126
129
|
})
|
|
127
130
|
.s("PartnerCentralAccount", "AssociateAwsTrainingCertificationEmailDomain", {})
|
|
128
131
|
.n("PartnerCentralAccountClient", "AssociateAwsTrainingCertificationEmailDomainCommand")
|
|
129
|
-
.sc(
|
|
132
|
+
.sc(AssociateAwsTrainingCertificationEmailDomain$)
|
|
130
133
|
.build() {
|
|
131
134
|
}
|
|
132
135
|
|
|
133
|
-
class CancelConnectionCommand extends
|
|
136
|
+
class CancelConnectionCommand extends Command
|
|
134
137
|
.classBuilder()
|
|
135
138
|
.ep(commonParams)
|
|
136
139
|
.m(function (Command, cs, config, o) {
|
|
137
|
-
return [
|
|
140
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
138
141
|
})
|
|
139
142
|
.s("PartnerCentralAccount", "CancelConnection", {})
|
|
140
143
|
.n("PartnerCentralAccountClient", "CancelConnectionCommand")
|
|
141
|
-
.sc(
|
|
144
|
+
.sc(CancelConnection$)
|
|
142
145
|
.build() {
|
|
143
146
|
}
|
|
144
147
|
|
|
145
|
-
class CancelConnectionInvitationCommand extends
|
|
148
|
+
class CancelConnectionInvitationCommand extends Command
|
|
146
149
|
.classBuilder()
|
|
147
150
|
.ep(commonParams)
|
|
148
151
|
.m(function (Command, cs, config, o) {
|
|
149
|
-
return [
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
150
153
|
})
|
|
151
154
|
.s("PartnerCentralAccount", "CancelConnectionInvitation", {})
|
|
152
155
|
.n("PartnerCentralAccountClient", "CancelConnectionInvitationCommand")
|
|
153
|
-
.sc(
|
|
156
|
+
.sc(CancelConnectionInvitation$)
|
|
154
157
|
.build() {
|
|
155
158
|
}
|
|
156
159
|
|
|
157
|
-
class CancelProfileUpdateTaskCommand extends
|
|
160
|
+
class CancelProfileUpdateTaskCommand extends Command
|
|
158
161
|
.classBuilder()
|
|
159
162
|
.ep(commonParams)
|
|
160
163
|
.m(function (Command, cs, config, o) {
|
|
161
|
-
return [
|
|
164
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
162
165
|
})
|
|
163
166
|
.s("PartnerCentralAccount", "CancelProfileUpdateTask", {})
|
|
164
167
|
.n("PartnerCentralAccountClient", "CancelProfileUpdateTaskCommand")
|
|
165
|
-
.sc(
|
|
168
|
+
.sc(CancelProfileUpdateTask$)
|
|
166
169
|
.build() {
|
|
167
170
|
}
|
|
168
171
|
|
|
169
|
-
class CreateConnectionInvitationCommand extends
|
|
172
|
+
class CreateConnectionInvitationCommand extends Command
|
|
170
173
|
.classBuilder()
|
|
171
174
|
.ep(commonParams)
|
|
172
175
|
.m(function (Command, cs, config, o) {
|
|
173
|
-
return [
|
|
176
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
174
177
|
})
|
|
175
178
|
.s("PartnerCentralAccount", "CreateConnectionInvitation", {})
|
|
176
179
|
.n("PartnerCentralAccountClient", "CreateConnectionInvitationCommand")
|
|
177
|
-
.sc(
|
|
180
|
+
.sc(CreateConnectionInvitation$)
|
|
178
181
|
.build() {
|
|
179
182
|
}
|
|
180
183
|
|
|
181
|
-
class CreatePartnerCommand extends
|
|
184
|
+
class CreatePartnerCommand extends Command
|
|
182
185
|
.classBuilder()
|
|
183
186
|
.ep(commonParams)
|
|
184
187
|
.m(function (Command, cs, config, o) {
|
|
185
|
-
return [
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
186
189
|
})
|
|
187
190
|
.s("PartnerCentralAccount", "CreatePartner", {})
|
|
188
191
|
.n("PartnerCentralAccountClient", "CreatePartnerCommand")
|
|
189
|
-
.sc(
|
|
192
|
+
.sc(CreatePartner$)
|
|
190
193
|
.build() {
|
|
191
194
|
}
|
|
192
195
|
|
|
193
|
-
class DisassociateAwsTrainingCertificationEmailDomainCommand extends
|
|
196
|
+
class DisassociateAwsTrainingCertificationEmailDomainCommand extends Command
|
|
194
197
|
.classBuilder()
|
|
195
198
|
.ep(commonParams)
|
|
196
199
|
.m(function (Command, cs, config, o) {
|
|
197
|
-
return [
|
|
200
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
198
201
|
})
|
|
199
202
|
.s("PartnerCentralAccount", "DisassociateAwsTrainingCertificationEmailDomain", {})
|
|
200
203
|
.n("PartnerCentralAccountClient", "DisassociateAwsTrainingCertificationEmailDomainCommand")
|
|
201
|
-
.sc(
|
|
204
|
+
.sc(DisassociateAwsTrainingCertificationEmailDomain$)
|
|
202
205
|
.build() {
|
|
203
206
|
}
|
|
204
207
|
|
|
205
|
-
class GetAllianceLeadContactCommand extends
|
|
208
|
+
class GetAllianceLeadContactCommand extends Command
|
|
206
209
|
.classBuilder()
|
|
207
210
|
.ep(commonParams)
|
|
208
211
|
.m(function (Command, cs, config, o) {
|
|
209
|
-
return [
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
210
213
|
})
|
|
211
214
|
.s("PartnerCentralAccount", "GetAllianceLeadContact", {})
|
|
212
215
|
.n("PartnerCentralAccountClient", "GetAllianceLeadContactCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(GetAllianceLeadContact$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class GetConnectionCommand extends
|
|
220
|
+
class GetConnectionCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep(commonParams)
|
|
220
223
|
.m(function (Command, cs, config, o) {
|
|
221
|
-
return [
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
222
225
|
})
|
|
223
226
|
.s("PartnerCentralAccount", "GetConnection", {})
|
|
224
227
|
.n("PartnerCentralAccountClient", "GetConnectionCommand")
|
|
225
|
-
.sc(
|
|
228
|
+
.sc(GetConnection$)
|
|
226
229
|
.build() {
|
|
227
230
|
}
|
|
228
231
|
|
|
229
|
-
class GetConnectionInvitationCommand extends
|
|
232
|
+
class GetConnectionInvitationCommand extends Command
|
|
230
233
|
.classBuilder()
|
|
231
234
|
.ep(commonParams)
|
|
232
235
|
.m(function (Command, cs, config, o) {
|
|
233
|
-
return [
|
|
236
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
234
237
|
})
|
|
235
238
|
.s("PartnerCentralAccount", "GetConnectionInvitation", {})
|
|
236
239
|
.n("PartnerCentralAccountClient", "GetConnectionInvitationCommand")
|
|
237
|
-
.sc(
|
|
240
|
+
.sc(GetConnectionInvitation$)
|
|
238
241
|
.build() {
|
|
239
242
|
}
|
|
240
243
|
|
|
241
|
-
class GetConnectionPreferencesCommand extends
|
|
244
|
+
class GetConnectionPreferencesCommand extends Command
|
|
242
245
|
.classBuilder()
|
|
243
246
|
.ep(commonParams)
|
|
244
247
|
.m(function (Command, cs, config, o) {
|
|
245
|
-
return [
|
|
248
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
246
249
|
})
|
|
247
250
|
.s("PartnerCentralAccount", "GetConnectionPreferences", {})
|
|
248
251
|
.n("PartnerCentralAccountClient", "GetConnectionPreferencesCommand")
|
|
249
|
-
.sc(
|
|
252
|
+
.sc(GetConnectionPreferences$)
|
|
250
253
|
.build() {
|
|
251
254
|
}
|
|
252
255
|
|
|
253
|
-
class GetPartnerCommand extends
|
|
256
|
+
class GetPartnerCommand extends Command
|
|
254
257
|
.classBuilder()
|
|
255
258
|
.ep(commonParams)
|
|
256
259
|
.m(function (Command, cs, config, o) {
|
|
257
|
-
return [
|
|
260
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
258
261
|
})
|
|
259
262
|
.s("PartnerCentralAccount", "GetPartner", {})
|
|
260
263
|
.n("PartnerCentralAccountClient", "GetPartnerCommand")
|
|
261
|
-
.sc(
|
|
264
|
+
.sc(GetPartner$)
|
|
262
265
|
.build() {
|
|
263
266
|
}
|
|
264
267
|
|
|
265
|
-
class GetProfileUpdateTaskCommand extends
|
|
268
|
+
class GetProfileUpdateTaskCommand extends Command
|
|
266
269
|
.classBuilder()
|
|
267
270
|
.ep(commonParams)
|
|
268
271
|
.m(function (Command, cs, config, o) {
|
|
269
|
-
return [
|
|
272
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
270
273
|
})
|
|
271
274
|
.s("PartnerCentralAccount", "GetProfileUpdateTask", {})
|
|
272
275
|
.n("PartnerCentralAccountClient", "GetProfileUpdateTaskCommand")
|
|
273
|
-
.sc(
|
|
276
|
+
.sc(GetProfileUpdateTask$)
|
|
274
277
|
.build() {
|
|
275
278
|
}
|
|
276
279
|
|
|
277
|
-
class GetProfileVisibilityCommand extends
|
|
280
|
+
class GetProfileVisibilityCommand extends Command
|
|
278
281
|
.classBuilder()
|
|
279
282
|
.ep(commonParams)
|
|
280
283
|
.m(function (Command, cs, config, o) {
|
|
281
|
-
return [
|
|
284
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
282
285
|
})
|
|
283
286
|
.s("PartnerCentralAccount", "GetProfileVisibility", {})
|
|
284
287
|
.n("PartnerCentralAccountClient", "GetProfileVisibilityCommand")
|
|
285
|
-
.sc(
|
|
288
|
+
.sc(GetProfileVisibility$)
|
|
286
289
|
.build() {
|
|
287
290
|
}
|
|
288
291
|
|
|
289
|
-
class GetVerificationCommand extends
|
|
292
|
+
class GetVerificationCommand extends Command
|
|
290
293
|
.classBuilder()
|
|
291
294
|
.ep(commonParams)
|
|
292
295
|
.m(function (Command, cs, config, o) {
|
|
293
|
-
return [
|
|
296
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
294
297
|
})
|
|
295
298
|
.s("PartnerCentralAccount", "GetVerification", {})
|
|
296
299
|
.n("PartnerCentralAccountClient", "GetVerificationCommand")
|
|
297
|
-
.sc(
|
|
300
|
+
.sc(GetVerification$)
|
|
298
301
|
.build() {
|
|
299
302
|
}
|
|
300
303
|
|
|
301
|
-
class ListConnectionInvitationsCommand extends
|
|
304
|
+
class ListConnectionInvitationsCommand extends Command
|
|
302
305
|
.classBuilder()
|
|
303
306
|
.ep(commonParams)
|
|
304
307
|
.m(function (Command, cs, config, o) {
|
|
305
|
-
return [
|
|
308
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
306
309
|
})
|
|
307
310
|
.s("PartnerCentralAccount", "ListConnectionInvitations", {})
|
|
308
311
|
.n("PartnerCentralAccountClient", "ListConnectionInvitationsCommand")
|
|
309
|
-
.sc(
|
|
312
|
+
.sc(ListConnectionInvitations$)
|
|
310
313
|
.build() {
|
|
311
314
|
}
|
|
312
315
|
|
|
313
|
-
class ListConnectionsCommand extends
|
|
316
|
+
class ListConnectionsCommand extends Command
|
|
314
317
|
.classBuilder()
|
|
315
318
|
.ep(commonParams)
|
|
316
319
|
.m(function (Command, cs, config, o) {
|
|
317
|
-
return [
|
|
320
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
318
321
|
})
|
|
319
322
|
.s("PartnerCentralAccount", "ListConnections", {})
|
|
320
323
|
.n("PartnerCentralAccountClient", "ListConnectionsCommand")
|
|
321
|
-
.sc(
|
|
324
|
+
.sc(ListConnections$)
|
|
322
325
|
.build() {
|
|
323
326
|
}
|
|
324
327
|
|
|
325
|
-
class ListPartnersCommand extends
|
|
328
|
+
class ListPartnersCommand extends Command
|
|
326
329
|
.classBuilder()
|
|
327
330
|
.ep(commonParams)
|
|
328
331
|
.m(function (Command, cs, config, o) {
|
|
329
|
-
return [
|
|
332
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
330
333
|
})
|
|
331
334
|
.s("PartnerCentralAccount", "ListPartners", {})
|
|
332
335
|
.n("PartnerCentralAccountClient", "ListPartnersCommand")
|
|
333
|
-
.sc(
|
|
336
|
+
.sc(ListPartners$)
|
|
334
337
|
.build() {
|
|
335
338
|
}
|
|
336
339
|
|
|
337
|
-
class ListTagsForResourceCommand extends
|
|
340
|
+
class ListTagsForResourceCommand extends Command
|
|
338
341
|
.classBuilder()
|
|
339
342
|
.ep(commonParams)
|
|
340
343
|
.m(function (Command, cs, config, o) {
|
|
341
|
-
return [
|
|
344
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
342
345
|
})
|
|
343
346
|
.s("PartnerCentralAccount", "ListTagsForResource", {})
|
|
344
347
|
.n("PartnerCentralAccountClient", "ListTagsForResourceCommand")
|
|
345
|
-
.sc(
|
|
348
|
+
.sc(ListTagsForResource$)
|
|
346
349
|
.build() {
|
|
347
350
|
}
|
|
348
351
|
|
|
349
|
-
class PutAllianceLeadContactCommand extends
|
|
352
|
+
class PutAllianceLeadContactCommand extends Command
|
|
350
353
|
.classBuilder()
|
|
351
354
|
.ep(commonParams)
|
|
352
355
|
.m(function (Command, cs, config, o) {
|
|
353
|
-
return [
|
|
356
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
354
357
|
})
|
|
355
358
|
.s("PartnerCentralAccount", "PutAllianceLeadContact", {})
|
|
356
359
|
.n("PartnerCentralAccountClient", "PutAllianceLeadContactCommand")
|
|
357
|
-
.sc(
|
|
360
|
+
.sc(PutAllianceLeadContact$)
|
|
358
361
|
.build() {
|
|
359
362
|
}
|
|
360
363
|
|
|
361
|
-
class PutProfileVisibilityCommand extends
|
|
364
|
+
class PutProfileVisibilityCommand extends Command
|
|
362
365
|
.classBuilder()
|
|
363
366
|
.ep(commonParams)
|
|
364
367
|
.m(function (Command, cs, config, o) {
|
|
365
|
-
return [
|
|
368
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
366
369
|
})
|
|
367
370
|
.s("PartnerCentralAccount", "PutProfileVisibility", {})
|
|
368
371
|
.n("PartnerCentralAccountClient", "PutProfileVisibilityCommand")
|
|
369
|
-
.sc(
|
|
372
|
+
.sc(PutProfileVisibility$)
|
|
370
373
|
.build() {
|
|
371
374
|
}
|
|
372
375
|
|
|
373
|
-
class RejectConnectionInvitationCommand extends
|
|
376
|
+
class RejectConnectionInvitationCommand extends Command
|
|
374
377
|
.classBuilder()
|
|
375
378
|
.ep(commonParams)
|
|
376
379
|
.m(function (Command, cs, config, o) {
|
|
377
|
-
return [
|
|
380
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
378
381
|
})
|
|
379
382
|
.s("PartnerCentralAccount", "RejectConnectionInvitation", {})
|
|
380
383
|
.n("PartnerCentralAccountClient", "RejectConnectionInvitationCommand")
|
|
381
|
-
.sc(
|
|
384
|
+
.sc(RejectConnectionInvitation$)
|
|
382
385
|
.build() {
|
|
383
386
|
}
|
|
384
387
|
|
|
385
|
-
class SendEmailVerificationCodeCommand extends
|
|
388
|
+
class SendEmailVerificationCodeCommand extends Command
|
|
386
389
|
.classBuilder()
|
|
387
390
|
.ep(commonParams)
|
|
388
391
|
.m(function (Command, cs, config, o) {
|
|
389
|
-
return [
|
|
392
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
390
393
|
})
|
|
391
394
|
.s("PartnerCentralAccount", "SendEmailVerificationCode", {})
|
|
392
395
|
.n("PartnerCentralAccountClient", "SendEmailVerificationCodeCommand")
|
|
393
|
-
.sc(
|
|
396
|
+
.sc(SendEmailVerificationCode$)
|
|
394
397
|
.build() {
|
|
395
398
|
}
|
|
396
399
|
|
|
397
|
-
class StartProfileUpdateTaskCommand extends
|
|
400
|
+
class StartProfileUpdateTaskCommand extends Command
|
|
398
401
|
.classBuilder()
|
|
399
402
|
.ep(commonParams)
|
|
400
403
|
.m(function (Command, cs, config, o) {
|
|
401
|
-
return [
|
|
404
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
402
405
|
})
|
|
403
406
|
.s("PartnerCentralAccount", "StartProfileUpdateTask", {})
|
|
404
407
|
.n("PartnerCentralAccountClient", "StartProfileUpdateTaskCommand")
|
|
405
|
-
.sc(
|
|
408
|
+
.sc(StartProfileUpdateTask$)
|
|
406
409
|
.build() {
|
|
407
410
|
}
|
|
408
411
|
|
|
409
|
-
class StartVerificationCommand extends
|
|
412
|
+
class StartVerificationCommand extends Command
|
|
410
413
|
.classBuilder()
|
|
411
414
|
.ep(commonParams)
|
|
412
415
|
.m(function (Command, cs, config, o) {
|
|
413
|
-
return [
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
414
417
|
})
|
|
415
418
|
.s("PartnerCentralAccount", "StartVerification", {})
|
|
416
419
|
.n("PartnerCentralAccountClient", "StartVerificationCommand")
|
|
417
|
-
.sc(
|
|
420
|
+
.sc(StartVerification$)
|
|
418
421
|
.build() {
|
|
419
422
|
}
|
|
420
423
|
|
|
421
|
-
class TagResourceCommand extends
|
|
424
|
+
class TagResourceCommand extends Command
|
|
422
425
|
.classBuilder()
|
|
423
426
|
.ep(commonParams)
|
|
424
427
|
.m(function (Command, cs, config, o) {
|
|
425
|
-
return [
|
|
428
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
426
429
|
})
|
|
427
430
|
.s("PartnerCentralAccount", "TagResource", {})
|
|
428
431
|
.n("PartnerCentralAccountClient", "TagResourceCommand")
|
|
429
|
-
.sc(
|
|
432
|
+
.sc(TagResource$)
|
|
430
433
|
.build() {
|
|
431
434
|
}
|
|
432
435
|
|
|
433
|
-
class UntagResourceCommand extends
|
|
436
|
+
class UntagResourceCommand extends Command
|
|
434
437
|
.classBuilder()
|
|
435
438
|
.ep(commonParams)
|
|
436
439
|
.m(function (Command, cs, config, o) {
|
|
437
|
-
return [
|
|
440
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
438
441
|
})
|
|
439
442
|
.s("PartnerCentralAccount", "UntagResource", {})
|
|
440
443
|
.n("PartnerCentralAccountClient", "UntagResourceCommand")
|
|
441
|
-
.sc(
|
|
444
|
+
.sc(UntagResource$)
|
|
442
445
|
.build() {
|
|
443
446
|
}
|
|
444
447
|
|
|
445
|
-
class UpdateConnectionPreferencesCommand extends
|
|
448
|
+
class UpdateConnectionPreferencesCommand extends Command
|
|
446
449
|
.classBuilder()
|
|
447
450
|
.ep(commonParams)
|
|
448
451
|
.m(function (Command, cs, config, o) {
|
|
449
|
-
return [
|
|
452
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
450
453
|
})
|
|
451
454
|
.s("PartnerCentralAccount", "UpdateConnectionPreferences", {})
|
|
452
455
|
.n("PartnerCentralAccountClient", "UpdateConnectionPreferencesCommand")
|
|
453
|
-
.sc(
|
|
456
|
+
.sc(UpdateConnectionPreferences$)
|
|
454
457
|
.build() {
|
|
455
458
|
}
|
|
456
459
|
|
|
457
|
-
const paginateListConnectionInvitations =
|
|
460
|
+
const paginateListConnectionInvitations = createPaginator(PartnerCentralAccountClient, ListConnectionInvitationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
458
461
|
|
|
459
|
-
const paginateListConnections =
|
|
462
|
+
const paginateListConnections = createPaginator(PartnerCentralAccountClient, ListConnectionsCommand, "NextToken", "NextToken", "MaxResults");
|
|
460
463
|
|
|
461
|
-
const paginateListPartners =
|
|
464
|
+
const paginateListPartners = createPaginator(PartnerCentralAccountClient, ListPartnersCommand, "NextToken", "NextToken", "");
|
|
462
465
|
|
|
463
466
|
const commands = {
|
|
464
467
|
AcceptConnectionInvitationCommand,
|
|
@@ -498,7 +501,7 @@ const paginators = {
|
|
|
498
501
|
};
|
|
499
502
|
class PartnerCentralAccount extends PartnerCentralAccountClient {
|
|
500
503
|
}
|
|
501
|
-
|
|
504
|
+
createAggregatedClient(commands, PartnerCentralAccount, { paginators });
|
|
502
505
|
|
|
503
506
|
const ConnectionType = {
|
|
504
507
|
OPPORTUNITY_COLLABORATION: "OPPORTUNITY_COLLABORATION",
|
|
@@ -665,9 +668,6 @@ const VerificationStatus = {
|
|
|
665
668
|
SUCCEEDED: "SUCCEEDED",
|
|
666
669
|
};
|
|
667
670
|
|
|
668
|
-
exports.$Command = client.Command;
|
|
669
|
-
exports.__Client = client.Client;
|
|
670
|
-
exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException.PartnerCentralAccountServiceException;
|
|
671
671
|
exports.AcceptConnectionInvitationCommand = AcceptConnectionInvitationCommand;
|
|
672
672
|
exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
|
|
673
673
|
exports.AccessType = AccessType;
|
|
@@ -721,23 +721,3 @@ exports.VerificationType = VerificationType;
|
|
|
721
721
|
exports.paginateListConnectionInvitations = paginateListConnectionInvitations;
|
|
722
722
|
exports.paginateListConnections = paginateListConnections;
|
|
723
723
|
exports.paginateListPartners = paginateListPartners;
|
|
724
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
725
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
726
|
-
Object.defineProperty(exports, '__proto__', {
|
|
727
|
-
enumerable: true,
|
|
728
|
-
value: schemas_0['__proto__']
|
|
729
|
-
});
|
|
730
|
-
|
|
731
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
732
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
733
|
-
});
|
|
734
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
735
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
736
|
-
Object.defineProperty(exports, '__proto__', {
|
|
737
|
-
enumerable: true,
|
|
738
|
-
value: errors['__proto__']
|
|
739
|
-
});
|
|
740
|
-
|
|
741
|
-
Object.keys(errors).forEach(function (k) {
|
|
742
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
743
|
-
});
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.PartnerCentralAccountServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class PartnerCentralAccountServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.PartnerCentralAccountServiceException = class PartnerCentralAccountServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, PartnerCentralAccountServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException;
|
|
8
|
+
};
|