@aws-sdk/client-marketplace-agreement 3.957.0 → 3.962.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/README.md +1 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-cjs/index.js +227 -156
- package/dist-cjs/runtimeConfig.browser.js +1 -2
- package/dist-cjs/runtimeConfig.js +2 -4
- package/dist-es/auth/httpAuthSchemeProvider.js +3 -4
- package/dist-es/pagination/index.js +1 -1
- package/dist-es/runtimeConfig.browser.js +1 -2
- package/dist-es/runtimeConfig.js +4 -6
- package/dist-es/schemas/schemas_0.js +227 -156
- package/dist-types/pagination/index.d.ts +1 -1
- package/dist-types/ts3.4/pagination/index.d.ts +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -9,10 +9,8 @@ AWS SDK for JavaScript MarketplaceAgreement Client for Node.js, Browser and Reac
|
|
|
9
9
|
<p>AWS Marketplace is a curated digital catalog that customers can use to find, buy, deploy, and manage third-party software, data, and services to build solutions and run their businesses. The AWS Marketplace Agreement Service provides an API interface that helps AWS Marketplace sellers manage their product-related agreements, including listing, searching, and filtering agreements.</p> <p>To manage agreements in AWS Marketplace, you must ensure that your AWS Identity and Access Management (IAM) policies and roles are set up. The user must have the required policies/permissions that allow them to carry out the actions in AWS:</p> <ul> <li> <p> <code>DescribeAgreement</code> – Grants permission to users to obtain detailed meta data about any of their agreements.</p> </li> <li> <p> <code>GetAgreementTerms</code> – Grants permission to users to obtain details about the terms of an agreement.</p> </li> <li> <p> <code>SearchAgreements</code> – Grants permission to users to search through all their agreements.</p> </li> </ul>
|
|
10
10
|
|
|
11
11
|
## Installing
|
|
12
|
-
|
|
13
12
|
To install this package, simply type add or install @aws-sdk/client-marketplace-agreement
|
|
14
13
|
using your favorite package manager:
|
|
15
|
-
|
|
16
14
|
- `npm install @aws-sdk/client-marketplace-agreement`
|
|
17
15
|
- `yarn add @aws-sdk/client-marketplace-agreement`
|
|
18
16
|
- `pnpm add @aws-sdk/client-marketplace-agreement`
|
|
@@ -48,9 +46,7 @@ To send a request, you:
|
|
|
48
46
|
// a client can be shared by different commands.
|
|
49
47
|
const client = new MarketplaceAgreementClient({ region: "REGION" });
|
|
50
48
|
|
|
51
|
-
const params = {
|
|
52
|
-
/** input parameters */
|
|
53
|
-
};
|
|
49
|
+
const params = { /** input parameters */ };
|
|
54
50
|
const command = new DescribeAgreementCommand(params);
|
|
55
51
|
```
|
|
56
52
|
|
|
@@ -209,7 +205,6 @@ DescribeAgreement
|
|
|
209
205
|
</summary>
|
|
210
206
|
|
|
211
207
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/marketplace-agreement/command/DescribeAgreementCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/DescribeAgreementCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/DescribeAgreementCommandOutput/)
|
|
212
|
-
|
|
213
208
|
</details>
|
|
214
209
|
<details>
|
|
215
210
|
<summary>
|
|
@@ -217,7 +212,6 @@ GetAgreementTerms
|
|
|
217
212
|
</summary>
|
|
218
213
|
|
|
219
214
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/marketplace-agreement/command/GetAgreementTermsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/GetAgreementTermsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/GetAgreementTermsCommandOutput/)
|
|
220
|
-
|
|
221
215
|
</details>
|
|
222
216
|
<details>
|
|
223
217
|
<summary>
|
|
@@ -225,5 +219,4 @@ SearchAgreements
|
|
|
225
219
|
</summary>
|
|
226
220
|
|
|
227
221
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/marketplace-agreement/command/SearchAgreementsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/SearchAgreementsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-marketplace-agreement/Interface/SearchAgreementsCommandOutput/)
|
|
228
|
-
|
|
229
222
|
</details>
|
|
@@ -6,10 +6,9 @@ const util_middleware_1 = require("@smithy/util-middleware");
|
|
|
6
6
|
const defaultMarketplaceAgreementHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
8
8
|
operation: (0, util_middleware_1.getSmithyContext)(context).operation,
|
|
9
|
-
region:
|
|
10
|
-
(
|
|
11
|
-
|
|
12
|
-
})(),
|
|
9
|
+
region: await (0, util_middleware_1.normalizeProvider)(config.region)() || (() => {
|
|
10
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
|
+
})(),
|
|
13
12
|
};
|
|
14
13
|
};
|
|
15
14
|
exports.defaultMarketplaceAgreementHttpAuthSchemeParametersProvider = defaultMarketplaceAgreementHttpAuthSchemeParametersProvider;
|
package/dist-cjs/index.js
CHANGED
|
@@ -340,211 +340,282 @@ const _vT = "validityTerm";
|
|
|
340
340
|
const _va = "values";
|
|
341
341
|
const _val = "value";
|
|
342
342
|
const n0 = "com.amazonaws.marketplaceagreement";
|
|
343
|
-
var Acceptor$ = [3, n0, _A,
|
|
344
|
-
|
|
343
|
+
var Acceptor$ = [3, n0, _A,
|
|
344
|
+
0,
|
|
345
|
+
[_aI],
|
|
346
|
+
[0]
|
|
347
|
+
];
|
|
348
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
349
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
350
|
+
[_rI, _m],
|
|
351
|
+
[0, 0]
|
|
352
|
+
];
|
|
345
353
|
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
346
|
-
var AgreementViewSummary$ = [
|
|
347
|
-
3,
|
|
348
|
-
n0,
|
|
349
|
-
_AVS,
|
|
354
|
+
var AgreementViewSummary$ = [3, n0, _AVS,
|
|
350
355
|
0,
|
|
351
356
|
[_aIg, _aT, _sT, _eT, _aTg, _a, _p, _pS, _s],
|
|
352
|
-
[0, 4, 4, 4, 0, () => Acceptor$, () => Proposer$, () => ProposalSummary$, 0]
|
|
357
|
+
[0, 4, 4, 4, 0, () => Acceptor$, () => Proposer$, () => ProposalSummary$, 0]
|
|
358
|
+
];
|
|
359
|
+
var ByolPricingTerm$ = [3, n0, _BPT,
|
|
360
|
+
0,
|
|
361
|
+
[_t],
|
|
362
|
+
[0]
|
|
353
363
|
];
|
|
354
|
-
var
|
|
355
|
-
var ConfigurableUpfrontPricingTerm$ = [
|
|
356
|
-
3,
|
|
357
|
-
n0,
|
|
358
|
-
_CUPT,
|
|
364
|
+
var ConfigurableUpfrontPricingTerm$ = [3, n0, _CUPT,
|
|
359
365
|
0,
|
|
360
366
|
[_t, _cC, _rC, _co],
|
|
361
|
-
[0, 0, () => ConfigurableUpfrontRateCardList, () => ConfigurableUpfrontPricingTermConfiguration$]
|
|
367
|
+
[0, 0, () => ConfigurableUpfrontRateCardList, () => ConfigurableUpfrontPricingTermConfiguration$]
|
|
362
368
|
];
|
|
363
|
-
var ConfigurableUpfrontPricingTermConfiguration$ = [
|
|
364
|
-
3,
|
|
365
|
-
n0,
|
|
366
|
-
_CUPTC,
|
|
369
|
+
var ConfigurableUpfrontPricingTermConfiguration$ = [3, n0, _CUPTC,
|
|
367
370
|
0,
|
|
368
371
|
[_sV, _d],
|
|
369
|
-
[0, () => DimensionList]
|
|
372
|
+
[0, () => DimensionList]
|
|
370
373
|
];
|
|
371
|
-
var ConfigurableUpfrontRateCardItem$ = [
|
|
372
|
-
3,
|
|
373
|
-
n0,
|
|
374
|
-
_CURCI,
|
|
374
|
+
var ConfigurableUpfrontRateCardItem$ = [3, n0, _CURCI,
|
|
375
375
|
0,
|
|
376
376
|
[_se, _con, _rCa],
|
|
377
|
-
[() => Selector$, () => Constraints$, () => RateCardList]
|
|
377
|
+
[() => Selector$, () => Constraints$, () => RateCardList]
|
|
378
|
+
];
|
|
379
|
+
var Constraints$ = [3, n0, _C,
|
|
380
|
+
0,
|
|
381
|
+
[_mDS, _qC],
|
|
382
|
+
[0, 0]
|
|
383
|
+
];
|
|
384
|
+
var DescribeAgreementInput$ = [3, n0, _DAI,
|
|
385
|
+
0,
|
|
386
|
+
[_aIg],
|
|
387
|
+
[0]
|
|
378
388
|
];
|
|
379
|
-
var
|
|
380
|
-
var DescribeAgreementInput$ = [3, n0, _DAI, 0, [_aIg], [0]];
|
|
381
|
-
var DescribeAgreementOutput$ = [
|
|
382
|
-
3,
|
|
383
|
-
n0,
|
|
384
|
-
_DAO,
|
|
389
|
+
var DescribeAgreementOutput$ = [3, n0, _DAO,
|
|
385
390
|
0,
|
|
386
391
|
[_aIg, _a, _p, _sT, _eT, _aT, _aTg, _eC, _pS, _s],
|
|
387
|
-
[0, () => Acceptor$, () => Proposer$, 4, 4, 4, 0, () => EstimatedCharges$, () => ProposalSummary$, 0]
|
|
392
|
+
[0, () => Acceptor$, () => Proposer$, 4, 4, 4, 0, () => EstimatedCharges$, () => ProposalSummary$, 0]
|
|
388
393
|
];
|
|
389
|
-
var Dimension$ = [3, n0, _D,
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
394
|
+
var Dimension$ = [3, n0, _D,
|
|
395
|
+
0,
|
|
396
|
+
[_dK, _dV],
|
|
397
|
+
[0, 1]
|
|
398
|
+
];
|
|
399
|
+
var DocumentItem$ = [3, n0, _DI,
|
|
400
|
+
0,
|
|
401
|
+
[_t, _u, _v],
|
|
402
|
+
[0, 0, 0]
|
|
403
|
+
];
|
|
404
|
+
var EstimatedCharges$ = [3, n0, _EC,
|
|
405
|
+
0,
|
|
406
|
+
[_cC, _aV],
|
|
407
|
+
[0, 0]
|
|
408
|
+
];
|
|
409
|
+
var Filter$ = [3, n0, _F,
|
|
410
|
+
0,
|
|
411
|
+
[_n, _va],
|
|
412
|
+
[0, 64 | 0]
|
|
413
|
+
];
|
|
414
|
+
var FixedUpfrontPricingTerm$ = [3, n0, _FUPT,
|
|
397
415
|
0,
|
|
398
416
|
[_t, _cC, _du, _pr, _g],
|
|
399
|
-
[0, 0, 0, 0, () => GrantList]
|
|
417
|
+
[0, 0, 0, 0, () => GrantList]
|
|
418
|
+
];
|
|
419
|
+
var FreeTrialPricingTerm$ = [3, n0, _FTPT,
|
|
420
|
+
0,
|
|
421
|
+
[_t, _du, _g],
|
|
422
|
+
[0, 0, () => GrantList]
|
|
423
|
+
];
|
|
424
|
+
var GetAgreementTermsInput$ = [3, n0, _GATI,
|
|
425
|
+
0,
|
|
426
|
+
[_aIg, _mR, _nT],
|
|
427
|
+
[0, 1, 0]
|
|
400
428
|
];
|
|
401
|
-
var
|
|
402
|
-
var GetAgreementTermsInput$ = [3, n0, _GATI, 0, [_aIg, _mR, _nT], [0, 1, 0]];
|
|
403
|
-
var GetAgreementTermsOutput$ = [
|
|
404
|
-
3,
|
|
405
|
-
n0,
|
|
406
|
-
_GATO,
|
|
429
|
+
var GetAgreementTermsOutput$ = [3, n0, _GATO,
|
|
407
430
|
0,
|
|
408
431
|
[_aTc, _nT],
|
|
409
|
-
[() => AcceptedTermList, 0]
|
|
432
|
+
[() => AcceptedTermList, 0]
|
|
433
|
+
];
|
|
434
|
+
var GrantItem$ = [3, n0, _GI,
|
|
435
|
+
0,
|
|
436
|
+
[_dK, _mQ],
|
|
437
|
+
[0, 1]
|
|
438
|
+
];
|
|
439
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
440
|
+
{ [_e]: _ser, [_hE]: 500 },
|
|
441
|
+
[_rI, _m],
|
|
442
|
+
[0, 0]
|
|
410
443
|
];
|
|
411
|
-
var GrantItem$ = [3, n0, _GI, 0, [_dK, _mQ], [0, 1]];
|
|
412
|
-
var InternalServerException$ = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_rI, _m], [0, 0]];
|
|
413
444
|
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
414
|
-
var LegalTerm$ = [3, n0, _LT,
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
var
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
445
|
+
var LegalTerm$ = [3, n0, _LT,
|
|
446
|
+
0,
|
|
447
|
+
[_t, _do],
|
|
448
|
+
[0, () => DocumentList]
|
|
449
|
+
];
|
|
450
|
+
var PaymentScheduleTerm$ = [3, n0, _PST,
|
|
451
|
+
0,
|
|
452
|
+
[_t, _cC, _sc],
|
|
453
|
+
[0, 0, () => ScheduleList]
|
|
454
|
+
];
|
|
455
|
+
var ProposalSummary$ = [3, n0, _PS,
|
|
456
|
+
0,
|
|
457
|
+
[_r, _oI, _oSI],
|
|
458
|
+
[() => Resources, 0, 0]
|
|
459
|
+
];
|
|
460
|
+
var Proposer$ = [3, n0, _P,
|
|
461
|
+
0,
|
|
462
|
+
[_aI],
|
|
463
|
+
[0]
|
|
464
|
+
];
|
|
465
|
+
var RateCardItem$ = [3, n0, _RCI,
|
|
466
|
+
0,
|
|
467
|
+
[_dK, _pr],
|
|
468
|
+
[0, 0]
|
|
469
|
+
];
|
|
470
|
+
var RecurringPaymentTerm$ = [3, n0, _RPT,
|
|
471
|
+
0,
|
|
472
|
+
[_t, _cC, _bP, _pr],
|
|
473
|
+
[0, 0, 0, 0]
|
|
474
|
+
];
|
|
475
|
+
var RenewalTerm$ = [3, n0, _RT,
|
|
476
|
+
0,
|
|
477
|
+
[_t, _co],
|
|
478
|
+
[0, () => RenewalTermConfiguration$]
|
|
479
|
+
];
|
|
480
|
+
var RenewalTermConfiguration$ = [3, n0, _RTC,
|
|
481
|
+
0,
|
|
482
|
+
[_eAR],
|
|
483
|
+
[2]
|
|
484
|
+
];
|
|
485
|
+
var Resource$ = [3, n0, _R,
|
|
486
|
+
0,
|
|
487
|
+
[_i, _t],
|
|
488
|
+
[0, 0]
|
|
489
|
+
];
|
|
490
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
427
491
|
{ [_e]: _c, [_hE]: 404 },
|
|
428
492
|
[_rI, _m, _rIe, _rT],
|
|
429
|
-
[0, 0, 0, 0]
|
|
493
|
+
[0, 0, 0, 0]
|
|
430
494
|
];
|
|
431
495
|
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
432
|
-
var ScheduleItem$ = [3, n0, _SI,
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
496
|
+
var ScheduleItem$ = [3, n0, _SI,
|
|
497
|
+
0,
|
|
498
|
+
[_cD, _cA],
|
|
499
|
+
[4, 0]
|
|
500
|
+
];
|
|
501
|
+
var SearchAgreementsInput$ = [3, n0, _SAI,
|
|
437
502
|
0,
|
|
438
503
|
[_ca, _f, _so, _mR, _nT],
|
|
439
|
-
[0, () => FilterList, () => Sort$, 1, 0]
|
|
504
|
+
[0, () => FilterList, () => Sort$, 1, 0]
|
|
440
505
|
];
|
|
441
|
-
var SearchAgreementsOutput$ = [
|
|
442
|
-
3,
|
|
443
|
-
n0,
|
|
444
|
-
_SAO,
|
|
506
|
+
var SearchAgreementsOutput$ = [3, n0, _SAO,
|
|
445
507
|
0,
|
|
446
508
|
[_aVS, _nT],
|
|
447
|
-
[() => AgreementViewSummaryList, 0]
|
|
509
|
+
[() => AgreementViewSummaryList, 0]
|
|
510
|
+
];
|
|
511
|
+
var Selector$ = [3, n0, _S,
|
|
512
|
+
0,
|
|
513
|
+
[_t, _val],
|
|
514
|
+
[0, 0]
|
|
515
|
+
];
|
|
516
|
+
var Sort$ = [3, n0, _So,
|
|
517
|
+
0,
|
|
518
|
+
[_sB, _sO],
|
|
519
|
+
[0, 0]
|
|
520
|
+
];
|
|
521
|
+
var SupportTerm$ = [3, n0, _ST,
|
|
522
|
+
0,
|
|
523
|
+
[_t, _rP],
|
|
524
|
+
[0, 0]
|
|
525
|
+
];
|
|
526
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
527
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
528
|
+
[_rI, _m],
|
|
529
|
+
[0, 0]
|
|
448
530
|
];
|
|
449
|
-
var Selector$ = [3, n0, _S, 0, [_t, _val], [0, 0]];
|
|
450
|
-
var Sort$ = [3, n0, _So, 0, [_sB, _sO], [0, 0]];
|
|
451
|
-
var SupportTerm$ = [3, n0, _ST, 0, [_t, _rP], [0, 0]];
|
|
452
|
-
var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_rI, _m], [0, 0]];
|
|
453
531
|
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
454
|
-
var UsageBasedPricingTerm$ = [
|
|
455
|
-
3,
|
|
456
|
-
n0,
|
|
457
|
-
_UBPT,
|
|
532
|
+
var UsageBasedPricingTerm$ = [3, n0, _UBPT,
|
|
458
533
|
0,
|
|
459
534
|
[_t, _cC, _rC],
|
|
460
|
-
[0, 0, () => UsageBasedRateCardList]
|
|
535
|
+
[0, 0, () => UsageBasedRateCardList]
|
|
536
|
+
];
|
|
537
|
+
var UsageBasedRateCardItem$ = [3, n0, _UBRCI,
|
|
538
|
+
0,
|
|
539
|
+
[_rCa],
|
|
540
|
+
[() => RateCardList]
|
|
461
541
|
];
|
|
462
|
-
var
|
|
463
|
-
var ValidationException$ = [
|
|
464
|
-
-3,
|
|
465
|
-
n0,
|
|
466
|
-
_VE,
|
|
542
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
467
543
|
{ [_e]: _c, [_hE]: 400 },
|
|
468
544
|
[_rI, _m, _re, _fi],
|
|
469
|
-
[0, 0, 0, () => ValidationExceptionFieldList]
|
|
545
|
+
[0, 0, 0, () => ValidationExceptionFieldList]
|
|
470
546
|
];
|
|
471
547
|
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
472
|
-
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
548
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
549
|
+
0,
|
|
550
|
+
[_n, _m],
|
|
551
|
+
[0, 0]
|
|
552
|
+
];
|
|
553
|
+
var ValidityTerm$ = [3, n0, _VT,
|
|
554
|
+
0,
|
|
555
|
+
[_t, _aD, _aSD, _aED],
|
|
556
|
+
[0, 0, 4, 4]
|
|
557
|
+
];
|
|
558
|
+
var VariablePaymentTerm$ = [3, n0, _VPT,
|
|
478
559
|
0,
|
|
479
560
|
[_t, _cC, _mTCA, _co],
|
|
480
|
-
[0, 0, 0, () => VariablePaymentTermConfiguration$]
|
|
561
|
+
[0, 0, 0, () => VariablePaymentTermConfiguration$]
|
|
481
562
|
];
|
|
482
|
-
var VariablePaymentTermConfiguration$ = [3, n0, _VPTC,
|
|
483
|
-
var MarketplaceAgreementServiceException$ = [
|
|
484
|
-
-3,
|
|
485
|
-
_sm,
|
|
486
|
-
"MarketplaceAgreementServiceException",
|
|
563
|
+
var VariablePaymentTermConfiguration$ = [3, n0, _VPTC,
|
|
487
564
|
0,
|
|
488
|
-
[],
|
|
489
|
-
[]
|
|
565
|
+
[_pRAS, _eD],
|
|
566
|
+
[0, 0]
|
|
490
567
|
];
|
|
568
|
+
var MarketplaceAgreementServiceException$ = [-3, _sm, "MarketplaceAgreementServiceException", 0, [], []];
|
|
491
569
|
schema.TypeRegistry.for(_sm).registerError(MarketplaceAgreementServiceException$, MarketplaceAgreementServiceException);
|
|
492
|
-
var AcceptedTermList = [1, n0, _ATL,
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
var
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
var
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
var
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
var
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
570
|
+
var AcceptedTermList = [1, n0, _ATL,
|
|
571
|
+
0, () => AcceptedTerm$
|
|
572
|
+
];
|
|
573
|
+
var AgreementViewSummaryList = [1, n0, _AVSL,
|
|
574
|
+
0, () => AgreementViewSummary$
|
|
575
|
+
];
|
|
576
|
+
var ConfigurableUpfrontRateCardList = [1, n0, _CURCL,
|
|
577
|
+
0, () => ConfigurableUpfrontRateCardItem$
|
|
578
|
+
];
|
|
579
|
+
var DimensionList = [1, n0, _DL,
|
|
580
|
+
0, () => Dimension$
|
|
581
|
+
];
|
|
582
|
+
var DocumentList = [1, n0, _DLo,
|
|
583
|
+
0, () => DocumentItem$
|
|
584
|
+
];
|
|
585
|
+
var FilterList = [1, n0, _FL,
|
|
586
|
+
0, () => Filter$
|
|
587
|
+
];
|
|
588
|
+
var GrantList = [1, n0, _GL,
|
|
589
|
+
0, () => GrantItem$
|
|
590
|
+
];
|
|
591
|
+
var RateCardList = [1, n0, _RCL,
|
|
592
|
+
0, () => RateCardItem$
|
|
593
|
+
];
|
|
594
|
+
var Resources = [1, n0, _Re,
|
|
595
|
+
0, () => Resource$
|
|
596
|
+
];
|
|
597
|
+
var ScheduleList = [1, n0, _SL,
|
|
598
|
+
0, () => ScheduleItem$
|
|
599
|
+
];
|
|
600
|
+
var UsageBasedRateCardList = [1, n0, _UBRCL,
|
|
601
|
+
0, () => UsageBasedRateCardItem$
|
|
602
|
+
];
|
|
603
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
604
|
+
0, () => ValidationExceptionField$
|
|
605
|
+
];
|
|
606
|
+
var AcceptedTerm$ = [4, n0, _AT,
|
|
508
607
|
0,
|
|
509
608
|
[_lT, _sTu, _rTe, _uBPT, _cUPT, _bPT, _rPT, _vT, _pST, _fTPT, _fUPT, _vPT],
|
|
510
|
-
[
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
() => FreeTrialPricingTerm$,
|
|
521
|
-
() => FixedUpfrontPricingTerm$,
|
|
522
|
-
() => VariablePaymentTerm$,
|
|
523
|
-
],
|
|
524
|
-
];
|
|
525
|
-
var DescribeAgreement$ = [
|
|
526
|
-
9,
|
|
527
|
-
n0,
|
|
528
|
-
_DA,
|
|
529
|
-
0,
|
|
530
|
-
() => DescribeAgreementInput$,
|
|
531
|
-
() => DescribeAgreementOutput$,
|
|
532
|
-
];
|
|
533
|
-
var GetAgreementTerms$ = [
|
|
534
|
-
9,
|
|
535
|
-
n0,
|
|
536
|
-
_GAT,
|
|
537
|
-
0,
|
|
538
|
-
() => GetAgreementTermsInput$,
|
|
539
|
-
() => GetAgreementTermsOutput$,
|
|
540
|
-
];
|
|
541
|
-
var SearchAgreements$ = [
|
|
542
|
-
9,
|
|
543
|
-
n0,
|
|
544
|
-
_SA,
|
|
545
|
-
0,
|
|
546
|
-
() => SearchAgreementsInput$,
|
|
547
|
-
() => SearchAgreementsOutput$,
|
|
609
|
+
[() => LegalTerm$, () => SupportTerm$, () => RenewalTerm$, () => UsageBasedPricingTerm$, () => ConfigurableUpfrontPricingTerm$, () => ByolPricingTerm$, () => RecurringPaymentTerm$, () => ValidityTerm$, () => PaymentScheduleTerm$, () => FreeTrialPricingTerm$, () => FixedUpfrontPricingTerm$, () => VariablePaymentTerm$]
|
|
610
|
+
];
|
|
611
|
+
var DescribeAgreement$ = [9, n0, _DA,
|
|
612
|
+
0, () => DescribeAgreementInput$, () => DescribeAgreementOutput$
|
|
613
|
+
];
|
|
614
|
+
var GetAgreementTerms$ = [9, n0, _GAT,
|
|
615
|
+
0, () => GetAgreementTermsInput$, () => GetAgreementTermsOutput$
|
|
616
|
+
];
|
|
617
|
+
var SearchAgreements$ = [9, n0, _SA,
|
|
618
|
+
0, () => SearchAgreementsInput$, () => SearchAgreementsOutput$
|
|
548
619
|
];
|
|
549
620
|
|
|
550
621
|
class DescribeAgreementCommand extends smithyClient.Command
|
|
@@ -24,8 +24,7 @@ const getRuntimeConfig = (config) => {
|
|
|
24
24
|
defaultsMode,
|
|
25
25
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
26
26
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
27
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
28
|
-
(0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
27
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_browser_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
29
28
|
maxAttempts: config?.maxAttempts ?? util_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
30
29
|
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
31
30
|
requestHandler: fetch_http_handler_1.FetchHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
@@ -34,11 +34,9 @@ const getRuntimeConfig = (config) => {
|
|
|
34
34
|
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
35
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
36
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
38
|
-
(0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
37
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
39
38
|
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
40
|
-
region: config?.region ??
|
|
41
|
-
(0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
39
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, { ...config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
42
40
|
requestHandler: node_http_handler_1.NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
43
41
|
retryMode: config?.retryMode ??
|
|
44
42
|
(0, node_config_provider_1.loadConfig)({
|
|
@@ -3,10 +3,9 @@ import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
|
3
3
|
export const defaultMarketplaceAgreementHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
|
5
5
|
operation: getSmithyContext(context).operation,
|
|
6
|
-
region:
|
|
7
|
-
(
|
|
8
|
-
|
|
9
|
-
})(),
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
7
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
8
|
+
})(),
|
|
10
9
|
};
|
|
11
10
|
};
|
|
12
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
@@ -20,8 +20,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
20
20
|
defaultsMode,
|
|
21
21
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
22
22
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
23
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
24
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
23
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
25
24
|
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
26
25
|
region: config?.region ?? invalidProvider("Region is missing"),
|
|
27
26
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import {
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
|
|
3
3
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
|
-
import {
|
|
4
|
+
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
5
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
6
6
|
import { Hash } from "@smithy/hash-node";
|
|
7
7
|
import { NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } from "@smithy/middleware-retry";
|
|
@@ -30,11 +30,9 @@ export const getRuntimeConfig = (config) => {
|
|
|
30
30
|
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
31
31
|
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
32
32
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
33
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
34
|
-
createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
33
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
35
34
|
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
36
|
-
region: config?.region ??
|
|
37
|
-
loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
35
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
38
36
|
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
39
37
|
retryMode: config?.retryMode ??
|
|
40
38
|
loadNodeConfig({
|
|
@@ -145,210 +145,281 @@ const n0 = "com.amazonaws.marketplaceagreement";
|
|
|
145
145
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
146
146
|
import { AccessDeniedException, InternalServerException, ResourceNotFoundException, ThrottlingException, ValidationException, } from "../models/errors";
|
|
147
147
|
import { MarketplaceAgreementServiceException } from "../models/MarketplaceAgreementServiceException";
|
|
148
|
-
export var Acceptor$ = [3, n0, _A,
|
|
149
|
-
|
|
148
|
+
export var Acceptor$ = [3, n0, _A,
|
|
149
|
+
0,
|
|
150
|
+
[_aI],
|
|
151
|
+
[0]
|
|
152
|
+
];
|
|
153
|
+
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
154
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
155
|
+
[_rI, _m],
|
|
156
|
+
[0, 0]
|
|
157
|
+
];
|
|
150
158
|
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
151
|
-
export var AgreementViewSummary$ = [
|
|
152
|
-
3,
|
|
153
|
-
n0,
|
|
154
|
-
_AVS,
|
|
159
|
+
export var AgreementViewSummary$ = [3, n0, _AVS,
|
|
155
160
|
0,
|
|
156
161
|
[_aIg, _aT, _sT, _eT, _aTg, _a, _p, _pS, _s],
|
|
157
|
-
[0, 4, 4, 4, 0, () => Acceptor$, () => Proposer$, () => ProposalSummary$, 0]
|
|
162
|
+
[0, 4, 4, 4, 0, () => Acceptor$, () => Proposer$, () => ProposalSummary$, 0]
|
|
163
|
+
];
|
|
164
|
+
export var ByolPricingTerm$ = [3, n0, _BPT,
|
|
165
|
+
0,
|
|
166
|
+
[_t],
|
|
167
|
+
[0]
|
|
158
168
|
];
|
|
159
|
-
export var
|
|
160
|
-
export var ConfigurableUpfrontPricingTerm$ = [
|
|
161
|
-
3,
|
|
162
|
-
n0,
|
|
163
|
-
_CUPT,
|
|
169
|
+
export var ConfigurableUpfrontPricingTerm$ = [3, n0, _CUPT,
|
|
164
170
|
0,
|
|
165
171
|
[_t, _cC, _rC, _co],
|
|
166
|
-
[0, 0, () => ConfigurableUpfrontRateCardList, () => ConfigurableUpfrontPricingTermConfiguration$]
|
|
172
|
+
[0, 0, () => ConfigurableUpfrontRateCardList, () => ConfigurableUpfrontPricingTermConfiguration$]
|
|
167
173
|
];
|
|
168
|
-
export var ConfigurableUpfrontPricingTermConfiguration$ = [
|
|
169
|
-
3,
|
|
170
|
-
n0,
|
|
171
|
-
_CUPTC,
|
|
174
|
+
export var ConfigurableUpfrontPricingTermConfiguration$ = [3, n0, _CUPTC,
|
|
172
175
|
0,
|
|
173
176
|
[_sV, _d],
|
|
174
|
-
[0, () => DimensionList]
|
|
177
|
+
[0, () => DimensionList]
|
|
175
178
|
];
|
|
176
|
-
export var ConfigurableUpfrontRateCardItem$ = [
|
|
177
|
-
3,
|
|
178
|
-
n0,
|
|
179
|
-
_CURCI,
|
|
179
|
+
export var ConfigurableUpfrontRateCardItem$ = [3, n0, _CURCI,
|
|
180
180
|
0,
|
|
181
181
|
[_se, _con, _rCa],
|
|
182
|
-
[() => Selector$, () => Constraints$, () => RateCardList]
|
|
182
|
+
[() => Selector$, () => Constraints$, () => RateCardList]
|
|
183
|
+
];
|
|
184
|
+
export var Constraints$ = [3, n0, _C,
|
|
185
|
+
0,
|
|
186
|
+
[_mDS, _qC],
|
|
187
|
+
[0, 0]
|
|
188
|
+
];
|
|
189
|
+
export var DescribeAgreementInput$ = [3, n0, _DAI,
|
|
190
|
+
0,
|
|
191
|
+
[_aIg],
|
|
192
|
+
[0]
|
|
183
193
|
];
|
|
184
|
-
export var
|
|
185
|
-
export var DescribeAgreementInput$ = [3, n0, _DAI, 0, [_aIg], [0]];
|
|
186
|
-
export var DescribeAgreementOutput$ = [
|
|
187
|
-
3,
|
|
188
|
-
n0,
|
|
189
|
-
_DAO,
|
|
194
|
+
export var DescribeAgreementOutput$ = [3, n0, _DAO,
|
|
190
195
|
0,
|
|
191
196
|
[_aIg, _a, _p, _sT, _eT, _aT, _aTg, _eC, _pS, _s],
|
|
192
|
-
[0, () => Acceptor$, () => Proposer$, 4, 4, 4, 0, () => EstimatedCharges$, () => ProposalSummary$, 0]
|
|
197
|
+
[0, () => Acceptor$, () => Proposer$, 4, 4, 4, 0, () => EstimatedCharges$, () => ProposalSummary$, 0]
|
|
193
198
|
];
|
|
194
|
-
export var Dimension$ = [3, n0, _D,
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
199
|
+
export var Dimension$ = [3, n0, _D,
|
|
200
|
+
0,
|
|
201
|
+
[_dK, _dV],
|
|
202
|
+
[0, 1]
|
|
203
|
+
];
|
|
204
|
+
export var DocumentItem$ = [3, n0, _DI,
|
|
205
|
+
0,
|
|
206
|
+
[_t, _u, _v],
|
|
207
|
+
[0, 0, 0]
|
|
208
|
+
];
|
|
209
|
+
export var EstimatedCharges$ = [3, n0, _EC,
|
|
210
|
+
0,
|
|
211
|
+
[_cC, _aV],
|
|
212
|
+
[0, 0]
|
|
213
|
+
];
|
|
214
|
+
export var Filter$ = [3, n0, _F,
|
|
215
|
+
0,
|
|
216
|
+
[_n, _va],
|
|
217
|
+
[0, 64 | 0]
|
|
218
|
+
];
|
|
219
|
+
export var FixedUpfrontPricingTerm$ = [3, n0, _FUPT,
|
|
202
220
|
0,
|
|
203
221
|
[_t, _cC, _du, _pr, _g],
|
|
204
|
-
[0, 0, 0, 0, () => GrantList]
|
|
222
|
+
[0, 0, 0, 0, () => GrantList]
|
|
223
|
+
];
|
|
224
|
+
export var FreeTrialPricingTerm$ = [3, n0, _FTPT,
|
|
225
|
+
0,
|
|
226
|
+
[_t, _du, _g],
|
|
227
|
+
[0, 0, () => GrantList]
|
|
228
|
+
];
|
|
229
|
+
export var GetAgreementTermsInput$ = [3, n0, _GATI,
|
|
230
|
+
0,
|
|
231
|
+
[_aIg, _mR, _nT],
|
|
232
|
+
[0, 1, 0]
|
|
205
233
|
];
|
|
206
|
-
export var
|
|
207
|
-
export var GetAgreementTermsInput$ = [3, n0, _GATI, 0, [_aIg, _mR, _nT], [0, 1, 0]];
|
|
208
|
-
export var GetAgreementTermsOutput$ = [
|
|
209
|
-
3,
|
|
210
|
-
n0,
|
|
211
|
-
_GATO,
|
|
234
|
+
export var GetAgreementTermsOutput$ = [3, n0, _GATO,
|
|
212
235
|
0,
|
|
213
236
|
[_aTc, _nT],
|
|
214
|
-
[() => AcceptedTermList, 0]
|
|
237
|
+
[() => AcceptedTermList, 0]
|
|
238
|
+
];
|
|
239
|
+
export var GrantItem$ = [3, n0, _GI,
|
|
240
|
+
0,
|
|
241
|
+
[_dK, _mQ],
|
|
242
|
+
[0, 1]
|
|
243
|
+
];
|
|
244
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
245
|
+
{ [_e]: _ser, [_hE]: 500 },
|
|
246
|
+
[_rI, _m],
|
|
247
|
+
[0, 0]
|
|
215
248
|
];
|
|
216
|
-
export var GrantItem$ = [3, n0, _GI, 0, [_dK, _mQ], [0, 1]];
|
|
217
|
-
export var InternalServerException$ = [-3, n0, _ISE, { [_e]: _ser, [_hE]: 500 }, [_rI, _m], [0, 0]];
|
|
218
249
|
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
219
|
-
export var LegalTerm$ = [3, n0, _LT,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
export var
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
250
|
+
export var LegalTerm$ = [3, n0, _LT,
|
|
251
|
+
0,
|
|
252
|
+
[_t, _do],
|
|
253
|
+
[0, () => DocumentList]
|
|
254
|
+
];
|
|
255
|
+
export var PaymentScheduleTerm$ = [3, n0, _PST,
|
|
256
|
+
0,
|
|
257
|
+
[_t, _cC, _sc],
|
|
258
|
+
[0, 0, () => ScheduleList]
|
|
259
|
+
];
|
|
260
|
+
export var ProposalSummary$ = [3, n0, _PS,
|
|
261
|
+
0,
|
|
262
|
+
[_r, _oI, _oSI],
|
|
263
|
+
[() => Resources, 0, 0]
|
|
264
|
+
];
|
|
265
|
+
export var Proposer$ = [3, n0, _P,
|
|
266
|
+
0,
|
|
267
|
+
[_aI],
|
|
268
|
+
[0]
|
|
269
|
+
];
|
|
270
|
+
export var RateCardItem$ = [3, n0, _RCI,
|
|
271
|
+
0,
|
|
272
|
+
[_dK, _pr],
|
|
273
|
+
[0, 0]
|
|
274
|
+
];
|
|
275
|
+
export var RecurringPaymentTerm$ = [3, n0, _RPT,
|
|
276
|
+
0,
|
|
277
|
+
[_t, _cC, _bP, _pr],
|
|
278
|
+
[0, 0, 0, 0]
|
|
279
|
+
];
|
|
280
|
+
export var RenewalTerm$ = [3, n0, _RT,
|
|
281
|
+
0,
|
|
282
|
+
[_t, _co],
|
|
283
|
+
[0, () => RenewalTermConfiguration$]
|
|
284
|
+
];
|
|
285
|
+
export var RenewalTermConfiguration$ = [3, n0, _RTC,
|
|
286
|
+
0,
|
|
287
|
+
[_eAR],
|
|
288
|
+
[2]
|
|
289
|
+
];
|
|
290
|
+
export var Resource$ = [3, n0, _R,
|
|
291
|
+
0,
|
|
292
|
+
[_i, _t],
|
|
293
|
+
[0, 0]
|
|
294
|
+
];
|
|
295
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
232
296
|
{ [_e]: _c, [_hE]: 404 },
|
|
233
297
|
[_rI, _m, _rIe, _rT],
|
|
234
|
-
[0, 0, 0, 0]
|
|
298
|
+
[0, 0, 0, 0]
|
|
235
299
|
];
|
|
236
300
|
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
237
|
-
export var ScheduleItem$ = [3, n0, _SI,
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
301
|
+
export var ScheduleItem$ = [3, n0, _SI,
|
|
302
|
+
0,
|
|
303
|
+
[_cD, _cA],
|
|
304
|
+
[4, 0]
|
|
305
|
+
];
|
|
306
|
+
export var SearchAgreementsInput$ = [3, n0, _SAI,
|
|
242
307
|
0,
|
|
243
308
|
[_ca, _f, _so, _mR, _nT],
|
|
244
|
-
[0, () => FilterList, () => Sort$, 1, 0]
|
|
309
|
+
[0, () => FilterList, () => Sort$, 1, 0]
|
|
245
310
|
];
|
|
246
|
-
export var SearchAgreementsOutput$ = [
|
|
247
|
-
3,
|
|
248
|
-
n0,
|
|
249
|
-
_SAO,
|
|
311
|
+
export var SearchAgreementsOutput$ = [3, n0, _SAO,
|
|
250
312
|
0,
|
|
251
313
|
[_aVS, _nT],
|
|
252
|
-
[() => AgreementViewSummaryList, 0]
|
|
314
|
+
[() => AgreementViewSummaryList, 0]
|
|
315
|
+
];
|
|
316
|
+
export var Selector$ = [3, n0, _S,
|
|
317
|
+
0,
|
|
318
|
+
[_t, _val],
|
|
319
|
+
[0, 0]
|
|
320
|
+
];
|
|
321
|
+
export var Sort$ = [3, n0, _So,
|
|
322
|
+
0,
|
|
323
|
+
[_sB, _sO],
|
|
324
|
+
[0, 0]
|
|
325
|
+
];
|
|
326
|
+
export var SupportTerm$ = [3, n0, _ST,
|
|
327
|
+
0,
|
|
328
|
+
[_t, _rP],
|
|
329
|
+
[0, 0]
|
|
330
|
+
];
|
|
331
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
332
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
333
|
+
[_rI, _m],
|
|
334
|
+
[0, 0]
|
|
253
335
|
];
|
|
254
|
-
export var Selector$ = [3, n0, _S, 0, [_t, _val], [0, 0]];
|
|
255
|
-
export var Sort$ = [3, n0, _So, 0, [_sB, _sO], [0, 0]];
|
|
256
|
-
export var SupportTerm$ = [3, n0, _ST, 0, [_t, _rP], [0, 0]];
|
|
257
|
-
export var ThrottlingException$ = [-3, n0, _TE, { [_e]: _c, [_hE]: 429 }, [_rI, _m], [0, 0]];
|
|
258
336
|
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
259
|
-
export var UsageBasedPricingTerm$ = [
|
|
260
|
-
3,
|
|
261
|
-
n0,
|
|
262
|
-
_UBPT,
|
|
337
|
+
export var UsageBasedPricingTerm$ = [3, n0, _UBPT,
|
|
263
338
|
0,
|
|
264
339
|
[_t, _cC, _rC],
|
|
265
|
-
[0, 0, () => UsageBasedRateCardList]
|
|
340
|
+
[0, 0, () => UsageBasedRateCardList]
|
|
341
|
+
];
|
|
342
|
+
export var UsageBasedRateCardItem$ = [3, n0, _UBRCI,
|
|
343
|
+
0,
|
|
344
|
+
[_rCa],
|
|
345
|
+
[() => RateCardList]
|
|
266
346
|
];
|
|
267
|
-
export var
|
|
268
|
-
export var ValidationException$ = [
|
|
269
|
-
-3,
|
|
270
|
-
n0,
|
|
271
|
-
_VE,
|
|
347
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
272
348
|
{ [_e]: _c, [_hE]: 400 },
|
|
273
349
|
[_rI, _m, _re, _fi],
|
|
274
|
-
[0, 0, 0, () => ValidationExceptionFieldList]
|
|
350
|
+
[0, 0, 0, () => ValidationExceptionFieldList]
|
|
275
351
|
];
|
|
276
352
|
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
277
|
-
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
353
|
+
export var ValidationExceptionField$ = [3, n0, _VEF,
|
|
354
|
+
0,
|
|
355
|
+
[_n, _m],
|
|
356
|
+
[0, 0]
|
|
357
|
+
];
|
|
358
|
+
export var ValidityTerm$ = [3, n0, _VT,
|
|
359
|
+
0,
|
|
360
|
+
[_t, _aD, _aSD, _aED],
|
|
361
|
+
[0, 0, 4, 4]
|
|
362
|
+
];
|
|
363
|
+
export var VariablePaymentTerm$ = [3, n0, _VPT,
|
|
283
364
|
0,
|
|
284
365
|
[_t, _cC, _mTCA, _co],
|
|
285
|
-
[0, 0, 0, () => VariablePaymentTermConfiguration$]
|
|
366
|
+
[0, 0, 0, () => VariablePaymentTermConfiguration$]
|
|
286
367
|
];
|
|
287
|
-
export var VariablePaymentTermConfiguration$ = [3, n0, _VPTC,
|
|
288
|
-
export var MarketplaceAgreementServiceException$ = [
|
|
289
|
-
-3,
|
|
290
|
-
_sm,
|
|
291
|
-
"MarketplaceAgreementServiceException",
|
|
368
|
+
export var VariablePaymentTermConfiguration$ = [3, n0, _VPTC,
|
|
292
369
|
0,
|
|
293
|
-
[],
|
|
294
|
-
[]
|
|
370
|
+
[_pRAS, _eD],
|
|
371
|
+
[0, 0]
|
|
295
372
|
];
|
|
373
|
+
export var MarketplaceAgreementServiceException$ = [-3, _sm, "MarketplaceAgreementServiceException", 0, [], []];
|
|
296
374
|
TypeRegistry.for(_sm).registerError(MarketplaceAgreementServiceException$, MarketplaceAgreementServiceException);
|
|
297
|
-
var AcceptedTermList = [1, n0, _ATL,
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
var
|
|
301
|
-
|
|
302
|
-
|
|
375
|
+
var AcceptedTermList = [1, n0, _ATL,
|
|
376
|
+
0, () => AcceptedTerm$
|
|
377
|
+
];
|
|
378
|
+
var AgreementViewSummaryList = [1, n0, _AVSL,
|
|
379
|
+
0, () => AgreementViewSummary$
|
|
380
|
+
];
|
|
381
|
+
var ConfigurableUpfrontRateCardList = [1, n0, _CURCL,
|
|
382
|
+
0, () => ConfigurableUpfrontRateCardItem$
|
|
383
|
+
];
|
|
384
|
+
var DimensionList = [1, n0, _DL,
|
|
385
|
+
0, () => Dimension$
|
|
386
|
+
];
|
|
387
|
+
var DocumentList = [1, n0, _DLo,
|
|
388
|
+
0, () => DocumentItem$
|
|
389
|
+
];
|
|
390
|
+
var FilterList = [1, n0, _FL,
|
|
391
|
+
0, () => Filter$
|
|
392
|
+
];
|
|
303
393
|
var FilterValueList = 64 | 0;
|
|
304
|
-
var GrantList = [1, n0, _GL,
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
var
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
394
|
+
var GrantList = [1, n0, _GL,
|
|
395
|
+
0, () => GrantItem$
|
|
396
|
+
];
|
|
397
|
+
var RateCardList = [1, n0, _RCL,
|
|
398
|
+
0, () => RateCardItem$
|
|
399
|
+
];
|
|
400
|
+
var Resources = [1, n0, _Re,
|
|
401
|
+
0, () => Resource$
|
|
402
|
+
];
|
|
403
|
+
var ScheduleList = [1, n0, _SL,
|
|
404
|
+
0, () => ScheduleItem$
|
|
405
|
+
];
|
|
406
|
+
var UsageBasedRateCardList = [1, n0, _UBRCL,
|
|
407
|
+
0, () => UsageBasedRateCardItem$
|
|
408
|
+
];
|
|
409
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
410
|
+
0, () => ValidationExceptionField$
|
|
411
|
+
];
|
|
412
|
+
export var AcceptedTerm$ = [4, n0, _AT,
|
|
314
413
|
0,
|
|
315
414
|
[_lT, _sTu, _rTe, _uBPT, _cUPT, _bPT, _rPT, _vT, _pST, _fTPT, _fUPT, _vPT],
|
|
316
|
-
[
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
() => FreeTrialPricingTerm$,
|
|
327
|
-
() => FixedUpfrontPricingTerm$,
|
|
328
|
-
() => VariablePaymentTerm$,
|
|
329
|
-
],
|
|
330
|
-
];
|
|
331
|
-
export var DescribeAgreement$ = [
|
|
332
|
-
9,
|
|
333
|
-
n0,
|
|
334
|
-
_DA,
|
|
335
|
-
0,
|
|
336
|
-
() => DescribeAgreementInput$,
|
|
337
|
-
() => DescribeAgreementOutput$,
|
|
338
|
-
];
|
|
339
|
-
export var GetAgreementTerms$ = [
|
|
340
|
-
9,
|
|
341
|
-
n0,
|
|
342
|
-
_GAT,
|
|
343
|
-
0,
|
|
344
|
-
() => GetAgreementTermsInput$,
|
|
345
|
-
() => GetAgreementTermsOutput$,
|
|
346
|
-
];
|
|
347
|
-
export var SearchAgreements$ = [
|
|
348
|
-
9,
|
|
349
|
-
n0,
|
|
350
|
-
_SA,
|
|
351
|
-
0,
|
|
352
|
-
() => SearchAgreementsInput$,
|
|
353
|
-
() => SearchAgreementsOutput$,
|
|
415
|
+
[() => LegalTerm$, () => SupportTerm$, () => RenewalTerm$, () => UsageBasedPricingTerm$, () => ConfigurableUpfrontPricingTerm$, () => ByolPricingTerm$, () => RecurringPaymentTerm$, () => ValidityTerm$, () => PaymentScheduleTerm$, () => FreeTrialPricingTerm$, () => FixedUpfrontPricingTerm$, () => VariablePaymentTerm$]
|
|
416
|
+
];
|
|
417
|
+
export var DescribeAgreement$ = [9, n0, _DA,
|
|
418
|
+
0, () => DescribeAgreementInput$, () => DescribeAgreementOutput$
|
|
419
|
+
];
|
|
420
|
+
export var GetAgreementTerms$ = [9, n0, _GAT,
|
|
421
|
+
0, () => GetAgreementTermsInput$, () => GetAgreementTermsOutput$
|
|
422
|
+
];
|
|
423
|
+
export var SearchAgreements$ = [9, n0, _SA,
|
|
424
|
+
0, () => SearchAgreementsInput$, () => SearchAgreementsOutput$
|
|
354
425
|
];
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-agreement",
|
|
3
3
|
"description": "AWS SDK for JavaScript Marketplace Agreement Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.962.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-marketplace-agreement",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
24
|
"@aws-sdk/core": "3.957.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.962.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.957.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.957.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.957.0",
|