@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.
Files changed (122) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +244 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +46 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +463 -0
  7. package/dist-cjs/models/MarketplaceDiscoveryServiceException.js +12 -0
  8. package/dist-cjs/models/errors.js +71 -0
  9. package/dist-cjs/runtimeConfig.browser.js +38 -0
  10. package/dist-cjs/runtimeConfig.js +54 -0
  11. package/dist-cjs/runtimeConfig.native.js +15 -0
  12. package/dist-cjs/runtimeConfig.shared.js +43 -0
  13. package/dist-cjs/schemas/schemas_0.js +951 -0
  14. package/dist-es/MarketplaceDiscovery.js +37 -0
  15. package/dist-es/MarketplaceDiscoveryClient.js +50 -0
  16. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  17. package/dist-es/auth/httpAuthSchemeProvider.js +40 -0
  18. package/dist-es/commands/GetListingCommand.js +16 -0
  19. package/dist-es/commands/GetOfferCommand.js +16 -0
  20. package/dist-es/commands/GetOfferSetCommand.js +16 -0
  21. package/dist-es/commands/GetOfferTermsCommand.js +16 -0
  22. package/dist-es/commands/GetProductCommand.js +16 -0
  23. package/dist-es/commands/ListFulfillmentOptionsCommand.js +16 -0
  24. package/dist-es/commands/ListPurchaseOptionsCommand.js +16 -0
  25. package/dist-es/commands/SearchFacetsCommand.js +16 -0
  26. package/dist-es/commands/SearchListingsCommand.js +16 -0
  27. package/dist-es/commands/index.js +9 -0
  28. package/dist-es/endpoint/EndpointParameters.js +11 -0
  29. package/dist-es/endpoint/endpointResolver.js +14 -0
  30. package/dist-es/endpoint/ruleset.js +4 -0
  31. package/dist-es/extensionConfiguration.js +1 -0
  32. package/dist-es/index.js +9 -0
  33. package/dist-es/models/MarketplaceDiscoveryServiceException.js +8 -0
  34. package/dist-es/models/enums.js +146 -0
  35. package/dist-es/models/errors.js +63 -0
  36. package/dist-es/models/models_0.js +1 -0
  37. package/dist-es/pagination/GetOfferTermsPaginator.js +4 -0
  38. package/dist-es/pagination/Interfaces.js +1 -0
  39. package/dist-es/pagination/ListFulfillmentOptionsPaginator.js +4 -0
  40. package/dist-es/pagination/ListPurchaseOptionsPaginator.js +4 -0
  41. package/dist-es/pagination/SearchFacetsPaginator.js +4 -0
  42. package/dist-es/pagination/SearchListingsPaginator.js +4 -0
  43. package/dist-es/pagination/index.js +6 -0
  44. package/dist-es/runtimeConfig.browser.js +33 -0
  45. package/dist-es/runtimeConfig.js +49 -0
  46. package/dist-es/runtimeConfig.native.js +11 -0
  47. package/dist-es/runtimeConfig.shared.js +39 -0
  48. package/dist-es/runtimeExtensions.js +9 -0
  49. package/dist-es/schemas/schemas_0.js +946 -0
  50. package/dist-types/MarketplaceDiscovery.d.ts +111 -0
  51. package/dist-types/MarketplaceDiscoveryClient.d.ts +196 -0
  52. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  53. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  54. package/dist-types/commands/GetListingCommand.d.ts +579 -0
  55. package/dist-types/commands/GetOfferCommand.d.ts +314 -0
  56. package/dist-types/commands/GetOfferSetCommand.d.ts +192 -0
  57. package/dist-types/commands/GetOfferTermsCommand.d.ts +690 -0
  58. package/dist-types/commands/GetProductCommand.d.ts +379 -0
  59. package/dist-types/commands/ListFulfillmentOptionsCommand.d.ts +668 -0
  60. package/dist-types/commands/ListPurchaseOptionsCommand.d.ts +285 -0
  61. package/dist-types/commands/SearchFacetsCommand.d.ts +241 -0
  62. package/dist-types/commands/SearchListingsCommand.d.ts +263 -0
  63. package/dist-types/commands/index.d.ts +9 -0
  64. package/dist-types/endpoint/EndpointParameters.d.ts +44 -0
  65. package/dist-types/endpoint/endpointResolver.d.ts +8 -0
  66. package/dist-types/endpoint/ruleset.d.ts +2 -0
  67. package/dist-types/extensionConfiguration.d.ts +9 -0
  68. package/dist-types/index.d.ts +17 -0
  69. package/dist-types/models/MarketplaceDiscoveryServiceException.d.ts +14 -0
  70. package/dist-types/models/enums.d.ts +338 -0
  71. package/dist-types/models/errors.d.ts +68 -0
  72. package/dist-types/models/models_0.d.ts +2881 -0
  73. package/dist-types/pagination/GetOfferTermsPaginator.d.ts +7 -0
  74. package/dist-types/pagination/Interfaces.d.ts +8 -0
  75. package/dist-types/pagination/ListFulfillmentOptionsPaginator.d.ts +7 -0
  76. package/dist-types/pagination/ListPurchaseOptionsPaginator.d.ts +7 -0
  77. package/dist-types/pagination/SearchFacetsPaginator.d.ts +7 -0
  78. package/dist-types/pagination/SearchListingsPaginator.d.ts +7 -0
  79. package/dist-types/pagination/index.d.ts +6 -0
  80. package/dist-types/runtimeConfig.browser.d.ts +55 -0
  81. package/dist-types/runtimeConfig.d.ts +55 -0
  82. package/dist-types/runtimeConfig.native.d.ts +54 -0
  83. package/dist-types/runtimeConfig.shared.d.ts +27 -0
  84. package/dist-types/runtimeExtensions.d.ts +17 -0
  85. package/dist-types/schemas/schemas_0.d.ts +114 -0
  86. package/dist-types/ts3.4/MarketplaceDiscovery.d.ts +202 -0
  87. package/dist-types/ts3.4/MarketplaceDiscoveryClient.d.ts +175 -0
  88. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  89. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  90. package/dist-types/ts3.4/commands/GetListingCommand.d.ts +47 -0
  91. package/dist-types/ts3.4/commands/GetOfferCommand.d.ts +47 -0
  92. package/dist-types/ts3.4/commands/GetOfferSetCommand.d.ts +47 -0
  93. package/dist-types/ts3.4/commands/GetOfferTermsCommand.d.ts +47 -0
  94. package/dist-types/ts3.4/commands/GetProductCommand.d.ts +47 -0
  95. package/dist-types/ts3.4/commands/ListFulfillmentOptionsCommand.d.ts +51 -0
  96. package/dist-types/ts3.4/commands/ListPurchaseOptionsCommand.d.ts +51 -0
  97. package/dist-types/ts3.4/commands/SearchFacetsCommand.d.ts +47 -0
  98. package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +47 -0
  99. package/dist-types/ts3.4/commands/index.d.ts +9 -0
  100. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  101. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  102. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  103. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  104. package/dist-types/ts3.4/index.d.ts +12 -0
  105. package/dist-types/ts3.4/models/MarketplaceDiscoveryServiceException.d.ts +9 -0
  106. package/dist-types/ts3.4/models/enums.d.ts +191 -0
  107. package/dist-types/ts3.4/models/errors.d.ts +39 -0
  108. package/dist-types/ts3.4/models/models_0.d.ts +1048 -0
  109. package/dist-types/ts3.4/pagination/GetOfferTermsPaginator.d.ts +11 -0
  110. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  111. package/dist-types/ts3.4/pagination/ListFulfillmentOptionsPaginator.d.ts +11 -0
  112. package/dist-types/ts3.4/pagination/ListPurchaseOptionsPaginator.d.ts +11 -0
  113. package/dist-types/ts3.4/pagination/SearchFacetsPaginator.d.ts +11 -0
  114. package/dist-types/ts3.4/pagination/SearchListingsPaginator.d.ts +11 -0
  115. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  116. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +102 -0
  117. package/dist-types/ts3.4/runtimeConfig.d.ts +97 -0
  118. package/dist-types/ts3.4/runtimeConfig.native.d.ts +106 -0
  119. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +32 -0
  120. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  121. package/dist-types/ts3.4/schemas/schemas_0.d.ts +114 -0
  122. package/package.json +100 -0
@@ -0,0 +1,338 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const FulfillmentOptionType: {
6
+ readonly AMAZON_MACHINE_IMAGE: "AMAZON_MACHINE_IMAGE";
7
+ readonly API: "API";
8
+ readonly CLOUDFORMATION_TEMPLATE: "CLOUDFORMATION_TEMPLATE";
9
+ readonly CONTAINER: "CONTAINER";
10
+ readonly DATA_EXCHANGE: "DATA_EXCHANGE";
11
+ readonly EC2_IMAGE_BUILDER_COMPONENT: "EC2_IMAGE_BUILDER_COMPONENT";
12
+ readonly EKS_ADD_ON: "EKS_ADD_ON";
13
+ readonly HELM: "HELM";
14
+ readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
15
+ readonly SAAS: "SAAS";
16
+ readonly SAGEMAKER_ALGORITHM: "SAGEMAKER_ALGORITHM";
17
+ readonly SAGEMAKER_MODEL: "SAGEMAKER_MODEL";
18
+ };
19
+ /**
20
+ * @public
21
+ */
22
+ export type FulfillmentOptionType = (typeof FulfillmentOptionType)[keyof typeof FulfillmentOptionType];
23
+ /**
24
+ * @public
25
+ * @enum
26
+ */
27
+ export declare const ListingBadgeType: {
28
+ readonly AWS_FREE_TIER: "AWS_FREE_TIER";
29
+ readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
30
+ readonly FREE_TRIAL: "FREE_TRIAL";
31
+ readonly MULTI_PRODUCT: "MULTI_PRODUCT";
32
+ readonly QUICK_LAUNCH: "QUICK_LAUNCH";
33
+ };
34
+ /**
35
+ * @public
36
+ */
37
+ export type ListingBadgeType = (typeof ListingBadgeType)[keyof typeof ListingBadgeType];
38
+ /**
39
+ * @public
40
+ * @enum
41
+ */
42
+ export declare const PricingModelType: {
43
+ readonly BYOL: "BYOL";
44
+ readonly CONTRACT: "CONTRACT";
45
+ readonly FREE: "FREE";
46
+ readonly USAGE: "USAGE";
47
+ };
48
+ /**
49
+ * @public
50
+ */
51
+ export type PricingModelType = (typeof PricingModelType)[keyof typeof PricingModelType];
52
+ /**
53
+ * @public
54
+ * @enum
55
+ */
56
+ export declare const PricingUnitType: {
57
+ readonly BANDWIDTH: "BANDWIDTH";
58
+ readonly DATA: "DATA";
59
+ readonly HOSTS: "HOSTS";
60
+ readonly REQUESTS: "REQUESTS";
61
+ readonly TIERS: "TIERS";
62
+ readonly UNITS: "UNITS";
63
+ readonly USERS: "USERS";
64
+ };
65
+ /**
66
+ * @public
67
+ */
68
+ export type PricingUnitType = (typeof PricingUnitType)[keyof typeof PricingUnitType];
69
+ /**
70
+ * @public
71
+ * @enum
72
+ */
73
+ export declare const ResourceContentType: {
74
+ readonly EMAIL: "EMAIL";
75
+ readonly LINK: "LINK";
76
+ readonly OTHER: "OTHER";
77
+ readonly PHONE_NUMBER: "PHONE_NUMBER";
78
+ };
79
+ /**
80
+ * @public
81
+ */
82
+ export type ResourceContentType = (typeof ResourceContentType)[keyof typeof ResourceContentType];
83
+ /**
84
+ * @public
85
+ * @enum
86
+ */
87
+ export declare const ResourceType: {
88
+ readonly MANUFACTURER_INSTRUCTIONS: "MANUFACTURER_INSTRUCTIONS";
89
+ readonly MANUFACTURER_SUPPORT: "MANUFACTURER_SUPPORT";
90
+ };
91
+ /**
92
+ * @public
93
+ */
94
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
95
+ /**
96
+ * @public
97
+ * @enum
98
+ */
99
+ export declare const ReviewSourceId: {
100
+ readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
101
+ };
102
+ /**
103
+ * @public
104
+ */
105
+ export type ReviewSourceId = (typeof ReviewSourceId)[keyof typeof ReviewSourceId];
106
+ /**
107
+ * @public
108
+ * @enum
109
+ */
110
+ export declare const SellerEngagementContentType: {
111
+ readonly LINK: "LINK";
112
+ };
113
+ /**
114
+ * @public
115
+ */
116
+ export type SellerEngagementContentType = (typeof SellerEngagementContentType)[keyof typeof SellerEngagementContentType];
117
+ /**
118
+ * @public
119
+ * @enum
120
+ */
121
+ export declare const SellerEngagementType: {
122
+ readonly REQUEST_FOR_DEMO: "REQUEST_FOR_DEMO";
123
+ readonly REQUEST_FOR_PRIVATE_OFFER: "REQUEST_FOR_PRIVATE_OFFER";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type SellerEngagementType = (typeof SellerEngagementType)[keyof typeof SellerEngagementType];
129
+ /**
130
+ * @public
131
+ * @enum
132
+ */
133
+ export declare const ValidationExceptionReason: {
134
+ readonly INVALID_PAGINATION_TOKEN: "INVALID_PAGINATION_TOKEN";
135
+ readonly MALFORMED_REQUEST_PARAMETERS: "MALFORMED_REQUEST_PARAMETERS";
136
+ readonly PAGINATION_LIMIT_EXCEEDED: "PAGINATION_LIMIT_EXCEEDED";
137
+ };
138
+ /**
139
+ * @public
140
+ */
141
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
142
+ /**
143
+ * @public
144
+ * @enum
145
+ */
146
+ export declare const PurchaseOptionBadgeType: {
147
+ readonly FUTURE_DATED: "FUTURE_DATED";
148
+ readonly PRIVATE_PRICING: "PRIVATE_PRICING";
149
+ readonly REPLACEMENT_OFFER: "REPLACEMENT_OFFER";
150
+ };
151
+ /**
152
+ * @public
153
+ */
154
+ export type PurchaseOptionBadgeType = (typeof PurchaseOptionBadgeType)[keyof typeof PurchaseOptionBadgeType];
155
+ /**
156
+ * @public
157
+ * @enum
158
+ */
159
+ export declare const TermType: {
160
+ readonly BYOL_PRICING_TERM: "ByolPricingTerm";
161
+ readonly CONFIGURABLE_UPFRONT_PRICING_TERM: "ConfigurableUpfrontPricingTerm";
162
+ readonly FIXED_UPFRONT_PRICING_TERM: "FixedUpfrontPricingTerm";
163
+ readonly FREE_TRIAL_PRICING_TERM: "FreeTrialPricingTerm";
164
+ readonly LEGAL_TERM: "LegalTerm";
165
+ readonly PAYMENT_SCHEDULE_TERM: "PaymentScheduleTerm";
166
+ readonly RECURRING_PAYMENT_TERM: "RecurringPaymentTerm";
167
+ readonly RENEWAL_TERM: "RenewalTerm";
168
+ readonly SUPPORT_TERM: "SupportTerm";
169
+ readonly USAGE_BASED_PRICING_TERM: "UsageBasedPricingTerm";
170
+ readonly VALIDITY_TERM: "ValidityTerm";
171
+ readonly VARIABLE_PAYMENT_TERM: "VariablePaymentTerm";
172
+ };
173
+ /**
174
+ * @public
175
+ */
176
+ export type TermType = (typeof TermType)[keyof typeof TermType];
177
+ /**
178
+ * @public
179
+ * @enum
180
+ */
181
+ export declare const RateCardConstraintType: {
182
+ readonly ALLOWED: "Allowed";
183
+ readonly DISALLOWED: "Disallowed";
184
+ };
185
+ /**
186
+ * @public
187
+ */
188
+ export type RateCardConstraintType = (typeof RateCardConstraintType)[keyof typeof RateCardConstraintType];
189
+ /**
190
+ * @public
191
+ * @enum
192
+ */
193
+ export declare const DimensionLabelType: {
194
+ readonly REGION: "Region";
195
+ readonly SAGEMAKER_OPTION: "SagemakerOption";
196
+ };
197
+ /**
198
+ * @public
199
+ */
200
+ export type DimensionLabelType = (typeof DimensionLabelType)[keyof typeof DimensionLabelType];
201
+ /**
202
+ * @public
203
+ * @enum
204
+ */
205
+ export declare const SelectorType: {
206
+ readonly DURATION: "Duration";
207
+ };
208
+ /**
209
+ * @public
210
+ */
211
+ export type SelectorType = (typeof SelectorType)[keyof typeof SelectorType];
212
+ /**
213
+ * @public
214
+ * @enum
215
+ */
216
+ export declare const LegalDocumentType: {
217
+ readonly CUSTOM_DSA: "CustomDsa";
218
+ readonly CUSTOM_EULA: "CustomEula";
219
+ readonly ENTERPRISE_EULA: "EnterpriseEula";
220
+ readonly STANDARD_DSA: "StandardDsa";
221
+ readonly STANDARD_EULA: "StandardEula";
222
+ };
223
+ /**
224
+ * @public
225
+ */
226
+ export type LegalDocumentType = (typeof LegalDocumentType)[keyof typeof LegalDocumentType];
227
+ /**
228
+ * @public
229
+ * @enum
230
+ */
231
+ export declare const BillingPeriodType: {
232
+ readonly MONTHLY: "Monthly";
233
+ };
234
+ /**
235
+ * @public
236
+ */
237
+ export type BillingPeriodType = (typeof BillingPeriodType)[keyof typeof BillingPeriodType];
238
+ /**
239
+ * @public
240
+ * @enum
241
+ */
242
+ export declare const DeployedOnAwsStatus: {
243
+ readonly DEPLOYED: "DEPLOYED";
244
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
245
+ readonly NOT_DEPLOYED: "NOT_DEPLOYED";
246
+ };
247
+ /**
248
+ * @public
249
+ */
250
+ export type DeployedOnAwsStatus = (typeof DeployedOnAwsStatus)[keyof typeof DeployedOnAwsStatus];
251
+ /**
252
+ * @public
253
+ * @enum
254
+ */
255
+ export declare const PurchaseOptionFilterType: {
256
+ readonly AVAILABILITY_STATUS: "AVAILABILITY_STATUS";
257
+ readonly PRODUCT_ID: "PRODUCT_ID";
258
+ readonly PURCHASE_OPTION_TYPE: "PURCHASE_OPTION_TYPE";
259
+ readonly SELLER_OF_RECORD_PROFILE_ID: "SELLER_OF_RECORD_PROFILE_ID";
260
+ readonly VISIBILITY_SCOPE: "VISIBILITY_SCOPE";
261
+ };
262
+ /**
263
+ * @public
264
+ */
265
+ export type PurchaseOptionFilterType = (typeof PurchaseOptionFilterType)[keyof typeof PurchaseOptionFilterType];
266
+ /**
267
+ * @public
268
+ * @enum
269
+ */
270
+ export declare const PurchaseOptionType: {
271
+ readonly OFFER: "OFFER";
272
+ readonly OFFERSET: "OFFERSET";
273
+ };
274
+ /**
275
+ * @public
276
+ */
277
+ export type PurchaseOptionType = (typeof PurchaseOptionType)[keyof typeof PurchaseOptionType];
278
+ /**
279
+ * @public
280
+ * @enum
281
+ */
282
+ export declare const SearchFacetType: {
283
+ readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
284
+ readonly CATEGORY: "CATEGORY";
285
+ readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
286
+ readonly FULFILLMENT_OPTION_TYPE: "FULFILLMENT_OPTION_TYPE";
287
+ readonly NUMBER_OF_PRODUCTS: "NUMBER_OF_PRODUCTS";
288
+ readonly PRICING_MODEL: "PRICING_MODEL";
289
+ readonly PRICING_UNIT: "PRICING_UNIT";
290
+ readonly PUBLISHER: "PUBLISHER";
291
+ };
292
+ /**
293
+ * @public
294
+ */
295
+ export type SearchFacetType = (typeof SearchFacetType)[keyof typeof SearchFacetType];
296
+ /**
297
+ * @public
298
+ * @enum
299
+ */
300
+ export declare const SearchFilterType: {
301
+ readonly CATEGORY: "CATEGORY";
302
+ readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
303
+ readonly FULFILLMENT_OPTION_TYPE: "FULFILLMENT_OPTION_TYPE";
304
+ readonly MAX_AVERAGE_CUSTOMER_RATING: "MAX_AVERAGE_CUSTOMER_RATING";
305
+ readonly MIN_AVERAGE_CUSTOMER_RATING: "MIN_AVERAGE_CUSTOMER_RATING";
306
+ readonly NUMBER_OF_PRODUCTS: "NUMBER_OF_PRODUCTS";
307
+ readonly PRICING_MODEL: "PRICING_MODEL";
308
+ readonly PRICING_UNIT: "PRICING_UNIT";
309
+ readonly PUBLISHER: "PUBLISHER";
310
+ };
311
+ /**
312
+ * @public
313
+ */
314
+ export type SearchFilterType = (typeof SearchFilterType)[keyof typeof SearchFilterType];
315
+ /**
316
+ * @public
317
+ * @enum
318
+ */
319
+ export declare const SearchListingsSortBy: {
320
+ readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
321
+ readonly RELEVANCE: "RELEVANCE";
322
+ };
323
+ /**
324
+ * @public
325
+ */
326
+ export type SearchListingsSortBy = (typeof SearchListingsSortBy)[keyof typeof SearchListingsSortBy];
327
+ /**
328
+ * @public
329
+ * @enum
330
+ */
331
+ export declare const SearchListingsSortOrder: {
332
+ readonly ASCENDING: "ASCENDING";
333
+ readonly DESCENDING: "DESCENDING";
334
+ };
335
+ /**
336
+ * @public
337
+ */
338
+ export type SearchListingsSortOrder = (typeof SearchListingsSortOrder)[keyof typeof SearchListingsSortOrder];
@@ -0,0 +1,68 @@
1
+ import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import type { ValidationExceptionReason } from "./enums";
3
+ import { MarketplaceDiscoveryServiceException as __BaseException } from "./MarketplaceDiscoveryServiceException";
4
+ /**
5
+ * <p>You don't have sufficient access to perform this action.</p>
6
+ * @public
7
+ */
8
+ export declare class AccessDeniedException extends __BaseException {
9
+ readonly name: "AccessDeniedException";
10
+ readonly $fault: "client";
11
+ /**
12
+ * @internal
13
+ */
14
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
+ }
16
+ /**
17
+ * <p>Unexpected error during processing of the request.</p>
18
+ * @public
19
+ */
20
+ export declare class InternalServerException extends __BaseException {
21
+ readonly name: "InternalServerException";
22
+ readonly $fault: "server";
23
+ /**
24
+ * @internal
25
+ */
26
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
27
+ }
28
+ /**
29
+ * <p>The specified resource doesn't exist.</p>
30
+ * @public
31
+ */
32
+ export declare class ResourceNotFoundException extends __BaseException {
33
+ readonly name: "ResourceNotFoundException";
34
+ readonly $fault: "client";
35
+ /**
36
+ * @internal
37
+ */
38
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
39
+ }
40
+ /**
41
+ * <p>The request was denied due to request throttling.</p>
42
+ * @public
43
+ */
44
+ export declare class ThrottlingException extends __BaseException {
45
+ readonly name: "ThrottlingException";
46
+ readonly $fault: "client";
47
+ /**
48
+ * @internal
49
+ */
50
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
51
+ }
52
+ /**
53
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
54
+ * @public
55
+ */
56
+ export declare class ValidationException extends __BaseException {
57
+ readonly name: "ValidationException";
58
+ readonly $fault: "client";
59
+ /**
60
+ * <p>The reason that the input fails to satisfy the constraints specified by the service.</p>
61
+ * @public
62
+ */
63
+ reason?: ValidationExceptionReason | undefined;
64
+ /**
65
+ * @internal
66
+ */
67
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
68
+ }