@aws-sdk/client-greengrassv2 3.1087.0 → 3.1088.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/GreengrassV2.d.ts +96 -125
- package/dist-types/ts3.4/GreengrassV2Client.d.ts +7 -20
- 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/AssociateServiceRoleToAccountCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CancelDeploymentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateComponentVersionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateDeploymentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteComponentCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteCoreDeviceCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteDeploymentCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DescribeComponentCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DisassociateServiceRoleFromAccountCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetComponentCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetComponentVersionArtifactCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetConnectivityInfoCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetCoreDeviceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetDeploymentCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetServiceRoleForAccountCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListComponentVersionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListComponentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListCoreDevicesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDeploymentsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListEffectiveDeploymentsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListInstalledComponentsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ResolveComponentCandidatesCommand.d.ts +3 -5
- 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/UpdateConnectivityInfoCommand.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 +9 -18
- package/dist-types/ts3.4/models/errors.d.ts +7 -24
- package/dist-types/ts3.4/models/models_0.d.ts +2 -6
- 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
|
@@ -107,10 +107,7 @@ import {
|
|
|
107
107
|
ResolveComponentCandidatesCommandInput,
|
|
108
108
|
ResolveComponentCandidatesCommandOutput,
|
|
109
109
|
} from "./commands/ResolveComponentCandidatesCommand";
|
|
110
|
-
import {
|
|
111
|
-
TagResourceCommandInput,
|
|
112
|
-
TagResourceCommandOutput,
|
|
113
|
-
} from "./commands/TagResourceCommand";
|
|
110
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
114
111
|
import {
|
|
115
112
|
UntagResourceCommandInput,
|
|
116
113
|
UntagResourceCommandOutput,
|
|
@@ -123,462 +120,436 @@ import { GreengrassV2Client } from "./GreengrassV2Client";
|
|
|
123
120
|
export interface GreengrassV2 {
|
|
124
121
|
associateServiceRoleToAccount(
|
|
125
122
|
args: AssociateServiceRoleToAccountCommandInput,
|
|
126
|
-
options?: __HttpHandlerOptions
|
|
123
|
+
options?: __HttpHandlerOptions,
|
|
127
124
|
): Promise<AssociateServiceRoleToAccountCommandOutput>;
|
|
128
125
|
associateServiceRoleToAccount(
|
|
129
126
|
args: AssociateServiceRoleToAccountCommandInput,
|
|
130
|
-
cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void
|
|
127
|
+
cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void,
|
|
131
128
|
): void;
|
|
132
129
|
associateServiceRoleToAccount(
|
|
133
130
|
args: AssociateServiceRoleToAccountCommandInput,
|
|
134
131
|
options: __HttpHandlerOptions,
|
|
135
|
-
cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void
|
|
132
|
+
cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void,
|
|
136
133
|
): void;
|
|
137
134
|
batchAssociateClientDeviceWithCoreDevice(
|
|
138
135
|
args: BatchAssociateClientDeviceWithCoreDeviceCommandInput,
|
|
139
|
-
options?: __HttpHandlerOptions
|
|
136
|
+
options?: __HttpHandlerOptions,
|
|
140
137
|
): Promise<BatchAssociateClientDeviceWithCoreDeviceCommandOutput>;
|
|
141
138
|
batchAssociateClientDeviceWithCoreDevice(
|
|
142
139
|
args: BatchAssociateClientDeviceWithCoreDeviceCommandInput,
|
|
143
|
-
cb: (
|
|
144
|
-
err: any,
|
|
145
|
-
data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput
|
|
146
|
-
) => void
|
|
140
|
+
cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void,
|
|
147
141
|
): void;
|
|
148
142
|
batchAssociateClientDeviceWithCoreDevice(
|
|
149
143
|
args: BatchAssociateClientDeviceWithCoreDeviceCommandInput,
|
|
150
144
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (
|
|
152
|
-
err: any,
|
|
153
|
-
data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput
|
|
154
|
-
) => void
|
|
145
|
+
cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void,
|
|
155
146
|
): void;
|
|
156
147
|
batchDisassociateClientDeviceFromCoreDevice(
|
|
157
148
|
args: BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
|
|
158
|
-
options?: __HttpHandlerOptions
|
|
149
|
+
options?: __HttpHandlerOptions,
|
|
159
150
|
): Promise<BatchDisassociateClientDeviceFromCoreDeviceCommandOutput>;
|
|
160
151
|
batchDisassociateClientDeviceFromCoreDevice(
|
|
161
152
|
args: BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
|
|
162
|
-
cb: (
|
|
163
|
-
err: any,
|
|
164
|
-
data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput
|
|
165
|
-
) => void
|
|
153
|
+
cb: (err: any, data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput) => void,
|
|
166
154
|
): void;
|
|
167
155
|
batchDisassociateClientDeviceFromCoreDevice(
|
|
168
156
|
args: BatchDisassociateClientDeviceFromCoreDeviceCommandInput,
|
|
169
157
|
options: __HttpHandlerOptions,
|
|
170
|
-
cb: (
|
|
171
|
-
err: any,
|
|
172
|
-
data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput
|
|
173
|
-
) => void
|
|
158
|
+
cb: (err: any, data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput) => void,
|
|
174
159
|
): void;
|
|
175
160
|
cancelDeployment(
|
|
176
161
|
args: CancelDeploymentCommandInput,
|
|
177
|
-
options?: __HttpHandlerOptions
|
|
162
|
+
options?: __HttpHandlerOptions,
|
|
178
163
|
): Promise<CancelDeploymentCommandOutput>;
|
|
179
164
|
cancelDeployment(
|
|
180
165
|
args: CancelDeploymentCommandInput,
|
|
181
|
-
cb: (err: any, data?: CancelDeploymentCommandOutput) => void
|
|
166
|
+
cb: (err: any, data?: CancelDeploymentCommandOutput) => void,
|
|
182
167
|
): void;
|
|
183
168
|
cancelDeployment(
|
|
184
169
|
args: CancelDeploymentCommandInput,
|
|
185
170
|
options: __HttpHandlerOptions,
|
|
186
|
-
cb: (err: any, data?: CancelDeploymentCommandOutput) => void
|
|
171
|
+
cb: (err: any, data?: CancelDeploymentCommandOutput) => void,
|
|
187
172
|
): void;
|
|
188
173
|
createComponentVersion(): Promise<CreateComponentVersionCommandOutput>;
|
|
189
174
|
createComponentVersion(
|
|
190
175
|
args: CreateComponentVersionCommandInput,
|
|
191
|
-
options?: __HttpHandlerOptions
|
|
176
|
+
options?: __HttpHandlerOptions,
|
|
192
177
|
): Promise<CreateComponentVersionCommandOutput>;
|
|
193
178
|
createComponentVersion(
|
|
194
179
|
args: CreateComponentVersionCommandInput,
|
|
195
|
-
cb: (err: any, data?: CreateComponentVersionCommandOutput) => void
|
|
180
|
+
cb: (err: any, data?: CreateComponentVersionCommandOutput) => void,
|
|
196
181
|
): void;
|
|
197
182
|
createComponentVersion(
|
|
198
183
|
args: CreateComponentVersionCommandInput,
|
|
199
184
|
options: __HttpHandlerOptions,
|
|
200
|
-
cb: (err: any, data?: CreateComponentVersionCommandOutput) => void
|
|
185
|
+
cb: (err: any, data?: CreateComponentVersionCommandOutput) => void,
|
|
201
186
|
): void;
|
|
202
187
|
createDeployment(
|
|
203
188
|
args: CreateDeploymentCommandInput,
|
|
204
|
-
options?: __HttpHandlerOptions
|
|
189
|
+
options?: __HttpHandlerOptions,
|
|
205
190
|
): Promise<CreateDeploymentCommandOutput>;
|
|
206
191
|
createDeployment(
|
|
207
192
|
args: CreateDeploymentCommandInput,
|
|
208
|
-
cb: (err: any, data?: CreateDeploymentCommandOutput) => void
|
|
193
|
+
cb: (err: any, data?: CreateDeploymentCommandOutput) => void,
|
|
209
194
|
): void;
|
|
210
195
|
createDeployment(
|
|
211
196
|
args: CreateDeploymentCommandInput,
|
|
212
197
|
options: __HttpHandlerOptions,
|
|
213
|
-
cb: (err: any, data?: CreateDeploymentCommandOutput) => void
|
|
198
|
+
cb: (err: any, data?: CreateDeploymentCommandOutput) => void,
|
|
214
199
|
): void;
|
|
215
200
|
deleteComponent(
|
|
216
201
|
args: DeleteComponentCommandInput,
|
|
217
|
-
options?: __HttpHandlerOptions
|
|
202
|
+
options?: __HttpHandlerOptions,
|
|
218
203
|
): Promise<DeleteComponentCommandOutput>;
|
|
219
204
|
deleteComponent(
|
|
220
205
|
args: DeleteComponentCommandInput,
|
|
221
|
-
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
206
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void,
|
|
222
207
|
): void;
|
|
223
208
|
deleteComponent(
|
|
224
209
|
args: DeleteComponentCommandInput,
|
|
225
210
|
options: __HttpHandlerOptions,
|
|
226
|
-
cb: (err: any, data?: DeleteComponentCommandOutput) => void
|
|
211
|
+
cb: (err: any, data?: DeleteComponentCommandOutput) => void,
|
|
227
212
|
): void;
|
|
228
213
|
deleteCoreDevice(
|
|
229
214
|
args: DeleteCoreDeviceCommandInput,
|
|
230
|
-
options?: __HttpHandlerOptions
|
|
215
|
+
options?: __HttpHandlerOptions,
|
|
231
216
|
): Promise<DeleteCoreDeviceCommandOutput>;
|
|
232
217
|
deleteCoreDevice(
|
|
233
218
|
args: DeleteCoreDeviceCommandInput,
|
|
234
|
-
cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void
|
|
219
|
+
cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void,
|
|
235
220
|
): void;
|
|
236
221
|
deleteCoreDevice(
|
|
237
222
|
args: DeleteCoreDeviceCommandInput,
|
|
238
223
|
options: __HttpHandlerOptions,
|
|
239
|
-
cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void
|
|
224
|
+
cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void,
|
|
240
225
|
): void;
|
|
241
226
|
deleteDeployment(
|
|
242
227
|
args: DeleteDeploymentCommandInput,
|
|
243
|
-
options?: __HttpHandlerOptions
|
|
228
|
+
options?: __HttpHandlerOptions,
|
|
244
229
|
): Promise<DeleteDeploymentCommandOutput>;
|
|
245
230
|
deleteDeployment(
|
|
246
231
|
args: DeleteDeploymentCommandInput,
|
|
247
|
-
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
|
|
232
|
+
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void,
|
|
248
233
|
): void;
|
|
249
234
|
deleteDeployment(
|
|
250
235
|
args: DeleteDeploymentCommandInput,
|
|
251
236
|
options: __HttpHandlerOptions,
|
|
252
|
-
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void
|
|
237
|
+
cb: (err: any, data?: DeleteDeploymentCommandOutput) => void,
|
|
253
238
|
): void;
|
|
254
239
|
describeComponent(
|
|
255
240
|
args: DescribeComponentCommandInput,
|
|
256
|
-
options?: __HttpHandlerOptions
|
|
241
|
+
options?: __HttpHandlerOptions,
|
|
257
242
|
): Promise<DescribeComponentCommandOutput>;
|
|
258
243
|
describeComponent(
|
|
259
244
|
args: DescribeComponentCommandInput,
|
|
260
|
-
cb: (err: any, data?: DescribeComponentCommandOutput) => void
|
|
245
|
+
cb: (err: any, data?: DescribeComponentCommandOutput) => void,
|
|
261
246
|
): void;
|
|
262
247
|
describeComponent(
|
|
263
248
|
args: DescribeComponentCommandInput,
|
|
264
249
|
options: __HttpHandlerOptions,
|
|
265
|
-
cb: (err: any, data?: DescribeComponentCommandOutput) => void
|
|
250
|
+
cb: (err: any, data?: DescribeComponentCommandOutput) => void,
|
|
266
251
|
): void;
|
|
267
252
|
disassociateServiceRoleFromAccount(): Promise<DisassociateServiceRoleFromAccountCommandOutput>;
|
|
268
253
|
disassociateServiceRoleFromAccount(
|
|
269
254
|
args: DisassociateServiceRoleFromAccountCommandInput,
|
|
270
|
-
options?: __HttpHandlerOptions
|
|
255
|
+
options?: __HttpHandlerOptions,
|
|
271
256
|
): Promise<DisassociateServiceRoleFromAccountCommandOutput>;
|
|
272
257
|
disassociateServiceRoleFromAccount(
|
|
273
258
|
args: DisassociateServiceRoleFromAccountCommandInput,
|
|
274
|
-
cb: (
|
|
275
|
-
err: any,
|
|
276
|
-
data?: DisassociateServiceRoleFromAccountCommandOutput
|
|
277
|
-
) => void
|
|
259
|
+
cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void,
|
|
278
260
|
): void;
|
|
279
261
|
disassociateServiceRoleFromAccount(
|
|
280
262
|
args: DisassociateServiceRoleFromAccountCommandInput,
|
|
281
263
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (
|
|
283
|
-
err: any,
|
|
284
|
-
data?: DisassociateServiceRoleFromAccountCommandOutput
|
|
285
|
-
) => void
|
|
264
|
+
cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void,
|
|
286
265
|
): void;
|
|
287
266
|
getComponent(
|
|
288
267
|
args: GetComponentCommandInput,
|
|
289
|
-
options?: __HttpHandlerOptions
|
|
268
|
+
options?: __HttpHandlerOptions,
|
|
290
269
|
): Promise<GetComponentCommandOutput>;
|
|
291
270
|
getComponent(
|
|
292
271
|
args: GetComponentCommandInput,
|
|
293
|
-
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
272
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void,
|
|
294
273
|
): void;
|
|
295
274
|
getComponent(
|
|
296
275
|
args: GetComponentCommandInput,
|
|
297
276
|
options: __HttpHandlerOptions,
|
|
298
|
-
cb: (err: any, data?: GetComponentCommandOutput) => void
|
|
277
|
+
cb: (err: any, data?: GetComponentCommandOutput) => void,
|
|
299
278
|
): void;
|
|
300
279
|
getComponentVersionArtifact(
|
|
301
280
|
args: GetComponentVersionArtifactCommandInput,
|
|
302
|
-
options?: __HttpHandlerOptions
|
|
281
|
+
options?: __HttpHandlerOptions,
|
|
303
282
|
): Promise<GetComponentVersionArtifactCommandOutput>;
|
|
304
283
|
getComponentVersionArtifact(
|
|
305
284
|
args: GetComponentVersionArtifactCommandInput,
|
|
306
|
-
cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void
|
|
285
|
+
cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void,
|
|
307
286
|
): void;
|
|
308
287
|
getComponentVersionArtifact(
|
|
309
288
|
args: GetComponentVersionArtifactCommandInput,
|
|
310
289
|
options: __HttpHandlerOptions,
|
|
311
|
-
cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void
|
|
290
|
+
cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void,
|
|
312
291
|
): void;
|
|
313
292
|
getConnectivityInfo(
|
|
314
293
|
args: GetConnectivityInfoCommandInput,
|
|
315
|
-
options?: __HttpHandlerOptions
|
|
294
|
+
options?: __HttpHandlerOptions,
|
|
316
295
|
): Promise<GetConnectivityInfoCommandOutput>;
|
|
317
296
|
getConnectivityInfo(
|
|
318
297
|
args: GetConnectivityInfoCommandInput,
|
|
319
|
-
cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void
|
|
298
|
+
cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void,
|
|
320
299
|
): void;
|
|
321
300
|
getConnectivityInfo(
|
|
322
301
|
args: GetConnectivityInfoCommandInput,
|
|
323
302
|
options: __HttpHandlerOptions,
|
|
324
|
-
cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void
|
|
303
|
+
cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void,
|
|
325
304
|
): void;
|
|
326
305
|
getCoreDevice(
|
|
327
306
|
args: GetCoreDeviceCommandInput,
|
|
328
|
-
options?: __HttpHandlerOptions
|
|
307
|
+
options?: __HttpHandlerOptions,
|
|
329
308
|
): Promise<GetCoreDeviceCommandOutput>;
|
|
330
309
|
getCoreDevice(
|
|
331
310
|
args: GetCoreDeviceCommandInput,
|
|
332
|
-
cb: (err: any, data?: GetCoreDeviceCommandOutput) => void
|
|
311
|
+
cb: (err: any, data?: GetCoreDeviceCommandOutput) => void,
|
|
333
312
|
): void;
|
|
334
313
|
getCoreDevice(
|
|
335
314
|
args: GetCoreDeviceCommandInput,
|
|
336
315
|
options: __HttpHandlerOptions,
|
|
337
|
-
cb: (err: any, data?: GetCoreDeviceCommandOutput) => void
|
|
316
|
+
cb: (err: any, data?: GetCoreDeviceCommandOutput) => void,
|
|
338
317
|
): void;
|
|
339
318
|
getDeployment(
|
|
340
319
|
args: GetDeploymentCommandInput,
|
|
341
|
-
options?: __HttpHandlerOptions
|
|
320
|
+
options?: __HttpHandlerOptions,
|
|
342
321
|
): Promise<GetDeploymentCommandOutput>;
|
|
343
322
|
getDeployment(
|
|
344
323
|
args: GetDeploymentCommandInput,
|
|
345
|
-
cb: (err: any, data?: GetDeploymentCommandOutput) => void
|
|
324
|
+
cb: (err: any, data?: GetDeploymentCommandOutput) => void,
|
|
346
325
|
): void;
|
|
347
326
|
getDeployment(
|
|
348
327
|
args: GetDeploymentCommandInput,
|
|
349
328
|
options: __HttpHandlerOptions,
|
|
350
|
-
cb: (err: any, data?: GetDeploymentCommandOutput) => void
|
|
329
|
+
cb: (err: any, data?: GetDeploymentCommandOutput) => void,
|
|
351
330
|
): void;
|
|
352
331
|
getServiceRoleForAccount(): Promise<GetServiceRoleForAccountCommandOutput>;
|
|
353
332
|
getServiceRoleForAccount(
|
|
354
333
|
args: GetServiceRoleForAccountCommandInput,
|
|
355
|
-
options?: __HttpHandlerOptions
|
|
334
|
+
options?: __HttpHandlerOptions,
|
|
356
335
|
): Promise<GetServiceRoleForAccountCommandOutput>;
|
|
357
336
|
getServiceRoleForAccount(
|
|
358
337
|
args: GetServiceRoleForAccountCommandInput,
|
|
359
|
-
cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void
|
|
338
|
+
cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void,
|
|
360
339
|
): void;
|
|
361
340
|
getServiceRoleForAccount(
|
|
362
341
|
args: GetServiceRoleForAccountCommandInput,
|
|
363
342
|
options: __HttpHandlerOptions,
|
|
364
|
-
cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void
|
|
343
|
+
cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void,
|
|
365
344
|
): void;
|
|
366
345
|
listClientDevicesAssociatedWithCoreDevice(
|
|
367
346
|
args: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
368
|
-
options?: __HttpHandlerOptions
|
|
347
|
+
options?: __HttpHandlerOptions,
|
|
369
348
|
): Promise<ListClientDevicesAssociatedWithCoreDeviceCommandOutput>;
|
|
370
349
|
listClientDevicesAssociatedWithCoreDevice(
|
|
371
350
|
args: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
372
|
-
cb: (
|
|
373
|
-
err: any,
|
|
374
|
-
data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput
|
|
375
|
-
) => void
|
|
351
|
+
cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void,
|
|
376
352
|
): void;
|
|
377
353
|
listClientDevicesAssociatedWithCoreDevice(
|
|
378
354
|
args: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
379
355
|
options: __HttpHandlerOptions,
|
|
380
|
-
cb: (
|
|
381
|
-
err: any,
|
|
382
|
-
data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput
|
|
383
|
-
) => void
|
|
356
|
+
cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void,
|
|
384
357
|
): void;
|
|
385
358
|
listComponents(): Promise<ListComponentsCommandOutput>;
|
|
386
359
|
listComponents(
|
|
387
360
|
args: ListComponentsCommandInput,
|
|
388
|
-
options?: __HttpHandlerOptions
|
|
361
|
+
options?: __HttpHandlerOptions,
|
|
389
362
|
): Promise<ListComponentsCommandOutput>;
|
|
390
363
|
listComponents(
|
|
391
364
|
args: ListComponentsCommandInput,
|
|
392
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
365
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
393
366
|
): void;
|
|
394
367
|
listComponents(
|
|
395
368
|
args: ListComponentsCommandInput,
|
|
396
369
|
options: __HttpHandlerOptions,
|
|
397
|
-
cb: (err: any, data?: ListComponentsCommandOutput) => void
|
|
370
|
+
cb: (err: any, data?: ListComponentsCommandOutput) => void,
|
|
398
371
|
): void;
|
|
399
372
|
listComponentVersions(
|
|
400
373
|
args: ListComponentVersionsCommandInput,
|
|
401
|
-
options?: __HttpHandlerOptions
|
|
374
|
+
options?: __HttpHandlerOptions,
|
|
402
375
|
): Promise<ListComponentVersionsCommandOutput>;
|
|
403
376
|
listComponentVersions(
|
|
404
377
|
args: ListComponentVersionsCommandInput,
|
|
405
|
-
cb: (err: any, data?: ListComponentVersionsCommandOutput) => void
|
|
378
|
+
cb: (err: any, data?: ListComponentVersionsCommandOutput) => void,
|
|
406
379
|
): void;
|
|
407
380
|
listComponentVersions(
|
|
408
381
|
args: ListComponentVersionsCommandInput,
|
|
409
382
|
options: __HttpHandlerOptions,
|
|
410
|
-
cb: (err: any, data?: ListComponentVersionsCommandOutput) => void
|
|
383
|
+
cb: (err: any, data?: ListComponentVersionsCommandOutput) => void,
|
|
411
384
|
): void;
|
|
412
385
|
listCoreDevices(): Promise<ListCoreDevicesCommandOutput>;
|
|
413
386
|
listCoreDevices(
|
|
414
387
|
args: ListCoreDevicesCommandInput,
|
|
415
|
-
options?: __HttpHandlerOptions
|
|
388
|
+
options?: __HttpHandlerOptions,
|
|
416
389
|
): Promise<ListCoreDevicesCommandOutput>;
|
|
417
390
|
listCoreDevices(
|
|
418
391
|
args: ListCoreDevicesCommandInput,
|
|
419
|
-
cb: (err: any, data?: ListCoreDevicesCommandOutput) => void
|
|
392
|
+
cb: (err: any, data?: ListCoreDevicesCommandOutput) => void,
|
|
420
393
|
): void;
|
|
421
394
|
listCoreDevices(
|
|
422
395
|
args: ListCoreDevicesCommandInput,
|
|
423
396
|
options: __HttpHandlerOptions,
|
|
424
|
-
cb: (err: any, data?: ListCoreDevicesCommandOutput) => void
|
|
397
|
+
cb: (err: any, data?: ListCoreDevicesCommandOutput) => void,
|
|
425
398
|
): void;
|
|
426
399
|
listDeployments(): Promise<ListDeploymentsCommandOutput>;
|
|
427
400
|
listDeployments(
|
|
428
401
|
args: ListDeploymentsCommandInput,
|
|
429
|
-
options?: __HttpHandlerOptions
|
|
402
|
+
options?: __HttpHandlerOptions,
|
|
430
403
|
): Promise<ListDeploymentsCommandOutput>;
|
|
431
404
|
listDeployments(
|
|
432
405
|
args: ListDeploymentsCommandInput,
|
|
433
|
-
cb: (err: any, data?: ListDeploymentsCommandOutput) => void
|
|
406
|
+
cb: (err: any, data?: ListDeploymentsCommandOutput) => void,
|
|
434
407
|
): void;
|
|
435
408
|
listDeployments(
|
|
436
409
|
args: ListDeploymentsCommandInput,
|
|
437
410
|
options: __HttpHandlerOptions,
|
|
438
|
-
cb: (err: any, data?: ListDeploymentsCommandOutput) => void
|
|
411
|
+
cb: (err: any, data?: ListDeploymentsCommandOutput) => void,
|
|
439
412
|
): void;
|
|
440
413
|
listEffectiveDeployments(
|
|
441
414
|
args: ListEffectiveDeploymentsCommandInput,
|
|
442
|
-
options?: __HttpHandlerOptions
|
|
415
|
+
options?: __HttpHandlerOptions,
|
|
443
416
|
): Promise<ListEffectiveDeploymentsCommandOutput>;
|
|
444
417
|
listEffectiveDeployments(
|
|
445
418
|
args: ListEffectiveDeploymentsCommandInput,
|
|
446
|
-
cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void
|
|
419
|
+
cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void,
|
|
447
420
|
): void;
|
|
448
421
|
listEffectiveDeployments(
|
|
449
422
|
args: ListEffectiveDeploymentsCommandInput,
|
|
450
423
|
options: __HttpHandlerOptions,
|
|
451
|
-
cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void
|
|
424
|
+
cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void,
|
|
452
425
|
): void;
|
|
453
426
|
listInstalledComponents(
|
|
454
427
|
args: ListInstalledComponentsCommandInput,
|
|
455
|
-
options?: __HttpHandlerOptions
|
|
428
|
+
options?: __HttpHandlerOptions,
|
|
456
429
|
): Promise<ListInstalledComponentsCommandOutput>;
|
|
457
430
|
listInstalledComponents(
|
|
458
431
|
args: ListInstalledComponentsCommandInput,
|
|
459
|
-
cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void
|
|
432
|
+
cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void,
|
|
460
433
|
): void;
|
|
461
434
|
listInstalledComponents(
|
|
462
435
|
args: ListInstalledComponentsCommandInput,
|
|
463
436
|
options: __HttpHandlerOptions,
|
|
464
|
-
cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void
|
|
437
|
+
cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void,
|
|
465
438
|
): void;
|
|
466
439
|
listTagsForResource(
|
|
467
440
|
args: ListTagsForResourceCommandInput,
|
|
468
|
-
options?: __HttpHandlerOptions
|
|
441
|
+
options?: __HttpHandlerOptions,
|
|
469
442
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
470
443
|
listTagsForResource(
|
|
471
444
|
args: ListTagsForResourceCommandInput,
|
|
472
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
445
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
473
446
|
): void;
|
|
474
447
|
listTagsForResource(
|
|
475
448
|
args: ListTagsForResourceCommandInput,
|
|
476
449
|
options: __HttpHandlerOptions,
|
|
477
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
450
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
478
451
|
): void;
|
|
479
452
|
resolveComponentCandidates(): Promise<ResolveComponentCandidatesCommandOutput>;
|
|
480
453
|
resolveComponentCandidates(
|
|
481
454
|
args: ResolveComponentCandidatesCommandInput,
|
|
482
|
-
options?: __HttpHandlerOptions
|
|
455
|
+
options?: __HttpHandlerOptions,
|
|
483
456
|
): Promise<ResolveComponentCandidatesCommandOutput>;
|
|
484
457
|
resolveComponentCandidates(
|
|
485
458
|
args: ResolveComponentCandidatesCommandInput,
|
|
486
|
-
cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void
|
|
459
|
+
cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void,
|
|
487
460
|
): void;
|
|
488
461
|
resolveComponentCandidates(
|
|
489
462
|
args: ResolveComponentCandidatesCommandInput,
|
|
490
463
|
options: __HttpHandlerOptions,
|
|
491
|
-
cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void
|
|
464
|
+
cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void,
|
|
492
465
|
): void;
|
|
493
466
|
tagResource(
|
|
494
467
|
args: TagResourceCommandInput,
|
|
495
|
-
options?: __HttpHandlerOptions
|
|
468
|
+
options?: __HttpHandlerOptions,
|
|
496
469
|
): Promise<TagResourceCommandOutput>;
|
|
497
470
|
tagResource(
|
|
498
471
|
args: TagResourceCommandInput,
|
|
499
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
472
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
500
473
|
): void;
|
|
501
474
|
tagResource(
|
|
502
475
|
args: TagResourceCommandInput,
|
|
503
476
|
options: __HttpHandlerOptions,
|
|
504
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
477
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
505
478
|
): void;
|
|
506
479
|
untagResource(
|
|
507
480
|
args: UntagResourceCommandInput,
|
|
508
|
-
options?: __HttpHandlerOptions
|
|
481
|
+
options?: __HttpHandlerOptions,
|
|
509
482
|
): Promise<UntagResourceCommandOutput>;
|
|
510
483
|
untagResource(
|
|
511
484
|
args: UntagResourceCommandInput,
|
|
512
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
485
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
513
486
|
): void;
|
|
514
487
|
untagResource(
|
|
515
488
|
args: UntagResourceCommandInput,
|
|
516
489
|
options: __HttpHandlerOptions,
|
|
517
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
490
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
518
491
|
): void;
|
|
519
492
|
updateConnectivityInfo(
|
|
520
493
|
args: UpdateConnectivityInfoCommandInput,
|
|
521
|
-
options?: __HttpHandlerOptions
|
|
494
|
+
options?: __HttpHandlerOptions,
|
|
522
495
|
): Promise<UpdateConnectivityInfoCommandOutput>;
|
|
523
496
|
updateConnectivityInfo(
|
|
524
497
|
args: UpdateConnectivityInfoCommandInput,
|
|
525
|
-
cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void
|
|
498
|
+
cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void,
|
|
526
499
|
): void;
|
|
527
500
|
updateConnectivityInfo(
|
|
528
501
|
args: UpdateConnectivityInfoCommandInput,
|
|
529
502
|
options: __HttpHandlerOptions,
|
|
530
|
-
cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void
|
|
503
|
+
cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void,
|
|
531
504
|
): void;
|
|
532
505
|
paginateListClientDevicesAssociatedWithCoreDevice(
|
|
533
506
|
args: ListClientDevicesAssociatedWithCoreDeviceCommandInput,
|
|
534
507
|
paginationConfig?: Pick<
|
|
535
508
|
PaginationConfiguration,
|
|
536
509
|
Exclude<keyof PaginationConfiguration, "client">
|
|
537
|
-
|
|
510
|
+
>,
|
|
538
511
|
): Paginator<ListClientDevicesAssociatedWithCoreDeviceCommandOutput>;
|
|
539
512
|
paginateListComponents(
|
|
540
513
|
args?: ListComponentsCommandInput,
|
|
541
514
|
paginationConfig?: Pick<
|
|
542
515
|
PaginationConfiguration,
|
|
543
516
|
Exclude<keyof PaginationConfiguration, "client">
|
|
544
|
-
|
|
517
|
+
>,
|
|
545
518
|
): Paginator<ListComponentsCommandOutput>;
|
|
546
519
|
paginateListComponentVersions(
|
|
547
520
|
args: ListComponentVersionsCommandInput,
|
|
548
521
|
paginationConfig?: Pick<
|
|
549
522
|
PaginationConfiguration,
|
|
550
523
|
Exclude<keyof PaginationConfiguration, "client">
|
|
551
|
-
|
|
524
|
+
>,
|
|
552
525
|
): Paginator<ListComponentVersionsCommandOutput>;
|
|
553
526
|
paginateListCoreDevices(
|
|
554
527
|
args?: ListCoreDevicesCommandInput,
|
|
555
528
|
paginationConfig?: Pick<
|
|
556
529
|
PaginationConfiguration,
|
|
557
530
|
Exclude<keyof PaginationConfiguration, "client">
|
|
558
|
-
|
|
531
|
+
>,
|
|
559
532
|
): Paginator<ListCoreDevicesCommandOutput>;
|
|
560
533
|
paginateListDeployments(
|
|
561
534
|
args?: ListDeploymentsCommandInput,
|
|
562
535
|
paginationConfig?: Pick<
|
|
563
536
|
PaginationConfiguration,
|
|
564
537
|
Exclude<keyof PaginationConfiguration, "client">
|
|
565
|
-
|
|
538
|
+
>,
|
|
566
539
|
): Paginator<ListDeploymentsCommandOutput>;
|
|
567
540
|
paginateListEffectiveDeployments(
|
|
568
541
|
args: ListEffectiveDeploymentsCommandInput,
|
|
569
542
|
paginationConfig?: Pick<
|
|
570
543
|
PaginationConfiguration,
|
|
571
544
|
Exclude<keyof PaginationConfiguration, "client">
|
|
572
|
-
|
|
545
|
+
>,
|
|
573
546
|
): Paginator<ListEffectiveDeploymentsCommandOutput>;
|
|
574
547
|
paginateListInstalledComponents(
|
|
575
548
|
args: ListInstalledComponentsCommandInput,
|
|
576
549
|
paginationConfig?: Pick<
|
|
577
550
|
PaginationConfiguration,
|
|
578
551
|
Exclude<keyof PaginationConfiguration, "client">
|
|
579
|
-
|
|
552
|
+
>,
|
|
580
553
|
): Paginator<ListInstalledComponentsCommandOutput>;
|
|
581
554
|
}
|
|
582
|
-
export declare class GreengrassV2
|
|
583
|
-
extends GreengrassV2Client
|
|
584
|
-
implements GreengrassV2 {}
|
|
555
|
+
export declare class GreengrassV2 extends GreengrassV2Client implements GreengrassV2 {}
|
|
@@ -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 {
|
|
@@ -140,10 +137,7 @@ import {
|
|
|
140
137
|
ResolveComponentCandidatesCommandInput,
|
|
141
138
|
ResolveComponentCandidatesCommandOutput,
|
|
142
139
|
} from "./commands/ResolveComponentCandidatesCommand";
|
|
143
|
-
import {
|
|
144
|
-
TagResourceCommandInput,
|
|
145
|
-
TagResourceCommandOutput,
|
|
146
|
-
} from "./commands/TagResourceCommand";
|
|
140
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
147
141
|
import {
|
|
148
142
|
UntagResourceCommandInput,
|
|
149
143
|
UntagResourceCommandOutput,
|
|
@@ -219,8 +213,7 @@ export type ServiceOutputTypes =
|
|
|
219
213
|
| TagResourceCommandOutput
|
|
220
214
|
| UntagResourceCommandOutput
|
|
221
215
|
| UpdateConnectivityInfoCommandOutput;
|
|
222
|
-
export interface ClientDefaults
|
|
223
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
216
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
224
217
|
requestHandler?: __HttpHandlerUserInput;
|
|
225
218
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
226
219
|
urlParser?: __UrlParser;
|
|
@@ -245,9 +238,7 @@ export interface ClientDefaults
|
|
|
245
238
|
extensions?: RuntimeExtension[];
|
|
246
239
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
247
240
|
}
|
|
248
|
-
export type GreengrassV2ClientConfigType = Partial<
|
|
249
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
250
|
-
> &
|
|
241
|
+
export type GreengrassV2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
251
242
|
ClientDefaults &
|
|
252
243
|
UserAgentInputConfig &
|
|
253
244
|
RetryInputConfig &
|
|
@@ -256,8 +247,7 @@ export type GreengrassV2ClientConfigType = Partial<
|
|
|
256
247
|
EndpointInputConfig<EndpointParameters> &
|
|
257
248
|
HttpAuthSchemeInputConfig &
|
|
258
249
|
ClientInputEndpointParameters;
|
|
259
|
-
export interface GreengrassV2ClientConfig
|
|
260
|
-
extends GreengrassV2ClientConfigType {}
|
|
250
|
+
export interface GreengrassV2ClientConfig extends GreengrassV2ClientConfigType {}
|
|
261
251
|
export type GreengrassV2ClientResolvedConfigType =
|
|
262
252
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
263
253
|
Required<ClientDefaults> &
|
|
@@ -269,8 +259,7 @@ export type GreengrassV2ClientResolvedConfigType =
|
|
|
269
259
|
EndpointResolvedConfig<EndpointParameters> &
|
|
270
260
|
HttpAuthSchemeResolvedConfig &
|
|
271
261
|
ClientResolvedEndpointParameters;
|
|
272
|
-
export interface GreengrassV2ClientResolvedConfig
|
|
273
|
-
extends GreengrassV2ClientResolvedConfigType {}
|
|
262
|
+
export interface GreengrassV2ClientResolvedConfig extends GreengrassV2ClientResolvedConfigType {}
|
|
274
263
|
export declare class GreengrassV2Client extends __Client<
|
|
275
264
|
__HttpHandlerOptions,
|
|
276
265
|
ServiceInputTypes,
|
|
@@ -278,8 +267,6 @@ export declare class GreengrassV2Client extends __Client<
|
|
|
278
267
|
GreengrassV2ClientResolvedConfig
|
|
279
268
|
> {
|
|
280
269
|
readonly config: GreengrassV2ClientResolvedConfig;
|
|
281
|
-
constructor(
|
|
282
|
-
...[configuration]: __CheckOptionalClientConfig<GreengrassV2ClientConfig>
|
|
283
|
-
);
|
|
270
|
+
constructor(...[configuration]: __CheckOptionalClientConfig<GreengrassV2ClientConfig>);
|
|
284
271
|
destroy(): void;
|
|
285
272
|
}
|