@aws-sdk/client-marketplace-discovery 3.1087.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/MarketplaceDiscovery.d.ts +36 -51
- package/dist-types/ts3.4/MarketplaceDiscoveryClient.d.ts +9 -31
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -10
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/GetListingCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetOfferCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/GetOfferSetCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetOfferTermsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetProductCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListFulfillmentOptionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPurchaseOptionsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/SearchFacetsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SearchListingsCommand.d.ts +2 -4
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +14 -28
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/models/models_0.d.ts +7 -19
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -19
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +10 -25
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -4
- package/dist-types/ts3.4/runtimeExtensions.d.ts +2 -4
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -3,26 +3,14 @@ import {
|
|
|
3
3
|
PaginationConfiguration,
|
|
4
4
|
Paginator,
|
|
5
5
|
} from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
} from "./commands/GetListingCommand";
|
|
10
|
-
import {
|
|
11
|
-
GetOfferCommandInput,
|
|
12
|
-
GetOfferCommandOutput,
|
|
13
|
-
} from "./commands/GetOfferCommand";
|
|
14
|
-
import {
|
|
15
|
-
GetOfferSetCommandInput,
|
|
16
|
-
GetOfferSetCommandOutput,
|
|
17
|
-
} from "./commands/GetOfferSetCommand";
|
|
6
|
+
import { GetListingCommandInput, GetListingCommandOutput } from "./commands/GetListingCommand";
|
|
7
|
+
import { GetOfferCommandInput, GetOfferCommandOutput } from "./commands/GetOfferCommand";
|
|
8
|
+
import { GetOfferSetCommandInput, GetOfferSetCommandOutput } from "./commands/GetOfferSetCommand";
|
|
18
9
|
import {
|
|
19
10
|
GetOfferTermsCommandInput,
|
|
20
11
|
GetOfferTermsCommandOutput,
|
|
21
12
|
} from "./commands/GetOfferTermsCommand";
|
|
22
|
-
import {
|
|
23
|
-
GetProductCommandInput,
|
|
24
|
-
GetProductCommandOutput,
|
|
25
|
-
} from "./commands/GetProductCommand";
|
|
13
|
+
import { GetProductCommandInput, GetProductCommandOutput } from "./commands/GetProductCommand";
|
|
26
14
|
import {
|
|
27
15
|
ListFulfillmentOptionsCommandInput,
|
|
28
16
|
ListFulfillmentOptionsCommandOutput,
|
|
@@ -43,158 +31,155 @@ import { MarketplaceDiscoveryClient } from "./MarketplaceDiscoveryClient";
|
|
|
43
31
|
export interface MarketplaceDiscovery {
|
|
44
32
|
getListing(
|
|
45
33
|
args: GetListingCommandInput,
|
|
46
|
-
options?: __HttpHandlerOptions
|
|
34
|
+
options?: __HttpHandlerOptions,
|
|
47
35
|
): Promise<GetListingCommandOutput>;
|
|
48
36
|
getListing(
|
|
49
37
|
args: GetListingCommandInput,
|
|
50
|
-
cb: (err: any, data?: GetListingCommandOutput) => void
|
|
38
|
+
cb: (err: any, data?: GetListingCommandOutput) => void,
|
|
51
39
|
): void;
|
|
52
40
|
getListing(
|
|
53
41
|
args: GetListingCommandInput,
|
|
54
42
|
options: __HttpHandlerOptions,
|
|
55
|
-
cb: (err: any, data?: GetListingCommandOutput) => void
|
|
43
|
+
cb: (err: any, data?: GetListingCommandOutput) => void,
|
|
56
44
|
): void;
|
|
57
45
|
getOffer(
|
|
58
46
|
args: GetOfferCommandInput,
|
|
59
|
-
options?: __HttpHandlerOptions
|
|
47
|
+
options?: __HttpHandlerOptions,
|
|
60
48
|
): Promise<GetOfferCommandOutput>;
|
|
61
|
-
getOffer(
|
|
62
|
-
args: GetOfferCommandInput,
|
|
63
|
-
cb: (err: any, data?: GetOfferCommandOutput) => void
|
|
64
|
-
): void;
|
|
49
|
+
getOffer(args: GetOfferCommandInput, cb: (err: any, data?: GetOfferCommandOutput) => void): void;
|
|
65
50
|
getOffer(
|
|
66
51
|
args: GetOfferCommandInput,
|
|
67
52
|
options: __HttpHandlerOptions,
|
|
68
|
-
cb: (err: any, data?: GetOfferCommandOutput) => void
|
|
53
|
+
cb: (err: any, data?: GetOfferCommandOutput) => void,
|
|
69
54
|
): void;
|
|
70
55
|
getOfferSet(
|
|
71
56
|
args: GetOfferSetCommandInput,
|
|
72
|
-
options?: __HttpHandlerOptions
|
|
57
|
+
options?: __HttpHandlerOptions,
|
|
73
58
|
): Promise<GetOfferSetCommandOutput>;
|
|
74
59
|
getOfferSet(
|
|
75
60
|
args: GetOfferSetCommandInput,
|
|
76
|
-
cb: (err: any, data?: GetOfferSetCommandOutput) => void
|
|
61
|
+
cb: (err: any, data?: GetOfferSetCommandOutput) => void,
|
|
77
62
|
): void;
|
|
78
63
|
getOfferSet(
|
|
79
64
|
args: GetOfferSetCommandInput,
|
|
80
65
|
options: __HttpHandlerOptions,
|
|
81
|
-
cb: (err: any, data?: GetOfferSetCommandOutput) => void
|
|
66
|
+
cb: (err: any, data?: GetOfferSetCommandOutput) => void,
|
|
82
67
|
): void;
|
|
83
68
|
getOfferTerms(
|
|
84
69
|
args: GetOfferTermsCommandInput,
|
|
85
|
-
options?: __HttpHandlerOptions
|
|
70
|
+
options?: __HttpHandlerOptions,
|
|
86
71
|
): Promise<GetOfferTermsCommandOutput>;
|
|
87
72
|
getOfferTerms(
|
|
88
73
|
args: GetOfferTermsCommandInput,
|
|
89
|
-
cb: (err: any, data?: GetOfferTermsCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: GetOfferTermsCommandOutput) => void,
|
|
90
75
|
): void;
|
|
91
76
|
getOfferTerms(
|
|
92
77
|
args: GetOfferTermsCommandInput,
|
|
93
78
|
options: __HttpHandlerOptions,
|
|
94
|
-
cb: (err: any, data?: GetOfferTermsCommandOutput) => void
|
|
79
|
+
cb: (err: any, data?: GetOfferTermsCommandOutput) => void,
|
|
95
80
|
): void;
|
|
96
81
|
getProduct(
|
|
97
82
|
args: GetProductCommandInput,
|
|
98
|
-
options?: __HttpHandlerOptions
|
|
83
|
+
options?: __HttpHandlerOptions,
|
|
99
84
|
): Promise<GetProductCommandOutput>;
|
|
100
85
|
getProduct(
|
|
101
86
|
args: GetProductCommandInput,
|
|
102
|
-
cb: (err: any, data?: GetProductCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: GetProductCommandOutput) => void,
|
|
103
88
|
): void;
|
|
104
89
|
getProduct(
|
|
105
90
|
args: GetProductCommandInput,
|
|
106
91
|
options: __HttpHandlerOptions,
|
|
107
|
-
cb: (err: any, data?: GetProductCommandOutput) => void
|
|
92
|
+
cb: (err: any, data?: GetProductCommandOutput) => void,
|
|
108
93
|
): void;
|
|
109
94
|
listFulfillmentOptions(
|
|
110
95
|
args: ListFulfillmentOptionsCommandInput,
|
|
111
|
-
options?: __HttpHandlerOptions
|
|
96
|
+
options?: __HttpHandlerOptions,
|
|
112
97
|
): Promise<ListFulfillmentOptionsCommandOutput>;
|
|
113
98
|
listFulfillmentOptions(
|
|
114
99
|
args: ListFulfillmentOptionsCommandInput,
|
|
115
|
-
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void,
|
|
116
101
|
): void;
|
|
117
102
|
listFulfillmentOptions(
|
|
118
103
|
args: ListFulfillmentOptionsCommandInput,
|
|
119
104
|
options: __HttpHandlerOptions,
|
|
120
|
-
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void
|
|
105
|
+
cb: (err: any, data?: ListFulfillmentOptionsCommandOutput) => void,
|
|
121
106
|
): void;
|
|
122
107
|
listPurchaseOptions(): Promise<ListPurchaseOptionsCommandOutput>;
|
|
123
108
|
listPurchaseOptions(
|
|
124
109
|
args: ListPurchaseOptionsCommandInput,
|
|
125
|
-
options?: __HttpHandlerOptions
|
|
110
|
+
options?: __HttpHandlerOptions,
|
|
126
111
|
): Promise<ListPurchaseOptionsCommandOutput>;
|
|
127
112
|
listPurchaseOptions(
|
|
128
113
|
args: ListPurchaseOptionsCommandInput,
|
|
129
|
-
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void
|
|
114
|
+
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void,
|
|
130
115
|
): void;
|
|
131
116
|
listPurchaseOptions(
|
|
132
117
|
args: ListPurchaseOptionsCommandInput,
|
|
133
118
|
options: __HttpHandlerOptions,
|
|
134
|
-
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void
|
|
119
|
+
cb: (err: any, data?: ListPurchaseOptionsCommandOutput) => void,
|
|
135
120
|
): void;
|
|
136
121
|
searchFacets(): Promise<SearchFacetsCommandOutput>;
|
|
137
122
|
searchFacets(
|
|
138
123
|
args: SearchFacetsCommandInput,
|
|
139
|
-
options?: __HttpHandlerOptions
|
|
124
|
+
options?: __HttpHandlerOptions,
|
|
140
125
|
): Promise<SearchFacetsCommandOutput>;
|
|
141
126
|
searchFacets(
|
|
142
127
|
args: SearchFacetsCommandInput,
|
|
143
|
-
cb: (err: any, data?: SearchFacetsCommandOutput) => void
|
|
128
|
+
cb: (err: any, data?: SearchFacetsCommandOutput) => void,
|
|
144
129
|
): void;
|
|
145
130
|
searchFacets(
|
|
146
131
|
args: SearchFacetsCommandInput,
|
|
147
132
|
options: __HttpHandlerOptions,
|
|
148
|
-
cb: (err: any, data?: SearchFacetsCommandOutput) => void
|
|
133
|
+
cb: (err: any, data?: SearchFacetsCommandOutput) => void,
|
|
149
134
|
): void;
|
|
150
135
|
searchListings(): Promise<SearchListingsCommandOutput>;
|
|
151
136
|
searchListings(
|
|
152
137
|
args: SearchListingsCommandInput,
|
|
153
|
-
options?: __HttpHandlerOptions
|
|
138
|
+
options?: __HttpHandlerOptions,
|
|
154
139
|
): Promise<SearchListingsCommandOutput>;
|
|
155
140
|
searchListings(
|
|
156
141
|
args: SearchListingsCommandInput,
|
|
157
|
-
cb: (err: any, data?: SearchListingsCommandOutput) => void
|
|
142
|
+
cb: (err: any, data?: SearchListingsCommandOutput) => void,
|
|
158
143
|
): void;
|
|
159
144
|
searchListings(
|
|
160
145
|
args: SearchListingsCommandInput,
|
|
161
146
|
options: __HttpHandlerOptions,
|
|
162
|
-
cb: (err: any, data?: SearchListingsCommandOutput) => void
|
|
147
|
+
cb: (err: any, data?: SearchListingsCommandOutput) => void,
|
|
163
148
|
): void;
|
|
164
149
|
paginateGetOfferTerms(
|
|
165
150
|
args: GetOfferTermsCommandInput,
|
|
166
151
|
paginationConfig?: Pick<
|
|
167
152
|
PaginationConfiguration,
|
|
168
153
|
Exclude<keyof PaginationConfiguration, "client">
|
|
169
|
-
|
|
154
|
+
>,
|
|
170
155
|
): Paginator<GetOfferTermsCommandOutput>;
|
|
171
156
|
paginateListFulfillmentOptions(
|
|
172
157
|
args: ListFulfillmentOptionsCommandInput,
|
|
173
158
|
paginationConfig?: Pick<
|
|
174
159
|
PaginationConfiguration,
|
|
175
160
|
Exclude<keyof PaginationConfiguration, "client">
|
|
176
|
-
|
|
161
|
+
>,
|
|
177
162
|
): Paginator<ListFulfillmentOptionsCommandOutput>;
|
|
178
163
|
paginateListPurchaseOptions(
|
|
179
164
|
args?: ListPurchaseOptionsCommandInput,
|
|
180
165
|
paginationConfig?: Pick<
|
|
181
166
|
PaginationConfiguration,
|
|
182
167
|
Exclude<keyof PaginationConfiguration, "client">
|
|
183
|
-
|
|
168
|
+
>,
|
|
184
169
|
): Paginator<ListPurchaseOptionsCommandOutput>;
|
|
185
170
|
paginateSearchFacets(
|
|
186
171
|
args?: SearchFacetsCommandInput,
|
|
187
172
|
paginationConfig?: Pick<
|
|
188
173
|
PaginationConfiguration,
|
|
189
174
|
Exclude<keyof PaginationConfiguration, "client">
|
|
190
|
-
|
|
175
|
+
>,
|
|
191
176
|
): Paginator<SearchFacetsCommandOutput>;
|
|
192
177
|
paginateSearchListings(
|
|
193
178
|
args?: SearchListingsCommandInput,
|
|
194
179
|
paginationConfig?: Pick<
|
|
195
180
|
PaginationConfiguration,
|
|
196
181
|
Exclude<keyof PaginationConfiguration, "client">
|
|
197
|
-
|
|
182
|
+
>,
|
|
198
183
|
): Paginator<SearchListingsCommandOutput>;
|
|
199
184
|
}
|
|
200
185
|
export declare class MarketplaceDiscovery
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -36,26 +33,14 @@ import {
|
|
|
36
33
|
HttpAuthSchemeInputConfig,
|
|
37
34
|
HttpAuthSchemeResolvedConfig,
|
|
38
35
|
} from "./auth/httpAuthSchemeProvider";
|
|
39
|
-
import {
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
} from "./commands/GetListingCommand";
|
|
43
|
-
import {
|
|
44
|
-
GetOfferCommandInput,
|
|
45
|
-
GetOfferCommandOutput,
|
|
46
|
-
} from "./commands/GetOfferCommand";
|
|
47
|
-
import {
|
|
48
|
-
GetOfferSetCommandInput,
|
|
49
|
-
GetOfferSetCommandOutput,
|
|
50
|
-
} from "./commands/GetOfferSetCommand";
|
|
36
|
+
import { GetListingCommandInput, GetListingCommandOutput } from "./commands/GetListingCommand";
|
|
37
|
+
import { GetOfferCommandInput, GetOfferCommandOutput } from "./commands/GetOfferCommand";
|
|
38
|
+
import { GetOfferSetCommandInput, GetOfferSetCommandOutput } from "./commands/GetOfferSetCommand";
|
|
51
39
|
import {
|
|
52
40
|
GetOfferTermsCommandInput,
|
|
53
41
|
GetOfferTermsCommandOutput,
|
|
54
42
|
} from "./commands/GetOfferTermsCommand";
|
|
55
|
-
import {
|
|
56
|
-
GetProductCommandInput,
|
|
57
|
-
GetProductCommandOutput,
|
|
58
|
-
} from "./commands/GetProductCommand";
|
|
43
|
+
import { GetProductCommandInput, GetProductCommandOutput } from "./commands/GetProductCommand";
|
|
59
44
|
import {
|
|
60
45
|
ListFulfillmentOptionsCommandInput,
|
|
61
46
|
ListFulfillmentOptionsCommandOutput,
|
|
@@ -99,8 +84,7 @@ export type ServiceOutputTypes =
|
|
|
99
84
|
| ListPurchaseOptionsCommandOutput
|
|
100
85
|
| SearchFacetsCommandOutput
|
|
101
86
|
| SearchListingsCommandOutput;
|
|
102
|
-
export interface ClientDefaults
|
|
103
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
87
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
104
88
|
requestHandler?: __HttpHandlerUserInput;
|
|
105
89
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
106
90
|
urlParser?: __UrlParser;
|
|
@@ -136,8 +120,7 @@ export type MarketplaceDiscoveryClientConfigType = Partial<
|
|
|
136
120
|
EndpointInputConfig<EndpointParameters> &
|
|
137
121
|
HttpAuthSchemeInputConfig &
|
|
138
122
|
ClientInputEndpointParameters;
|
|
139
|
-
export interface MarketplaceDiscoveryClientConfig
|
|
140
|
-
extends MarketplaceDiscoveryClientConfigType {}
|
|
123
|
+
export interface MarketplaceDiscoveryClientConfig extends MarketplaceDiscoveryClientConfigType {}
|
|
141
124
|
export type MarketplaceDiscoveryClientResolvedConfigType =
|
|
142
125
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
143
126
|
Required<ClientDefaults> &
|
|
@@ -149,8 +132,7 @@ export type MarketplaceDiscoveryClientResolvedConfigType =
|
|
|
149
132
|
EndpointResolvedConfig<EndpointParameters> &
|
|
150
133
|
HttpAuthSchemeResolvedConfig &
|
|
151
134
|
ClientResolvedEndpointParameters;
|
|
152
|
-
export interface MarketplaceDiscoveryClientResolvedConfig
|
|
153
|
-
extends MarketplaceDiscoveryClientResolvedConfigType {}
|
|
135
|
+
export interface MarketplaceDiscoveryClientResolvedConfig extends MarketplaceDiscoveryClientResolvedConfigType {}
|
|
154
136
|
export declare class MarketplaceDiscoveryClient extends __Client<
|
|
155
137
|
__HttpHandlerOptions,
|
|
156
138
|
ServiceInputTypes,
|
|
@@ -158,10 +140,6 @@ export declare class MarketplaceDiscoveryClient extends __Client<
|
|
|
158
140
|
MarketplaceDiscoveryClientResolvedConfig
|
|
159
141
|
> {
|
|
160
142
|
readonly config: MarketplaceDiscoveryClientResolvedConfig;
|
|
161
|
-
constructor(
|
|
162
|
-
...[
|
|
163
|
-
configuration,
|
|
164
|
-
]: __CheckOptionalClientConfig<MarketplaceDiscoveryClientConfig>
|
|
165
|
-
);
|
|
143
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<MarketplaceDiscoveryClientConfig>);
|
|
166
144
|
destroy(): void;
|
|
167
145
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
14
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
15
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
16
|
}
|
|
22
17
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
18
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +20,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
20
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
21
|
}>;
|
|
27
22
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
23
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
24
|
) => HttpAuthExtensionConfiguration;
|
|
30
25
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
26
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
27
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { MarketplaceDiscoveryClientResolvedConfig } from "../MarketplaceDiscoveryClient";
|
|
15
|
-
export interface MarketplaceDiscoveryHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface MarketplaceDiscoveryHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface MarketplaceDiscoveryHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface MarketplaceDiscoveryHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
MarketplaceDiscoveryClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
MarketplaceDiscoveryHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultMarketplaceDiscoveryHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: MarketplaceDiscoveryClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<MarketplaceDiscoveryHttpAuthSchemeParameters>;
|
|
31
|
-
export interface MarketplaceDiscoveryHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<MarketplaceDiscoveryHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface MarketplaceDiscoveryHttpAuthSchemeProvider extends HttpAuthSchemeProvider<MarketplaceDiscoveryHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultMarketplaceDiscoveryHttpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
38
35
|
}
|
|
39
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
42
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
39
|
readonly httpAuthSchemeProvider: MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -4,22 +4,21 @@ import {
|
|
|
4
4
|
ServiceInputTypes,
|
|
5
5
|
ServiceOutputTypes,
|
|
6
6
|
} from "./MarketplaceDiscoveryClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
7
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
8
|
added: EndpointParameterInstructions,
|
|
12
9
|
plugins: (
|
|
13
10
|
CommandCtor: any,
|
|
14
11
|
clientStack: any,
|
|
15
12
|
config: any,
|
|
16
|
-
options: any
|
|
13
|
+
options: any,
|
|
17
14
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
15
|
op: string,
|
|
19
16
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
17
|
+
smithyContext?: Record<string, unknown>,
|
|
21
18
|
) => {
|
|
22
|
-
new (
|
|
19
|
+
new (
|
|
20
|
+
input: I,
|
|
21
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
22
|
I,
|
|
24
23
|
O,
|
|
25
24
|
MarketplaceDiscoveryClientResolvedConfig,
|
|
@@ -38,9 +37,4 @@ export declare const command: <
|
|
|
38
37
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
38
|
};
|
|
40
39
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
40
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetListingInput, GetListingOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetListingCommandInput extends GetListingInput {}
|
|
5
|
-
export interface GetListingCommandOutput
|
|
6
|
-
extends GetListingOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetListingCommandOutput extends GetListingOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetListingCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetListingCommandInput
|
|
8
|
+
input: GetListingCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetListingCommandInput,
|
|
13
11
|
GetListingCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetListingCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetListingCommandInput
|
|
17
|
+
input: GetListingCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetListingCommandInput,
|
|
22
20
|
GetListingCommandOutput,
|
|
@@ -2,18 +2,20 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetOfferInput, GetOfferOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetOfferCommandInput extends GetOfferInput {}
|
|
5
|
-
export interface GetOfferCommandOutput
|
|
6
|
-
extends GetOfferOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetOfferCommandOutput extends GetOfferOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetOfferCommand_base: {
|
|
9
|
-
new (
|
|
7
|
+
new (
|
|
8
|
+
input: GetOfferCommandInput,
|
|
9
|
+
): import("@smithy/core/client").CommandImpl<
|
|
10
10
|
GetOfferCommandInput,
|
|
11
11
|
GetOfferCommandOutput,
|
|
12
12
|
import("..").MarketplaceDiscoveryClientResolvedConfig,
|
|
13
13
|
import("..").ServiceInputTypes,
|
|
14
14
|
import("..").ServiceOutputTypes
|
|
15
15
|
>;
|
|
16
|
-
new (
|
|
16
|
+
new (
|
|
17
|
+
input: GetOfferCommandInput,
|
|
18
|
+
): import("@smithy/core/client").CommandImpl<
|
|
17
19
|
GetOfferCommandInput,
|
|
18
20
|
GetOfferCommandOutput,
|
|
19
21
|
import("..").MarketplaceDiscoveryClientResolvedConfig,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetOfferSetInput, GetOfferSetOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetOfferSetCommandInput extends GetOfferSetInput {}
|
|
5
|
-
export interface GetOfferSetCommandOutput
|
|
6
|
-
extends GetOfferSetOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetOfferSetCommandOutput extends GetOfferSetOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetOfferSetCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetOfferSetCommandInput
|
|
8
|
+
input: GetOfferSetCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetOfferSetCommandInput,
|
|
13
11
|
GetOfferSetCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetOfferSetCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetOfferSetCommandInput
|
|
17
|
+
input: GetOfferSetCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetOfferSetCommandInput,
|
|
22
20
|
GetOfferSetCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetOfferTermsInput, GetOfferTermsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetOfferTermsCommandInput extends GetOfferTermsInput {}
|
|
5
|
-
export interface GetOfferTermsCommandOutput
|
|
6
|
-
extends GetOfferTermsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetOfferTermsCommandOutput extends GetOfferTermsOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetOfferTermsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetOfferTermsCommandInput
|
|
8
|
+
input: GetOfferTermsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetOfferTermsCommandInput,
|
|
13
11
|
GetOfferTermsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetOfferTermsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetOfferTermsCommandInput
|
|
17
|
+
input: GetOfferTermsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetOfferTermsCommandInput,
|
|
22
20
|
GetOfferTermsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { GetProductInput, GetProductOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface GetProductCommandInput extends GetProductInput {}
|
|
5
|
-
export interface GetProductCommandOutput
|
|
6
|
-
extends GetProductOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface GetProductCommandOutput extends GetProductOutput, __MetadataBearer {}
|
|
8
6
|
declare const GetProductCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: GetProductCommandInput
|
|
8
|
+
input: GetProductCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
GetProductCommandInput,
|
|
13
11
|
GetProductCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const GetProductCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: GetProductCommandInput
|
|
17
|
+
input: GetProductCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
GetProductCommandInput,
|
|
22
20
|
GetProductCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListFulfillmentOptionsInput,
|
|
4
|
-
ListFulfillmentOptionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListFulfillmentOptionsInput, ListFulfillmentOptionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListFulfillmentOptionsCommandInput
|
|
8
|
-
extends ListFulfillmentOptionsInput {}
|
|
4
|
+
export interface ListFulfillmentOptionsCommandInput extends ListFulfillmentOptionsInput {}
|
|
9
5
|
export interface ListFulfillmentOptionsCommandOutput
|
|
10
|
-
extends ListFulfillmentOptionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListFulfillmentOptionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListFulfillmentOptionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListFulfillmentOptionsCommandInput
|
|
9
|
+
input: ListFulfillmentOptionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListFulfillmentOptionsCommandInput,
|
|
17
12
|
ListFulfillmentOptionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListFulfillmentOptionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListFulfillmentOptionsCommandInput
|
|
18
|
+
input: ListFulfillmentOptionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListFulfillmentOptionsCommandInput,
|
|
26
21
|
ListFulfillmentOptionsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPurchaseOptionsInput,
|
|
4
|
-
ListPurchaseOptionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPurchaseOptionsInput, ListPurchaseOptionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPurchaseOptionsCommandInput
|
|
8
|
-
extends ListPurchaseOptionsInput {}
|
|
4
|
+
export interface ListPurchaseOptionsCommandInput extends ListPurchaseOptionsInput {}
|
|
9
5
|
export interface ListPurchaseOptionsCommandOutput
|
|
10
|
-
extends ListPurchaseOptionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPurchaseOptionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListPurchaseOptionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPurchaseOptionsCommandInput
|
|
9
|
+
input: ListPurchaseOptionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPurchaseOptionsCommandInput,
|
|
17
12
|
ListPurchaseOptionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SearchFacetsInput, SearchFacetsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SearchFacetsCommandInput extends SearchFacetsInput {}
|
|
5
|
-
export interface SearchFacetsCommandOutput
|
|
6
|
-
extends SearchFacetsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchFacetsCommandOutput extends SearchFacetsOutput, __MetadataBearer {}
|
|
8
6
|
declare const SearchFacetsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SearchFacetsCommandInput
|
|
8
|
+
input: SearchFacetsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SearchFacetsCommandInput,
|
|
13
11
|
SearchFacetsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { SearchListingsInput, SearchListingsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface SearchListingsCommandInput extends SearchListingsInput {}
|
|
5
|
-
export interface SearchListingsCommandOutput
|
|
6
|
-
extends SearchListingsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface SearchListingsCommandOutput extends SearchListingsOutput, __MetadataBearer {}
|
|
8
6
|
declare const SearchListingsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: SearchListingsCommandInput
|
|
8
|
+
input: SearchListingsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
SearchListingsCommandInput,
|
|
13
11
|
SearchListingsCommandOutput,
|
|
@@ -22,7 +22,7 @@ export type ClientResolvedEndpointParameters = Pick<
|
|
|
22
22
|
defaultSigningName: string;
|
|
23
23
|
};
|
|
24
24
|
export declare const resolveClientEndpointParameters: <T>(
|
|
25
|
-
options: T & ClientInputEndpointParameters
|
|
25
|
+
options: T & ClientInputEndpointParameters,
|
|
26
26
|
) => T & ClientResolvedEndpointParameters;
|
|
27
27
|
export declare const commonParams: {
|
|
28
28
|
readonly UseFIPS: {
|
|
@@ -3,7 +3,8 @@ import { HttpHandlerExtensionConfiguration } from "@smithy/core/protocols";
|
|
|
3
3
|
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
4
|
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
5
|
export interface MarketplaceDiscoveryExtensionConfiguration
|
|
6
|
-
extends
|
|
6
|
+
extends
|
|
7
|
+
HttpHandlerExtensionConfiguration,
|
|
7
8
|
DefaultExtensionConfiguration,
|
|
8
9
|
AwsRegionExtensionConfiguration,
|
|
9
10
|
HttpAuthExtensionConfiguration {}
|
|
@@ -21,16 +21,14 @@ export declare const ListingBadgeType: {
|
|
|
21
21
|
readonly MULTI_PRODUCT: "MULTI_PRODUCT";
|
|
22
22
|
readonly QUICK_LAUNCH: "QUICK_LAUNCH";
|
|
23
23
|
};
|
|
24
|
-
export type ListingBadgeType =
|
|
25
|
-
(typeof ListingBadgeType)[keyof typeof ListingBadgeType];
|
|
24
|
+
export type ListingBadgeType = (typeof ListingBadgeType)[keyof typeof ListingBadgeType];
|
|
26
25
|
export declare const PricingModelType: {
|
|
27
26
|
readonly BYOL: "BYOL";
|
|
28
27
|
readonly CONTRACT: "CONTRACT";
|
|
29
28
|
readonly FREE: "FREE";
|
|
30
29
|
readonly USAGE: "USAGE";
|
|
31
30
|
};
|
|
32
|
-
export type PricingModelType =
|
|
33
|
-
(typeof PricingModelType)[keyof typeof PricingModelType];
|
|
31
|
+
export type PricingModelType = (typeof PricingModelType)[keyof typeof PricingModelType];
|
|
34
32
|
export declare const PricingUnitType: {
|
|
35
33
|
readonly BANDWIDTH: "BANDWIDTH";
|
|
36
34
|
readonly DATA: "DATA";
|
|
@@ -40,16 +38,14 @@ export declare const PricingUnitType: {
|
|
|
40
38
|
readonly UNITS: "UNITS";
|
|
41
39
|
readonly USERS: "USERS";
|
|
42
40
|
};
|
|
43
|
-
export type PricingUnitType =
|
|
44
|
-
(typeof PricingUnitType)[keyof typeof PricingUnitType];
|
|
41
|
+
export type PricingUnitType = (typeof PricingUnitType)[keyof typeof PricingUnitType];
|
|
45
42
|
export declare const ResourceContentType: {
|
|
46
43
|
readonly EMAIL: "EMAIL";
|
|
47
44
|
readonly LINK: "LINK";
|
|
48
45
|
readonly OTHER: "OTHER";
|
|
49
46
|
readonly PHONE_NUMBER: "PHONE_NUMBER";
|
|
50
47
|
};
|
|
51
|
-
export type ResourceContentType =
|
|
52
|
-
(typeof ResourceContentType)[keyof typeof ResourceContentType];
|
|
48
|
+
export type ResourceContentType = (typeof ResourceContentType)[keyof typeof ResourceContentType];
|
|
53
49
|
export declare const ResourceType: {
|
|
54
50
|
readonly MANUFACTURER_INSTRUCTIONS: "MANUFACTURER_INSTRUCTIONS";
|
|
55
51
|
readonly MANUFACTURER_SUPPORT: "MANUFACTURER_SUPPORT";
|
|
@@ -58,8 +54,7 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
|
58
54
|
export declare const ReviewSourceId: {
|
|
59
55
|
readonly AWS_MARKETPLACE: "AWS_MARKETPLACE";
|
|
60
56
|
};
|
|
61
|
-
export type ReviewSourceId =
|
|
62
|
-
(typeof ReviewSourceId)[keyof typeof ReviewSourceId];
|
|
57
|
+
export type ReviewSourceId = (typeof ReviewSourceId)[keyof typeof ReviewSourceId];
|
|
63
58
|
export declare const SellerEngagementContentType: {
|
|
64
59
|
readonly LINK: "LINK";
|
|
65
60
|
};
|
|
@@ -69,8 +64,7 @@ export declare const SellerEngagementType: {
|
|
|
69
64
|
readonly REQUEST_FOR_DEMO: "REQUEST_FOR_DEMO";
|
|
70
65
|
readonly REQUEST_FOR_PRIVATE_OFFER: "REQUEST_FOR_PRIVATE_OFFER";
|
|
71
66
|
};
|
|
72
|
-
export type SellerEngagementType =
|
|
73
|
-
(typeof SellerEngagementType)[keyof typeof SellerEngagementType];
|
|
67
|
+
export type SellerEngagementType = (typeof SellerEngagementType)[keyof typeof SellerEngagementType];
|
|
74
68
|
export declare const ValidationExceptionReason: {
|
|
75
69
|
readonly INVALID_PAGINATION_TOKEN: "INVALID_PAGINATION_TOKEN";
|
|
76
70
|
readonly MALFORMED_REQUEST_PARAMETERS: "MALFORMED_REQUEST_PARAMETERS";
|
|
@@ -110,8 +104,7 @@ export declare const DimensionLabelType: {
|
|
|
110
104
|
readonly REGION: "Region";
|
|
111
105
|
readonly SAGEMAKER_OPTION: "SagemakerOption";
|
|
112
106
|
};
|
|
113
|
-
export type DimensionLabelType =
|
|
114
|
-
(typeof DimensionLabelType)[keyof typeof DimensionLabelType];
|
|
107
|
+
export type DimensionLabelType = (typeof DimensionLabelType)[keyof typeof DimensionLabelType];
|
|
115
108
|
export declare const SelectorType: {
|
|
116
109
|
readonly DURATION: "Duration";
|
|
117
110
|
};
|
|
@@ -123,20 +116,17 @@ export declare const LegalDocumentType: {
|
|
|
123
116
|
readonly STANDARD_DSA: "StandardDsa";
|
|
124
117
|
readonly STANDARD_EULA: "StandardEula";
|
|
125
118
|
};
|
|
126
|
-
export type LegalDocumentType =
|
|
127
|
-
(typeof LegalDocumentType)[keyof typeof LegalDocumentType];
|
|
119
|
+
export type LegalDocumentType = (typeof LegalDocumentType)[keyof typeof LegalDocumentType];
|
|
128
120
|
export declare const BillingPeriodType: {
|
|
129
121
|
readonly MONTHLY: "Monthly";
|
|
130
122
|
};
|
|
131
|
-
export type BillingPeriodType =
|
|
132
|
-
(typeof BillingPeriodType)[keyof typeof BillingPeriodType];
|
|
123
|
+
export type BillingPeriodType = (typeof BillingPeriodType)[keyof typeof BillingPeriodType];
|
|
133
124
|
export declare const DeployedOnAwsStatus: {
|
|
134
125
|
readonly DEPLOYED: "DEPLOYED";
|
|
135
126
|
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
136
127
|
readonly NOT_DEPLOYED: "NOT_DEPLOYED";
|
|
137
128
|
};
|
|
138
|
-
export type DeployedOnAwsStatus =
|
|
139
|
-
(typeof DeployedOnAwsStatus)[keyof typeof DeployedOnAwsStatus];
|
|
129
|
+
export type DeployedOnAwsStatus = (typeof DeployedOnAwsStatus)[keyof typeof DeployedOnAwsStatus];
|
|
140
130
|
export declare const PurchaseOptionFilterType: {
|
|
141
131
|
readonly AVAILABILITY_STATUS: "AVAILABILITY_STATUS";
|
|
142
132
|
readonly PRODUCT_ID: "PRODUCT_ID";
|
|
@@ -150,8 +140,7 @@ export declare const PurchaseOptionType: {
|
|
|
150
140
|
readonly OFFER: "OFFER";
|
|
151
141
|
readonly OFFERSET: "OFFERSET";
|
|
152
142
|
};
|
|
153
|
-
export type PurchaseOptionType =
|
|
154
|
-
(typeof PurchaseOptionType)[keyof typeof PurchaseOptionType];
|
|
143
|
+
export type PurchaseOptionType = (typeof PurchaseOptionType)[keyof typeof PurchaseOptionType];
|
|
155
144
|
export declare const SearchFacetType: {
|
|
156
145
|
readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
|
|
157
146
|
readonly CATEGORY: "CATEGORY";
|
|
@@ -162,8 +151,7 @@ export declare const SearchFacetType: {
|
|
|
162
151
|
readonly PRICING_UNIT: "PRICING_UNIT";
|
|
163
152
|
readonly PUBLISHER: "PUBLISHER";
|
|
164
153
|
};
|
|
165
|
-
export type SearchFacetType =
|
|
166
|
-
(typeof SearchFacetType)[keyof typeof SearchFacetType];
|
|
154
|
+
export type SearchFacetType = (typeof SearchFacetType)[keyof typeof SearchFacetType];
|
|
167
155
|
export declare const SearchFilterType: {
|
|
168
156
|
readonly CATEGORY: "CATEGORY";
|
|
169
157
|
readonly DEPLOYED_ON_AWS: "DEPLOYED_ON_AWS";
|
|
@@ -175,14 +163,12 @@ export declare const SearchFilterType: {
|
|
|
175
163
|
readonly PRICING_UNIT: "PRICING_UNIT";
|
|
176
164
|
readonly PUBLISHER: "PUBLISHER";
|
|
177
165
|
};
|
|
178
|
-
export type SearchFilterType =
|
|
179
|
-
(typeof SearchFilterType)[keyof typeof SearchFilterType];
|
|
166
|
+
export type SearchFilterType = (typeof SearchFilterType)[keyof typeof SearchFilterType];
|
|
180
167
|
export declare const SearchListingsSortBy: {
|
|
181
168
|
readonly AVERAGE_CUSTOMER_RATING: "AVERAGE_CUSTOMER_RATING";
|
|
182
169
|
readonly RELEVANCE: "RELEVANCE";
|
|
183
170
|
};
|
|
184
|
-
export type SearchListingsSortBy =
|
|
185
|
-
(typeof SearchListingsSortBy)[keyof typeof SearchListingsSortBy];
|
|
171
|
+
export type SearchListingsSortBy = (typeof SearchListingsSortBy)[keyof typeof SearchListingsSortBy];
|
|
186
172
|
export declare const SearchListingsSortOrder: {
|
|
187
173
|
readonly ASCENDING: "ASCENDING";
|
|
188
174
|
readonly DESCENDING: "DESCENDING";
|
|
@@ -4,36 +4,26 @@ import { MarketplaceDiscoveryServiceException as __BaseException } from "./Marke
|
|
|
4
4
|
export declare class AccessDeniedException extends __BaseException {
|
|
5
5
|
readonly name: "AccessDeniedException";
|
|
6
6
|
readonly $fault: "client";
|
|
7
|
-
constructor(
|
|
8
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
-
);
|
|
7
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
10
8
|
}
|
|
11
9
|
export declare class InternalServerException extends __BaseException {
|
|
12
10
|
readonly name: "InternalServerException";
|
|
13
11
|
readonly $fault: "server";
|
|
14
|
-
constructor(
|
|
15
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
16
|
-
);
|
|
12
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
17
13
|
}
|
|
18
14
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
19
15
|
readonly name: "ResourceNotFoundException";
|
|
20
16
|
readonly $fault: "client";
|
|
21
|
-
constructor(
|
|
22
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
23
|
-
);
|
|
17
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
24
18
|
}
|
|
25
19
|
export declare class ThrottlingException extends __BaseException {
|
|
26
20
|
readonly name: "ThrottlingException";
|
|
27
21
|
readonly $fault: "client";
|
|
28
|
-
constructor(
|
|
29
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
30
|
-
);
|
|
22
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
31
23
|
}
|
|
32
24
|
export declare class ValidationException extends __BaseException {
|
|
33
25
|
readonly name: "ValidationException";
|
|
34
26
|
readonly $fault: "client";
|
|
35
27
|
reason?: ValidationExceptionReason | undefined;
|
|
36
|
-
constructor(
|
|
37
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
38
|
-
);
|
|
28
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
39
29
|
}
|
|
@@ -563,9 +563,7 @@ export declare namespace OfferTerm {
|
|
|
563
563
|
}
|
|
564
564
|
interface Visitor<T> {
|
|
565
565
|
byolPricingTerm: (value: ByolPricingTerm) => T;
|
|
566
|
-
configurableUpfrontPricingTerm: (
|
|
567
|
-
value: ConfigurableUpfrontPricingTerm
|
|
568
|
-
) => T;
|
|
566
|
+
configurableUpfrontPricingTerm: (value: ConfigurableUpfrontPricingTerm) => T;
|
|
569
567
|
fixedUpfrontPricingTerm: (value: FixedUpfrontPricingTerm) => T;
|
|
570
568
|
freeTrialPricingTerm: (value: FreeTrialPricingTerm) => T;
|
|
571
569
|
legalTerm: (value: LegalTerm) => T;
|
|
@@ -934,30 +932,20 @@ export declare namespace FulfillmentOption {
|
|
|
934
932
|
$unknown: [string, any];
|
|
935
933
|
}
|
|
936
934
|
interface Visitor<T> {
|
|
937
|
-
amazonMachineImageFulfillmentOption: (
|
|
938
|
-
value: AmazonMachineImageFulfillmentOption
|
|
939
|
-
) => T;
|
|
935
|
+
amazonMachineImageFulfillmentOption: (value: AmazonMachineImageFulfillmentOption) => T;
|
|
940
936
|
apiFulfillmentOption: (value: ApiFulfillmentOption) => T;
|
|
941
|
-
cloudFormationFulfillmentOption: (
|
|
942
|
-
value: CloudFormationFulfillmentOption
|
|
943
|
-
) => T;
|
|
937
|
+
cloudFormationFulfillmentOption: (value: CloudFormationFulfillmentOption) => T;
|
|
944
938
|
containerFulfillmentOption: (value: ContainerFulfillmentOption) => T;
|
|
945
939
|
helmFulfillmentOption: (value: HelmFulfillmentOption) => T;
|
|
946
940
|
eksAddOnFulfillmentOption: (value: EksAddOnFulfillmentOption) => T;
|
|
947
941
|
ec2ImageBuilderComponentFulfillmentOption: (
|
|
948
|
-
value: Ec2ImageBuilderComponentFulfillmentOption
|
|
942
|
+
value: Ec2ImageBuilderComponentFulfillmentOption,
|
|
949
943
|
) => T;
|
|
950
944
|
dataExchangeFulfillmentOption: (value: DataExchangeFulfillmentOption) => T;
|
|
951
|
-
professionalServicesFulfillmentOption: (
|
|
952
|
-
value: ProfessionalServicesFulfillmentOption
|
|
953
|
-
) => T;
|
|
945
|
+
professionalServicesFulfillmentOption: (value: ProfessionalServicesFulfillmentOption) => T;
|
|
954
946
|
saasFulfillmentOption: (value: SaasFulfillmentOption) => T;
|
|
955
|
-
sageMakerAlgorithmFulfillmentOption: (
|
|
956
|
-
|
|
957
|
-
) => T;
|
|
958
|
-
sageMakerModelFulfillmentOption: (
|
|
959
|
-
value: SageMakerModelFulfillmentOption
|
|
960
|
-
) => T;
|
|
947
|
+
sageMakerAlgorithmFulfillmentOption: (value: SageMakerAlgorithmFulfillmentOption) => T;
|
|
948
|
+
sageMakerModelFulfillmentOption: (value: SageMakerModelFulfillmentOption) => T;
|
|
961
949
|
_: (name: string, value: any) => T;
|
|
962
950
|
}
|
|
963
951
|
}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { PaginationConfiguration } from "@smithy/types";
|
|
2
2
|
import { MarketplaceDiscoveryClient } from "../MarketplaceDiscoveryClient";
|
|
3
|
-
export interface MarketplaceDiscoveryPaginationConfiguration
|
|
4
|
-
extends PaginationConfiguration {
|
|
3
|
+
export interface MarketplaceDiscoveryPaginationConfiguration extends PaginationConfiguration {
|
|
5
4
|
client: MarketplaceDiscoveryClient;
|
|
6
5
|
}
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
2
|
import { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceDiscoveryClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -10,24 +8,16 @@ export declare const getRuntimeConfig: (
|
|
|
10
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
9
|
credentialDefaultProvider:
|
|
12
10
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
-
| ((
|
|
14
|
-
_: unknown
|
|
15
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
12
|
defaultUserAgentProvider: (
|
|
17
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
13
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
18
14
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
15
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
16
|
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
-
requestHandler:
|
|
22
|
-
| import("@smithy/core/protocols").HttpHandler<any>
|
|
23
|
-
| RequestHandler;
|
|
17
|
+
requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
|
|
24
18
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
19
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
20
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
21
|
) => Promise<Uint8Array>;
|
|
32
22
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
33
23
|
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
@@ -55,13 +45,8 @@ export declare const getRuntimeConfig: (
|
|
|
55
45
|
logger: import("@smithy/types").Logger;
|
|
56
46
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
userAgentAppId?:
|
|
59
|
-
|
|
60
|
-
| undefined
|
|
61
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
62
|
-
retryStrategy?:
|
|
63
|
-
| import("@smithy/types").RetryStrategy
|
|
64
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
48
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
49
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
65
50
|
endpoint?:
|
|
66
51
|
| ((
|
|
67
52
|
| string
|
|
@@ -83,7 +68,7 @@ export declare const getRuntimeConfig: (
|
|
|
83
68
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
84
69
|
context?: {
|
|
85
70
|
logger?: import("@smithy/types").Logger;
|
|
86
|
-
}
|
|
71
|
+
},
|
|
87
72
|
) => import("@smithy/types").EndpointV2;
|
|
88
73
|
tls?: boolean;
|
|
89
74
|
serviceConfiguredEndpoint?: never;
|
|
@@ -96,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
96
81
|
signer?:
|
|
97
82
|
| import("@smithy/types").RequestSigner
|
|
98
83
|
| ((
|
|
99
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
100
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
101
86
|
signingEscapePath?: boolean;
|
|
102
87
|
systemClockOffset?: number;
|
|
103
88
|
signingRegion?: string;
|
|
104
89
|
signerConstructor?: new (
|
|
105
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
106
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
107
92
|
) => import("@smithy/types").RequestSigner;
|
|
108
93
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
2
|
import { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceDiscoveryClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
6
4
|
runtime: string;
|
|
7
5
|
defaultsMode: import("@smithy/types").Provider<
|
|
8
6
|
import("@smithy/core/client").ResolvedDefaultsMode
|
|
@@ -12,23 +10,17 @@ export declare const getRuntimeConfig: (
|
|
|
12
10
|
credentialDefaultProvider:
|
|
13
11
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
14
12
|
| ((
|
|
15
|
-
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
13
|
+
init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit,
|
|
16
14
|
) => import("@aws-sdk/credential-provider-node").MemoizedRuntimeConfigAwsCredentialIdentityProvider);
|
|
17
15
|
defaultUserAgentProvider: (
|
|
18
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
16
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
19
17
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
20
18
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
21
19
|
region: string | import("@smithy/types").Provider<string>;
|
|
22
|
-
requestHandler:
|
|
23
|
-
| RequestHandler
|
|
24
|
-
| import("@smithy/core/protocols").HttpHandler<any>;
|
|
20
|
+
requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
|
|
25
21
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
26
22
|
streamCollector: (
|
|
27
|
-
stream:
|
|
28
|
-
| import("stream").Readable
|
|
29
|
-
| import("stream/web").ReadableStream
|
|
30
|
-
| ReadableStream
|
|
31
|
-
| Blob
|
|
23
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
32
24
|
) => Promise<Uint8Array>;
|
|
33
25
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
34
26
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
@@ -55,9 +47,7 @@ export declare const getRuntimeConfig: (
|
|
|
55
47
|
logger: import("@smithy/types").Logger;
|
|
56
48
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
57
49
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
58
|
-
retryStrategy?:
|
|
59
|
-
| import("@smithy/types").RetryStrategy
|
|
60
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
50
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
61
51
|
endpoint?:
|
|
62
52
|
| ((
|
|
63
53
|
| string
|
|
@@ -79,7 +69,7 @@ export declare const getRuntimeConfig: (
|
|
|
79
69
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
80
70
|
context?: {
|
|
81
71
|
logger?: import("@smithy/types").Logger;
|
|
82
|
-
}
|
|
72
|
+
},
|
|
83
73
|
) => import("@smithy/types").EndpointV2;
|
|
84
74
|
tls?: boolean;
|
|
85
75
|
serviceConfiguredEndpoint?: never;
|
|
@@ -91,13 +81,13 @@ export declare const getRuntimeConfig: (
|
|
|
91
81
|
signer?:
|
|
92
82
|
| import("@smithy/types").RequestSigner
|
|
93
83
|
| ((
|
|
94
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
84
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
95
85
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
96
86
|
signingEscapePath?: boolean;
|
|
97
87
|
systemClockOffset?: number;
|
|
98
88
|
signingRegion?: string;
|
|
99
89
|
signerConstructor?: new (
|
|
100
90
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
101
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
102
92
|
) => import("@smithy/types").RequestSigner;
|
|
103
93
|
};
|
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
2
|
-
export declare const getRuntimeConfig: (
|
|
3
|
-
config: MarketplaceDiscoveryClientConfig
|
|
4
|
-
) => {
|
|
2
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
5
3
|
runtime: string;
|
|
6
4
|
requestHandler:
|
|
7
5
|
| import("@smithy/types").NodeHttpHandlerOptions
|
|
@@ -23,11 +21,7 @@ export declare const getRuntimeConfig: (
|
|
|
23
21
|
urlParser: import("@smithy/types").UrlParser;
|
|
24
22
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
25
23
|
streamCollector: (
|
|
26
|
-
stream:
|
|
27
|
-
| import("stream").Readable
|
|
28
|
-
| import("stream/web").ReadableStream
|
|
29
|
-
| ReadableStream
|
|
30
|
-
| Blob
|
|
24
|
+
stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob,
|
|
31
25
|
) => Promise<Uint8Array>;
|
|
32
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
33
27
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -42,30 +36,21 @@ export declare const getRuntimeConfig: (
|
|
|
42
36
|
region: string | import("@smithy/types").Provider<any>;
|
|
43
37
|
profile?: string;
|
|
44
38
|
defaultUserAgentProvider: (
|
|
45
|
-
config?: import("@aws-sdk/core/client").PreviouslyResolved
|
|
39
|
+
config?: import("@aws-sdk/core/client").PreviouslyResolved,
|
|
46
40
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
47
41
|
credentialDefaultProvider:
|
|
48
42
|
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
49
|
-
| ((
|
|
50
|
-
_: unknown
|
|
51
|
-
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
43
|
+
| ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
52
44
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
53
45
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
54
46
|
logger: import("@smithy/types").Logger;
|
|
55
47
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
56
48
|
defaultsMode:
|
|
57
49
|
| import("@smithy/core/client").DefaultsMode
|
|
58
|
-
| import("@smithy/types").Provider<
|
|
59
|
-
import("@smithy/core/client").DefaultsMode
|
|
60
|
-
>;
|
|
50
|
+
| import("@smithy/types").Provider<import("@smithy/core/client").DefaultsMode>;
|
|
61
51
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
62
|
-
userAgentAppId?:
|
|
63
|
-
|
|
64
|
-
| undefined
|
|
65
|
-
| import("@smithy/types").Provider<string | undefined>;
|
|
66
|
-
retryStrategy?:
|
|
67
|
-
| import("@smithy/types").RetryStrategy
|
|
68
|
-
| import("@smithy/types").RetryStrategyV2;
|
|
52
|
+
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
53
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
69
54
|
endpoint?:
|
|
70
55
|
| ((
|
|
71
56
|
| string
|
|
@@ -87,7 +72,7 @@ export declare const getRuntimeConfig: (
|
|
|
87
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
88
73
|
context?: {
|
|
89
74
|
logger?: import("@smithy/types").Logger;
|
|
90
|
-
}
|
|
75
|
+
},
|
|
91
76
|
) => import("@smithy/types").EndpointV2;
|
|
92
77
|
tls?: boolean;
|
|
93
78
|
serviceConfiguredEndpoint?: never;
|
|
@@ -100,13 +85,13 @@ export declare const getRuntimeConfig: (
|
|
|
100
85
|
signer?:
|
|
101
86
|
| import("@smithy/types").RequestSigner
|
|
102
87
|
| ((
|
|
103
|
-
authScheme?: import("@smithy/types").AuthScheme
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme,
|
|
104
89
|
) => Promise<import("@smithy/types").RequestSigner>);
|
|
105
90
|
signingEscapePath?: boolean;
|
|
106
91
|
systemClockOffset?: number;
|
|
107
92
|
signingRegion?: string;
|
|
108
93
|
signerConstructor?: new (
|
|
109
94
|
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
110
|
-
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit,
|
|
111
96
|
) => import("@smithy/types").RequestSigner;
|
|
112
97
|
};
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
2
2
|
import { MarketplaceDiscoveryClientConfig } from "./MarketplaceDiscoveryClient";
|
|
3
|
-
export declare const getRuntimeConfig: (
|
|
4
|
-
config: MarketplaceDiscoveryClientConfig
|
|
5
|
-
) => {
|
|
3
|
+
export declare const getRuntimeConfig: (config: MarketplaceDiscoveryClientConfig) => {
|
|
6
4
|
apiVersion: string;
|
|
7
5
|
base64Decoder: import("@smithy/types").Decoder;
|
|
8
6
|
base64Encoder: (_input: Uint8Array | string) => string;
|
|
@@ -11,7 +9,7 @@ export declare const getRuntimeConfig: (
|
|
|
11
9
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
12
10
|
context?: {
|
|
13
11
|
logger?: import("@smithy/types").Logger;
|
|
14
|
-
}
|
|
12
|
+
},
|
|
15
13
|
) => import("@smithy/types").EndpointV2;
|
|
16
14
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
17
15
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").MarketplaceDiscoveryHttpAuthSchemeProvider;
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MarketplaceDiscoveryExtensionConfiguration } from "./extensionConfiguration";
|
|
2
2
|
export interface RuntimeExtension {
|
|
3
|
-
configure(
|
|
4
|
-
extensionConfiguration: MarketplaceDiscoveryExtensionConfiguration
|
|
5
|
-
): void;
|
|
3
|
+
configure(extensionConfiguration: MarketplaceDiscoveryExtensionConfiguration): void;
|
|
6
4
|
}
|
|
7
5
|
export interface RuntimeExtensionsConfig {
|
|
8
6
|
extensions: RuntimeExtension[];
|
|
9
7
|
}
|
|
10
8
|
export declare const resolveRuntimeExtensions: (
|
|
11
9
|
runtimeConfig: any,
|
|
12
|
-
extensions: RuntimeExtension[]
|
|
10
|
+
extensions: RuntimeExtension[],
|
|
13
11
|
) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-marketplace-discovery",
|
|
3
|
+
"version": "3.1088.0",
|
|
3
4
|
"description": "AWS SDK for JavaScript Marketplace Discovery Client for Node.js, Browser and React Native",
|
|
4
|
-
"
|
|
5
|
+
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-marketplace-discovery",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "AWS SDK for JavaScript Team",
|
|
9
|
+
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
10
|
+
},
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
14
|
+
"directory": "clients/client-marketplace-discovery"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist-*/**"
|
|
18
|
+
],
|
|
19
|
+
"sideEffects": false,
|
|
20
|
+
"main": "./dist-cjs/index.js",
|
|
21
|
+
"module": "./dist-es/index.js",
|
|
22
|
+
"browser": {
|
|
23
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
24
|
+
},
|
|
25
|
+
"types": "./dist-types/index.d.ts",
|
|
26
|
+
"typesVersions": {
|
|
27
|
+
"<4.5": {
|
|
28
|
+
"dist-types/*": [
|
|
29
|
+
"dist-types/ts3.4/*"
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"react-native": {
|
|
34
|
+
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
35
|
+
},
|
|
5
36
|
"scripts": {
|
|
6
37
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
38
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -14,17 +45,13 @@
|
|
|
14
45
|
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
46
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
47
|
},
|
|
17
|
-
"main": "./dist-cjs/index.js",
|
|
18
|
-
"types": "./dist-types/index.d.ts",
|
|
19
|
-
"module": "./dist-es/index.js",
|
|
20
|
-
"sideEffects": false,
|
|
21
48
|
"dependencies": {
|
|
22
|
-
"@aws-sdk/core": "^3.975.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
-
"@aws-sdk/types": "^3.974.
|
|
25
|
-
"@smithy/core": "^3.29.
|
|
26
|
-
"@smithy/fetch-http-handler": "^5.6.
|
|
27
|
-
"@smithy/node-http-handler": "^4.9.
|
|
49
|
+
"@aws-sdk/core": "^3.975.3",
|
|
50
|
+
"@aws-sdk/credential-provider-node": "^3.972.69",
|
|
51
|
+
"@aws-sdk/types": "^3.974.2",
|
|
52
|
+
"@smithy/core": "^3.29.4",
|
|
53
|
+
"@smithy/fetch-http-handler": "^5.6.6",
|
|
54
|
+
"@smithy/node-http-handler": "^4.9.6",
|
|
28
55
|
"@smithy/types": "^4.16.1",
|
|
29
56
|
"tslib": "^2.6.2"
|
|
30
57
|
},
|
|
@@ -38,32 +65,5 @@
|
|
|
38
65
|
},
|
|
39
66
|
"engines": {
|
|
40
67
|
"node": ">=20.0.0"
|
|
41
|
-
},
|
|
42
|
-
"typesVersions": {
|
|
43
|
-
"<4.5": {
|
|
44
|
-
"dist-types/*": [
|
|
45
|
-
"dist-types/ts3.4/*"
|
|
46
|
-
]
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
"files": [
|
|
50
|
-
"dist-*/**"
|
|
51
|
-
],
|
|
52
|
-
"author": {
|
|
53
|
-
"name": "AWS SDK for JavaScript Team",
|
|
54
|
-
"url": "https://aws.amazon.com/sdk-for-javascript/"
|
|
55
|
-
},
|
|
56
|
-
"license": "Apache-2.0",
|
|
57
|
-
"browser": {
|
|
58
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.browser"
|
|
59
|
-
},
|
|
60
|
-
"react-native": {
|
|
61
|
-
"./dist-es/runtimeConfig": "./dist-es/runtimeConfig.native"
|
|
62
|
-
},
|
|
63
|
-
"homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-marketplace-discovery",
|
|
64
|
-
"repository": {
|
|
65
|
-
"type": "git",
|
|
66
|
-
"url": "https://github.com/aws/aws-sdk-js-v3.git",
|
|
67
|
-
"directory": "clients/client-marketplace-discovery"
|
|
68
68
|
}
|
|
69
69
|
}
|