@aws-sdk/client-snowball 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/Snowball.d.ts +93 -111
- package/dist-types/ts3.4/SnowballClient.d.ts +20 -45
- 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/CancelClusterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +4 -10
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +4 -4
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListPickupLocationsCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListServiceVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +7 -5
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.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 +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +10 -34
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +1 -4
- 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 +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -7,10 +7,7 @@ import {
|
|
|
7
7
|
CancelClusterCommandInput,
|
|
8
8
|
CancelClusterCommandOutput,
|
|
9
9
|
} from "./commands/CancelClusterCommand";
|
|
10
|
-
import {
|
|
11
|
-
CancelJobCommandInput,
|
|
12
|
-
CancelJobCommandOutput,
|
|
13
|
-
} from "./commands/CancelJobCommand";
|
|
10
|
+
import { CancelJobCommandInput, CancelJobCommandOutput } from "./commands/CancelJobCommand";
|
|
14
11
|
import {
|
|
15
12
|
CreateAddressCommandInput,
|
|
16
13
|
CreateAddressCommandOutput,
|
|
@@ -19,10 +16,7 @@ import {
|
|
|
19
16
|
CreateClusterCommandInput,
|
|
20
17
|
CreateClusterCommandOutput,
|
|
21
18
|
} from "./commands/CreateClusterCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateJobCommandInput,
|
|
24
|
-
CreateJobCommandOutput,
|
|
25
|
-
} from "./commands/CreateJobCommand";
|
|
19
|
+
import { CreateJobCommandInput, CreateJobCommandOutput } from "./commands/CreateJobCommand";
|
|
26
20
|
import {
|
|
27
21
|
CreateLongTermPricingCommandInput,
|
|
28
22
|
CreateLongTermPricingCommandOutput,
|
|
@@ -43,10 +37,7 @@ import {
|
|
|
43
37
|
DescribeClusterCommandInput,
|
|
44
38
|
DescribeClusterCommandOutput,
|
|
45
39
|
} from "./commands/DescribeClusterCommand";
|
|
46
|
-
import {
|
|
47
|
-
DescribeJobCommandInput,
|
|
48
|
-
DescribeJobCommandOutput,
|
|
49
|
-
} from "./commands/DescribeJobCommand";
|
|
40
|
+
import { DescribeJobCommandInput, DescribeJobCommandOutput } from "./commands/DescribeJobCommand";
|
|
50
41
|
import {
|
|
51
42
|
DescribeReturnShippingLabelCommandInput,
|
|
52
43
|
DescribeReturnShippingLabelCommandOutput,
|
|
@@ -79,10 +70,7 @@ import {
|
|
|
79
70
|
ListCompatibleImagesCommandInput,
|
|
80
71
|
ListCompatibleImagesCommandOutput,
|
|
81
72
|
} from "./commands/ListCompatibleImagesCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListJobsCommandInput,
|
|
84
|
-
ListJobsCommandOutput,
|
|
85
|
-
} from "./commands/ListJobsCommand";
|
|
73
|
+
import { ListJobsCommandInput, ListJobsCommandOutput } from "./commands/ListJobsCommand";
|
|
86
74
|
import {
|
|
87
75
|
ListLongTermPricingCommandInput,
|
|
88
76
|
ListLongTermPricingCommandOutput,
|
|
@@ -99,10 +87,7 @@ import {
|
|
|
99
87
|
UpdateClusterCommandInput,
|
|
100
88
|
UpdateClusterCommandOutput,
|
|
101
89
|
} from "./commands/UpdateClusterCommand";
|
|
102
|
-
import {
|
|
103
|
-
UpdateJobCommandInput,
|
|
104
|
-
UpdateJobCommandOutput,
|
|
105
|
-
} from "./commands/UpdateJobCommand";
|
|
90
|
+
import { UpdateJobCommandInput, UpdateJobCommandOutput } from "./commands/UpdateJobCommand";
|
|
106
91
|
import {
|
|
107
92
|
UpdateJobShipmentStateCommandInput,
|
|
108
93
|
UpdateJobShipmentStateCommandOutput,
|
|
@@ -115,411 +100,408 @@ import { SnowballClient } from "./SnowballClient";
|
|
|
115
100
|
export interface Snowball {
|
|
116
101
|
cancelCluster(
|
|
117
102
|
args: CancelClusterCommandInput,
|
|
118
|
-
options?: __HttpHandlerOptions
|
|
103
|
+
options?: __HttpHandlerOptions,
|
|
119
104
|
): Promise<CancelClusterCommandOutput>;
|
|
120
105
|
cancelCluster(
|
|
121
106
|
args: CancelClusterCommandInput,
|
|
122
|
-
cb: (err: any, data?: CancelClusterCommandOutput) => void
|
|
107
|
+
cb: (err: any, data?: CancelClusterCommandOutput) => void,
|
|
123
108
|
): void;
|
|
124
109
|
cancelCluster(
|
|
125
110
|
args: CancelClusterCommandInput,
|
|
126
111
|
options: __HttpHandlerOptions,
|
|
127
|
-
cb: (err: any, data?: CancelClusterCommandOutput) => void
|
|
112
|
+
cb: (err: any, data?: CancelClusterCommandOutput) => void,
|
|
128
113
|
): void;
|
|
129
114
|
cancelJob(
|
|
130
115
|
args: CancelJobCommandInput,
|
|
131
|
-
options?: __HttpHandlerOptions
|
|
116
|
+
options?: __HttpHandlerOptions,
|
|
132
117
|
): Promise<CancelJobCommandOutput>;
|
|
133
118
|
cancelJob(
|
|
134
119
|
args: CancelJobCommandInput,
|
|
135
|
-
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
120
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void,
|
|
136
121
|
): void;
|
|
137
122
|
cancelJob(
|
|
138
123
|
args: CancelJobCommandInput,
|
|
139
124
|
options: __HttpHandlerOptions,
|
|
140
|
-
cb: (err: any, data?: CancelJobCommandOutput) => void
|
|
125
|
+
cb: (err: any, data?: CancelJobCommandOutput) => void,
|
|
141
126
|
): void;
|
|
142
127
|
createAddress(
|
|
143
128
|
args: CreateAddressCommandInput,
|
|
144
|
-
options?: __HttpHandlerOptions
|
|
129
|
+
options?: __HttpHandlerOptions,
|
|
145
130
|
): Promise<CreateAddressCommandOutput>;
|
|
146
131
|
createAddress(
|
|
147
132
|
args: CreateAddressCommandInput,
|
|
148
|
-
cb: (err: any, data?: CreateAddressCommandOutput) => void
|
|
133
|
+
cb: (err: any, data?: CreateAddressCommandOutput) => void,
|
|
149
134
|
): void;
|
|
150
135
|
createAddress(
|
|
151
136
|
args: CreateAddressCommandInput,
|
|
152
137
|
options: __HttpHandlerOptions,
|
|
153
|
-
cb: (err: any, data?: CreateAddressCommandOutput) => void
|
|
138
|
+
cb: (err: any, data?: CreateAddressCommandOutput) => void,
|
|
154
139
|
): void;
|
|
155
140
|
createCluster(
|
|
156
141
|
args: CreateClusterCommandInput,
|
|
157
|
-
options?: __HttpHandlerOptions
|
|
142
|
+
options?: __HttpHandlerOptions,
|
|
158
143
|
): Promise<CreateClusterCommandOutput>;
|
|
159
144
|
createCluster(
|
|
160
145
|
args: CreateClusterCommandInput,
|
|
161
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
146
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
162
147
|
): void;
|
|
163
148
|
createCluster(
|
|
164
149
|
args: CreateClusterCommandInput,
|
|
165
150
|
options: __HttpHandlerOptions,
|
|
166
|
-
cb: (err: any, data?: CreateClusterCommandOutput) => void
|
|
151
|
+
cb: (err: any, data?: CreateClusterCommandOutput) => void,
|
|
167
152
|
): void;
|
|
168
153
|
createJob(): Promise<CreateJobCommandOutput>;
|
|
169
154
|
createJob(
|
|
170
155
|
args: CreateJobCommandInput,
|
|
171
|
-
options?: __HttpHandlerOptions
|
|
156
|
+
options?: __HttpHandlerOptions,
|
|
172
157
|
): Promise<CreateJobCommandOutput>;
|
|
173
158
|
createJob(
|
|
174
159
|
args: CreateJobCommandInput,
|
|
175
|
-
cb: (err: any, data?: CreateJobCommandOutput) => void
|
|
160
|
+
cb: (err: any, data?: CreateJobCommandOutput) => void,
|
|
176
161
|
): void;
|
|
177
162
|
createJob(
|
|
178
163
|
args: CreateJobCommandInput,
|
|
179
164
|
options: __HttpHandlerOptions,
|
|
180
|
-
cb: (err: any, data?: CreateJobCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: CreateJobCommandOutput) => void,
|
|
181
166
|
): void;
|
|
182
167
|
createLongTermPricing(
|
|
183
168
|
args: CreateLongTermPricingCommandInput,
|
|
184
|
-
options?: __HttpHandlerOptions
|
|
169
|
+
options?: __HttpHandlerOptions,
|
|
185
170
|
): Promise<CreateLongTermPricingCommandOutput>;
|
|
186
171
|
createLongTermPricing(
|
|
187
172
|
args: CreateLongTermPricingCommandInput,
|
|
188
|
-
cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void
|
|
173
|
+
cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void,
|
|
189
174
|
): void;
|
|
190
175
|
createLongTermPricing(
|
|
191
176
|
args: CreateLongTermPricingCommandInput,
|
|
192
177
|
options: __HttpHandlerOptions,
|
|
193
|
-
cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: CreateLongTermPricingCommandOutput) => void,
|
|
194
179
|
): void;
|
|
195
180
|
createReturnShippingLabel(
|
|
196
181
|
args: CreateReturnShippingLabelCommandInput,
|
|
197
|
-
options?: __HttpHandlerOptions
|
|
182
|
+
options?: __HttpHandlerOptions,
|
|
198
183
|
): Promise<CreateReturnShippingLabelCommandOutput>;
|
|
199
184
|
createReturnShippingLabel(
|
|
200
185
|
args: CreateReturnShippingLabelCommandInput,
|
|
201
|
-
cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void
|
|
186
|
+
cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void,
|
|
202
187
|
): void;
|
|
203
188
|
createReturnShippingLabel(
|
|
204
189
|
args: CreateReturnShippingLabelCommandInput,
|
|
205
190
|
options: __HttpHandlerOptions,
|
|
206
|
-
cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: CreateReturnShippingLabelCommandOutput) => void,
|
|
207
192
|
): void;
|
|
208
193
|
describeAddress(
|
|
209
194
|
args: DescribeAddressCommandInput,
|
|
210
|
-
options?: __HttpHandlerOptions
|
|
195
|
+
options?: __HttpHandlerOptions,
|
|
211
196
|
): Promise<DescribeAddressCommandOutput>;
|
|
212
197
|
describeAddress(
|
|
213
198
|
args: DescribeAddressCommandInput,
|
|
214
|
-
cb: (err: any, data?: DescribeAddressCommandOutput) => void
|
|
199
|
+
cb: (err: any, data?: DescribeAddressCommandOutput) => void,
|
|
215
200
|
): void;
|
|
216
201
|
describeAddress(
|
|
217
202
|
args: DescribeAddressCommandInput,
|
|
218
203
|
options: __HttpHandlerOptions,
|
|
219
|
-
cb: (err: any, data?: DescribeAddressCommandOutput) => void
|
|
204
|
+
cb: (err: any, data?: DescribeAddressCommandOutput) => void,
|
|
220
205
|
): void;
|
|
221
206
|
describeAddresses(): Promise<DescribeAddressesCommandOutput>;
|
|
222
207
|
describeAddresses(
|
|
223
208
|
args: DescribeAddressesCommandInput,
|
|
224
|
-
options?: __HttpHandlerOptions
|
|
209
|
+
options?: __HttpHandlerOptions,
|
|
225
210
|
): Promise<DescribeAddressesCommandOutput>;
|
|
226
211
|
describeAddresses(
|
|
227
212
|
args: DescribeAddressesCommandInput,
|
|
228
|
-
cb: (err: any, data?: DescribeAddressesCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: DescribeAddressesCommandOutput) => void,
|
|
229
214
|
): void;
|
|
230
215
|
describeAddresses(
|
|
231
216
|
args: DescribeAddressesCommandInput,
|
|
232
217
|
options: __HttpHandlerOptions,
|
|
233
|
-
cb: (err: any, data?: DescribeAddressesCommandOutput) => void
|
|
218
|
+
cb: (err: any, data?: DescribeAddressesCommandOutput) => void,
|
|
234
219
|
): void;
|
|
235
220
|
describeCluster(
|
|
236
221
|
args: DescribeClusterCommandInput,
|
|
237
|
-
options?: __HttpHandlerOptions
|
|
222
|
+
options?: __HttpHandlerOptions,
|
|
238
223
|
): Promise<DescribeClusterCommandOutput>;
|
|
239
224
|
describeCluster(
|
|
240
225
|
args: DescribeClusterCommandInput,
|
|
241
|
-
cb: (err: any, data?: DescribeClusterCommandOutput) => void
|
|
226
|
+
cb: (err: any, data?: DescribeClusterCommandOutput) => void,
|
|
242
227
|
): void;
|
|
243
228
|
describeCluster(
|
|
244
229
|
args: DescribeClusterCommandInput,
|
|
245
230
|
options: __HttpHandlerOptions,
|
|
246
|
-
cb: (err: any, data?: DescribeClusterCommandOutput) => void
|
|
231
|
+
cb: (err: any, data?: DescribeClusterCommandOutput) => void,
|
|
247
232
|
): void;
|
|
248
233
|
describeJob(
|
|
249
234
|
args: DescribeJobCommandInput,
|
|
250
|
-
options?: __HttpHandlerOptions
|
|
235
|
+
options?: __HttpHandlerOptions,
|
|
251
236
|
): Promise<DescribeJobCommandOutput>;
|
|
252
237
|
describeJob(
|
|
253
238
|
args: DescribeJobCommandInput,
|
|
254
|
-
cb: (err: any, data?: DescribeJobCommandOutput) => void
|
|
239
|
+
cb: (err: any, data?: DescribeJobCommandOutput) => void,
|
|
255
240
|
): void;
|
|
256
241
|
describeJob(
|
|
257
242
|
args: DescribeJobCommandInput,
|
|
258
243
|
options: __HttpHandlerOptions,
|
|
259
|
-
cb: (err: any, data?: DescribeJobCommandOutput) => void
|
|
244
|
+
cb: (err: any, data?: DescribeJobCommandOutput) => void,
|
|
260
245
|
): void;
|
|
261
246
|
describeReturnShippingLabel(
|
|
262
247
|
args: DescribeReturnShippingLabelCommandInput,
|
|
263
|
-
options?: __HttpHandlerOptions
|
|
248
|
+
options?: __HttpHandlerOptions,
|
|
264
249
|
): Promise<DescribeReturnShippingLabelCommandOutput>;
|
|
265
250
|
describeReturnShippingLabel(
|
|
266
251
|
args: DescribeReturnShippingLabelCommandInput,
|
|
267
|
-
cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void
|
|
252
|
+
cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void,
|
|
268
253
|
): void;
|
|
269
254
|
describeReturnShippingLabel(
|
|
270
255
|
args: DescribeReturnShippingLabelCommandInput,
|
|
271
256
|
options: __HttpHandlerOptions,
|
|
272
|
-
cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void
|
|
257
|
+
cb: (err: any, data?: DescribeReturnShippingLabelCommandOutput) => void,
|
|
273
258
|
): void;
|
|
274
259
|
getJobManifest(
|
|
275
260
|
args: GetJobManifestCommandInput,
|
|
276
|
-
options?: __HttpHandlerOptions
|
|
261
|
+
options?: __HttpHandlerOptions,
|
|
277
262
|
): Promise<GetJobManifestCommandOutput>;
|
|
278
263
|
getJobManifest(
|
|
279
264
|
args: GetJobManifestCommandInput,
|
|
280
|
-
cb: (err: any, data?: GetJobManifestCommandOutput) => void
|
|
265
|
+
cb: (err: any, data?: GetJobManifestCommandOutput) => void,
|
|
281
266
|
): void;
|
|
282
267
|
getJobManifest(
|
|
283
268
|
args: GetJobManifestCommandInput,
|
|
284
269
|
options: __HttpHandlerOptions,
|
|
285
|
-
cb: (err: any, data?: GetJobManifestCommandOutput) => void
|
|
270
|
+
cb: (err: any, data?: GetJobManifestCommandOutput) => void,
|
|
286
271
|
): void;
|
|
287
272
|
getJobUnlockCode(
|
|
288
273
|
args: GetJobUnlockCodeCommandInput,
|
|
289
|
-
options?: __HttpHandlerOptions
|
|
274
|
+
options?: __HttpHandlerOptions,
|
|
290
275
|
): Promise<GetJobUnlockCodeCommandOutput>;
|
|
291
276
|
getJobUnlockCode(
|
|
292
277
|
args: GetJobUnlockCodeCommandInput,
|
|
293
|
-
cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void
|
|
278
|
+
cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void,
|
|
294
279
|
): void;
|
|
295
280
|
getJobUnlockCode(
|
|
296
281
|
args: GetJobUnlockCodeCommandInput,
|
|
297
282
|
options: __HttpHandlerOptions,
|
|
298
|
-
cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void
|
|
283
|
+
cb: (err: any, data?: GetJobUnlockCodeCommandOutput) => void,
|
|
299
284
|
): void;
|
|
300
285
|
getSnowballUsage(): Promise<GetSnowballUsageCommandOutput>;
|
|
301
286
|
getSnowballUsage(
|
|
302
287
|
args: GetSnowballUsageCommandInput,
|
|
303
|
-
options?: __HttpHandlerOptions
|
|
288
|
+
options?: __HttpHandlerOptions,
|
|
304
289
|
): Promise<GetSnowballUsageCommandOutput>;
|
|
305
290
|
getSnowballUsage(
|
|
306
291
|
args: GetSnowballUsageCommandInput,
|
|
307
|
-
cb: (err: any, data?: GetSnowballUsageCommandOutput) => void
|
|
292
|
+
cb: (err: any, data?: GetSnowballUsageCommandOutput) => void,
|
|
308
293
|
): void;
|
|
309
294
|
getSnowballUsage(
|
|
310
295
|
args: GetSnowballUsageCommandInput,
|
|
311
296
|
options: __HttpHandlerOptions,
|
|
312
|
-
cb: (err: any, data?: GetSnowballUsageCommandOutput) => void
|
|
297
|
+
cb: (err: any, data?: GetSnowballUsageCommandOutput) => void,
|
|
313
298
|
): void;
|
|
314
299
|
getSoftwareUpdates(
|
|
315
300
|
args: GetSoftwareUpdatesCommandInput,
|
|
316
|
-
options?: __HttpHandlerOptions
|
|
301
|
+
options?: __HttpHandlerOptions,
|
|
317
302
|
): Promise<GetSoftwareUpdatesCommandOutput>;
|
|
318
303
|
getSoftwareUpdates(
|
|
319
304
|
args: GetSoftwareUpdatesCommandInput,
|
|
320
|
-
cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void
|
|
305
|
+
cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void,
|
|
321
306
|
): void;
|
|
322
307
|
getSoftwareUpdates(
|
|
323
308
|
args: GetSoftwareUpdatesCommandInput,
|
|
324
309
|
options: __HttpHandlerOptions,
|
|
325
|
-
cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void
|
|
310
|
+
cb: (err: any, data?: GetSoftwareUpdatesCommandOutput) => void,
|
|
326
311
|
): void;
|
|
327
312
|
listClusterJobs(
|
|
328
313
|
args: ListClusterJobsCommandInput,
|
|
329
|
-
options?: __HttpHandlerOptions
|
|
314
|
+
options?: __HttpHandlerOptions,
|
|
330
315
|
): Promise<ListClusterJobsCommandOutput>;
|
|
331
316
|
listClusterJobs(
|
|
332
317
|
args: ListClusterJobsCommandInput,
|
|
333
|
-
cb: (err: any, data?: ListClusterJobsCommandOutput) => void
|
|
318
|
+
cb: (err: any, data?: ListClusterJobsCommandOutput) => void,
|
|
334
319
|
): void;
|
|
335
320
|
listClusterJobs(
|
|
336
321
|
args: ListClusterJobsCommandInput,
|
|
337
322
|
options: __HttpHandlerOptions,
|
|
338
|
-
cb: (err: any, data?: ListClusterJobsCommandOutput) => void
|
|
323
|
+
cb: (err: any, data?: ListClusterJobsCommandOutput) => void,
|
|
339
324
|
): void;
|
|
340
325
|
listClusters(): Promise<ListClustersCommandOutput>;
|
|
341
326
|
listClusters(
|
|
342
327
|
args: ListClustersCommandInput,
|
|
343
|
-
options?: __HttpHandlerOptions
|
|
328
|
+
options?: __HttpHandlerOptions,
|
|
344
329
|
): Promise<ListClustersCommandOutput>;
|
|
345
330
|
listClusters(
|
|
346
331
|
args: ListClustersCommandInput,
|
|
347
|
-
cb: (err: any, data?: ListClustersCommandOutput) => void
|
|
332
|
+
cb: (err: any, data?: ListClustersCommandOutput) => void,
|
|
348
333
|
): void;
|
|
349
334
|
listClusters(
|
|
350
335
|
args: ListClustersCommandInput,
|
|
351
336
|
options: __HttpHandlerOptions,
|
|
352
|
-
cb: (err: any, data?: ListClustersCommandOutput) => void
|
|
337
|
+
cb: (err: any, data?: ListClustersCommandOutput) => void,
|
|
353
338
|
): void;
|
|
354
339
|
listCompatibleImages(): Promise<ListCompatibleImagesCommandOutput>;
|
|
355
340
|
listCompatibleImages(
|
|
356
341
|
args: ListCompatibleImagesCommandInput,
|
|
357
|
-
options?: __HttpHandlerOptions
|
|
342
|
+
options?: __HttpHandlerOptions,
|
|
358
343
|
): Promise<ListCompatibleImagesCommandOutput>;
|
|
359
344
|
listCompatibleImages(
|
|
360
345
|
args: ListCompatibleImagesCommandInput,
|
|
361
|
-
cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void
|
|
346
|
+
cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void,
|
|
362
347
|
): void;
|
|
363
348
|
listCompatibleImages(
|
|
364
349
|
args: ListCompatibleImagesCommandInput,
|
|
365
350
|
options: __HttpHandlerOptions,
|
|
366
|
-
cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void
|
|
351
|
+
cb: (err: any, data?: ListCompatibleImagesCommandOutput) => void,
|
|
367
352
|
): void;
|
|
368
353
|
listJobs(): Promise<ListJobsCommandOutput>;
|
|
369
354
|
listJobs(
|
|
370
355
|
args: ListJobsCommandInput,
|
|
371
|
-
options?: __HttpHandlerOptions
|
|
356
|
+
options?: __HttpHandlerOptions,
|
|
372
357
|
): Promise<ListJobsCommandOutput>;
|
|
373
|
-
listJobs(
|
|
374
|
-
args: ListJobsCommandInput,
|
|
375
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
376
|
-
): void;
|
|
358
|
+
listJobs(args: ListJobsCommandInput, cb: (err: any, data?: ListJobsCommandOutput) => void): void;
|
|
377
359
|
listJobs(
|
|
378
360
|
args: ListJobsCommandInput,
|
|
379
361
|
options: __HttpHandlerOptions,
|
|
380
|
-
cb: (err: any, data?: ListJobsCommandOutput) => void
|
|
362
|
+
cb: (err: any, data?: ListJobsCommandOutput) => void,
|
|
381
363
|
): void;
|
|
382
364
|
listLongTermPricing(): Promise<ListLongTermPricingCommandOutput>;
|
|
383
365
|
listLongTermPricing(
|
|
384
366
|
args: ListLongTermPricingCommandInput,
|
|
385
|
-
options?: __HttpHandlerOptions
|
|
367
|
+
options?: __HttpHandlerOptions,
|
|
386
368
|
): Promise<ListLongTermPricingCommandOutput>;
|
|
387
369
|
listLongTermPricing(
|
|
388
370
|
args: ListLongTermPricingCommandInput,
|
|
389
|
-
cb: (err: any, data?: ListLongTermPricingCommandOutput) => void
|
|
371
|
+
cb: (err: any, data?: ListLongTermPricingCommandOutput) => void,
|
|
390
372
|
): void;
|
|
391
373
|
listLongTermPricing(
|
|
392
374
|
args: ListLongTermPricingCommandInput,
|
|
393
375
|
options: __HttpHandlerOptions,
|
|
394
|
-
cb: (err: any, data?: ListLongTermPricingCommandOutput) => void
|
|
376
|
+
cb: (err: any, data?: ListLongTermPricingCommandOutput) => void,
|
|
395
377
|
): void;
|
|
396
378
|
listPickupLocations(): Promise<ListPickupLocationsCommandOutput>;
|
|
397
379
|
listPickupLocations(
|
|
398
380
|
args: ListPickupLocationsCommandInput,
|
|
399
|
-
options?: __HttpHandlerOptions
|
|
381
|
+
options?: __HttpHandlerOptions,
|
|
400
382
|
): Promise<ListPickupLocationsCommandOutput>;
|
|
401
383
|
listPickupLocations(
|
|
402
384
|
args: ListPickupLocationsCommandInput,
|
|
403
|
-
cb: (err: any, data?: ListPickupLocationsCommandOutput) => void
|
|
385
|
+
cb: (err: any, data?: ListPickupLocationsCommandOutput) => void,
|
|
404
386
|
): void;
|
|
405
387
|
listPickupLocations(
|
|
406
388
|
args: ListPickupLocationsCommandInput,
|
|
407
389
|
options: __HttpHandlerOptions,
|
|
408
|
-
cb: (err: any, data?: ListPickupLocationsCommandOutput) => void
|
|
390
|
+
cb: (err: any, data?: ListPickupLocationsCommandOutput) => void,
|
|
409
391
|
): void;
|
|
410
392
|
listServiceVersions(
|
|
411
393
|
args: ListServiceVersionsCommandInput,
|
|
412
|
-
options?: __HttpHandlerOptions
|
|
394
|
+
options?: __HttpHandlerOptions,
|
|
413
395
|
): Promise<ListServiceVersionsCommandOutput>;
|
|
414
396
|
listServiceVersions(
|
|
415
397
|
args: ListServiceVersionsCommandInput,
|
|
416
|
-
cb: (err: any, data?: ListServiceVersionsCommandOutput) => void
|
|
398
|
+
cb: (err: any, data?: ListServiceVersionsCommandOutput) => void,
|
|
417
399
|
): void;
|
|
418
400
|
listServiceVersions(
|
|
419
401
|
args: ListServiceVersionsCommandInput,
|
|
420
402
|
options: __HttpHandlerOptions,
|
|
421
|
-
cb: (err: any, data?: ListServiceVersionsCommandOutput) => void
|
|
403
|
+
cb: (err: any, data?: ListServiceVersionsCommandOutput) => void,
|
|
422
404
|
): void;
|
|
423
405
|
updateCluster(
|
|
424
406
|
args: UpdateClusterCommandInput,
|
|
425
|
-
options?: __HttpHandlerOptions
|
|
407
|
+
options?: __HttpHandlerOptions,
|
|
426
408
|
): Promise<UpdateClusterCommandOutput>;
|
|
427
409
|
updateCluster(
|
|
428
410
|
args: UpdateClusterCommandInput,
|
|
429
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
411
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
430
412
|
): void;
|
|
431
413
|
updateCluster(
|
|
432
414
|
args: UpdateClusterCommandInput,
|
|
433
415
|
options: __HttpHandlerOptions,
|
|
434
|
-
cb: (err: any, data?: UpdateClusterCommandOutput) => void
|
|
416
|
+
cb: (err: any, data?: UpdateClusterCommandOutput) => void,
|
|
435
417
|
): void;
|
|
436
418
|
updateJob(
|
|
437
419
|
args: UpdateJobCommandInput,
|
|
438
|
-
options?: __HttpHandlerOptions
|
|
420
|
+
options?: __HttpHandlerOptions,
|
|
439
421
|
): Promise<UpdateJobCommandOutput>;
|
|
440
422
|
updateJob(
|
|
441
423
|
args: UpdateJobCommandInput,
|
|
442
|
-
cb: (err: any, data?: UpdateJobCommandOutput) => void
|
|
424
|
+
cb: (err: any, data?: UpdateJobCommandOutput) => void,
|
|
443
425
|
): void;
|
|
444
426
|
updateJob(
|
|
445
427
|
args: UpdateJobCommandInput,
|
|
446
428
|
options: __HttpHandlerOptions,
|
|
447
|
-
cb: (err: any, data?: UpdateJobCommandOutput) => void
|
|
429
|
+
cb: (err: any, data?: UpdateJobCommandOutput) => void,
|
|
448
430
|
): void;
|
|
449
431
|
updateJobShipmentState(
|
|
450
432
|
args: UpdateJobShipmentStateCommandInput,
|
|
451
|
-
options?: __HttpHandlerOptions
|
|
433
|
+
options?: __HttpHandlerOptions,
|
|
452
434
|
): Promise<UpdateJobShipmentStateCommandOutput>;
|
|
453
435
|
updateJobShipmentState(
|
|
454
436
|
args: UpdateJobShipmentStateCommandInput,
|
|
455
|
-
cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void
|
|
437
|
+
cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void,
|
|
456
438
|
): void;
|
|
457
439
|
updateJobShipmentState(
|
|
458
440
|
args: UpdateJobShipmentStateCommandInput,
|
|
459
441
|
options: __HttpHandlerOptions,
|
|
460
|
-
cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void
|
|
442
|
+
cb: (err: any, data?: UpdateJobShipmentStateCommandOutput) => void,
|
|
461
443
|
): void;
|
|
462
444
|
updateLongTermPricing(
|
|
463
445
|
args: UpdateLongTermPricingCommandInput,
|
|
464
|
-
options?: __HttpHandlerOptions
|
|
446
|
+
options?: __HttpHandlerOptions,
|
|
465
447
|
): Promise<UpdateLongTermPricingCommandOutput>;
|
|
466
448
|
updateLongTermPricing(
|
|
467
449
|
args: UpdateLongTermPricingCommandInput,
|
|
468
|
-
cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void
|
|
450
|
+
cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void,
|
|
469
451
|
): void;
|
|
470
452
|
updateLongTermPricing(
|
|
471
453
|
args: UpdateLongTermPricingCommandInput,
|
|
472
454
|
options: __HttpHandlerOptions,
|
|
473
|
-
cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void
|
|
455
|
+
cb: (err: any, data?: UpdateLongTermPricingCommandOutput) => void,
|
|
474
456
|
): void;
|
|
475
457
|
paginateDescribeAddresses(
|
|
476
458
|
args?: DescribeAddressesCommandInput,
|
|
477
459
|
paginationConfig?: Pick<
|
|
478
460
|
PaginationConfiguration,
|
|
479
461
|
Exclude<keyof PaginationConfiguration, "client">
|
|
480
|
-
|
|
462
|
+
>,
|
|
481
463
|
): Paginator<DescribeAddressesCommandOutput>;
|
|
482
464
|
paginateListClusterJobs(
|
|
483
465
|
args: ListClusterJobsCommandInput,
|
|
484
466
|
paginationConfig?: Pick<
|
|
485
467
|
PaginationConfiguration,
|
|
486
468
|
Exclude<keyof PaginationConfiguration, "client">
|
|
487
|
-
|
|
469
|
+
>,
|
|
488
470
|
): Paginator<ListClusterJobsCommandOutput>;
|
|
489
471
|
paginateListClusters(
|
|
490
472
|
args?: ListClustersCommandInput,
|
|
491
473
|
paginationConfig?: Pick<
|
|
492
474
|
PaginationConfiguration,
|
|
493
475
|
Exclude<keyof PaginationConfiguration, "client">
|
|
494
|
-
|
|
476
|
+
>,
|
|
495
477
|
): Paginator<ListClustersCommandOutput>;
|
|
496
478
|
paginateListCompatibleImages(
|
|
497
479
|
args?: ListCompatibleImagesCommandInput,
|
|
498
480
|
paginationConfig?: Pick<
|
|
499
481
|
PaginationConfiguration,
|
|
500
482
|
Exclude<keyof PaginationConfiguration, "client">
|
|
501
|
-
|
|
483
|
+
>,
|
|
502
484
|
): Paginator<ListCompatibleImagesCommandOutput>;
|
|
503
485
|
paginateListJobs(
|
|
504
486
|
args?: ListJobsCommandInput,
|
|
505
487
|
paginationConfig?: Pick<
|
|
506
488
|
PaginationConfiguration,
|
|
507
489
|
Exclude<keyof PaginationConfiguration, "client">
|
|
508
|
-
|
|
490
|
+
>,
|
|
509
491
|
): Paginator<ListJobsCommandOutput>;
|
|
510
492
|
paginateListLongTermPricing(
|
|
511
493
|
args?: ListLongTermPricingCommandInput,
|
|
512
494
|
paginationConfig?: Pick<
|
|
513
495
|
PaginationConfiguration,
|
|
514
496
|
Exclude<keyof PaginationConfiguration, "client">
|
|
515
|
-
|
|
497
|
+
>,
|
|
516
498
|
): Paginator<ListLongTermPricingCommandOutput>;
|
|
517
499
|
paginateListPickupLocations(
|
|
518
500
|
args?: ListPickupLocationsCommandInput,
|
|
519
501
|
paginationConfig?: Pick<
|
|
520
502
|
PaginationConfiguration,
|
|
521
503
|
Exclude<keyof PaginationConfiguration, "client">
|
|
522
|
-
|
|
504
|
+
>,
|
|
523
505
|
): Paginator<ListPickupLocationsCommandOutput>;
|
|
524
506
|
}
|
|
525
507
|
export declare class Snowball extends SnowballClient implements Snowball {}
|