@aws-sdk/client-marketplace-agreement 3.1087.0 → 3.1089.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/MarketplaceAgreement.d.ts +83 -113
- package/dist-types/ts3.4/MarketplaceAgreementClient.d.ts +5 -15
- 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/AcceptAgreementCancellationRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/AcceptAgreementPaymentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/AcceptAgreementRequestCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/BatchCreateBillingAdjustmentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelAgreementCancellationRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelAgreementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CancelAgreementPaymentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAgreementRequestCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeAgreementCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAgreementCancellationRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAgreementEntitlementsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetAgreementPaymentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAgreementTermsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetBillingAdjustmentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAgreementCancellationRequestsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAgreementChargesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListAgreementInvoiceLineItemsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListAgreementPaymentRequestsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListBillingAdjustmentRequestsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/RejectAgreementCancellationRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/RejectAgreementPaymentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SearchAgreementsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/SendAgreementCancellationRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/SendAgreementPaymentRequestCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdatePurchaseOrdersCommand.d.ts +5 -10
- 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 +3 -6
- package/dist-types/ts3.4/models/errors.d.ts +7 -23
- package/dist-types/ts3.4/models/models_0.d.ts +5 -13
- 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
|
@@ -107,417 +107,387 @@ import { MarketplaceAgreementClient } from "./MarketplaceAgreementClient";
|
|
|
107
107
|
export interface MarketplaceAgreement {
|
|
108
108
|
acceptAgreementCancellationRequest(
|
|
109
109
|
args: AcceptAgreementCancellationRequestCommandInput,
|
|
110
|
-
options?: __HttpHandlerOptions
|
|
110
|
+
options?: __HttpHandlerOptions,
|
|
111
111
|
): Promise<AcceptAgreementCancellationRequestCommandOutput>;
|
|
112
112
|
acceptAgreementCancellationRequest(
|
|
113
113
|
args: AcceptAgreementCancellationRequestCommandInput,
|
|
114
|
-
cb: (
|
|
115
|
-
err: any,
|
|
116
|
-
data?: AcceptAgreementCancellationRequestCommandOutput
|
|
117
|
-
) => void
|
|
114
|
+
cb: (err: any, data?: AcceptAgreementCancellationRequestCommandOutput) => void,
|
|
118
115
|
): void;
|
|
119
116
|
acceptAgreementCancellationRequest(
|
|
120
117
|
args: AcceptAgreementCancellationRequestCommandInput,
|
|
121
118
|
options: __HttpHandlerOptions,
|
|
122
|
-
cb: (
|
|
123
|
-
err: any,
|
|
124
|
-
data?: AcceptAgreementCancellationRequestCommandOutput
|
|
125
|
-
) => void
|
|
119
|
+
cb: (err: any, data?: AcceptAgreementCancellationRequestCommandOutput) => void,
|
|
126
120
|
): void;
|
|
127
121
|
acceptAgreementPaymentRequest(
|
|
128
122
|
args: AcceptAgreementPaymentRequestCommandInput,
|
|
129
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
130
124
|
): Promise<AcceptAgreementPaymentRequestCommandOutput>;
|
|
131
125
|
acceptAgreementPaymentRequest(
|
|
132
126
|
args: AcceptAgreementPaymentRequestCommandInput,
|
|
133
|
-
cb: (err: any, data?: AcceptAgreementPaymentRequestCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: AcceptAgreementPaymentRequestCommandOutput) => void,
|
|
134
128
|
): void;
|
|
135
129
|
acceptAgreementPaymentRequest(
|
|
136
130
|
args: AcceptAgreementPaymentRequestCommandInput,
|
|
137
131
|
options: __HttpHandlerOptions,
|
|
138
|
-
cb: (err: any, data?: AcceptAgreementPaymentRequestCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: AcceptAgreementPaymentRequestCommandOutput) => void,
|
|
139
133
|
): void;
|
|
140
134
|
acceptAgreementRequest(
|
|
141
135
|
args: AcceptAgreementRequestCommandInput,
|
|
142
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
143
137
|
): Promise<AcceptAgreementRequestCommandOutput>;
|
|
144
138
|
acceptAgreementRequest(
|
|
145
139
|
args: AcceptAgreementRequestCommandInput,
|
|
146
|
-
cb: (err: any, data?: AcceptAgreementRequestCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: AcceptAgreementRequestCommandOutput) => void,
|
|
147
141
|
): void;
|
|
148
142
|
acceptAgreementRequest(
|
|
149
143
|
args: AcceptAgreementRequestCommandInput,
|
|
150
144
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (err: any, data?: AcceptAgreementRequestCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: AcceptAgreementRequestCommandOutput) => void,
|
|
152
146
|
): void;
|
|
153
147
|
batchCreateBillingAdjustmentRequest(
|
|
154
148
|
args: BatchCreateBillingAdjustmentRequestCommandInput,
|
|
155
|
-
options?: __HttpHandlerOptions
|
|
149
|
+
options?: __HttpHandlerOptions,
|
|
156
150
|
): Promise<BatchCreateBillingAdjustmentRequestCommandOutput>;
|
|
157
151
|
batchCreateBillingAdjustmentRequest(
|
|
158
152
|
args: BatchCreateBillingAdjustmentRequestCommandInput,
|
|
159
|
-
cb: (
|
|
160
|
-
err: any,
|
|
161
|
-
data?: BatchCreateBillingAdjustmentRequestCommandOutput
|
|
162
|
-
) => void
|
|
153
|
+
cb: (err: any, data?: BatchCreateBillingAdjustmentRequestCommandOutput) => void,
|
|
163
154
|
): void;
|
|
164
155
|
batchCreateBillingAdjustmentRequest(
|
|
165
156
|
args: BatchCreateBillingAdjustmentRequestCommandInput,
|
|
166
157
|
options: __HttpHandlerOptions,
|
|
167
|
-
cb: (
|
|
168
|
-
err: any,
|
|
169
|
-
data?: BatchCreateBillingAdjustmentRequestCommandOutput
|
|
170
|
-
) => void
|
|
158
|
+
cb: (err: any, data?: BatchCreateBillingAdjustmentRequestCommandOutput) => void,
|
|
171
159
|
): void;
|
|
172
160
|
cancelAgreement(
|
|
173
161
|
args: CancelAgreementCommandInput,
|
|
174
|
-
options?: __HttpHandlerOptions
|
|
162
|
+
options?: __HttpHandlerOptions,
|
|
175
163
|
): Promise<CancelAgreementCommandOutput>;
|
|
176
164
|
cancelAgreement(
|
|
177
165
|
args: CancelAgreementCommandInput,
|
|
178
|
-
cb: (err: any, data?: CancelAgreementCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CancelAgreementCommandOutput) => void,
|
|
179
167
|
): void;
|
|
180
168
|
cancelAgreement(
|
|
181
169
|
args: CancelAgreementCommandInput,
|
|
182
170
|
options: __HttpHandlerOptions,
|
|
183
|
-
cb: (err: any, data?: CancelAgreementCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: CancelAgreementCommandOutput) => void,
|
|
184
172
|
): void;
|
|
185
173
|
cancelAgreementCancellationRequest(
|
|
186
174
|
args: CancelAgreementCancellationRequestCommandInput,
|
|
187
|
-
options?: __HttpHandlerOptions
|
|
175
|
+
options?: __HttpHandlerOptions,
|
|
188
176
|
): Promise<CancelAgreementCancellationRequestCommandOutput>;
|
|
189
177
|
cancelAgreementCancellationRequest(
|
|
190
178
|
args: CancelAgreementCancellationRequestCommandInput,
|
|
191
|
-
cb: (
|
|
192
|
-
err: any,
|
|
193
|
-
data?: CancelAgreementCancellationRequestCommandOutput
|
|
194
|
-
) => void
|
|
179
|
+
cb: (err: any, data?: CancelAgreementCancellationRequestCommandOutput) => void,
|
|
195
180
|
): void;
|
|
196
181
|
cancelAgreementCancellationRequest(
|
|
197
182
|
args: CancelAgreementCancellationRequestCommandInput,
|
|
198
183
|
options: __HttpHandlerOptions,
|
|
199
|
-
cb: (
|
|
200
|
-
err: any,
|
|
201
|
-
data?: CancelAgreementCancellationRequestCommandOutput
|
|
202
|
-
) => void
|
|
184
|
+
cb: (err: any, data?: CancelAgreementCancellationRequestCommandOutput) => void,
|
|
203
185
|
): void;
|
|
204
186
|
cancelAgreementPaymentRequest(
|
|
205
187
|
args: CancelAgreementPaymentRequestCommandInput,
|
|
206
|
-
options?: __HttpHandlerOptions
|
|
188
|
+
options?: __HttpHandlerOptions,
|
|
207
189
|
): Promise<CancelAgreementPaymentRequestCommandOutput>;
|
|
208
190
|
cancelAgreementPaymentRequest(
|
|
209
191
|
args: CancelAgreementPaymentRequestCommandInput,
|
|
210
|
-
cb: (err: any, data?: CancelAgreementPaymentRequestCommandOutput) => void
|
|
192
|
+
cb: (err: any, data?: CancelAgreementPaymentRequestCommandOutput) => void,
|
|
211
193
|
): void;
|
|
212
194
|
cancelAgreementPaymentRequest(
|
|
213
195
|
args: CancelAgreementPaymentRequestCommandInput,
|
|
214
196
|
options: __HttpHandlerOptions,
|
|
215
|
-
cb: (err: any, data?: CancelAgreementPaymentRequestCommandOutput) => void
|
|
197
|
+
cb: (err: any, data?: CancelAgreementPaymentRequestCommandOutput) => void,
|
|
216
198
|
): void;
|
|
217
199
|
createAgreementRequest(
|
|
218
200
|
args: CreateAgreementRequestCommandInput,
|
|
219
|
-
options?: __HttpHandlerOptions
|
|
201
|
+
options?: __HttpHandlerOptions,
|
|
220
202
|
): Promise<CreateAgreementRequestCommandOutput>;
|
|
221
203
|
createAgreementRequest(
|
|
222
204
|
args: CreateAgreementRequestCommandInput,
|
|
223
|
-
cb: (err: any, data?: CreateAgreementRequestCommandOutput) => void
|
|
205
|
+
cb: (err: any, data?: CreateAgreementRequestCommandOutput) => void,
|
|
224
206
|
): void;
|
|
225
207
|
createAgreementRequest(
|
|
226
208
|
args: CreateAgreementRequestCommandInput,
|
|
227
209
|
options: __HttpHandlerOptions,
|
|
228
|
-
cb: (err: any, data?: CreateAgreementRequestCommandOutput) => void
|
|
210
|
+
cb: (err: any, data?: CreateAgreementRequestCommandOutput) => void,
|
|
229
211
|
): void;
|
|
230
212
|
describeAgreement(
|
|
231
213
|
args: DescribeAgreementCommandInput,
|
|
232
|
-
options?: __HttpHandlerOptions
|
|
214
|
+
options?: __HttpHandlerOptions,
|
|
233
215
|
): Promise<DescribeAgreementCommandOutput>;
|
|
234
216
|
describeAgreement(
|
|
235
217
|
args: DescribeAgreementCommandInput,
|
|
236
|
-
cb: (err: any, data?: DescribeAgreementCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DescribeAgreementCommandOutput) => void,
|
|
237
219
|
): void;
|
|
238
220
|
describeAgreement(
|
|
239
221
|
args: DescribeAgreementCommandInput,
|
|
240
222
|
options: __HttpHandlerOptions,
|
|
241
|
-
cb: (err: any, data?: DescribeAgreementCommandOutput) => void
|
|
223
|
+
cb: (err: any, data?: DescribeAgreementCommandOutput) => void,
|
|
242
224
|
): void;
|
|
243
225
|
getAgreementCancellationRequest(
|
|
244
226
|
args: GetAgreementCancellationRequestCommandInput,
|
|
245
|
-
options?: __HttpHandlerOptions
|
|
227
|
+
options?: __HttpHandlerOptions,
|
|
246
228
|
): Promise<GetAgreementCancellationRequestCommandOutput>;
|
|
247
229
|
getAgreementCancellationRequest(
|
|
248
230
|
args: GetAgreementCancellationRequestCommandInput,
|
|
249
|
-
cb: (err: any, data?: GetAgreementCancellationRequestCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: GetAgreementCancellationRequestCommandOutput) => void,
|
|
250
232
|
): void;
|
|
251
233
|
getAgreementCancellationRequest(
|
|
252
234
|
args: GetAgreementCancellationRequestCommandInput,
|
|
253
235
|
options: __HttpHandlerOptions,
|
|
254
|
-
cb: (err: any, data?: GetAgreementCancellationRequestCommandOutput) => void
|
|
236
|
+
cb: (err: any, data?: GetAgreementCancellationRequestCommandOutput) => void,
|
|
255
237
|
): void;
|
|
256
238
|
getAgreementEntitlements(
|
|
257
239
|
args: GetAgreementEntitlementsCommandInput,
|
|
258
|
-
options?: __HttpHandlerOptions
|
|
240
|
+
options?: __HttpHandlerOptions,
|
|
259
241
|
): Promise<GetAgreementEntitlementsCommandOutput>;
|
|
260
242
|
getAgreementEntitlements(
|
|
261
243
|
args: GetAgreementEntitlementsCommandInput,
|
|
262
|
-
cb: (err: any, data?: GetAgreementEntitlementsCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: GetAgreementEntitlementsCommandOutput) => void,
|
|
263
245
|
): void;
|
|
264
246
|
getAgreementEntitlements(
|
|
265
247
|
args: GetAgreementEntitlementsCommandInput,
|
|
266
248
|
options: __HttpHandlerOptions,
|
|
267
|
-
cb: (err: any, data?: GetAgreementEntitlementsCommandOutput) => void
|
|
249
|
+
cb: (err: any, data?: GetAgreementEntitlementsCommandOutput) => void,
|
|
268
250
|
): void;
|
|
269
251
|
getAgreementPaymentRequest(
|
|
270
252
|
args: GetAgreementPaymentRequestCommandInput,
|
|
271
|
-
options?: __HttpHandlerOptions
|
|
253
|
+
options?: __HttpHandlerOptions,
|
|
272
254
|
): Promise<GetAgreementPaymentRequestCommandOutput>;
|
|
273
255
|
getAgreementPaymentRequest(
|
|
274
256
|
args: GetAgreementPaymentRequestCommandInput,
|
|
275
|
-
cb: (err: any, data?: GetAgreementPaymentRequestCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: GetAgreementPaymentRequestCommandOutput) => void,
|
|
276
258
|
): void;
|
|
277
259
|
getAgreementPaymentRequest(
|
|
278
260
|
args: GetAgreementPaymentRequestCommandInput,
|
|
279
261
|
options: __HttpHandlerOptions,
|
|
280
|
-
cb: (err: any, data?: GetAgreementPaymentRequestCommandOutput) => void
|
|
262
|
+
cb: (err: any, data?: GetAgreementPaymentRequestCommandOutput) => void,
|
|
281
263
|
): void;
|
|
282
264
|
getAgreementTerms(
|
|
283
265
|
args: GetAgreementTermsCommandInput,
|
|
284
|
-
options?: __HttpHandlerOptions
|
|
266
|
+
options?: __HttpHandlerOptions,
|
|
285
267
|
): Promise<GetAgreementTermsCommandOutput>;
|
|
286
268
|
getAgreementTerms(
|
|
287
269
|
args: GetAgreementTermsCommandInput,
|
|
288
|
-
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void,
|
|
289
271
|
): void;
|
|
290
272
|
getAgreementTerms(
|
|
291
273
|
args: GetAgreementTermsCommandInput,
|
|
292
274
|
options: __HttpHandlerOptions,
|
|
293
|
-
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void
|
|
275
|
+
cb: (err: any, data?: GetAgreementTermsCommandOutput) => void,
|
|
294
276
|
): void;
|
|
295
277
|
getBillingAdjustmentRequest(
|
|
296
278
|
args: GetBillingAdjustmentRequestCommandInput,
|
|
297
|
-
options?: __HttpHandlerOptions
|
|
279
|
+
options?: __HttpHandlerOptions,
|
|
298
280
|
): Promise<GetBillingAdjustmentRequestCommandOutput>;
|
|
299
281
|
getBillingAdjustmentRequest(
|
|
300
282
|
args: GetBillingAdjustmentRequestCommandInput,
|
|
301
|
-
cb: (err: any, data?: GetBillingAdjustmentRequestCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: GetBillingAdjustmentRequestCommandOutput) => void,
|
|
302
284
|
): void;
|
|
303
285
|
getBillingAdjustmentRequest(
|
|
304
286
|
args: GetBillingAdjustmentRequestCommandInput,
|
|
305
287
|
options: __HttpHandlerOptions,
|
|
306
|
-
cb: (err: any, data?: GetBillingAdjustmentRequestCommandOutput) => void
|
|
288
|
+
cb: (err: any, data?: GetBillingAdjustmentRequestCommandOutput) => void,
|
|
307
289
|
): void;
|
|
308
290
|
listAgreementCancellationRequests(
|
|
309
291
|
args: ListAgreementCancellationRequestsCommandInput,
|
|
310
|
-
options?: __HttpHandlerOptions
|
|
292
|
+
options?: __HttpHandlerOptions,
|
|
311
293
|
): Promise<ListAgreementCancellationRequestsCommandOutput>;
|
|
312
294
|
listAgreementCancellationRequests(
|
|
313
295
|
args: ListAgreementCancellationRequestsCommandInput,
|
|
314
|
-
cb: (
|
|
315
|
-
err: any,
|
|
316
|
-
data?: ListAgreementCancellationRequestsCommandOutput
|
|
317
|
-
) => void
|
|
296
|
+
cb: (err: any, data?: ListAgreementCancellationRequestsCommandOutput) => void,
|
|
318
297
|
): void;
|
|
319
298
|
listAgreementCancellationRequests(
|
|
320
299
|
args: ListAgreementCancellationRequestsCommandInput,
|
|
321
300
|
options: __HttpHandlerOptions,
|
|
322
|
-
cb: (
|
|
323
|
-
err: any,
|
|
324
|
-
data?: ListAgreementCancellationRequestsCommandOutput
|
|
325
|
-
) => void
|
|
301
|
+
cb: (err: any, data?: ListAgreementCancellationRequestsCommandOutput) => void,
|
|
326
302
|
): void;
|
|
327
303
|
listAgreementCharges(): Promise<ListAgreementChargesCommandOutput>;
|
|
328
304
|
listAgreementCharges(
|
|
329
305
|
args: ListAgreementChargesCommandInput,
|
|
330
|
-
options?: __HttpHandlerOptions
|
|
306
|
+
options?: __HttpHandlerOptions,
|
|
331
307
|
): Promise<ListAgreementChargesCommandOutput>;
|
|
332
308
|
listAgreementCharges(
|
|
333
309
|
args: ListAgreementChargesCommandInput,
|
|
334
|
-
cb: (err: any, data?: ListAgreementChargesCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: ListAgreementChargesCommandOutput) => void,
|
|
335
311
|
): void;
|
|
336
312
|
listAgreementCharges(
|
|
337
313
|
args: ListAgreementChargesCommandInput,
|
|
338
314
|
options: __HttpHandlerOptions,
|
|
339
|
-
cb: (err: any, data?: ListAgreementChargesCommandOutput) => void
|
|
315
|
+
cb: (err: any, data?: ListAgreementChargesCommandOutput) => void,
|
|
340
316
|
): void;
|
|
341
317
|
listAgreementInvoiceLineItems(
|
|
342
318
|
args: ListAgreementInvoiceLineItemsCommandInput,
|
|
343
|
-
options?: __HttpHandlerOptions
|
|
319
|
+
options?: __HttpHandlerOptions,
|
|
344
320
|
): Promise<ListAgreementInvoiceLineItemsCommandOutput>;
|
|
345
321
|
listAgreementInvoiceLineItems(
|
|
346
322
|
args: ListAgreementInvoiceLineItemsCommandInput,
|
|
347
|
-
cb: (err: any, data?: ListAgreementInvoiceLineItemsCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: ListAgreementInvoiceLineItemsCommandOutput) => void,
|
|
348
324
|
): void;
|
|
349
325
|
listAgreementInvoiceLineItems(
|
|
350
326
|
args: ListAgreementInvoiceLineItemsCommandInput,
|
|
351
327
|
options: __HttpHandlerOptions,
|
|
352
|
-
cb: (err: any, data?: ListAgreementInvoiceLineItemsCommandOutput) => void
|
|
328
|
+
cb: (err: any, data?: ListAgreementInvoiceLineItemsCommandOutput) => void,
|
|
353
329
|
): void;
|
|
354
330
|
listAgreementPaymentRequests(
|
|
355
331
|
args: ListAgreementPaymentRequestsCommandInput,
|
|
356
|
-
options?: __HttpHandlerOptions
|
|
332
|
+
options?: __HttpHandlerOptions,
|
|
357
333
|
): Promise<ListAgreementPaymentRequestsCommandOutput>;
|
|
358
334
|
listAgreementPaymentRequests(
|
|
359
335
|
args: ListAgreementPaymentRequestsCommandInput,
|
|
360
|
-
cb: (err: any, data?: ListAgreementPaymentRequestsCommandOutput) => void
|
|
336
|
+
cb: (err: any, data?: ListAgreementPaymentRequestsCommandOutput) => void,
|
|
361
337
|
): void;
|
|
362
338
|
listAgreementPaymentRequests(
|
|
363
339
|
args: ListAgreementPaymentRequestsCommandInput,
|
|
364
340
|
options: __HttpHandlerOptions,
|
|
365
|
-
cb: (err: any, data?: ListAgreementPaymentRequestsCommandOutput) => void
|
|
341
|
+
cb: (err: any, data?: ListAgreementPaymentRequestsCommandOutput) => void,
|
|
366
342
|
): void;
|
|
367
343
|
listBillingAdjustmentRequests(): Promise<ListBillingAdjustmentRequestsCommandOutput>;
|
|
368
344
|
listBillingAdjustmentRequests(
|
|
369
345
|
args: ListBillingAdjustmentRequestsCommandInput,
|
|
370
|
-
options?: __HttpHandlerOptions
|
|
346
|
+
options?: __HttpHandlerOptions,
|
|
371
347
|
): Promise<ListBillingAdjustmentRequestsCommandOutput>;
|
|
372
348
|
listBillingAdjustmentRequests(
|
|
373
349
|
args: ListBillingAdjustmentRequestsCommandInput,
|
|
374
|
-
cb: (err: any, data?: ListBillingAdjustmentRequestsCommandOutput) => void
|
|
350
|
+
cb: (err: any, data?: ListBillingAdjustmentRequestsCommandOutput) => void,
|
|
375
351
|
): void;
|
|
376
352
|
listBillingAdjustmentRequests(
|
|
377
353
|
args: ListBillingAdjustmentRequestsCommandInput,
|
|
378
354
|
options: __HttpHandlerOptions,
|
|
379
|
-
cb: (err: any, data?: ListBillingAdjustmentRequestsCommandOutput) => void
|
|
355
|
+
cb: (err: any, data?: ListBillingAdjustmentRequestsCommandOutput) => void,
|
|
380
356
|
): void;
|
|
381
357
|
rejectAgreementCancellationRequest(
|
|
382
358
|
args: RejectAgreementCancellationRequestCommandInput,
|
|
383
|
-
options?: __HttpHandlerOptions
|
|
359
|
+
options?: __HttpHandlerOptions,
|
|
384
360
|
): Promise<RejectAgreementCancellationRequestCommandOutput>;
|
|
385
361
|
rejectAgreementCancellationRequest(
|
|
386
362
|
args: RejectAgreementCancellationRequestCommandInput,
|
|
387
|
-
cb: (
|
|
388
|
-
err: any,
|
|
389
|
-
data?: RejectAgreementCancellationRequestCommandOutput
|
|
390
|
-
) => void
|
|
363
|
+
cb: (err: any, data?: RejectAgreementCancellationRequestCommandOutput) => void,
|
|
391
364
|
): void;
|
|
392
365
|
rejectAgreementCancellationRequest(
|
|
393
366
|
args: RejectAgreementCancellationRequestCommandInput,
|
|
394
367
|
options: __HttpHandlerOptions,
|
|
395
|
-
cb: (
|
|
396
|
-
err: any,
|
|
397
|
-
data?: RejectAgreementCancellationRequestCommandOutput
|
|
398
|
-
) => void
|
|
368
|
+
cb: (err: any, data?: RejectAgreementCancellationRequestCommandOutput) => void,
|
|
399
369
|
): void;
|
|
400
370
|
rejectAgreementPaymentRequest(
|
|
401
371
|
args: RejectAgreementPaymentRequestCommandInput,
|
|
402
|
-
options?: __HttpHandlerOptions
|
|
372
|
+
options?: __HttpHandlerOptions,
|
|
403
373
|
): Promise<RejectAgreementPaymentRequestCommandOutput>;
|
|
404
374
|
rejectAgreementPaymentRequest(
|
|
405
375
|
args: RejectAgreementPaymentRequestCommandInput,
|
|
406
|
-
cb: (err: any, data?: RejectAgreementPaymentRequestCommandOutput) => void
|
|
376
|
+
cb: (err: any, data?: RejectAgreementPaymentRequestCommandOutput) => void,
|
|
407
377
|
): void;
|
|
408
378
|
rejectAgreementPaymentRequest(
|
|
409
379
|
args: RejectAgreementPaymentRequestCommandInput,
|
|
410
380
|
options: __HttpHandlerOptions,
|
|
411
|
-
cb: (err: any, data?: RejectAgreementPaymentRequestCommandOutput) => void
|
|
381
|
+
cb: (err: any, data?: RejectAgreementPaymentRequestCommandOutput) => void,
|
|
412
382
|
): void;
|
|
413
383
|
searchAgreements(): Promise<SearchAgreementsCommandOutput>;
|
|
414
384
|
searchAgreements(
|
|
415
385
|
args: SearchAgreementsCommandInput,
|
|
416
|
-
options?: __HttpHandlerOptions
|
|
386
|
+
options?: __HttpHandlerOptions,
|
|
417
387
|
): Promise<SearchAgreementsCommandOutput>;
|
|
418
388
|
searchAgreements(
|
|
419
389
|
args: SearchAgreementsCommandInput,
|
|
420
|
-
cb: (err: any, data?: SearchAgreementsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: SearchAgreementsCommandOutput) => void,
|
|
421
391
|
): void;
|
|
422
392
|
searchAgreements(
|
|
423
393
|
args: SearchAgreementsCommandInput,
|
|
424
394
|
options: __HttpHandlerOptions,
|
|
425
|
-
cb: (err: any, data?: SearchAgreementsCommandOutput) => void
|
|
395
|
+
cb: (err: any, data?: SearchAgreementsCommandOutput) => void,
|
|
426
396
|
): void;
|
|
427
397
|
sendAgreementCancellationRequest(
|
|
428
398
|
args: SendAgreementCancellationRequestCommandInput,
|
|
429
|
-
options?: __HttpHandlerOptions
|
|
399
|
+
options?: __HttpHandlerOptions,
|
|
430
400
|
): Promise<SendAgreementCancellationRequestCommandOutput>;
|
|
431
401
|
sendAgreementCancellationRequest(
|
|
432
402
|
args: SendAgreementCancellationRequestCommandInput,
|
|
433
|
-
cb: (err: any, data?: SendAgreementCancellationRequestCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: SendAgreementCancellationRequestCommandOutput) => void,
|
|
434
404
|
): void;
|
|
435
405
|
sendAgreementCancellationRequest(
|
|
436
406
|
args: SendAgreementCancellationRequestCommandInput,
|
|
437
407
|
options: __HttpHandlerOptions,
|
|
438
|
-
cb: (err: any, data?: SendAgreementCancellationRequestCommandOutput) => void
|
|
408
|
+
cb: (err: any, data?: SendAgreementCancellationRequestCommandOutput) => void,
|
|
439
409
|
): void;
|
|
440
410
|
sendAgreementPaymentRequest(
|
|
441
411
|
args: SendAgreementPaymentRequestCommandInput,
|
|
442
|
-
options?: __HttpHandlerOptions
|
|
412
|
+
options?: __HttpHandlerOptions,
|
|
443
413
|
): Promise<SendAgreementPaymentRequestCommandOutput>;
|
|
444
414
|
sendAgreementPaymentRequest(
|
|
445
415
|
args: SendAgreementPaymentRequestCommandInput,
|
|
446
|
-
cb: (err: any, data?: SendAgreementPaymentRequestCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: SendAgreementPaymentRequestCommandOutput) => void,
|
|
447
417
|
): void;
|
|
448
418
|
sendAgreementPaymentRequest(
|
|
449
419
|
args: SendAgreementPaymentRequestCommandInput,
|
|
450
420
|
options: __HttpHandlerOptions,
|
|
451
|
-
cb: (err: any, data?: SendAgreementPaymentRequestCommandOutput) => void
|
|
421
|
+
cb: (err: any, data?: SendAgreementPaymentRequestCommandOutput) => void,
|
|
452
422
|
): void;
|
|
453
423
|
updatePurchaseOrders(
|
|
454
424
|
args: UpdatePurchaseOrdersCommandInput,
|
|
455
|
-
options?: __HttpHandlerOptions
|
|
425
|
+
options?: __HttpHandlerOptions,
|
|
456
426
|
): Promise<UpdatePurchaseOrdersCommandOutput>;
|
|
457
427
|
updatePurchaseOrders(
|
|
458
428
|
args: UpdatePurchaseOrdersCommandInput,
|
|
459
|
-
cb: (err: any, data?: UpdatePurchaseOrdersCommandOutput) => void
|
|
429
|
+
cb: (err: any, data?: UpdatePurchaseOrdersCommandOutput) => void,
|
|
460
430
|
): void;
|
|
461
431
|
updatePurchaseOrders(
|
|
462
432
|
args: UpdatePurchaseOrdersCommandInput,
|
|
463
433
|
options: __HttpHandlerOptions,
|
|
464
|
-
cb: (err: any, data?: UpdatePurchaseOrdersCommandOutput) => void
|
|
434
|
+
cb: (err: any, data?: UpdatePurchaseOrdersCommandOutput) => void,
|
|
465
435
|
): void;
|
|
466
436
|
paginateGetAgreementEntitlements(
|
|
467
437
|
args: GetAgreementEntitlementsCommandInput,
|
|
468
438
|
paginationConfig?: Pick<
|
|
469
439
|
PaginationConfiguration,
|
|
470
440
|
Exclude<keyof PaginationConfiguration, "client">
|
|
471
|
-
|
|
441
|
+
>,
|
|
472
442
|
): Paginator<GetAgreementEntitlementsCommandOutput>;
|
|
473
443
|
paginateGetAgreementTerms(
|
|
474
444
|
args: GetAgreementTermsCommandInput,
|
|
475
445
|
paginationConfig?: Pick<
|
|
476
446
|
PaginationConfiguration,
|
|
477
447
|
Exclude<keyof PaginationConfiguration, "client">
|
|
478
|
-
|
|
448
|
+
>,
|
|
479
449
|
): Paginator<GetAgreementTermsCommandOutput>;
|
|
480
450
|
paginateListAgreementCancellationRequests(
|
|
481
451
|
args: ListAgreementCancellationRequestsCommandInput,
|
|
482
452
|
paginationConfig?: Pick<
|
|
483
453
|
PaginationConfiguration,
|
|
484
454
|
Exclude<keyof PaginationConfiguration, "client">
|
|
485
|
-
|
|
455
|
+
>,
|
|
486
456
|
): Paginator<ListAgreementCancellationRequestsCommandOutput>;
|
|
487
457
|
paginateListAgreementCharges(
|
|
488
458
|
args?: ListAgreementChargesCommandInput,
|
|
489
459
|
paginationConfig?: Pick<
|
|
490
460
|
PaginationConfiguration,
|
|
491
461
|
Exclude<keyof PaginationConfiguration, "client">
|
|
492
|
-
|
|
462
|
+
>,
|
|
493
463
|
): Paginator<ListAgreementChargesCommandOutput>;
|
|
494
464
|
paginateListAgreementInvoiceLineItems(
|
|
495
465
|
args: ListAgreementInvoiceLineItemsCommandInput,
|
|
496
466
|
paginationConfig?: Pick<
|
|
497
467
|
PaginationConfiguration,
|
|
498
468
|
Exclude<keyof PaginationConfiguration, "client">
|
|
499
|
-
|
|
469
|
+
>,
|
|
500
470
|
): Paginator<ListAgreementInvoiceLineItemsCommandOutput>;
|
|
501
471
|
paginateListAgreementPaymentRequests(
|
|
502
472
|
args: ListAgreementPaymentRequestsCommandInput,
|
|
503
473
|
paginationConfig?: Pick<
|
|
504
474
|
PaginationConfiguration,
|
|
505
475
|
Exclude<keyof PaginationConfiguration, "client">
|
|
506
|
-
|
|
476
|
+
>,
|
|
507
477
|
): Paginator<ListAgreementPaymentRequestsCommandOutput>;
|
|
508
478
|
paginateListBillingAdjustmentRequests(
|
|
509
479
|
args?: ListBillingAdjustmentRequestsCommandInput,
|
|
510
480
|
paginationConfig?: Pick<
|
|
511
481
|
PaginationConfiguration,
|
|
512
482
|
Exclude<keyof PaginationConfiguration, "client">
|
|
513
|
-
|
|
483
|
+
>,
|
|
514
484
|
): Paginator<ListBillingAdjustmentRequestsCommandOutput>;
|
|
515
485
|
paginateSearchAgreements(
|
|
516
486
|
args?: SearchAgreementsCommandInput,
|
|
517
487
|
paginationConfig?: Pick<
|
|
518
488
|
PaginationConfiguration,
|
|
519
489
|
Exclude<keyof PaginationConfiguration, "client">
|
|
520
|
-
|
|
490
|
+
>,
|
|
521
491
|
): Paginator<SearchAgreementsCommandOutput>;
|
|
522
492
|
}
|
|
523
493
|
export declare class MarketplaceAgreement
|
|
@@ -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 {
|
|
@@ -195,8 +192,7 @@ export type ServiceOutputTypes =
|
|
|
195
192
|
| SendAgreementCancellationRequestCommandOutput
|
|
196
193
|
| SendAgreementPaymentRequestCommandOutput
|
|
197
194
|
| UpdatePurchaseOrdersCommandOutput;
|
|
198
|
-
export interface ClientDefaults
|
|
199
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
195
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
200
196
|
requestHandler?: __HttpHandlerUserInput;
|
|
201
197
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
202
198
|
urlParser?: __UrlParser;
|
|
@@ -232,8 +228,7 @@ export type MarketplaceAgreementClientConfigType = Partial<
|
|
|
232
228
|
EndpointInputConfig<EndpointParameters> &
|
|
233
229
|
HttpAuthSchemeInputConfig &
|
|
234
230
|
ClientInputEndpointParameters;
|
|
235
|
-
export interface MarketplaceAgreementClientConfig
|
|
236
|
-
extends MarketplaceAgreementClientConfigType {}
|
|
231
|
+
export interface MarketplaceAgreementClientConfig extends MarketplaceAgreementClientConfigType {}
|
|
237
232
|
export type MarketplaceAgreementClientResolvedConfigType =
|
|
238
233
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
239
234
|
Required<ClientDefaults> &
|
|
@@ -245,8 +240,7 @@ export type MarketplaceAgreementClientResolvedConfigType =
|
|
|
245
240
|
EndpointResolvedConfig<EndpointParameters> &
|
|
246
241
|
HttpAuthSchemeResolvedConfig &
|
|
247
242
|
ClientResolvedEndpointParameters;
|
|
248
|
-
export interface MarketplaceAgreementClientResolvedConfig
|
|
249
|
-
extends MarketplaceAgreementClientResolvedConfigType {}
|
|
243
|
+
export interface MarketplaceAgreementClientResolvedConfig extends MarketplaceAgreementClientResolvedConfigType {}
|
|
250
244
|
export declare class MarketplaceAgreementClient extends __Client<
|
|
251
245
|
__HttpHandlerOptions,
|
|
252
246
|
ServiceInputTypes,
|
|
@@ -254,10 +248,6 @@ export declare class MarketplaceAgreementClient extends __Client<
|
|
|
254
248
|
MarketplaceAgreementClientResolvedConfig
|
|
255
249
|
> {
|
|
256
250
|
readonly config: MarketplaceAgreementClientResolvedConfig;
|
|
257
|
-
constructor(
|
|
258
|
-
...[
|
|
259
|
-
configuration,
|
|
260
|
-
]: __CheckOptionalClientConfig<MarketplaceAgreementClientConfig>
|
|
261
|
-
);
|
|
251
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<MarketplaceAgreementClientConfig>);
|
|
262
252
|
destroy(): void;
|
|
263
253
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: MarketplaceAgreementHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: MarketplaceAgreementHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): MarketplaceAgreementHttpAuthSchemeProvider;
|
|
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 { MarketplaceAgreementClientResolvedConfig } from "../MarketplaceAgreementClient";
|
|
15
|
-
export interface MarketplaceAgreementHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface MarketplaceAgreementHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface MarketplaceAgreementHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface MarketplaceAgreementHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
MarketplaceAgreementClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
MarketplaceAgreementHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultMarketplaceAgreementHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: MarketplaceAgreementClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<MarketplaceAgreementHttpAuthSchemeParameters>;
|
|
31
|
-
export interface MarketplaceAgreementHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<MarketplaceAgreementHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface MarketplaceAgreementHttpAuthSchemeProvider extends HttpAuthSchemeProvider<MarketplaceAgreementHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultMarketplaceAgreementHttpAuthSchemeProvider: MarketplaceAgreementHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: MarketplaceAgreementHttpAuthSchemeProvider;
|
|
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: MarketplaceAgreementHttpAuthSchemeProvider;
|
|
44
40
|
}
|
|
45
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
47
43
|
) => T & HttpAuthSchemeResolvedConfig;
|