@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,668 @@
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 { ListFulfillmentOptionsInput, ListFulfillmentOptionsOutput } from "../models/models_0";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link ListFulfillmentOptionsCommand}.
14
+ */
15
+ export interface ListFulfillmentOptionsCommandInput extends ListFulfillmentOptionsInput {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link ListFulfillmentOptionsCommand}.
21
+ */
22
+ export interface ListFulfillmentOptionsCommandOutput extends ListFulfillmentOptionsOutput, __MetadataBearer {
23
+ }
24
+ declare const ListFulfillmentOptionsCommand_base: {
25
+ new (input: ListFulfillmentOptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFulfillmentOptionsCommandInput, ListFulfillmentOptionsCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: ListFulfillmentOptionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListFulfillmentOptionsCommandInput, ListFulfillmentOptionsCommandOutput, MarketplaceDiscoveryClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Returns the fulfillment options available for a product, including deployment details such as version information, operating systems, usage instructions, and release notes.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { MarketplaceDiscoveryClient, ListFulfillmentOptionsCommand } from "@aws-sdk/client-marketplace-discovery"; // ES Modules import
35
+ * // const { MarketplaceDiscoveryClient, ListFulfillmentOptionsCommand } = 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 = { // ListFulfillmentOptionsInput
40
+ * productId: "STRING_VALUE", // required
41
+ * maxResults: Number("int"),
42
+ * nextToken: "STRING_VALUE",
43
+ * };
44
+ * const command = new ListFulfillmentOptionsCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // ListFulfillmentOptionsOutput
47
+ * // fulfillmentOptions: [ // FulfillmentOptionsList // required
48
+ * // { // FulfillmentOption Union: only one key present
49
+ * // amazonMachineImageFulfillmentOption: { // AmazonMachineImageFulfillmentOption
50
+ * // fulfillmentOptionId: "STRING_VALUE", // required
51
+ * // fulfillmentOptionName: "STRING_VALUE", // required
52
+ * // fulfillmentOptionVersion: "STRING_VALUE",
53
+ * // 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
54
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
55
+ * // operatingSystems: [ // AmazonMachineImageOperatingSystemList // required
56
+ * // { // AmazonMachineImageOperatingSystem
57
+ * // operatingSystemFamilyName: "STRING_VALUE", // required
58
+ * // operatingSystemName: "STRING_VALUE", // required
59
+ * // operatingSystemVersion: "STRING_VALUE",
60
+ * // },
61
+ * // ],
62
+ * // recommendation: { // AmazonMachineImageRecommendation
63
+ * // instanceType: "STRING_VALUE", // required
64
+ * // },
65
+ * // releaseNotes: "STRING_VALUE",
66
+ * // usageInstructions: "STRING_VALUE",
67
+ * // },
68
+ * // apiFulfillmentOption: { // ApiFulfillmentOption
69
+ * // fulfillmentOptionId: "STRING_VALUE", // required
70
+ * // 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
71
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
72
+ * // usageInstructions: "STRING_VALUE",
73
+ * // awsSupportedServices: [ // AwsSupportedServiceList // required
74
+ * // { // AwsSupportedService
75
+ * // supportedServiceType: "STRING_VALUE", // required
76
+ * // displayName: "STRING_VALUE", // required
77
+ * // description: "STRING_VALUE", // required
78
+ * // },
79
+ * // ],
80
+ * // },
81
+ * // cloudFormationFulfillmentOption: { // CloudFormationFulfillmentOption
82
+ * // fulfillmentOptionId: "STRING_VALUE", // required
83
+ * // fulfillmentOptionName: "STRING_VALUE", // required
84
+ * // 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
85
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
86
+ * // fulfillmentOptionVersion: "STRING_VALUE",
87
+ * // releaseNotes: "STRING_VALUE",
88
+ * // usageInstructions: "STRING_VALUE",
89
+ * // },
90
+ * // containerFulfillmentOption: { // ContainerFulfillmentOption
91
+ * // fulfillmentOptionId: "STRING_VALUE", // required
92
+ * // fulfillmentOptionName: "STRING_VALUE", // required
93
+ * // 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
94
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
95
+ * // fulfillmentOptionVersion: "STRING_VALUE",
96
+ * // operatingSystems: [ // ContainerOperatingSystemList
97
+ * // { // ContainerOperatingSystem
98
+ * // operatingSystemFamilyName: "STRING_VALUE", // required
99
+ * // operatingSystemName: "STRING_VALUE", // required
100
+ * // },
101
+ * // ],
102
+ * // awsSupportedServices: [
103
+ * // {
104
+ * // supportedServiceType: "STRING_VALUE", // required
105
+ * // displayName: "STRING_VALUE", // required
106
+ * // description: "STRING_VALUE", // required
107
+ * // },
108
+ * // ],
109
+ * // releaseNotes: "STRING_VALUE",
110
+ * // usageInstructions: "STRING_VALUE",
111
+ * // },
112
+ * // helmFulfillmentOption: { // HelmFulfillmentOption
113
+ * // fulfillmentOptionId: "STRING_VALUE", // required
114
+ * // fulfillmentOptionName: "STRING_VALUE", // required
115
+ * // 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
116
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
117
+ * // fulfillmentOptionVersion: "STRING_VALUE",
118
+ * // operatingSystems: [ // HelmOperatingSystemList
119
+ * // { // HelmOperatingSystem
120
+ * // operatingSystemFamilyName: "STRING_VALUE", // required
121
+ * // operatingSystemName: "STRING_VALUE", // required
122
+ * // },
123
+ * // ],
124
+ * // releaseNotes: "STRING_VALUE",
125
+ * // awsSupportedServices: [
126
+ * // {
127
+ * // supportedServiceType: "STRING_VALUE", // required
128
+ * // displayName: "STRING_VALUE", // required
129
+ * // description: "STRING_VALUE", // required
130
+ * // },
131
+ * // ],
132
+ * // usageInstructions: "STRING_VALUE",
133
+ * // },
134
+ * // eksAddOnFulfillmentOption: { // EksAddOnFulfillmentOption
135
+ * // fulfillmentOptionId: "STRING_VALUE", // required
136
+ * // fulfillmentOptionName: "STRING_VALUE", // required
137
+ * // 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
138
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
139
+ * // fulfillmentOptionVersion: "STRING_VALUE",
140
+ * // operatingSystems: [ // EksAddOnOperatingSystemList
141
+ * // { // EksAddOnOperatingSystem
142
+ * // operatingSystemFamilyName: "STRING_VALUE", // required
143
+ * // operatingSystemName: "STRING_VALUE", // required
144
+ * // },
145
+ * // ],
146
+ * // releaseNotes: "STRING_VALUE",
147
+ * // usageInstructions: "STRING_VALUE",
148
+ * // awsSupportedServices: [
149
+ * // {
150
+ * // supportedServiceType: "STRING_VALUE", // required
151
+ * // displayName: "STRING_VALUE", // required
152
+ * // description: "STRING_VALUE", // required
153
+ * // },
154
+ * // ],
155
+ * // },
156
+ * // ec2ImageBuilderComponentFulfillmentOption: { // Ec2ImageBuilderComponentFulfillmentOption
157
+ * // fulfillmentOptionId: "STRING_VALUE", // required
158
+ * // fulfillmentOptionName: "STRING_VALUE", // required
159
+ * // 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
160
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
161
+ * // fulfillmentOptionVersion: "STRING_VALUE",
162
+ * // operatingSystems: [
163
+ * // {
164
+ * // operatingSystemFamilyName: "STRING_VALUE", // required
165
+ * // operatingSystemName: "STRING_VALUE", // required
166
+ * // },
167
+ * // ],
168
+ * // awsSupportedServices: [
169
+ * // {
170
+ * // supportedServiceType: "STRING_VALUE", // required
171
+ * // displayName: "STRING_VALUE", // required
172
+ * // description: "STRING_VALUE", // required
173
+ * // },
174
+ * // ],
175
+ * // releaseNotes: "STRING_VALUE",
176
+ * // usageInstructions: "STRING_VALUE",
177
+ * // },
178
+ * // dataExchangeFulfillmentOption: { // DataExchangeFulfillmentOption
179
+ * // fulfillmentOptionId: "STRING_VALUE", // required
180
+ * // 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
181
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
182
+ * // dataArtifacts: [ // DataArtifactList
183
+ * // { // DataArtifact
184
+ * // description: "STRING_VALUE",
185
+ * // resourceArn: "STRING_VALUE",
186
+ * // resourceType: "STRING_VALUE", // required
187
+ * // dataClassification: "STRING_VALUE", // required
188
+ * // },
189
+ * // ],
190
+ * // },
191
+ * // professionalServicesFulfillmentOption: { // ProfessionalServicesFulfillmentOption
192
+ * // fulfillmentOptionId: "STRING_VALUE", // required
193
+ * // 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
194
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
195
+ * // },
196
+ * // saasFulfillmentOption: { // SaasFulfillmentOption
197
+ * // fulfillmentOptionId: "STRING_VALUE", // required
198
+ * // 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
199
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
200
+ * // fulfillmentUrl: "STRING_VALUE",
201
+ * // usageInstructions: "STRING_VALUE",
202
+ * // },
203
+ * // sageMakerAlgorithmFulfillmentOption: { // SageMakerAlgorithmFulfillmentOption
204
+ * // fulfillmentOptionId: "STRING_VALUE", // required
205
+ * // 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
206
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
207
+ * // fulfillmentOptionVersion: "STRING_VALUE",
208
+ * // releaseNotes: "STRING_VALUE",
209
+ * // usageInstructions: "STRING_VALUE",
210
+ * // recommendation: { // SageMakerAlgorithmRecommendation
211
+ * // recommendedBatchTransformInstanceType: "STRING_VALUE", // required
212
+ * // recommendedRealtimeInferenceInstanceType: "STRING_VALUE",
213
+ * // recommendedTrainingInstanceType: "STRING_VALUE", // required
214
+ * // },
215
+ * // },
216
+ * // sageMakerModelFulfillmentOption: { // SageMakerModelFulfillmentOption
217
+ * // fulfillmentOptionId: "STRING_VALUE", // required
218
+ * // 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
219
+ * // fulfillmentOptionDisplayName: "STRING_VALUE", // required
220
+ * // fulfillmentOptionVersion: "STRING_VALUE",
221
+ * // releaseNotes: "STRING_VALUE",
222
+ * // usageInstructions: "STRING_VALUE",
223
+ * // recommendation: { // SageMakerModelRecommendation
224
+ * // recommendedBatchTransformInstanceType: "STRING_VALUE", // required
225
+ * // recommendedRealtimeInferenceInstanceType: "STRING_VALUE",
226
+ * // },
227
+ * // },
228
+ * // },
229
+ * // ],
230
+ * // nextToken: "STRING_VALUE",
231
+ * // };
232
+ *
233
+ * ```
234
+ *
235
+ * @param ListFulfillmentOptionsCommandInput - {@link ListFulfillmentOptionsCommandInput}
236
+ * @returns {@link ListFulfillmentOptionsCommandOutput}
237
+ * @see {@link ListFulfillmentOptionsCommandInput} for command's `input` shape.
238
+ * @see {@link ListFulfillmentOptionsCommandOutput} for command's `response` shape.
239
+ * @see {@link MarketplaceDiscoveryClientResolvedConfig | config} for MarketplaceDiscoveryClient's `config` shape.
240
+ *
241
+ * @throws {@link ResourceNotFoundException} (client fault)
242
+ * <p>The specified resource doesn't exist.</p>
243
+ *
244
+ * @throws {@link AccessDeniedException} (client fault)
245
+ * <p>You don't have sufficient access to perform this action.</p>
246
+ *
247
+ * @throws {@link InternalServerException} (server fault)
248
+ * <p>Unexpected error during processing of the request.</p>
249
+ *
250
+ * @throws {@link ThrottlingException} (client fault)
251
+ * <p>The request was denied due to request throttling.</p>
252
+ *
253
+ * @throws {@link ValidationException} (client fault)
254
+ * <p>The input fails to satisfy the constraints specified by the service.</p>
255
+ *
256
+ * @throws {@link MarketplaceDiscoveryServiceException}
257
+ * <p>Base exception class for all service exceptions from MarketplaceDiscovery service.</p>
258
+ *
259
+ *
260
+ * @example List AMI Fulfillment Options
261
+ * ```javascript
262
+ * //
263
+ * const input = {
264
+ * productId: "prod-sampleAmiId"
265
+ * };
266
+ * const command = new ListFulfillmentOptionsCommand(input);
267
+ * const response = await client.send(command);
268
+ * /* response is
269
+ * {
270
+ * fulfillmentOptions: [
271
+ * {
272
+ * amazonMachineImageFulfillmentOption: {
273
+ * fulfillmentOptionDisplayName: "Amazon Machine Image",
274
+ * fulfillmentOptionId: "fo-sampleAmiId",
275
+ * fulfillmentOptionName: "64-bit (x86) Amazon Machine Image (AMI)",
276
+ * fulfillmentOptionType: "AMAZON_MACHINE_IMAGE",
277
+ * fulfillmentOptionVersion: "2.0.20260120.1",
278
+ * operatingSystems: [
279
+ * {
280
+ * operatingSystemFamilyName: "AMAZONLINUX",
281
+ * operatingSystemName: "AmazonLinux 2.0.20250623.0",
282
+ * operatingSystemVersion: "2.0.20250623.0"
283
+ * }
284
+ * ],
285
+ * recommendation: {
286
+ * instanceType: "t3a.medium"
287
+ * },
288
+ * releaseNotes: "https://aws.amazon.com/amazon-linux-2/release-notes/",
289
+ * usageInstructions: "The Amazon Linux 2 AMI can be launched through the EC2 console's Quick Launch page."
290
+ * }
291
+ * }
292
+ * ]
293
+ * }
294
+ * *\/
295
+ * ```
296
+ *
297
+ * @example List API Fulfillment Options
298
+ * ```javascript
299
+ * //
300
+ * const input = {
301
+ * productId: "prod-sampleApiId"
302
+ * };
303
+ * const command = new ListFulfillmentOptionsCommand(input);
304
+ * const response = await client.send(command);
305
+ * /* response is
306
+ * {
307
+ * fulfillmentOptions: [
308
+ * {
309
+ * apiFulfillmentOption: {
310
+ * awsSupportedServices: [
311
+ * {
312
+ * description: "A managed service that enables you to develop, deploy, and maintain AI agents seamlessly.",
313
+ * displayName: "Amazon Bedrock AgentCore",
314
+ * supportedServiceType: "BEDROCK_AGENTCORE"
315
+ * }
316
+ * ],
317
+ * fulfillmentOptionDisplayName: "API-Based Agents & Tools",
318
+ * fulfillmentOptionId: "fo-sampleApiId",
319
+ * fulfillmentOptionType: "API",
320
+ * usageInstructions: "Please refer to the MCP usage instructions."
321
+ * }
322
+ * }
323
+ * ]
324
+ * }
325
+ * *\/
326
+ * ```
327
+ *
328
+ * @example List CloudFormation Template Fulfillment Options
329
+ * ```javascript
330
+ * //
331
+ * const input = {
332
+ * productId: "prod-sampleCftId"
333
+ * };
334
+ * const command = new ListFulfillmentOptionsCommand(input);
335
+ * const response = await client.send(command);
336
+ * /* response is
337
+ * {
338
+ * fulfillmentOptions: [
339
+ * {
340
+ * cloudFormationFulfillmentOption: {
341
+ * fulfillmentOptionDisplayName: "CloudFormation Template",
342
+ * fulfillmentOptionId: "fo-sampleCftId",
343
+ * fulfillmentOptionName: "Sophos Standalone Firewall for AWS",
344
+ * fulfillmentOptionType: "CLOUDFORMATION_TEMPLATE",
345
+ * fulfillmentOptionVersion: "21.5 MR1",
346
+ * releaseNotes: "https://community.sophos.com/products/xg-firewall/b/blog",
347
+ * usageInstructions: "You can manage your Sophos XG Firewall on AWS from the Web Interface using HTTPS (TCP port 4444)."
348
+ * }
349
+ * }
350
+ * ]
351
+ * }
352
+ * *\/
353
+ * ```
354
+ *
355
+ * @example List Container Fulfillment Options
356
+ * ```javascript
357
+ * //
358
+ * const input = {
359
+ * productId: "prod-sampleContainerId"
360
+ * };
361
+ * const command = new ListFulfillmentOptionsCommand(input);
362
+ * const response = await client.send(command);
363
+ * /* response is
364
+ * {
365
+ * fulfillmentOptions: [
366
+ * {
367
+ * containerFulfillmentOption: {
368
+ * awsSupportedServices: [
369
+ * {
370
+ * description: "A managed service that enables you to develop, deploy, and maintain AI agents seamlessly.",
371
+ * displayName: "Amazon Bedrock AgentCore",
372
+ * supportedServiceType: "BEDROCK_AGENTCORE"
373
+ * }
374
+ * ],
375
+ * fulfillmentOptionDisplayName: "Container Image",
376
+ * fulfillmentOptionId: "fo-sampleContainerId",
377
+ * fulfillmentOptionName: "New delivery option 1",
378
+ * fulfillmentOptionType: "CONTAINER",
379
+ * fulfillmentOptionVersion: "Elastic MCP Version 1",
380
+ * operatingSystems: [
381
+ * {
382
+ * operatingSystemFamilyName: "Linux",
383
+ * operatingSystemName: "Linux"
384
+ * }
385
+ * ],
386
+ * releaseNotes: "Version 1 of Elastic MCP Server",
387
+ * usageInstructions: "See Elastic MCP GitHub instructions"
388
+ * }
389
+ * }
390
+ * ]
391
+ * }
392
+ * *\/
393
+ * ```
394
+ *
395
+ * @example List Helm Fulfillment Options
396
+ * ```javascript
397
+ * //
398
+ * const input = {
399
+ * productId: "prod-sampleHelmId"
400
+ * };
401
+ * const command = new ListFulfillmentOptionsCommand(input);
402
+ * const response = await client.send(command);
403
+ * /* response is
404
+ * {
405
+ * fulfillmentOptions: [
406
+ * {
407
+ * helmFulfillmentOption: {
408
+ * awsSupportedServices: [
409
+ * {
410
+ * description: "Amazon Elastic Kubernetes Service",
411
+ * displayName: "Amazon EKS",
412
+ * supportedServiceType: "EKS"
413
+ * }
414
+ * ],
415
+ * fulfillmentOptionDisplayName: "Helm Chart",
416
+ * fulfillmentOptionId: "fo-sampleHelmId",
417
+ * fulfillmentOptionName: "NGINX Ingress Controller",
418
+ * fulfillmentOptionType: "HELM",
419
+ * fulfillmentOptionVersion: "1.14.3-0-r03",
420
+ * operatingSystems: [
421
+ * {
422
+ * operatingSystemFamilyName: "Linux",
423
+ * operatingSystemName: "Linux"
424
+ * }
425
+ * ],
426
+ * releaseNotes: "* Maintenance release",
427
+ * usageInstructions: "helm install nginx-ingress"
428
+ * }
429
+ * }
430
+ * ]
431
+ * }
432
+ * *\/
433
+ * ```
434
+ *
435
+ * @example List EKS Add-On Fulfillment Options
436
+ * ```javascript
437
+ * //
438
+ * const input = {
439
+ * productId: "prod-sampleEksId"
440
+ * };
441
+ * const command = new ListFulfillmentOptionsCommand(input);
442
+ * const response = await client.send(command);
443
+ * /* response is
444
+ * {
445
+ * fulfillmentOptions: [
446
+ * {
447
+ * eksAddOnFulfillmentOption: {
448
+ * awsSupportedServices: [
449
+ * {
450
+ * description: "Amazon Elastic Kubernetes Service",
451
+ * displayName: "Amazon EKS",
452
+ * supportedServiceType: "EKS"
453
+ * }
454
+ * ],
455
+ * fulfillmentOptionDisplayName: "Add-on for Amazon EKS",
456
+ * fulfillmentOptionId: "fo-sampleEksId",
457
+ * fulfillmentOptionName: "Splunk Distribution of the OpenTelemetry Collector Chart",
458
+ * fulfillmentOptionType: "EKS_ADD_ON",
459
+ * fulfillmentOptionVersion: "0.144.0",
460
+ * operatingSystems: [
461
+ * {
462
+ * operatingSystemFamilyName: "Linux",
463
+ * operatingSystemName: "Linux"
464
+ * }
465
+ * ],
466
+ * releaseNotes: "https://github.com/signalfx/splunk-otel-collector-chart/releases/tag/splunk-otel-collector-0.144.0",
467
+ * usageInstructions: "https://help.splunk.com/en/splunk-observability-cloud/manage-data/splunk-distribution-of-the-opentelemetry-collector/get-started-with-the-splunk-distribution-of-the-opentelemetry-collector/collector-for-kubernetes/kubernetes-eks-add-on"
468
+ * }
469
+ * }
470
+ * ]
471
+ * }
472
+ * *\/
473
+ * ```
474
+ *
475
+ * @example List EC2 Image Builder Component Fulfillment Options
476
+ * ```javascript
477
+ * //
478
+ * const input = {
479
+ * productId: "prod-sampleImageBuilderId"
480
+ * };
481
+ * const command = new ListFulfillmentOptionsCommand(input);
482
+ * const response = await client.send(command);
483
+ * /* response is
484
+ * {
485
+ * fulfillmentOptions: [
486
+ * {
487
+ * ec2ImageBuilderComponentFulfillmentOption: {
488
+ * awsSupportedServices: [
489
+ * {
490
+ * description: "EC2 Image Builder is a fully managed AWS service. It automates creation, management, and deployment of custom, secure, and up-to-date server images.",
491
+ * displayName: "Amazon EC2 Image Builder",
492
+ * supportedServiceType: "IMAGEBUILDER"
493
+ * }
494
+ * ],
495
+ * fulfillmentOptionDisplayName: "EC2 Image Builder Component",
496
+ * fulfillmentOptionId: "fo-sampleImageBuilderId",
497
+ * fulfillmentOptionName: "Linux v1.2.3",
498
+ * fulfillmentOptionType: "EC2_IMAGE_BUILDER_COMPONENT",
499
+ * fulfillmentOptionVersion: "1.2.3",
500
+ * operatingSystems: [
501
+ * {
502
+ * operatingSystemFamilyName: "Linux",
503
+ * operatingSystemName: "Linux"
504
+ * }
505
+ * ],
506
+ * releaseNotes: "https://github.com/CrowdStrike/aws-ec2-image-builder/releases",
507
+ * usageInstructions: "https://github.com/CrowdStrike/aws-ec2-image-builder"
508
+ * }
509
+ * }
510
+ * ]
511
+ * }
512
+ * *\/
513
+ * ```
514
+ *
515
+ * @example List Data Exchange Fulfillment Options
516
+ * ```javascript
517
+ * //
518
+ * const input = {
519
+ * productId: "prod-sampleDataExchangeId"
520
+ * };
521
+ * const command = new ListFulfillmentOptionsCommand(input);
522
+ * const response = await client.send(command);
523
+ * /* response is
524
+ * {
525
+ * fulfillmentOptions: [
526
+ * {
527
+ * dataExchangeFulfillmentOption: {
528
+ * dataArtifacts: [
529
+ * {
530
+ * dataClassification: "NONE",
531
+ * description: "Sample testing dataset.",
532
+ * resourceArn: "arn:aws:dataexchange:us-east-2::DataSet/sample-dataset-id",
533
+ * resourceType: "API_GATEWAY_APIS"
534
+ * }
535
+ * ],
536
+ * fulfillmentOptionDisplayName: "Data Exchange",
537
+ * fulfillmentOptionId: "fo-sampleDataExchangeId",
538
+ * fulfillmentOptionType: "DATA_EXCHANGE"
539
+ * }
540
+ * }
541
+ * ]
542
+ * }
543
+ * *\/
544
+ * ```
545
+ *
546
+ * @example List Professional Services Fulfillment Options
547
+ * ```javascript
548
+ * //
549
+ * const input = {
550
+ * productId: "prod-sampleProServId"
551
+ * };
552
+ * const command = new ListFulfillmentOptionsCommand(input);
553
+ * const response = await client.send(command);
554
+ * /* response is
555
+ * {
556
+ * fulfillmentOptions: [
557
+ * {
558
+ * professionalServicesFulfillmentOption: {
559
+ * fulfillmentOptionDisplayName: "Professional Services",
560
+ * fulfillmentOptionId: "fo-sampleProServId",
561
+ * fulfillmentOptionType: "PROFESSIONAL_SERVICES"
562
+ * }
563
+ * }
564
+ * ]
565
+ * }
566
+ * *\/
567
+ * ```
568
+ *
569
+ * @example List SaaS Fulfillment Options
570
+ * ```javascript
571
+ * //
572
+ * const input = {
573
+ * productId: "prod-sampleSaasId"
574
+ * };
575
+ * const command = new ListFulfillmentOptionsCommand(input);
576
+ * const response = await client.send(command);
577
+ * /* response is
578
+ * {
579
+ * fulfillmentOptions: [
580
+ * {
581
+ * saasFulfillmentOption: {
582
+ * fulfillmentOptionDisplayName: "SaaS",
583
+ * fulfillmentOptionId: "fo-sampleSaasId",
584
+ * fulfillmentOptionType: "SAAS",
585
+ * fulfillmentUrl: "https://example.com/order/SAMPLE123"
586
+ * }
587
+ * }
588
+ * ]
589
+ * }
590
+ * *\/
591
+ * ```
592
+ *
593
+ * @example List SageMaker Algorithm Fulfillment Options
594
+ * ```javascript
595
+ * //
596
+ * const input = {
597
+ * productId: "prod-sampleSmAlgoId"
598
+ * };
599
+ * const command = new ListFulfillmentOptionsCommand(input);
600
+ * const response = await client.send(command);
601
+ * /* response is
602
+ * {
603
+ * fulfillmentOptions: [
604
+ * {
605
+ * sageMakerAlgorithmFulfillmentOption: {
606
+ * fulfillmentOptionDisplayName: "SageMaker Algorithm",
607
+ * fulfillmentOptionId: "fo-sampleSmAlgoId",
608
+ * fulfillmentOptionType: "SAGEMAKER_ALGORITHM",
609
+ * fulfillmentOptionVersion: "v1.0.0",
610
+ * recommendation: {
611
+ * recommendedBatchTransformInstanceType: "ml.m5.large",
612
+ * recommendedRealtimeInferenceInstanceType: "ml.m5.large",
613
+ * recommendedTrainingInstanceType: "ml.g4dn.xlarge"
614
+ * },
615
+ * releaseNotes: "Bug fixes",
616
+ * usageInstructions: "A zip file called train should be provided."
617
+ * }
618
+ * }
619
+ * ]
620
+ * }
621
+ * *\/
622
+ * ```
623
+ *
624
+ * @example List SageMaker Model Fulfillment Options
625
+ * ```javascript
626
+ * //
627
+ * const input = {
628
+ * productId: "prod-sampleSmModelId"
629
+ * };
630
+ * const command = new ListFulfillmentOptionsCommand(input);
631
+ * const response = await client.send(command);
632
+ * /* response is
633
+ * {
634
+ * fulfillmentOptions: [
635
+ * {
636
+ * sageMakerModelFulfillmentOption: {
637
+ * fulfillmentOptionDisplayName: "SageMaker Model",
638
+ * fulfillmentOptionId: "fo-sampleSmModelId",
639
+ * fulfillmentOptionType: "SAGEMAKER_MODEL",
640
+ * fulfillmentOptionVersion: "1.2.3",
641
+ * recommendation: {
642
+ * recommendedBatchTransformInstanceType: "ml.g5.12xlarge",
643
+ * recommendedRealtimeInferenceInstanceType: "ml.g5.12xlarge"
644
+ * },
645
+ * releaseNotes: "Initial release",
646
+ * usageInstructions: "See Input Summary"
647
+ * }
648
+ * }
649
+ * ]
650
+ * }
651
+ * *\/
652
+ * ```
653
+ *
654
+ * @public
655
+ */
656
+ export declare class ListFulfillmentOptionsCommand extends ListFulfillmentOptionsCommand_base {
657
+ /** @internal type navigation helper, not in runtime. */
658
+ protected static __types: {
659
+ api: {
660
+ input: ListFulfillmentOptionsInput;
661
+ output: ListFulfillmentOptionsOutput;
662
+ };
663
+ sdk: {
664
+ input: ListFulfillmentOptionsCommandInput;
665
+ output: ListFulfillmentOptionsCommandOutput;
666
+ };
667
+ };
668
+ }