@aws-sdk/client-partnercentral-account 3.1075.0 → 3.1077.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/index.js +1228 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/PartnerCentralAccountServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -117
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -908
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,58 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
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 {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultPartnerCentralAccountHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "partnercentral-account",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultPartnerCentralAccountHttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -29,6 +66,1052 @@ const commonParams = {
|
|
|
29
66
|
Region: { type: "builtInParams", name: "region" },
|
|
30
67
|
};
|
|
31
68
|
|
|
69
|
+
var version = "3.1076.0";
|
|
70
|
+
var packageInfo = {
|
|
71
|
+
version: version};
|
|
72
|
+
|
|
73
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
74
|
+
const _data = {
|
|
75
|
+
conditions: [
|
|
76
|
+
[a, [b]],
|
|
77
|
+
[a, c],
|
|
78
|
+
["aws.partition", c, "PartitionResult"],
|
|
79
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
80
|
+
],
|
|
81
|
+
results: [
|
|
82
|
+
[-1],
|
|
83
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
84
|
+
[b, {}],
|
|
85
|
+
["https://partnercentral-account-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
["https://partnercentral-account.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
87
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
88
|
+
]
|
|
89
|
+
};
|
|
90
|
+
const root = 2;
|
|
91
|
+
const r = 100_000_000;
|
|
92
|
+
const nodes = new Int32Array([
|
|
93
|
+
-1, 1, -1,
|
|
94
|
+
0, 6, 3,
|
|
95
|
+
1, 4, r + 5,
|
|
96
|
+
2, 5, r + 5,
|
|
97
|
+
3, r + 3, r + 4,
|
|
98
|
+
3, r + 1, r + 2,
|
|
99
|
+
]);
|
|
100
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
101
|
+
|
|
102
|
+
const cache = new EndpointCache({
|
|
103
|
+
size: 50,
|
|
104
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
105
|
+
});
|
|
106
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
107
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
108
|
+
endpointParams: endpointParams,
|
|
109
|
+
logger: context.logger,
|
|
110
|
+
}));
|
|
111
|
+
};
|
|
112
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
113
|
+
|
|
114
|
+
class PartnerCentralAccountServiceException extends ServiceException {
|
|
115
|
+
constructor(options) {
|
|
116
|
+
super(options);
|
|
117
|
+
Object.setPrototypeOf(this, PartnerCentralAccountServiceException.prototype);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
class AccessDeniedException extends PartnerCentralAccountServiceException {
|
|
122
|
+
name = "AccessDeniedException";
|
|
123
|
+
$fault = "client";
|
|
124
|
+
Message;
|
|
125
|
+
Reason;
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "AccessDeniedException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
133
|
+
this.Message = opts.Message;
|
|
134
|
+
this.Reason = opts.Reason;
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
class ConflictException extends PartnerCentralAccountServiceException {
|
|
138
|
+
name = "ConflictException";
|
|
139
|
+
$fault = "client";
|
|
140
|
+
Message;
|
|
141
|
+
Reason;
|
|
142
|
+
constructor(opts) {
|
|
143
|
+
super({
|
|
144
|
+
name: "ConflictException",
|
|
145
|
+
$fault: "client",
|
|
146
|
+
...opts,
|
|
147
|
+
});
|
|
148
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
149
|
+
this.Message = opts.Message;
|
|
150
|
+
this.Reason = opts.Reason;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InternalServerException extends PartnerCentralAccountServiceException {
|
|
154
|
+
name = "InternalServerException";
|
|
155
|
+
$fault = "server";
|
|
156
|
+
$retryable = {};
|
|
157
|
+
Message;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "InternalServerException",
|
|
161
|
+
$fault: "server",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
165
|
+
this.Message = opts.Message;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
class ResourceNotFoundException extends PartnerCentralAccountServiceException {
|
|
169
|
+
name = "ResourceNotFoundException";
|
|
170
|
+
$fault = "client";
|
|
171
|
+
Message;
|
|
172
|
+
Reason;
|
|
173
|
+
constructor(opts) {
|
|
174
|
+
super({
|
|
175
|
+
name: "ResourceNotFoundException",
|
|
176
|
+
$fault: "client",
|
|
177
|
+
...opts,
|
|
178
|
+
});
|
|
179
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
180
|
+
this.Message = opts.Message;
|
|
181
|
+
this.Reason = opts.Reason;
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
class ServiceQuotaExceededException extends PartnerCentralAccountServiceException {
|
|
185
|
+
name = "ServiceQuotaExceededException";
|
|
186
|
+
$fault = "client";
|
|
187
|
+
Message;
|
|
188
|
+
Reason;
|
|
189
|
+
constructor(opts) {
|
|
190
|
+
super({
|
|
191
|
+
name: "ServiceQuotaExceededException",
|
|
192
|
+
$fault: "client",
|
|
193
|
+
...opts,
|
|
194
|
+
});
|
|
195
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
196
|
+
this.Message = opts.Message;
|
|
197
|
+
this.Reason = opts.Reason;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
class ThrottlingException extends PartnerCentralAccountServiceException {
|
|
201
|
+
name = "ThrottlingException";
|
|
202
|
+
$fault = "client";
|
|
203
|
+
$retryable = {};
|
|
204
|
+
Message;
|
|
205
|
+
ServiceCode;
|
|
206
|
+
QuotaCode;
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "ThrottlingException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
214
|
+
this.Message = opts.Message;
|
|
215
|
+
this.ServiceCode = opts.ServiceCode;
|
|
216
|
+
this.QuotaCode = opts.QuotaCode;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
class ValidationException extends PartnerCentralAccountServiceException {
|
|
220
|
+
name = "ValidationException";
|
|
221
|
+
$fault = "client";
|
|
222
|
+
Message;
|
|
223
|
+
Reason;
|
|
224
|
+
ErrorDetails;
|
|
225
|
+
constructor(opts) {
|
|
226
|
+
super({
|
|
227
|
+
name: "ValidationException",
|
|
228
|
+
$fault: "client",
|
|
229
|
+
...opts,
|
|
230
|
+
});
|
|
231
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
232
|
+
this.Message = opts.Message;
|
|
233
|
+
this.Reason = opts.Reason;
|
|
234
|
+
this.ErrorDetails = opts.ErrorDetails;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
const _A = "Arn";
|
|
239
|
+
const _AATCED = "AssociateAwsTrainingCertificationEmailDomain";
|
|
240
|
+
const _AATCEDR = "AssociateAwsTrainingCertificationEmailDomainRequest";
|
|
241
|
+
const _AATCEDRs = "AssociateAwsTrainingCertificationEmailDomainResponse";
|
|
242
|
+
const _ACI = "AcceptConnectionInvitation";
|
|
243
|
+
const _ACIR = "AcceptConnectionInvitationRequest";
|
|
244
|
+
const _ACIRc = "AcceptConnectionInvitationResponse";
|
|
245
|
+
const _ADE = "AccessDeniedException";
|
|
246
|
+
const _ALC = "AllianceLeadContact";
|
|
247
|
+
const _AS = "AccountSummary";
|
|
248
|
+
const _AT = "AccessType";
|
|
249
|
+
const _ATCED = "AwsTrainingCertificationEmailDomains";
|
|
250
|
+
const _Ac = "Account";
|
|
251
|
+
const _BT = "BusinessTitle";
|
|
252
|
+
const _BVD = "BusinessVerificationDetails";
|
|
253
|
+
const _BVE = "BusinessValidationError";
|
|
254
|
+
const _BVR = "BusinessVerificationResponse";
|
|
255
|
+
const _C = "Catalog";
|
|
256
|
+
const _CA = "CreatedAt";
|
|
257
|
+
const _CAa = "CanceledAt";
|
|
258
|
+
const _CAo = "CompletedAt";
|
|
259
|
+
const _CB = "CanceledBy";
|
|
260
|
+
const _CC = "CountryCode";
|
|
261
|
+
const _CCI = "CancelConnectionInvitation";
|
|
262
|
+
const _CCIR = "CancelConnectionInvitationRequest";
|
|
263
|
+
const _CCIRa = "CancelConnectionInvitationResponse";
|
|
264
|
+
const _CCIRr = "CreateConnectionInvitationRequest";
|
|
265
|
+
const _CCIRre = "CreateConnectionInvitationResponse";
|
|
266
|
+
const _CCIr = "CreateConnectionInvitation";
|
|
267
|
+
const _CCR = "CancelConnectionRequest";
|
|
268
|
+
const _CCRa = "CancelConnectionResponse";
|
|
269
|
+
const _CCa = "CancelConnection";
|
|
270
|
+
const _CE = "ConflictException";
|
|
271
|
+
const _CI = "ConnectionId";
|
|
272
|
+
const _CIS = "ConnectionInvitationSummary";
|
|
273
|
+
const _CISL = "ConnectionInvitationSummaryList";
|
|
274
|
+
const _CISo = "ConnectionInvitationSummaries";
|
|
275
|
+
const _CP = "CreatePartner";
|
|
276
|
+
const _CPR = "CreatePartnerRequest";
|
|
277
|
+
const _CPRr = "CreatePartnerResponse";
|
|
278
|
+
const _CPUT = "CancelProfileUpdateTask";
|
|
279
|
+
const _CPUTR = "CancelProfileUpdateTaskRequest";
|
|
280
|
+
const _CPUTRa = "CancelProfileUpdateTaskResponse";
|
|
281
|
+
const _CS = "ConnectionSummary";
|
|
282
|
+
const _CSL = "ConnectionSummaryList";
|
|
283
|
+
const _CSo = "ConnectionSummaries";
|
|
284
|
+
const _CT = "ClientToken";
|
|
285
|
+
const _CTD = "ConnectionTypeDetail";
|
|
286
|
+
const _CTDM = "ConnectionTypeDetailMap";
|
|
287
|
+
const _CTS = "ConnectionTypeSummary";
|
|
288
|
+
const _CTSM = "ConnectionTypeSummaryMap";
|
|
289
|
+
const _CTo = "ConnectionType";
|
|
290
|
+
const _CTon = "ConnectionTypes";
|
|
291
|
+
const _CU = "CompletionUrl";
|
|
292
|
+
const _CUEA = "CompletionUrlExpiresAt";
|
|
293
|
+
const _Co = "Connection";
|
|
294
|
+
const _Cod = "Code";
|
|
295
|
+
const _D = "Description";
|
|
296
|
+
const _DATCED = "DisassociateAwsTrainingCertificationEmailDomain";
|
|
297
|
+
const _DATCEDR = "DisassociateAwsTrainingCertificationEmailDomainRequest";
|
|
298
|
+
const _DATCEDRi = "DisassociateAwsTrainingCertificationEmailDomainResponse";
|
|
299
|
+
const _DN = "DomainName";
|
|
300
|
+
const _DNi = "DisplayName";
|
|
301
|
+
const _E = "Email";
|
|
302
|
+
const _EA = "ExpiresAt";
|
|
303
|
+
const _EAn = "EndedAt";
|
|
304
|
+
const _ED = "ErrorDetails";
|
|
305
|
+
const _EDL = "ErrorDetailList";
|
|
306
|
+
const _EDr = "ErrorDetail";
|
|
307
|
+
const _EPI = "ExcludedParticipantIds";
|
|
308
|
+
const _EPIx = "ExcludedParticipantIdentifiers";
|
|
309
|
+
const _EVC = "EmailVerificationCode";
|
|
310
|
+
const _FN = "FirstName";
|
|
311
|
+
const _FVE = "FieldValidationError";
|
|
312
|
+
const _GALC = "GetAllianceLeadContact";
|
|
313
|
+
const _GALCR = "GetAllianceLeadContactRequest";
|
|
314
|
+
const _GALCRe = "GetAllianceLeadContactResponse";
|
|
315
|
+
const _GC = "GetConnection";
|
|
316
|
+
const _GCI = "GetConnectionInvitation";
|
|
317
|
+
const _GCIR = "GetConnectionInvitationRequest";
|
|
318
|
+
const _GCIRe = "GetConnectionInvitationResponse";
|
|
319
|
+
const _GCP = "GetConnectionPreferences";
|
|
320
|
+
const _GCPR = "GetConnectionPreferencesRequest";
|
|
321
|
+
const _GCPRe = "GetConnectionPreferencesResponse";
|
|
322
|
+
const _GCR = "GetConnectionRequest";
|
|
323
|
+
const _GCRe = "GetConnectionResponse";
|
|
324
|
+
const _GP = "GetPartner";
|
|
325
|
+
const _GPR = "GetPartnerRequest";
|
|
326
|
+
const _GPRe = "GetPartnerResponse";
|
|
327
|
+
const _GPUT = "GetProfileUpdateTask";
|
|
328
|
+
const _GPUTR = "GetProfileUpdateTaskRequest";
|
|
329
|
+
const _GPUTRe = "GetProfileUpdateTaskResponse";
|
|
330
|
+
const _GPV = "GetProfileVisibility";
|
|
331
|
+
const _GPVR = "GetProfileVisibilityRequest";
|
|
332
|
+
const _GPVRe = "GetProfileVisibilityResponse";
|
|
333
|
+
const _GV = "GetVerification";
|
|
334
|
+
const _GVR = "GetVerificationRequest";
|
|
335
|
+
const _GVRe = "GetVerificationResponse";
|
|
336
|
+
const _I = "Identifier";
|
|
337
|
+
const _IE = "InviterEmail";
|
|
338
|
+
const _IM = "InvitationMessage";
|
|
339
|
+
const _IN = "InviterName";
|
|
340
|
+
const _IS = "IndustrySegments";
|
|
341
|
+
const _ISE = "InternalServerException";
|
|
342
|
+
const _Id = "Id";
|
|
343
|
+
const _JOI = "JurisdictionOfIncorporation";
|
|
344
|
+
const _K = "Key";
|
|
345
|
+
const _L = "Locale";
|
|
346
|
+
const _LC = "LocalizedContent";
|
|
347
|
+
const _LCI = "ListConnectionInvitations";
|
|
348
|
+
const _LCIR = "ListConnectionInvitationsRequest";
|
|
349
|
+
const _LCIRi = "ListConnectionInvitationsResponse";
|
|
350
|
+
const _LCL = "LocalizedContentList";
|
|
351
|
+
const _LCR = "ListConnectionsRequest";
|
|
352
|
+
const _LCRi = "ListConnectionsResponse";
|
|
353
|
+
const _LCi = "ListConnections";
|
|
354
|
+
const _LCo = "LocalizedContents";
|
|
355
|
+
const _LN = "LegalName";
|
|
356
|
+
const _LNa = "LastName";
|
|
357
|
+
const _LP = "ListPartners";
|
|
358
|
+
const _LPR = "ListPartnersRequest";
|
|
359
|
+
const _LPRi = "ListPartnersResponse";
|
|
360
|
+
const _LTFR = "ListTagsForResource";
|
|
361
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
362
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
363
|
+
const _LU = "LogoUrl";
|
|
364
|
+
const _M = "Message";
|
|
365
|
+
const _MR = "MaxResults";
|
|
366
|
+
const _N = "Name";
|
|
367
|
+
const _NT = "NextToken";
|
|
368
|
+
const _OP = "OtherParticipant";
|
|
369
|
+
const _OPAI = "OtherParticipantAccountId";
|
|
370
|
+
const _OPI = "OtherParticipantIdentifier";
|
|
371
|
+
const _OPIt = "OtherParticipantIdentifiers";
|
|
372
|
+
const _P = "Profile";
|
|
373
|
+
const _PALC = "PutAllianceLeadContact";
|
|
374
|
+
const _PALCR = "PutAllianceLeadContactRequest";
|
|
375
|
+
const _PALCRu = "PutAllianceLeadContactResponse";
|
|
376
|
+
const _PD = "PartnerDomain";
|
|
377
|
+
const _PDL = "PartnerDomainList";
|
|
378
|
+
const _PI = "ProfileId";
|
|
379
|
+
const _PP = "PartnerProfile";
|
|
380
|
+
const _PPS = "PartnerProfileSummary";
|
|
381
|
+
const _PPV = "PutProfileVisibility";
|
|
382
|
+
const _PPVR = "PutProfileVisibilityRequest";
|
|
383
|
+
const _PPVRu = "PutProfileVisibilityResponse";
|
|
384
|
+
const _PS = "PartnerSummary";
|
|
385
|
+
const _PSL = "PartnerSummaryList";
|
|
386
|
+
const _PST = "PrimarySolutionType";
|
|
387
|
+
const _PT = "ParticipantType";
|
|
388
|
+
const _Pa = "Participant";
|
|
389
|
+
const _QC = "QuotaCode";
|
|
390
|
+
const _R = "Reason";
|
|
391
|
+
const _RA = "ResourceArn";
|
|
392
|
+
const _RAe = "RegisteredAt";
|
|
393
|
+
const _RCI = "RejectConnectionInvitation";
|
|
394
|
+
const _RCIR = "RejectConnectionInvitationRequest";
|
|
395
|
+
const _RCIRe = "RejectConnectionInvitationResponse";
|
|
396
|
+
const _RI = "RegistrationId";
|
|
397
|
+
const _RIe = "ReceiverIdentifier";
|
|
398
|
+
const _RNFE = "ResourceNotFoundException";
|
|
399
|
+
const _RVD = "RegistrantVerificationDetails";
|
|
400
|
+
const _RVR = "RegistrantVerificationResponse";
|
|
401
|
+
const _Re = "Revision";
|
|
402
|
+
const _S = "Status";
|
|
403
|
+
const _SA = "StartedAt";
|
|
404
|
+
const _SC = "ServiceCode";
|
|
405
|
+
const _SEVC = "SendEmailVerificationCode";
|
|
406
|
+
const _SEVCR = "SendEmailVerificationCodeRequest";
|
|
407
|
+
const _SEVCRe = "SendEmailVerificationCodeResponse";
|
|
408
|
+
const _SP = "SellerProfile";
|
|
409
|
+
const _SPS = "SellerProfileSummary";
|
|
410
|
+
const _SPUT = "StartProfileUpdateTask";
|
|
411
|
+
const _SPUTR = "StartProfileUpdateTaskRequest";
|
|
412
|
+
const _SPUTRt = "StartProfileUpdateTaskResponse";
|
|
413
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
414
|
+
const _SUS = "SensitiveUnicodeString";
|
|
415
|
+
const _SV = "StartVerification";
|
|
416
|
+
const _SVR = "StartVerificationRequest";
|
|
417
|
+
const _SVRt = "StartVerificationResponse";
|
|
418
|
+
const _T = "Tags";
|
|
419
|
+
const _TD = "TaskDetails";
|
|
420
|
+
const _TE = "ThrottlingException";
|
|
421
|
+
const _TI = "TaskId";
|
|
422
|
+
const _TK = "TagKeys";
|
|
423
|
+
const _TL = "TagList";
|
|
424
|
+
const _TR = "TagResource";
|
|
425
|
+
const _TRR = "TagResourceRequest";
|
|
426
|
+
const _TRRa = "TagResourceResponse";
|
|
427
|
+
const _TSL = "TranslationSourceLocale";
|
|
428
|
+
const _Ta = "Tag";
|
|
429
|
+
const _UA = "UpdatedAt";
|
|
430
|
+
const _UCP = "UpdateConnectionPreferences";
|
|
431
|
+
const _UCPR = "UpdateConnectionPreferencesRequest";
|
|
432
|
+
const _UCPRp = "UpdateConnectionPreferencesResponse";
|
|
433
|
+
const _UR = "UntagResource";
|
|
434
|
+
const _URR = "UntagResourceRequest";
|
|
435
|
+
const _URRn = "UntagResourceResponse";
|
|
436
|
+
const _V = "Visibility";
|
|
437
|
+
const _VD = "VerificationDetails";
|
|
438
|
+
const _VE = "ValidationException";
|
|
439
|
+
const _VEL = "ValidationErrorList";
|
|
440
|
+
const _VEa = "ValidationError";
|
|
441
|
+
const _VRD = "VerificationResponseDetails";
|
|
442
|
+
const _VS = "VerificationStatus";
|
|
443
|
+
const _VSR = "VerificationStatusReason";
|
|
444
|
+
const _VT = "VerificationType";
|
|
445
|
+
const _Va = "Value";
|
|
446
|
+
const _WU = "WebsiteUrl";
|
|
447
|
+
const _c = "client";
|
|
448
|
+
const _e = "error";
|
|
449
|
+
const _hE = "httpError";
|
|
450
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.partnercentralaccount";
|
|
451
|
+
const _se = "server";
|
|
452
|
+
const n0 = "com.amazonaws.partnercentralaccount";
|
|
453
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
454
|
+
var PartnerCentralAccountServiceException$ = [-3, _s, "PartnerCentralAccountServiceException", 0, [], []];
|
|
455
|
+
_s_registry.registerError(PartnerCentralAccountServiceException$, PartnerCentralAccountServiceException);
|
|
456
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
457
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
458
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
459
|
+
[_M, _R],
|
|
460
|
+
[0, 0], 2
|
|
461
|
+
];
|
|
462
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
463
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
464
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
465
|
+
[_M, _R],
|
|
466
|
+
[0, 0], 2
|
|
467
|
+
];
|
|
468
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
469
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
470
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
471
|
+
[_M],
|
|
472
|
+
[0], 1
|
|
473
|
+
];
|
|
474
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
475
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
476
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
477
|
+
[_M, _R],
|
|
478
|
+
[0, 0], 2
|
|
479
|
+
];
|
|
480
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
481
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
482
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
483
|
+
[_M, _R],
|
|
484
|
+
[0, 0], 2
|
|
485
|
+
];
|
|
486
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
487
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
488
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
489
|
+
[_M, _SC, _QC],
|
|
490
|
+
[0, 0, 0], 1
|
|
491
|
+
];
|
|
492
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
493
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
494
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
495
|
+
[_M, _R, _ED],
|
|
496
|
+
[0, 0, () => ValidationErrorList], 2
|
|
497
|
+
];
|
|
498
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
499
|
+
const errorTypeRegistries = [
|
|
500
|
+
_s_registry,
|
|
501
|
+
n0_registry,
|
|
502
|
+
];
|
|
503
|
+
var EmailVerificationCode = [0, n0, _EVC, 8, 0];
|
|
504
|
+
var LegalName = [0, n0, _LN, 8, 0];
|
|
505
|
+
var RegistrationId = [0, n0, _RI, 8, 0];
|
|
506
|
+
var SensitiveUnicodeString = [0, n0, _SUS, 8, 0];
|
|
507
|
+
var AcceptConnectionInvitationRequest$ = [3, n0, _ACIR,
|
|
508
|
+
0,
|
|
509
|
+
[_C, _I, _CT],
|
|
510
|
+
[0, 0, [0, 4]], 2
|
|
511
|
+
];
|
|
512
|
+
var AcceptConnectionInvitationResponse$ = [3, n0, _ACIRc,
|
|
513
|
+
0,
|
|
514
|
+
[_Co],
|
|
515
|
+
[[() => Connection$, 0]], 1
|
|
516
|
+
];
|
|
517
|
+
var AccountSummary$ = [3, n0, _AS,
|
|
518
|
+
0,
|
|
519
|
+
[_N],
|
|
520
|
+
[0], 1
|
|
521
|
+
];
|
|
522
|
+
var AllianceLeadContact$ = [3, n0, _ALC,
|
|
523
|
+
0,
|
|
524
|
+
[_FN, _LNa, _E, _BT],
|
|
525
|
+
[[() => SensitiveUnicodeString, 0], [() => SensitiveUnicodeString, 0], 0, [() => SensitiveUnicodeString, 0]], 4
|
|
526
|
+
];
|
|
527
|
+
var AssociateAwsTrainingCertificationEmailDomainRequest$ = [3, n0, _AATCEDR,
|
|
528
|
+
0,
|
|
529
|
+
[_C, _I, _E, _EVC, _CT],
|
|
530
|
+
[0, 0, 0, [() => EmailVerificationCode, 0], [0, 4]], 4
|
|
531
|
+
];
|
|
532
|
+
var AssociateAwsTrainingCertificationEmailDomainResponse$ = [3, n0, _AATCEDRs,
|
|
533
|
+
0,
|
|
534
|
+
[],
|
|
535
|
+
[]
|
|
536
|
+
];
|
|
537
|
+
var BusinessValidationError$ = [3, n0, _BVE,
|
|
538
|
+
0,
|
|
539
|
+
[_M, _Cod],
|
|
540
|
+
[0, 0], 2
|
|
541
|
+
];
|
|
542
|
+
var BusinessVerificationDetails$ = [3, n0, _BVD,
|
|
543
|
+
0,
|
|
544
|
+
[_LN, _RI, _CC, _JOI],
|
|
545
|
+
[[() => LegalName, 0], [() => RegistrationId, 0], 0, 0], 3
|
|
546
|
+
];
|
|
547
|
+
var BusinessVerificationResponse$ = [3, n0, _BVR,
|
|
548
|
+
0,
|
|
549
|
+
[_BVD, _CU, _CUEA],
|
|
550
|
+
[[() => BusinessVerificationDetails$, 0], 0, 5], 1
|
|
551
|
+
];
|
|
552
|
+
var CancelConnectionInvitationRequest$ = [3, n0, _CCIR,
|
|
553
|
+
0,
|
|
554
|
+
[_C, _I, _CT],
|
|
555
|
+
[0, 0, [0, 4]], 2
|
|
556
|
+
];
|
|
557
|
+
var CancelConnectionInvitationResponse$ = [3, n0, _CCIRa,
|
|
558
|
+
0,
|
|
559
|
+
[_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
|
|
560
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
|
|
561
|
+
];
|
|
562
|
+
var CancelConnectionRequest$ = [3, n0, _CCR,
|
|
563
|
+
0,
|
|
564
|
+
[_C, _I, _CTo, _R, _CT],
|
|
565
|
+
[0, 0, 0, 0, [0, 4]], 4
|
|
566
|
+
];
|
|
567
|
+
var CancelConnectionResponse$ = [3, n0, _CCRa,
|
|
568
|
+
0,
|
|
569
|
+
[_C, _Id, _A, _OPAI, _UA, _CTon],
|
|
570
|
+
[0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
|
|
571
|
+
];
|
|
572
|
+
var CancelProfileUpdateTaskRequest$ = [3, n0, _CPUTR,
|
|
573
|
+
0,
|
|
574
|
+
[_C, _I, _TI, _CT],
|
|
575
|
+
[0, 0, 0, [0, 4]], 3
|
|
576
|
+
];
|
|
577
|
+
var CancelProfileUpdateTaskResponse$ = [3, n0, _CPUTRa,
|
|
578
|
+
0,
|
|
579
|
+
[_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
|
|
580
|
+
[0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
|
|
581
|
+
];
|
|
582
|
+
var Connection$ = [3, n0, _Co,
|
|
583
|
+
0,
|
|
584
|
+
[_C, _Id, _A, _OPAI, _UA, _CTon],
|
|
585
|
+
[0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
|
|
586
|
+
];
|
|
587
|
+
var ConnectionInvitationSummary$ = [3, n0, _CIS,
|
|
588
|
+
0,
|
|
589
|
+
[_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _CI, _EA],
|
|
590
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 5], 9
|
|
591
|
+
];
|
|
592
|
+
var ConnectionSummary$ = [3, n0, _CS,
|
|
593
|
+
0,
|
|
594
|
+
[_C, _Id, _A, _OPAI, _UA, _CTon],
|
|
595
|
+
[0, 0, 0, 0, 5, () => ConnectionTypeSummaryMap], 6
|
|
596
|
+
];
|
|
597
|
+
var ConnectionTypeDetail$ = [3, n0, _CTD,
|
|
598
|
+
0,
|
|
599
|
+
[_CA, _IE, _IN, _S, _OP, _CAa, _CB],
|
|
600
|
+
[5, 0, [() => SensitiveUnicodeString, 0], 0, () => Participant$, 5, 0], 5
|
|
601
|
+
];
|
|
602
|
+
var ConnectionTypeSummary$ = [3, n0, _CTS,
|
|
603
|
+
0,
|
|
604
|
+
[_S, _OP],
|
|
605
|
+
[0, () => Participant$], 2
|
|
606
|
+
];
|
|
607
|
+
var CreateConnectionInvitationRequest$ = [3, n0, _CCIRr,
|
|
608
|
+
0,
|
|
609
|
+
[_C, _CTo, _E, _M, _N, _RIe, _CT],
|
|
610
|
+
[0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, [0, 4]], 6
|
|
611
|
+
];
|
|
612
|
+
var CreateConnectionInvitationResponse$ = [3, n0, _CCIRre,
|
|
613
|
+
0,
|
|
614
|
+
[_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
|
|
615
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
|
|
616
|
+
];
|
|
617
|
+
var CreatePartnerRequest$ = [3, n0, _CPR,
|
|
618
|
+
0,
|
|
619
|
+
[_C, _LN, _PST, _ALC, _EVC, _CT, _T],
|
|
620
|
+
[0, [() => SensitiveUnicodeString, 0], 0, [() => AllianceLeadContact$, 0], [() => EmailVerificationCode, 0], [0, 4], () => TagList], 5
|
|
621
|
+
];
|
|
622
|
+
var CreatePartnerResponse$ = [3, n0, _CPRr,
|
|
623
|
+
0,
|
|
624
|
+
[_C, _A, _Id, _LN, _CA, _P, _ALC, _ATCED],
|
|
625
|
+
[0, 0, 0, [() => SensitiveUnicodeString, 0], 5, () => PartnerProfile$, [() => AllianceLeadContact$, 0], () => PartnerDomainList], 7
|
|
626
|
+
];
|
|
627
|
+
var DisassociateAwsTrainingCertificationEmailDomainRequest$ = [3, n0, _DATCEDR,
|
|
628
|
+
0,
|
|
629
|
+
[_C, _I, _DN, _CT],
|
|
630
|
+
[0, 0, 0, [0, 4]], 3
|
|
631
|
+
];
|
|
632
|
+
var DisassociateAwsTrainingCertificationEmailDomainResponse$ = [3, n0, _DATCEDRi,
|
|
633
|
+
0,
|
|
634
|
+
[],
|
|
635
|
+
[]
|
|
636
|
+
];
|
|
637
|
+
var ErrorDetail$ = [3, n0, _EDr,
|
|
638
|
+
0,
|
|
639
|
+
[_L, _M, _R],
|
|
640
|
+
[0, 0, 0], 3
|
|
641
|
+
];
|
|
642
|
+
var FieldValidationError$ = [3, n0, _FVE,
|
|
643
|
+
0,
|
|
644
|
+
[_N, _M, _Cod],
|
|
645
|
+
[0, 0, 0], 3
|
|
646
|
+
];
|
|
647
|
+
var GetAllianceLeadContactRequest$ = [3, n0, _GALCR,
|
|
648
|
+
0,
|
|
649
|
+
[_C, _I],
|
|
650
|
+
[0, 0], 2
|
|
651
|
+
];
|
|
652
|
+
var GetAllianceLeadContactResponse$ = [3, n0, _GALCRe,
|
|
653
|
+
0,
|
|
654
|
+
[_C, _A, _Id, _ALC],
|
|
655
|
+
[0, 0, 0, [() => AllianceLeadContact$, 0]], 4
|
|
656
|
+
];
|
|
657
|
+
var GetConnectionInvitationRequest$ = [3, n0, _GCIR,
|
|
658
|
+
0,
|
|
659
|
+
[_C, _I],
|
|
660
|
+
[0, 0], 2
|
|
661
|
+
];
|
|
662
|
+
var GetConnectionInvitationResponse$ = [3, n0, _GCIRe,
|
|
663
|
+
0,
|
|
664
|
+
[_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
|
|
665
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
|
|
666
|
+
];
|
|
667
|
+
var GetConnectionPreferencesRequest$ = [3, n0, _GCPR,
|
|
668
|
+
0,
|
|
669
|
+
[_C],
|
|
670
|
+
[0], 1
|
|
671
|
+
];
|
|
672
|
+
var GetConnectionPreferencesResponse$ = [3, n0, _GCPRe,
|
|
673
|
+
0,
|
|
674
|
+
[_C, _A, _AT, _UA, _Re, _EPI],
|
|
675
|
+
[0, 0, 0, 5, 1, 64 | 0], 5
|
|
676
|
+
];
|
|
677
|
+
var GetConnectionRequest$ = [3, n0, _GCR,
|
|
678
|
+
0,
|
|
679
|
+
[_C, _I],
|
|
680
|
+
[0, 0], 2
|
|
681
|
+
];
|
|
682
|
+
var GetConnectionResponse$ = [3, n0, _GCRe,
|
|
683
|
+
0,
|
|
684
|
+
[_C, _Id, _A, _OPAI, _UA, _CTon],
|
|
685
|
+
[0, 0, 0, 0, 5, [() => ConnectionTypeDetailMap, 0]], 6
|
|
686
|
+
];
|
|
687
|
+
var GetPartnerRequest$ = [3, n0, _GPR,
|
|
688
|
+
0,
|
|
689
|
+
[_C, _I],
|
|
690
|
+
[0, 0], 2
|
|
691
|
+
];
|
|
692
|
+
var GetPartnerResponse$ = [3, n0, _GPRe,
|
|
693
|
+
0,
|
|
694
|
+
[_C, _A, _Id, _LN, _CA, _P, _ATCED],
|
|
695
|
+
[0, 0, 0, [() => SensitiveUnicodeString, 0], 5, () => PartnerProfile$, () => PartnerDomainList], 6
|
|
696
|
+
];
|
|
697
|
+
var GetProfileUpdateTaskRequest$ = [3, n0, _GPUTR,
|
|
698
|
+
0,
|
|
699
|
+
[_C, _I],
|
|
700
|
+
[0, 0], 2
|
|
701
|
+
];
|
|
702
|
+
var GetProfileUpdateTaskResponse$ = [3, n0, _GPUTRe,
|
|
703
|
+
0,
|
|
704
|
+
[_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
|
|
705
|
+
[0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
|
|
706
|
+
];
|
|
707
|
+
var GetProfileVisibilityRequest$ = [3, n0, _GPVR,
|
|
708
|
+
0,
|
|
709
|
+
[_C, _I],
|
|
710
|
+
[0, 0], 2
|
|
711
|
+
];
|
|
712
|
+
var GetProfileVisibilityResponse$ = [3, n0, _GPVRe,
|
|
713
|
+
0,
|
|
714
|
+
[_C, _A, _Id, _V, _PI],
|
|
715
|
+
[0, 0, 0, 0, 0], 5
|
|
716
|
+
];
|
|
717
|
+
var GetVerificationRequest$ = [3, n0, _GVR,
|
|
718
|
+
0,
|
|
719
|
+
[_VT],
|
|
720
|
+
[0], 1
|
|
721
|
+
];
|
|
722
|
+
var GetVerificationResponse$ = [3, n0, _GVRe,
|
|
723
|
+
0,
|
|
724
|
+
[_VT, _VS, _VRD, _SA, _VSR, _CAo],
|
|
725
|
+
[0, 0, [() => VerificationResponseDetails$, 0], 5, 0, 5], 4
|
|
726
|
+
];
|
|
727
|
+
var ListConnectionInvitationsRequest$ = [3, n0, _LCIR,
|
|
728
|
+
0,
|
|
729
|
+
[_C, _NT, _CTo, _MR, _OPIt, _PT, _S],
|
|
730
|
+
[0, 0, 0, 1, 64 | 0, 0, 0], 1
|
|
731
|
+
];
|
|
732
|
+
var ListConnectionInvitationsResponse$ = [3, n0, _LCIRi,
|
|
733
|
+
0,
|
|
734
|
+
[_CISo, _NT],
|
|
735
|
+
[() => ConnectionInvitationSummaryList, 0], 1
|
|
736
|
+
];
|
|
737
|
+
var ListConnectionsRequest$ = [3, n0, _LCR,
|
|
738
|
+
0,
|
|
739
|
+
[_C, _NT, _CTo, _MR, _OPIt],
|
|
740
|
+
[0, 0, 0, 1, 64 | 0], 1
|
|
741
|
+
];
|
|
742
|
+
var ListConnectionsResponse$ = [3, n0, _LCRi,
|
|
743
|
+
0,
|
|
744
|
+
[_CSo, _NT],
|
|
745
|
+
[() => ConnectionSummaryList, 0], 1
|
|
746
|
+
];
|
|
747
|
+
var ListPartnersRequest$ = [3, n0, _LPR,
|
|
748
|
+
0,
|
|
749
|
+
[_C, _NT],
|
|
750
|
+
[0, 0], 1
|
|
751
|
+
];
|
|
752
|
+
var ListPartnersResponse$ = [3, n0, _LPRi,
|
|
753
|
+
0,
|
|
754
|
+
[_PSL, _NT],
|
|
755
|
+
[[() => PartnerSummaryList, 0], 0], 1
|
|
756
|
+
];
|
|
757
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
758
|
+
0,
|
|
759
|
+
[_RA],
|
|
760
|
+
[0], 1
|
|
761
|
+
];
|
|
762
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
763
|
+
0,
|
|
764
|
+
[_RA, _T],
|
|
765
|
+
[0, () => TagList], 1
|
|
766
|
+
];
|
|
767
|
+
var LocalizedContent$ = [3, n0, _LC,
|
|
768
|
+
0,
|
|
769
|
+
[_DNi, _D, _WU, _LU, _L],
|
|
770
|
+
[0, 0, 0, 0, 0], 5
|
|
771
|
+
];
|
|
772
|
+
var PartnerDomain$ = [3, n0, _PD,
|
|
773
|
+
0,
|
|
774
|
+
[_DN, _RAe],
|
|
775
|
+
[0, 5], 2
|
|
776
|
+
];
|
|
777
|
+
var PartnerProfile$ = [3, n0, _PP,
|
|
778
|
+
0,
|
|
779
|
+
[_DNi, _D, _WU, _LU, _PST, _IS, _TSL, _LCo, _PI],
|
|
780
|
+
[0, 0, 0, 0, 0, 64 | 0, 0, () => LocalizedContentList, 0], 7
|
|
781
|
+
];
|
|
782
|
+
var PartnerProfileSummary$ = [3, n0, _PPS,
|
|
783
|
+
0,
|
|
784
|
+
[_Id, _N],
|
|
785
|
+
[0, 0], 2
|
|
786
|
+
];
|
|
787
|
+
var PartnerSummary$ = [3, n0, _PS,
|
|
788
|
+
0,
|
|
789
|
+
[_C, _A, _Id, _LN, _CA],
|
|
790
|
+
[0, 0, 0, [() => SensitiveUnicodeString, 0], 5], 5
|
|
791
|
+
];
|
|
792
|
+
var PutAllianceLeadContactRequest$ = [3, n0, _PALCR,
|
|
793
|
+
0,
|
|
794
|
+
[_C, _I, _ALC, _EVC],
|
|
795
|
+
[0, 0, [() => AllianceLeadContact$, 0], [() => EmailVerificationCode, 0]], 3
|
|
796
|
+
];
|
|
797
|
+
var PutAllianceLeadContactResponse$ = [3, n0, _PALCRu,
|
|
798
|
+
0,
|
|
799
|
+
[_C, _A, _Id, _ALC],
|
|
800
|
+
[0, 0, 0, [() => AllianceLeadContact$, 0]], 4
|
|
801
|
+
];
|
|
802
|
+
var PutProfileVisibilityRequest$ = [3, n0, _PPVR,
|
|
803
|
+
0,
|
|
804
|
+
[_C, _I, _V],
|
|
805
|
+
[0, 0, 0], 3
|
|
806
|
+
];
|
|
807
|
+
var PutProfileVisibilityResponse$ = [3, n0, _PPVRu,
|
|
808
|
+
0,
|
|
809
|
+
[_C, _A, _Id, _V, _PI],
|
|
810
|
+
[0, 0, 0, 0, 0], 5
|
|
811
|
+
];
|
|
812
|
+
var RegistrantVerificationDetails$ = [3, n0, _RVD,
|
|
813
|
+
0,
|
|
814
|
+
[],
|
|
815
|
+
[]
|
|
816
|
+
];
|
|
817
|
+
var RegistrantVerificationResponse$ = [3, n0, _RVR,
|
|
818
|
+
0,
|
|
819
|
+
[_CU, _CUEA],
|
|
820
|
+
[0, 5], 2
|
|
821
|
+
];
|
|
822
|
+
var RejectConnectionInvitationRequest$ = [3, n0, _RCIR,
|
|
823
|
+
0,
|
|
824
|
+
[_C, _I, _CT, _R],
|
|
825
|
+
[0, 0, [0, 4], 0], 2
|
|
826
|
+
];
|
|
827
|
+
var RejectConnectionInvitationResponse$ = [3, n0, _RCIRe,
|
|
828
|
+
0,
|
|
829
|
+
[_C, _Id, _A, _CTo, _CA, _UA, _OPI, _PT, _S, _IM, _IE, _IN, _CI, _EA],
|
|
830
|
+
[0, 0, 0, 0, 5, 5, 0, 0, 0, 0, 0, [() => SensitiveUnicodeString, 0], 0, 5], 12
|
|
831
|
+
];
|
|
832
|
+
var SellerProfileSummary$ = [3, n0, _SPS,
|
|
833
|
+
0,
|
|
834
|
+
[_Id, _N],
|
|
835
|
+
[0, 0], 2
|
|
836
|
+
];
|
|
837
|
+
var SendEmailVerificationCodeRequest$ = [3, n0, _SEVCR,
|
|
838
|
+
0,
|
|
839
|
+
[_C, _E],
|
|
840
|
+
[0, 0], 2
|
|
841
|
+
];
|
|
842
|
+
var SendEmailVerificationCodeResponse$ = [3, n0, _SEVCRe,
|
|
843
|
+
0,
|
|
844
|
+
[],
|
|
845
|
+
[]
|
|
846
|
+
];
|
|
847
|
+
var StartProfileUpdateTaskRequest$ = [3, n0, _SPUTR,
|
|
848
|
+
0,
|
|
849
|
+
[_C, _I, _TD, _CT],
|
|
850
|
+
[0, 0, () => TaskDetails$, [0, 4]], 3
|
|
851
|
+
];
|
|
852
|
+
var StartProfileUpdateTaskResponse$ = [3, n0, _SPUTRt,
|
|
853
|
+
0,
|
|
854
|
+
[_C, _A, _Id, _TI, _TD, _SA, _S, _EAn, _EDL],
|
|
855
|
+
[0, 0, 0, 0, () => TaskDetails$, 5, 0, 5, () => ErrorDetailList], 7
|
|
856
|
+
];
|
|
857
|
+
var StartVerificationRequest$ = [3, n0, _SVR,
|
|
858
|
+
0,
|
|
859
|
+
[_CT, _VD],
|
|
860
|
+
[[0, 4], [() => VerificationDetails$, 0]]
|
|
861
|
+
];
|
|
862
|
+
var StartVerificationResponse$ = [3, n0, _SVRt,
|
|
863
|
+
0,
|
|
864
|
+
[_VT, _VS, _VRD, _SA, _VSR, _CAo],
|
|
865
|
+
[0, 0, [() => VerificationResponseDetails$, 0], 5, 0, 5], 4
|
|
866
|
+
];
|
|
867
|
+
var Tag$ = [3, n0, _Ta,
|
|
868
|
+
0,
|
|
869
|
+
[_K, _Va],
|
|
870
|
+
[0, 0], 2
|
|
871
|
+
];
|
|
872
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
873
|
+
0,
|
|
874
|
+
[_RA, _T],
|
|
875
|
+
[0, () => TagList], 2
|
|
876
|
+
];
|
|
877
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
878
|
+
0,
|
|
879
|
+
[],
|
|
880
|
+
[]
|
|
881
|
+
];
|
|
882
|
+
var TaskDetails$ = [3, n0, _TD,
|
|
883
|
+
0,
|
|
884
|
+
[_DNi, _D, _WU, _LU, _PST, _IS, _TSL, _LCo],
|
|
885
|
+
[0, 0, 0, 0, 0, 64 | 0, 0, () => LocalizedContentList], 7
|
|
886
|
+
];
|
|
887
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
888
|
+
0,
|
|
889
|
+
[_RA, _TK],
|
|
890
|
+
[0, 64 | 0], 2
|
|
891
|
+
];
|
|
892
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
893
|
+
0,
|
|
894
|
+
[],
|
|
895
|
+
[]
|
|
896
|
+
];
|
|
897
|
+
var UpdateConnectionPreferencesRequest$ = [3, n0, _UCPR,
|
|
898
|
+
0,
|
|
899
|
+
[_C, _Re, _AT, _EPIx],
|
|
900
|
+
[0, 1, 0, 64 | 0], 3
|
|
901
|
+
];
|
|
902
|
+
var UpdateConnectionPreferencesResponse$ = [3, n0, _UCPRp,
|
|
903
|
+
0,
|
|
904
|
+
[_C, _A, _AT, _UA, _Re, _EPI],
|
|
905
|
+
[0, 0, 0, 5, 1, 64 | 0], 5
|
|
906
|
+
];
|
|
907
|
+
var ConnectionInvitationSummaryList = [1, n0, _CISL,
|
|
908
|
+
0, () => ConnectionInvitationSummary$
|
|
909
|
+
];
|
|
910
|
+
var ConnectionSummaryList = [1, n0, _CSL,
|
|
911
|
+
0, () => ConnectionSummary$
|
|
912
|
+
];
|
|
913
|
+
var ErrorDetailList = [1, n0, _EDL,
|
|
914
|
+
0, () => ErrorDetail$
|
|
915
|
+
];
|
|
916
|
+
var LocalizedContentList = [1, n0, _LCL,
|
|
917
|
+
0, () => LocalizedContent$
|
|
918
|
+
];
|
|
919
|
+
var PartnerDomainList = [1, n0, _PDL,
|
|
920
|
+
0, () => PartnerDomain$
|
|
921
|
+
];
|
|
922
|
+
var PartnerSummaryList = [1, n0, _PSL,
|
|
923
|
+
0, [() => PartnerSummary$,
|
|
924
|
+
0]
|
|
925
|
+
];
|
|
926
|
+
var TagList = [1, n0, _TL,
|
|
927
|
+
0, () => Tag$
|
|
928
|
+
];
|
|
929
|
+
var ValidationErrorList = [1, n0, _VEL,
|
|
930
|
+
0, () => ValidationError$
|
|
931
|
+
];
|
|
932
|
+
var ConnectionTypeDetailMap = [2, n0, _CTDM,
|
|
933
|
+
0, [0,
|
|
934
|
+
0],
|
|
935
|
+
[() => ConnectionTypeDetail$,
|
|
936
|
+
0]
|
|
937
|
+
];
|
|
938
|
+
var ConnectionTypeSummaryMap = [2, n0, _CTSM,
|
|
939
|
+
0, 0, () => ConnectionTypeSummary$
|
|
940
|
+
];
|
|
941
|
+
var Participant$ = [4, n0, _Pa,
|
|
942
|
+
0,
|
|
943
|
+
[_PP, _SP, _Ac],
|
|
944
|
+
[() => PartnerProfileSummary$, () => SellerProfileSummary$, () => AccountSummary$]
|
|
945
|
+
];
|
|
946
|
+
var ValidationError$ = [4, n0, _VEa,
|
|
947
|
+
0,
|
|
948
|
+
[_FVE, _BVE],
|
|
949
|
+
[() => FieldValidationError$, () => BusinessValidationError$]
|
|
950
|
+
];
|
|
951
|
+
var VerificationDetails$ = [4, n0, _VD,
|
|
952
|
+
0,
|
|
953
|
+
[_BVD, _RVD],
|
|
954
|
+
[[() => BusinessVerificationDetails$, 0], () => RegistrantVerificationDetails$]
|
|
955
|
+
];
|
|
956
|
+
var VerificationResponseDetails$ = [4, n0, _VRD,
|
|
957
|
+
0,
|
|
958
|
+
[_BVR, _RVR],
|
|
959
|
+
[[() => BusinessVerificationResponse$, 0], () => RegistrantVerificationResponse$]
|
|
960
|
+
];
|
|
961
|
+
var AcceptConnectionInvitation$ = [9, n0, _ACI,
|
|
962
|
+
0, () => AcceptConnectionInvitationRequest$, () => AcceptConnectionInvitationResponse$
|
|
963
|
+
];
|
|
964
|
+
var AssociateAwsTrainingCertificationEmailDomain$ = [9, n0, _AATCED,
|
|
965
|
+
2, () => AssociateAwsTrainingCertificationEmailDomainRequest$, () => AssociateAwsTrainingCertificationEmailDomainResponse$
|
|
966
|
+
];
|
|
967
|
+
var CancelConnection$ = [9, n0, _CCa,
|
|
968
|
+
0, () => CancelConnectionRequest$, () => CancelConnectionResponse$
|
|
969
|
+
];
|
|
970
|
+
var CancelConnectionInvitation$ = [9, n0, _CCI,
|
|
971
|
+
0, () => CancelConnectionInvitationRequest$, () => CancelConnectionInvitationResponse$
|
|
972
|
+
];
|
|
973
|
+
var CancelProfileUpdateTask$ = [9, n0, _CPUT,
|
|
974
|
+
0, () => CancelProfileUpdateTaskRequest$, () => CancelProfileUpdateTaskResponse$
|
|
975
|
+
];
|
|
976
|
+
var CreateConnectionInvitation$ = [9, n0, _CCIr,
|
|
977
|
+
0, () => CreateConnectionInvitationRequest$, () => CreateConnectionInvitationResponse$
|
|
978
|
+
];
|
|
979
|
+
var CreatePartner$ = [9, n0, _CP,
|
|
980
|
+
2, () => CreatePartnerRequest$, () => CreatePartnerResponse$
|
|
981
|
+
];
|
|
982
|
+
var DisassociateAwsTrainingCertificationEmailDomain$ = [9, n0, _DATCED,
|
|
983
|
+
2, () => DisassociateAwsTrainingCertificationEmailDomainRequest$, () => DisassociateAwsTrainingCertificationEmailDomainResponse$
|
|
984
|
+
];
|
|
985
|
+
var GetAllianceLeadContact$ = [9, n0, _GALC,
|
|
986
|
+
0, () => GetAllianceLeadContactRequest$, () => GetAllianceLeadContactResponse$
|
|
987
|
+
];
|
|
988
|
+
var GetConnection$ = [9, n0, _GC,
|
|
989
|
+
0, () => GetConnectionRequest$, () => GetConnectionResponse$
|
|
990
|
+
];
|
|
991
|
+
var GetConnectionInvitation$ = [9, n0, _GCI,
|
|
992
|
+
0, () => GetConnectionInvitationRequest$, () => GetConnectionInvitationResponse$
|
|
993
|
+
];
|
|
994
|
+
var GetConnectionPreferences$ = [9, n0, _GCP,
|
|
995
|
+
0, () => GetConnectionPreferencesRequest$, () => GetConnectionPreferencesResponse$
|
|
996
|
+
];
|
|
997
|
+
var GetPartner$ = [9, n0, _GP,
|
|
998
|
+
0, () => GetPartnerRequest$, () => GetPartnerResponse$
|
|
999
|
+
];
|
|
1000
|
+
var GetProfileUpdateTask$ = [9, n0, _GPUT,
|
|
1001
|
+
0, () => GetProfileUpdateTaskRequest$, () => GetProfileUpdateTaskResponse$
|
|
1002
|
+
];
|
|
1003
|
+
var GetProfileVisibility$ = [9, n0, _GPV,
|
|
1004
|
+
0, () => GetProfileVisibilityRequest$, () => GetProfileVisibilityResponse$
|
|
1005
|
+
];
|
|
1006
|
+
var GetVerification$ = [9, n0, _GV,
|
|
1007
|
+
0, () => GetVerificationRequest$, () => GetVerificationResponse$
|
|
1008
|
+
];
|
|
1009
|
+
var ListConnectionInvitations$ = [9, n0, _LCI,
|
|
1010
|
+
0, () => ListConnectionInvitationsRequest$, () => ListConnectionInvitationsResponse$
|
|
1011
|
+
];
|
|
1012
|
+
var ListConnections$ = [9, n0, _LCi,
|
|
1013
|
+
0, () => ListConnectionsRequest$, () => ListConnectionsResponse$
|
|
1014
|
+
];
|
|
1015
|
+
var ListPartners$ = [9, n0, _LP,
|
|
1016
|
+
0, () => ListPartnersRequest$, () => ListPartnersResponse$
|
|
1017
|
+
];
|
|
1018
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1019
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1020
|
+
];
|
|
1021
|
+
var PutAllianceLeadContact$ = [9, n0, _PALC,
|
|
1022
|
+
0, () => PutAllianceLeadContactRequest$, () => PutAllianceLeadContactResponse$
|
|
1023
|
+
];
|
|
1024
|
+
var PutProfileVisibility$ = [9, n0, _PPV,
|
|
1025
|
+
0, () => PutProfileVisibilityRequest$, () => PutProfileVisibilityResponse$
|
|
1026
|
+
];
|
|
1027
|
+
var RejectConnectionInvitation$ = [9, n0, _RCI,
|
|
1028
|
+
0, () => RejectConnectionInvitationRequest$, () => RejectConnectionInvitationResponse$
|
|
1029
|
+
];
|
|
1030
|
+
var SendEmailVerificationCode$ = [9, n0, _SEVC,
|
|
1031
|
+
0, () => SendEmailVerificationCodeRequest$, () => SendEmailVerificationCodeResponse$
|
|
1032
|
+
];
|
|
1033
|
+
var StartProfileUpdateTask$ = [9, n0, _SPUT,
|
|
1034
|
+
2, () => StartProfileUpdateTaskRequest$, () => StartProfileUpdateTaskResponse$
|
|
1035
|
+
];
|
|
1036
|
+
var StartVerification$ = [9, n0, _SV,
|
|
1037
|
+
2, () => StartVerificationRequest$, () => StartVerificationResponse$
|
|
1038
|
+
];
|
|
1039
|
+
var TagResource$ = [9, n0, _TR,
|
|
1040
|
+
2, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1041
|
+
];
|
|
1042
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1043
|
+
2, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1044
|
+
];
|
|
1045
|
+
var UpdateConnectionPreferences$ = [9, n0, _UCP,
|
|
1046
|
+
2, () => UpdateConnectionPreferencesRequest$, () => UpdateConnectionPreferencesResponse$
|
|
1047
|
+
];
|
|
1048
|
+
|
|
1049
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1050
|
+
return {
|
|
1051
|
+
apiVersion: "2025-04-04",
|
|
1052
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1053
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1054
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1055
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1056
|
+
extensions: config?.extensions ?? [],
|
|
1057
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultPartnerCentralAccountHttpAuthSchemeProvider,
|
|
1058
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1059
|
+
{
|
|
1060
|
+
schemeId: "aws.auth#sigv4",
|
|
1061
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1062
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1063
|
+
},
|
|
1064
|
+
],
|
|
1065
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1066
|
+
protocol: config?.protocol ?? AwsJson1_0Protocol,
|
|
1067
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1068
|
+
defaultNamespace: "com.amazonaws.partnercentralaccount",
|
|
1069
|
+
errorTypeRegistries,
|
|
1070
|
+
version: "2025-04-04",
|
|
1071
|
+
serviceTarget: "PartnerCentralAccount",
|
|
1072
|
+
},
|
|
1073
|
+
serviceId: config?.serviceId ?? "PartnerCentral Account",
|
|
1074
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1075
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1076
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1077
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1078
|
+
};
|
|
1079
|
+
};
|
|
1080
|
+
|
|
1081
|
+
const getRuntimeConfig = (config) => {
|
|
1082
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1083
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1084
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1085
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1086
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1087
|
+
const loaderConfig = {
|
|
1088
|
+
profile: config?.profile,
|
|
1089
|
+
logger: clientSharedValues.logger,
|
|
1090
|
+
};
|
|
1091
|
+
return {
|
|
1092
|
+
...clientSharedValues,
|
|
1093
|
+
...config,
|
|
1094
|
+
runtime: "node",
|
|
1095
|
+
defaultsMode,
|
|
1096
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1097
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1098
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1099
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1100
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1101
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1102
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1103
|
+
retryMode: config?.retryMode ??
|
|
1104
|
+
loadConfig({
|
|
1105
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1106
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1107
|
+
}, config),
|
|
1108
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1109
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1110
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1111
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1112
|
+
};
|
|
1113
|
+
};
|
|
1114
|
+
|
|
32
1115
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
1116
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
1117
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -668,56 +1751,186 @@ const VerificationStatus = {
|
|
|
668
1751
|
SUCCEEDED: "SUCCEEDED",
|
|
669
1752
|
};
|
|
670
1753
|
|
|
1754
|
+
exports.AcceptConnectionInvitation$ = AcceptConnectionInvitation$;
|
|
671
1755
|
exports.AcceptConnectionInvitationCommand = AcceptConnectionInvitationCommand;
|
|
1756
|
+
exports.AcceptConnectionInvitationRequest$ = AcceptConnectionInvitationRequest$;
|
|
1757
|
+
exports.AcceptConnectionInvitationResponse$ = AcceptConnectionInvitationResponse$;
|
|
1758
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1759
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
672
1760
|
exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
|
|
673
1761
|
exports.AccessType = AccessType;
|
|
1762
|
+
exports.AccountSummary$ = AccountSummary$;
|
|
1763
|
+
exports.AllianceLeadContact$ = AllianceLeadContact$;
|
|
1764
|
+
exports.AssociateAwsTrainingCertificationEmailDomain$ = AssociateAwsTrainingCertificationEmailDomain$;
|
|
674
1765
|
exports.AssociateAwsTrainingCertificationEmailDomainCommand = AssociateAwsTrainingCertificationEmailDomainCommand;
|
|
1766
|
+
exports.AssociateAwsTrainingCertificationEmailDomainRequest$ = AssociateAwsTrainingCertificationEmailDomainRequest$;
|
|
1767
|
+
exports.AssociateAwsTrainingCertificationEmailDomainResponse$ = AssociateAwsTrainingCertificationEmailDomainResponse$;
|
|
675
1768
|
exports.BusinessValidationCode = BusinessValidationCode;
|
|
1769
|
+
exports.BusinessValidationError$ = BusinessValidationError$;
|
|
1770
|
+
exports.BusinessVerificationDetails$ = BusinessVerificationDetails$;
|
|
1771
|
+
exports.BusinessVerificationResponse$ = BusinessVerificationResponse$;
|
|
1772
|
+
exports.CancelConnection$ = CancelConnection$;
|
|
676
1773
|
exports.CancelConnectionCommand = CancelConnectionCommand;
|
|
1774
|
+
exports.CancelConnectionInvitation$ = CancelConnectionInvitation$;
|
|
677
1775
|
exports.CancelConnectionInvitationCommand = CancelConnectionInvitationCommand;
|
|
1776
|
+
exports.CancelConnectionInvitationRequest$ = CancelConnectionInvitationRequest$;
|
|
1777
|
+
exports.CancelConnectionInvitationResponse$ = CancelConnectionInvitationResponse$;
|
|
1778
|
+
exports.CancelConnectionRequest$ = CancelConnectionRequest$;
|
|
1779
|
+
exports.CancelConnectionResponse$ = CancelConnectionResponse$;
|
|
1780
|
+
exports.CancelProfileUpdateTask$ = CancelProfileUpdateTask$;
|
|
678
1781
|
exports.CancelProfileUpdateTaskCommand = CancelProfileUpdateTaskCommand;
|
|
1782
|
+
exports.CancelProfileUpdateTaskRequest$ = CancelProfileUpdateTaskRequest$;
|
|
1783
|
+
exports.CancelProfileUpdateTaskResponse$ = CancelProfileUpdateTaskResponse$;
|
|
1784
|
+
exports.ConflictException = ConflictException;
|
|
1785
|
+
exports.ConflictException$ = ConflictException$;
|
|
679
1786
|
exports.ConflictExceptionReason = ConflictExceptionReason;
|
|
1787
|
+
exports.Connection$ = Connection$;
|
|
1788
|
+
exports.ConnectionInvitationSummary$ = ConnectionInvitationSummary$;
|
|
1789
|
+
exports.ConnectionSummary$ = ConnectionSummary$;
|
|
680
1790
|
exports.ConnectionType = ConnectionType;
|
|
1791
|
+
exports.ConnectionTypeDetail$ = ConnectionTypeDetail$;
|
|
681
1792
|
exports.ConnectionTypeStatus = ConnectionTypeStatus;
|
|
1793
|
+
exports.ConnectionTypeSummary$ = ConnectionTypeSummary$;
|
|
1794
|
+
exports.CreateConnectionInvitation$ = CreateConnectionInvitation$;
|
|
682
1795
|
exports.CreateConnectionInvitationCommand = CreateConnectionInvitationCommand;
|
|
1796
|
+
exports.CreateConnectionInvitationRequest$ = CreateConnectionInvitationRequest$;
|
|
1797
|
+
exports.CreateConnectionInvitationResponse$ = CreateConnectionInvitationResponse$;
|
|
1798
|
+
exports.CreatePartner$ = CreatePartner$;
|
|
683
1799
|
exports.CreatePartnerCommand = CreatePartnerCommand;
|
|
1800
|
+
exports.CreatePartnerRequest$ = CreatePartnerRequest$;
|
|
1801
|
+
exports.CreatePartnerResponse$ = CreatePartnerResponse$;
|
|
1802
|
+
exports.DisassociateAwsTrainingCertificationEmailDomain$ = DisassociateAwsTrainingCertificationEmailDomain$;
|
|
684
1803
|
exports.DisassociateAwsTrainingCertificationEmailDomainCommand = DisassociateAwsTrainingCertificationEmailDomainCommand;
|
|
1804
|
+
exports.DisassociateAwsTrainingCertificationEmailDomainRequest$ = DisassociateAwsTrainingCertificationEmailDomainRequest$;
|
|
1805
|
+
exports.DisassociateAwsTrainingCertificationEmailDomainResponse$ = DisassociateAwsTrainingCertificationEmailDomainResponse$;
|
|
1806
|
+
exports.ErrorDetail$ = ErrorDetail$;
|
|
685
1807
|
exports.FieldValidationCode = FieldValidationCode;
|
|
1808
|
+
exports.FieldValidationError$ = FieldValidationError$;
|
|
1809
|
+
exports.GetAllianceLeadContact$ = GetAllianceLeadContact$;
|
|
686
1810
|
exports.GetAllianceLeadContactCommand = GetAllianceLeadContactCommand;
|
|
1811
|
+
exports.GetAllianceLeadContactRequest$ = GetAllianceLeadContactRequest$;
|
|
1812
|
+
exports.GetAllianceLeadContactResponse$ = GetAllianceLeadContactResponse$;
|
|
1813
|
+
exports.GetConnection$ = GetConnection$;
|
|
687
1814
|
exports.GetConnectionCommand = GetConnectionCommand;
|
|
1815
|
+
exports.GetConnectionInvitation$ = GetConnectionInvitation$;
|
|
688
1816
|
exports.GetConnectionInvitationCommand = GetConnectionInvitationCommand;
|
|
1817
|
+
exports.GetConnectionInvitationRequest$ = GetConnectionInvitationRequest$;
|
|
1818
|
+
exports.GetConnectionInvitationResponse$ = GetConnectionInvitationResponse$;
|
|
1819
|
+
exports.GetConnectionPreferences$ = GetConnectionPreferences$;
|
|
689
1820
|
exports.GetConnectionPreferencesCommand = GetConnectionPreferencesCommand;
|
|
1821
|
+
exports.GetConnectionPreferencesRequest$ = GetConnectionPreferencesRequest$;
|
|
1822
|
+
exports.GetConnectionPreferencesResponse$ = GetConnectionPreferencesResponse$;
|
|
1823
|
+
exports.GetConnectionRequest$ = GetConnectionRequest$;
|
|
1824
|
+
exports.GetConnectionResponse$ = GetConnectionResponse$;
|
|
1825
|
+
exports.GetPartner$ = GetPartner$;
|
|
690
1826
|
exports.GetPartnerCommand = GetPartnerCommand;
|
|
1827
|
+
exports.GetPartnerRequest$ = GetPartnerRequest$;
|
|
1828
|
+
exports.GetPartnerResponse$ = GetPartnerResponse$;
|
|
1829
|
+
exports.GetProfileUpdateTask$ = GetProfileUpdateTask$;
|
|
691
1830
|
exports.GetProfileUpdateTaskCommand = GetProfileUpdateTaskCommand;
|
|
1831
|
+
exports.GetProfileUpdateTaskRequest$ = GetProfileUpdateTaskRequest$;
|
|
1832
|
+
exports.GetProfileUpdateTaskResponse$ = GetProfileUpdateTaskResponse$;
|
|
1833
|
+
exports.GetProfileVisibility$ = GetProfileVisibility$;
|
|
692
1834
|
exports.GetProfileVisibilityCommand = GetProfileVisibilityCommand;
|
|
1835
|
+
exports.GetProfileVisibilityRequest$ = GetProfileVisibilityRequest$;
|
|
1836
|
+
exports.GetProfileVisibilityResponse$ = GetProfileVisibilityResponse$;
|
|
1837
|
+
exports.GetVerification$ = GetVerification$;
|
|
693
1838
|
exports.GetVerificationCommand = GetVerificationCommand;
|
|
1839
|
+
exports.GetVerificationRequest$ = GetVerificationRequest$;
|
|
1840
|
+
exports.GetVerificationResponse$ = GetVerificationResponse$;
|
|
694
1841
|
exports.IndustrySegment = IndustrySegment;
|
|
1842
|
+
exports.InternalServerException = InternalServerException;
|
|
1843
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
695
1844
|
exports.InvitationStatus = InvitationStatus;
|
|
1845
|
+
exports.ListConnectionInvitations$ = ListConnectionInvitations$;
|
|
696
1846
|
exports.ListConnectionInvitationsCommand = ListConnectionInvitationsCommand;
|
|
1847
|
+
exports.ListConnectionInvitationsRequest$ = ListConnectionInvitationsRequest$;
|
|
1848
|
+
exports.ListConnectionInvitationsResponse$ = ListConnectionInvitationsResponse$;
|
|
1849
|
+
exports.ListConnections$ = ListConnections$;
|
|
697
1850
|
exports.ListConnectionsCommand = ListConnectionsCommand;
|
|
1851
|
+
exports.ListConnectionsRequest$ = ListConnectionsRequest$;
|
|
1852
|
+
exports.ListConnectionsResponse$ = ListConnectionsResponse$;
|
|
1853
|
+
exports.ListPartners$ = ListPartners$;
|
|
698
1854
|
exports.ListPartnersCommand = ListPartnersCommand;
|
|
1855
|
+
exports.ListPartnersRequest$ = ListPartnersRequest$;
|
|
1856
|
+
exports.ListPartnersResponse$ = ListPartnersResponse$;
|
|
1857
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
699
1858
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1859
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1860
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1861
|
+
exports.LocalizedContent$ = LocalizedContent$;
|
|
1862
|
+
exports.Participant$ = Participant$;
|
|
700
1863
|
exports.ParticipantType = ParticipantType;
|
|
701
1864
|
exports.PartnerCentralAccount = PartnerCentralAccount;
|
|
702
1865
|
exports.PartnerCentralAccountClient = PartnerCentralAccountClient;
|
|
1866
|
+
exports.PartnerCentralAccountServiceException = PartnerCentralAccountServiceException;
|
|
1867
|
+
exports.PartnerCentralAccountServiceException$ = PartnerCentralAccountServiceException$;
|
|
1868
|
+
exports.PartnerDomain$ = PartnerDomain$;
|
|
1869
|
+
exports.PartnerProfile$ = PartnerProfile$;
|
|
1870
|
+
exports.PartnerProfileSummary$ = PartnerProfileSummary$;
|
|
1871
|
+
exports.PartnerSummary$ = PartnerSummary$;
|
|
703
1872
|
exports.PrimarySolutionType = PrimarySolutionType;
|
|
704
1873
|
exports.ProfileTaskStatus = ProfileTaskStatus;
|
|
705
1874
|
exports.ProfileValidationErrorReason = ProfileValidationErrorReason;
|
|
706
1875
|
exports.ProfileVisibility = ProfileVisibility;
|
|
1876
|
+
exports.PutAllianceLeadContact$ = PutAllianceLeadContact$;
|
|
707
1877
|
exports.PutAllianceLeadContactCommand = PutAllianceLeadContactCommand;
|
|
1878
|
+
exports.PutAllianceLeadContactRequest$ = PutAllianceLeadContactRequest$;
|
|
1879
|
+
exports.PutAllianceLeadContactResponse$ = PutAllianceLeadContactResponse$;
|
|
1880
|
+
exports.PutProfileVisibility$ = PutProfileVisibility$;
|
|
708
1881
|
exports.PutProfileVisibilityCommand = PutProfileVisibilityCommand;
|
|
1882
|
+
exports.PutProfileVisibilityRequest$ = PutProfileVisibilityRequest$;
|
|
1883
|
+
exports.PutProfileVisibilityResponse$ = PutProfileVisibilityResponse$;
|
|
1884
|
+
exports.RegistrantVerificationDetails$ = RegistrantVerificationDetails$;
|
|
1885
|
+
exports.RegistrantVerificationResponse$ = RegistrantVerificationResponse$;
|
|
1886
|
+
exports.RejectConnectionInvitation$ = RejectConnectionInvitation$;
|
|
709
1887
|
exports.RejectConnectionInvitationCommand = RejectConnectionInvitationCommand;
|
|
1888
|
+
exports.RejectConnectionInvitationRequest$ = RejectConnectionInvitationRequest$;
|
|
1889
|
+
exports.RejectConnectionInvitationResponse$ = RejectConnectionInvitationResponse$;
|
|
1890
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1891
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
710
1892
|
exports.ResourceNotFoundExceptionReason = ResourceNotFoundExceptionReason;
|
|
1893
|
+
exports.SellerProfileSummary$ = SellerProfileSummary$;
|
|
1894
|
+
exports.SendEmailVerificationCode$ = SendEmailVerificationCode$;
|
|
711
1895
|
exports.SendEmailVerificationCodeCommand = SendEmailVerificationCodeCommand;
|
|
1896
|
+
exports.SendEmailVerificationCodeRequest$ = SendEmailVerificationCodeRequest$;
|
|
1897
|
+
exports.SendEmailVerificationCodeResponse$ = SendEmailVerificationCodeResponse$;
|
|
1898
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1899
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
712
1900
|
exports.ServiceQuotaExceededExceptionReason = ServiceQuotaExceededExceptionReason;
|
|
1901
|
+
exports.StartProfileUpdateTask$ = StartProfileUpdateTask$;
|
|
713
1902
|
exports.StartProfileUpdateTaskCommand = StartProfileUpdateTaskCommand;
|
|
1903
|
+
exports.StartProfileUpdateTaskRequest$ = StartProfileUpdateTaskRequest$;
|
|
1904
|
+
exports.StartProfileUpdateTaskResponse$ = StartProfileUpdateTaskResponse$;
|
|
1905
|
+
exports.StartVerification$ = StartVerification$;
|
|
714
1906
|
exports.StartVerificationCommand = StartVerificationCommand;
|
|
1907
|
+
exports.StartVerificationRequest$ = StartVerificationRequest$;
|
|
1908
|
+
exports.StartVerificationResponse$ = StartVerificationResponse$;
|
|
1909
|
+
exports.Tag$ = Tag$;
|
|
1910
|
+
exports.TagResource$ = TagResource$;
|
|
715
1911
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1912
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1913
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1914
|
+
exports.TaskDetails$ = TaskDetails$;
|
|
1915
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1916
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1917
|
+
exports.UntagResource$ = UntagResource$;
|
|
716
1918
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1919
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1920
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1921
|
+
exports.UpdateConnectionPreferences$ = UpdateConnectionPreferences$;
|
|
717
1922
|
exports.UpdateConnectionPreferencesCommand = UpdateConnectionPreferencesCommand;
|
|
1923
|
+
exports.UpdateConnectionPreferencesRequest$ = UpdateConnectionPreferencesRequest$;
|
|
1924
|
+
exports.UpdateConnectionPreferencesResponse$ = UpdateConnectionPreferencesResponse$;
|
|
1925
|
+
exports.ValidationError$ = ValidationError$;
|
|
1926
|
+
exports.ValidationException = ValidationException;
|
|
1927
|
+
exports.ValidationException$ = ValidationException$;
|
|
718
1928
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
1929
|
+
exports.VerificationDetails$ = VerificationDetails$;
|
|
1930
|
+
exports.VerificationResponseDetails$ = VerificationResponseDetails$;
|
|
719
1931
|
exports.VerificationStatus = VerificationStatus;
|
|
720
1932
|
exports.VerificationType = VerificationType;
|
|
1933
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
721
1934
|
exports.paginateListConnectionInvitations = paginateListConnectionInvitations;
|
|
722
1935
|
exports.paginateListConnections = paginateListConnections;
|
|
723
1936
|
exports.paginateListPartners = paginateListPartners;
|