@aws-sdk/client-arc-zonal-shift 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/ARCZonalShift.d.ts +49 -69
- package/dist-types/ts3.4/ARCZonalShiftClient.d.ts +6 -16
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- 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/CancelPracticeRunCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CancelZonalShiftCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreatePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DeletePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAutoshiftObserverNotificationStatusCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetManagedResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAutoshiftsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListManagedResourcesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListZonalShiftsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/StartPracticeRunCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/StartZonalShiftCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateAutoshiftObserverNotificationStatusCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdatePracticeRunConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateZonalAutoshiftConfigurationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/UpdateZonalShiftCommand.d.ts +3 -5
- 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 +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +5 -15
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
package/dist-cjs/index.js
CHANGED
|
@@ -67,243 +67,223 @@ import {
|
|
|
67
67
|
export interface ARCZonalShift {
|
|
68
68
|
cancelPracticeRun(
|
|
69
69
|
args: CancelPracticeRunCommandInput,
|
|
70
|
-
options?: __HttpHandlerOptions
|
|
70
|
+
options?: __HttpHandlerOptions,
|
|
71
71
|
): Promise<CancelPracticeRunCommandOutput>;
|
|
72
72
|
cancelPracticeRun(
|
|
73
73
|
args: CancelPracticeRunCommandInput,
|
|
74
|
-
cb: (err: any, data?: CancelPracticeRunCommandOutput) => void
|
|
74
|
+
cb: (err: any, data?: CancelPracticeRunCommandOutput) => void,
|
|
75
75
|
): void;
|
|
76
76
|
cancelPracticeRun(
|
|
77
77
|
args: CancelPracticeRunCommandInput,
|
|
78
78
|
options: __HttpHandlerOptions,
|
|
79
|
-
cb: (err: any, data?: CancelPracticeRunCommandOutput) => void
|
|
79
|
+
cb: (err: any, data?: CancelPracticeRunCommandOutput) => void,
|
|
80
80
|
): void;
|
|
81
81
|
cancelZonalShift(
|
|
82
82
|
args: CancelZonalShiftCommandInput,
|
|
83
|
-
options?: __HttpHandlerOptions
|
|
83
|
+
options?: __HttpHandlerOptions,
|
|
84
84
|
): Promise<CancelZonalShiftCommandOutput>;
|
|
85
85
|
cancelZonalShift(
|
|
86
86
|
args: CancelZonalShiftCommandInput,
|
|
87
|
-
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void
|
|
87
|
+
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void,
|
|
88
88
|
): void;
|
|
89
89
|
cancelZonalShift(
|
|
90
90
|
args: CancelZonalShiftCommandInput,
|
|
91
91
|
options: __HttpHandlerOptions,
|
|
92
|
-
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void
|
|
92
|
+
cb: (err: any, data?: CancelZonalShiftCommandOutput) => void,
|
|
93
93
|
): void;
|
|
94
94
|
createPracticeRunConfiguration(
|
|
95
95
|
args: CreatePracticeRunConfigurationCommandInput,
|
|
96
|
-
options?: __HttpHandlerOptions
|
|
96
|
+
options?: __HttpHandlerOptions,
|
|
97
97
|
): Promise<CreatePracticeRunConfigurationCommandOutput>;
|
|
98
98
|
createPracticeRunConfiguration(
|
|
99
99
|
args: CreatePracticeRunConfigurationCommandInput,
|
|
100
|
-
cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void
|
|
100
|
+
cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void,
|
|
101
101
|
): void;
|
|
102
102
|
createPracticeRunConfiguration(
|
|
103
103
|
args: CreatePracticeRunConfigurationCommandInput,
|
|
104
104
|
options: __HttpHandlerOptions,
|
|
105
|
-
cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void
|
|
105
|
+
cb: (err: any, data?: CreatePracticeRunConfigurationCommandOutput) => void,
|
|
106
106
|
): void;
|
|
107
107
|
deletePracticeRunConfiguration(
|
|
108
108
|
args: DeletePracticeRunConfigurationCommandInput,
|
|
109
|
-
options?: __HttpHandlerOptions
|
|
109
|
+
options?: __HttpHandlerOptions,
|
|
110
110
|
): Promise<DeletePracticeRunConfigurationCommandOutput>;
|
|
111
111
|
deletePracticeRunConfiguration(
|
|
112
112
|
args: DeletePracticeRunConfigurationCommandInput,
|
|
113
|
-
cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void
|
|
113
|
+
cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void,
|
|
114
114
|
): void;
|
|
115
115
|
deletePracticeRunConfiguration(
|
|
116
116
|
args: DeletePracticeRunConfigurationCommandInput,
|
|
117
117
|
options: __HttpHandlerOptions,
|
|
118
|
-
cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void
|
|
118
|
+
cb: (err: any, data?: DeletePracticeRunConfigurationCommandOutput) => void,
|
|
119
119
|
): void;
|
|
120
120
|
getAutoshiftObserverNotificationStatus(): Promise<GetAutoshiftObserverNotificationStatusCommandOutput>;
|
|
121
121
|
getAutoshiftObserverNotificationStatus(
|
|
122
122
|
args: GetAutoshiftObserverNotificationStatusCommandInput,
|
|
123
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
124
124
|
): Promise<GetAutoshiftObserverNotificationStatusCommandOutput>;
|
|
125
125
|
getAutoshiftObserverNotificationStatus(
|
|
126
126
|
args: GetAutoshiftObserverNotificationStatusCommandInput,
|
|
127
|
-
cb: (
|
|
128
|
-
err: any,
|
|
129
|
-
data?: GetAutoshiftObserverNotificationStatusCommandOutput
|
|
130
|
-
) => void
|
|
127
|
+
cb: (err: any, data?: GetAutoshiftObserverNotificationStatusCommandOutput) => void,
|
|
131
128
|
): void;
|
|
132
129
|
getAutoshiftObserverNotificationStatus(
|
|
133
130
|
args: GetAutoshiftObserverNotificationStatusCommandInput,
|
|
134
131
|
options: __HttpHandlerOptions,
|
|
135
|
-
cb: (
|
|
136
|
-
err: any,
|
|
137
|
-
data?: GetAutoshiftObserverNotificationStatusCommandOutput
|
|
138
|
-
) => void
|
|
132
|
+
cb: (err: any, data?: GetAutoshiftObserverNotificationStatusCommandOutput) => void,
|
|
139
133
|
): void;
|
|
140
134
|
getManagedResource(
|
|
141
135
|
args: GetManagedResourceCommandInput,
|
|
142
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
143
137
|
): Promise<GetManagedResourceCommandOutput>;
|
|
144
138
|
getManagedResource(
|
|
145
139
|
args: GetManagedResourceCommandInput,
|
|
146
|
-
cb: (err: any, data?: GetManagedResourceCommandOutput) => void
|
|
140
|
+
cb: (err: any, data?: GetManagedResourceCommandOutput) => void,
|
|
147
141
|
): void;
|
|
148
142
|
getManagedResource(
|
|
149
143
|
args: GetManagedResourceCommandInput,
|
|
150
144
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (err: any, data?: GetManagedResourceCommandOutput) => void
|
|
145
|
+
cb: (err: any, data?: GetManagedResourceCommandOutput) => void,
|
|
152
146
|
): void;
|
|
153
147
|
listAutoshifts(): Promise<ListAutoshiftsCommandOutput>;
|
|
154
148
|
listAutoshifts(
|
|
155
149
|
args: ListAutoshiftsCommandInput,
|
|
156
|
-
options?: __HttpHandlerOptions
|
|
150
|
+
options?: __HttpHandlerOptions,
|
|
157
151
|
): Promise<ListAutoshiftsCommandOutput>;
|
|
158
152
|
listAutoshifts(
|
|
159
153
|
args: ListAutoshiftsCommandInput,
|
|
160
|
-
cb: (err: any, data?: ListAutoshiftsCommandOutput) => void
|
|
154
|
+
cb: (err: any, data?: ListAutoshiftsCommandOutput) => void,
|
|
161
155
|
): void;
|
|
162
156
|
listAutoshifts(
|
|
163
157
|
args: ListAutoshiftsCommandInput,
|
|
164
158
|
options: __HttpHandlerOptions,
|
|
165
|
-
cb: (err: any, data?: ListAutoshiftsCommandOutput) => void
|
|
159
|
+
cb: (err: any, data?: ListAutoshiftsCommandOutput) => void,
|
|
166
160
|
): void;
|
|
167
161
|
listManagedResources(): Promise<ListManagedResourcesCommandOutput>;
|
|
168
162
|
listManagedResources(
|
|
169
163
|
args: ListManagedResourcesCommandInput,
|
|
170
|
-
options?: __HttpHandlerOptions
|
|
164
|
+
options?: __HttpHandlerOptions,
|
|
171
165
|
): Promise<ListManagedResourcesCommandOutput>;
|
|
172
166
|
listManagedResources(
|
|
173
167
|
args: ListManagedResourcesCommandInput,
|
|
174
|
-
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void
|
|
168
|
+
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void,
|
|
175
169
|
): void;
|
|
176
170
|
listManagedResources(
|
|
177
171
|
args: ListManagedResourcesCommandInput,
|
|
178
172
|
options: __HttpHandlerOptions,
|
|
179
|
-
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: ListManagedResourcesCommandOutput) => void,
|
|
180
174
|
): void;
|
|
181
175
|
listZonalShifts(): Promise<ListZonalShiftsCommandOutput>;
|
|
182
176
|
listZonalShifts(
|
|
183
177
|
args: ListZonalShiftsCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
178
|
+
options?: __HttpHandlerOptions,
|
|
185
179
|
): Promise<ListZonalShiftsCommandOutput>;
|
|
186
180
|
listZonalShifts(
|
|
187
181
|
args: ListZonalShiftsCommandInput,
|
|
188
|
-
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void,
|
|
189
183
|
): void;
|
|
190
184
|
listZonalShifts(
|
|
191
185
|
args: ListZonalShiftsCommandInput,
|
|
192
186
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: ListZonalShiftsCommandOutput) => void,
|
|
194
188
|
): void;
|
|
195
189
|
startPracticeRun(
|
|
196
190
|
args: StartPracticeRunCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
191
|
+
options?: __HttpHandlerOptions,
|
|
198
192
|
): Promise<StartPracticeRunCommandOutput>;
|
|
199
193
|
startPracticeRun(
|
|
200
194
|
args: StartPracticeRunCommandInput,
|
|
201
|
-
cb: (err: any, data?: StartPracticeRunCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: StartPracticeRunCommandOutput) => void,
|
|
202
196
|
): void;
|
|
203
197
|
startPracticeRun(
|
|
204
198
|
args: StartPracticeRunCommandInput,
|
|
205
199
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: StartPracticeRunCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: StartPracticeRunCommandOutput) => void,
|
|
207
201
|
): void;
|
|
208
202
|
startZonalShift(
|
|
209
203
|
args: StartZonalShiftCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
204
|
+
options?: __HttpHandlerOptions,
|
|
211
205
|
): Promise<StartZonalShiftCommandOutput>;
|
|
212
206
|
startZonalShift(
|
|
213
207
|
args: StartZonalShiftCommandInput,
|
|
214
|
-
cb: (err: any, data?: StartZonalShiftCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: StartZonalShiftCommandOutput) => void,
|
|
215
209
|
): void;
|
|
216
210
|
startZonalShift(
|
|
217
211
|
args: StartZonalShiftCommandInput,
|
|
218
212
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: StartZonalShiftCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: StartZonalShiftCommandOutput) => void,
|
|
220
214
|
): void;
|
|
221
215
|
updateAutoshiftObserverNotificationStatus(
|
|
222
216
|
args: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
223
|
-
options?: __HttpHandlerOptions
|
|
217
|
+
options?: __HttpHandlerOptions,
|
|
224
218
|
): Promise<UpdateAutoshiftObserverNotificationStatusCommandOutput>;
|
|
225
219
|
updateAutoshiftObserverNotificationStatus(
|
|
226
220
|
args: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
227
|
-
cb: (
|
|
228
|
-
err: any,
|
|
229
|
-
data?: UpdateAutoshiftObserverNotificationStatusCommandOutput
|
|
230
|
-
) => void
|
|
221
|
+
cb: (err: any, data?: UpdateAutoshiftObserverNotificationStatusCommandOutput) => void,
|
|
231
222
|
): void;
|
|
232
223
|
updateAutoshiftObserverNotificationStatus(
|
|
233
224
|
args: UpdateAutoshiftObserverNotificationStatusCommandInput,
|
|
234
225
|
options: __HttpHandlerOptions,
|
|
235
|
-
cb: (
|
|
236
|
-
err: any,
|
|
237
|
-
data?: UpdateAutoshiftObserverNotificationStatusCommandOutput
|
|
238
|
-
) => void
|
|
226
|
+
cb: (err: any, data?: UpdateAutoshiftObserverNotificationStatusCommandOutput) => void,
|
|
239
227
|
): void;
|
|
240
228
|
updatePracticeRunConfiguration(
|
|
241
229
|
args: UpdatePracticeRunConfigurationCommandInput,
|
|
242
|
-
options?: __HttpHandlerOptions
|
|
230
|
+
options?: __HttpHandlerOptions,
|
|
243
231
|
): Promise<UpdatePracticeRunConfigurationCommandOutput>;
|
|
244
232
|
updatePracticeRunConfiguration(
|
|
245
233
|
args: UpdatePracticeRunConfigurationCommandInput,
|
|
246
|
-
cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void
|
|
234
|
+
cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void,
|
|
247
235
|
): void;
|
|
248
236
|
updatePracticeRunConfiguration(
|
|
249
237
|
args: UpdatePracticeRunConfigurationCommandInput,
|
|
250
238
|
options: __HttpHandlerOptions,
|
|
251
|
-
cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: UpdatePracticeRunConfigurationCommandOutput) => void,
|
|
252
240
|
): void;
|
|
253
241
|
updateZonalAutoshiftConfiguration(
|
|
254
242
|
args: UpdateZonalAutoshiftConfigurationCommandInput,
|
|
255
|
-
options?: __HttpHandlerOptions
|
|
243
|
+
options?: __HttpHandlerOptions,
|
|
256
244
|
): Promise<UpdateZonalAutoshiftConfigurationCommandOutput>;
|
|
257
245
|
updateZonalAutoshiftConfiguration(
|
|
258
246
|
args: UpdateZonalAutoshiftConfigurationCommandInput,
|
|
259
|
-
cb: (
|
|
260
|
-
err: any,
|
|
261
|
-
data?: UpdateZonalAutoshiftConfigurationCommandOutput
|
|
262
|
-
) => void
|
|
247
|
+
cb: (err: any, data?: UpdateZonalAutoshiftConfigurationCommandOutput) => void,
|
|
263
248
|
): void;
|
|
264
249
|
updateZonalAutoshiftConfiguration(
|
|
265
250
|
args: UpdateZonalAutoshiftConfigurationCommandInput,
|
|
266
251
|
options: __HttpHandlerOptions,
|
|
267
|
-
cb: (
|
|
268
|
-
err: any,
|
|
269
|
-
data?: UpdateZonalAutoshiftConfigurationCommandOutput
|
|
270
|
-
) => void
|
|
252
|
+
cb: (err: any, data?: UpdateZonalAutoshiftConfigurationCommandOutput) => void,
|
|
271
253
|
): void;
|
|
272
254
|
updateZonalShift(
|
|
273
255
|
args: UpdateZonalShiftCommandInput,
|
|
274
|
-
options?: __HttpHandlerOptions
|
|
256
|
+
options?: __HttpHandlerOptions,
|
|
275
257
|
): Promise<UpdateZonalShiftCommandOutput>;
|
|
276
258
|
updateZonalShift(
|
|
277
259
|
args: UpdateZonalShiftCommandInput,
|
|
278
|
-
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void
|
|
260
|
+
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void,
|
|
279
261
|
): void;
|
|
280
262
|
updateZonalShift(
|
|
281
263
|
args: UpdateZonalShiftCommandInput,
|
|
282
264
|
options: __HttpHandlerOptions,
|
|
283
|
-
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: UpdateZonalShiftCommandOutput) => void,
|
|
284
266
|
): void;
|
|
285
267
|
paginateListAutoshifts(
|
|
286
268
|
args?: ListAutoshiftsCommandInput,
|
|
287
269
|
paginationConfig?: Pick<
|
|
288
270
|
PaginationConfiguration,
|
|
289
271
|
Exclude<keyof PaginationConfiguration, "client">
|
|
290
|
-
|
|
272
|
+
>,
|
|
291
273
|
): Paginator<ListAutoshiftsCommandOutput>;
|
|
292
274
|
paginateListManagedResources(
|
|
293
275
|
args?: ListManagedResourcesCommandInput,
|
|
294
276
|
paginationConfig?: Pick<
|
|
295
277
|
PaginationConfiguration,
|
|
296
278
|
Exclude<keyof PaginationConfiguration, "client">
|
|
297
|
-
|
|
279
|
+
>,
|
|
298
280
|
): Paginator<ListManagedResourcesCommandOutput>;
|
|
299
281
|
paginateListZonalShifts(
|
|
300
282
|
args?: ListZonalShiftsCommandInput,
|
|
301
283
|
paginationConfig?: Pick<
|
|
302
284
|
PaginationConfiguration,
|
|
303
285
|
Exclude<keyof PaginationConfiguration, "client">
|
|
304
|
-
|
|
286
|
+
>,
|
|
305
287
|
): Paginator<ListZonalShiftsCommandOutput>;
|
|
306
288
|
}
|
|
307
|
-
export declare class ARCZonalShift
|
|
308
|
-
extends ARCZonalShiftClient
|
|
309
|
-
implements ARCZonalShift {}
|
|
289
|
+
export declare class ARCZonalShift extends ARCZonalShiftClient implements ARCZonalShift {}
|
|
@@ -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 {
|
|
@@ -135,8 +132,7 @@ export type ServiceOutputTypes =
|
|
|
135
132
|
| UpdatePracticeRunConfigurationCommandOutput
|
|
136
133
|
| UpdateZonalAutoshiftConfigurationCommandOutput
|
|
137
134
|
| UpdateZonalShiftCommandOutput;
|
|
138
|
-
export interface ClientDefaults
|
|
139
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
135
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
140
136
|
requestHandler?: __HttpHandlerUserInput;
|
|
141
137
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
142
138
|
urlParser?: __UrlParser;
|
|
@@ -161,9 +157,7 @@ export interface ClientDefaults
|
|
|
161
157
|
extensions?: RuntimeExtension[];
|
|
162
158
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
163
159
|
}
|
|
164
|
-
export type ARCZonalShiftClientConfigType = Partial<
|
|
165
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
166
|
-
> &
|
|
160
|
+
export type ARCZonalShiftClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
167
161
|
ClientDefaults &
|
|
168
162
|
UserAgentInputConfig &
|
|
169
163
|
RetryInputConfig &
|
|
@@ -172,8 +166,7 @@ export type ARCZonalShiftClientConfigType = Partial<
|
|
|
172
166
|
EndpointInputConfig<EndpointParameters> &
|
|
173
167
|
HttpAuthSchemeInputConfig &
|
|
174
168
|
ClientInputEndpointParameters;
|
|
175
|
-
export interface ARCZonalShiftClientConfig
|
|
176
|
-
extends ARCZonalShiftClientConfigType {}
|
|
169
|
+
export interface ARCZonalShiftClientConfig extends ARCZonalShiftClientConfigType {}
|
|
177
170
|
export type ARCZonalShiftClientResolvedConfigType =
|
|
178
171
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
179
172
|
Required<ClientDefaults> &
|
|
@@ -185,8 +178,7 @@ export type ARCZonalShiftClientResolvedConfigType =
|
|
|
185
178
|
EndpointResolvedConfig<EndpointParameters> &
|
|
186
179
|
HttpAuthSchemeResolvedConfig &
|
|
187
180
|
ClientResolvedEndpointParameters;
|
|
188
|
-
export interface ARCZonalShiftClientResolvedConfig
|
|
189
|
-
extends ARCZonalShiftClientResolvedConfigType {}
|
|
181
|
+
export interface ARCZonalShiftClientResolvedConfig extends ARCZonalShiftClientResolvedConfigType {}
|
|
190
182
|
export declare class ARCZonalShiftClient extends __Client<
|
|
191
183
|
__HttpHandlerOptions,
|
|
192
184
|
ServiceInputTypes,
|
|
@@ -194,8 +186,6 @@ export declare class ARCZonalShiftClient extends __Client<
|
|
|
194
186
|
ARCZonalShiftClientResolvedConfig
|
|
195
187
|
> {
|
|
196
188
|
readonly config: ARCZonalShiftClientResolvedConfig;
|
|
197
|
-
constructor(
|
|
198
|
-
...[configuration]: __CheckOptionalClientConfig<ARCZonalShiftClientConfig>
|
|
199
|
-
);
|
|
189
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<ARCZonalShiftClientConfig>);
|
|
200
190
|
destroy(): void;
|
|
201
191
|
}
|
|
@@ -7,17 +7,10 @@ import { ARCZonalShiftHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: ARCZonalShiftHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: ARCZonalShiftHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): ARCZonalShiftHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -12,36 +12,32 @@ import {
|
|
|
12
12
|
Provider,
|
|
13
13
|
} from "@smithy/types";
|
|
14
14
|
import { ARCZonalShiftClientResolvedConfig } from "../ARCZonalShiftClient";
|
|
15
|
-
export interface ARCZonalShiftHttpAuthSchemeParameters
|
|
16
|
-
extends HttpAuthSchemeParameters {
|
|
15
|
+
export interface ARCZonalShiftHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
17
16
|
region?: string;
|
|
18
17
|
}
|
|
19
|
-
export interface ARCZonalShiftHttpAuthSchemeParametersProvider
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
> {}
|
|
18
|
+
export interface ARCZonalShiftHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
ARCZonalShiftClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
ARCZonalShiftHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
26
24
|
export declare const defaultARCZonalShiftHttpAuthSchemeParametersProvider: (
|
|
27
25
|
config: ARCZonalShiftClientResolvedConfig,
|
|
28
26
|
context: HandlerExecutionContext,
|
|
29
|
-
input: object
|
|
27
|
+
input: object,
|
|
30
28
|
) => Promise<ARCZonalShiftHttpAuthSchemeParameters>;
|
|
31
|
-
export interface ARCZonalShiftHttpAuthSchemeProvider
|
|
32
|
-
extends HttpAuthSchemeProvider<ARCZonalShiftHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface ARCZonalShiftHttpAuthSchemeProvider extends HttpAuthSchemeProvider<ARCZonalShiftHttpAuthSchemeParameters> {}
|
|
33
30
|
export declare const defaultARCZonalShiftHttpAuthSchemeProvider: ARCZonalShiftHttpAuthSchemeProvider;
|
|
34
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
34
|
httpAuthSchemeProvider?: ARCZonalShiftHttpAuthSchemeProvider;
|
|
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: ARCZonalShiftHttpAuthSchemeProvider;
|
|
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 "./ARCZonalShiftClient";
|
|
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
|
ARCZonalShiftClientResolvedConfig,
|
|
@@ -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
|
-
CancelPracticeRunRequest,
|
|
4
|
-
CancelPracticeRunResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { CancelPracticeRunRequest, CancelPracticeRunResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface CancelPracticeRunCommandInput
|
|
8
|
-
extends CancelPracticeRunRequest {}
|
|
4
|
+
export interface CancelPracticeRunCommandInput extends CancelPracticeRunRequest {}
|
|
9
5
|
export interface CancelPracticeRunCommandOutput
|
|
10
|
-
extends CancelPracticeRunResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends CancelPracticeRunResponse, __MetadataBearer {}
|
|
12
7
|
declare const CancelPracticeRunCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: CancelPracticeRunCommandInput
|
|
9
|
+
input: CancelPracticeRunCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
CancelPracticeRunCommandInput,
|
|
17
12
|
CancelPracticeRunCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const CancelPracticeRunCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: CancelPracticeRunCommandInput
|
|
18
|
+
input: CancelPracticeRunCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
CancelPracticeRunCommandInput,
|
|
26
21
|
CancelPracticeRunCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { CancelZonalShiftRequest, ZonalShift } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface CancelZonalShiftCommandInput extends CancelZonalShiftRequest {}
|
|
5
|
-
export interface CancelZonalShiftCommandOutput
|
|
6
|
-
extends ZonalShift,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface CancelZonalShiftCommandOutput extends ZonalShift, __MetadataBearer {}
|
|
8
6
|
declare const CancelZonalShiftCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: CancelZonalShiftCommandInput
|
|
8
|
+
input: CancelZonalShiftCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
CancelZonalShiftCommandInput,
|
|
13
11
|
CancelZonalShiftCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const CancelZonalShiftCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: CancelZonalShiftCommandInput
|
|
17
|
+
input: CancelZonalShiftCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
CancelZonalShiftCommandInput,
|
|
22
20
|
CancelZonalShiftCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
CreatePracticeRunConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface CreatePracticeRunConfigurationCommandInput
|
|
8
|
-
extends CreatePracticeRunConfigurationRequest {}
|
|
7
|
+
export interface CreatePracticeRunConfigurationCommandInput extends CreatePracticeRunConfigurationRequest {}
|
|
9
8
|
export interface CreatePracticeRunConfigurationCommandOutput
|
|
10
|
-
extends CreatePracticeRunConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends CreatePracticeRunConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const CreatePracticeRunConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: CreatePracticeRunConfigurationCommandInput
|
|
12
|
+
input: CreatePracticeRunConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
CreatePracticeRunConfigurationCommandInput,
|
|
17
15
|
CreatePracticeRunConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const CreatePracticeRunConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: CreatePracticeRunConfigurationCommandInput
|
|
21
|
+
input: CreatePracticeRunConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
CreatePracticeRunConfigurationCommandInput,
|
|
26
24
|
CreatePracticeRunConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
DeletePracticeRunConfigurationResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface DeletePracticeRunConfigurationCommandInput
|
|
8
|
-
extends DeletePracticeRunConfigurationRequest {}
|
|
7
|
+
export interface DeletePracticeRunConfigurationCommandInput extends DeletePracticeRunConfigurationRequest {}
|
|
9
8
|
export interface DeletePracticeRunConfigurationCommandOutput
|
|
10
|
-
extends DeletePracticeRunConfigurationResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends DeletePracticeRunConfigurationResponse, __MetadataBearer {}
|
|
12
10
|
declare const DeletePracticeRunConfigurationCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: DeletePracticeRunConfigurationCommandInput
|
|
12
|
+
input: DeletePracticeRunConfigurationCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
DeletePracticeRunConfigurationCommandInput,
|
|
17
15
|
DeletePracticeRunConfigurationCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const DeletePracticeRunConfigurationCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: DeletePracticeRunConfigurationCommandInput
|
|
21
|
+
input: DeletePracticeRunConfigurationCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
DeletePracticeRunConfigurationCommandInput,
|
|
26
24
|
DeletePracticeRunConfigurationCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
GetAutoshiftObserverNotificationStatusResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetAutoshiftObserverNotificationStatusCommandInput
|
|
8
|
-
extends GetAutoshiftObserverNotificationStatusRequest {}
|
|
7
|
+
export interface GetAutoshiftObserverNotificationStatusCommandInput extends GetAutoshiftObserverNotificationStatusRequest {}
|
|
9
8
|
export interface GetAutoshiftObserverNotificationStatusCommandOutput
|
|
10
|
-
extends GetAutoshiftObserverNotificationStatusResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends GetAutoshiftObserverNotificationStatusResponse, __MetadataBearer {}
|
|
12
10
|
declare const GetAutoshiftObserverNotificationStatusCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: GetAutoshiftObserverNotificationStatusCommandInput
|
|
12
|
+
input: GetAutoshiftObserverNotificationStatusCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
GetAutoshiftObserverNotificationStatusCommandInput,
|
|
17
15
|
GetAutoshiftObserverNotificationStatusCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
GetManagedResourceRequest,
|
|
4
|
-
GetManagedResourceResponse,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { GetManagedResourceRequest, GetManagedResourceResponse } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface GetManagedResourceCommandInput
|
|
8
|
-
extends GetManagedResourceRequest {}
|
|
4
|
+
export interface GetManagedResourceCommandInput extends GetManagedResourceRequest {}
|
|
9
5
|
export interface GetManagedResourceCommandOutput
|
|
10
|
-
extends GetManagedResourceResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends GetManagedResourceResponse, __MetadataBearer {}
|
|
12
7
|
declare const GetManagedResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: GetManagedResourceCommandInput
|
|
9
|
+
input: GetManagedResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
GetManagedResourceCommandInput,
|
|
17
12
|
GetManagedResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const GetManagedResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: GetManagedResourceCommandInput
|
|
18
|
+
input: GetManagedResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
GetManagedResourceCommandInput,
|
|
26
21
|
GetManagedResourceCommandOutput,
|