@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,9 @@
|
|
|
1
|
+
export * from "./GetListingCommand";
|
|
2
|
+
export * from "./GetOfferCommand";
|
|
3
|
+
export * from "./GetOfferSetCommand";
|
|
4
|
+
export * from "./GetOfferTermsCommand";
|
|
5
|
+
export * from "./GetProductCommand";
|
|
6
|
+
export * from "./ListFulfillmentOptionsCommand";
|
|
7
|
+
export * from "./ListPurchaseOptionsCommand";
|
|
8
|
+
export * from "./SearchFacetsCommand";
|
|
9
|
+
export * from "./SearchListingsCommand";
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
useFipsEndpoint?: boolean | undefined | Provider<boolean | undefined>;
|
|
9
|
+
endpoint?:
|
|
10
|
+
| string
|
|
11
|
+
| Provider<string>
|
|
12
|
+
| Endpoint
|
|
13
|
+
| Provider<Endpoint>
|
|
14
|
+
| EndpointV2
|
|
15
|
+
| Provider<EndpointV2>;
|
|
16
|
+
region?: string | undefined | Provider<string | undefined>;
|
|
17
|
+
}
|
|
18
|
+
export type ClientResolvedEndpointParameters = Pick<
|
|
19
|
+
ClientInputEndpointParameters,
|
|
20
|
+
Exclude<keyof ClientInputEndpointParameters, "endpoint">
|
|
21
|
+
> & {
|
|
22
|
+
defaultSigningName: string;
|
|
23
|
+
};
|
|
24
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
+
options: T & ClientInputEndpointParameters
|
|
26
|
+
) => T & ClientResolvedEndpointParameters;
|
|
27
|
+
export declare const commonParams: {
|
|
28
|
+
readonly UseFIPS: {
|
|
29
|
+
readonly type: "builtInParams";
|
|
30
|
+
readonly name: "useFipsEndpoint";
|
|
31
|
+
};
|
|
32
|
+
readonly Endpoint: {
|
|
33
|
+
readonly type: "builtInParams";
|
|
34
|
+
readonly name: "endpoint";
|
|
35
|
+
};
|
|
36
|
+
readonly Region: {
|
|
37
|
+
readonly type: "builtInParams";
|
|
38
|
+
readonly name: "region";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
42
|
+
UseFIPS?: boolean | undefined;
|
|
43
|
+
Endpoint?: string | undefined;
|
|
44
|
+
Region?: string | undefined;
|
|
45
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface MarketplaceDiscoveryExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./MarketplaceDiscoveryClient";
|
|
2
|
+
export * from "./MarketplaceDiscovery";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { MarketplaceDiscoveryExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./schemas/schemas_0";
|
|
8
|
+
export * from "./pagination";
|
|
9
|
+
export * from "./models/enums";
|
|
10
|
+
export * from "./models/errors";
|
|
11
|
+
export * from "./models/models_0";
|
|
12
|
+
export { MarketplaceDiscoveryServiceException } from "./models/MarketplaceDiscoveryServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
3
|
+
ServiceException as __ServiceException,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class MarketplaceDiscoveryServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
export declare const FulfillmentOptionType: {
|
|
2
|
+
readonly AMAZON_MACHINE_IMAGE: "AMAZON_MACHINE_IMAGE";
|
|
3
|
+
readonly API: "API";
|
|
4
|
+
readonly CLOUDFORMATION_TEMPLATE: "CLOUDFORMATION_TEMPLATE";
|
|
5
|
+
readonly CONTAINER: "CONTAINER";
|
|
6
|
+
readonly DATA_EXCHANGE: "DATA_EXCHANGE";
|
|
7
|
+
readonly EC2_IMAGE_BUILDER_COMPONENT: "EC2_IMAGE_BUILDER_COMPONENT";
|
|
8
|
+
readonly EKS_ADD_ON: "EKS_ADD_ON";
|
|
9
|
+
readonly HELM: "HELM";
|
|
10
|
+
readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
|
|
11
|
+
readonly SAAS: "SAAS";
|
|
12
|
+
readonly SAGEMAKER_ALGORITHM: "SAGEMAKER_ALGORITHM";
|
|
13
|
+
readonly SAGEMAKER_MODEL: "SAGEMAKER_MODEL";
|
|
14
|
+
};
|
|
15
|
+
export type FulfillmentOptionType =
|
|
16
|
+
(typeof FulfillmentOptionType)[keyof typeof FulfillmentOptionType];
|
|
17
|
+
export declare const ListingBadgeType: {
|
|
18
|
+
readonly AWS_FREE_TIER: "AWS_FREE_TIER";
|
|
19
|
+
readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
|
|
20
|
+
readonly FREE_TRIAL: "FREE_TRIAL";
|
|
21
|
+
readonly MULTI_PRODUCT: "MULTI_PRODUCT";
|
|
22
|
+
readonly QUICK_LAUNCH: "QUICK_LAUNCH";
|
|
23
|
+
};
|
|
24
|
+
export type ListingBadgeType =
|
|
25
|
+
(typeof ListingBadgeType)[keyof typeof ListingBadgeType];
|
|
26
|
+
export declare const PricingModelType: {
|
|
27
|
+
readonly BYOL: "BYOL";
|
|
28
|
+
readonly CONTRACT: "CONTRACT";
|
|
29
|
+
readonly FREE: "FREE";
|
|
30
|
+
readonly USAGE: "USAGE";
|
|
31
|
+
};
|
|
32
|
+
export type PricingModelType =
|
|
33
|
+
(typeof PricingModelType)[keyof typeof PricingModelType];
|
|
34
|
+
export declare const PricingUnitType: {
|
|
35
|
+
readonly BANDWIDTH: "BANDWIDTH";
|
|
36
|
+
readonly DATA: "DATA";
|
|
37
|
+
readonly HOSTS: "HOSTS";
|
|
38
|
+
readonly REQUESTS: "REQUESTS";
|
|
39
|
+
readonly TIERS: "TIERS";
|
|
40
|
+
readonly UNITS: "UNITS";
|
|
41
|
+
readonly USERS: "USERS";
|
|
42
|
+
};
|
|
43
|
+
export type PricingUnitType =
|
|
44
|
+
(typeof PricingUnitType)[keyof typeof PricingUnitType];
|
|
45
|
+
export declare const ResourceContentType: {
|
|
46
|
+
readonly EMAIL: "EMAIL";
|
|
47
|
+
readonly LINK: "LINK";
|
|
48
|
+
readonly OTHER: "OTHER";
|
|
49
|
+
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
50
|
+
};
|
|
51
|
+
export type ResourceContentType =
|
|
52
|
+
(typeof ResourceContentType)[keyof typeof ResourceContentType];
|
|
53
|
+
export declare const ResourceType: {
|
|
54
|
+
readonly MANUFACTURER_INSTRUCTIONS: "MANUFACTURER_INSTRUCTIONS";
|
|
55
|
+
readonly MANUFACTURER_SUPPORT: "MANUFACTURER_SUPPORT";
|
|
56
|
+
};
|
|
57
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
58
|
+
export declare const ReviewSourceId: {
|
|
59
|
+
readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
|
|
60
|
+
};
|
|
61
|
+
export type ReviewSourceId =
|
|
62
|
+
(typeof ReviewSourceId)[keyof typeof ReviewSourceId];
|
|
63
|
+
export declare const SellerEngagementContentType: {
|
|
64
|
+
readonly LINK: "LINK";
|
|
65
|
+
};
|
|
66
|
+
export type SellerEngagementContentType =
|
|
67
|
+
(typeof SellerEngagementContentType)[keyof typeof SellerEngagementContentType];
|
|
68
|
+
export declare const SellerEngagementType: {
|
|
69
|
+
readonly REQUEST_FOR_DEMO: "REQUEST_FOR_DEMO";
|
|
70
|
+
readonly REQUEST_FOR_PRIVATE_OFFER: "REQUEST_FOR_PRIVATE_OFFER";
|
|
71
|
+
};
|
|
72
|
+
export type SellerEngagementType =
|
|
73
|
+
(typeof SellerEngagementType)[keyof typeof SellerEngagementType];
|
|
74
|
+
export declare const ValidationExceptionReason: {
|
|
75
|
+
readonly INVALID_PAGINATION_TOKEN: "INVALID_PAGINATION_TOKEN";
|
|
76
|
+
readonly MALFORMED_REQUEST_PARAMETERS: "MALFORMED_REQUEST_PARAMETERS";
|
|
77
|
+
readonly PAGINATION_LIMIT_EXCEEDED: "PAGINATION_LIMIT_EXCEEDED";
|
|
78
|
+
};
|
|
79
|
+
export type ValidationExceptionReason =
|
|
80
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
81
|
+
export declare const PurchaseOptionBadgeType: {
|
|
82
|
+
readonly FUTURE_DATED: "FUTURE_DATED";
|
|
83
|
+
readonly PRIVATE_PRICING: "PRIVATE_PRICING";
|
|
84
|
+
readonly REPLACEMENT_OFFER: "REPLACEMENT_OFFER";
|
|
85
|
+
};
|
|
86
|
+
export type PurchaseOptionBadgeType =
|
|
87
|
+
(typeof PurchaseOptionBadgeType)[keyof typeof PurchaseOptionBadgeType];
|
|
88
|
+
export declare const TermType: {
|
|
89
|
+
readonly BYOL_PRICING_TERM: "ByolPricingTerm";
|
|
90
|
+
readonly CONFIGURABLE_UPFRONT_PRICING_TERM: "ConfigurableUpfrontPricingTerm";
|
|
91
|
+
readonly FIXED_UPFRONT_PRICING_TERM: "FixedUpfrontPricingTerm";
|
|
92
|
+
readonly FREE_TRIAL_PRICING_TERM: "FreeTrialPricingTerm";
|
|
93
|
+
readonly LEGAL_TERM: "LegalTerm";
|
|
94
|
+
readonly PAYMENT_SCHEDULE_TERM: "PaymentScheduleTerm";
|
|
95
|
+
readonly RECURRING_PAYMENT_TERM: "RecurringPaymentTerm";
|
|
96
|
+
readonly RENEWAL_TERM: "RenewalTerm";
|
|
97
|
+
readonly SUPPORT_TERM: "SupportTerm";
|
|
98
|
+
readonly USAGE_BASED_PRICING_TERM: "UsageBasedPricingTerm";
|
|
99
|
+
readonly VALIDITY_TERM: "ValidityTerm";
|
|
100
|
+
readonly VARIABLE_PAYMENT_TERM: "VariablePaymentTerm";
|
|
101
|
+
};
|
|
102
|
+
export type TermType = (typeof TermType)[keyof typeof TermType];
|
|
103
|
+
export declare const RateCardConstraintType: {
|
|
104
|
+
readonly ALLOWED: "Allowed";
|
|
105
|
+
readonly DISALLOWED: "Disallowed";
|
|
106
|
+
};
|
|
107
|
+
export type RateCardConstraintType =
|
|
108
|
+
(typeof RateCardConstraintType)[keyof typeof RateCardConstraintType];
|
|
109
|
+
export declare const DimensionLabelType: {
|
|
110
|
+
readonly REGION: "Region";
|
|
111
|
+
readonly SAGEMAKER_OPTION: "SagemakerOption";
|
|
112
|
+
};
|
|
113
|
+
export type DimensionLabelType =
|
|
114
|
+
(typeof DimensionLabelType)[keyof typeof DimensionLabelType];
|
|
115
|
+
export declare const SelectorType: {
|
|
116
|
+
readonly DURATION: "Duration";
|
|
117
|
+
};
|
|
118
|
+
export type SelectorType = (typeof SelectorType)[keyof typeof SelectorType];
|
|
119
|
+
export declare const LegalDocumentType: {
|
|
120
|
+
readonly CUSTOM_DSA: "CustomDsa";
|
|
121
|
+
readonly CUSTOM_EULA: "CustomEula";
|
|
122
|
+
readonly ENTERPRISE_EULA: "EnterpriseEula";
|
|
123
|
+
readonly STANDARD_DSA: "StandardDsa";
|
|
124
|
+
readonly STANDARD_EULA: "StandardEula";
|
|
125
|
+
};
|
|
126
|
+
export type LegalDocumentType =
|
|
127
|
+
(typeof LegalDocumentType)[keyof typeof LegalDocumentType];
|
|
128
|
+
export declare const BillingPeriodType: {
|
|
129
|
+
readonly MONTHLY: "Monthly";
|
|
130
|
+
};
|
|
131
|
+
export type BillingPeriodType =
|
|
132
|
+
(typeof BillingPeriodType)[keyof typeof BillingPeriodType];
|
|
133
|
+
export declare const DeployedOnAwsStatus: {
|
|
134
|
+
readonly DEPLOYED: "DEPLOYED";
|
|
135
|
+
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
136
|
+
readonly NOT_DEPLOYED: "NOT_DEPLOYED";
|
|
137
|
+
};
|
|
138
|
+
export type DeployedOnAwsStatus =
|
|
139
|
+
(typeof DeployedOnAwsStatus)[keyof typeof DeployedOnAwsStatus];
|
|
140
|
+
export declare const PurchaseOptionFilterType: {
|
|
141
|
+
readonly AVAILABILITY_STATUS: "AVAILABILITY_STATUS";
|
|
142
|
+
readonly PRODUCT_ID: "PRODUCT_ID";
|
|
143
|
+
readonly PURCHASE_OPTION_TYPE: "PURCHASE_OPTION_TYPE";
|
|
144
|
+
readonly SELLER_OF_RECORD_PROFILE_ID: "SELLER_OF_RECORD_PROFILE_ID";
|
|
145
|
+
readonly VISIBILITY_SCOPE: "VISIBILITY_SCOPE";
|
|
146
|
+
};
|
|
147
|
+
export type PurchaseOptionFilterType =
|
|
148
|
+
(typeof PurchaseOptionFilterType)[keyof typeof PurchaseOptionFilterType];
|
|
149
|
+
export declare const PurchaseOptionType: {
|
|
150
|
+
readonly OFFER: "OFFER";
|
|
151
|
+
readonly OFFERSET: "OFFERSET";
|
|
152
|
+
};
|
|
153
|
+
export type PurchaseOptionType =
|
|
154
|
+
(typeof PurchaseOptionType)[keyof typeof PurchaseOptionType];
|
|
155
|
+
export declare const SearchFacetType: {
|
|
156
|
+
readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
|
|
157
|
+
readonly CATEGORY: "CATEGORY";
|
|
158
|
+
readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
|
|
159
|
+
readonly FULFILLMENT_OPTION_TYPE: "FULFILLMENT_OPTION_TYPE";
|
|
160
|
+
readonly NUMBER_OF_PRODUCTS: "NUMBER_OF_PRODUCTS";
|
|
161
|
+
readonly PRICING_MODEL: "PRICING_MODEL";
|
|
162
|
+
readonly PRICING_UNIT: "PRICING_UNIT";
|
|
163
|
+
readonly PUBLISHER: "PUBLISHER";
|
|
164
|
+
};
|
|
165
|
+
export type SearchFacetType =
|
|
166
|
+
(typeof SearchFacetType)[keyof typeof SearchFacetType];
|
|
167
|
+
export declare const SearchFilterType: {
|
|
168
|
+
readonly CATEGORY: "CATEGORY";
|
|
169
|
+
readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
|
|
170
|
+
readonly FULFILLMENT_OPTION_TYPE: "FULFILLMENT_OPTION_TYPE";
|
|
171
|
+
readonly MAX_AVERAGE_CUSTOMER_RATING: "MAX_AVERAGE_CUSTOMER_RATING";
|
|
172
|
+
readonly MIN_AVERAGE_CUSTOMER_RATING: "MIN_AVERAGE_CUSTOMER_RATING";
|
|
173
|
+
readonly NUMBER_OF_PRODUCTS: "NUMBER_OF_PRODUCTS";
|
|
174
|
+
readonly PRICING_MODEL: "PRICING_MODEL";
|
|
175
|
+
readonly PRICING_UNIT: "PRICING_UNIT";
|
|
176
|
+
readonly PUBLISHER: "PUBLISHER";
|
|
177
|
+
};
|
|
178
|
+
export type SearchFilterType =
|
|
179
|
+
(typeof SearchFilterType)[keyof typeof SearchFilterType];
|
|
180
|
+
export declare const SearchListingsSortBy: {
|
|
181
|
+
readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
|
|
182
|
+
readonly RELEVANCE: "RELEVANCE";
|
|
183
|
+
};
|
|
184
|
+
export type SearchListingsSortBy =
|
|
185
|
+
(typeof SearchListingsSortBy)[keyof typeof SearchListingsSortBy];
|
|
186
|
+
export declare const SearchListingsSortOrder: {
|
|
187
|
+
readonly ASCENDING: "ASCENDING";
|
|
188
|
+
readonly DESCENDING: "DESCENDING";
|
|
189
|
+
};
|
|
190
|
+
export type SearchListingsSortOrder =
|
|
191
|
+
(typeof SearchListingsSortOrder)[keyof typeof SearchListingsSortOrder];
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { ValidationExceptionReason } from "./enums";
|
|
3
|
+
import { MarketplaceDiscoveryServiceException as __BaseException } from "./MarketplaceDiscoveryServiceException";
|
|
4
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
5
|
+
readonly name: "AccessDeniedException";
|
|
6
|
+
readonly $fault: "client";
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class InternalServerException extends __BaseException {
|
|
12
|
+
readonly name: "InternalServerException";
|
|
13
|
+
readonly $fault: "server";
|
|
14
|
+
constructor(
|
|
15
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
+
);
|
|
17
|
+
}
|
|
18
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
|
+
readonly name: "ResourceNotFoundException";
|
|
20
|
+
readonly $fault: "client";
|
|
21
|
+
constructor(
|
|
22
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
+
);
|
|
24
|
+
}
|
|
25
|
+
export declare class ThrottlingException extends __BaseException {
|
|
26
|
+
readonly name: "ThrottlingException";
|
|
27
|
+
readonly $fault: "client";
|
|
28
|
+
constructor(
|
|
29
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
32
|
+
export declare class ValidationException extends __BaseException {
|
|
33
|
+
readonly name: "ValidationException";
|
|
34
|
+
readonly $fault: "client";
|
|
35
|
+
reason?: ValidationExceptionReason | undefined;
|
|
36
|
+
constructor(
|
|
37
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
38
|
+
);
|
|
39
|
+
}
|