@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,379 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MarketplaceDiscoveryClient";
|
|
4
|
+
import type { GetProductInput, GetProductOutput } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetProductCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetProductCommandInput extends GetProductInput {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetProductCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetProductCommandOutput extends GetProductOutput, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetProductCommand_base: {
|
|
25
|
+
new (input: GetProductCommandInput): import("@smithy/smithy-client").CommandImpl<GetProductCommandInput, GetProductCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetProductCommandInput): import("@smithy/smithy-client").CommandImpl<GetProductCommandInput, GetProductCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Provides details about a product, such as descriptions, highlights, categories, fulfillment option summaries, promotional media, and seller engagement options.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { MarketplaceDiscoveryClient, GetProductCommand } from "@aws-sdk/client-marketplace-discovery"; // ES Modules import
|
|
35
|
+
* // const { MarketplaceDiscoveryClient, GetProductCommand } = require("@aws-sdk/client-marketplace-discovery"); // CommonJS import
|
|
36
|
+
* // import type { MarketplaceDiscoveryClientConfig } from "@aws-sdk/client-marketplace-discovery";
|
|
37
|
+
* const config = {}; // type is MarketplaceDiscoveryClientConfig
|
|
38
|
+
* const client = new MarketplaceDiscoveryClient(config);
|
|
39
|
+
* const input = { // GetProductInput
|
|
40
|
+
* productId: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new GetProductCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // GetProductOutput
|
|
45
|
+
* // productId: "STRING_VALUE", // required
|
|
46
|
+
* // catalog: "STRING_VALUE", // required
|
|
47
|
+
* // productName: "STRING_VALUE", // required
|
|
48
|
+
* // deployedOnAws: "DEPLOYED" || "NOT_DEPLOYED" || "NOT_APPLICABLE", // required
|
|
49
|
+
* // shortDescription: "STRING_VALUE", // required
|
|
50
|
+
* // longDescription: "STRING_VALUE", // required
|
|
51
|
+
* // manufacturer: { // SellerInformation
|
|
52
|
+
* // sellerProfileId: "STRING_VALUE", // required
|
|
53
|
+
* // displayName: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // logoThumbnailUrl: "STRING_VALUE", // required
|
|
56
|
+
* // fulfillmentOptionSummaries: [ // FulfillmentOptionSummaryList // required
|
|
57
|
+
* // { // FulfillmentOptionSummary
|
|
58
|
+
* // fulfillmentOptionType: "AMAZON_MACHINE_IMAGE" || "API" || "CLOUDFORMATION_TEMPLATE" || "CONTAINER" || "HELM" || "EKS_ADD_ON" || "EC2_IMAGE_BUILDER_COMPONENT" || "DATA_EXCHANGE" || "PROFESSIONAL_SERVICES" || "SAAS" || "SAGEMAKER_ALGORITHM" || "SAGEMAKER_MODEL", // required
|
|
59
|
+
* // displayName: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // categories: [ // CategoryList // required
|
|
63
|
+
* // { // Category
|
|
64
|
+
* // categoryId: "STRING_VALUE", // required
|
|
65
|
+
* // displayName: "STRING_VALUE", // required
|
|
66
|
+
* // },
|
|
67
|
+
* // ],
|
|
68
|
+
* // highlights: [ // HighlightList // required
|
|
69
|
+
* // "STRING_VALUE",
|
|
70
|
+
* // ],
|
|
71
|
+
* // promotionalMedia: [ // PromotionalMediaList // required
|
|
72
|
+
* // { // PromotionalMedia Union: only one key present
|
|
73
|
+
* // embeddedImage: { // PromotionalEmbeddedImage
|
|
74
|
+
* // title: "STRING_VALUE", // required
|
|
75
|
+
* // url: "STRING_VALUE", // required
|
|
76
|
+
* // description: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // embeddedVideo: { // PromotionalEmbeddedVideo
|
|
79
|
+
* // title: "STRING_VALUE", // required
|
|
80
|
+
* // url: "STRING_VALUE", // required
|
|
81
|
+
* // preview: "STRING_VALUE", // required
|
|
82
|
+
* // thumbnail: "STRING_VALUE", // required
|
|
83
|
+
* // description: "STRING_VALUE",
|
|
84
|
+
* // },
|
|
85
|
+
* // },
|
|
86
|
+
* // ],
|
|
87
|
+
* // resources: [ // ResourceList // required
|
|
88
|
+
* // { // Resource
|
|
89
|
+
* // resourceType: "MANUFACTURER_SUPPORT" || "MANUFACTURER_INSTRUCTIONS", // required
|
|
90
|
+
* // contentType: "EMAIL" || "PHONE_NUMBER" || "LINK" || "OTHER", // required
|
|
91
|
+
* // value: "STRING_VALUE", // required
|
|
92
|
+
* // displayName: "STRING_VALUE",
|
|
93
|
+
* // },
|
|
94
|
+
* // ],
|
|
95
|
+
* // sellerEngagements: [ // SellerEngagementList // required
|
|
96
|
+
* // { // SellerEngagement
|
|
97
|
+
* // engagementType: "REQUEST_FOR_PRIVATE_OFFER" || "REQUEST_FOR_DEMO", // required
|
|
98
|
+
* // contentType: "LINK", // required
|
|
99
|
+
* // value: "STRING_VALUE", // required
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // };
|
|
103
|
+
*
|
|
104
|
+
* ```
|
|
105
|
+
*
|
|
106
|
+
* @param GetProductCommandInput - {@link GetProductCommandInput}
|
|
107
|
+
* @returns {@link GetProductCommandOutput}
|
|
108
|
+
* @see {@link GetProductCommandInput} for command's `input` shape.
|
|
109
|
+
* @see {@link GetProductCommandOutput} for command's `response` shape.
|
|
110
|
+
* @see {@link MarketplaceDiscoveryClientResolvedConfig | config} for MarketplaceDiscoveryClient's `config` shape.
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
113
|
+
* <p>The specified resource doesn't exist.</p>
|
|
114
|
+
*
|
|
115
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
116
|
+
* <p>You don't have sufficient access to perform this action.</p>
|
|
117
|
+
*
|
|
118
|
+
* @throws {@link InternalServerException} (server fault)
|
|
119
|
+
* <p>Unexpected error during processing of the request.</p>
|
|
120
|
+
*
|
|
121
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
122
|
+
* <p>The request was denied due to request throttling.</p>
|
|
123
|
+
*
|
|
124
|
+
* @throws {@link ValidationException} (client fault)
|
|
125
|
+
* <p>The input fails to satisfy the constraints specified by the service.</p>
|
|
126
|
+
*
|
|
127
|
+
* @throws {@link MarketplaceDiscoveryServiceException}
|
|
128
|
+
* <p>Base exception class for all service exceptions from MarketplaceDiscovery service.</p>
|
|
129
|
+
*
|
|
130
|
+
*
|
|
131
|
+
* @example GetProduct for SaaS product with DEPLOYED status
|
|
132
|
+
* ```javascript
|
|
133
|
+
* //
|
|
134
|
+
* const input = {
|
|
135
|
+
* productId: "prod-sampleSaasId"
|
|
136
|
+
* };
|
|
137
|
+
* const command = new GetProductCommand(input);
|
|
138
|
+
* const response = await client.send(command);
|
|
139
|
+
* /* response is
|
|
140
|
+
* {
|
|
141
|
+
* catalog: "AWSMarketplace",
|
|
142
|
+
* categories: [
|
|
143
|
+
* {
|
|
144
|
+
* categoryId: "0625e4fd-88dd-4dd9-9e57-4a0461f97fb4",
|
|
145
|
+
* displayName: "Security"
|
|
146
|
+
* }
|
|
147
|
+
* ],
|
|
148
|
+
* deployedOnAws: "DEPLOYED",
|
|
149
|
+
* fulfillmentOptionSummaries: [
|
|
150
|
+
* {
|
|
151
|
+
* displayName: "SaaS",
|
|
152
|
+
* fulfillmentOptionType: "SAAS"
|
|
153
|
+
* },
|
|
154
|
+
* {
|
|
155
|
+
* displayName: "API",
|
|
156
|
+
* fulfillmentOptionType: "API"
|
|
157
|
+
* },
|
|
158
|
+
* {
|
|
159
|
+
* displayName: "Data Exchange",
|
|
160
|
+
* fulfillmentOptionType: "DATA_EXCHANGE"
|
|
161
|
+
* }
|
|
162
|
+
* ],
|
|
163
|
+
* highlights: [
|
|
164
|
+
* "Configured to your specs: Pre-configured environments, out-of-the-box."
|
|
165
|
+
* ],
|
|
166
|
+
* logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/07afb7c8-32f1-4851-8289-7e200d817ab1.png",
|
|
167
|
+
* longDescription: "Gitpod is a developer platform that provides on-demand, pre-configured cloud development environments (CDEs) that automatically integrate into any tool, library, or dependency required for creating software.",
|
|
168
|
+
* manufacturer: {
|
|
169
|
+
* displayName: "sample SaaS seller",
|
|
170
|
+
* sellerProfileId: "seller-sampleSaasId"
|
|
171
|
+
* },
|
|
172
|
+
* productId: "prod-sampleSaasId",
|
|
173
|
+
* productName: "sample SaaS product",
|
|
174
|
+
* promotionalMedia: [
|
|
175
|
+
* {
|
|
176
|
+
* embeddedImage: {
|
|
177
|
+
* description: "Main security dashboard showing threat analytics",
|
|
178
|
+
* title: "Dashboard Overview",
|
|
179
|
+
* url: "https://assets.example.com/images/dashboard-main.png"
|
|
180
|
+
* }
|
|
181
|
+
* }
|
|
182
|
+
* ],
|
|
183
|
+
* resources: [
|
|
184
|
+
* {
|
|
185
|
+
* contentType: "LINK",
|
|
186
|
+
* displayName: "Blog",
|
|
187
|
+
* resourceType: "MANUFACTURER_SUPPORT",
|
|
188
|
+
* value: "https://www.gitpod.io/blog"
|
|
189
|
+
* },
|
|
190
|
+
* {
|
|
191
|
+
* contentType: "EMAIL",
|
|
192
|
+
* displayName: "Email Support",
|
|
193
|
+
* resourceType: "MANUFACTURER_SUPPORT",
|
|
194
|
+
* value: "support@gitpod.io"
|
|
195
|
+
* }
|
|
196
|
+
* ],
|
|
197
|
+
* sellerEngagements: [
|
|
198
|
+
* {
|
|
199
|
+
* contentType: "LINK",
|
|
200
|
+
* engagementType: "REQUEST_FOR_DEMO",
|
|
201
|
+
* value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleSaasId"
|
|
202
|
+
* }
|
|
203
|
+
* ],
|
|
204
|
+
* shortDescription: "Gitpod provides on-demand, secure cloud development environments or CDEs."
|
|
205
|
+
* }
|
|
206
|
+
* *\/
|
|
207
|
+
* ```
|
|
208
|
+
*
|
|
209
|
+
* @example GetProduct for AMI product with NOT_DEPLOYED status
|
|
210
|
+
* ```javascript
|
|
211
|
+
* //
|
|
212
|
+
* const input = {
|
|
213
|
+
* productId: "prod-sampleAmiId"
|
|
214
|
+
* };
|
|
215
|
+
* const command = new GetProductCommand(input);
|
|
216
|
+
* const response = await client.send(command);
|
|
217
|
+
* /* response is
|
|
218
|
+
* {
|
|
219
|
+
* catalog: "AWSMarketplace",
|
|
220
|
+
* categories: [
|
|
221
|
+
* {
|
|
222
|
+
* categoryId: "security-category-001",
|
|
223
|
+
* displayName: "Security"
|
|
224
|
+
* }
|
|
225
|
+
* ],
|
|
226
|
+
* deployedOnAws: "NOT_DEPLOYED",
|
|
227
|
+
* fulfillmentOptionSummaries: [
|
|
228
|
+
* {
|
|
229
|
+
* displayName: "Amazon Machine Image",
|
|
230
|
+
* fulfillmentOptionType: "AMAZON_MACHINE_IMAGE"
|
|
231
|
+
* },
|
|
232
|
+
* {
|
|
233
|
+
* displayName: "CloudFormation Template",
|
|
234
|
+
* fulfillmentOptionType: "CLOUDFORMATION_TEMPLATE"
|
|
235
|
+
* },
|
|
236
|
+
* {
|
|
237
|
+
* displayName: "Container",
|
|
238
|
+
* fulfillmentOptionType: "CONTAINER"
|
|
239
|
+
* },
|
|
240
|
+
* {
|
|
241
|
+
* displayName: "Helm",
|
|
242
|
+
* fulfillmentOptionType: "HELM"
|
|
243
|
+
* }
|
|
244
|
+
* ],
|
|
245
|
+
* highlights: [
|
|
246
|
+
* "AES-256 encryption at rest and in transit"
|
|
247
|
+
* ],
|
|
248
|
+
* logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/securevault-logo.png",
|
|
249
|
+
* longDescription: "SecureVault Enterprise provides comprehensive data encryption, key management, and security compliance tools for organizations.",
|
|
250
|
+
* manufacturer: {
|
|
251
|
+
* displayName: "sample AMI seller",
|
|
252
|
+
* sellerProfileId: "seller-sampleAmiId"
|
|
253
|
+
* },
|
|
254
|
+
* productId: "prod-sampleAmiId",
|
|
255
|
+
* productName: "sample AMI product",
|
|
256
|
+
* promotionalMedia: [
|
|
257
|
+
* {
|
|
258
|
+
* embeddedVideo: {
|
|
259
|
+
* description: "A comprehensive overview of SecureVault features",
|
|
260
|
+
* preview: "https://assets.example.com/videos/intro-preview.jpg",
|
|
261
|
+
* thumbnail: "https://assets.example.com/videos/intro-thumb.jpg",
|
|
262
|
+
* title: "SecureVault Introduction",
|
|
263
|
+
* url: "https://assets.example.com/videos/intro.mp4"
|
|
264
|
+
* }
|
|
265
|
+
* }
|
|
266
|
+
* ],
|
|
267
|
+
* resources: [
|
|
268
|
+
* {
|
|
269
|
+
* contentType: "PHONE_NUMBER",
|
|
270
|
+
* displayName: "Phone Support",
|
|
271
|
+
* resourceType: "MANUFACTURER_SUPPORT",
|
|
272
|
+
* value: "+1-555-123-4567"
|
|
273
|
+
* },
|
|
274
|
+
* {
|
|
275
|
+
* contentType: "OTHER",
|
|
276
|
+
* displayName: "Installation Help",
|
|
277
|
+
* resourceType: "MANUFACTURER_INSTRUCTIONS",
|
|
278
|
+
* value: "Contact your account manager for installation assistance."
|
|
279
|
+
* }
|
|
280
|
+
* ],
|
|
281
|
+
* sellerEngagements: [
|
|
282
|
+
* {
|
|
283
|
+
* contentType: "LINK",
|
|
284
|
+
* engagementType: "REQUEST_FOR_PRIVATE_OFFER",
|
|
285
|
+
* value: "https://aws.amazon.com/marketplace/customer-connect/private-offer/prodview-sampleAmiId"
|
|
286
|
+
* }
|
|
287
|
+
* ],
|
|
288
|
+
* shortDescription: "Enterprise-grade data encryption and key management solution."
|
|
289
|
+
* }
|
|
290
|
+
* *\/
|
|
291
|
+
* ```
|
|
292
|
+
*
|
|
293
|
+
* @example GetProduct for professional services with NOT_APPLICABLE status
|
|
294
|
+
* ```javascript
|
|
295
|
+
* //
|
|
296
|
+
* const input = {
|
|
297
|
+
* productId: "prod-sampleProServId"
|
|
298
|
+
* };
|
|
299
|
+
* const command = new GetProductCommand(input);
|
|
300
|
+
* const response = await client.send(command);
|
|
301
|
+
* /* response is
|
|
302
|
+
* {
|
|
303
|
+
* catalog: "AWSMarketplace",
|
|
304
|
+
* categories: [
|
|
305
|
+
* {
|
|
306
|
+
* categoryId: "consulting-category-001",
|
|
307
|
+
* displayName: "Consulting"
|
|
308
|
+
* }
|
|
309
|
+
* ],
|
|
310
|
+
* deployedOnAws: "NOT_APPLICABLE",
|
|
311
|
+
* fulfillmentOptionSummaries: [
|
|
312
|
+
* {
|
|
313
|
+
* displayName: "Professional Services",
|
|
314
|
+
* fulfillmentOptionType: "PROFESSIONAL_SERVICES"
|
|
315
|
+
* },
|
|
316
|
+
* {
|
|
317
|
+
* displayName: "EKS Add-on",
|
|
318
|
+
* fulfillmentOptionType: "EKS_ADD_ON"
|
|
319
|
+
* },
|
|
320
|
+
* {
|
|
321
|
+
* displayName: "EC2 Image Builder Component",
|
|
322
|
+
* fulfillmentOptionType: "EC2_IMAGE_BUILDER_COMPONENT"
|
|
323
|
+
* },
|
|
324
|
+
* {
|
|
325
|
+
* displayName: "SageMaker Algorithm",
|
|
326
|
+
* fulfillmentOptionType: "SAGEMAKER_ALGORITHM"
|
|
327
|
+
* },
|
|
328
|
+
* {
|
|
329
|
+
* displayName: "SageMaker Model",
|
|
330
|
+
* fulfillmentOptionType: "SAGEMAKER_MODEL"
|
|
331
|
+
* }
|
|
332
|
+
* ],
|
|
333
|
+
* highlights: [
|
|
334
|
+
* "Certified AWS migration specialists"
|
|
335
|
+
* ],
|
|
336
|
+
* logoThumbnailUrl: "https://d7umqicpi7263.cloudfront.net/img/product/cloudexperts-logo.png",
|
|
337
|
+
* longDescription: "Professional consulting services to help organizations plan and execute their cloud migration strategy.",
|
|
338
|
+
* manufacturer: {
|
|
339
|
+
* displayName: "sample professional services seller",
|
|
340
|
+
* sellerProfileId: "seller-sampleProServId"
|
|
341
|
+
* },
|
|
342
|
+
* productId: "prod-sampleProServId",
|
|
343
|
+
* productName: "sample professional services product",
|
|
344
|
+
* promotionalMedia: [],
|
|
345
|
+
* resources: [
|
|
346
|
+
* {
|
|
347
|
+
* contentType: "LINK",
|
|
348
|
+
* displayName: "Documentation",
|
|
349
|
+
* resourceType: "MANUFACTURER_INSTRUCTIONS",
|
|
350
|
+
* value: "https://www.cloudexperts.example.com/docs"
|
|
351
|
+
* }
|
|
352
|
+
* ],
|
|
353
|
+
* sellerEngagements: [
|
|
354
|
+
* {
|
|
355
|
+
* contentType: "LINK",
|
|
356
|
+
* engagementType: "REQUEST_FOR_DEMO",
|
|
357
|
+
* value: "https://aws.amazon.com/marketplace/customer-connect/demo/prodview-sampleProServId"
|
|
358
|
+
* }
|
|
359
|
+
* ],
|
|
360
|
+
* shortDescription: "Expert cloud migration and modernization consulting services."
|
|
361
|
+
* }
|
|
362
|
+
* *\/
|
|
363
|
+
* ```
|
|
364
|
+
*
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
367
|
+
export declare class GetProductCommand extends GetProductCommand_base {
|
|
368
|
+
/** @internal type navigation helper, not in runtime. */
|
|
369
|
+
protected static __types: {
|
|
370
|
+
api: {
|
|
371
|
+
input: GetProductInput;
|
|
372
|
+
output: GetProductOutput;
|
|
373
|
+
};
|
|
374
|
+
sdk: {
|
|
375
|
+
input: GetProductCommandInput;
|
|
376
|
+
output: GetProductCommandOutput;
|
|
377
|
+
};
|
|
378
|
+
};
|
|
379
|
+
}
|