@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,175 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ DefaultsMode as __DefaultsMode,
24
+ SmithyConfiguration as __SmithyConfiguration,
25
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
26
+ Client as __Client,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ StreamCollector as __StreamCollector,
40
+ UrlParser as __UrlParser,
41
+ UserAgent as __UserAgent,
42
+ } from "@smithy/types";
43
+ import {
44
+ HttpAuthSchemeInputConfig,
45
+ HttpAuthSchemeResolvedConfig,
46
+ } from "./auth/httpAuthSchemeProvider";
47
+ import {
48
+ GetListingCommandInput,
49
+ GetListingCommandOutput,
50
+ } from "./commands/GetListingCommand";
51
+ import {
52
+ GetOfferCommandInput,
53
+ GetOfferCommandOutput,
54
+ } from "./commands/GetOfferCommand";
55
+ import {
56
+ GetOfferSetCommandInput,
57
+ GetOfferSetCommandOutput,
58
+ } from "./commands/GetOfferSetCommand";
59
+ import {
60
+ GetOfferTermsCommandInput,
61
+ GetOfferTermsCommandOutput,
62
+ } from "./commands/GetOfferTermsCommand";
63
+ import {
64
+ GetProductCommandInput,
65
+ GetProductCommandOutput,
66
+ } from "./commands/GetProductCommand";
67
+ import {
68
+ ListFulfillmentOptionsCommandInput,
69
+ ListFulfillmentOptionsCommandOutput,
70
+ } from "./commands/ListFulfillmentOptionsCommand";
71
+ import {
72
+ ListPurchaseOptionsCommandInput,
73
+ ListPurchaseOptionsCommandOutput,
74
+ } from "./commands/ListPurchaseOptionsCommand";
75
+ import {
76
+ SearchFacetsCommandInput,
77
+ SearchFacetsCommandOutput,
78
+ } from "./commands/SearchFacetsCommand";
79
+ import {
80
+ SearchListingsCommandInput,
81
+ SearchListingsCommandOutput,
82
+ } from "./commands/SearchListingsCommand";
83
+ import {
84
+ ClientInputEndpointParameters,
85
+ ClientResolvedEndpointParameters,
86
+ EndpointParameters,
87
+ } from "./endpoint/EndpointParameters";
88
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
89
+ export { __Client };
90
+ export type ServiceInputTypes =
91
+ | GetListingCommandInput
92
+ | GetOfferCommandInput
93
+ | GetOfferSetCommandInput
94
+ | GetOfferTermsCommandInput
95
+ | GetProductCommandInput
96
+ | ListFulfillmentOptionsCommandInput
97
+ | ListPurchaseOptionsCommandInput
98
+ | SearchFacetsCommandInput
99
+ | SearchListingsCommandInput;
100
+ export type ServiceOutputTypes =
101
+ | GetListingCommandOutput
102
+ | GetOfferCommandOutput
103
+ | GetOfferSetCommandOutput
104
+ | GetOfferTermsCommandOutput
105
+ | GetProductCommandOutput
106
+ | ListFulfillmentOptionsCommandOutput
107
+ | ListPurchaseOptionsCommandOutput
108
+ | SearchFacetsCommandOutput
109
+ | SearchListingsCommandOutput;
110
+ export interface ClientDefaults
111
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
112
+ requestHandler?: __HttpHandlerUserInput;
113
+ sha256?: __ChecksumConstructor | __HashConstructor;
114
+ urlParser?: __UrlParser;
115
+ bodyLengthChecker?: __BodyLengthCalculator;
116
+ streamCollector?: __StreamCollector;
117
+ base64Decoder?: __Decoder;
118
+ base64Encoder?: __Encoder;
119
+ utf8Decoder?: __Decoder;
120
+ utf8Encoder?: __Encoder;
121
+ runtime?: string;
122
+ disableHostPrefix?: boolean;
123
+ serviceId?: string;
124
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
125
+ useFipsEndpoint?: boolean | __Provider<boolean>;
126
+ region?: string | __Provider<string>;
127
+ profile?: string;
128
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
129
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
130
+ maxAttempts?: number | __Provider<number>;
131
+ retryMode?: string | __Provider<string>;
132
+ logger?: __Logger;
133
+ extensions?: RuntimeExtension[];
134
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
135
+ }
136
+ export type MarketplaceDiscoveryClientConfigType = Partial<
137
+ __SmithyConfiguration<__HttpHandlerOptions>
138
+ > &
139
+ ClientDefaults &
140
+ UserAgentInputConfig &
141
+ RetryInputConfig &
142
+ RegionInputConfig &
143
+ HostHeaderInputConfig &
144
+ EndpointInputConfig<EndpointParameters> &
145
+ HttpAuthSchemeInputConfig &
146
+ ClientInputEndpointParameters;
147
+ export interface MarketplaceDiscoveryClientConfig
148
+ extends MarketplaceDiscoveryClientConfigType {}
149
+ export type MarketplaceDiscoveryClientResolvedConfigType =
150
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
151
+ Required<ClientDefaults> &
152
+ RuntimeExtensionsConfig &
153
+ UserAgentResolvedConfig &
154
+ RetryResolvedConfig &
155
+ RegionResolvedConfig &
156
+ HostHeaderResolvedConfig &
157
+ EndpointResolvedConfig<EndpointParameters> &
158
+ HttpAuthSchemeResolvedConfig &
159
+ ClientResolvedEndpointParameters;
160
+ export interface MarketplaceDiscoveryClientResolvedConfig
161
+ extends MarketplaceDiscoveryClientResolvedConfigType {}
162
+ export declare class MarketplaceDiscoveryClient extends __Client<
163
+ __HttpHandlerOptions,
164
+ ServiceInputTypes,
165
+ ServiceOutputTypes,
166
+ MarketplaceDiscoveryClientResolvedConfig
167
+ > {
168
+ readonly config: MarketplaceDiscoveryClientResolvedConfig;
169
+ constructor(
170
+ ...[
171
+ configuration,
172
+ ]: __CheckOptionalClientConfig<MarketplaceDiscoveryClientConfig>
173
+ );
174
+ destroy(): void;
175
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { MarketplaceDiscoveryHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): MarketplaceDiscoveryHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,47 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ Provider,
13
+ } from "@smithy/types";
14
+ import { MarketplaceDiscoveryClientResolvedConfig } from "../MarketplaceDiscoveryClient";
15
+ export interface MarketplaceDiscoveryHttpAuthSchemeParameters
16
+ extends HttpAuthSchemeParameters {
17
+ region?: string;
18
+ }
19
+ export interface MarketplaceDiscoveryHttpAuthSchemeParametersProvider
20
+ extends HttpAuthSchemeParametersProvider<
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ HandlerExecutionContext,
23
+ MarketplaceDiscoveryHttpAuthSchemeParameters,
24
+ object
25
+ > {}
26
+ export declare const defaultMarketplaceDiscoveryHttpAuthSchemeParametersProvider: (
27
+ config: MarketplaceDiscoveryClientResolvedConfig,
28
+ context: HandlerExecutionContext,
29
+ input: object
30
+ ) => Promise<MarketplaceDiscoveryHttpAuthSchemeParameters>;
31
+ export interface MarketplaceDiscoveryHttpAuthSchemeProvider
32
+ extends HttpAuthSchemeProvider<MarketplaceDiscoveryHttpAuthSchemeParameters> {}
33
+ export declare const defaultMarketplaceDiscoveryHttpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider;
34
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
35
+ authSchemePreference?: string[] | Provider<string[]>;
36
+ httpAuthSchemes?: HttpAuthScheme[];
37
+ httpAuthSchemeProvider?: MarketplaceDiscoveryHttpAuthSchemeProvider;
38
+ }
39
+ export interface HttpAuthSchemeResolvedConfig
40
+ extends AwsSdkSigV4AuthResolvedConfig {
41
+ readonly authSchemePreference: Provider<string[]>;
42
+ readonly httpAuthSchemes: HttpAuthScheme[];
43
+ readonly httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider;
44
+ }
45
+ export declare const resolveHttpAuthSchemeConfig: <T>(
46
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
47
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { GetListingInput, GetListingOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetListingCommandInput extends GetListingInput {}
12
+ export interface GetListingCommandOutput
13
+ extends GetListingOutput,
14
+ __MetadataBearer {}
15
+ declare const GetListingCommand_base: {
16
+ new (
17
+ input: GetListingCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetListingCommandInput,
20
+ GetListingCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetListingCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetListingCommandInput,
29
+ GetListingCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetListingCommand extends GetListingCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetListingInput;
40
+ output: GetListingOutput;
41
+ };
42
+ sdk: {
43
+ input: GetListingCommandInput;
44
+ output: GetListingCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { GetOfferInput, GetOfferOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetOfferCommandInput extends GetOfferInput {}
12
+ export interface GetOfferCommandOutput
13
+ extends GetOfferOutput,
14
+ __MetadataBearer {}
15
+ declare const GetOfferCommand_base: {
16
+ new (
17
+ input: GetOfferCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetOfferCommandInput,
20
+ GetOfferCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetOfferCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetOfferCommandInput,
29
+ GetOfferCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetOfferCommand extends GetOfferCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetOfferInput;
40
+ output: GetOfferOutput;
41
+ };
42
+ sdk: {
43
+ input: GetOfferCommandInput;
44
+ output: GetOfferCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { GetOfferSetInput, GetOfferSetOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetOfferSetCommandInput extends GetOfferSetInput {}
12
+ export interface GetOfferSetCommandOutput
13
+ extends GetOfferSetOutput,
14
+ __MetadataBearer {}
15
+ declare const GetOfferSetCommand_base: {
16
+ new (
17
+ input: GetOfferSetCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetOfferSetCommandInput,
20
+ GetOfferSetCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetOfferSetCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetOfferSetCommandInput,
29
+ GetOfferSetCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetOfferSetCommand extends GetOfferSetCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetOfferSetInput;
40
+ output: GetOfferSetOutput;
41
+ };
42
+ sdk: {
43
+ input: GetOfferSetCommandInput;
44
+ output: GetOfferSetCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { GetOfferTermsInput, GetOfferTermsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetOfferTermsCommandInput extends GetOfferTermsInput {}
12
+ export interface GetOfferTermsCommandOutput
13
+ extends GetOfferTermsOutput,
14
+ __MetadataBearer {}
15
+ declare const GetOfferTermsCommand_base: {
16
+ new (
17
+ input: GetOfferTermsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetOfferTermsCommandInput,
20
+ GetOfferTermsCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetOfferTermsCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetOfferTermsCommandInput,
29
+ GetOfferTermsCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetOfferTermsCommand extends GetOfferTermsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetOfferTermsInput;
40
+ output: GetOfferTermsOutput;
41
+ };
42
+ sdk: {
43
+ input: GetOfferTermsCommandInput;
44
+ output: GetOfferTermsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { GetProductInput, GetProductOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetProductCommandInput extends GetProductInput {}
12
+ export interface GetProductCommandOutput
13
+ extends GetProductOutput,
14
+ __MetadataBearer {}
15
+ declare const GetProductCommand_base: {
16
+ new (
17
+ input: GetProductCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetProductCommandInput,
20
+ GetProductCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ input: GetProductCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetProductCommandInput,
29
+ GetProductCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetProductCommand extends GetProductCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: GetProductInput;
40
+ output: GetProductOutput;
41
+ };
42
+ sdk: {
43
+ input: GetProductCommandInput;
44
+ output: GetProductCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import {
9
+ ListFulfillmentOptionsInput,
10
+ ListFulfillmentOptionsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListFulfillmentOptionsCommandInput
15
+ extends ListFulfillmentOptionsInput {}
16
+ export interface ListFulfillmentOptionsCommandOutput
17
+ extends ListFulfillmentOptionsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListFulfillmentOptionsCommand_base: {
20
+ new (
21
+ input: ListFulfillmentOptionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListFulfillmentOptionsCommandInput,
24
+ ListFulfillmentOptionsCommandOutput,
25
+ MarketplaceDiscoveryClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ input: ListFulfillmentOptionsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListFulfillmentOptionsCommandInput,
33
+ ListFulfillmentOptionsCommandOutput,
34
+ MarketplaceDiscoveryClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListFulfillmentOptionsCommand extends ListFulfillmentOptionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListFulfillmentOptionsInput;
44
+ output: ListFulfillmentOptionsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListFulfillmentOptionsCommandInput;
48
+ output: ListFulfillmentOptionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import {
9
+ ListPurchaseOptionsInput,
10
+ ListPurchaseOptionsOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListPurchaseOptionsCommandInput
15
+ extends ListPurchaseOptionsInput {}
16
+ export interface ListPurchaseOptionsCommandOutput
17
+ extends ListPurchaseOptionsOutput,
18
+ __MetadataBearer {}
19
+ declare const ListPurchaseOptionsCommand_base: {
20
+ new (
21
+ input: ListPurchaseOptionsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListPurchaseOptionsCommandInput,
24
+ ListPurchaseOptionsCommandOutput,
25
+ MarketplaceDiscoveryClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: [] | [ListPurchaseOptionsCommandInput]
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListPurchaseOptionsCommandInput,
33
+ ListPurchaseOptionsCommandOutput,
34
+ MarketplaceDiscoveryClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListPurchaseOptionsCommand extends ListPurchaseOptionsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListPurchaseOptionsInput;
44
+ output: ListPurchaseOptionsOutput;
45
+ };
46
+ sdk: {
47
+ input: ListPurchaseOptionsCommandInput;
48
+ output: ListPurchaseOptionsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { SearchFacetsInput, SearchFacetsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface SearchFacetsCommandInput extends SearchFacetsInput {}
12
+ export interface SearchFacetsCommandOutput
13
+ extends SearchFacetsOutput,
14
+ __MetadataBearer {}
15
+ declare const SearchFacetsCommand_base: {
16
+ new (
17
+ input: SearchFacetsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ SearchFacetsCommandInput,
20
+ SearchFacetsCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [SearchFacetsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ SearchFacetsCommandInput,
29
+ SearchFacetsCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class SearchFacetsCommand extends SearchFacetsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: SearchFacetsInput;
40
+ output: SearchFacetsOutput;
41
+ };
42
+ sdk: {
43
+ input: SearchFacetsCommandInput;
44
+ output: SearchFacetsCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ MarketplaceDiscoveryClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../MarketplaceDiscoveryClient";
8
+ import { SearchListingsInput, SearchListingsOutput } from "../models/models_0";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface SearchListingsCommandInput extends SearchListingsInput {}
12
+ export interface SearchListingsCommandOutput
13
+ extends SearchListingsOutput,
14
+ __MetadataBearer {}
15
+ declare const SearchListingsCommand_base: {
16
+ new (
17
+ input: SearchListingsCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ SearchListingsCommandInput,
20
+ SearchListingsCommandOutput,
21
+ MarketplaceDiscoveryClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ ...[input]: [] | [SearchListingsCommandInput]
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ SearchListingsCommandInput,
29
+ SearchListingsCommandOutput,
30
+ MarketplaceDiscoveryClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class SearchListingsCommand extends SearchListingsCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: SearchListingsInput;
40
+ output: SearchListingsOutput;
41
+ };
42
+ sdk: {
43
+ input: SearchListingsCommandInput;
44
+ output: SearchListingsCommandOutput;
45
+ };
46
+ };
47
+ }