@aws-sdk/client-greengrassv2 3.296.0 → 3.297.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.
Files changed (42) hide show
  1. package/dist-types/GreengrassV2.d.ts +30 -0
  2. package/dist-types/GreengrassV2Client.d.ts +24 -4
  3. package/dist-types/commands/AssociateServiceRoleToAccountCommand.d.ts +16 -0
  4. package/dist-types/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.d.ts +16 -0
  5. package/dist-types/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.d.ts +16 -0
  6. package/dist-types/commands/CancelDeploymentCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateComponentVersionCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateDeploymentCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteComponentCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteCoreDeviceCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteDeploymentCommand.d.ts +16 -0
  12. package/dist-types/commands/DescribeComponentCommand.d.ts +16 -0
  13. package/dist-types/commands/DisassociateServiceRoleFromAccountCommand.d.ts +16 -0
  14. package/dist-types/commands/GetComponentCommand.d.ts +16 -0
  15. package/dist-types/commands/GetComponentVersionArtifactCommand.d.ts +16 -0
  16. package/dist-types/commands/GetConnectivityInfoCommand.d.ts +16 -0
  17. package/dist-types/commands/GetCoreDeviceCommand.d.ts +16 -0
  18. package/dist-types/commands/GetDeploymentCommand.d.ts +16 -0
  19. package/dist-types/commands/GetServiceRoleForAccountCommand.d.ts +16 -0
  20. package/dist-types/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.d.ts +16 -0
  21. package/dist-types/commands/ListComponentVersionsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListComponentsCommand.d.ts +16 -0
  23. package/dist-types/commands/ListCoreDevicesCommand.d.ts +16 -0
  24. package/dist-types/commands/ListDeploymentsCommand.d.ts +16 -0
  25. package/dist-types/commands/ListEffectiveDeploymentsCommand.d.ts +16 -0
  26. package/dist-types/commands/ListInstalledComponentsCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/ResolveComponentCandidatesCommand.d.ts +16 -0
  29. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  30. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  31. package/dist-types/commands/UpdateConnectivityInfoCommand.d.ts +16 -0
  32. package/dist-types/models/GreengrassV2ServiceException.d.ts +2 -0
  33. package/dist-types/models/models_0.d.ts +274 -0
  34. package/dist-types/pagination/Interfaces.d.ts +3 -0
  35. package/dist-types/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.d.ts +3 -0
  36. package/dist-types/pagination/ListComponentVersionsPaginator.d.ts +3 -0
  37. package/dist-types/pagination/ListComponentsPaginator.d.ts +3 -0
  38. package/dist-types/pagination/ListCoreDevicesPaginator.d.ts +3 -0
  39. package/dist-types/pagination/ListDeploymentsPaginator.d.ts +3 -0
  40. package/dist-types/pagination/ListEffectiveDeploymentsPaginator.d.ts +3 -0
  41. package/dist-types/pagination/ListInstalledComponentsPaginator.d.ts +3 -0
  42. package/package.json +3 -3
@@ -30,6 +30,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
30
30
  import { UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput } from "./commands/UpdateConnectivityInfoCommand";
31
31
  import { GreengrassV2Client } from "./GreengrassV2Client";
32
32
  /**
33
+ * @public
33
34
  * <p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities
34
35
  * to edge devices. This enables devices to collect and analyze data closer to the source of
35
36
  * information, react autonomously to local events, and communicate securely with each other on
@@ -44,6 +45,7 @@ import { GreengrassV2Client } from "./GreengrassV2Client";
44
45
  */
45
46
  export declare class GreengrassV2 extends GreengrassV2Client {
46
47
  /**
48
+ * @public
47
49
  * <p>Associates a Greengrass service role with IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region. IoT Greengrass
48
50
  * uses this role to verify the identity of client devices and manage core device connectivity
49
51
  * information. The role must include the <a href="https://console.aws.amazon.com/iam/home#/policies/arn:awsiam::aws:policy/service-role/AWSGreengrassResourceAccessRolePolicy">AWSGreengrassResourceAccessRolePolicy</a> managed policy or a custom policy that
@@ -54,6 +56,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
54
56
  associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
55
57
  associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
56
58
  /**
59
+ * @public
57
60
  * <p>Associates a list of client devices with a core device. Use this API operation to specify
58
61
  * which client devices can discover a core device through cloud discovery. With cloud discovery,
59
62
  * client devices connect to IoT Greengrass to retrieve associated core devices' connectivity information
@@ -71,6 +74,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
71
74
  batchAssociateClientDeviceWithCoreDevice(args: BatchAssociateClientDeviceWithCoreDeviceCommandInput, cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void): void;
72
75
  batchAssociateClientDeviceWithCoreDevice(args: BatchAssociateClientDeviceWithCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchAssociateClientDeviceWithCoreDeviceCommandOutput) => void): void;
73
76
  /**
77
+ * @public
74
78
  * <p>Disassociates a list of client devices from a core device. After you disassociate a client
75
79
  * device from a core device, the client device won't be able to use cloud discovery to retrieve
76
80
  * the core device's connectivity information and certificates.</p>
@@ -79,6 +83,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
79
83
  batchDisassociateClientDeviceFromCoreDevice(args: BatchDisassociateClientDeviceFromCoreDeviceCommandInput, cb: (err: any, data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput) => void): void;
80
84
  batchDisassociateClientDeviceFromCoreDevice(args: BatchDisassociateClientDeviceFromCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: BatchDisassociateClientDeviceFromCoreDeviceCommandOutput) => void): void;
81
85
  /**
86
+ * @public
82
87
  * <p>Cancels a deployment. This operation cancels the deployment for devices that haven't yet
83
88
  * received it. If a device already received the deployment, this operation doesn't change
84
89
  * anything for that device.</p>
@@ -87,6 +92,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
87
92
  cancelDeployment(args: CancelDeploymentCommandInput, cb: (err: any, data?: CancelDeploymentCommandOutput) => void): void;
88
93
  cancelDeployment(args: CancelDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelDeploymentCommandOutput) => void): void;
89
94
  /**
95
+ * @public
90
96
  * <p>Creates a component. Components are software that run on Greengrass core devices. After you
91
97
  * develop and test a component on your core device, you can use this operation to upload your
92
98
  * component to IoT Greengrass. Then, you can deploy the component to other core devices.</p>
@@ -161,6 +167,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
161
167
  createComponentVersion(args: CreateComponentVersionCommandInput, cb: (err: any, data?: CreateComponentVersionCommandOutput) => void): void;
162
168
  createComponentVersion(args: CreateComponentVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateComponentVersionCommandOutput) => void): void;
163
169
  /**
170
+ * @public
164
171
  * <p>Creates a continuous deployment for a target, which is a Greengrass core device or group of core
165
172
  * devices. When you add a new core device to a group of core devices that has a deployment, IoT Greengrass
166
173
  * deploys that group's deployment to the new device.</p>
@@ -177,6 +184,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
177
184
  createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
178
185
  createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
179
186
  /**
187
+ * @public
180
188
  * <p>Deletes a version of a component from IoT Greengrass.</p>
181
189
  * <note>
182
190
  * <p>This operation deletes the component's recipe and artifacts. As a result, deployments
@@ -189,6 +197,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
189
197
  deleteComponent(args: DeleteComponentCommandInput, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
190
198
  deleteComponent(args: DeleteComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteComponentCommandOutput) => void): void;
191
199
  /**
200
+ * @public
192
201
  * <p>Deletes a Greengrass core device, which is an IoT thing. This operation removes the core
193
202
  * device from the list of core devices. This operation doesn't delete the IoT thing. For more
194
203
  * information about how to delete the IoT thing, see <a href="https://docs.aws.amazon.com/iot/latest/apireference/API_DeleteThing.html">DeleteThing</a> in the
@@ -198,6 +207,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
198
207
  deleteCoreDevice(args: DeleteCoreDeviceCommandInput, cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void): void;
199
208
  deleteCoreDevice(args: DeleteCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCoreDeviceCommandOutput) => void): void;
200
209
  /**
210
+ * @public
201
211
  * <p>Deletes a deployment. To delete an active deployment, you must first cancel it. For more
202
212
  * information, see <a href="https://docs.aws.amazon.com/iot/latest/apireference/API_CancelDeployment.html">CancelDeployment</a>.</p>
203
213
  * <p>Deleting a deployment doesn't affect core devices that run that deployment, because core
@@ -208,12 +218,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
208
218
  deleteDeployment(args: DeleteDeploymentCommandInput, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
209
219
  deleteDeployment(args: DeleteDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeploymentCommandOutput) => void): void;
210
220
  /**
221
+ * @public
211
222
  * <p>Retrieves metadata for a version of a component.</p>
212
223
  */
213
224
  describeComponent(args: DescribeComponentCommandInput, options?: __HttpHandlerOptions): Promise<DescribeComponentCommandOutput>;
214
225
  describeComponent(args: DescribeComponentCommandInput, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
215
226
  describeComponent(args: DescribeComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeComponentCommandOutput) => void): void;
216
227
  /**
228
+ * @public
217
229
  * <p>Disassociates the Greengrass service role from IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region.
218
230
  * Without a service role, IoT Greengrass can't verify the identity of client devices or manage core device
219
231
  * connectivity information. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/greengrass-service-role.html">Greengrass service role</a> in
@@ -223,12 +235,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
223
235
  disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
224
236
  disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
225
237
  /**
238
+ * @public
226
239
  * <p>Gets the recipe for a version of a component.</p>
227
240
  */
228
241
  getComponent(args: GetComponentCommandInput, options?: __HttpHandlerOptions): Promise<GetComponentCommandOutput>;
229
242
  getComponent(args: GetComponentCommandInput, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
230
243
  getComponent(args: GetComponentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentCommandOutput) => void): void;
231
244
  /**
245
+ * @public
232
246
  * <p>Gets the pre-signed URL to download a public or a Lambda component artifact. Core devices call this
233
247
  * operation to identify the URL that they can use to download an artifact to install.</p>
234
248
  */
@@ -236,6 +250,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
236
250
  getComponentVersionArtifact(args: GetComponentVersionArtifactCommandInput, cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void): void;
237
251
  getComponentVersionArtifact(args: GetComponentVersionArtifactCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetComponentVersionArtifactCommandOutput) => void): void;
238
252
  /**
253
+ * @public
239
254
  * <p>Retrieves connectivity information for a Greengrass core device.</p>
240
255
  * <p>Connectivity information includes endpoints and ports where client devices
241
256
  * can connect to an MQTT broker on the core device. When a client device
@@ -248,6 +263,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
248
263
  getConnectivityInfo(args: GetConnectivityInfoCommandInput, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
249
264
  getConnectivityInfo(args: GetConnectivityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
250
265
  /**
266
+ * @public
251
267
  * <p>Retrieves metadata for a Greengrass core device.</p>
252
268
  * <note>
253
269
  * <p>IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core
@@ -281,12 +297,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
281
297
  getCoreDevice(args: GetCoreDeviceCommandInput, cb: (err: any, data?: GetCoreDeviceCommandOutput) => void): void;
282
298
  getCoreDevice(args: GetCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCoreDeviceCommandOutput) => void): void;
283
299
  /**
300
+ * @public
284
301
  * <p>Gets a deployment. Deployments define the components that run on Greengrass core devices.</p>
285
302
  */
286
303
  getDeployment(args: GetDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentCommandOutput>;
287
304
  getDeployment(args: GetDeploymentCommandInput, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
288
305
  getDeployment(args: GetDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentCommandOutput) => void): void;
289
306
  /**
307
+ * @public
290
308
  * <p>Gets the service role associated with IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region.
291
309
  * IoT Greengrass uses this role to verify the identity of client devices and manage core device
292
310
  * connectivity information. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/greengrass-service-role.html">Greengrass service role</a> in
@@ -296,6 +314,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
296
314
  getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
297
315
  getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
298
316
  /**
317
+ * @public
299
318
  * <p>Retrieves a paginated list of client devices that are associated with a core
300
319
  * device.</p>
301
320
  */
@@ -303,6 +322,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
303
322
  listClientDevicesAssociatedWithCoreDevice(args: ListClientDevicesAssociatedWithCoreDeviceCommandInput, cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void): void;
304
323
  listClientDevicesAssociatedWithCoreDevice(args: ListClientDevicesAssociatedWithCoreDeviceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListClientDevicesAssociatedWithCoreDeviceCommandOutput) => void): void;
305
324
  /**
325
+ * @public
306
326
  * <p>Retrieves a paginated list of component summaries. This list includes components that you
307
327
  * have permission to view.</p>
308
328
  */
@@ -310,12 +330,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
310
330
  listComponents(args: ListComponentsCommandInput, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
311
331
  listComponents(args: ListComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentsCommandOutput) => void): void;
312
332
  /**
333
+ * @public
313
334
  * <p>Retrieves a paginated list of all versions for a component. Greater versions are listed first.</p>
314
335
  */
315
336
  listComponentVersions(args: ListComponentVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListComponentVersionsCommandOutput>;
316
337
  listComponentVersions(args: ListComponentVersionsCommandInput, cb: (err: any, data?: ListComponentVersionsCommandOutput) => void): void;
317
338
  listComponentVersions(args: ListComponentVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListComponentVersionsCommandOutput) => void): void;
318
339
  /**
340
+ * @public
319
341
  * <p>Retrieves a paginated list of Greengrass core devices.</p>
320
342
  * <note>
321
343
  * <p>IoT Greengrass relies on individual devices to send status updates to the Amazon Web Services Cloud. If the IoT Greengrass Core
@@ -349,12 +371,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
349
371
  listCoreDevices(args: ListCoreDevicesCommandInput, cb: (err: any, data?: ListCoreDevicesCommandOutput) => void): void;
350
372
  listCoreDevices(args: ListCoreDevicesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreDevicesCommandOutput) => void): void;
351
373
  /**
374
+ * @public
352
375
  * <p>Retrieves a paginated list of deployments.</p>
353
376
  */
354
377
  listDeployments(args: ListDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentsCommandOutput>;
355
378
  listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
356
379
  listDeployments(args: ListDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
357
380
  /**
381
+ * @public
358
382
  * <p>Retrieves a paginated list of deployment jobs that IoT Greengrass sends to Greengrass core
359
383
  * devices.</p>
360
384
  */
@@ -362,6 +386,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
362
386
  listEffectiveDeployments(args: ListEffectiveDeploymentsCommandInput, cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void): void;
363
387
  listEffectiveDeployments(args: ListEffectiveDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEffectiveDeploymentsCommandOutput) => void): void;
364
388
  /**
389
+ * @public
365
390
  * <p>Retrieves a paginated list of the components that a Greengrass core device runs. By default,
366
391
  * this list doesn't include components that are deployed as dependencies of other components. To
367
392
  * include dependencies in the response, set the <code>topologyFilter</code> parameter to
@@ -397,12 +422,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
397
422
  listInstalledComponents(args: ListInstalledComponentsCommandInput, cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void): void;
398
423
  listInstalledComponents(args: ListInstalledComponentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListInstalledComponentsCommandOutput) => void): void;
399
424
  /**
425
+ * @public
400
426
  * <p>Retrieves the list of tags for an IoT Greengrass resource.</p>
401
427
  */
402
428
  listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
403
429
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
404
430
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
405
431
  /**
432
+ * @public
406
433
  * <p>Retrieves a list of components that meet the component, version, and platform requirements
407
434
  * of a deployment. Greengrass core devices call this operation when they receive a deployment to
408
435
  * identify the components to install.</p>
@@ -423,6 +450,7 @@ export declare class GreengrassV2 extends GreengrassV2Client {
423
450
  resolveComponentCandidates(args: ResolveComponentCandidatesCommandInput, cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void): void;
424
451
  resolveComponentCandidates(args: ResolveComponentCandidatesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResolveComponentCandidatesCommandOutput) => void): void;
425
452
  /**
453
+ * @public
426
454
  * <p>Adds tags to an IoT Greengrass resource. If a tag already exists for the resource, this operation
427
455
  * updates the tag's value.</p>
428
456
  */
@@ -430,12 +458,14 @@ export declare class GreengrassV2 extends GreengrassV2Client {
430
458
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
431
459
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
432
460
  /**
461
+ * @public
433
462
  * <p>Removes a tag from an IoT Greengrass resource.</p>
434
463
  */
435
464
  untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
436
465
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
437
466
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
438
467
  /**
468
+ * @public
439
469
  * <p>Updates connectivity information for a Greengrass core device.</p>
440
470
  * <p>Connectivity information includes endpoints and ports where client devices
441
471
  * can connect to an MQTT broker on the core device. When a client device
@@ -37,15 +37,24 @@ import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/Ta
37
37
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
38
38
  import { UpdateConnectivityInfoCommandInput, UpdateConnectivityInfoCommandOutput } from "./commands/UpdateConnectivityInfoCommand";
39
39
  import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
40
+ /**
41
+ * @public
42
+ */
40
43
  export type ServiceInputTypes = AssociateServiceRoleToAccountCommandInput | BatchAssociateClientDeviceWithCoreDeviceCommandInput | BatchDisassociateClientDeviceFromCoreDeviceCommandInput | CancelDeploymentCommandInput | CreateComponentVersionCommandInput | CreateDeploymentCommandInput | DeleteComponentCommandInput | DeleteCoreDeviceCommandInput | DeleteDeploymentCommandInput | DescribeComponentCommandInput | DisassociateServiceRoleFromAccountCommandInput | GetComponentCommandInput | GetComponentVersionArtifactCommandInput | GetConnectivityInfoCommandInput | GetCoreDeviceCommandInput | GetDeploymentCommandInput | GetServiceRoleForAccountCommandInput | ListClientDevicesAssociatedWithCoreDeviceCommandInput | ListComponentVersionsCommandInput | ListComponentsCommandInput | ListCoreDevicesCommandInput | ListDeploymentsCommandInput | ListEffectiveDeploymentsCommandInput | ListInstalledComponentsCommandInput | ListTagsForResourceCommandInput | ResolveComponentCandidatesCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectivityInfoCommandInput;
44
+ /**
45
+ * @public
46
+ */
41
47
  export type ServiceOutputTypes = AssociateServiceRoleToAccountCommandOutput | BatchAssociateClientDeviceWithCoreDeviceCommandOutput | BatchDisassociateClientDeviceFromCoreDeviceCommandOutput | CancelDeploymentCommandOutput | CreateComponentVersionCommandOutput | CreateDeploymentCommandOutput | DeleteComponentCommandOutput | DeleteCoreDeviceCommandOutput | DeleteDeploymentCommandOutput | DescribeComponentCommandOutput | DisassociateServiceRoleFromAccountCommandOutput | GetComponentCommandOutput | GetComponentVersionArtifactCommandOutput | GetConnectivityInfoCommandOutput | GetCoreDeviceCommandOutput | GetDeploymentCommandOutput | GetServiceRoleForAccountCommandOutput | ListClientDevicesAssociatedWithCoreDeviceCommandOutput | ListComponentVersionsCommandOutput | ListComponentsCommandOutput | ListCoreDevicesCommandOutput | ListDeploymentsCommandOutput | ListEffectiveDeploymentsCommandOutput | ListInstalledComponentsCommandOutput | ListTagsForResourceCommandOutput | ResolveComponentCandidatesCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectivityInfoCommandOutput;
48
+ /**
49
+ * @public
50
+ */
42
51
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
43
52
  /**
44
53
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
45
54
  */
46
55
  requestHandler?: __HttpHandler;
47
56
  /**
48
- * A constructor for a class implementing the {@link __Checksum} interface
57
+ * A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
49
58
  * that computes the SHA-256 HMAC or checksum of a string or binary buffer.
50
59
  * @internal
51
60
  */
@@ -135,23 +144,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
135
144
  */
136
145
  logger?: __Logger;
137
146
  /**
138
- * The {@link __DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
147
+ * The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
139
148
  */
140
149
  defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
141
150
  }
151
+ /**
152
+ * @public
153
+ */
142
154
  type GreengrassV2ClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
143
155
  /**
144
- * The configuration interface of GreengrassV2Client class constructor that set the region, credentials and other options.
156
+ * @public
157
+ *
158
+ * The configuration interface of GreengrassV2Client class constructor that set the region, credentials and other options.
145
159
  */
146
160
  export interface GreengrassV2ClientConfig extends GreengrassV2ClientConfigType {
147
161
  }
162
+ /**
163
+ * @public
164
+ */
148
165
  type GreengrassV2ClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
149
166
  /**
150
- * The resolved configuration interface of GreengrassV2Client class. This is resolved and normalized from the {@link GreengrassV2ClientConfig | constructor configuration interface}.
167
+ * @public
168
+ *
169
+ * The resolved configuration interface of GreengrassV2Client class. This is resolved and normalized from the {@link GreengrassV2ClientConfig | constructor configuration interface}.
151
170
  */
152
171
  export interface GreengrassV2ClientResolvedConfig extends GreengrassV2ClientResolvedConfigType {
153
172
  }
154
173
  /**
174
+ * @public
155
175
  * <p>IoT Greengrass brings local compute, messaging, data management, sync, and ML inference capabilities
156
176
  * to edge devices. This enables devices to collect and analyze data closer to the source of
157
177
  * information, react autonomously to local events, and communicate securely with each other on
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { AssociateServiceRoleToAccountRequest, AssociateServiceRoleToAccountResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link AssociateServiceRoleToAccountCommand}.
8
10
  */
9
11
  export interface AssociateServiceRoleToAccountCommandInput extends AssociateServiceRoleToAccountRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link AssociateServiceRoleToAccountCommand}.
13
17
  */
14
18
  export interface AssociateServiceRoleToAccountCommandOutput extends AssociateServiceRoleToAccountResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates a Greengrass service role with IoT Greengrass for your Amazon Web Services account in this Amazon Web Services Region. IoT Greengrass
18
23
  * uses this role to verify the identity of client devices and manage core device connectivity
19
24
  * information. The role must include the <a href="https://console.aws.amazon.com/iam/home#/policies/arn:awsiam::aws:policy/service-role/AWSGreengrassResourceAccessRolePolicy">AWSGreengrassResourceAccessRolePolicy</a> managed policy or a custom policy that
@@ -29,6 +34,8 @@ export interface AssociateServiceRoleToAccountCommandOutput extends AssociateSer
29
34
  * const response = await client.send(command);
30
35
  * ```
31
36
  *
37
+ * @param AssociateServiceRoleToAccountCommandInput - {@link AssociateServiceRoleToAccountCommandInput}
38
+ * @returns {@link AssociateServiceRoleToAccountCommandOutput}
32
39
  * @see {@link AssociateServiceRoleToAccountCommandInput} for command's `input` shape.
33
40
  * @see {@link AssociateServiceRoleToAccountCommandOutput} for command's `response` shape.
34
41
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -45,11 +52,20 @@ export interface AssociateServiceRoleToAccountCommandOutput extends AssociateSer
45
52
  export declare class AssociateServiceRoleToAccountCommand extends $Command<AssociateServiceRoleToAccountCommandInput, AssociateServiceRoleToAccountCommandOutput, GreengrassV2ClientResolvedConfig> {
46
53
  readonly input: AssociateServiceRoleToAccountCommandInput;
47
54
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
55
+ /**
56
+ * @public
57
+ */
48
58
  constructor(input: AssociateServiceRoleToAccountCommandInput);
49
59
  /**
50
60
  * @internal
51
61
  */
52
62
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AssociateServiceRoleToAccountCommandInput, AssociateServiceRoleToAccountCommandOutput>;
63
+ /**
64
+ * @internal
65
+ */
53
66
  private serialize;
67
+ /**
68
+ * @internal
69
+ */
54
70
  private deserialize;
55
71
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { BatchAssociateClientDeviceWithCoreDeviceRequest, BatchAssociateClientDeviceWithCoreDeviceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchAssociateClientDeviceWithCoreDeviceCommand}.
8
10
  */
9
11
  export interface BatchAssociateClientDeviceWithCoreDeviceCommandInput extends BatchAssociateClientDeviceWithCoreDeviceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchAssociateClientDeviceWithCoreDeviceCommand}.
13
17
  */
14
18
  export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput extends BatchAssociateClientDeviceWithCoreDeviceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Associates a list of client devices with a core device. Use this API operation to specify
18
23
  * which client devices can discover a core device through cloud discovery. With cloud discovery,
19
24
  * client devices connect to IoT Greengrass to retrieve associated core devices' connectivity information
@@ -36,6 +41,8 @@ export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput extends B
36
41
  * const response = await client.send(command);
37
42
  * ```
38
43
  *
44
+ * @param BatchAssociateClientDeviceWithCoreDeviceCommandInput - {@link BatchAssociateClientDeviceWithCoreDeviceCommandInput}
45
+ * @returns {@link BatchAssociateClientDeviceWithCoreDeviceCommandOutput}
39
46
  * @see {@link BatchAssociateClientDeviceWithCoreDeviceCommandInput} for command's `input` shape.
40
47
  * @see {@link BatchAssociateClientDeviceWithCoreDeviceCommandOutput} for command's `response` shape.
41
48
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -62,11 +69,20 @@ export interface BatchAssociateClientDeviceWithCoreDeviceCommandOutput extends B
62
69
  export declare class BatchAssociateClientDeviceWithCoreDeviceCommand extends $Command<BatchAssociateClientDeviceWithCoreDeviceCommandInput, BatchAssociateClientDeviceWithCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
63
70
  readonly input: BatchAssociateClientDeviceWithCoreDeviceCommandInput;
64
71
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
72
+ /**
73
+ * @public
74
+ */
65
75
  constructor(input: BatchAssociateClientDeviceWithCoreDeviceCommandInput);
66
76
  /**
67
77
  * @internal
68
78
  */
69
79
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchAssociateClientDeviceWithCoreDeviceCommandInput, BatchAssociateClientDeviceWithCoreDeviceCommandOutput>;
80
+ /**
81
+ * @internal
82
+ */
70
83
  private serialize;
84
+ /**
85
+ * @internal
86
+ */
71
87
  private deserialize;
72
88
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { BatchDisassociateClientDeviceFromCoreDeviceRequest, BatchDisassociateClientDeviceFromCoreDeviceResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link BatchDisassociateClientDeviceFromCoreDeviceCommand}.
8
10
  */
9
11
  export interface BatchDisassociateClientDeviceFromCoreDeviceCommandInput extends BatchDisassociateClientDeviceFromCoreDeviceRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link BatchDisassociateClientDeviceFromCoreDeviceCommand}.
13
17
  */
14
18
  export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput extends BatchDisassociateClientDeviceFromCoreDeviceResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Disassociates a list of client devices from a core device. After you disassociate a client
18
23
  * device from a core device, the client device won't be able to use cloud discovery to retrieve
19
24
  * the core device's connectivity information and certificates.</p>
@@ -27,6 +32,8 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput extend
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param BatchDisassociateClientDeviceFromCoreDeviceCommandInput - {@link BatchDisassociateClientDeviceFromCoreDeviceCommandInput}
36
+ * @returns {@link BatchDisassociateClientDeviceFromCoreDeviceCommandOutput}
30
37
  * @see {@link BatchDisassociateClientDeviceFromCoreDeviceCommandInput} for command's `input` shape.
31
38
  * @see {@link BatchDisassociateClientDeviceFromCoreDeviceCommandOutput} for command's `response` shape.
32
39
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -53,11 +60,20 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceCommandOutput extend
53
60
  export declare class BatchDisassociateClientDeviceFromCoreDeviceCommand extends $Command<BatchDisassociateClientDeviceFromCoreDeviceCommandInput, BatchDisassociateClientDeviceFromCoreDeviceCommandOutput, GreengrassV2ClientResolvedConfig> {
54
61
  readonly input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: BatchDisassociateClientDeviceFromCoreDeviceCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<BatchDisassociateClientDeviceFromCoreDeviceCommandInput, BatchDisassociateClientDeviceFromCoreDeviceCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { CancelDeploymentRequest, CancelDeploymentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CancelDeploymentCommand}.
8
10
  */
9
11
  export interface CancelDeploymentCommandInput extends CancelDeploymentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CancelDeploymentCommand}.
13
17
  */
14
18
  export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Cancels a deployment. This operation cancels the deployment for devices that haven't yet
18
23
  * received it. If a device already received the deployment, this operation doesn't change
19
24
  * anything for that device.</p>
@@ -27,6 +32,8 @@ export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse,
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param CancelDeploymentCommandInput - {@link CancelDeploymentCommandInput}
36
+ * @returns {@link CancelDeploymentCommandOutput}
30
37
  * @see {@link CancelDeploymentCommandInput} for command's `input` shape.
31
38
  * @see {@link CancelDeploymentCommandOutput} for command's `response` shape.
32
39
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -57,11 +64,20 @@ export interface CancelDeploymentCommandOutput extends CancelDeploymentResponse,
57
64
  export declare class CancelDeploymentCommand extends $Command<CancelDeploymentCommandInput, CancelDeploymentCommandOutput, GreengrassV2ClientResolvedConfig> {
58
65
  readonly input: CancelDeploymentCommandInput;
59
66
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
67
+ /**
68
+ * @public
69
+ */
60
70
  constructor(input: CancelDeploymentCommandInput);
61
71
  /**
62
72
  * @internal
63
73
  */
64
74
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelDeploymentCommandInput, CancelDeploymentCommandOutput>;
75
+ /**
76
+ * @internal
77
+ */
65
78
  private serialize;
79
+ /**
80
+ * @internal
81
+ */
66
82
  private deserialize;
67
83
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { CreateComponentVersionRequest, CreateComponentVersionResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateComponentVersionCommand}.
8
10
  */
9
11
  export interface CreateComponentVersionCommandInput extends CreateComponentVersionRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateComponentVersionCommand}.
13
17
  */
14
18
  export interface CreateComponentVersionCommandOutput extends CreateComponentVersionResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a component. Components are software that run on Greengrass core devices. After you
18
23
  * develop and test a component on your core device, you can use this operation to upload your
19
24
  * component to IoT Greengrass. Then, you can deploy the component to other core devices.</p>
@@ -93,6 +98,8 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers
93
98
  * const response = await client.send(command);
94
99
  * ```
95
100
  *
101
+ * @param CreateComponentVersionCommandInput - {@link CreateComponentVersionCommandInput}
102
+ * @returns {@link CreateComponentVersionCommandOutput}
96
103
  * @see {@link CreateComponentVersionCommandInput} for command's `input` shape.
97
104
  * @see {@link CreateComponentVersionCommandOutput} for command's `response` shape.
98
105
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -129,11 +136,20 @@ export interface CreateComponentVersionCommandOutput extends CreateComponentVers
129
136
  export declare class CreateComponentVersionCommand extends $Command<CreateComponentVersionCommandInput, CreateComponentVersionCommandOutput, GreengrassV2ClientResolvedConfig> {
130
137
  readonly input: CreateComponentVersionCommandInput;
131
138
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
139
+ /**
140
+ * @public
141
+ */
132
142
  constructor(input: CreateComponentVersionCommandInput);
133
143
  /**
134
144
  * @internal
135
145
  */
136
146
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateComponentVersionCommandInput, CreateComponentVersionCommandOutput>;
147
+ /**
148
+ * @internal
149
+ */
137
150
  private serialize;
151
+ /**
152
+ * @internal
153
+ */
138
154
  private deserialize;
139
155
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { GreengrassV2ClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GreengrassV2Client";
5
5
  import { CreateDeploymentRequest, CreateDeploymentResponse } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link CreateDeploymentCommand}.
8
10
  */
9
11
  export interface CreateDeploymentCommandInput extends CreateDeploymentRequest {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link CreateDeploymentCommand}.
13
17
  */
14
18
  export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Creates a continuous deployment for a target, which is a Greengrass core device or group of core
18
23
  * devices. When you add a new core device to a group of core devices that has a deployment, IoT Greengrass
19
24
  * deploys that group's deployment to the new device.</p>
@@ -35,6 +40,8 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
35
40
  * const response = await client.send(command);
36
41
  * ```
37
42
  *
43
+ * @param CreateDeploymentCommandInput - {@link CreateDeploymentCommandInput}
44
+ * @returns {@link CreateDeploymentCommandOutput}
38
45
  * @see {@link CreateDeploymentCommandInput} for command's `input` shape.
39
46
  * @see {@link CreateDeploymentCommandOutput} for command's `response` shape.
40
47
  * @see {@link GreengrassV2ClientResolvedConfig | config} for GreengrassV2Client's `config` shape.
@@ -70,11 +77,20 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
70
77
  export declare class CreateDeploymentCommand extends $Command<CreateDeploymentCommandInput, CreateDeploymentCommandOutput, GreengrassV2ClientResolvedConfig> {
71
78
  readonly input: CreateDeploymentCommandInput;
72
79
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
80
+ /**
81
+ * @public
82
+ */
73
83
  constructor(input: CreateDeploymentCommandInput);
74
84
  /**
75
85
  * @internal
76
86
  */
77
87
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: GreengrassV2ClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDeploymentCommandInput, CreateDeploymentCommandOutput>;
88
+ /**
89
+ * @internal
90
+ */
78
91
  private serialize;
92
+ /**
93
+ * @internal
94
+ */
79
95
  private deserialize;
80
96
  }