@aws-sdk/client-marketplace-discovery 3.1027.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +244 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +463 -0
- package/dist-cjs/models/MarketplaceDiscoveryServiceException.js +12 -0
- package/dist-cjs/models/errors.js +71 -0
- package/dist-cjs/runtimeConfig.browser.js +38 -0
- package/dist-cjs/runtimeConfig.js +54 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +43 -0
- package/dist-cjs/schemas/schemas_0.js +951 -0
- package/dist-es/MarketplaceDiscovery.js +37 -0
- package/dist-es/MarketplaceDiscoveryClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
- package/dist-es/commands/GetListingCommand.js +16 -0
- package/dist-es/commands/GetOfferCommand.js +16 -0
- package/dist-es/commands/GetOfferSetCommand.js +16 -0
- package/dist-es/commands/GetOfferTermsCommand.js +16 -0
- package/dist-es/commands/GetProductCommand.js +16 -0
- package/dist-es/commands/ListFulfillmentOptionsCommand.js +16 -0
- package/dist-es/commands/ListPurchaseOptionsCommand.js +16 -0
- package/dist-es/commands/SearchFacetsCommand.js +16 -0
- package/dist-es/commands/SearchListingsCommand.js +16 -0
- package/dist-es/commands/index.js +9 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +9 -0
- package/dist-es/models/MarketplaceDiscoveryServiceException.js +8 -0
- package/dist-es/models/enums.js +146 -0
- package/dist-es/models/errors.js +63 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/GetOfferTermsPaginator.js +4 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListFulfillmentOptionsPaginator.js +4 -0
- package/dist-es/pagination/ListPurchaseOptionsPaginator.js +4 -0
- package/dist-es/pagination/SearchFacetsPaginator.js +4 -0
- package/dist-es/pagination/SearchListingsPaginator.js +4 -0
- package/dist-es/pagination/index.js +6 -0
- package/dist-es/runtimeConfig.browser.js +33 -0
- package/dist-es/runtimeConfig.js +49 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +39 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +946 -0
- package/dist-types/MarketplaceDiscovery.d.ts +111 -0
- package/dist-types/MarketplaceDiscoveryClient.d.ts +196 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/GetListingCommand.d.ts +579 -0
- package/dist-types/commands/GetOfferCommand.d.ts +314 -0
- package/dist-types/commands/GetOfferSetCommand.d.ts +192 -0
- package/dist-types/commands/GetOfferTermsCommand.d.ts +690 -0
- package/dist-types/commands/GetProductCommand.d.ts +379 -0
- package/dist-types/commands/ListFulfillmentOptionsCommand.d.ts +668 -0
- package/dist-types/commands/ListPurchaseOptionsCommand.d.ts +285 -0
- package/dist-types/commands/SearchFacetsCommand.d.ts +241 -0
- package/dist-types/commands/SearchListingsCommand.d.ts +263 -0
- package/dist-types/commands/index.d.ts +9 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
- package/dist-types/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +17 -0
- package/dist-types/models/MarketplaceDiscoveryServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +338 -0
- package/dist-types/models/errors.d.ts +68 -0
- package/dist-types/models/models_0.d.ts +2881 -0
- package/dist-types/pagination/GetOfferTermsPaginator.d.ts +7 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListFulfillmentOptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPurchaseOptionsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchFacetsPaginator.d.ts +7 -0
- package/dist-types/pagination/SearchListingsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +55 -0
- package/dist-types/runtimeConfig.d.ts +55 -0
- package/dist-types/runtimeConfig.native.d.ts +54 -0
- package/dist-types/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +114 -0
- package/dist-types/ts3.4/MarketplaceDiscovery.d.ts +202 -0
- package/dist-types/ts3.4/MarketplaceDiscoveryClient.d.ts +175 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOfferCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOfferSetCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetOfferTermsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetProductCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListFulfillmentOptionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListPurchaseOptionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SearchFacetsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +9 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +12 -0
- package/dist-types/ts3.4/models/MarketplaceDiscoveryServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +191 -0
- package/dist-types/ts3.4/models/errors.d.ts +39 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1048 -0
- package/dist-types/ts3.4/pagination/GetOfferTermsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFulfillmentOptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPurchaseOptionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchFacetsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/SearchListingsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +6 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +114 -0
- package/package.json +100 -0
|
@@ -0,0 +1,951 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ListingSummary$ = exports.ListingFacet$ = exports.ListingBadge$ = exports.ListingAssociatedEntity$ = exports.ListFulfillmentOptionsOutput$ = exports.ListFulfillmentOptionsInput$ = exports.LegalTerm$ = exports.HelmOperatingSystem$ = exports.HelmFulfillmentOption$ = exports.GrantItem$ = exports.GetProductOutput$ = exports.GetProductInput$ = exports.GetOfferTermsOutput$ = exports.GetOfferTermsInput$ = exports.GetOfferSetOutput$ = exports.GetOfferSetInput$ = exports.GetOfferOutput$ = exports.GetOfferInput$ = exports.GetListingOutput$ = exports.GetListingInput$ = exports.FulfillmentOptionSummary$ = exports.FreeTrialPricingTerm$ = exports.FixedUpfrontPricingTerm$ = exports.EksAddOnOperatingSystem$ = exports.EksAddOnFulfillmentOption$ = exports.Ec2ImageBuilderComponentFulfillmentOption$ = exports.DocumentItem$ = exports.DimensionLabel$ = exports.DataExchangeFulfillmentOption$ = exports.DataArtifact$ = exports.ContainerOperatingSystem$ = exports.ContainerFulfillmentOption$ = exports.Constraints$ = exports.ConfigurableUpfrontRateCardItem$ = exports.ConfigurableUpfrontPricingTerm$ = exports.CloudFormationFulfillmentOption$ = exports.Category$ = exports.ByolPricingTerm$ = exports.AwsSupportedService$ = exports.ApiFulfillmentOption$ = exports.AmazonMachineImageRecommendation$ = exports.AmazonMachineImageOperatingSystem$ = exports.AmazonMachineImageFulfillmentOption$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.AccessDeniedException$ = exports.MarketplaceDiscoveryServiceException$ = void 0;
|
|
4
|
+
exports.GetOffer$ = exports.GetListing$ = exports.PromotionalMedia$ = exports.OfferTerm$ = exports.FulfillmentOption$ = exports.VariablePaymentTerm$ = exports.ValidityTerm$ = exports.UseCaseEntry$ = exports.UseCase$ = exports.UsageBasedRateCardItem$ = exports.UsageBasedPricingTerm$ = exports.SupportTerm$ = exports.SellerInformation$ = exports.SellerEngagement$ = exports.Selector$ = exports.SearchListingsOutput$ = exports.SearchListingsInput$ = exports.SearchFilter$ = exports.SearchFacetsOutput$ = exports.SearchFacetsInput$ = exports.ScheduleItem$ = exports.SageMakerModelRecommendation$ = exports.SageMakerModelFulfillmentOption$ = exports.SageMakerAlgorithmRecommendation$ = exports.SageMakerAlgorithmFulfillmentOption$ = exports.SaasFulfillmentOption$ = exports.ReviewSummary$ = exports.ReviewSourceSummary$ = exports.Resource$ = exports.RenewalTerm$ = exports.RecurringPaymentTerm$ = exports.RateCardItem$ = exports.PurchaseOptionSummary$ = exports.PurchaseOptionFilter$ = exports.PurchaseOptionBadge$ = exports.PurchaseOptionAssociatedEntity$ = exports.PromotionalEmbeddedVideo$ = exports.PromotionalEmbeddedImage$ = exports.ProfessionalServicesFulfillmentOption$ = exports.ProductInformation$ = exports.PricingUnit$ = exports.PricingModel$ = exports.PaymentScheduleTerm$ = exports.OfferSetInformation$ = exports.OfferSetAssociatedEntity$ = exports.OfferInformation$ = exports.OfferAssociatedEntity$ = exports.ListPurchaseOptionsOutput$ = exports.ListPurchaseOptionsInput$ = exports.ListingSummaryAssociatedEntity$ = void 0;
|
|
5
|
+
exports.SearchListings$ = exports.SearchFacets$ = exports.ListPurchaseOptions$ = exports.ListFulfillmentOptions$ = exports.GetProduct$ = exports.GetOfferTerms$ = exports.GetOfferSet$ = void 0;
|
|
6
|
+
const _ADE = "AccessDeniedException";
|
|
7
|
+
const _AFO = "ApiFulfillmentOption";
|
|
8
|
+
const _AMIFO = "AmazonMachineImageFulfillmentOption";
|
|
9
|
+
const _AMIOS = "AmazonMachineImageOperatingSystem";
|
|
10
|
+
const _AMIOSL = "AmazonMachineImageOperatingSystemList";
|
|
11
|
+
const _AMIR = "AmazonMachineImageRecommendation";
|
|
12
|
+
const _ASS = "AwsSupportedService";
|
|
13
|
+
const _ASSL = "AwsSupportedServiceList";
|
|
14
|
+
const _BPT = "ByolPricingTerm";
|
|
15
|
+
const _C = "Category";
|
|
16
|
+
const _CFFO = "CloudFormationFulfillmentOption";
|
|
17
|
+
const _CFO = "ContainerFulfillmentOption";
|
|
18
|
+
const _CL = "CategoryList";
|
|
19
|
+
const _COS = "ContainerOperatingSystem";
|
|
20
|
+
const _COSL = "ContainerOperatingSystemList";
|
|
21
|
+
const _CUPT = "ConfigurableUpfrontPricingTerm";
|
|
22
|
+
const _CURCI = "ConfigurableUpfrontRateCardItem";
|
|
23
|
+
const _CURCL = "ConfigurableUpfrontRateCardList";
|
|
24
|
+
const _Co = "Constraints";
|
|
25
|
+
const _DA = "DataArtifact";
|
|
26
|
+
const _DAL = "DataArtifactList";
|
|
27
|
+
const _DEFO = "DataExchangeFulfillmentOption";
|
|
28
|
+
const _DI = "DocumentItem";
|
|
29
|
+
const _DL = "DimensionLabel";
|
|
30
|
+
const _DLL = "DimensionLabelList";
|
|
31
|
+
const _DLo = "DocumentList";
|
|
32
|
+
const _EAOFO = "EksAddOnFulfillmentOption";
|
|
33
|
+
const _EAOOS = "EksAddOnOperatingSystem";
|
|
34
|
+
const _EAOOSL = "EksAddOnOperatingSystemList";
|
|
35
|
+
const _EIBCFO = "Ec2ImageBuilderComponentFulfillmentOption";
|
|
36
|
+
const _FO = "FulfillmentOption";
|
|
37
|
+
const _FOL = "FulfillmentOptionsList";
|
|
38
|
+
const _FOS = "FulfillmentOptionSummary";
|
|
39
|
+
const _FOSL = "FulfillmentOptionSummaryList";
|
|
40
|
+
const _FTPT = "FreeTrialPricingTerm";
|
|
41
|
+
const _FUPT = "FixedUpfrontPricingTerm";
|
|
42
|
+
const _GI = "GrantItem";
|
|
43
|
+
const _GL = "GrantList";
|
|
44
|
+
const _GLI = "GetListingInput";
|
|
45
|
+
const _GLO = "GetListingOutput";
|
|
46
|
+
const _GLe = "GetListing";
|
|
47
|
+
const _GO = "GetOffer";
|
|
48
|
+
const _GOI = "GetOfferInput";
|
|
49
|
+
const _GOO = "GetOfferOutput";
|
|
50
|
+
const _GOS = "GetOfferSet";
|
|
51
|
+
const _GOSI = "GetOfferSetInput";
|
|
52
|
+
const _GOSO = "GetOfferSetOutput";
|
|
53
|
+
const _GOT = "GetOfferTerms";
|
|
54
|
+
const _GOTI = "GetOfferTermsInput";
|
|
55
|
+
const _GOTO = "GetOfferTermsOutput";
|
|
56
|
+
const _GP = "GetProduct";
|
|
57
|
+
const _GPI = "GetProductInput";
|
|
58
|
+
const _GPO = "GetProductOutput";
|
|
59
|
+
const _HFO = "HelmFulfillmentOption";
|
|
60
|
+
const _HOS = "HelmOperatingSystem";
|
|
61
|
+
const _HOSL = "HelmOperatingSystemList";
|
|
62
|
+
const _ISE = "InternalServerException";
|
|
63
|
+
const _LAE = "ListingAssociatedEntity";
|
|
64
|
+
const _LAEL = "ListingAssociatedEntityList";
|
|
65
|
+
const _LB = "ListingBadge";
|
|
66
|
+
const _LBL = "ListingBadgeList";
|
|
67
|
+
const _LF = "ListingFacet";
|
|
68
|
+
const _LFL = "ListingFacetList";
|
|
69
|
+
const _LFO = "ListFulfillmentOptions";
|
|
70
|
+
const _LFOI = "ListFulfillmentOptionsInput";
|
|
71
|
+
const _LFOO = "ListFulfillmentOptionsOutput";
|
|
72
|
+
const _LPO = "ListPurchaseOptions";
|
|
73
|
+
const _LPOI = "ListPurchaseOptionsInput";
|
|
74
|
+
const _LPOO = "ListPurchaseOptionsOutput";
|
|
75
|
+
const _LS = "ListingSummary";
|
|
76
|
+
const _LSAE = "ListingSummaryAssociatedEntity";
|
|
77
|
+
const _LSAEL = "ListingSummaryAssociatedEntityList";
|
|
78
|
+
const _LSL = "ListingSummaryList";
|
|
79
|
+
const _LT = "LegalTerm";
|
|
80
|
+
const _OAE = "OfferAssociatedEntity";
|
|
81
|
+
const _OAEL = "OfferAssociatedEntityList";
|
|
82
|
+
const _OI = "OfferInformation";
|
|
83
|
+
const _OSAE = "OfferSetAssociatedEntity";
|
|
84
|
+
const _OSAEL = "OfferSetAssociatedEntityList";
|
|
85
|
+
const _OSI = "OfferSetInformation";
|
|
86
|
+
const _OT = "OfferTerm";
|
|
87
|
+
const _OTL = "OfferTermsList";
|
|
88
|
+
const _PEI = "PromotionalEmbeddedImage";
|
|
89
|
+
const _PEV = "PromotionalEmbeddedVideo";
|
|
90
|
+
const _PI = "ProductInformation";
|
|
91
|
+
const _PM = "PricingModel";
|
|
92
|
+
const _PML = "PricingModelList";
|
|
93
|
+
const _PMLr = "PromotionalMediaList";
|
|
94
|
+
const _PMr = "PromotionalMedia";
|
|
95
|
+
const _POAE = "PurchaseOptionAssociatedEntity";
|
|
96
|
+
const _POAEL = "PurchaseOptionAssociatedEntityList";
|
|
97
|
+
const _POB = "PurchaseOptionBadge";
|
|
98
|
+
const _POBL = "PurchaseOptionBadgeList";
|
|
99
|
+
const _POF = "PurchaseOptionFilter";
|
|
100
|
+
const _POFL = "PurchaseOptionFilterList";
|
|
101
|
+
const _POS = "PurchaseOptionSummary";
|
|
102
|
+
const _POSL = "PurchaseOptionSummaryList";
|
|
103
|
+
const _PSFO = "ProfessionalServicesFulfillmentOption";
|
|
104
|
+
const _PST = "PaymentScheduleTerm";
|
|
105
|
+
const _PU = "PricingUnit";
|
|
106
|
+
const _PUL = "PricingUnitList";
|
|
107
|
+
const _R = "Resource";
|
|
108
|
+
const _RCI = "RateCardItem";
|
|
109
|
+
const _RCL = "RateCardList";
|
|
110
|
+
const _RL = "ResourceList";
|
|
111
|
+
const _RNFE = "ResourceNotFoundException";
|
|
112
|
+
const _RPT = "RecurringPaymentTerm";
|
|
113
|
+
const _RS = "ReviewSummary";
|
|
114
|
+
const _RSS = "ReviewSourceSummary";
|
|
115
|
+
const _RSSL = "ReviewSourceSummaryList";
|
|
116
|
+
const _RT = "RenewalTerm";
|
|
117
|
+
const _S = "Selector";
|
|
118
|
+
const _SE = "SellerEngagement";
|
|
119
|
+
const _SEL = "SellerEngagementList";
|
|
120
|
+
const _SF = "SearchFilter";
|
|
121
|
+
const _SFI = "SearchFacetsInput";
|
|
122
|
+
const _SFL = "SearchFilterList";
|
|
123
|
+
const _SFO = "SaasFulfillmentOption";
|
|
124
|
+
const _SFOe = "SearchFacetsOutput";
|
|
125
|
+
const _SFe = "SearchFacets";
|
|
126
|
+
const _SI = "ScheduleItem";
|
|
127
|
+
const _SIe = "SellerInformation";
|
|
128
|
+
const _SL = "ScheduleList";
|
|
129
|
+
const _SLI = "SearchListingsInput";
|
|
130
|
+
const _SLO = "SearchListingsOutput";
|
|
131
|
+
const _SLe = "SearchListings";
|
|
132
|
+
const _SMAFO = "SageMakerAlgorithmFulfillmentOption";
|
|
133
|
+
const _SMAR = "SageMakerAlgorithmRecommendation";
|
|
134
|
+
const _SMMFO = "SageMakerModelFulfillmentOption";
|
|
135
|
+
const _SMMR = "SageMakerModelRecommendation";
|
|
136
|
+
const _ST = "SupportTerm";
|
|
137
|
+
const _TE = "ThrottlingException";
|
|
138
|
+
const _TTFM = "TypeToFacetMap";
|
|
139
|
+
const _UBPT = "UsageBasedPricingTerm";
|
|
140
|
+
const _UBRCI = "UsageBasedRateCardItem";
|
|
141
|
+
const _UBRCL = "UsageBasedRateCardList";
|
|
142
|
+
const _UC = "UseCase";
|
|
143
|
+
const _UCE = "UseCaseEntry";
|
|
144
|
+
const _UCL = "UseCaseList";
|
|
145
|
+
const _VE = "ValidationException";
|
|
146
|
+
const _VPT = "VariablePaymentTerm";
|
|
147
|
+
const _VT = "ValidityTerm";
|
|
148
|
+
const _aD = "agreementDuration";
|
|
149
|
+
const _aE = "associatedEntities";
|
|
150
|
+
const _aED = "agreementEndDate";
|
|
151
|
+
const _aFO = "apiFulfillmentOption";
|
|
152
|
+
const _aFT = "availableFromTime";
|
|
153
|
+
const _aMIFO = "amazonMachineImageFulfillmentOption";
|
|
154
|
+
const _aPI = "agreementProposalId";
|
|
155
|
+
const _aR = "averageRating";
|
|
156
|
+
const _aSD = "agreementStartDate";
|
|
157
|
+
const _aSS = "awsSupportedServices";
|
|
158
|
+
const _b = "badges";
|
|
159
|
+
const _bN = "buyerNotes";
|
|
160
|
+
const _bP = "billingPeriod";
|
|
161
|
+
const _bPT = "byolPricingTerm";
|
|
162
|
+
const _bT = "badgeType";
|
|
163
|
+
const _c = "client";
|
|
164
|
+
const _cA = "chargeAmount";
|
|
165
|
+
const _cC = "currencyCode";
|
|
166
|
+
const _cD = "chargeDate";
|
|
167
|
+
const _cFFO = "cloudFormationFulfillmentOption";
|
|
168
|
+
const _cFO = "containerFulfillmentOption";
|
|
169
|
+
const _cI = "categoryId";
|
|
170
|
+
const _cT = "contentType";
|
|
171
|
+
const _cUPT = "configurableUpfrontPricingTerm";
|
|
172
|
+
const _ca = "catalog";
|
|
173
|
+
const _cat = "categories";
|
|
174
|
+
const _co = "constraints";
|
|
175
|
+
const _cou = "count";
|
|
176
|
+
const _d = "description";
|
|
177
|
+
const _dA = "dataArtifacts";
|
|
178
|
+
const _dC = "dataClassification";
|
|
179
|
+
const _dEFO = "dataExchangeFulfillmentOption";
|
|
180
|
+
const _dK = "dimensionKey";
|
|
181
|
+
const _dL = "dimensionLabels";
|
|
182
|
+
const _dN = "displayName";
|
|
183
|
+
const _dOA = "deployedOnAws";
|
|
184
|
+
const _do = "documents";
|
|
185
|
+
const _du = "duration";
|
|
186
|
+
const _e = "error";
|
|
187
|
+
const _eAOFO = "eksAddOnFulfillmentOption";
|
|
188
|
+
const _eI = "embeddedImage";
|
|
189
|
+
const _eIBCFO = "ec2ImageBuilderComponentFulfillmentOption";
|
|
190
|
+
const _eT = "expirationTime";
|
|
191
|
+
const _eTn = "engagementType";
|
|
192
|
+
const _eV = "embeddedVideo";
|
|
193
|
+
const _f = "filters";
|
|
194
|
+
const _fO = "fulfillmentOptions";
|
|
195
|
+
const _fODN = "fulfillmentOptionDisplayName";
|
|
196
|
+
const _fOI = "fulfillmentOptionId";
|
|
197
|
+
const _fON = "fulfillmentOptionName";
|
|
198
|
+
const _fOS = "fulfillmentOptionSummaries";
|
|
199
|
+
const _fOT = "fulfillmentOptionType";
|
|
200
|
+
const _fOV = "fulfillmentOptionVersion";
|
|
201
|
+
const _fT = "filterType";
|
|
202
|
+
const _fTPT = "freeTrialPricingTerm";
|
|
203
|
+
const _fTa = "facetTypes";
|
|
204
|
+
const _fU = "fulfillmentUrl";
|
|
205
|
+
const _fUPT = "fixedUpfrontPricingTerm";
|
|
206
|
+
const _fV = "filterValues";
|
|
207
|
+
const _g = "grants";
|
|
208
|
+
const _h = "highlights";
|
|
209
|
+
const _hE = "httpError";
|
|
210
|
+
const _hFO = "helmFulfillmentOption";
|
|
211
|
+
const _ht = "http";
|
|
212
|
+
const _i = "id";
|
|
213
|
+
const _iG = "integrationGuide";
|
|
214
|
+
const _iT = "instanceType";
|
|
215
|
+
const _lD = "longDescription";
|
|
216
|
+
const _lF = "listingFacets";
|
|
217
|
+
const _lI = "listingId";
|
|
218
|
+
const _lN = "listingName";
|
|
219
|
+
const _lS = "listingSummaries";
|
|
220
|
+
const _lT = "labelType";
|
|
221
|
+
const _lTU = "logoThumbnailUrl";
|
|
222
|
+
const _lTe = "legalTerm";
|
|
223
|
+
const _lV = "labelValue";
|
|
224
|
+
const _m = "message";
|
|
225
|
+
const _mDS = "multipleDimensionSelection";
|
|
226
|
+
const _mQ = "maxQuantity";
|
|
227
|
+
const _mR = "maxResults";
|
|
228
|
+
const _mTCA = "maxTotalChargeAmount";
|
|
229
|
+
const _ma = "manufacturer";
|
|
230
|
+
const _nT = "nextToken";
|
|
231
|
+
const _o = "offer";
|
|
232
|
+
const _oI = "offerId";
|
|
233
|
+
const _oN = "offerName";
|
|
234
|
+
const _oS = "operatingSystems";
|
|
235
|
+
const _oSFN = "operatingSystemFamilyName";
|
|
236
|
+
const _oSI = "offerSetId";
|
|
237
|
+
const _oSN = "operatingSystemName";
|
|
238
|
+
const _oSNf = "offerSetName";
|
|
239
|
+
const _oSV = "operatingSystemVersion";
|
|
240
|
+
const _oSf = "offerSet";
|
|
241
|
+
const _oT = "offerTerms";
|
|
242
|
+
const _p = "price";
|
|
243
|
+
const _pI = "productId";
|
|
244
|
+
const _pM = "pricingModels";
|
|
245
|
+
const _pMT = "pricingModelType";
|
|
246
|
+
const _pMr = "promotionalMedia";
|
|
247
|
+
const _pMri = "pricingModel";
|
|
248
|
+
const _pN = "productName";
|
|
249
|
+
const _pO = "purchaseOptions";
|
|
250
|
+
const _pOI = "purchaseOptionId";
|
|
251
|
+
const _pON = "purchaseOptionName";
|
|
252
|
+
const _pOT = "purchaseOptionType";
|
|
253
|
+
const _pSFO = "professionalServicesFulfillmentOption";
|
|
254
|
+
const _pST = "paymentScheduleTerm";
|
|
255
|
+
const _pU = "pricingUnits";
|
|
256
|
+
const _pUT = "pricingUnitType";
|
|
257
|
+
const _pa = "parent";
|
|
258
|
+
const _pr = "product";
|
|
259
|
+
const _pre = "preview";
|
|
260
|
+
const _pu = "publisher";
|
|
261
|
+
const _qC = "quantityConfiguration";
|
|
262
|
+
const _r = "reason";
|
|
263
|
+
const _rA = "resourceArn";
|
|
264
|
+
const _rAI = "replacementAgreementId";
|
|
265
|
+
const _rBTIT = "recommendedBatchTransformInstanceType";
|
|
266
|
+
const _rC = "rateCards";
|
|
267
|
+
const _rCa = "rateCard";
|
|
268
|
+
const _rN = "releaseNotes";
|
|
269
|
+
const _rP = "refundPolicy";
|
|
270
|
+
const _rPT = "recurringPaymentTerm";
|
|
271
|
+
const _rRIIT = "recommendedRealtimeInferenceInstanceType";
|
|
272
|
+
const _rS = "reviewSummary";
|
|
273
|
+
const _rSS = "reviewSourceSummaries";
|
|
274
|
+
const _rT = "resourceType";
|
|
275
|
+
const _rTIT = "recommendedTrainingInstanceType";
|
|
276
|
+
const _rTe = "renewalTerm";
|
|
277
|
+
const _re = "recommendation";
|
|
278
|
+
const _res = "resources";
|
|
279
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.marketplacediscovery";
|
|
280
|
+
const _sB = "sortBy";
|
|
281
|
+
const _sD = "shortDescription";
|
|
282
|
+
const _sE = "sellerEngagements";
|
|
283
|
+
const _sFO = "saasFulfillmentOption";
|
|
284
|
+
const _sI = "sourceId";
|
|
285
|
+
const _sMAFO = "sageMakerAlgorithmFulfillmentOption";
|
|
286
|
+
const _sMMFO = "sageMakerModelFulfillmentOption";
|
|
287
|
+
const _sN = "sourceName";
|
|
288
|
+
const _sO = "sortOrder";
|
|
289
|
+
const _sOR = "sellerOfRecord";
|
|
290
|
+
const _sPI = "sellerProfileId";
|
|
291
|
+
const _sST = "supportedServiceType";
|
|
292
|
+
const _sT = "searchText";
|
|
293
|
+
const _sTu = "supportTerm";
|
|
294
|
+
const _sU = "sourceUrl";
|
|
295
|
+
const _sc = "schedule";
|
|
296
|
+
const _se = "server";
|
|
297
|
+
const _sel = "selector";
|
|
298
|
+
const _t = "type";
|
|
299
|
+
const _tR = "totalReviews";
|
|
300
|
+
const _tRo = "totalResults";
|
|
301
|
+
const _th = "thumbnail";
|
|
302
|
+
const _ti = "title";
|
|
303
|
+
const _u = "url";
|
|
304
|
+
const _uBPT = "usageBasedPricingTerm";
|
|
305
|
+
const _uC = "useCases";
|
|
306
|
+
const _uCs = "useCase";
|
|
307
|
+
const _uI = "usageInstructions";
|
|
308
|
+
const _un = "unit";
|
|
309
|
+
const _v = "version";
|
|
310
|
+
const _vPT = "variablePaymentTerm";
|
|
311
|
+
const _vT = "validityTerm";
|
|
312
|
+
const _va = "value";
|
|
313
|
+
const n0 = "com.amazonaws.marketplacediscovery";
|
|
314
|
+
const schema_1 = require("@smithy/core/schema");
|
|
315
|
+
const errors_1 = require("../models/errors");
|
|
316
|
+
const MarketplaceDiscoveryServiceException_1 = require("../models/MarketplaceDiscoveryServiceException");
|
|
317
|
+
const _s_registry = schema_1.TypeRegistry.for(_s);
|
|
318
|
+
exports.MarketplaceDiscoveryServiceException$ = [-3, _s, "MarketplaceDiscoveryServiceException", 0, [], []];
|
|
319
|
+
_s_registry.registerError(exports.MarketplaceDiscoveryServiceException$, MarketplaceDiscoveryServiceException_1.MarketplaceDiscoveryServiceException);
|
|
320
|
+
const n0_registry = schema_1.TypeRegistry.for(n0);
|
|
321
|
+
exports.AccessDeniedException$ = [-3, n0, _ADE,
|
|
322
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
323
|
+
[_m],
|
|
324
|
+
[0]
|
|
325
|
+
];
|
|
326
|
+
n0_registry.registerError(exports.AccessDeniedException$, errors_1.AccessDeniedException);
|
|
327
|
+
exports.InternalServerException$ = [-3, n0, _ISE,
|
|
328
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
329
|
+
[_m],
|
|
330
|
+
[0]
|
|
331
|
+
];
|
|
332
|
+
n0_registry.registerError(exports.InternalServerException$, errors_1.InternalServerException);
|
|
333
|
+
exports.ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
334
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
335
|
+
[_m],
|
|
336
|
+
[0]
|
|
337
|
+
];
|
|
338
|
+
n0_registry.registerError(exports.ResourceNotFoundException$, errors_1.ResourceNotFoundException);
|
|
339
|
+
exports.ThrottlingException$ = [-3, n0, _TE,
|
|
340
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
341
|
+
[_m],
|
|
342
|
+
[0]
|
|
343
|
+
];
|
|
344
|
+
n0_registry.registerError(exports.ThrottlingException$, errors_1.ThrottlingException);
|
|
345
|
+
exports.ValidationException$ = [-3, n0, _VE,
|
|
346
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
347
|
+
[_m, _r],
|
|
348
|
+
[0, 0]
|
|
349
|
+
];
|
|
350
|
+
n0_registry.registerError(exports.ValidationException$, errors_1.ValidationException);
|
|
351
|
+
exports.errorTypeRegistries = [
|
|
352
|
+
_s_registry,
|
|
353
|
+
n0_registry,
|
|
354
|
+
];
|
|
355
|
+
exports.AmazonMachineImageFulfillmentOption$ = [3, n0, _AMIFO,
|
|
356
|
+
0,
|
|
357
|
+
[_fOI, _fON, _fOT, _fODN, _oS, _fOV, _re, _rN, _uI],
|
|
358
|
+
[0, 0, 0, 0, () => AmazonMachineImageOperatingSystemList, 0, () => exports.AmazonMachineImageRecommendation$, 0, 0], 5
|
|
359
|
+
];
|
|
360
|
+
exports.AmazonMachineImageOperatingSystem$ = [3, n0, _AMIOS,
|
|
361
|
+
0,
|
|
362
|
+
[_oSFN, _oSN, _oSV],
|
|
363
|
+
[0, 0, 0], 2
|
|
364
|
+
];
|
|
365
|
+
exports.AmazonMachineImageRecommendation$ = [3, n0, _AMIR,
|
|
366
|
+
0,
|
|
367
|
+
[_iT],
|
|
368
|
+
[0], 1
|
|
369
|
+
];
|
|
370
|
+
exports.ApiFulfillmentOption$ = [3, n0, _AFO,
|
|
371
|
+
0,
|
|
372
|
+
[_fOI, _fOT, _fODN, _aSS, _uI],
|
|
373
|
+
[0, 0, 0, () => AwsSupportedServiceList, 0], 4
|
|
374
|
+
];
|
|
375
|
+
exports.AwsSupportedService$ = [3, n0, _ASS,
|
|
376
|
+
0,
|
|
377
|
+
[_sST, _dN, _d],
|
|
378
|
+
[0, 0, 0], 3
|
|
379
|
+
];
|
|
380
|
+
exports.ByolPricingTerm$ = [3, n0, _BPT,
|
|
381
|
+
0,
|
|
382
|
+
[_i, _t],
|
|
383
|
+
[0, 0], 2
|
|
384
|
+
];
|
|
385
|
+
exports.Category$ = [3, n0, _C,
|
|
386
|
+
0,
|
|
387
|
+
[_cI, _dN],
|
|
388
|
+
[0, 0], 2
|
|
389
|
+
];
|
|
390
|
+
exports.CloudFormationFulfillmentOption$ = [3, n0, _CFFO,
|
|
391
|
+
0,
|
|
392
|
+
[_fOI, _fON, _fOT, _fODN, _fOV, _rN, _uI],
|
|
393
|
+
[0, 0, 0, 0, 0, 0, 0], 4
|
|
394
|
+
];
|
|
395
|
+
exports.ConfigurableUpfrontPricingTerm$ = [3, n0, _CUPT,
|
|
396
|
+
0,
|
|
397
|
+
[_i, _t, _cC, _rC],
|
|
398
|
+
[0, 0, 0, () => ConfigurableUpfrontRateCardList], 3
|
|
399
|
+
];
|
|
400
|
+
exports.ConfigurableUpfrontRateCardItem$ = [3, n0, _CURCI,
|
|
401
|
+
0,
|
|
402
|
+
[_sel, _co, _rCa],
|
|
403
|
+
[() => exports.Selector$, () => exports.Constraints$, () => RateCardList], 3
|
|
404
|
+
];
|
|
405
|
+
exports.Constraints$ = [3, n0, _Co,
|
|
406
|
+
0,
|
|
407
|
+
[_mDS, _qC],
|
|
408
|
+
[0, 0], 2
|
|
409
|
+
];
|
|
410
|
+
exports.ContainerFulfillmentOption$ = [3, n0, _CFO,
|
|
411
|
+
0,
|
|
412
|
+
[_fOI, _fON, _fOT, _fODN, _fOV, _oS, _aSS, _rN, _uI],
|
|
413
|
+
[0, 0, 0, 0, 0, () => ContainerOperatingSystemList, () => AwsSupportedServiceList, 0, 0], 4
|
|
414
|
+
];
|
|
415
|
+
exports.ContainerOperatingSystem$ = [3, n0, _COS,
|
|
416
|
+
0,
|
|
417
|
+
[_oSFN, _oSN],
|
|
418
|
+
[0, 0], 2
|
|
419
|
+
];
|
|
420
|
+
exports.DataArtifact$ = [3, n0, _DA,
|
|
421
|
+
0,
|
|
422
|
+
[_rT, _dC, _d, _rA],
|
|
423
|
+
[0, 0, 0, 0], 2
|
|
424
|
+
];
|
|
425
|
+
exports.DataExchangeFulfillmentOption$ = [3, n0, _DEFO,
|
|
426
|
+
0,
|
|
427
|
+
[_fOI, _fOT, _fODN, _dA],
|
|
428
|
+
[0, 0, 0, () => DataArtifactList], 3
|
|
429
|
+
];
|
|
430
|
+
exports.DimensionLabel$ = [3, n0, _DL,
|
|
431
|
+
0,
|
|
432
|
+
[_lT, _lV, _dN],
|
|
433
|
+
[0, 0, 0], 2
|
|
434
|
+
];
|
|
435
|
+
exports.DocumentItem$ = [3, n0, _DI,
|
|
436
|
+
0,
|
|
437
|
+
[_t, _u, _v],
|
|
438
|
+
[0, 0, 0], 2
|
|
439
|
+
];
|
|
440
|
+
exports.Ec2ImageBuilderComponentFulfillmentOption$ = [3, n0, _EIBCFO,
|
|
441
|
+
0,
|
|
442
|
+
[_fOI, _fON, _fOT, _fODN, _fOV, _oS, _aSS, _rN, _uI],
|
|
443
|
+
[0, 0, 0, 0, 0, () => ContainerOperatingSystemList, () => AwsSupportedServiceList, 0, 0], 4
|
|
444
|
+
];
|
|
445
|
+
exports.EksAddOnFulfillmentOption$ = [3, n0, _EAOFO,
|
|
446
|
+
0,
|
|
447
|
+
[_fOI, _fON, _fOT, _fODN, _fOV, _oS, _rN, _uI, _aSS],
|
|
448
|
+
[0, 0, 0, 0, 0, () => EksAddOnOperatingSystemList, 0, 0, () => AwsSupportedServiceList], 4
|
|
449
|
+
];
|
|
450
|
+
exports.EksAddOnOperatingSystem$ = [3, n0, _EAOOS,
|
|
451
|
+
0,
|
|
452
|
+
[_oSFN, _oSN],
|
|
453
|
+
[0, 0], 2
|
|
454
|
+
];
|
|
455
|
+
exports.FixedUpfrontPricingTerm$ = [3, n0, _FUPT,
|
|
456
|
+
0,
|
|
457
|
+
[_i, _t, _cC, _p, _g, _du],
|
|
458
|
+
[0, 0, 0, 0, () => GrantList, 0], 5
|
|
459
|
+
];
|
|
460
|
+
exports.FreeTrialPricingTerm$ = [3, n0, _FTPT,
|
|
461
|
+
0,
|
|
462
|
+
[_i, _t, _g, _du],
|
|
463
|
+
[0, 0, () => GrantList, 0], 3
|
|
464
|
+
];
|
|
465
|
+
exports.FulfillmentOptionSummary$ = [3, n0, _FOS,
|
|
466
|
+
0,
|
|
467
|
+
[_fOT, _dN],
|
|
468
|
+
[0, 0], 2
|
|
469
|
+
];
|
|
470
|
+
exports.GetListingInput$ = [3, n0, _GLI,
|
|
471
|
+
0,
|
|
472
|
+
[_lI],
|
|
473
|
+
[0], 1
|
|
474
|
+
];
|
|
475
|
+
exports.GetListingOutput$ = [3, n0, _GLO,
|
|
476
|
+
0,
|
|
477
|
+
[_aE, _b, _ca, _cat, _fOS, _h, _lI, _lN, _lTU, _lD, _pM, _pU, _pMr, _pu, _res, _sE, _sD, _uC, _iG, _rS],
|
|
478
|
+
[() => ListingAssociatedEntityList, () => ListingBadgeList, 0, () => CategoryList, () => FulfillmentOptionSummaryList, 64 | 0, 0, 0, 0, 0, () => PricingModelList, () => PricingUnitList, () => PromotionalMediaList, () => exports.SellerInformation$, () => ResourceList, () => SellerEngagementList, 0, () => UseCaseList, 0, () => exports.ReviewSummary$], 18
|
|
479
|
+
];
|
|
480
|
+
exports.GetOfferInput$ = [3, n0, _GOI,
|
|
481
|
+
0,
|
|
482
|
+
[_oI],
|
|
483
|
+
[0], 1
|
|
484
|
+
];
|
|
485
|
+
exports.GetOfferOutput$ = [3, n0, _GOO,
|
|
486
|
+
0,
|
|
487
|
+
[_oI, _ca, _aPI, _sOR, _pMri, _b, _aE, _oN, _eT, _aFT, _rAI],
|
|
488
|
+
[0, 0, 0, () => exports.SellerInformation$, () => exports.PricingModel$, () => PurchaseOptionBadgeList, () => OfferAssociatedEntityList, 0, 4, 4, 0], 7
|
|
489
|
+
];
|
|
490
|
+
exports.GetOfferSetInput$ = [3, n0, _GOSI,
|
|
491
|
+
0,
|
|
492
|
+
[_oSI],
|
|
493
|
+
[0], 1
|
|
494
|
+
];
|
|
495
|
+
exports.GetOfferSetOutput$ = [3, n0, _GOSO,
|
|
496
|
+
0,
|
|
497
|
+
[_oSI, _ca, _sOR, _b, _aE, _oSNf, _aFT, _eT, _bN],
|
|
498
|
+
[0, 0, () => exports.SellerInformation$, () => PurchaseOptionBadgeList, () => OfferSetAssociatedEntityList, 0, 4, 4, 0], 5
|
|
499
|
+
];
|
|
500
|
+
exports.GetOfferTermsInput$ = [3, n0, _GOTI,
|
|
501
|
+
0,
|
|
502
|
+
[_oI, _mR, _nT],
|
|
503
|
+
[0, 1, 0], 1
|
|
504
|
+
];
|
|
505
|
+
exports.GetOfferTermsOutput$ = [3, n0, _GOTO,
|
|
506
|
+
0,
|
|
507
|
+
[_oT, _nT],
|
|
508
|
+
[() => OfferTermsList, 0], 1
|
|
509
|
+
];
|
|
510
|
+
exports.GetProductInput$ = [3, n0, _GPI,
|
|
511
|
+
0,
|
|
512
|
+
[_pI],
|
|
513
|
+
[0], 1
|
|
514
|
+
];
|
|
515
|
+
exports.GetProductOutput$ = [3, n0, _GPO,
|
|
516
|
+
0,
|
|
517
|
+
[_pI, _ca, _pN, _dOA, _sD, _lD, _ma, _lTU, _fOS, _cat, _h, _pMr, _res, _sE],
|
|
518
|
+
[0, 0, 0, 0, 0, 0, () => exports.SellerInformation$, 0, () => FulfillmentOptionSummaryList, () => CategoryList, 64 | 0, () => PromotionalMediaList, () => ResourceList, () => SellerEngagementList], 14
|
|
519
|
+
];
|
|
520
|
+
exports.GrantItem$ = [3, n0, _GI,
|
|
521
|
+
0,
|
|
522
|
+
[_dK, _dN, _un, _d, _dL, _mQ],
|
|
523
|
+
[0, 0, 0, 0, () => DimensionLabelList, 1], 3
|
|
524
|
+
];
|
|
525
|
+
exports.HelmFulfillmentOption$ = [3, n0, _HFO,
|
|
526
|
+
0,
|
|
527
|
+
[_fOI, _fON, _fOT, _fODN, _fOV, _oS, _rN, _aSS, _uI],
|
|
528
|
+
[0, 0, 0, 0, 0, () => HelmOperatingSystemList, 0, () => AwsSupportedServiceList, 0], 4
|
|
529
|
+
];
|
|
530
|
+
exports.HelmOperatingSystem$ = [3, n0, _HOS,
|
|
531
|
+
0,
|
|
532
|
+
[_oSFN, _oSN],
|
|
533
|
+
[0, 0], 2
|
|
534
|
+
];
|
|
535
|
+
exports.LegalTerm$ = [3, n0, _LT,
|
|
536
|
+
0,
|
|
537
|
+
[_i, _t, _do],
|
|
538
|
+
[0, 0, () => DocumentList], 3
|
|
539
|
+
];
|
|
540
|
+
exports.ListFulfillmentOptionsInput$ = [3, n0, _LFOI,
|
|
541
|
+
0,
|
|
542
|
+
[_pI, _mR, _nT],
|
|
543
|
+
[0, 1, 0], 1
|
|
544
|
+
];
|
|
545
|
+
exports.ListFulfillmentOptionsOutput$ = [3, n0, _LFOO,
|
|
546
|
+
0,
|
|
547
|
+
[_fO, _nT],
|
|
548
|
+
[() => FulfillmentOptionsList, 0], 1
|
|
549
|
+
];
|
|
550
|
+
exports.ListingAssociatedEntity$ = [3, n0, _LAE,
|
|
551
|
+
0,
|
|
552
|
+
[_pr, _o],
|
|
553
|
+
[() => exports.ProductInformation$, () => exports.OfferInformation$]
|
|
554
|
+
];
|
|
555
|
+
exports.ListingBadge$ = [3, n0, _LB,
|
|
556
|
+
0,
|
|
557
|
+
[_dN, _bT],
|
|
558
|
+
[0, 0], 2
|
|
559
|
+
];
|
|
560
|
+
exports.ListingFacet$ = [3, n0, _LF,
|
|
561
|
+
0,
|
|
562
|
+
[_va, _dN, _cou, _pa],
|
|
563
|
+
[0, 0, 1, 0], 3
|
|
564
|
+
];
|
|
565
|
+
exports.ListingSummary$ = [3, n0, _LS,
|
|
566
|
+
0,
|
|
567
|
+
[_lI, _lN, _pu, _ca, _sD, _lTU, _cat, _fOS, _b, _rS, _pM, _pU, _aE],
|
|
568
|
+
[0, 0, () => exports.SellerInformation$, 0, 0, 0, () => CategoryList, () => FulfillmentOptionSummaryList, () => ListingBadgeList, () => exports.ReviewSummary$, () => PricingModelList, () => PricingUnitList, () => ListingSummaryAssociatedEntityList], 13
|
|
569
|
+
];
|
|
570
|
+
exports.ListingSummaryAssociatedEntity$ = [3, n0, _LSAE,
|
|
571
|
+
0,
|
|
572
|
+
[_pr],
|
|
573
|
+
[() => exports.ProductInformation$]
|
|
574
|
+
];
|
|
575
|
+
exports.ListPurchaseOptionsInput$ = [3, n0, _LPOI,
|
|
576
|
+
0,
|
|
577
|
+
[_f, _mR, _nT],
|
|
578
|
+
[() => PurchaseOptionFilterList, 1, 0]
|
|
579
|
+
];
|
|
580
|
+
exports.ListPurchaseOptionsOutput$ = [3, n0, _LPOO,
|
|
581
|
+
0,
|
|
582
|
+
[_pO, _nT],
|
|
583
|
+
[() => PurchaseOptionSummaryList, 0]
|
|
584
|
+
];
|
|
585
|
+
exports.OfferAssociatedEntity$ = [3, n0, _OAE,
|
|
586
|
+
0,
|
|
587
|
+
[_pr, _oSf],
|
|
588
|
+
[() => exports.ProductInformation$, () => exports.OfferSetInformation$], 1
|
|
589
|
+
];
|
|
590
|
+
exports.OfferInformation$ = [3, n0, _OI,
|
|
591
|
+
0,
|
|
592
|
+
[_oI, _sOR, _oN],
|
|
593
|
+
[0, () => exports.SellerInformation$, 0], 2
|
|
594
|
+
];
|
|
595
|
+
exports.OfferSetAssociatedEntity$ = [3, n0, _OSAE,
|
|
596
|
+
0,
|
|
597
|
+
[_pr, _o],
|
|
598
|
+
[() => exports.ProductInformation$, () => exports.OfferInformation$], 2
|
|
599
|
+
];
|
|
600
|
+
exports.OfferSetInformation$ = [3, n0, _OSI,
|
|
601
|
+
0,
|
|
602
|
+
[_oSI, _sOR],
|
|
603
|
+
[0, () => exports.SellerInformation$], 2
|
|
604
|
+
];
|
|
605
|
+
exports.PaymentScheduleTerm$ = [3, n0, _PST,
|
|
606
|
+
0,
|
|
607
|
+
[_i, _t, _cC, _sc],
|
|
608
|
+
[0, 0, 0, () => ScheduleList], 4
|
|
609
|
+
];
|
|
610
|
+
exports.PricingModel$ = [3, n0, _PM,
|
|
611
|
+
0,
|
|
612
|
+
[_pMT, _dN],
|
|
613
|
+
[0, 0], 2
|
|
614
|
+
];
|
|
615
|
+
exports.PricingUnit$ = [3, n0, _PU,
|
|
616
|
+
0,
|
|
617
|
+
[_pUT, _dN],
|
|
618
|
+
[0, 0], 2
|
|
619
|
+
];
|
|
620
|
+
exports.ProductInformation$ = [3, n0, _PI,
|
|
621
|
+
0,
|
|
622
|
+
[_pI, _pN, _ma],
|
|
623
|
+
[0, 0, () => exports.SellerInformation$], 3
|
|
624
|
+
];
|
|
625
|
+
exports.ProfessionalServicesFulfillmentOption$ = [3, n0, _PSFO,
|
|
626
|
+
0,
|
|
627
|
+
[_fOI, _fOT, _fODN],
|
|
628
|
+
[0, 0, 0], 3
|
|
629
|
+
];
|
|
630
|
+
exports.PromotionalEmbeddedImage$ = [3, n0, _PEI,
|
|
631
|
+
0,
|
|
632
|
+
[_ti, _u, _d],
|
|
633
|
+
[0, 0, 0], 2
|
|
634
|
+
];
|
|
635
|
+
exports.PromotionalEmbeddedVideo$ = [3, n0, _PEV,
|
|
636
|
+
0,
|
|
637
|
+
[_ti, _u, _pre, _th, _d],
|
|
638
|
+
[0, 0, 0, 0, 0], 4
|
|
639
|
+
];
|
|
640
|
+
exports.PurchaseOptionAssociatedEntity$ = [3, n0, _POAE,
|
|
641
|
+
0,
|
|
642
|
+
[_pr, _o, _oSf],
|
|
643
|
+
[() => exports.ProductInformation$, () => exports.OfferInformation$, () => exports.OfferSetInformation$], 2
|
|
644
|
+
];
|
|
645
|
+
exports.PurchaseOptionBadge$ = [3, n0, _POB,
|
|
646
|
+
0,
|
|
647
|
+
[_dN, _bT],
|
|
648
|
+
[0, 0], 2
|
|
649
|
+
];
|
|
650
|
+
exports.PurchaseOptionFilter$ = [3, n0, _POF,
|
|
651
|
+
0,
|
|
652
|
+
[_fT, _fV],
|
|
653
|
+
[0, 64 | 0], 2
|
|
654
|
+
];
|
|
655
|
+
exports.PurchaseOptionSummary$ = [3, n0, _POS,
|
|
656
|
+
0,
|
|
657
|
+
[_pOI, _ca, _pOT, _sOR, _aE, _pON, _aFT, _eT, _b],
|
|
658
|
+
[0, 0, 0, () => exports.SellerInformation$, () => PurchaseOptionAssociatedEntityList, 0, 4, 4, () => PurchaseOptionBadgeList], 5
|
|
659
|
+
];
|
|
660
|
+
exports.RateCardItem$ = [3, n0, _RCI,
|
|
661
|
+
0,
|
|
662
|
+
[_dK, _dN, _un, _p, _d, _dL],
|
|
663
|
+
[0, 0, 0, 0, 0, () => DimensionLabelList], 4
|
|
664
|
+
];
|
|
665
|
+
exports.RecurringPaymentTerm$ = [3, n0, _RPT,
|
|
666
|
+
0,
|
|
667
|
+
[_i, _t, _cC, _bP, _p],
|
|
668
|
+
[0, 0, 0, 0, 0], 5
|
|
669
|
+
];
|
|
670
|
+
exports.RenewalTerm$ = [3, n0, _RT,
|
|
671
|
+
0,
|
|
672
|
+
[_i, _t],
|
|
673
|
+
[0, 0], 2
|
|
674
|
+
];
|
|
675
|
+
exports.Resource$ = [3, n0, _R,
|
|
676
|
+
0,
|
|
677
|
+
[_rT, _cT, _va, _dN],
|
|
678
|
+
[0, 0, 0, 0], 3
|
|
679
|
+
];
|
|
680
|
+
exports.ReviewSourceSummary$ = [3, n0, _RSS,
|
|
681
|
+
0,
|
|
682
|
+
[_sN, _sI, _aR, _tR, _sU],
|
|
683
|
+
[0, 0, 0, 1, 0], 4
|
|
684
|
+
];
|
|
685
|
+
exports.ReviewSummary$ = [3, n0, _RS,
|
|
686
|
+
0,
|
|
687
|
+
[_rSS],
|
|
688
|
+
[() => ReviewSourceSummaryList], 1
|
|
689
|
+
];
|
|
690
|
+
exports.SaasFulfillmentOption$ = [3, n0, _SFO,
|
|
691
|
+
0,
|
|
692
|
+
[_fOI, _fOT, _fODN, _fU, _uI],
|
|
693
|
+
[0, 0, 0, 0, 0], 3
|
|
694
|
+
];
|
|
695
|
+
exports.SageMakerAlgorithmFulfillmentOption$ = [3, n0, _SMAFO,
|
|
696
|
+
0,
|
|
697
|
+
[_fOI, _fOT, _fODN, _fOV, _rN, _uI, _re],
|
|
698
|
+
[0, 0, 0, 0, 0, 0, () => exports.SageMakerAlgorithmRecommendation$], 3
|
|
699
|
+
];
|
|
700
|
+
exports.SageMakerAlgorithmRecommendation$ = [3, n0, _SMAR,
|
|
701
|
+
0,
|
|
702
|
+
[_rBTIT, _rTIT, _rRIIT],
|
|
703
|
+
[0, 0, 0], 2
|
|
704
|
+
];
|
|
705
|
+
exports.SageMakerModelFulfillmentOption$ = [3, n0, _SMMFO,
|
|
706
|
+
0,
|
|
707
|
+
[_fOI, _fOT, _fODN, _fOV, _rN, _uI, _re],
|
|
708
|
+
[0, 0, 0, 0, 0, 0, () => exports.SageMakerModelRecommendation$], 3
|
|
709
|
+
];
|
|
710
|
+
exports.SageMakerModelRecommendation$ = [3, n0, _SMMR,
|
|
711
|
+
0,
|
|
712
|
+
[_rBTIT, _rRIIT],
|
|
713
|
+
[0, 0], 1
|
|
714
|
+
];
|
|
715
|
+
exports.ScheduleItem$ = [3, n0, _SI,
|
|
716
|
+
0,
|
|
717
|
+
[_cD, _cA],
|
|
718
|
+
[4, 0], 2
|
|
719
|
+
];
|
|
720
|
+
exports.SearchFacetsInput$ = [3, n0, _SFI,
|
|
721
|
+
0,
|
|
722
|
+
[_sT, _f, _fTa, _nT],
|
|
723
|
+
[0, () => SearchFilterList, 64 | 0, 0]
|
|
724
|
+
];
|
|
725
|
+
exports.SearchFacetsOutput$ = [3, n0, _SFOe,
|
|
726
|
+
0,
|
|
727
|
+
[_tRo, _lF, _nT],
|
|
728
|
+
[1, () => TypeToFacetMap, 0], 2
|
|
729
|
+
];
|
|
730
|
+
exports.SearchFilter$ = [3, n0, _SF,
|
|
731
|
+
0,
|
|
732
|
+
[_fT, _fV],
|
|
733
|
+
[0, 64 | 0], 2
|
|
734
|
+
];
|
|
735
|
+
exports.SearchListingsInput$ = [3, n0, _SLI,
|
|
736
|
+
0,
|
|
737
|
+
[_sT, _f, _mR, _sB, _sO, _nT],
|
|
738
|
+
[0, () => SearchFilterList, 1, 0, 0, 0]
|
|
739
|
+
];
|
|
740
|
+
exports.SearchListingsOutput$ = [3, n0, _SLO,
|
|
741
|
+
0,
|
|
742
|
+
[_tRo, _lS, _nT],
|
|
743
|
+
[1, () => ListingSummaryList, 0], 2
|
|
744
|
+
];
|
|
745
|
+
exports.Selector$ = [3, n0, _S,
|
|
746
|
+
0,
|
|
747
|
+
[_t, _va],
|
|
748
|
+
[0, 0], 2
|
|
749
|
+
];
|
|
750
|
+
exports.SellerEngagement$ = [3, n0, _SE,
|
|
751
|
+
0,
|
|
752
|
+
[_eTn, _cT, _va],
|
|
753
|
+
[0, 0, 0], 3
|
|
754
|
+
];
|
|
755
|
+
exports.SellerInformation$ = [3, n0, _SIe,
|
|
756
|
+
0,
|
|
757
|
+
[_sPI, _dN],
|
|
758
|
+
[0, 0], 2
|
|
759
|
+
];
|
|
760
|
+
exports.SupportTerm$ = [3, n0, _ST,
|
|
761
|
+
0,
|
|
762
|
+
[_i, _t, _rP],
|
|
763
|
+
[0, 0, 0], 3
|
|
764
|
+
];
|
|
765
|
+
exports.UsageBasedPricingTerm$ = [3, n0, _UBPT,
|
|
766
|
+
0,
|
|
767
|
+
[_i, _t, _cC, _rC],
|
|
768
|
+
[0, 0, 0, () => UsageBasedRateCardList], 4
|
|
769
|
+
];
|
|
770
|
+
exports.UsageBasedRateCardItem$ = [3, n0, _UBRCI,
|
|
771
|
+
0,
|
|
772
|
+
[_rCa],
|
|
773
|
+
[() => RateCardList], 1
|
|
774
|
+
];
|
|
775
|
+
exports.UseCase$ = [3, n0, _UC,
|
|
776
|
+
0,
|
|
777
|
+
[_d, _dN, _va],
|
|
778
|
+
[0, 0, 0], 3
|
|
779
|
+
];
|
|
780
|
+
exports.UseCaseEntry$ = [3, n0, _UCE,
|
|
781
|
+
0,
|
|
782
|
+
[_uCs],
|
|
783
|
+
[() => exports.UseCase$], 1
|
|
784
|
+
];
|
|
785
|
+
exports.ValidityTerm$ = [3, n0, _VT,
|
|
786
|
+
0,
|
|
787
|
+
[_i, _t, _aD, _aED, _aSD],
|
|
788
|
+
[0, 0, 0, 4, 4], 2
|
|
789
|
+
];
|
|
790
|
+
exports.VariablePaymentTerm$ = [3, n0, _VPT,
|
|
791
|
+
0,
|
|
792
|
+
[_i, _t, _cC, _mTCA],
|
|
793
|
+
[0, 0, 0, 0], 4
|
|
794
|
+
];
|
|
795
|
+
var AmazonMachineImageOperatingSystemList = [1, n0, _AMIOSL,
|
|
796
|
+
0, () => exports.AmazonMachineImageOperatingSystem$
|
|
797
|
+
];
|
|
798
|
+
var AwsSupportedServiceList = [1, n0, _ASSL,
|
|
799
|
+
0, () => exports.AwsSupportedService$
|
|
800
|
+
];
|
|
801
|
+
var CategoryList = [1, n0, _CL,
|
|
802
|
+
0, () => exports.Category$
|
|
803
|
+
];
|
|
804
|
+
var ConfigurableUpfrontRateCardList = [1, n0, _CURCL,
|
|
805
|
+
0, () => exports.ConfigurableUpfrontRateCardItem$
|
|
806
|
+
];
|
|
807
|
+
var ContainerOperatingSystemList = [1, n0, _COSL,
|
|
808
|
+
0, () => exports.ContainerOperatingSystem$
|
|
809
|
+
];
|
|
810
|
+
var DataArtifactList = [1, n0, _DAL,
|
|
811
|
+
0, () => exports.DataArtifact$
|
|
812
|
+
];
|
|
813
|
+
var DimensionLabelList = [1, n0, _DLL,
|
|
814
|
+
0, () => exports.DimensionLabel$
|
|
815
|
+
];
|
|
816
|
+
var DocumentList = [1, n0, _DLo,
|
|
817
|
+
0, () => exports.DocumentItem$
|
|
818
|
+
];
|
|
819
|
+
var EksAddOnOperatingSystemList = [1, n0, _EAOOSL,
|
|
820
|
+
0, () => exports.EksAddOnOperatingSystem$
|
|
821
|
+
];
|
|
822
|
+
var FacetTypeList = 64 | 0;
|
|
823
|
+
var FulfillmentOptionsList = [1, n0, _FOL,
|
|
824
|
+
0, () => exports.FulfillmentOption$
|
|
825
|
+
];
|
|
826
|
+
var FulfillmentOptionSummaryList = [1, n0, _FOSL,
|
|
827
|
+
0, () => exports.FulfillmentOptionSummary$
|
|
828
|
+
];
|
|
829
|
+
var GrantList = [1, n0, _GL,
|
|
830
|
+
0, () => exports.GrantItem$
|
|
831
|
+
];
|
|
832
|
+
var HelmOperatingSystemList = [1, n0, _HOSL,
|
|
833
|
+
0, () => exports.HelmOperatingSystem$
|
|
834
|
+
];
|
|
835
|
+
var HighlightList = 64 | 0;
|
|
836
|
+
var ListingAssociatedEntityList = [1, n0, _LAEL,
|
|
837
|
+
0, () => exports.ListingAssociatedEntity$
|
|
838
|
+
];
|
|
839
|
+
var ListingBadgeList = [1, n0, _LBL,
|
|
840
|
+
0, () => exports.ListingBadge$
|
|
841
|
+
];
|
|
842
|
+
var ListingFacetList = [1, n0, _LFL,
|
|
843
|
+
0, () => exports.ListingFacet$
|
|
844
|
+
];
|
|
845
|
+
var ListingSummaryAssociatedEntityList = [1, n0, _LSAEL,
|
|
846
|
+
0, () => exports.ListingSummaryAssociatedEntity$
|
|
847
|
+
];
|
|
848
|
+
var ListingSummaryList = [1, n0, _LSL,
|
|
849
|
+
0, () => exports.ListingSummary$
|
|
850
|
+
];
|
|
851
|
+
var OfferAssociatedEntityList = [1, n0, _OAEL,
|
|
852
|
+
0, () => exports.OfferAssociatedEntity$
|
|
853
|
+
];
|
|
854
|
+
var OfferSetAssociatedEntityList = [1, n0, _OSAEL,
|
|
855
|
+
0, () => exports.OfferSetAssociatedEntity$
|
|
856
|
+
];
|
|
857
|
+
var OfferTermsList = [1, n0, _OTL,
|
|
858
|
+
0, () => exports.OfferTerm$
|
|
859
|
+
];
|
|
860
|
+
var PricingModelList = [1, n0, _PML,
|
|
861
|
+
0, () => exports.PricingModel$
|
|
862
|
+
];
|
|
863
|
+
var PricingUnitList = [1, n0, _PUL,
|
|
864
|
+
0, () => exports.PricingUnit$
|
|
865
|
+
];
|
|
866
|
+
var PromotionalMediaList = [1, n0, _PMLr,
|
|
867
|
+
0, () => exports.PromotionalMedia$
|
|
868
|
+
];
|
|
869
|
+
var PurchaseOptionAssociatedEntityList = [1, n0, _POAEL,
|
|
870
|
+
0, () => exports.PurchaseOptionAssociatedEntity$
|
|
871
|
+
];
|
|
872
|
+
var PurchaseOptionBadgeList = [1, n0, _POBL,
|
|
873
|
+
0, () => exports.PurchaseOptionBadge$
|
|
874
|
+
];
|
|
875
|
+
var PurchaseOptionFilterList = [1, n0, _POFL,
|
|
876
|
+
0, () => exports.PurchaseOptionFilter$
|
|
877
|
+
];
|
|
878
|
+
var PurchaseOptionFilterValueList = 64 | 0;
|
|
879
|
+
var PurchaseOptionSummaryList = [1, n0, _POSL,
|
|
880
|
+
0, () => exports.PurchaseOptionSummary$
|
|
881
|
+
];
|
|
882
|
+
var RateCardList = [1, n0, _RCL,
|
|
883
|
+
0, () => exports.RateCardItem$
|
|
884
|
+
];
|
|
885
|
+
var ResourceList = [1, n0, _RL,
|
|
886
|
+
0, () => exports.Resource$
|
|
887
|
+
];
|
|
888
|
+
var ReviewSourceSummaryList = [1, n0, _RSSL,
|
|
889
|
+
0, () => exports.ReviewSourceSummary$
|
|
890
|
+
];
|
|
891
|
+
var ScheduleList = [1, n0, _SL,
|
|
892
|
+
0, () => exports.ScheduleItem$
|
|
893
|
+
];
|
|
894
|
+
var SearchFilterList = [1, n0, _SFL,
|
|
895
|
+
0, () => exports.SearchFilter$
|
|
896
|
+
];
|
|
897
|
+
var SearchFilterValueList = 64 | 0;
|
|
898
|
+
var SellerEngagementList = [1, n0, _SEL,
|
|
899
|
+
0, () => exports.SellerEngagement$
|
|
900
|
+
];
|
|
901
|
+
var UsageBasedRateCardList = [1, n0, _UBRCL,
|
|
902
|
+
0, () => exports.UsageBasedRateCardItem$
|
|
903
|
+
];
|
|
904
|
+
var UseCaseList = [1, n0, _UCL,
|
|
905
|
+
0, () => exports.UseCaseEntry$
|
|
906
|
+
];
|
|
907
|
+
var TypeToFacetMap = [2, n0, _TTFM,
|
|
908
|
+
0, 0, () => ListingFacetList
|
|
909
|
+
];
|
|
910
|
+
exports.FulfillmentOption$ = [4, n0, _FO,
|
|
911
|
+
0,
|
|
912
|
+
[_aMIFO, _aFO, _cFFO, _cFO, _hFO, _eAOFO, _eIBCFO, _dEFO, _pSFO, _sFO, _sMAFO, _sMMFO],
|
|
913
|
+
[() => exports.AmazonMachineImageFulfillmentOption$, () => exports.ApiFulfillmentOption$, () => exports.CloudFormationFulfillmentOption$, () => exports.ContainerFulfillmentOption$, () => exports.HelmFulfillmentOption$, () => exports.EksAddOnFulfillmentOption$, () => exports.Ec2ImageBuilderComponentFulfillmentOption$, () => exports.DataExchangeFulfillmentOption$, () => exports.ProfessionalServicesFulfillmentOption$, () => exports.SaasFulfillmentOption$, () => exports.SageMakerAlgorithmFulfillmentOption$, () => exports.SageMakerModelFulfillmentOption$]
|
|
914
|
+
];
|
|
915
|
+
exports.OfferTerm$ = [4, n0, _OT,
|
|
916
|
+
0,
|
|
917
|
+
[_bPT, _cUPT, _fUPT, _fTPT, _lTe, _pST, _rPT, _rTe, _sTu, _uBPT, _vT, _vPT],
|
|
918
|
+
[() => exports.ByolPricingTerm$, () => exports.ConfigurableUpfrontPricingTerm$, () => exports.FixedUpfrontPricingTerm$, () => exports.FreeTrialPricingTerm$, () => exports.LegalTerm$, () => exports.PaymentScheduleTerm$, () => exports.RecurringPaymentTerm$, () => exports.RenewalTerm$, () => exports.SupportTerm$, () => exports.UsageBasedPricingTerm$, () => exports.ValidityTerm$, () => exports.VariablePaymentTerm$]
|
|
919
|
+
];
|
|
920
|
+
exports.PromotionalMedia$ = [4, n0, _PMr,
|
|
921
|
+
0,
|
|
922
|
+
[_eI, _eV],
|
|
923
|
+
[() => exports.PromotionalEmbeddedImage$, () => exports.PromotionalEmbeddedVideo$]
|
|
924
|
+
];
|
|
925
|
+
exports.GetListing$ = [9, n0, _GLe,
|
|
926
|
+
{ [_ht]: ["POST", "/2026-02-05/getListing", 200] }, () => exports.GetListingInput$, () => exports.GetListingOutput$
|
|
927
|
+
];
|
|
928
|
+
exports.GetOffer$ = [9, n0, _GO,
|
|
929
|
+
{ [_ht]: ["POST", "/2026-02-05/getOffer", 200] }, () => exports.GetOfferInput$, () => exports.GetOfferOutput$
|
|
930
|
+
];
|
|
931
|
+
exports.GetOfferSet$ = [9, n0, _GOS,
|
|
932
|
+
{ [_ht]: ["POST", "/2026-02-05/getOfferSet", 200] }, () => exports.GetOfferSetInput$, () => exports.GetOfferSetOutput$
|
|
933
|
+
];
|
|
934
|
+
exports.GetOfferTerms$ = [9, n0, _GOT,
|
|
935
|
+
{ [_ht]: ["POST", "/2026-02-05/getOfferTerms", 200] }, () => exports.GetOfferTermsInput$, () => exports.GetOfferTermsOutput$
|
|
936
|
+
];
|
|
937
|
+
exports.GetProduct$ = [9, n0, _GP,
|
|
938
|
+
{ [_ht]: ["POST", "/2026-02-05/getProduct", 200] }, () => exports.GetProductInput$, () => exports.GetProductOutput$
|
|
939
|
+
];
|
|
940
|
+
exports.ListFulfillmentOptions$ = [9, n0, _LFO,
|
|
941
|
+
{ [_ht]: ["POST", "/2026-02-05/listFulfillmentOptions", 200] }, () => exports.ListFulfillmentOptionsInput$, () => exports.ListFulfillmentOptionsOutput$
|
|
942
|
+
];
|
|
943
|
+
exports.ListPurchaseOptions$ = [9, n0, _LPO,
|
|
944
|
+
{ [_ht]: ["POST", "/2026-02-05/listPurchaseOptions", 200] }, () => exports.ListPurchaseOptionsInput$, () => exports.ListPurchaseOptionsOutput$
|
|
945
|
+
];
|
|
946
|
+
exports.SearchFacets$ = [9, n0, _SFe,
|
|
947
|
+
{ [_ht]: ["POST", "/2026-02-05/searchFacets", 200] }, () => exports.SearchFacetsInput$, () => exports.SearchFacetsOutput$
|
|
948
|
+
];
|
|
949
|
+
exports.SearchListings$ = [9, n0, _SLe,
|
|
950
|
+
{ [_ht]: ["POST", "/2026-02-05/searchListings", 200] }, () => exports.SearchListingsInput$, () => exports.SearchListingsOutput$
|
|
951
|
+
];
|