@aws-sdk/client-marketplace-agreement 3.1074.0 → 3.1076.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 CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
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 { resolveHttpAuthSchemeConfig, defaultMarketplaceAgreementHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AcceptAgreementCancellationRequest$, AcceptAgreementPaymentRequest$, AcceptAgreementRequest$, BatchCreateBillingAdjustmentRequest$, CancelAgreementCancellationRequest$, CancelAgreement$, CancelAgreementPaymentRequest$, CreateAgreementRequest$, DescribeAgreement$, GetAgreementCancellationRequest$, GetAgreementEntitlements$, GetAgreementPaymentRequest$, GetAgreementTerms$, GetBillingAdjustmentRequest$, ListAgreementCancellationRequests$, ListAgreementCharges$, ListAgreementInvoiceLineItems$, ListAgreementPaymentRequests$, ListBillingAdjustmentRequests$, RejectAgreementCancellationRequest$, RejectAgreementPaymentRequest$, SearchAgreements$, SendAgreementCancellationRequest$, SendAgreementPaymentRequest$, UpdatePurchaseOrders$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { MarketplaceAgreementServiceException } = require("./models/MarketplaceAgreementServiceException");
18
- exports.MarketplaceAgreementServiceException = MarketplaceAgreementServiceException;
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, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_0Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultMarketplaceAgreementHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "aws-marketplace",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultMarketplaceAgreementHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1336 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://agreement-marketplace-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://agreement-marketplace-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://agreement-marketplace.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://agreement-marketplace.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class MarketplaceAgreementServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, MarketplaceAgreementServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends MarketplaceAgreementServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ requestId;
143
+ reason;
144
+ constructor(opts) {
145
+ super({
146
+ name: "AccessDeniedException",
147
+ $fault: "client",
148
+ ...opts,
149
+ });
150
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
151
+ this.requestId = opts.requestId;
152
+ this.reason = opts.reason;
153
+ }
154
+ }
155
+ class ConflictException extends MarketplaceAgreementServiceException {
156
+ name = "ConflictException";
157
+ $fault = "client";
158
+ requestId;
159
+ resourceId;
160
+ resourceType;
161
+ constructor(opts) {
162
+ super({
163
+ name: "ConflictException",
164
+ $fault: "client",
165
+ ...opts,
166
+ });
167
+ Object.setPrototypeOf(this, ConflictException.prototype);
168
+ this.requestId = opts.requestId;
169
+ this.resourceId = opts.resourceId;
170
+ this.resourceType = opts.resourceType;
171
+ }
172
+ }
173
+ class InternalServerException extends MarketplaceAgreementServiceException {
174
+ name = "InternalServerException";
175
+ $fault = "server";
176
+ requestId;
177
+ constructor(opts) {
178
+ super({
179
+ name: "InternalServerException",
180
+ $fault: "server",
181
+ ...opts,
182
+ });
183
+ Object.setPrototypeOf(this, InternalServerException.prototype);
184
+ this.requestId = opts.requestId;
185
+ }
186
+ }
187
+ class ResourceNotFoundException extends MarketplaceAgreementServiceException {
188
+ name = "ResourceNotFoundException";
189
+ $fault = "client";
190
+ requestId;
191
+ resourceId;
192
+ resourceType;
193
+ constructor(opts) {
194
+ super({
195
+ name: "ResourceNotFoundException",
196
+ $fault: "client",
197
+ ...opts,
198
+ });
199
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
200
+ this.requestId = opts.requestId;
201
+ this.resourceId = opts.resourceId;
202
+ this.resourceType = opts.resourceType;
203
+ }
204
+ }
205
+ class ThrottlingException extends MarketplaceAgreementServiceException {
206
+ name = "ThrottlingException";
207
+ $fault = "client";
208
+ requestId;
209
+ constructor(opts) {
210
+ super({
211
+ name: "ThrottlingException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
216
+ this.requestId = opts.requestId;
217
+ }
218
+ }
219
+ class ValidationException extends MarketplaceAgreementServiceException {
220
+ name = "ValidationException";
221
+ $fault = "client";
222
+ requestId;
223
+ reason;
224
+ fields;
225
+ constructor(opts) {
226
+ super({
227
+ name: "ValidationException",
228
+ $fault: "client",
229
+ ...opts,
230
+ });
231
+ Object.setPrototypeOf(this, ValidationException.prototype);
232
+ this.requestId = opts.requestId;
233
+ this.reason = opts.reason;
234
+ this.fields = opts.fields;
235
+ }
236
+ }
237
+ class ServiceQuotaExceededException extends MarketplaceAgreementServiceException {
238
+ name = "ServiceQuotaExceededException";
239
+ $fault = "client";
240
+ requestId;
241
+ quotaCode;
242
+ serviceCode;
243
+ resourceType;
244
+ resourceId;
245
+ constructor(opts) {
246
+ super({
247
+ name: "ServiceQuotaExceededException",
248
+ $fault: "client",
249
+ ...opts,
250
+ });
251
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
252
+ this.requestId = opts.requestId;
253
+ this.quotaCode = opts.quotaCode;
254
+ this.serviceCode = opts.serviceCode;
255
+ this.resourceType = opts.resourceType;
256
+ this.resourceId = opts.resourceId;
257
+ }
258
+ }
259
+
260
+ const _A = "Acceptor";
261
+ const _AACR = "AcceptAgreementCancellationRequest";
262
+ const _AACRI = "AcceptAgreementCancellationRequestInput";
263
+ const _AACRO = "AcceptAgreementCancellationRequestOutput";
264
+ const _AAPR = "AcceptAgreementPaymentRequest";
265
+ const _AAPRI = "AcceptAgreementPaymentRequestInput";
266
+ const _AAPRO = "AcceptAgreementPaymentRequestOutput";
267
+ const _AAR = "AcceptAgreementRequest";
268
+ const _AARI = "AcceptAgreementRequestInput";
269
+ const _AARO = "AcceptAgreementRequestOutput";
270
+ const _ACRCR = "AgreementCancellationRequestCancellationReason";
271
+ const _ACRD = "AgreementCancellationRequestDescription";
272
+ const _ACRRR = "AgreementCancellationRequestRejectionReason";
273
+ const _ACRS = "AgreementCancellationRequestSummary";
274
+ const _ACRSL = "AgreementCancellationRequestSummaryList";
275
+ const _ADE = "AccessDeniedException";
276
+ const _AE = "AgreementEntitlement";
277
+ const _AEL = "AgreementEntitlementList";
278
+ const _AILIGS = "AgreementInvoiceLineItemGroupSummary";
279
+ const _AILIGSg = "AgreementInvoiceLineItemGroupSummaries";
280
+ const _AT = "AcceptedTerm";
281
+ const _ATL = "AcceptedTermList";
282
+ const _AVS = "AgreementViewSummary";
283
+ const _AVSL = "AgreementViewSummaryList";
284
+ const _BAD = "BillingAdjustmentDescription";
285
+ const _BAS = "BillingAdjustmentSummary";
286
+ const _BASL = "BillingAdjustmentSummaryList";
287
+ const _BCBAE = "BatchCreateBillingAdjustmentError";
288
+ const _BCBAEL = "BatchCreateBillingAdjustmentErrorList";
289
+ const _BCBAI = "BatchCreateBillingAdjustmentItem";
290
+ const _BCBAIL = "BatchCreateBillingAdjustmentItemList";
291
+ const _BCBAR = "BatchCreateBillingAdjustmentRequest";
292
+ const _BCBARE = "BatchCreateBillingAdjustmentRequestEntry";
293
+ const _BCBAREL = "BatchCreateBillingAdjustmentRequestEntryList";
294
+ const _BCBARI = "BatchCreateBillingAdjustmentRequestInput";
295
+ const _BCBARO = "BatchCreateBillingAdjustmentRequestOutput";
296
+ const _BPT = "ByolPricingTerm";
297
+ const _C = "Charge";
298
+ const _CA = "CancelAgreement";
299
+ const _CACR = "CancelAgreementCancellationRequest";
300
+ const _CACRI = "CancelAgreementCancellationRequestInput";
301
+ const _CACRO = "CancelAgreementCancellationRequestOutput";
302
+ const _CAI = "CancelAgreementInput";
303
+ const _CAO = "CancelAgreementOutput";
304
+ const _CAPR = "CancelAgreementPaymentRequest";
305
+ const _CAPRI = "CancelAgreementPaymentRequestInput";
306
+ const _CAPRO = "CancelAgreementPaymentRequestOutput";
307
+ const _CAR = "CreateAgreementRequest";
308
+ const _CARI = "CreateAgreementRequestInput";
309
+ const _CARO = "CreateAgreementRequestOutput";
310
+ const _CE = "ConflictException";
311
+ const _CS = "ChargeSummary";
312
+ const _CUPT = "ConfigurableUpfrontPricingTerm";
313
+ const _CUPTC = "ConfigurableUpfrontPricingTermConfiguration";
314
+ const _CURCI = "ConfigurableUpfrontRateCardItem";
315
+ const _CURCL = "ConfigurableUpfrontRateCardList";
316
+ const _Ch = "Charges";
317
+ const _Co = "Constraints";
318
+ const _D = "Dimension";
319
+ const _DA = "DescribeAgreement";
320
+ const _DAI = "DescribeAgreementInput";
321
+ const _DAO = "DescribeAgreementOutput";
322
+ const _DI = "DocumentItem";
323
+ const _DL = "DimensionList";
324
+ const _DLo = "DocumentList";
325
+ const _E = "Entitlement";
326
+ const _EC = "EstimatedCharges";
327
+ const _ECL = "ExpectedChargeList";
328
+ const _ECx = "ExpectedCharge";
329
+ const _EL = "EntitlementList";
330
+ const _ET = "EstimatedTaxes";
331
+ const _F = "Filter";
332
+ const _FL = "FilterList";
333
+ const _FTPT = "FreeTrialPricingTerm";
334
+ const _FUPT = "FixedUpfrontPricingTerm";
335
+ const _GACR = "GetAgreementCancellationRequest";
336
+ const _GACRI = "GetAgreementCancellationRequestInput";
337
+ const _GACRO = "GetAgreementCancellationRequestOutput";
338
+ const _GAE = "GetAgreementEntitlements";
339
+ const _GAEI = "GetAgreementEntitlementsInput";
340
+ const _GAEO = "GetAgreementEntitlementsOutput";
341
+ const _GAPR = "GetAgreementPaymentRequest";
342
+ const _GAPRI = "GetAgreementPaymentRequestInput";
343
+ const _GAPRO = "GetAgreementPaymentRequestOutput";
344
+ const _GAT = "GetAgreementTerms";
345
+ const _GATI = "GetAgreementTermsInput";
346
+ const _GATO = "GetAgreementTermsOutput";
347
+ const _GBAR = "GetBillingAdjustmentRequest";
348
+ const _GBARI = "GetBillingAdjustmentRequestInput";
349
+ const _GBARO = "GetBillingAdjustmentRequestOutput";
350
+ const _GI = "GrantItem";
351
+ const _GL = "GrantList";
352
+ const _IBP = "InvoiceBillingPeriod";
353
+ const _IC = "ItemizedCharge";
354
+ const _ICL = "ItemizedChargeList";
355
+ const _IE = "InvoicingEntity";
356
+ const _ISE = "InternalServerException";
357
+ const _LAC = "ListAgreementCharges";
358
+ const _LACI = "ListAgreementChargesInput";
359
+ const _LACO = "ListAgreementChargesOutput";
360
+ const _LACR = "ListAgreementCancellationRequests";
361
+ const _LACRI = "ListAgreementCancellationRequestsInput";
362
+ const _LACRO = "ListAgreementCancellationRequestsOutput";
363
+ const _LAILI = "ListAgreementInvoiceLineItems";
364
+ const _LAILII = "ListAgreementInvoiceLineItemsInput";
365
+ const _LAILIO = "ListAgreementInvoiceLineItemsOutput";
366
+ const _LAPR = "ListAgreementPaymentRequests";
367
+ const _LAPRI = "ListAgreementPaymentRequestsInput";
368
+ const _LAPRO = "ListAgreementPaymentRequestsOutput";
369
+ const _LBAR = "ListBillingAdjustmentRequests";
370
+ const _LBARI = "ListBillingAdjustmentRequestsInput";
371
+ const _LBARO = "ListBillingAdjustmentRequestsOutput";
372
+ const _LT = "LegalTerm";
373
+ const _P = "Proposer";
374
+ const _PCA = "PricingCurrencyAmount";
375
+ const _PO = "PurchaseOrder";
376
+ const _POu = "PurchaseOrders";
377
+ const _PRD = "PaymentRequestDescription";
378
+ const _PRS = "PaymentRequestSummary";
379
+ const _PRSL = "PaymentRequestSummaryList";
380
+ const _PS = "ProposalSummary";
381
+ const _PST = "PaymentScheduleTerm";
382
+ const _R = "Resource";
383
+ const _RACR = "RejectAgreementCancellationRequest";
384
+ const _RACRI = "RejectAgreementCancellationRequestInput";
385
+ const _RACRO = "RejectAgreementCancellationRequestOutput";
386
+ const _RAPR = "RejectAgreementPaymentRequest";
387
+ const _RAPRI = "RejectAgreementPaymentRequestInput";
388
+ const _RAPRO = "RejectAgreementPaymentRequestOutput";
389
+ const _RCI = "RateCardItem";
390
+ const _RCL = "RateCardList";
391
+ const _RNFE = "ResourceNotFoundException";
392
+ const _RPT = "RecurringPaymentTerm";
393
+ const _RT = "RenewalTerm";
394
+ const _RTC = "RenewalTermConfiguration";
395
+ const _RTCe = "RequestedTermConfiguration";
396
+ const _RTL = "RequestedTermList";
397
+ const _RTe = "RequestedTerm";
398
+ const _Re = "Resources";
399
+ const _S = "Selector";
400
+ const _SA = "SearchAgreements";
401
+ const _SACR = "SendAgreementCancellationRequest";
402
+ const _SACRI = "SendAgreementCancellationRequestInput";
403
+ const _SACRO = "SendAgreementCancellationRequestOutput";
404
+ const _SAI = "SearchAgreementsInput";
405
+ const _SAO = "SearchAgreementsOutput";
406
+ const _SAPR = "SendAgreementPaymentRequest";
407
+ const _SAPRI = "SendAgreementPaymentRequestInput";
408
+ const _SAPRO = "SendAgreementPaymentRequestOutput";
409
+ const _SI = "ScheduleItem";
410
+ const _SL = "ScheduleList";
411
+ const _SQEE = "ServiceQuotaExceededException";
412
+ const _ST = "SupportTerm";
413
+ const _So = "Sort";
414
+ const _TB = "TaxBreakdown";
415
+ const _TBI = "TaxBreakdownItem";
416
+ const _TC = "TaxConfiguration";
417
+ const _TE = "ThrottlingException";
418
+ const _UBPT = "UsageBasedPricingTerm";
419
+ const _UBRCI = "UsageBasedRateCardItem";
420
+ const _UBRCL = "UsageBasedRateCardList";
421
+ const _UPO = "UpdatePurchaseOrders";
422
+ const _UPOI = "UpdatePurchaseOrdersInput";
423
+ const _UPOO = "UpdatePurchaseOrdersOutput";
424
+ const _VE = "ValidationException";
425
+ const _VEF = "ValidationExceptionField";
426
+ const _VEFL = "ValidationExceptionFieldList";
427
+ const _VPT = "VariablePaymentTerm";
428
+ const _VPTC = "VariablePaymentTermConfiguration";
429
+ const _VT = "ValidityTerm";
430
+ const _a = "acceptor";
431
+ const _aA = "adjustmentAmount";
432
+ const _aAT = "amountAfterTax";
433
+ const _aCRI = "agreementCancellationRequestId";
434
+ const _aD = "agreementDuration";
435
+ const _aE = "agreementEntitlements";
436
+ const _aED = "agreementEndDate";
437
+ const _aI = "agreementId";
438
+ const _aILIGS = "agreementInvoiceLineItemGroupSummaries";
439
+ const _aIT = "afterIssuedTime";
440
+ const _aIc = "accountId";
441
+ const _aPI = "agreementProposalIdentifier";
442
+ const _aRC = "adjustmentReasonCode";
443
+ const _aRI = "agreementRequestId";
444
+ const _aSD = "agreementStartDate";
445
+ const _aT = "agreementType";
446
+ const _aTc = "acceptanceTime";
447
+ const _aTcc = "acceptedTerms";
448
+ const _aV = "agreementValue";
449
+ const _aVS = "agreementViewSummaries";
450
+ const _am = "amount";
451
+ const _b = "breakdown";
452
+ const _bARE = "billingAdjustmentRequestEntries";
453
+ const _bARI = "billingAdjustmentRequestId";
454
+ const _bIT = "beforeIssuedTime";
455
+ const _bN = "branchName";
456
+ const _bP = "billingPeriod";
457
+ const _bPT = "byolPricingTerm";
458
+ const _c = "client";
459
+ const _cA = "createdAt";
460
+ const _cAh = "chargeAmount";
461
+ const _cAr = "createdAfter";
462
+ const _cB = "createdBefore";
463
+ const _cC = "currencyCode";
464
+ const _cD = "chargeDate";
465
+ const _cI = "chargeId";
466
+ const _cR = "cancellationReason";
467
+ const _cRh = "chargeReference";
468
+ const _cRha = "chargeRevision";
469
+ const _cS = "chargeSummary";
470
+ const _cT = "clientToken";
471
+ const _cUPT = "configurableUpfrontPricingTerm";
472
+ const _cUPTC = "configurableUpfrontPricingTermConfiguration";
473
+ const _ca = "catalog";
474
+ const _co = "code";
475
+ const _con = "configuration";
476
+ const _cons = "constraints";
477
+ const _d = "description";
478
+ const _dK = "dimensionKey";
479
+ const _dV = "dimensionValue";
480
+ const _di = "dimensions";
481
+ const _do = "documents";
482
+ const _du = "duration";
483
+ const _e = "error";
484
+ const _eAR = "enableAutoRenew";
485
+ const _eC = "expectedCharges";
486
+ const _eCs = "estimatedCharges";
487
+ const _eD = "expirationDuration";
488
+ const _eT = "endTime";
489
+ const _eTs = "estimatedTaxes";
490
+ const _en = "entitlements";
491
+ const _er = "errors";
492
+ const _f = "fields";
493
+ const _fTPT = "freeTrialPricingTerm";
494
+ const _fUPT = "fixedUpfrontPricingTerm";
495
+ const _fi = "filters";
496
+ const _g = "grants";
497
+ const _gB = "groupBy";
498
+ const _hE = "httpError";
499
+ const _i = "items";
500
+ const _iBP = "invoiceBillingPeriod";
501
+ const _iC = "itemizedCharges";
502
+ const _iCA = "incrementalChargeAmount";
503
+ const _iE = "invoicingEntity";
504
+ const _iI = "invoiceId";
505
+ const _iT = "issuedTime";
506
+ const _iTn = "invoiceType";
507
+ const _id = "id";
508
+ const _in = "intent";
509
+ const _lA = "licenseArn";
510
+ const _lN = "legalName";
511
+ const _lT = "legalTerm";
512
+ const _m = "message";
513
+ const _mAA = "maxAdjustmentAmount";
514
+ const _mDS = "multipleDimensionSelection";
515
+ const _mQ = "maxQuantity";
516
+ const _mR = "maxResults";
517
+ const _mTCA = "maxTotalChargeAmount";
518
+ const _mo = "month";
519
+ const _n = "name";
520
+ const _nAV = "newAgreementValue";
521
+ const _nAVAT = "newAgreementValueAfterTax";
522
+ const _nQ = "newQuantity";
523
+ const _nT = "nextToken";
524
+ const _oI = "offerId";
525
+ const _oII = "originalInvoiceId";
526
+ const _oQ = "oldQuantity";
527
+ const _oSI = "offerSetId";
528
+ const _p = "proposer";
529
+ const _pCA = "pricingCurrencyAmount";
530
+ const _pO = "purchaseOrders";
531
+ const _pOR = "purchaseOrderReference";
532
+ const _pRAS = "paymentRequestApprovalStrategy";
533
+ const _pRI = "paymentRequestId";
534
+ const _pS = "proposalSummary";
535
+ const _pST = "paymentScheduleTerm";
536
+ const _pT = "partyType";
537
+ const _pr = "price";
538
+ const _qC = "quotaCode";
539
+ const _qCu = "quantityConfiguration";
540
+ const _r = "reason";
541
+ const _rC = "reasonCode";
542
+ const _rCa = "rateCards";
543
+ const _rCat = "rateCard";
544
+ const _rI = "requestId";
545
+ const _rIe = "resourceId";
546
+ const _rP = "refundPolicy";
547
+ const _rPT = "recurringPaymentTerm";
548
+ const _rR = "rejectionReason";
549
+ const _rT = "resourceType";
550
+ const _rTC = "renewalTermConfiguration";
551
+ const _rTe = "registrationToken";
552
+ const _rTen = "renewalTerm";
553
+ const _rTeq = "requestedTerms";
554
+ const _ra = "rate";
555
+ const _re = "resource";
556
+ const _res = "resources";
557
+ const _rev = "revision";
558
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.marketplaceagreement";
559
+ const _sAI = "sourceAgreementIdentifier";
560
+ const _sB = "sortBy";
561
+ const _sC = "serviceCode";
562
+ const _sM = "statusMessage";
563
+ const _sO = "sortOrder";
564
+ const _sRC = "statusReasonCode";
565
+ const _sT = "startTime";
566
+ const _sTu = "supportTerm";
567
+ const _sV = "selectorValue";
568
+ const _sc = "schedule";
569
+ const _se = "server";
570
+ const _sel = "selector";
571
+ const _so = "sort";
572
+ const _st = "status";
573
+ const _t = "type";
574
+ const _tA = "totalAmount";
575
+ const _tC = "taxConfiguration";
576
+ const _tE = "taxEstimation";
577
+ const _tI = "termId";
578
+ const _ti = "time";
579
+ const _tim = "timing";
580
+ const _u = "url";
581
+ const _uA = "updatedAt";
582
+ const _uBPT = "usageBasedPricingTerm";
583
+ const _v = "version";
584
+ const _vPT = "variablePaymentTerm";
585
+ const _vPTC = "variablePaymentTermConfiguration";
586
+ const _vT = "validityTerm";
587
+ const _va = "values";
588
+ const _val = "value";
589
+ const _y = "year";
590
+ const n0 = "com.amazonaws.marketplaceagreement";
591
+ const _s_registry = TypeRegistry.for(_s);
592
+ var MarketplaceAgreementServiceException$ = [-3, _s, "MarketplaceAgreementServiceException", 0, [], []];
593
+ _s_registry.registerError(MarketplaceAgreementServiceException$, MarketplaceAgreementServiceException);
594
+ const n0_registry = TypeRegistry.for(n0);
595
+ var AccessDeniedException$ = [-3, n0, _ADE,
596
+ { [_e]: _c, [_hE]: 403 },
597
+ [_rI, _m, _r],
598
+ [0, 0, 0]
599
+ ];
600
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
601
+ var ConflictException$ = [-3, n0, _CE,
602
+ { [_e]: _c, [_hE]: 409 },
603
+ [_rI, _m, _rIe, _rT],
604
+ [0, 0, 0, 0]
605
+ ];
606
+ n0_registry.registerError(ConflictException$, ConflictException);
607
+ var InternalServerException$ = [-3, n0, _ISE,
608
+ { [_e]: _se, [_hE]: 500 },
609
+ [_rI, _m],
610
+ [0, 0]
611
+ ];
612
+ n0_registry.registerError(InternalServerException$, InternalServerException);
613
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
614
+ { [_e]: _c, [_hE]: 404 },
615
+ [_rI, _m, _rIe, _rT],
616
+ [0, 0, 0, 0]
617
+ ];
618
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
619
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
620
+ { [_e]: _c, [_hE]: 402 },
621
+ [_rI, _m, _qC, _sC, _rT, _rIe],
622
+ [0, 0, 0, 0, 0, 0]
623
+ ];
624
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
625
+ var ThrottlingException$ = [-3, n0, _TE,
626
+ { [_e]: _c, [_hE]: 429 },
627
+ [_rI, _m],
628
+ [0, 0]
629
+ ];
630
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
631
+ var ValidationException$ = [-3, n0, _VE,
632
+ { [_e]: _c, [_hE]: 400 },
633
+ [_rI, _m, _r, _f],
634
+ [0, 0, 0, () => ValidationExceptionFieldList]
635
+ ];
636
+ n0_registry.registerError(ValidationException$, ValidationException);
637
+ const errorTypeRegistries = [
638
+ _s_registry,
639
+ n0_registry,
640
+ ];
641
+ var AgreementCancellationRequestCancellationReason = [0, n0, _ACRCR, 8, 0];
642
+ var AgreementCancellationRequestDescription = [0, n0, _ACRD, 8, 0];
643
+ var AgreementCancellationRequestRejectionReason = [0, n0, _ACRRR, 8, 0];
644
+ var BillingAdjustmentDescription = [0, n0, _BAD, 8, 0];
645
+ var PaymentRequestDescription = [0, n0, _PRD, 8, 0];
646
+ var AcceptAgreementCancellationRequestInput$ = [3, n0, _AACRI,
647
+ 0,
648
+ [_aI, _aCRI],
649
+ [0, 0], 2
650
+ ];
651
+ var AcceptAgreementCancellationRequestOutput$ = [3, n0, _AACRO,
652
+ 0,
653
+ [_aI, _aCRI, _st, _rC, _d, _cA, _uA],
654
+ [0, 0, 0, 0, [() => AgreementCancellationRequestDescription, 0], 4, 4]
655
+ ];
656
+ var AcceptAgreementPaymentRequestInput$ = [3, n0, _AAPRI,
657
+ 0,
658
+ [_pRI, _aI, _pOR],
659
+ [0, 0, 0], 2
660
+ ];
661
+ var AcceptAgreementPaymentRequestOutput$ = [3, n0, _AAPRO,
662
+ 0,
663
+ [_pRI, _aI, _st, _n, _d, _cAh, _cC, _cA, _uA],
664
+ [0, 0, 0, 0, [() => PaymentRequestDescription, 0], 0, 0, 4, 4]
665
+ ];
666
+ var AcceptAgreementRequestInput$ = [3, n0, _AARI,
667
+ 0,
668
+ [_aRI, _pO],
669
+ [0, () => PurchaseOrders], 1
670
+ ];
671
+ var AcceptAgreementRequestOutput$ = [3, n0, _AARO,
672
+ 0,
673
+ [_aI],
674
+ [0]
675
+ ];
676
+ var Acceptor$ = [3, n0, _A,
677
+ 0,
678
+ [_aIc],
679
+ [0]
680
+ ];
681
+ var AgreementCancellationRequestSummary$ = [3, n0, _ACRS,
682
+ 0,
683
+ [_aCRI, _aI, _st, _rC, _aT, _ca, _cA, _uA],
684
+ [0, 0, 0, 0, 0, 0, 4, 4]
685
+ ];
686
+ var AgreementEntitlement$ = [3, n0, _AE,
687
+ 0,
688
+ [_re, _t, _rTe, _st, _sRC, _lA],
689
+ [() => Resource$, 0, 0, 0, 0, 0]
690
+ ];
691
+ var AgreementInvoiceLineItemGroupSummary$ = [3, n0, _AILIGS,
692
+ 0,
693
+ [_aI, _iI, _pCA, _iBP, _iT, _iTn, _iE],
694
+ [0, 0, () => PricingCurrencyAmount$, () => InvoiceBillingPeriod$, 4, 0, () => InvoicingEntity$]
695
+ ];
696
+ var AgreementViewSummary$ = [3, n0, _AVS,
697
+ 0,
698
+ [_aI, _aTc, _sT, _eT, _aT, _a, _p, _pS, _st, _en],
699
+ [0, 4, 4, 4, 0, () => Acceptor$, () => Proposer$, () => ProposalSummary$, 0, () => EntitlementList]
700
+ ];
701
+ var BatchCreateBillingAdjustmentError$ = [3, n0, _BCBAE,
702
+ 0,
703
+ [_co, _m, _cT],
704
+ [0, 0, 0], 3
705
+ ];
706
+ var BatchCreateBillingAdjustmentItem$ = [3, n0, _BCBAI,
707
+ 0,
708
+ [_bARI, _cT],
709
+ [0, 0], 2
710
+ ];
711
+ var BatchCreateBillingAdjustmentRequestEntry$ = [3, n0, _BCBARE,
712
+ 0,
713
+ [_aI, _oII, _aA, _cC, _aRC, _cT, _d],
714
+ [0, 0, 0, 0, 0, 0, [() => BillingAdjustmentDescription, 0]], 6
715
+ ];
716
+ var BatchCreateBillingAdjustmentRequestInput$ = [3, n0, _BCBARI,
717
+ 0,
718
+ [_bARE],
719
+ [[() => BatchCreateBillingAdjustmentRequestEntryList, 0]], 1
720
+ ];
721
+ var BatchCreateBillingAdjustmentRequestOutput$ = [3, n0, _BCBARO,
722
+ 0,
723
+ [_i, _er],
724
+ [() => BatchCreateBillingAdjustmentItemList, () => BatchCreateBillingAdjustmentErrorList], 2
725
+ ];
726
+ var BillingAdjustmentSummary$ = [3, n0, _BAS,
727
+ 0,
728
+ [_bARI, _oII, _aA, _cC, _st, _aI, _cA, _uA, _aT, _ca],
729
+ [0, 0, 0, 0, 0, 0, 4, 4, 0, 0], 10
730
+ ];
731
+ var ByolPricingTerm$ = [3, n0, _BPT,
732
+ 0,
733
+ [_t, _id],
734
+ [0, 0]
735
+ ];
736
+ var CancelAgreementCancellationRequestInput$ = [3, n0, _CACRI,
737
+ 0,
738
+ [_aI, _aCRI, _cR],
739
+ [0, 0, [() => AgreementCancellationRequestCancellationReason, 0]], 3
740
+ ];
741
+ var CancelAgreementCancellationRequestOutput$ = [3, n0, _CACRO,
742
+ 0,
743
+ [_aCRI, _aI, _rC, _d, _st, _sM, _cA, _uA],
744
+ [0, 0, 0, [() => AgreementCancellationRequestDescription, 0], 0, 0, 4, 4]
745
+ ];
746
+ var CancelAgreementInput$ = [3, n0, _CAI,
747
+ 0,
748
+ [_aI],
749
+ [0], 1
750
+ ];
751
+ var CancelAgreementOutput$ = [3, n0, _CAO,
752
+ 0,
753
+ [],
754
+ []
755
+ ];
756
+ var CancelAgreementPaymentRequestInput$ = [3, n0, _CAPRI,
757
+ 0,
758
+ [_pRI, _aI],
759
+ [0, 0], 2
760
+ ];
761
+ var CancelAgreementPaymentRequestOutput$ = [3, n0, _CAPRO,
762
+ 0,
763
+ [_pRI, _aI, _st, _n, _d, _cAh, _cC, _cA, _uA],
764
+ [0, 0, 0, 0, [() => PaymentRequestDescription, 0], 0, 0, 4, 4]
765
+ ];
766
+ var Charge$ = [3, n0, _C,
767
+ 0,
768
+ [_id, _rev, _aI, _aT, _pOR, _cC, _am, _ti],
769
+ [0, 1, 0, 0, 0, 0, 0, 4]
770
+ ];
771
+ var ChargeSummary$ = [3, n0, _CS,
772
+ 0,
773
+ [_cC, _nAV, _nAVAT, _eC, _eTs, _iC, _iE],
774
+ [0, 0, 0, () => ExpectedChargeList, () => EstimatedTaxes$, () => ItemizedChargeList, () => InvoicingEntity$]
775
+ ];
776
+ var ConfigurableUpfrontPricingTerm$ = [3, n0, _CUPT,
777
+ 0,
778
+ [_t, _id, _cC, _rCa, _con],
779
+ [0, 0, 0, () => ConfigurableUpfrontRateCardList, () => ConfigurableUpfrontPricingTermConfiguration$]
780
+ ];
781
+ var ConfigurableUpfrontPricingTermConfiguration$ = [3, n0, _CUPTC,
782
+ 0,
783
+ [_sV, _di],
784
+ [0, () => DimensionList], 2
785
+ ];
786
+ var ConfigurableUpfrontRateCardItem$ = [3, n0, _CURCI,
787
+ 0,
788
+ [_sel, _cons, _rCat],
789
+ [() => Selector$, () => Constraints$, () => RateCardList]
790
+ ];
791
+ var Constraints$ = [3, n0, _Co,
792
+ 0,
793
+ [_mDS, _qCu],
794
+ [0, 0]
795
+ ];
796
+ var CreateAgreementRequestInput$ = [3, n0, _CARI,
797
+ 0,
798
+ [_in, _rTeq, _cT, _sAI, _aPI, _tC],
799
+ [0, () => RequestedTermList, [0, 4], 0, 0, () => TaxConfiguration$], 2
800
+ ];
801
+ var CreateAgreementRequestOutput$ = [3, n0, _CARO,
802
+ 0,
803
+ [_aRI, _cS],
804
+ [0, () => ChargeSummary$]
805
+ ];
806
+ var DescribeAgreementInput$ = [3, n0, _DAI,
807
+ 0,
808
+ [_aI],
809
+ [0], 1
810
+ ];
811
+ var DescribeAgreementOutput$ = [3, n0, _DAO,
812
+ 0,
813
+ [_aI, _a, _p, _sT, _eT, _aTc, _aT, _eCs, _pS, _st],
814
+ [0, () => Acceptor$, () => Proposer$, 4, 4, 4, 0, () => EstimatedCharges$, () => ProposalSummary$, 0]
815
+ ];
816
+ var Dimension$ = [3, n0, _D,
817
+ 0,
818
+ [_dK, _dV],
819
+ [0, 1], 2
820
+ ];
821
+ var DocumentItem$ = [3, n0, _DI,
822
+ 0,
823
+ [_t, _u, _v],
824
+ [0, 0, 0]
825
+ ];
826
+ var Entitlement$ = [3, n0, _E,
827
+ 0,
828
+ [_lA],
829
+ [0]
830
+ ];
831
+ var EstimatedCharges$ = [3, n0, _EC,
832
+ 0,
833
+ [_cC, _aV],
834
+ [0, 0]
835
+ ];
836
+ var EstimatedTaxes$ = [3, n0, _ET,
837
+ 0,
838
+ [_b, _tA],
839
+ [() => TaxBreakdown, 0]
840
+ ];
841
+ var ExpectedCharge$ = [3, n0, _ECx,
842
+ 0,
843
+ [_id, _ti, _am, _aAT, _tim, _eTs],
844
+ [0, 4, 0, 0, 0, () => EstimatedTaxes$]
845
+ ];
846
+ var Filter$ = [3, n0, _F,
847
+ 0,
848
+ [_n, _va],
849
+ [0, 64 | 0]
850
+ ];
851
+ var FixedUpfrontPricingTerm$ = [3, n0, _FUPT,
852
+ 0,
853
+ [_t, _id, _cC, _du, _pr, _g],
854
+ [0, 0, 0, 0, 0, () => GrantList]
855
+ ];
856
+ var FreeTrialPricingTerm$ = [3, n0, _FTPT,
857
+ 0,
858
+ [_t, _id, _du, _g],
859
+ [0, 0, 0, () => GrantList]
860
+ ];
861
+ var GetAgreementCancellationRequestInput$ = [3, n0, _GACRI,
862
+ 0,
863
+ [_aCRI, _aI],
864
+ [0, 0], 2
865
+ ];
866
+ var GetAgreementCancellationRequestOutput$ = [3, n0, _GACRO,
867
+ 0,
868
+ [_aCRI, _aI, _rC, _d, _st, _sM, _cA, _uA],
869
+ [0, 0, 0, [() => AgreementCancellationRequestDescription, 0], 0, 0, 4, 4]
870
+ ];
871
+ var GetAgreementEntitlementsInput$ = [3, n0, _GAEI,
872
+ 0,
873
+ [_aI, _mR, _nT],
874
+ [0, 1, 0], 1
875
+ ];
876
+ var GetAgreementEntitlementsOutput$ = [3, n0, _GAEO,
877
+ 0,
878
+ [_aE, _nT],
879
+ [() => AgreementEntitlementList, 0]
880
+ ];
881
+ var GetAgreementPaymentRequestInput$ = [3, n0, _GAPRI,
882
+ 0,
883
+ [_pRI, _aI],
884
+ [0, 0], 2
885
+ ];
886
+ var GetAgreementPaymentRequestOutput$ = [3, n0, _GAPRO,
887
+ 0,
888
+ [_pRI, _aI, _st, _sM, _n, _d, _cI, _cAh, _cC, _cA, _uA],
889
+ [0, 0, 0, 0, 0, [() => PaymentRequestDescription, 0], 0, 0, 0, 4, 4]
890
+ ];
891
+ var GetAgreementTermsInput$ = [3, n0, _GATI,
892
+ 0,
893
+ [_aI, _mR, _nT],
894
+ [0, 1, 0], 1
895
+ ];
896
+ var GetAgreementTermsOutput$ = [3, n0, _GATO,
897
+ 0,
898
+ [_aTcc, _nT],
899
+ [() => AcceptedTermList, 0]
900
+ ];
901
+ var GetBillingAdjustmentRequestInput$ = [3, n0, _GBARI,
902
+ 0,
903
+ [_aI, _bARI],
904
+ [0, 0], 2
905
+ ];
906
+ var GetBillingAdjustmentRequestOutput$ = [3, n0, _GBARO,
907
+ 0,
908
+ [_bARI, _aI, _aRC, _oII, _aA, _cC, _st, _cA, _uA, _d, _sM],
909
+ [0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0], 9
910
+ ];
911
+ var GrantItem$ = [3, n0, _GI,
912
+ 0,
913
+ [_dK, _mQ],
914
+ [0, 1]
915
+ ];
916
+ var InvoiceBillingPeriod$ = [3, n0, _IBP,
917
+ 0,
918
+ [_mo, _y],
919
+ [1, 1], 2
920
+ ];
921
+ var InvoicingEntity$ = [3, n0, _IE,
922
+ 0,
923
+ [_lN, _bN],
924
+ [0, 0]
925
+ ];
926
+ var ItemizedCharge$ = [3, n0, _IC,
927
+ 0,
928
+ [_dK, _nQ, _oQ, _cRh, _iCA],
929
+ [0, 1, 1, 0, 0]
930
+ ];
931
+ var LegalTerm$ = [3, n0, _LT,
932
+ 0,
933
+ [_t, _id, _do],
934
+ [0, 0, () => DocumentList]
935
+ ];
936
+ var ListAgreementCancellationRequestsInput$ = [3, n0, _LACRI,
937
+ 0,
938
+ [_pT, _aI, _st, _aT, _ca, _mR, _nT],
939
+ [0, 0, 0, 0, 0, 1, 0], 1
940
+ ];
941
+ var ListAgreementCancellationRequestsOutput$ = [3, n0, _LACRO,
942
+ 0,
943
+ [_nT, _i],
944
+ [0, () => AgreementCancellationRequestSummaryList]
945
+ ];
946
+ var ListAgreementChargesInput$ = [3, n0, _LACI,
947
+ 0,
948
+ [_ca, _aI, _aT, _mR, _nT],
949
+ [0, 0, 0, 1, 0]
950
+ ];
951
+ var ListAgreementChargesOutput$ = [3, n0, _LACO,
952
+ 0,
953
+ [_i, _nT],
954
+ [() => Charges, 0]
955
+ ];
956
+ var ListAgreementInvoiceLineItemsInput$ = [3, n0, _LAILII,
957
+ 0,
958
+ [_aI, _gB, _iI, _iTn, _iBP, _bIT, _aIT, _mR, _nT],
959
+ [0, 0, 0, 0, () => InvoiceBillingPeriod$, 4, 4, 1, 0], 2
960
+ ];
961
+ var ListAgreementInvoiceLineItemsOutput$ = [3, n0, _LAILIO,
962
+ 0,
963
+ [_aILIGS, _nT],
964
+ [() => AgreementInvoiceLineItemGroupSummaries, 0]
965
+ ];
966
+ var ListAgreementPaymentRequestsInput$ = [3, n0, _LAPRI,
967
+ 0,
968
+ [_pT, _aT, _ca, _aI, _st, _mR, _nT],
969
+ [0, 0, 0, 0, 0, 1, 0], 1
970
+ ];
971
+ var ListAgreementPaymentRequestsOutput$ = [3, n0, _LAPRO,
972
+ 0,
973
+ [_i, _nT],
974
+ [() => PaymentRequestSummaryList, 0], 1
975
+ ];
976
+ var ListBillingAdjustmentRequestsInput$ = [3, n0, _LBARI,
977
+ 0,
978
+ [_aI, _st, _cAr, _cB, _mR, _ca, _aT, _nT],
979
+ [0, 0, 4, 4, 1, 0, 0, 0]
980
+ ];
981
+ var ListBillingAdjustmentRequestsOutput$ = [3, n0, _LBARO,
982
+ 0,
983
+ [_i, _nT],
984
+ [() => BillingAdjustmentSummaryList, 0], 1
985
+ ];
986
+ var PaymentRequestSummary$ = [3, n0, _PRS,
987
+ 0,
988
+ [_pRI, _aI, _st, _n, _cI, _cAh, _cC, _cA, _uA],
989
+ [0, 0, 0, 0, 0, 0, 0, 4, 4]
990
+ ];
991
+ var PaymentScheduleTerm$ = [3, n0, _PST,
992
+ 0,
993
+ [_t, _id, _cC, _sc],
994
+ [0, 0, 0, () => ScheduleList]
995
+ ];
996
+ var PricingCurrencyAmount$ = [3, n0, _PCA,
997
+ 0,
998
+ [_am, _mAA, _cC],
999
+ [0, 0, 0]
1000
+ ];
1001
+ var ProposalSummary$ = [3, n0, _PS,
1002
+ 0,
1003
+ [_res, _oI, _oSI],
1004
+ [() => Resources, 0, 0]
1005
+ ];
1006
+ var Proposer$ = [3, n0, _P,
1007
+ 0,
1008
+ [_aIc],
1009
+ [0]
1010
+ ];
1011
+ var PurchaseOrder$ = [3, n0, _PO,
1012
+ 0,
1013
+ [_cI, _cRha, _aI, _pOR],
1014
+ [0, 1, 0, 0], 1
1015
+ ];
1016
+ var RateCardItem$ = [3, n0, _RCI,
1017
+ 0,
1018
+ [_dK, _pr],
1019
+ [0, 0]
1020
+ ];
1021
+ var RecurringPaymentTerm$ = [3, n0, _RPT,
1022
+ 0,
1023
+ [_t, _id, _cC, _bP, _pr],
1024
+ [0, 0, 0, 0, 0]
1025
+ ];
1026
+ var RejectAgreementCancellationRequestInput$ = [3, n0, _RACRI,
1027
+ 0,
1028
+ [_aI, _aCRI, _rR],
1029
+ [0, 0, [() => AgreementCancellationRequestRejectionReason, 0]], 3
1030
+ ];
1031
+ var RejectAgreementCancellationRequestOutput$ = [3, n0, _RACRO,
1032
+ 0,
1033
+ [_aI, _aCRI, _st, _sM, _rC, _d, _cA, _uA],
1034
+ [0, 0, 0, 0, 0, [() => AgreementCancellationRequestDescription, 0], 4, 4]
1035
+ ];
1036
+ var RejectAgreementPaymentRequestInput$ = [3, n0, _RAPRI,
1037
+ 0,
1038
+ [_pRI, _aI, _rR],
1039
+ [0, 0, 0], 2
1040
+ ];
1041
+ var RejectAgreementPaymentRequestOutput$ = [3, n0, _RAPRO,
1042
+ 0,
1043
+ [_pRI, _aI, _st, _sM, _n, _d, _cAh, _cC, _cA, _uA],
1044
+ [0, 0, 0, 0, 0, [() => PaymentRequestDescription, 0], 0, 0, 4, 4]
1045
+ ];
1046
+ var RenewalTerm$ = [3, n0, _RT,
1047
+ 0,
1048
+ [_t, _id, _con],
1049
+ [0, 0, () => RenewalTermConfiguration$]
1050
+ ];
1051
+ var RenewalTermConfiguration$ = [3, n0, _RTC,
1052
+ 0,
1053
+ [_eAR],
1054
+ [2], 1
1055
+ ];
1056
+ var RequestedTerm$ = [3, n0, _RTe,
1057
+ 0,
1058
+ [_id, _con],
1059
+ [0, () => RequestedTermConfiguration$], 1
1060
+ ];
1061
+ var Resource$ = [3, n0, _R,
1062
+ 0,
1063
+ [_id, _t],
1064
+ [0, 0]
1065
+ ];
1066
+ var ScheduleItem$ = [3, n0, _SI,
1067
+ 0,
1068
+ [_cD, _cAh],
1069
+ [4, 0]
1070
+ ];
1071
+ var SearchAgreementsInput$ = [3, n0, _SAI,
1072
+ 0,
1073
+ [_ca, _fi, _so, _mR, _nT],
1074
+ [0, () => FilterList, () => Sort$, 1, 0]
1075
+ ];
1076
+ var SearchAgreementsOutput$ = [3, n0, _SAO,
1077
+ 0,
1078
+ [_aVS, _nT],
1079
+ [() => AgreementViewSummaryList, 0]
1080
+ ];
1081
+ var Selector$ = [3, n0, _S,
1082
+ 0,
1083
+ [_t, _val],
1084
+ [0, 0]
1085
+ ];
1086
+ var SendAgreementCancellationRequestInput$ = [3, n0, _SACRI,
1087
+ 0,
1088
+ [_aI, _rC, _cT, _d],
1089
+ [0, 0, [0, 4], [() => AgreementCancellationRequestDescription, 0]], 2
1090
+ ];
1091
+ var SendAgreementCancellationRequestOutput$ = [3, n0, _SACRO,
1092
+ 0,
1093
+ [_aI, _aCRI, _st, _rC, _d, _cA, _uA],
1094
+ [0, 0, 0, 0, [() => AgreementCancellationRequestDescription, 0], 4, 4]
1095
+ ];
1096
+ var SendAgreementPaymentRequestInput$ = [3, n0, _SAPRI,
1097
+ 0,
1098
+ [_aI, _tI, _n, _cAh, _cT, _d],
1099
+ [0, 0, 0, 0, [0, 4], [() => PaymentRequestDescription, 0]], 4
1100
+ ];
1101
+ var SendAgreementPaymentRequestOutput$ = [3, n0, _SAPRO,
1102
+ 0,
1103
+ [_pRI, _aI, _st, _n, _d, _cAh, _cC, _cA],
1104
+ [0, 0, 0, 0, [() => PaymentRequestDescription, 0], 0, 0, 4]
1105
+ ];
1106
+ var Sort$ = [3, n0, _So,
1107
+ 0,
1108
+ [_sB, _sO],
1109
+ [0, 0]
1110
+ ];
1111
+ var SupportTerm$ = [3, n0, _ST,
1112
+ 0,
1113
+ [_t, _id, _rP],
1114
+ [0, 0, 0]
1115
+ ];
1116
+ var TaxBreakdownItem$ = [3, n0, _TBI,
1117
+ 0,
1118
+ [_am, _ra, _t],
1119
+ [0, 0, 0]
1120
+ ];
1121
+ var TaxConfiguration$ = [3, n0, _TC,
1122
+ 0,
1123
+ [_tE],
1124
+ [0]
1125
+ ];
1126
+ var UpdatePurchaseOrdersInput$ = [3, n0, _UPOI,
1127
+ 0,
1128
+ [_pO],
1129
+ [() => PurchaseOrders], 1
1130
+ ];
1131
+ var UpdatePurchaseOrdersOutput$ = [3, n0, _UPOO,
1132
+ 0,
1133
+ [],
1134
+ []
1135
+ ];
1136
+ var UsageBasedPricingTerm$ = [3, n0, _UBPT,
1137
+ 0,
1138
+ [_t, _id, _cC, _rCa],
1139
+ [0, 0, 0, () => UsageBasedRateCardList]
1140
+ ];
1141
+ var UsageBasedRateCardItem$ = [3, n0, _UBRCI,
1142
+ 0,
1143
+ [_rCat],
1144
+ [() => RateCardList]
1145
+ ];
1146
+ var ValidationExceptionField$ = [3, n0, _VEF,
1147
+ 0,
1148
+ [_n, _m],
1149
+ [0, 0], 2
1150
+ ];
1151
+ var ValidityTerm$ = [3, n0, _VT,
1152
+ 0,
1153
+ [_t, _id, _aD, _aSD, _aED],
1154
+ [0, 0, 0, 4, 4]
1155
+ ];
1156
+ var VariablePaymentTerm$ = [3, n0, _VPT,
1157
+ 0,
1158
+ [_t, _id, _cC, _mTCA, _con],
1159
+ [0, 0, 0, 0, () => VariablePaymentTermConfiguration$]
1160
+ ];
1161
+ var VariablePaymentTermConfiguration$ = [3, n0, _VPTC,
1162
+ 0,
1163
+ [_pRAS, _eD],
1164
+ [0, 0], 1
1165
+ ];
1166
+ var AcceptedTermList = [1, n0, _ATL,
1167
+ 0, () => AcceptedTerm$
1168
+ ];
1169
+ var AgreementCancellationRequestSummaryList = [1, n0, _ACRSL,
1170
+ 0, () => AgreementCancellationRequestSummary$
1171
+ ];
1172
+ var AgreementEntitlementList = [1, n0, _AEL,
1173
+ 0, () => AgreementEntitlement$
1174
+ ];
1175
+ var AgreementInvoiceLineItemGroupSummaries = [1, n0, _AILIGSg,
1176
+ 0, () => AgreementInvoiceLineItemGroupSummary$
1177
+ ];
1178
+ var AgreementViewSummaryList = [1, n0, _AVSL,
1179
+ 0, () => AgreementViewSummary$
1180
+ ];
1181
+ var BatchCreateBillingAdjustmentErrorList = [1, n0, _BCBAEL,
1182
+ 0, () => BatchCreateBillingAdjustmentError$
1183
+ ];
1184
+ var BatchCreateBillingAdjustmentItemList = [1, n0, _BCBAIL,
1185
+ 0, () => BatchCreateBillingAdjustmentItem$
1186
+ ];
1187
+ var BatchCreateBillingAdjustmentRequestEntryList = [1, n0, _BCBAREL,
1188
+ 0, [() => BatchCreateBillingAdjustmentRequestEntry$,
1189
+ 0]
1190
+ ];
1191
+ var BillingAdjustmentSummaryList = [1, n0, _BASL,
1192
+ 0, () => BillingAdjustmentSummary$
1193
+ ];
1194
+ var Charges = [1, n0, _Ch,
1195
+ 0, () => Charge$
1196
+ ];
1197
+ var ConfigurableUpfrontRateCardList = [1, n0, _CURCL,
1198
+ 0, () => ConfigurableUpfrontRateCardItem$
1199
+ ];
1200
+ var DimensionList = [1, n0, _DL,
1201
+ 0, () => Dimension$
1202
+ ];
1203
+ var DocumentList = [1, n0, _DLo,
1204
+ 0, () => DocumentItem$
1205
+ ];
1206
+ var EntitlementList = [1, n0, _EL,
1207
+ 0, () => Entitlement$
1208
+ ];
1209
+ var ExpectedChargeList = [1, n0, _ECL,
1210
+ 0, () => ExpectedCharge$
1211
+ ];
1212
+ var FilterList = [1, n0, _FL,
1213
+ 0, () => Filter$
1214
+ ];
1215
+ var GrantList = [1, n0, _GL,
1216
+ 0, () => GrantItem$
1217
+ ];
1218
+ var ItemizedChargeList = [1, n0, _ICL,
1219
+ 0, () => ItemizedCharge$
1220
+ ];
1221
+ var PaymentRequestSummaryList = [1, n0, _PRSL,
1222
+ 0, () => PaymentRequestSummary$
1223
+ ];
1224
+ var PurchaseOrders = [1, n0, _POu,
1225
+ 0, () => PurchaseOrder$
1226
+ ];
1227
+ var RateCardList = [1, n0, _RCL,
1228
+ 0, () => RateCardItem$
1229
+ ];
1230
+ var RequestedTermList = [1, n0, _RTL,
1231
+ 0, () => RequestedTerm$
1232
+ ];
1233
+ var Resources = [1, n0, _Re,
1234
+ 0, () => Resource$
1235
+ ];
1236
+ var ScheduleList = [1, n0, _SL,
1237
+ 0, () => ScheduleItem$
1238
+ ];
1239
+ var TaxBreakdown = [1, n0, _TB,
1240
+ 0, () => TaxBreakdownItem$
1241
+ ];
1242
+ var UsageBasedRateCardList = [1, n0, _UBRCL,
1243
+ 0, () => UsageBasedRateCardItem$
1244
+ ];
1245
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1246
+ 0, () => ValidationExceptionField$
1247
+ ];
1248
+ var AcceptedTerm$ = [4, n0, _AT,
1249
+ 0,
1250
+ [_lT, _sTu, _rTen, _uBPT, _cUPT, _bPT, _rPT, _vT, _pST, _fTPT, _fUPT, _vPT],
1251
+ [() => LegalTerm$, () => SupportTerm$, () => RenewalTerm$, () => UsageBasedPricingTerm$, () => ConfigurableUpfrontPricingTerm$, () => ByolPricingTerm$, () => RecurringPaymentTerm$, () => ValidityTerm$, () => PaymentScheduleTerm$, () => FreeTrialPricingTerm$, () => FixedUpfrontPricingTerm$, () => VariablePaymentTerm$]
1252
+ ];
1253
+ var RequestedTermConfiguration$ = [4, n0, _RTCe,
1254
+ 0,
1255
+ [_cUPTC, _rTC, _vPTC],
1256
+ [() => ConfigurableUpfrontPricingTermConfiguration$, () => RenewalTermConfiguration$, () => VariablePaymentTermConfiguration$]
1257
+ ];
1258
+ var AcceptAgreementCancellationRequest$ = [9, n0, _AACR,
1259
+ 0, () => AcceptAgreementCancellationRequestInput$, () => AcceptAgreementCancellationRequestOutput$
1260
+ ];
1261
+ var AcceptAgreementPaymentRequest$ = [9, n0, _AAPR,
1262
+ 0, () => AcceptAgreementPaymentRequestInput$, () => AcceptAgreementPaymentRequestOutput$
1263
+ ];
1264
+ var AcceptAgreementRequest$ = [9, n0, _AAR,
1265
+ 0, () => AcceptAgreementRequestInput$, () => AcceptAgreementRequestOutput$
1266
+ ];
1267
+ var BatchCreateBillingAdjustmentRequest$ = [9, n0, _BCBAR,
1268
+ 0, () => BatchCreateBillingAdjustmentRequestInput$, () => BatchCreateBillingAdjustmentRequestOutput$
1269
+ ];
1270
+ var CancelAgreement$ = [9, n0, _CA,
1271
+ 0, () => CancelAgreementInput$, () => CancelAgreementOutput$
1272
+ ];
1273
+ var CancelAgreementCancellationRequest$ = [9, n0, _CACR,
1274
+ 0, () => CancelAgreementCancellationRequestInput$, () => CancelAgreementCancellationRequestOutput$
1275
+ ];
1276
+ var CancelAgreementPaymentRequest$ = [9, n0, _CAPR,
1277
+ 0, () => CancelAgreementPaymentRequestInput$, () => CancelAgreementPaymentRequestOutput$
1278
+ ];
1279
+ var CreateAgreementRequest$ = [9, n0, _CAR,
1280
+ 0, () => CreateAgreementRequestInput$, () => CreateAgreementRequestOutput$
1281
+ ];
1282
+ var DescribeAgreement$ = [9, n0, _DA,
1283
+ 0, () => DescribeAgreementInput$, () => DescribeAgreementOutput$
1284
+ ];
1285
+ var GetAgreementCancellationRequest$ = [9, n0, _GACR,
1286
+ 0, () => GetAgreementCancellationRequestInput$, () => GetAgreementCancellationRequestOutput$
1287
+ ];
1288
+ var GetAgreementEntitlements$ = [9, n0, _GAE,
1289
+ 0, () => GetAgreementEntitlementsInput$, () => GetAgreementEntitlementsOutput$
1290
+ ];
1291
+ var GetAgreementPaymentRequest$ = [9, n0, _GAPR,
1292
+ 0, () => GetAgreementPaymentRequestInput$, () => GetAgreementPaymentRequestOutput$
1293
+ ];
1294
+ var GetAgreementTerms$ = [9, n0, _GAT,
1295
+ 0, () => GetAgreementTermsInput$, () => GetAgreementTermsOutput$
1296
+ ];
1297
+ var GetBillingAdjustmentRequest$ = [9, n0, _GBAR,
1298
+ 0, () => GetBillingAdjustmentRequestInput$, () => GetBillingAdjustmentRequestOutput$
1299
+ ];
1300
+ var ListAgreementCancellationRequests$ = [9, n0, _LACR,
1301
+ 0, () => ListAgreementCancellationRequestsInput$, () => ListAgreementCancellationRequestsOutput$
1302
+ ];
1303
+ var ListAgreementCharges$ = [9, n0, _LAC,
1304
+ 0, () => ListAgreementChargesInput$, () => ListAgreementChargesOutput$
1305
+ ];
1306
+ var ListAgreementInvoiceLineItems$ = [9, n0, _LAILI,
1307
+ 0, () => ListAgreementInvoiceLineItemsInput$, () => ListAgreementInvoiceLineItemsOutput$
1308
+ ];
1309
+ var ListAgreementPaymentRequests$ = [9, n0, _LAPR,
1310
+ 0, () => ListAgreementPaymentRequestsInput$, () => ListAgreementPaymentRequestsOutput$
1311
+ ];
1312
+ var ListBillingAdjustmentRequests$ = [9, n0, _LBAR,
1313
+ 0, () => ListBillingAdjustmentRequestsInput$, () => ListBillingAdjustmentRequestsOutput$
1314
+ ];
1315
+ var RejectAgreementCancellationRequest$ = [9, n0, _RACR,
1316
+ 0, () => RejectAgreementCancellationRequestInput$, () => RejectAgreementCancellationRequestOutput$
1317
+ ];
1318
+ var RejectAgreementPaymentRequest$ = [9, n0, _RAPR,
1319
+ 0, () => RejectAgreementPaymentRequestInput$, () => RejectAgreementPaymentRequestOutput$
1320
+ ];
1321
+ var SearchAgreements$ = [9, n0, _SA,
1322
+ 0, () => SearchAgreementsInput$, () => SearchAgreementsOutput$
1323
+ ];
1324
+ var SendAgreementCancellationRequest$ = [9, n0, _SACR,
1325
+ 0, () => SendAgreementCancellationRequestInput$, () => SendAgreementCancellationRequestOutput$
1326
+ ];
1327
+ var SendAgreementPaymentRequest$ = [9, n0, _SAPR,
1328
+ 0, () => SendAgreementPaymentRequestInput$, () => SendAgreementPaymentRequestOutput$
1329
+ ];
1330
+ var UpdatePurchaseOrders$ = [9, n0, _UPO,
1331
+ 0, () => UpdatePurchaseOrdersInput$, () => UpdatePurchaseOrdersOutput$
1332
+ ];
1333
+
1334
+ const getRuntimeConfig$1 = (config) => {
1335
+ return {
1336
+ apiVersion: "2020-03-01",
1337
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1338
+ base64Encoder: config?.base64Encoder ?? toBase64,
1339
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1340
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1341
+ extensions: config?.extensions ?? [],
1342
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultMarketplaceAgreementHttpAuthSchemeProvider,
1343
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1344
+ {
1345
+ schemeId: "aws.auth#sigv4",
1346
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1347
+ signer: new AwsSdkSigV4Signer(),
1348
+ },
1349
+ ],
1350
+ logger: config?.logger ?? new NoOpLogger(),
1351
+ protocol: config?.protocol ?? AwsJson1_0Protocol,
1352
+ protocolSettings: config?.protocolSettings ?? {
1353
+ defaultNamespace: "com.amazonaws.marketplaceagreement",
1354
+ errorTypeRegistries,
1355
+ version: "2020-03-01",
1356
+ serviceTarget: "AWSMPCommerceService_v20200301",
1357
+ },
1358
+ serviceId: config?.serviceId ?? "Marketplace Agreement",
1359
+ urlParser: config?.urlParser ?? parseUrl,
1360
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1361
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1362
+ };
1363
+ };
1364
+
1365
+ const getRuntimeConfig = (config) => {
1366
+ emitWarningIfUnsupportedVersion(process.version);
1367
+ const defaultsMode = resolveDefaultsModeConfig(config);
1368
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1369
+ const clientSharedValues = getRuntimeConfig$1(config);
1370
+ emitWarningIfUnsupportedVersion$1(process.version);
1371
+ const loaderConfig = {
1372
+ profile: config?.profile,
1373
+ logger: clientSharedValues.logger,
1374
+ };
1375
+ return {
1376
+ ...clientSharedValues,
1377
+ ...config,
1378
+ runtime: "node",
1379
+ defaultsMode,
1380
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1381
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1382
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1383
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1384
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1385
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1386
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1387
+ retryMode: config?.retryMode ??
1388
+ loadConfig({
1389
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1390
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1391
+ }, config),
1392
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1393
+ streamCollector: config?.streamCollector ?? streamCollector,
1394
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1395
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1396
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1397
+ };
1398
+ };
1399
+
34
1400
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1401
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1402
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -673,52 +2039,200 @@ const SortOrder = {
673
2039
  DESCENDING: "DESCENDING",
674
2040
  };
675
2041
 
2042
+ exports.AcceptAgreementCancellationRequest$ = AcceptAgreementCancellationRequest$;
676
2043
  exports.AcceptAgreementCancellationRequestCommand = AcceptAgreementCancellationRequestCommand;
2044
+ exports.AcceptAgreementCancellationRequestInput$ = AcceptAgreementCancellationRequestInput$;
2045
+ exports.AcceptAgreementCancellationRequestOutput$ = AcceptAgreementCancellationRequestOutput$;
2046
+ exports.AcceptAgreementPaymentRequest$ = AcceptAgreementPaymentRequest$;
677
2047
  exports.AcceptAgreementPaymentRequestCommand = AcceptAgreementPaymentRequestCommand;
2048
+ exports.AcceptAgreementPaymentRequestInput$ = AcceptAgreementPaymentRequestInput$;
2049
+ exports.AcceptAgreementPaymentRequestOutput$ = AcceptAgreementPaymentRequestOutput$;
2050
+ exports.AcceptAgreementRequest$ = AcceptAgreementRequest$;
678
2051
  exports.AcceptAgreementRequestCommand = AcceptAgreementRequestCommand;
2052
+ exports.AcceptAgreementRequestInput$ = AcceptAgreementRequestInput$;
2053
+ exports.AcceptAgreementRequestOutput$ = AcceptAgreementRequestOutput$;
2054
+ exports.AcceptedTerm$ = AcceptedTerm$;
2055
+ exports.Acceptor$ = Acceptor$;
2056
+ exports.AccessDeniedException = AccessDeniedException;
2057
+ exports.AccessDeniedException$ = AccessDeniedException$;
679
2058
  exports.AccessDeniedExceptionReason = AccessDeniedExceptionReason;
680
2059
  exports.AgreementCancellationRequestReasonCode = AgreementCancellationRequestReasonCode;
681
2060
  exports.AgreementCancellationRequestStatus = AgreementCancellationRequestStatus;
2061
+ exports.AgreementCancellationRequestSummary$ = AgreementCancellationRequestSummary$;
2062
+ exports.AgreementEntitlement$ = AgreementEntitlement$;
682
2063
  exports.AgreementEntitlementStatus = AgreementEntitlementStatus;
683
2064
  exports.AgreementEntitlementStatusReasonCode = AgreementEntitlementStatusReasonCode;
2065
+ exports.AgreementInvoiceLineItemGroupSummary$ = AgreementInvoiceLineItemGroupSummary$;
684
2066
  exports.AgreementStatus = AgreementStatus;
2067
+ exports.AgreementViewSummary$ = AgreementViewSummary$;
2068
+ exports.BatchCreateBillingAdjustmentError$ = BatchCreateBillingAdjustmentError$;
2069
+ exports.BatchCreateBillingAdjustmentItem$ = BatchCreateBillingAdjustmentItem$;
2070
+ exports.BatchCreateBillingAdjustmentRequest$ = BatchCreateBillingAdjustmentRequest$;
685
2071
  exports.BatchCreateBillingAdjustmentRequestCommand = BatchCreateBillingAdjustmentRequestCommand;
2072
+ exports.BatchCreateBillingAdjustmentRequestEntry$ = BatchCreateBillingAdjustmentRequestEntry$;
2073
+ exports.BatchCreateBillingAdjustmentRequestInput$ = BatchCreateBillingAdjustmentRequestInput$;
2074
+ exports.BatchCreateBillingAdjustmentRequestOutput$ = BatchCreateBillingAdjustmentRequestOutput$;
686
2075
  exports.BillingAdjustmentErrorCode = BillingAdjustmentErrorCode;
687
2076
  exports.BillingAdjustmentReasonCode = BillingAdjustmentReasonCode;
688
2077
  exports.BillingAdjustmentStatus = BillingAdjustmentStatus;
2078
+ exports.BillingAdjustmentSummary$ = BillingAdjustmentSummary$;
2079
+ exports.ByolPricingTerm$ = ByolPricingTerm$;
2080
+ exports.CancelAgreement$ = CancelAgreement$;
2081
+ exports.CancelAgreementCancellationRequest$ = CancelAgreementCancellationRequest$;
689
2082
  exports.CancelAgreementCancellationRequestCommand = CancelAgreementCancellationRequestCommand;
2083
+ exports.CancelAgreementCancellationRequestInput$ = CancelAgreementCancellationRequestInput$;
2084
+ exports.CancelAgreementCancellationRequestOutput$ = CancelAgreementCancellationRequestOutput$;
690
2085
  exports.CancelAgreementCommand = CancelAgreementCommand;
2086
+ exports.CancelAgreementInput$ = CancelAgreementInput$;
2087
+ exports.CancelAgreementOutput$ = CancelAgreementOutput$;
2088
+ exports.CancelAgreementPaymentRequest$ = CancelAgreementPaymentRequest$;
691
2089
  exports.CancelAgreementPaymentRequestCommand = CancelAgreementPaymentRequestCommand;
2090
+ exports.CancelAgreementPaymentRequestInput$ = CancelAgreementPaymentRequestInput$;
2091
+ exports.CancelAgreementPaymentRequestOutput$ = CancelAgreementPaymentRequestOutput$;
2092
+ exports.Charge$ = Charge$;
2093
+ exports.ChargeSummary$ = ChargeSummary$;
2094
+ exports.ConfigurableUpfrontPricingTerm$ = ConfigurableUpfrontPricingTerm$;
2095
+ exports.ConfigurableUpfrontPricingTermConfiguration$ = ConfigurableUpfrontPricingTermConfiguration$;
2096
+ exports.ConfigurableUpfrontRateCardItem$ = ConfigurableUpfrontRateCardItem$;
2097
+ exports.ConflictException = ConflictException;
2098
+ exports.ConflictException$ = ConflictException$;
2099
+ exports.Constraints$ = Constraints$;
2100
+ exports.CreateAgreementRequest$ = CreateAgreementRequest$;
692
2101
  exports.CreateAgreementRequestCommand = CreateAgreementRequestCommand;
2102
+ exports.CreateAgreementRequestInput$ = CreateAgreementRequestInput$;
2103
+ exports.CreateAgreementRequestOutput$ = CreateAgreementRequestOutput$;
2104
+ exports.DescribeAgreement$ = DescribeAgreement$;
693
2105
  exports.DescribeAgreementCommand = DescribeAgreementCommand;
2106
+ exports.DescribeAgreementInput$ = DescribeAgreementInput$;
2107
+ exports.DescribeAgreementOutput$ = DescribeAgreementOutput$;
2108
+ exports.Dimension$ = Dimension$;
2109
+ exports.DocumentItem$ = DocumentItem$;
2110
+ exports.Entitlement$ = Entitlement$;
2111
+ exports.EstimatedCharges$ = EstimatedCharges$;
2112
+ exports.EstimatedTaxes$ = EstimatedTaxes$;
2113
+ exports.ExpectedCharge$ = ExpectedCharge$;
2114
+ exports.Filter$ = Filter$;
2115
+ exports.FixedUpfrontPricingTerm$ = FixedUpfrontPricingTerm$;
2116
+ exports.FreeTrialPricingTerm$ = FreeTrialPricingTerm$;
2117
+ exports.GetAgreementCancellationRequest$ = GetAgreementCancellationRequest$;
694
2118
  exports.GetAgreementCancellationRequestCommand = GetAgreementCancellationRequestCommand;
2119
+ exports.GetAgreementCancellationRequestInput$ = GetAgreementCancellationRequestInput$;
2120
+ exports.GetAgreementCancellationRequestOutput$ = GetAgreementCancellationRequestOutput$;
2121
+ exports.GetAgreementEntitlements$ = GetAgreementEntitlements$;
695
2122
  exports.GetAgreementEntitlementsCommand = GetAgreementEntitlementsCommand;
2123
+ exports.GetAgreementEntitlementsInput$ = GetAgreementEntitlementsInput$;
2124
+ exports.GetAgreementEntitlementsOutput$ = GetAgreementEntitlementsOutput$;
2125
+ exports.GetAgreementPaymentRequest$ = GetAgreementPaymentRequest$;
696
2126
  exports.GetAgreementPaymentRequestCommand = GetAgreementPaymentRequestCommand;
2127
+ exports.GetAgreementPaymentRequestInput$ = GetAgreementPaymentRequestInput$;
2128
+ exports.GetAgreementPaymentRequestOutput$ = GetAgreementPaymentRequestOutput$;
2129
+ exports.GetAgreementTerms$ = GetAgreementTerms$;
697
2130
  exports.GetAgreementTermsCommand = GetAgreementTermsCommand;
2131
+ exports.GetAgreementTermsInput$ = GetAgreementTermsInput$;
2132
+ exports.GetAgreementTermsOutput$ = GetAgreementTermsOutput$;
2133
+ exports.GetBillingAdjustmentRequest$ = GetBillingAdjustmentRequest$;
698
2134
  exports.GetBillingAdjustmentRequestCommand = GetBillingAdjustmentRequestCommand;
2135
+ exports.GetBillingAdjustmentRequestInput$ = GetBillingAdjustmentRequestInput$;
2136
+ exports.GetBillingAdjustmentRequestOutput$ = GetBillingAdjustmentRequestOutput$;
2137
+ exports.GrantItem$ = GrantItem$;
699
2138
  exports.Intent = Intent;
2139
+ exports.InternalServerException = InternalServerException;
2140
+ exports.InternalServerException$ = InternalServerException$;
2141
+ exports.InvoiceBillingPeriod$ = InvoiceBillingPeriod$;
700
2142
  exports.InvoiceType = InvoiceType;
2143
+ exports.InvoicingEntity$ = InvoicingEntity$;
2144
+ exports.ItemizedCharge$ = ItemizedCharge$;
2145
+ exports.LegalTerm$ = LegalTerm$;
701
2146
  exports.LineItemGroupBy = LineItemGroupBy;
2147
+ exports.ListAgreementCancellationRequests$ = ListAgreementCancellationRequests$;
702
2148
  exports.ListAgreementCancellationRequestsCommand = ListAgreementCancellationRequestsCommand;
2149
+ exports.ListAgreementCancellationRequestsInput$ = ListAgreementCancellationRequestsInput$;
2150
+ exports.ListAgreementCancellationRequestsOutput$ = ListAgreementCancellationRequestsOutput$;
2151
+ exports.ListAgreementCharges$ = ListAgreementCharges$;
703
2152
  exports.ListAgreementChargesCommand = ListAgreementChargesCommand;
2153
+ exports.ListAgreementChargesInput$ = ListAgreementChargesInput$;
2154
+ exports.ListAgreementChargesOutput$ = ListAgreementChargesOutput$;
2155
+ exports.ListAgreementInvoiceLineItems$ = ListAgreementInvoiceLineItems$;
704
2156
  exports.ListAgreementInvoiceLineItemsCommand = ListAgreementInvoiceLineItemsCommand;
2157
+ exports.ListAgreementInvoiceLineItemsInput$ = ListAgreementInvoiceLineItemsInput$;
2158
+ exports.ListAgreementInvoiceLineItemsOutput$ = ListAgreementInvoiceLineItemsOutput$;
2159
+ exports.ListAgreementPaymentRequests$ = ListAgreementPaymentRequests$;
705
2160
  exports.ListAgreementPaymentRequestsCommand = ListAgreementPaymentRequestsCommand;
2161
+ exports.ListAgreementPaymentRequestsInput$ = ListAgreementPaymentRequestsInput$;
2162
+ exports.ListAgreementPaymentRequestsOutput$ = ListAgreementPaymentRequestsOutput$;
2163
+ exports.ListBillingAdjustmentRequests$ = ListBillingAdjustmentRequests$;
706
2164
  exports.ListBillingAdjustmentRequestsCommand = ListBillingAdjustmentRequestsCommand;
2165
+ exports.ListBillingAdjustmentRequestsInput$ = ListBillingAdjustmentRequestsInput$;
2166
+ exports.ListBillingAdjustmentRequestsOutput$ = ListBillingAdjustmentRequestsOutput$;
707
2167
  exports.MarketplaceAgreement = MarketplaceAgreement;
708
2168
  exports.MarketplaceAgreementClient = MarketplaceAgreementClient;
2169
+ exports.MarketplaceAgreementServiceException = MarketplaceAgreementServiceException;
2170
+ exports.MarketplaceAgreementServiceException$ = MarketplaceAgreementServiceException$;
709
2171
  exports.PaymentRequestApprovalStrategy = PaymentRequestApprovalStrategy;
710
2172
  exports.PaymentRequestStatus = PaymentRequestStatus;
2173
+ exports.PaymentRequestSummary$ = PaymentRequestSummary$;
2174
+ exports.PaymentScheduleTerm$ = PaymentScheduleTerm$;
2175
+ exports.PricingCurrencyAmount$ = PricingCurrencyAmount$;
2176
+ exports.ProposalSummary$ = ProposalSummary$;
2177
+ exports.Proposer$ = Proposer$;
2178
+ exports.PurchaseOrder$ = PurchaseOrder$;
2179
+ exports.RateCardItem$ = RateCardItem$;
2180
+ exports.RecurringPaymentTerm$ = RecurringPaymentTerm$;
2181
+ exports.RejectAgreementCancellationRequest$ = RejectAgreementCancellationRequest$;
711
2182
  exports.RejectAgreementCancellationRequestCommand = RejectAgreementCancellationRequestCommand;
2183
+ exports.RejectAgreementCancellationRequestInput$ = RejectAgreementCancellationRequestInput$;
2184
+ exports.RejectAgreementCancellationRequestOutput$ = RejectAgreementCancellationRequestOutput$;
2185
+ exports.RejectAgreementPaymentRequest$ = RejectAgreementPaymentRequest$;
712
2186
  exports.RejectAgreementPaymentRequestCommand = RejectAgreementPaymentRequestCommand;
2187
+ exports.RejectAgreementPaymentRequestInput$ = RejectAgreementPaymentRequestInput$;
2188
+ exports.RejectAgreementPaymentRequestOutput$ = RejectAgreementPaymentRequestOutput$;
2189
+ exports.RenewalTerm$ = RenewalTerm$;
2190
+ exports.RenewalTermConfiguration$ = RenewalTermConfiguration$;
2191
+ exports.RequestedTerm$ = RequestedTerm$;
2192
+ exports.RequestedTermConfiguration$ = RequestedTermConfiguration$;
2193
+ exports.Resource$ = Resource$;
2194
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2195
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
713
2196
  exports.ResourceType = ResourceType;
2197
+ exports.ScheduleItem$ = ScheduleItem$;
2198
+ exports.SearchAgreements$ = SearchAgreements$;
714
2199
  exports.SearchAgreementsCommand = SearchAgreementsCommand;
2200
+ exports.SearchAgreementsInput$ = SearchAgreementsInput$;
2201
+ exports.SearchAgreementsOutput$ = SearchAgreementsOutput$;
2202
+ exports.Selector$ = Selector$;
2203
+ exports.SendAgreementCancellationRequest$ = SendAgreementCancellationRequest$;
715
2204
  exports.SendAgreementCancellationRequestCommand = SendAgreementCancellationRequestCommand;
2205
+ exports.SendAgreementCancellationRequestInput$ = SendAgreementCancellationRequestInput$;
2206
+ exports.SendAgreementCancellationRequestOutput$ = SendAgreementCancellationRequestOutput$;
2207
+ exports.SendAgreementPaymentRequest$ = SendAgreementPaymentRequest$;
716
2208
  exports.SendAgreementPaymentRequestCommand = SendAgreementPaymentRequestCommand;
2209
+ exports.SendAgreementPaymentRequestInput$ = SendAgreementPaymentRequestInput$;
2210
+ exports.SendAgreementPaymentRequestOutput$ = SendAgreementPaymentRequestOutput$;
2211
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2212
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2213
+ exports.Sort$ = Sort$;
717
2214
  exports.SortOrder = SortOrder;
2215
+ exports.SupportTerm$ = SupportTerm$;
2216
+ exports.TaxBreakdownItem$ = TaxBreakdownItem$;
2217
+ exports.TaxConfiguration$ = TaxConfiguration$;
718
2218
  exports.TaxEstimation = TaxEstimation;
2219
+ exports.ThrottlingException = ThrottlingException;
2220
+ exports.ThrottlingException$ = ThrottlingException$;
719
2221
  exports.Timing = Timing;
2222
+ exports.UpdatePurchaseOrders$ = UpdatePurchaseOrders$;
720
2223
  exports.UpdatePurchaseOrdersCommand = UpdatePurchaseOrdersCommand;
2224
+ exports.UpdatePurchaseOrdersInput$ = UpdatePurchaseOrdersInput$;
2225
+ exports.UpdatePurchaseOrdersOutput$ = UpdatePurchaseOrdersOutput$;
2226
+ exports.UsageBasedPricingTerm$ = UsageBasedPricingTerm$;
2227
+ exports.UsageBasedRateCardItem$ = UsageBasedRateCardItem$;
2228
+ exports.ValidationException = ValidationException;
2229
+ exports.ValidationException$ = ValidationException$;
2230
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
721
2231
  exports.ValidationExceptionReason = ValidationExceptionReason;
2232
+ exports.ValidityTerm$ = ValidityTerm$;
2233
+ exports.VariablePaymentTerm$ = VariablePaymentTerm$;
2234
+ exports.VariablePaymentTermConfiguration$ = VariablePaymentTermConfiguration$;
2235
+ exports.errorTypeRegistries = errorTypeRegistries;
722
2236
  exports.paginateGetAgreementEntitlements = paginateGetAgreementEntitlements;
723
2237
  exports.paginateGetAgreementTerms = paginateGetAgreementTerms;
724
2238
  exports.paginateListAgreementCancellationRequests = paginateListAgreementCancellationRequests;