@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,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { GetOfferTermsCommandInput, GetOfferTermsCommandOutput } from "../commands/GetOfferTermsCommand";
|
|
3
|
+
import type { MarketplaceDiscoveryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateGetOfferTerms: (config: MarketplaceDiscoveryPaginationConfiguration, input: GetOfferTermsCommandInput, ...rest: any[]) => Paginator<GetOfferTermsCommandOutput>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { MarketplaceDiscoveryClient } from "../MarketplaceDiscoveryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
6
|
+
export interface MarketplaceDiscoveryPaginationConfiguration extends PaginationConfiguration {
|
|
7
|
+
client: MarketplaceDiscoveryClient;
|
|
8
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListFulfillmentOptionsCommandInput, ListFulfillmentOptionsCommandOutput } from "../commands/ListFulfillmentOptionsCommand";
|
|
3
|
+
import type { MarketplaceDiscoveryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListFulfillmentOptions: (config: MarketplaceDiscoveryPaginationConfiguration, input: ListFulfillmentOptionsCommandInput, ...rest: any[]) => Paginator<ListFulfillmentOptionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListPurchaseOptionsCommandInput, ListPurchaseOptionsCommandOutput } from "../commands/ListPurchaseOptionsCommand";
|
|
3
|
+
import type { MarketplaceDiscoveryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListPurchaseOptions: (config: MarketplaceDiscoveryPaginationConfiguration, input: ListPurchaseOptionsCommandInput, ...rest: any[]) => Paginator<ListPurchaseOptionsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchFacetsCommandInput, SearchFacetsCommandOutput } from "../commands/SearchFacetsCommand";
|
|
3
|
+
import type { MarketplaceDiscoveryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchFacets: (config: MarketplaceDiscoveryPaginationConfiguration, input: SearchFacetsCommandInput, ...rest: any[]) => Paginator<SearchFacetsCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
|
+
import { SearchListingsCommandInput, SearchListingsCommandOutput } from "../commands/SearchListingsCommand";
|
|
3
|
+
import type { MarketplaceDiscoveryPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateSearchListings: (config: MarketplaceDiscoveryPaginationConfiguration, input: SearchListingsCommandInput, ...rest: any[]) => Paginator<SearchListingsCommandOutput>;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import type { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
12
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
14
|
+
requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
|
|
15
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
16
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
17
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
18
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
|
+
cacheMiddleware?: boolean | undefined;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
22
|
+
protocolSettings: {
|
|
23
|
+
defaultNamespace?: string;
|
|
24
|
+
[setting: string]: unknown;
|
|
25
|
+
};
|
|
26
|
+
apiVersion: string;
|
|
27
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
28
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
29
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
30
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
32
|
+
disableHostPrefix: boolean;
|
|
33
|
+
serviceId: string;
|
|
34
|
+
profile?: string;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
38
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
39
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
40
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
41
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
42
|
+
logger?: import("@smithy/types").Logger;
|
|
43
|
+
}) => import("@smithy/types").EndpointV2;
|
|
44
|
+
tls?: boolean;
|
|
45
|
+
serviceConfiguredEndpoint?: never;
|
|
46
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
47
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
49
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
|
+
signingEscapePath?: boolean;
|
|
52
|
+
systemClockOffset?: number;
|
|
53
|
+
signingRegion?: string;
|
|
54
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import type { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
7
|
+
runtime: string;
|
|
8
|
+
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
|
+
authSchemePreference: string[] | import("@smithy/types").Provider<string[]>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit) => import("@aws-sdk/credential-provider-node/dist-types/runtime/memoize-chain").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
12
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
13
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
14
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
15
|
+
requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
|
|
16
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
17
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
20
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
|
+
cacheMiddleware?: boolean | undefined;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
24
|
+
protocolSettings: {
|
|
25
|
+
defaultNamespace?: string;
|
|
26
|
+
[setting: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
apiVersion: string;
|
|
29
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
32
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
34
|
+
disableHostPrefix: boolean;
|
|
35
|
+
serviceId: string;
|
|
36
|
+
profile?: string;
|
|
37
|
+
logger: import("@smithy/types").Logger;
|
|
38
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
39
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
40
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
41
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
42
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
43
|
+
logger?: import("@smithy/types").Logger;
|
|
44
|
+
}) => import("@smithy/types").EndpointV2;
|
|
45
|
+
tls?: boolean;
|
|
46
|
+
serviceConfiguredEndpoint?: never;
|
|
47
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
48
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
49
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
50
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
51
|
+
signingEscapePath?: boolean;
|
|
52
|
+
systemClockOffset?: number;
|
|
53
|
+
signingRegion?: string;
|
|
54
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
55
|
+
};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
2
|
+
/**
|
|
3
|
+
* @internal
|
|
4
|
+
*/
|
|
5
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
8
|
+
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
|
+
cacheMiddleware?: boolean;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
|
+
protocolSettings: {
|
|
12
|
+
defaultNamespace?: string;
|
|
13
|
+
[setting: string]: unknown;
|
|
14
|
+
};
|
|
15
|
+
apiVersion: string;
|
|
16
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
17
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
18
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
19
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
21
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
22
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
23
|
+
disableHostPrefix: boolean;
|
|
24
|
+
serviceId: string;
|
|
25
|
+
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
26
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
27
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
28
|
+
profile?: string;
|
|
29
|
+
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
31
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
32
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
33
|
+
logger: import("@smithy/types").Logger;
|
|
34
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
35
|
+
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
36
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
37
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
38
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
39
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
40
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
41
|
+
logger?: import("@smithy/types").Logger;
|
|
42
|
+
}) => import("@smithy/types").EndpointV2;
|
|
43
|
+
tls?: boolean;
|
|
44
|
+
serviceConfiguredEndpoint?: never;
|
|
45
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
46
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
47
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
48
|
+
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider;
|
|
49
|
+
signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme) => Promise<import("@smithy/types").RequestSigner>);
|
|
50
|
+
signingEscapePath?: boolean;
|
|
51
|
+
systemClockOffset?: number;
|
|
52
|
+
signingRegion?: string;
|
|
53
|
+
signerConstructor?: new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner;
|
|
54
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
|
+
import type { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
+
/**
|
|
4
|
+
* @internal
|
|
5
|
+
*/
|
|
6
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
7
|
+
apiVersion: string;
|
|
8
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
9
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
10
|
+
disableHostPrefix: boolean;
|
|
11
|
+
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
12
|
+
logger?: import("@smithy/types").Logger;
|
|
13
|
+
}) => import("@smithy/types").EndpointV2;
|
|
14
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
15
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
16
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
17
|
+
logger: import("@smithy/types").Logger;
|
|
18
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof AwsRestJsonProtocol;
|
|
19
|
+
protocolSettings: {
|
|
20
|
+
[setting: string]: unknown;
|
|
21
|
+
defaultNamespace?: string;
|
|
22
|
+
};
|
|
23
|
+
serviceId: string;
|
|
24
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
25
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
26
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
27
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { MarketplaceDiscoveryExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
/**
|
|
3
|
+
* @public
|
|
4
|
+
*/
|
|
5
|
+
export interface RuntimeExtension {
|
|
6
|
+
configure(extensionConfiguration: MarketplaceDiscoveryExtensionConfiguration): void;
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* @public
|
|
10
|
+
*/
|
|
11
|
+
export interface RuntimeExtensionsConfig {
|
|
12
|
+
extensions: RuntimeExtension[];
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @internal
|
|
16
|
+
*/
|
|
17
|
+
export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
2
|
+
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema, StaticUnionSchema } from "@smithy/types";
|
|
3
|
+
export declare var MarketplaceDiscoveryServiceException$: StaticErrorSchema;
|
|
4
|
+
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
6
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
7
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
8
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
9
|
+
/**
|
|
10
|
+
* TypeRegistry instances containing modeled errors.
|
|
11
|
+
* @internal
|
|
12
|
+
*
|
|
13
|
+
*/
|
|
14
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
15
|
+
export declare var AmazonMachineImageFulfillmentOption$: StaticStructureSchema;
|
|
16
|
+
export declare var AmazonMachineImageOperatingSystem$: StaticStructureSchema;
|
|
17
|
+
export declare var AmazonMachineImageRecommendation$: StaticStructureSchema;
|
|
18
|
+
export declare var ApiFulfillmentOption$: StaticStructureSchema;
|
|
19
|
+
export declare var AwsSupportedService$: StaticStructureSchema;
|
|
20
|
+
export declare var ByolPricingTerm$: StaticStructureSchema;
|
|
21
|
+
export declare var Category$: StaticStructureSchema;
|
|
22
|
+
export declare var CloudFormationFulfillmentOption$: StaticStructureSchema;
|
|
23
|
+
export declare var ConfigurableUpfrontPricingTerm$: StaticStructureSchema;
|
|
24
|
+
export declare var ConfigurableUpfrontRateCardItem$: StaticStructureSchema;
|
|
25
|
+
export declare var Constraints$: StaticStructureSchema;
|
|
26
|
+
export declare var ContainerFulfillmentOption$: StaticStructureSchema;
|
|
27
|
+
export declare var ContainerOperatingSystem$: StaticStructureSchema;
|
|
28
|
+
export declare var DataArtifact$: StaticStructureSchema;
|
|
29
|
+
export declare var DataExchangeFulfillmentOption$: StaticStructureSchema;
|
|
30
|
+
export declare var DimensionLabel$: StaticStructureSchema;
|
|
31
|
+
export declare var DocumentItem$: StaticStructureSchema;
|
|
32
|
+
export declare var Ec2ImageBuilderComponentFulfillmentOption$: StaticStructureSchema;
|
|
33
|
+
export declare var EksAddOnFulfillmentOption$: StaticStructureSchema;
|
|
34
|
+
export declare var EksAddOnOperatingSystem$: StaticStructureSchema;
|
|
35
|
+
export declare var FixedUpfrontPricingTerm$: StaticStructureSchema;
|
|
36
|
+
export declare var FreeTrialPricingTerm$: StaticStructureSchema;
|
|
37
|
+
export declare var FulfillmentOptionSummary$: StaticStructureSchema;
|
|
38
|
+
export declare var GetListingInput$: StaticStructureSchema;
|
|
39
|
+
export declare var GetListingOutput$: StaticStructureSchema;
|
|
40
|
+
export declare var GetOfferInput$: StaticStructureSchema;
|
|
41
|
+
export declare var GetOfferOutput$: StaticStructureSchema;
|
|
42
|
+
export declare var GetOfferSetInput$: StaticStructureSchema;
|
|
43
|
+
export declare var GetOfferSetOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var GetOfferTermsInput$: StaticStructureSchema;
|
|
45
|
+
export declare var GetOfferTermsOutput$: StaticStructureSchema;
|
|
46
|
+
export declare var GetProductInput$: StaticStructureSchema;
|
|
47
|
+
export declare var GetProductOutput$: StaticStructureSchema;
|
|
48
|
+
export declare var GrantItem$: StaticStructureSchema;
|
|
49
|
+
export declare var HelmFulfillmentOption$: StaticStructureSchema;
|
|
50
|
+
export declare var HelmOperatingSystem$: StaticStructureSchema;
|
|
51
|
+
export declare var LegalTerm$: StaticStructureSchema;
|
|
52
|
+
export declare var ListFulfillmentOptionsInput$: StaticStructureSchema;
|
|
53
|
+
export declare var ListFulfillmentOptionsOutput$: StaticStructureSchema;
|
|
54
|
+
export declare var ListingAssociatedEntity$: StaticStructureSchema;
|
|
55
|
+
export declare var ListingBadge$: StaticStructureSchema;
|
|
56
|
+
export declare var ListingFacet$: StaticStructureSchema;
|
|
57
|
+
export declare var ListingSummary$: StaticStructureSchema;
|
|
58
|
+
export declare var ListingSummaryAssociatedEntity$: StaticStructureSchema;
|
|
59
|
+
export declare var ListPurchaseOptionsInput$: StaticStructureSchema;
|
|
60
|
+
export declare var ListPurchaseOptionsOutput$: StaticStructureSchema;
|
|
61
|
+
export declare var OfferAssociatedEntity$: StaticStructureSchema;
|
|
62
|
+
export declare var OfferInformation$: StaticStructureSchema;
|
|
63
|
+
export declare var OfferSetAssociatedEntity$: StaticStructureSchema;
|
|
64
|
+
export declare var OfferSetInformation$: StaticStructureSchema;
|
|
65
|
+
export declare var PaymentScheduleTerm$: StaticStructureSchema;
|
|
66
|
+
export declare var PricingModel$: StaticStructureSchema;
|
|
67
|
+
export declare var PricingUnit$: StaticStructureSchema;
|
|
68
|
+
export declare var ProductInformation$: StaticStructureSchema;
|
|
69
|
+
export declare var ProfessionalServicesFulfillmentOption$: StaticStructureSchema;
|
|
70
|
+
export declare var PromotionalEmbeddedImage$: StaticStructureSchema;
|
|
71
|
+
export declare var PromotionalEmbeddedVideo$: StaticStructureSchema;
|
|
72
|
+
export declare var PurchaseOptionAssociatedEntity$: StaticStructureSchema;
|
|
73
|
+
export declare var PurchaseOptionBadge$: StaticStructureSchema;
|
|
74
|
+
export declare var PurchaseOptionFilter$: StaticStructureSchema;
|
|
75
|
+
export declare var PurchaseOptionSummary$: StaticStructureSchema;
|
|
76
|
+
export declare var RateCardItem$: StaticStructureSchema;
|
|
77
|
+
export declare var RecurringPaymentTerm$: StaticStructureSchema;
|
|
78
|
+
export declare var RenewalTerm$: StaticStructureSchema;
|
|
79
|
+
export declare var Resource$: StaticStructureSchema;
|
|
80
|
+
export declare var ReviewSourceSummary$: StaticStructureSchema;
|
|
81
|
+
export declare var ReviewSummary$: StaticStructureSchema;
|
|
82
|
+
export declare var SaasFulfillmentOption$: StaticStructureSchema;
|
|
83
|
+
export declare var SageMakerAlgorithmFulfillmentOption$: StaticStructureSchema;
|
|
84
|
+
export declare var SageMakerAlgorithmRecommendation$: StaticStructureSchema;
|
|
85
|
+
export declare var SageMakerModelFulfillmentOption$: StaticStructureSchema;
|
|
86
|
+
export declare var SageMakerModelRecommendation$: StaticStructureSchema;
|
|
87
|
+
export declare var ScheduleItem$: StaticStructureSchema;
|
|
88
|
+
export declare var SearchFacetsInput$: StaticStructureSchema;
|
|
89
|
+
export declare var SearchFacetsOutput$: StaticStructureSchema;
|
|
90
|
+
export declare var SearchFilter$: StaticStructureSchema;
|
|
91
|
+
export declare var SearchListingsInput$: StaticStructureSchema;
|
|
92
|
+
export declare var SearchListingsOutput$: StaticStructureSchema;
|
|
93
|
+
export declare var Selector$: StaticStructureSchema;
|
|
94
|
+
export declare var SellerEngagement$: StaticStructureSchema;
|
|
95
|
+
export declare var SellerInformation$: StaticStructureSchema;
|
|
96
|
+
export declare var SupportTerm$: StaticStructureSchema;
|
|
97
|
+
export declare var UsageBasedPricingTerm$: StaticStructureSchema;
|
|
98
|
+
export declare var UsageBasedRateCardItem$: StaticStructureSchema;
|
|
99
|
+
export declare var UseCase$: StaticStructureSchema;
|
|
100
|
+
export declare var UseCaseEntry$: StaticStructureSchema;
|
|
101
|
+
export declare var ValidityTerm$: StaticStructureSchema;
|
|
102
|
+
export declare var VariablePaymentTerm$: StaticStructureSchema;
|
|
103
|
+
export declare var FulfillmentOption$: StaticUnionSchema;
|
|
104
|
+
export declare var OfferTerm$: StaticUnionSchema;
|
|
105
|
+
export declare var PromotionalMedia$: StaticUnionSchema;
|
|
106
|
+
export declare var GetListing$: StaticOperationSchema;
|
|
107
|
+
export declare var GetOffer$: StaticOperationSchema;
|
|
108
|
+
export declare var GetOfferSet$: StaticOperationSchema;
|
|
109
|
+
export declare var GetOfferTerms$: StaticOperationSchema;
|
|
110
|
+
export declare var GetProduct$: StaticOperationSchema;
|
|
111
|
+
export declare var ListFulfillmentOptions$: StaticOperationSchema;
|
|
112
|
+
export declare var ListPurchaseOptions$: StaticOperationSchema;
|
|
113
|
+
export declare var SearchFacets$: StaticOperationSchema;
|
|
114
|
+
export declare var SearchListings$: StaticOperationSchema;
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
GetListingCommandInput,
|
|
8
|
+
GetListingCommandOutput,
|
|
9
|
+
} from "./commands/GetListingCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetOfferCommandInput,
|
|
12
|
+
GetOfferCommandOutput,
|
|
13
|
+
} from "./commands/GetOfferCommand";
|
|
14
|
+
import {
|
|
15
|
+
GetOfferSetCommandInput,
|
|
16
|
+
GetOfferSetCommandOutput,
|
|
17
|
+
} from "./commands/GetOfferSetCommand";
|
|
18
|
+
import {
|
|
19
|
+
GetOfferTermsCommandInput,
|
|
20
|
+
GetOfferTermsCommandOutput,
|
|
21
|
+
} from "./commands/GetOfferTermsCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetProductCommandInput,
|
|
24
|
+
GetProductCommandOutput,
|
|
25
|
+
} from "./commands/GetProductCommand";
|
|
26
|
+
import {
|
|
27
|
+
ListFulfillmentOptionsCommandInput,
|
|
28
|
+
ListFulfillmentOptionsCommandOutput,
|
|
29
|
+
} from "./commands/ListFulfillmentOptionsCommand";
|
|
30
|
+
import {
|
|
31
|
+
ListPurchaseOptionsCommandInput,
|
|
32
|
+
ListPurchaseOptionsCommandOutput,
|
|
33
|
+
} from "./commands/ListPurchaseOptionsCommand";
|
|
34
|
+
import {
|
|
35
|
+
SearchFacetsCommandInput,
|
|
36
|
+
SearchFacetsCommandOutput,
|
|
37
|
+
} from "./commands/SearchFacetsCommand";
|
|
38
|
+
import {
|
|
39
|
+
SearchListingsCommandInput,
|
|
40
|
+
SearchListingsCommandOutput,
|
|
41
|
+
} from "./commands/SearchListingsCommand";
|
|
42
|
+
import { MarketplaceDiscoveryClient } from "./MarketplaceDiscoveryClient";
|
|
43
|
+
export interface MarketplaceDiscovery {
|
|
44
|
+
getListing(
|
|
45
|
+
args: GetListingCommandInput,
|
|
46
|
+
options?: __HttpHandlerOptions
|
|
47
|
+
): Promise<GetListingCommandOutput>;
|
|
48
|
+
getListing(
|
|
49
|
+
args: GetListingCommandInput,
|
|
50
|
+
cb: (err: any, data?: GetListingCommandOutput) => void
|
|
51
|
+
): void;
|
|
52
|
+
getListing(
|
|
53
|
+
args: GetListingCommandInput,
|
|
54
|
+
options: __HttpHandlerOptions,
|
|
55
|
+
cb: (err: any, data?: GetListingCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
getOffer(
|
|
58
|
+
args: GetOfferCommandInput,
|
|
59
|
+
options?: __HttpHandlerOptions
|
|
60
|
+
): Promise<GetOfferCommandOutput>;
|
|
61
|
+
getOffer(
|
|
62
|
+
args: GetOfferCommandInput,
|
|
63
|
+
cb: (err: any, data?: GetOfferCommandOutput) => void
|
|
64
|
+
): void;
|
|
65
|
+
getOffer(
|
|
66
|
+
args: GetOfferCommandInput,
|
|
67
|
+
options: __HttpHandlerOptions,
|
|
68
|
+
cb: (err: any, data?: GetOfferCommandOutput) => void
|
|
69
|
+
): void;
|
|
70
|
+
getOfferSet(
|
|
71
|
+
args: GetOfferSetCommandInput,
|
|
72
|
+
options?: __HttpHandlerOptions
|
|
73
|
+
): Promise<GetOfferSetCommandOutput>;
|
|
74
|
+
getOfferSet(
|
|
75
|
+
args: GetOfferSetCommandInput,
|
|
76
|
+
cb: (err: any, data?: GetOfferSetCommandOutput) => void
|
|
77
|
+
): void;
|
|
78
|
+
getOfferSet(
|
|
79
|
+
args: GetOfferSetCommandInput,
|
|
80
|
+
options: __HttpHandlerOptions,
|
|
81
|
+
cb: (err: any, data?: GetOfferSetCommandOutput) => void
|
|
82
|
+
): void;
|
|
83
|
+
getOfferTerms(
|
|
84
|
+
args: GetOfferTermsCommandInput,
|
|
85
|
+
options?: __HttpHandlerOptions
|
|
86
|
+
): Promise<GetOfferTermsCommandOutput>;
|
|
87
|
+
getOfferTerms(
|
|
88
|
+
args: GetOfferTermsCommandInput,
|
|
89
|
+
cb: (err: any, data?: GetOfferTermsCommandOutput) => void
|
|
90
|
+
): void;
|
|
91
|
+
getOfferTerms(
|
|
92
|
+
args: GetOfferTermsCommandInput,
|
|
93
|
+
options: __HttpHandlerOptions,
|
|
94
|
+
cb: (err: any, data?: GetOfferTermsCommandOutput) => void
|
|
95
|
+
): void;
|
|
96
|
+
getProduct(
|
|
97
|
+
args: GetProductCommandInput,
|
|
98
|
+
options?: __HttpHandlerOptions
|
|
99
|
+
): Promise<GetProductCommandOutput>;
|
|
100
|
+
getProduct(
|
|
101
|
+
args: GetProductCommandInput,
|
|
102
|
+
cb: (err: any, data?: GetProductCommandOutput) => void
|
|
103
|
+
): void;
|
|
104
|
+
getProduct(
|
|
105
|
+
args: GetProductCommandInput,
|
|
106
|
+
options: __HttpHandlerOptions,
|
|
107
|
+
cb: (err: any, data?: GetProductCommandOutput) => void
|
|
108
|
+
): void;
|
|
109
|
+
listFulfillmentOptions(
|
|
110
|
+
args: ListFulfillmentOptionsCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<ListFulfillmentOptionsCommandOutput>;
|
|
113
|
+
listFulfillmentOptions(
|
|
114
|
+
args: ListFulfillmentOptionsCommandInput,
|
|
115
|
+
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
listFulfillmentOptions(
|
|
118
|
+
args: ListFulfillmentOptionsCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
listPurchaseOptions(): Promise<ListPurchaseOptionsCommandOutput>;
|
|
123
|
+
listPurchaseOptions(
|
|
124
|
+
args: ListPurchaseOptionsCommandInput,
|
|
125
|
+
options?: __HttpHandlerOptions
|
|
126
|
+
): Promise<ListPurchaseOptionsCommandOutput>;
|
|
127
|
+
listPurchaseOptions(
|
|
128
|
+
args: ListPurchaseOptionsCommandInput,
|
|
129
|
+
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void
|
|
130
|
+
): void;
|
|
131
|
+
listPurchaseOptions(
|
|
132
|
+
args: ListPurchaseOptionsCommandInput,
|
|
133
|
+
options: __HttpHandlerOptions,
|
|
134
|
+
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
searchFacets(): Promise<SearchFacetsCommandOutput>;
|
|
137
|
+
searchFacets(
|
|
138
|
+
args: SearchFacetsCommandInput,
|
|
139
|
+
options?: __HttpHandlerOptions
|
|
140
|
+
): Promise<SearchFacetsCommandOutput>;
|
|
141
|
+
searchFacets(
|
|
142
|
+
args: SearchFacetsCommandInput,
|
|
143
|
+
cb: (err: any, data?: SearchFacetsCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
searchFacets(
|
|
146
|
+
args: SearchFacetsCommandInput,
|
|
147
|
+
options: __HttpHandlerOptions,
|
|
148
|
+
cb: (err: any, data?: SearchFacetsCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
searchListings(): Promise<SearchListingsCommandOutput>;
|
|
151
|
+
searchListings(
|
|
152
|
+
args: SearchListingsCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<SearchListingsCommandOutput>;
|
|
155
|
+
searchListings(
|
|
156
|
+
args: SearchListingsCommandInput,
|
|
157
|
+
cb: (err: any, data?: SearchListingsCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
searchListings(
|
|
160
|
+
args: SearchListingsCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: SearchListingsCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
paginateGetOfferTerms(
|
|
165
|
+
args: GetOfferTermsCommandInput,
|
|
166
|
+
paginationConfig?: Pick<
|
|
167
|
+
PaginationConfiguration,
|
|
168
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
169
|
+
>
|
|
170
|
+
): Paginator<GetOfferTermsCommandOutput>;
|
|
171
|
+
paginateListFulfillmentOptions(
|
|
172
|
+
args: ListFulfillmentOptionsCommandInput,
|
|
173
|
+
paginationConfig?: Pick<
|
|
174
|
+
PaginationConfiguration,
|
|
175
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
176
|
+
>
|
|
177
|
+
): Paginator<ListFulfillmentOptionsCommandOutput>;
|
|
178
|
+
paginateListPurchaseOptions(
|
|
179
|
+
args?: ListPurchaseOptionsCommandInput,
|
|
180
|
+
paginationConfig?: Pick<
|
|
181
|
+
PaginationConfiguration,
|
|
182
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
183
|
+
>
|
|
184
|
+
): Paginator<ListPurchaseOptionsCommandOutput>;
|
|
185
|
+
paginateSearchFacets(
|
|
186
|
+
args?: SearchFacetsCommandInput,
|
|
187
|
+
paginationConfig?: Pick<
|
|
188
|
+
PaginationConfiguration,
|
|
189
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
190
|
+
>
|
|
191
|
+
): Paginator<SearchFacetsCommandOutput>;
|
|
192
|
+
paginateSearchListings(
|
|
193
|
+
args?: SearchListingsCommandInput,
|
|
194
|
+
paginationConfig?: Pick<
|
|
195
|
+
PaginationConfiguration,
|
|
196
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
197
|
+
>
|
|
198
|
+
): Paginator<SearchListingsCommandOutput>;
|
|
199
|
+
}
|
|
200
|
+
export declare class MarketplaceDiscovery
|
|
201
|
+
extends MarketplaceDiscoveryClient
|
|
202
|
+
implements MarketplaceDiscovery {}
|