@aws-sdk/client-partnercentral-benefits 3.1086.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/PartnerCentralBenefits.d.ts +56 -74
- package/dist-types/ts3.4/PartnerCentralBenefitsClient.d.ts +7 -23
- 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/AmendBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/AssociateBenefitApplicationResourceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateBenefitApplicationResourceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetBenefitAllocationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetBenefitCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListBenefitAllocationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBenefitApplicationsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListBenefitsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RecallBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/SubmitBenefitApplicationCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateBenefitApplicationCommand.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 +1 -2
- package/dist-types/ts3.4/models/errors.d.ts +6 -18
- 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 +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -31,10 +31,7 @@ import {
|
|
|
31
31
|
GetBenefitApplicationCommandInput,
|
|
32
32
|
GetBenefitApplicationCommandOutput,
|
|
33
33
|
} from "./commands/GetBenefitApplicationCommand";
|
|
34
|
-
import {
|
|
35
|
-
GetBenefitCommandInput,
|
|
36
|
-
GetBenefitCommandOutput,
|
|
37
|
-
} from "./commands/GetBenefitCommand";
|
|
34
|
+
import { GetBenefitCommandInput, GetBenefitCommandOutput } from "./commands/GetBenefitCommand";
|
|
38
35
|
import {
|
|
39
36
|
ListBenefitAllocationsCommandInput,
|
|
40
37
|
ListBenefitAllocationsCommandOutput,
|
|
@@ -59,10 +56,7 @@ import {
|
|
|
59
56
|
SubmitBenefitApplicationCommandInput,
|
|
60
57
|
SubmitBenefitApplicationCommandOutput,
|
|
61
58
|
} from "./commands/SubmitBenefitApplicationCommand";
|
|
62
|
-
import {
|
|
63
|
-
TagResourceCommandInput,
|
|
64
|
-
TagResourceCommandOutput,
|
|
65
|
-
} from "./commands/TagResourceCommand";
|
|
59
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
66
60
|
import {
|
|
67
61
|
UntagResourceCommandInput,
|
|
68
62
|
UntagResourceCommandOutput,
|
|
@@ -75,257 +69,245 @@ import { PartnerCentralBenefitsClient } from "./PartnerCentralBenefitsClient";
|
|
|
75
69
|
export interface PartnerCentralBenefits {
|
|
76
70
|
amendBenefitApplication(
|
|
77
71
|
args: AmendBenefitApplicationCommandInput,
|
|
78
|
-
options?: __HttpHandlerOptions
|
|
72
|
+
options?: __HttpHandlerOptions,
|
|
79
73
|
): Promise<AmendBenefitApplicationCommandOutput>;
|
|
80
74
|
amendBenefitApplication(
|
|
81
75
|
args: AmendBenefitApplicationCommandInput,
|
|
82
|
-
cb: (err: any, data?: AmendBenefitApplicationCommandOutput) => void
|
|
76
|
+
cb: (err: any, data?: AmendBenefitApplicationCommandOutput) => void,
|
|
83
77
|
): void;
|
|
84
78
|
amendBenefitApplication(
|
|
85
79
|
args: AmendBenefitApplicationCommandInput,
|
|
86
80
|
options: __HttpHandlerOptions,
|
|
87
|
-
cb: (err: any, data?: AmendBenefitApplicationCommandOutput) => void
|
|
81
|
+
cb: (err: any, data?: AmendBenefitApplicationCommandOutput) => void,
|
|
88
82
|
): void;
|
|
89
83
|
associateBenefitApplicationResource(
|
|
90
84
|
args: AssociateBenefitApplicationResourceCommandInput,
|
|
91
|
-
options?: __HttpHandlerOptions
|
|
85
|
+
options?: __HttpHandlerOptions,
|
|
92
86
|
): Promise<AssociateBenefitApplicationResourceCommandOutput>;
|
|
93
87
|
associateBenefitApplicationResource(
|
|
94
88
|
args: AssociateBenefitApplicationResourceCommandInput,
|
|
95
|
-
cb: (
|
|
96
|
-
err: any,
|
|
97
|
-
data?: AssociateBenefitApplicationResourceCommandOutput
|
|
98
|
-
) => void
|
|
89
|
+
cb: (err: any, data?: AssociateBenefitApplicationResourceCommandOutput) => void,
|
|
99
90
|
): void;
|
|
100
91
|
associateBenefitApplicationResource(
|
|
101
92
|
args: AssociateBenefitApplicationResourceCommandInput,
|
|
102
93
|
options: __HttpHandlerOptions,
|
|
103
|
-
cb: (
|
|
104
|
-
err: any,
|
|
105
|
-
data?: AssociateBenefitApplicationResourceCommandOutput
|
|
106
|
-
) => void
|
|
94
|
+
cb: (err: any, data?: AssociateBenefitApplicationResourceCommandOutput) => void,
|
|
107
95
|
): void;
|
|
108
96
|
cancelBenefitApplication(
|
|
109
97
|
args: CancelBenefitApplicationCommandInput,
|
|
110
|
-
options?: __HttpHandlerOptions
|
|
98
|
+
options?: __HttpHandlerOptions,
|
|
111
99
|
): Promise<CancelBenefitApplicationCommandOutput>;
|
|
112
100
|
cancelBenefitApplication(
|
|
113
101
|
args: CancelBenefitApplicationCommandInput,
|
|
114
|
-
cb: (err: any, data?: CancelBenefitApplicationCommandOutput) => void
|
|
102
|
+
cb: (err: any, data?: CancelBenefitApplicationCommandOutput) => void,
|
|
115
103
|
): void;
|
|
116
104
|
cancelBenefitApplication(
|
|
117
105
|
args: CancelBenefitApplicationCommandInput,
|
|
118
106
|
options: __HttpHandlerOptions,
|
|
119
|
-
cb: (err: any, data?: CancelBenefitApplicationCommandOutput) => void
|
|
107
|
+
cb: (err: any, data?: CancelBenefitApplicationCommandOutput) => void,
|
|
120
108
|
): void;
|
|
121
109
|
createBenefitApplication(
|
|
122
110
|
args: CreateBenefitApplicationCommandInput,
|
|
123
|
-
options?: __HttpHandlerOptions
|
|
111
|
+
options?: __HttpHandlerOptions,
|
|
124
112
|
): Promise<CreateBenefitApplicationCommandOutput>;
|
|
125
113
|
createBenefitApplication(
|
|
126
114
|
args: CreateBenefitApplicationCommandInput,
|
|
127
|
-
cb: (err: any, data?: CreateBenefitApplicationCommandOutput) => void
|
|
115
|
+
cb: (err: any, data?: CreateBenefitApplicationCommandOutput) => void,
|
|
128
116
|
): void;
|
|
129
117
|
createBenefitApplication(
|
|
130
118
|
args: CreateBenefitApplicationCommandInput,
|
|
131
119
|
options: __HttpHandlerOptions,
|
|
132
|
-
cb: (err: any, data?: CreateBenefitApplicationCommandOutput) => void
|
|
120
|
+
cb: (err: any, data?: CreateBenefitApplicationCommandOutput) => void,
|
|
133
121
|
): void;
|
|
134
122
|
disassociateBenefitApplicationResource(
|
|
135
123
|
args: DisassociateBenefitApplicationResourceCommandInput,
|
|
136
|
-
options?: __HttpHandlerOptions
|
|
124
|
+
options?: __HttpHandlerOptions,
|
|
137
125
|
): Promise<DisassociateBenefitApplicationResourceCommandOutput>;
|
|
138
126
|
disassociateBenefitApplicationResource(
|
|
139
127
|
args: DisassociateBenefitApplicationResourceCommandInput,
|
|
140
|
-
cb: (
|
|
141
|
-
err: any,
|
|
142
|
-
data?: DisassociateBenefitApplicationResourceCommandOutput
|
|
143
|
-
) => void
|
|
128
|
+
cb: (err: any, data?: DisassociateBenefitApplicationResourceCommandOutput) => void,
|
|
144
129
|
): void;
|
|
145
130
|
disassociateBenefitApplicationResource(
|
|
146
131
|
args: DisassociateBenefitApplicationResourceCommandInput,
|
|
147
132
|
options: __HttpHandlerOptions,
|
|
148
|
-
cb: (
|
|
149
|
-
err: any,
|
|
150
|
-
data?: DisassociateBenefitApplicationResourceCommandOutput
|
|
151
|
-
) => void
|
|
133
|
+
cb: (err: any, data?: DisassociateBenefitApplicationResourceCommandOutput) => void,
|
|
152
134
|
): void;
|
|
153
135
|
getBenefit(
|
|
154
136
|
args: GetBenefitCommandInput,
|
|
155
|
-
options?: __HttpHandlerOptions
|
|
137
|
+
options?: __HttpHandlerOptions,
|
|
156
138
|
): Promise<GetBenefitCommandOutput>;
|
|
157
139
|
getBenefit(
|
|
158
140
|
args: GetBenefitCommandInput,
|
|
159
|
-
cb: (err: any, data?: GetBenefitCommandOutput) => void
|
|
141
|
+
cb: (err: any, data?: GetBenefitCommandOutput) => void,
|
|
160
142
|
): void;
|
|
161
143
|
getBenefit(
|
|
162
144
|
args: GetBenefitCommandInput,
|
|
163
145
|
options: __HttpHandlerOptions,
|
|
164
|
-
cb: (err: any, data?: GetBenefitCommandOutput) => void
|
|
146
|
+
cb: (err: any, data?: GetBenefitCommandOutput) => void,
|
|
165
147
|
): void;
|
|
166
148
|
getBenefitAllocation(
|
|
167
149
|
args: GetBenefitAllocationCommandInput,
|
|
168
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
169
151
|
): Promise<GetBenefitAllocationCommandOutput>;
|
|
170
152
|
getBenefitAllocation(
|
|
171
153
|
args: GetBenefitAllocationCommandInput,
|
|
172
|
-
cb: (err: any, data?: GetBenefitAllocationCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: GetBenefitAllocationCommandOutput) => void,
|
|
173
155
|
): void;
|
|
174
156
|
getBenefitAllocation(
|
|
175
157
|
args: GetBenefitAllocationCommandInput,
|
|
176
158
|
options: __HttpHandlerOptions,
|
|
177
|
-
cb: (err: any, data?: GetBenefitAllocationCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: GetBenefitAllocationCommandOutput) => void,
|
|
178
160
|
): void;
|
|
179
161
|
getBenefitApplication(
|
|
180
162
|
args: GetBenefitApplicationCommandInput,
|
|
181
|
-
options?: __HttpHandlerOptions
|
|
163
|
+
options?: __HttpHandlerOptions,
|
|
182
164
|
): Promise<GetBenefitApplicationCommandOutput>;
|
|
183
165
|
getBenefitApplication(
|
|
184
166
|
args: GetBenefitApplicationCommandInput,
|
|
185
|
-
cb: (err: any, data?: GetBenefitApplicationCommandOutput) => void
|
|
167
|
+
cb: (err: any, data?: GetBenefitApplicationCommandOutput) => void,
|
|
186
168
|
): void;
|
|
187
169
|
getBenefitApplication(
|
|
188
170
|
args: GetBenefitApplicationCommandInput,
|
|
189
171
|
options: __HttpHandlerOptions,
|
|
190
|
-
cb: (err: any, data?: GetBenefitApplicationCommandOutput) => void
|
|
172
|
+
cb: (err: any, data?: GetBenefitApplicationCommandOutput) => void,
|
|
191
173
|
): void;
|
|
192
174
|
listBenefitAllocations(
|
|
193
175
|
args: ListBenefitAllocationsCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
195
177
|
): Promise<ListBenefitAllocationsCommandOutput>;
|
|
196
178
|
listBenefitAllocations(
|
|
197
179
|
args: ListBenefitAllocationsCommandInput,
|
|
198
|
-
cb: (err: any, data?: ListBenefitAllocationsCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: ListBenefitAllocationsCommandOutput) => void,
|
|
199
181
|
): void;
|
|
200
182
|
listBenefitAllocations(
|
|
201
183
|
args: ListBenefitAllocationsCommandInput,
|
|
202
184
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: ListBenefitAllocationsCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: ListBenefitAllocationsCommandOutput) => void,
|
|
204
186
|
): void;
|
|
205
187
|
listBenefitApplications(
|
|
206
188
|
args: ListBenefitApplicationsCommandInput,
|
|
207
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
208
190
|
): Promise<ListBenefitApplicationsCommandOutput>;
|
|
209
191
|
listBenefitApplications(
|
|
210
192
|
args: ListBenefitApplicationsCommandInput,
|
|
211
|
-
cb: (err: any, data?: ListBenefitApplicationsCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: ListBenefitApplicationsCommandOutput) => void,
|
|
212
194
|
): void;
|
|
213
195
|
listBenefitApplications(
|
|
214
196
|
args: ListBenefitApplicationsCommandInput,
|
|
215
197
|
options: __HttpHandlerOptions,
|
|
216
|
-
cb: (err: any, data?: ListBenefitApplicationsCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: ListBenefitApplicationsCommandOutput) => void,
|
|
217
199
|
): void;
|
|
218
200
|
listBenefits(
|
|
219
201
|
args: ListBenefitsCommandInput,
|
|
220
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
221
203
|
): Promise<ListBenefitsCommandOutput>;
|
|
222
204
|
listBenefits(
|
|
223
205
|
args: ListBenefitsCommandInput,
|
|
224
|
-
cb: (err: any, data?: ListBenefitsCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: ListBenefitsCommandOutput) => void,
|
|
225
207
|
): void;
|
|
226
208
|
listBenefits(
|
|
227
209
|
args: ListBenefitsCommandInput,
|
|
228
210
|
options: __HttpHandlerOptions,
|
|
229
|
-
cb: (err: any, data?: ListBenefitsCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: ListBenefitsCommandOutput) => void,
|
|
230
212
|
): void;
|
|
231
213
|
listTagsForResource(
|
|
232
214
|
args: ListTagsForResourceCommandInput,
|
|
233
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
234
216
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
235
217
|
listTagsForResource(
|
|
236
218
|
args: ListTagsForResourceCommandInput,
|
|
237
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
238
220
|
): void;
|
|
239
221
|
listTagsForResource(
|
|
240
222
|
args: ListTagsForResourceCommandInput,
|
|
241
223
|
options: __HttpHandlerOptions,
|
|
242
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
243
225
|
): void;
|
|
244
226
|
recallBenefitApplication(
|
|
245
227
|
args: RecallBenefitApplicationCommandInput,
|
|
246
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
247
229
|
): Promise<RecallBenefitApplicationCommandOutput>;
|
|
248
230
|
recallBenefitApplication(
|
|
249
231
|
args: RecallBenefitApplicationCommandInput,
|
|
250
|
-
cb: (err: any, data?: RecallBenefitApplicationCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: RecallBenefitApplicationCommandOutput) => void,
|
|
251
233
|
): void;
|
|
252
234
|
recallBenefitApplication(
|
|
253
235
|
args: RecallBenefitApplicationCommandInput,
|
|
254
236
|
options: __HttpHandlerOptions,
|
|
255
|
-
cb: (err: any, data?: RecallBenefitApplicationCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: RecallBenefitApplicationCommandOutput) => void,
|
|
256
238
|
): void;
|
|
257
239
|
submitBenefitApplication(
|
|
258
240
|
args: SubmitBenefitApplicationCommandInput,
|
|
259
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
260
242
|
): Promise<SubmitBenefitApplicationCommandOutput>;
|
|
261
243
|
submitBenefitApplication(
|
|
262
244
|
args: SubmitBenefitApplicationCommandInput,
|
|
263
|
-
cb: (err: any, data?: SubmitBenefitApplicationCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: SubmitBenefitApplicationCommandOutput) => void,
|
|
264
246
|
): void;
|
|
265
247
|
submitBenefitApplication(
|
|
266
248
|
args: SubmitBenefitApplicationCommandInput,
|
|
267
249
|
options: __HttpHandlerOptions,
|
|
268
|
-
cb: (err: any, data?: SubmitBenefitApplicationCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: SubmitBenefitApplicationCommandOutput) => void,
|
|
269
251
|
): void;
|
|
270
252
|
tagResource(
|
|
271
253
|
args: TagResourceCommandInput,
|
|
272
|
-
options?: __HttpHandlerOptions
|
|
254
|
+
options?: __HttpHandlerOptions,
|
|
273
255
|
): Promise<TagResourceCommandOutput>;
|
|
274
256
|
tagResource(
|
|
275
257
|
args: TagResourceCommandInput,
|
|
276
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
258
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
277
259
|
): void;
|
|
278
260
|
tagResource(
|
|
279
261
|
args: TagResourceCommandInput,
|
|
280
262
|
options: __HttpHandlerOptions,
|
|
281
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
263
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
282
264
|
): void;
|
|
283
265
|
untagResource(
|
|
284
266
|
args: UntagResourceCommandInput,
|
|
285
|
-
options?: __HttpHandlerOptions
|
|
267
|
+
options?: __HttpHandlerOptions,
|
|
286
268
|
): Promise<UntagResourceCommandOutput>;
|
|
287
269
|
untagResource(
|
|
288
270
|
args: UntagResourceCommandInput,
|
|
289
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
271
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
290
272
|
): void;
|
|
291
273
|
untagResource(
|
|
292
274
|
args: UntagResourceCommandInput,
|
|
293
275
|
options: __HttpHandlerOptions,
|
|
294
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
276
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
295
277
|
): void;
|
|
296
278
|
updateBenefitApplication(
|
|
297
279
|
args: UpdateBenefitApplicationCommandInput,
|
|
298
|
-
options?: __HttpHandlerOptions
|
|
280
|
+
options?: __HttpHandlerOptions,
|
|
299
281
|
): Promise<UpdateBenefitApplicationCommandOutput>;
|
|
300
282
|
updateBenefitApplication(
|
|
301
283
|
args: UpdateBenefitApplicationCommandInput,
|
|
302
|
-
cb: (err: any, data?: UpdateBenefitApplicationCommandOutput) => void
|
|
284
|
+
cb: (err: any, data?: UpdateBenefitApplicationCommandOutput) => void,
|
|
303
285
|
): void;
|
|
304
286
|
updateBenefitApplication(
|
|
305
287
|
args: UpdateBenefitApplicationCommandInput,
|
|
306
288
|
options: __HttpHandlerOptions,
|
|
307
|
-
cb: (err: any, data?: UpdateBenefitApplicationCommandOutput) => void
|
|
289
|
+
cb: (err: any, data?: UpdateBenefitApplicationCommandOutput) => void,
|
|
308
290
|
): void;
|
|
309
291
|
paginateListBenefitAllocations(
|
|
310
292
|
args: ListBenefitAllocationsCommandInput,
|
|
311
293
|
paginationConfig?: Pick<
|
|
312
294
|
PaginationConfiguration,
|
|
313
295
|
Exclude<keyof PaginationConfiguration, "client">
|
|
314
|
-
|
|
296
|
+
>,
|
|
315
297
|
): Paginator<ListBenefitAllocationsCommandOutput>;
|
|
316
298
|
paginateListBenefitApplications(
|
|
317
299
|
args: ListBenefitApplicationsCommandInput,
|
|
318
300
|
paginationConfig?: Pick<
|
|
319
301
|
PaginationConfiguration,
|
|
320
302
|
Exclude<keyof PaginationConfiguration, "client">
|
|
321
|
-
|
|
303
|
+
>,
|
|
322
304
|
): Paginator<ListBenefitApplicationsCommandOutput>;
|
|
323
305
|
paginateListBenefits(
|
|
324
306
|
args: ListBenefitsCommandInput,
|
|
325
307
|
paginationConfig?: Pick<
|
|
326
308
|
PaginationConfiguration,
|
|
327
309
|
Exclude<keyof PaginationConfiguration, "client">
|
|
328
|
-
|
|
310
|
+
>,
|
|
329
311
|
): Paginator<ListBenefitsCommandOutput>;
|
|
330
312
|
}
|
|
331
313
|
export declare class PartnerCentralBenefits
|
|
@@ -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 {
|
|
@@ -64,10 +61,7 @@ import {
|
|
|
64
61
|
GetBenefitApplicationCommandInput,
|
|
65
62
|
GetBenefitApplicationCommandOutput,
|
|
66
63
|
} from "./commands/GetBenefitApplicationCommand";
|
|
67
|
-
import {
|
|
68
|
-
GetBenefitCommandInput,
|
|
69
|
-
GetBenefitCommandOutput,
|
|
70
|
-
} from "./commands/GetBenefitCommand";
|
|
64
|
+
import { GetBenefitCommandInput, GetBenefitCommandOutput } from "./commands/GetBenefitCommand";
|
|
71
65
|
import {
|
|
72
66
|
ListBenefitAllocationsCommandInput,
|
|
73
67
|
ListBenefitAllocationsCommandOutput,
|
|
@@ -92,10 +86,7 @@ import {
|
|
|
92
86
|
SubmitBenefitApplicationCommandInput,
|
|
93
87
|
SubmitBenefitApplicationCommandOutput,
|
|
94
88
|
} from "./commands/SubmitBenefitApplicationCommand";
|
|
95
|
-
import {
|
|
96
|
-
TagResourceCommandInput,
|
|
97
|
-
TagResourceCommandOutput,
|
|
98
|
-
} from "./commands/TagResourceCommand";
|
|
89
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
99
90
|
import {
|
|
100
91
|
UntagResourceCommandInput,
|
|
101
92
|
UntagResourceCommandOutput,
|
|
@@ -147,8 +138,7 @@ export type ServiceOutputTypes =
|
|
|
147
138
|
| TagResourceCommandOutput
|
|
148
139
|
| UntagResourceCommandOutput
|
|
149
140
|
| UpdateBenefitApplicationCommandOutput;
|
|
150
|
-
export interface ClientDefaults
|
|
151
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
141
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
152
142
|
requestHandler?: __HttpHandlerUserInput;
|
|
153
143
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
154
144
|
urlParser?: __UrlParser;
|
|
@@ -184,8 +174,7 @@ export type PartnerCentralBenefitsClientConfigType = Partial<
|
|
|
184
174
|
EndpointInputConfig<EndpointParameters> &
|
|
185
175
|
HttpAuthSchemeInputConfig &
|
|
186
176
|
ClientInputEndpointParameters;
|
|
187
|
-
export interface PartnerCentralBenefitsClientConfig
|
|
188
|
-
extends PartnerCentralBenefitsClientConfigType {}
|
|
177
|
+
export interface PartnerCentralBenefitsClientConfig extends PartnerCentralBenefitsClientConfigType {}
|
|
189
178
|
export type PartnerCentralBenefitsClientResolvedConfigType =
|
|
190
179
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
191
180
|
Required<ClientDefaults> &
|
|
@@ -197,8 +186,7 @@ export type PartnerCentralBenefitsClientResolvedConfigType =
|
|
|
197
186
|
EndpointResolvedConfig<EndpointParameters> &
|
|
198
187
|
HttpAuthSchemeResolvedConfig &
|
|
199
188
|
ClientResolvedEndpointParameters;
|
|
200
|
-
export interface PartnerCentralBenefitsClientResolvedConfig
|
|
201
|
-
extends PartnerCentralBenefitsClientResolvedConfigType {}
|
|
189
|
+
export interface PartnerCentralBenefitsClientResolvedConfig extends PartnerCentralBenefitsClientResolvedConfigType {}
|
|
202
190
|
export declare class PartnerCentralBenefitsClient extends __Client<
|
|
203
191
|
__HttpHandlerOptions,
|
|
204
192
|
ServiceInputTypes,
|
|
@@ -206,10 +194,6 @@ export declare class PartnerCentralBenefitsClient extends __Client<
|
|
|
206
194
|
PartnerCentralBenefitsClientResolvedConfig
|
|
207
195
|
> {
|
|
208
196
|
readonly config: PartnerCentralBenefitsClientResolvedConfig;
|
|
209
|
-
constructor(
|
|
210
|
-
...[
|
|
211
|
-
configuration,
|
|
212
|
-
]: __CheckOptionalClientConfig<PartnerCentralBenefitsClientConfig>
|
|
213
|
-
);
|
|
197
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<PartnerCentralBenefitsClientConfig>);
|
|
214
198
|
destroy(): void;
|
|
215
199
|
}
|
|
@@ -8,16 +8,11 @@ export interface HttpAuthExtensionConfiguration {
|
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
10
|
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: PartnerCentralBenefitsHttpAuthSchemeProvider
|
|
11
|
+
httpAuthSchemeProvider: PartnerCentralBenefitsHttpAuthSchemeProvider,
|
|
12
12
|
): void;
|
|
13
13
|
httpAuthSchemeProvider(): PartnerCentralBenefitsHttpAuthSchemeProvider;
|
|
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 { PartnerCentralBenefitsClientResolvedConfig } from "../PartnerCentralBenefitsClient";
|
|
15
|
-
export interface PartnerCentralBenefitsHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface PartnerCentralBenefitsHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface PartnerCentralBenefitsHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface PartnerCentralBenefitsHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
PartnerCentralBenefitsClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
PartnerCentralBenefitsHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultPartnerCentralBenefitsHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: PartnerCentralBenefitsClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<PartnerCentralBenefitsHttpAuthSchemeParameters>;
|
|
31
|
-
export interface PartnerCentralBenefitsHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<PartnerCentralBenefitsHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface PartnerCentralBenefitsHttpAuthSchemeProvider extends HttpAuthSchemeProvider<PartnerCentralBenefitsHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultPartnerCentralBenefitsHttpAuthSchemeProvider: PartnerCentralBenefitsHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: PartnerCentralBenefitsHttpAuthSchemeProvider;
|
|
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: PartnerCentralBenefitsHttpAuthSchemeProvider;
|
|
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 "./PartnerCentralBenefitsClient";
|
|
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
|
PartnerCentralBenefitsClientResolvedConfig,
|
|
@@ -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[];
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
AmendBenefitApplicationInput,
|
|
4
|
-
AmendBenefitApplicationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { AmendBenefitApplicationInput, AmendBenefitApplicationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface AmendBenefitApplicationCommandInput
|
|
8
|
-
extends AmendBenefitApplicationInput {}
|
|
4
|
+
export interface AmendBenefitApplicationCommandInput extends AmendBenefitApplicationInput {}
|
|
9
5
|
export interface AmendBenefitApplicationCommandOutput
|
|
10
|
-
extends AmendBenefitApplicationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends AmendBenefitApplicationOutput, __MetadataBearer {}
|
|
12
7
|
declare const AmendBenefitApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: AmendBenefitApplicationCommandInput
|
|
9
|
+
input: AmendBenefitApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
AmendBenefitApplicationCommandInput,
|
|
17
12
|
AmendBenefitApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const AmendBenefitApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: AmendBenefitApplicationCommandInput
|
|
18
|
+
input: AmendBenefitApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
AmendBenefitApplicationCommandInput,
|
|
26
21
|
AmendBenefitApplicationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
AssociateBenefitApplicationResourceOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface AssociateBenefitApplicationResourceCommandInput
|
|
8
|
-
extends AssociateBenefitApplicationResourceInput {}
|
|
7
|
+
export interface AssociateBenefitApplicationResourceCommandInput extends AssociateBenefitApplicationResourceInput {}
|
|
9
8
|
export interface AssociateBenefitApplicationResourceCommandOutput
|
|
10
|
-
extends AssociateBenefitApplicationResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends AssociateBenefitApplicationResourceOutput, __MetadataBearer {}
|
|
12
10
|
declare const AssociateBenefitApplicationResourceCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: AssociateBenefitApplicationResourceCommandInput
|
|
12
|
+
input: AssociateBenefitApplicationResourceCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
AssociateBenefitApplicationResourceCommandInput,
|
|
17
15
|
AssociateBenefitApplicationResourceCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const AssociateBenefitApplicationResourceCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: AssociateBenefitApplicationResourceCommandInput
|
|
21
|
+
input: AssociateBenefitApplicationResourceCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
AssociateBenefitApplicationResourceCommandInput,
|
|
26
24
|
AssociateBenefitApplicationResourceCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CancelBenefitApplicationInput,
|
|
4
|
-
CancelBenefitApplicationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelBenefitApplicationInput, CancelBenefitApplicationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CancelBenefitApplicationCommandInput
|
|
8
|
-
extends CancelBenefitApplicationInput {}
|
|
4
|
+
export interface CancelBenefitApplicationCommandInput extends CancelBenefitApplicationInput {}
|
|
9
5
|
export interface CancelBenefitApplicationCommandOutput
|
|
10
|
-
extends CancelBenefitApplicationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CancelBenefitApplicationOutput, __MetadataBearer {}
|
|
12
7
|
declare const CancelBenefitApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CancelBenefitApplicationCommandInput
|
|
9
|
+
input: CancelBenefitApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CancelBenefitApplicationCommandInput,
|
|
17
12
|
CancelBenefitApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CancelBenefitApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CancelBenefitApplicationCommandInput
|
|
18
|
+
input: CancelBenefitApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CancelBenefitApplicationCommandInput,
|
|
26
21
|
CancelBenefitApplicationCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
CreateBenefitApplicationInput,
|
|
4
|
-
CreateBenefitApplicationOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CreateBenefitApplicationInput, CreateBenefitApplicationOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreateBenefitApplicationCommandInput
|
|
8
|
-
extends CreateBenefitApplicationInput {}
|
|
4
|
+
export interface CreateBenefitApplicationCommandInput extends CreateBenefitApplicationInput {}
|
|
9
5
|
export interface CreateBenefitApplicationCommandOutput
|
|
10
|
-
extends CreateBenefitApplicationOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CreateBenefitApplicationOutput, __MetadataBearer {}
|
|
12
7
|
declare const CreateBenefitApplicationCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CreateBenefitApplicationCommandInput
|
|
9
|
+
input: CreateBenefitApplicationCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CreateBenefitApplicationCommandInput,
|
|
17
12
|
CreateBenefitApplicationCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CreateBenefitApplicationCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CreateBenefitApplicationCommandInput
|
|
18
|
+
input: CreateBenefitApplicationCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CreateBenefitApplicationCommandInput,
|
|
26
21
|
CreateBenefitApplicationCommandOutput,
|