@aws-sdk/client-greengrass 3.315.0 → 3.319.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/Greengrass.js +96 -1288
- package/dist-es/Greengrass.js +96 -1288
- package/dist-types/Greengrass.d.ts +99 -189
- package/dist-types/ts3.4/Greengrass.d.ts +4 -1
- package/package.json +8 -8
|
@@ -92,653 +92,563 @@ import { UpdateResourceDefinitionCommandInput, UpdateResourceDefinitionCommandOu
|
|
|
92
92
|
import { UpdateSubscriptionDefinitionCommandInput, UpdateSubscriptionDefinitionCommandOutput } from "./commands/UpdateSubscriptionDefinitionCommand";
|
|
93
93
|
import { UpdateThingRuntimeConfigurationCommandInput, UpdateThingRuntimeConfigurationCommandOutput } from "./commands/UpdateThingRuntimeConfigurationCommand";
|
|
94
94
|
import { GreengrassClient } from "./GreengrassClient";
|
|
95
|
-
|
|
96
|
-
* @public
|
|
97
|
-
* AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally.
|
|
98
|
-
*/
|
|
99
|
-
export declare class Greengrass extends GreengrassClient {
|
|
95
|
+
export interface Greengrass {
|
|
100
96
|
/**
|
|
101
|
-
* @
|
|
102
|
-
* Associates a role with a group. Your Greengrass core will use the role to access AWS cloud services. The role's permissions should allow Greengrass core Lambda functions to perform actions against the cloud.
|
|
97
|
+
* @see {@link AssociateRoleToGroupCommand}
|
|
103
98
|
*/
|
|
104
99
|
associateRoleToGroup(args: AssociateRoleToGroupCommandInput, options?: __HttpHandlerOptions): Promise<AssociateRoleToGroupCommandOutput>;
|
|
105
100
|
associateRoleToGroup(args: AssociateRoleToGroupCommandInput, cb: (err: any, data?: AssociateRoleToGroupCommandOutput) => void): void;
|
|
106
101
|
associateRoleToGroup(args: AssociateRoleToGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateRoleToGroupCommandOutput) => void): void;
|
|
107
102
|
/**
|
|
108
|
-
* @
|
|
109
|
-
* Associates a role with your account. AWS IoT Greengrass will use the role to access your Lambda functions and AWS IoT resources. This is necessary for deployments to succeed. The role must have at least minimum permissions in the policy ''AWSGreengrassResourceAccessRolePolicy''.
|
|
103
|
+
* @see {@link AssociateServiceRoleToAccountCommand}
|
|
110
104
|
*/
|
|
111
105
|
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, options?: __HttpHandlerOptions): Promise<AssociateServiceRoleToAccountCommandOutput>;
|
|
112
106
|
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
|
|
113
107
|
associateServiceRoleToAccount(args: AssociateServiceRoleToAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateServiceRoleToAccountCommandOutput) => void): void;
|
|
114
108
|
/**
|
|
115
|
-
* @
|
|
116
|
-
* Creates a connector definition. You may provide the initial version of the connector definition now or use ''CreateConnectorDefinitionVersion'' at a later time.
|
|
109
|
+
* @see {@link CreateConnectorDefinitionCommand}
|
|
117
110
|
*/
|
|
118
111
|
createConnectorDefinition(args: CreateConnectorDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorDefinitionCommandOutput>;
|
|
119
112
|
createConnectorDefinition(args: CreateConnectorDefinitionCommandInput, cb: (err: any, data?: CreateConnectorDefinitionCommandOutput) => void): void;
|
|
120
113
|
createConnectorDefinition(args: CreateConnectorDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorDefinitionCommandOutput) => void): void;
|
|
121
114
|
/**
|
|
122
|
-
* @
|
|
123
|
-
* Creates a version of a connector definition which has already been defined.
|
|
115
|
+
* @see {@link CreateConnectorDefinitionVersionCommand}
|
|
124
116
|
*/
|
|
125
117
|
createConnectorDefinitionVersion(args: CreateConnectorDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorDefinitionVersionCommandOutput>;
|
|
126
118
|
createConnectorDefinitionVersion(args: CreateConnectorDefinitionVersionCommandInput, cb: (err: any, data?: CreateConnectorDefinitionVersionCommandOutput) => void): void;
|
|
127
119
|
createConnectorDefinitionVersion(args: CreateConnectorDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorDefinitionVersionCommandOutput) => void): void;
|
|
128
120
|
/**
|
|
129
|
-
* @
|
|
130
|
-
* Creates a core definition. You may provide the initial version of the core definition now or use ''CreateCoreDefinitionVersion'' at a later time. Greengrass groups must each contain exactly one Greengrass core.
|
|
121
|
+
* @see {@link CreateCoreDefinitionCommand}
|
|
131
122
|
*/
|
|
132
123
|
createCoreDefinition(args: CreateCoreDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateCoreDefinitionCommandOutput>;
|
|
133
124
|
createCoreDefinition(args: CreateCoreDefinitionCommandInput, cb: (err: any, data?: CreateCoreDefinitionCommandOutput) => void): void;
|
|
134
125
|
createCoreDefinition(args: CreateCoreDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCoreDefinitionCommandOutput) => void): void;
|
|
135
126
|
/**
|
|
136
|
-
* @
|
|
137
|
-
* Creates a version of a core definition that has already been defined. Greengrass groups must each contain exactly one Greengrass core.
|
|
127
|
+
* @see {@link CreateCoreDefinitionVersionCommand}
|
|
138
128
|
*/
|
|
139
129
|
createCoreDefinitionVersion(args: CreateCoreDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateCoreDefinitionVersionCommandOutput>;
|
|
140
130
|
createCoreDefinitionVersion(args: CreateCoreDefinitionVersionCommandInput, cb: (err: any, data?: CreateCoreDefinitionVersionCommandOutput) => void): void;
|
|
141
131
|
createCoreDefinitionVersion(args: CreateCoreDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCoreDefinitionVersionCommandOutput) => void): void;
|
|
142
132
|
/**
|
|
143
|
-
* @
|
|
144
|
-
* Creates a deployment. ''CreateDeployment'' requests are idempotent with respect to the ''X-Amzn-Client-Token'' token and the request parameters.
|
|
133
|
+
* @see {@link CreateDeploymentCommand}
|
|
145
134
|
*/
|
|
146
135
|
createDeployment(args: CreateDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeploymentCommandOutput>;
|
|
147
136
|
createDeployment(args: CreateDeploymentCommandInput, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
148
137
|
createDeployment(args: CreateDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentCommandOutput) => void): void;
|
|
149
138
|
/**
|
|
150
|
-
* @
|
|
151
|
-
* Creates a device definition. You may provide the initial version of the device definition now or use ''CreateDeviceDefinitionVersion'' at a later time.
|
|
139
|
+
* @see {@link CreateDeviceDefinitionCommand}
|
|
152
140
|
*/
|
|
153
141
|
createDeviceDefinition(args: CreateDeviceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeviceDefinitionCommandOutput>;
|
|
154
142
|
createDeviceDefinition(args: CreateDeviceDefinitionCommandInput, cb: (err: any, data?: CreateDeviceDefinitionCommandOutput) => void): void;
|
|
155
143
|
createDeviceDefinition(args: CreateDeviceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceDefinitionCommandOutput) => void): void;
|
|
156
144
|
/**
|
|
157
|
-
* @
|
|
158
|
-
* Creates a version of a device definition that has already been defined.
|
|
145
|
+
* @see {@link CreateDeviceDefinitionVersionCommand}
|
|
159
146
|
*/
|
|
160
147
|
createDeviceDefinitionVersion(args: CreateDeviceDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateDeviceDefinitionVersionCommandOutput>;
|
|
161
148
|
createDeviceDefinitionVersion(args: CreateDeviceDefinitionVersionCommandInput, cb: (err: any, data?: CreateDeviceDefinitionVersionCommandOutput) => void): void;
|
|
162
149
|
createDeviceDefinitionVersion(args: CreateDeviceDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeviceDefinitionVersionCommandOutput) => void): void;
|
|
163
150
|
/**
|
|
164
|
-
* @
|
|
165
|
-
* Creates a Lambda function definition which contains a list of Lambda functions and their configurations to be used in a group. You can create an initial version of the definition by providing a list of Lambda functions and their configurations now, or use ''CreateFunctionDefinitionVersion'' later.
|
|
151
|
+
* @see {@link CreateFunctionDefinitionCommand}
|
|
166
152
|
*/
|
|
167
153
|
createFunctionDefinition(args: CreateFunctionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateFunctionDefinitionCommandOutput>;
|
|
168
154
|
createFunctionDefinition(args: CreateFunctionDefinitionCommandInput, cb: (err: any, data?: CreateFunctionDefinitionCommandOutput) => void): void;
|
|
169
155
|
createFunctionDefinition(args: CreateFunctionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionDefinitionCommandOutput) => void): void;
|
|
170
156
|
/**
|
|
171
|
-
* @
|
|
172
|
-
* Creates a version of a Lambda function definition that has already been defined.
|
|
157
|
+
* @see {@link CreateFunctionDefinitionVersionCommand}
|
|
173
158
|
*/
|
|
174
159
|
createFunctionDefinitionVersion(args: CreateFunctionDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateFunctionDefinitionVersionCommandOutput>;
|
|
175
160
|
createFunctionDefinitionVersion(args: CreateFunctionDefinitionVersionCommandInput, cb: (err: any, data?: CreateFunctionDefinitionVersionCommandOutput) => void): void;
|
|
176
161
|
createFunctionDefinitionVersion(args: CreateFunctionDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFunctionDefinitionVersionCommandOutput) => void): void;
|
|
177
162
|
/**
|
|
178
|
-
* @
|
|
179
|
-
* Creates a group. You may provide the initial version of the group or use ''CreateGroupVersion'' at a later time. Tip: You can use the ''gg_group_setup'' package (https://github.com/awslabs/aws-greengrass-group-setup) as a library or command-line application to create and deploy Greengrass groups.
|
|
163
|
+
* @see {@link CreateGroupCommand}
|
|
180
164
|
*/
|
|
181
165
|
createGroup(args: CreateGroupCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCommandOutput>;
|
|
182
166
|
createGroup(args: CreateGroupCommandInput, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
183
167
|
createGroup(args: CreateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCommandOutput) => void): void;
|
|
184
168
|
/**
|
|
185
|
-
* @
|
|
186
|
-
* Creates a CA for the group. If a CA already exists, it will rotate the existing CA.
|
|
169
|
+
* @see {@link CreateGroupCertificateAuthorityCommand}
|
|
187
170
|
*/
|
|
188
171
|
createGroupCertificateAuthority(args: CreateGroupCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupCertificateAuthorityCommandOutput>;
|
|
189
172
|
createGroupCertificateAuthority(args: CreateGroupCertificateAuthorityCommandInput, cb: (err: any, data?: CreateGroupCertificateAuthorityCommandOutput) => void): void;
|
|
190
173
|
createGroupCertificateAuthority(args: CreateGroupCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupCertificateAuthorityCommandOutput) => void): void;
|
|
191
174
|
/**
|
|
192
|
-
* @
|
|
193
|
-
* Creates a version of a group which has already been defined.
|
|
175
|
+
* @see {@link CreateGroupVersionCommand}
|
|
194
176
|
*/
|
|
195
177
|
createGroupVersion(args: CreateGroupVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateGroupVersionCommandOutput>;
|
|
196
178
|
createGroupVersion(args: CreateGroupVersionCommandInput, cb: (err: any, data?: CreateGroupVersionCommandOutput) => void): void;
|
|
197
179
|
createGroupVersion(args: CreateGroupVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateGroupVersionCommandOutput) => void): void;
|
|
198
180
|
/**
|
|
199
|
-
* @
|
|
200
|
-
* Creates a logger definition. You may provide the initial version of the logger definition now or use ''CreateLoggerDefinitionVersion'' at a later time.
|
|
181
|
+
* @see {@link CreateLoggerDefinitionCommand}
|
|
201
182
|
*/
|
|
202
183
|
createLoggerDefinition(args: CreateLoggerDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoggerDefinitionCommandOutput>;
|
|
203
184
|
createLoggerDefinition(args: CreateLoggerDefinitionCommandInput, cb: (err: any, data?: CreateLoggerDefinitionCommandOutput) => void): void;
|
|
204
185
|
createLoggerDefinition(args: CreateLoggerDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoggerDefinitionCommandOutput) => void): void;
|
|
205
186
|
/**
|
|
206
|
-
* @
|
|
207
|
-
* Creates a version of a logger definition that has already been defined.
|
|
187
|
+
* @see {@link CreateLoggerDefinitionVersionCommand}
|
|
208
188
|
*/
|
|
209
189
|
createLoggerDefinitionVersion(args: CreateLoggerDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateLoggerDefinitionVersionCommandOutput>;
|
|
210
190
|
createLoggerDefinitionVersion(args: CreateLoggerDefinitionVersionCommandInput, cb: (err: any, data?: CreateLoggerDefinitionVersionCommandOutput) => void): void;
|
|
211
191
|
createLoggerDefinitionVersion(args: CreateLoggerDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateLoggerDefinitionVersionCommandOutput) => void): void;
|
|
212
192
|
/**
|
|
213
|
-
* @
|
|
214
|
-
* Creates a resource definition which contains a list of resources to be used in a group. You can create an initial version of the definition by providing a list of resources now, or use ''CreateResourceDefinitionVersion'' later.
|
|
193
|
+
* @see {@link CreateResourceDefinitionCommand}
|
|
215
194
|
*/
|
|
216
195
|
createResourceDefinition(args: CreateResourceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceDefinitionCommandOutput>;
|
|
217
196
|
createResourceDefinition(args: CreateResourceDefinitionCommandInput, cb: (err: any, data?: CreateResourceDefinitionCommandOutput) => void): void;
|
|
218
197
|
createResourceDefinition(args: CreateResourceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceDefinitionCommandOutput) => void): void;
|
|
219
198
|
/**
|
|
220
|
-
* @
|
|
221
|
-
* Creates a version of a resource definition that has already been defined.
|
|
199
|
+
* @see {@link CreateResourceDefinitionVersionCommand}
|
|
222
200
|
*/
|
|
223
201
|
createResourceDefinitionVersion(args: CreateResourceDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceDefinitionVersionCommandOutput>;
|
|
224
202
|
createResourceDefinitionVersion(args: CreateResourceDefinitionVersionCommandInput, cb: (err: any, data?: CreateResourceDefinitionVersionCommandOutput) => void): void;
|
|
225
203
|
createResourceDefinitionVersion(args: CreateResourceDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceDefinitionVersionCommandOutput) => void): void;
|
|
226
204
|
/**
|
|
227
|
-
* @
|
|
228
|
-
* Creates a software update for a core or group of cores (specified as an IoT thing group.) Use this to update the OTA Agent as well as the Greengrass core software. It makes use of the IoT Jobs feature which provides additional commands to manage a Greengrass core software update job.
|
|
205
|
+
* @see {@link CreateSoftwareUpdateJobCommand}
|
|
229
206
|
*/
|
|
230
207
|
createSoftwareUpdateJob(args: CreateSoftwareUpdateJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateSoftwareUpdateJobCommandOutput>;
|
|
231
208
|
createSoftwareUpdateJob(args: CreateSoftwareUpdateJobCommandInput, cb: (err: any, data?: CreateSoftwareUpdateJobCommandOutput) => void): void;
|
|
232
209
|
createSoftwareUpdateJob(args: CreateSoftwareUpdateJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSoftwareUpdateJobCommandOutput) => void): void;
|
|
233
210
|
/**
|
|
234
|
-
* @
|
|
235
|
-
* Creates a subscription definition. You may provide the initial version of the subscription definition now or use ''CreateSubscriptionDefinitionVersion'' at a later time.
|
|
211
|
+
* @see {@link CreateSubscriptionDefinitionCommand}
|
|
236
212
|
*/
|
|
237
213
|
createSubscriptionDefinition(args: CreateSubscriptionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubscriptionDefinitionCommandOutput>;
|
|
238
214
|
createSubscriptionDefinition(args: CreateSubscriptionDefinitionCommandInput, cb: (err: any, data?: CreateSubscriptionDefinitionCommandOutput) => void): void;
|
|
239
215
|
createSubscriptionDefinition(args: CreateSubscriptionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubscriptionDefinitionCommandOutput) => void): void;
|
|
240
216
|
/**
|
|
241
|
-
* @
|
|
242
|
-
* Creates a version of a subscription definition which has already been defined.
|
|
217
|
+
* @see {@link CreateSubscriptionDefinitionVersionCommand}
|
|
243
218
|
*/
|
|
244
219
|
createSubscriptionDefinitionVersion(args: CreateSubscriptionDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateSubscriptionDefinitionVersionCommandOutput>;
|
|
245
220
|
createSubscriptionDefinitionVersion(args: CreateSubscriptionDefinitionVersionCommandInput, cb: (err: any, data?: CreateSubscriptionDefinitionVersionCommandOutput) => void): void;
|
|
246
221
|
createSubscriptionDefinitionVersion(args: CreateSubscriptionDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSubscriptionDefinitionVersionCommandOutput) => void): void;
|
|
247
222
|
/**
|
|
248
|
-
* @
|
|
249
|
-
* Deletes a connector definition.
|
|
223
|
+
* @see {@link DeleteConnectorDefinitionCommand}
|
|
250
224
|
*/
|
|
251
225
|
deleteConnectorDefinition(args: DeleteConnectorDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorDefinitionCommandOutput>;
|
|
252
226
|
deleteConnectorDefinition(args: DeleteConnectorDefinitionCommandInput, cb: (err: any, data?: DeleteConnectorDefinitionCommandOutput) => void): void;
|
|
253
227
|
deleteConnectorDefinition(args: DeleteConnectorDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorDefinitionCommandOutput) => void): void;
|
|
254
228
|
/**
|
|
255
|
-
* @
|
|
256
|
-
* Deletes a core definition.
|
|
229
|
+
* @see {@link DeleteCoreDefinitionCommand}
|
|
257
230
|
*/
|
|
258
231
|
deleteCoreDefinition(args: DeleteCoreDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteCoreDefinitionCommandOutput>;
|
|
259
232
|
deleteCoreDefinition(args: DeleteCoreDefinitionCommandInput, cb: (err: any, data?: DeleteCoreDefinitionCommandOutput) => void): void;
|
|
260
233
|
deleteCoreDefinition(args: DeleteCoreDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCoreDefinitionCommandOutput) => void): void;
|
|
261
234
|
/**
|
|
262
|
-
* @
|
|
263
|
-
* Deletes a device definition.
|
|
235
|
+
* @see {@link DeleteDeviceDefinitionCommand}
|
|
264
236
|
*/
|
|
265
237
|
deleteDeviceDefinition(args: DeleteDeviceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDeviceDefinitionCommandOutput>;
|
|
266
238
|
deleteDeviceDefinition(args: DeleteDeviceDefinitionCommandInput, cb: (err: any, data?: DeleteDeviceDefinitionCommandOutput) => void): void;
|
|
267
239
|
deleteDeviceDefinition(args: DeleteDeviceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDeviceDefinitionCommandOutput) => void): void;
|
|
268
240
|
/**
|
|
269
|
-
* @
|
|
270
|
-
* Deletes a Lambda function definition.
|
|
241
|
+
* @see {@link DeleteFunctionDefinitionCommand}
|
|
271
242
|
*/
|
|
272
243
|
deleteFunctionDefinition(args: DeleteFunctionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFunctionDefinitionCommandOutput>;
|
|
273
244
|
deleteFunctionDefinition(args: DeleteFunctionDefinitionCommandInput, cb: (err: any, data?: DeleteFunctionDefinitionCommandOutput) => void): void;
|
|
274
245
|
deleteFunctionDefinition(args: DeleteFunctionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFunctionDefinitionCommandOutput) => void): void;
|
|
275
246
|
/**
|
|
276
|
-
* @
|
|
277
|
-
* Deletes a group.
|
|
247
|
+
* @see {@link DeleteGroupCommand}
|
|
278
248
|
*/
|
|
279
249
|
deleteGroup(args: DeleteGroupCommandInput, options?: __HttpHandlerOptions): Promise<DeleteGroupCommandOutput>;
|
|
280
250
|
deleteGroup(args: DeleteGroupCommandInput, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
281
251
|
deleteGroup(args: DeleteGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteGroupCommandOutput) => void): void;
|
|
282
252
|
/**
|
|
283
|
-
* @
|
|
284
|
-
* Deletes a logger definition.
|
|
253
|
+
* @see {@link DeleteLoggerDefinitionCommand}
|
|
285
254
|
*/
|
|
286
255
|
deleteLoggerDefinition(args: DeleteLoggerDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteLoggerDefinitionCommandOutput>;
|
|
287
256
|
deleteLoggerDefinition(args: DeleteLoggerDefinitionCommandInput, cb: (err: any, data?: DeleteLoggerDefinitionCommandOutput) => void): void;
|
|
288
257
|
deleteLoggerDefinition(args: DeleteLoggerDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteLoggerDefinitionCommandOutput) => void): void;
|
|
289
258
|
/**
|
|
290
|
-
* @
|
|
291
|
-
* Deletes a resource definition.
|
|
259
|
+
* @see {@link DeleteResourceDefinitionCommand}
|
|
292
260
|
*/
|
|
293
261
|
deleteResourceDefinition(args: DeleteResourceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceDefinitionCommandOutput>;
|
|
294
262
|
deleteResourceDefinition(args: DeleteResourceDefinitionCommandInput, cb: (err: any, data?: DeleteResourceDefinitionCommandOutput) => void): void;
|
|
295
263
|
deleteResourceDefinition(args: DeleteResourceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceDefinitionCommandOutput) => void): void;
|
|
296
264
|
/**
|
|
297
|
-
* @
|
|
298
|
-
* Deletes a subscription definition.
|
|
265
|
+
* @see {@link DeleteSubscriptionDefinitionCommand}
|
|
299
266
|
*/
|
|
300
267
|
deleteSubscriptionDefinition(args: DeleteSubscriptionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSubscriptionDefinitionCommandOutput>;
|
|
301
268
|
deleteSubscriptionDefinition(args: DeleteSubscriptionDefinitionCommandInput, cb: (err: any, data?: DeleteSubscriptionDefinitionCommandOutput) => void): void;
|
|
302
269
|
deleteSubscriptionDefinition(args: DeleteSubscriptionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSubscriptionDefinitionCommandOutput) => void): void;
|
|
303
270
|
/**
|
|
304
|
-
* @
|
|
305
|
-
* Disassociates the role from a group.
|
|
271
|
+
* @see {@link DisassociateRoleFromGroupCommand}
|
|
306
272
|
*/
|
|
307
273
|
disassociateRoleFromGroup(args: DisassociateRoleFromGroupCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateRoleFromGroupCommandOutput>;
|
|
308
274
|
disassociateRoleFromGroup(args: DisassociateRoleFromGroupCommandInput, cb: (err: any, data?: DisassociateRoleFromGroupCommandOutput) => void): void;
|
|
309
275
|
disassociateRoleFromGroup(args: DisassociateRoleFromGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateRoleFromGroupCommandOutput) => void): void;
|
|
310
276
|
/**
|
|
311
|
-
* @
|
|
312
|
-
* Disassociates the service role from your account. Without a service role, deployments will not work.
|
|
277
|
+
* @see {@link DisassociateServiceRoleFromAccountCommand}
|
|
313
278
|
*/
|
|
314
279
|
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, options?: __HttpHandlerOptions): Promise<DisassociateServiceRoleFromAccountCommandOutput>;
|
|
315
280
|
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
|
|
316
281
|
disassociateServiceRoleFromAccount(args: DisassociateServiceRoleFromAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisassociateServiceRoleFromAccountCommandOutput) => void): void;
|
|
317
282
|
/**
|
|
318
|
-
* @
|
|
319
|
-
* Retrieves the role associated with a particular group.
|
|
283
|
+
* @see {@link GetAssociatedRoleCommand}
|
|
320
284
|
*/
|
|
321
285
|
getAssociatedRole(args: GetAssociatedRoleCommandInput, options?: __HttpHandlerOptions): Promise<GetAssociatedRoleCommandOutput>;
|
|
322
286
|
getAssociatedRole(args: GetAssociatedRoleCommandInput, cb: (err: any, data?: GetAssociatedRoleCommandOutput) => void): void;
|
|
323
287
|
getAssociatedRole(args: GetAssociatedRoleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAssociatedRoleCommandOutput) => void): void;
|
|
324
288
|
/**
|
|
325
|
-
* @
|
|
326
|
-
* Returns the status of a bulk deployment.
|
|
289
|
+
* @see {@link GetBulkDeploymentStatusCommand}
|
|
327
290
|
*/
|
|
328
291
|
getBulkDeploymentStatus(args: GetBulkDeploymentStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetBulkDeploymentStatusCommandOutput>;
|
|
329
292
|
getBulkDeploymentStatus(args: GetBulkDeploymentStatusCommandInput, cb: (err: any, data?: GetBulkDeploymentStatusCommandOutput) => void): void;
|
|
330
293
|
getBulkDeploymentStatus(args: GetBulkDeploymentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetBulkDeploymentStatusCommandOutput) => void): void;
|
|
331
294
|
/**
|
|
332
|
-
* @
|
|
333
|
-
* Retrieves the connectivity information for a core.
|
|
295
|
+
* @see {@link GetConnectivityInfoCommand}
|
|
334
296
|
*/
|
|
335
297
|
getConnectivityInfo(args: GetConnectivityInfoCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectivityInfoCommandOutput>;
|
|
336
298
|
getConnectivityInfo(args: GetConnectivityInfoCommandInput, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
|
|
337
299
|
getConnectivityInfo(args: GetConnectivityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectivityInfoCommandOutput) => void): void;
|
|
338
300
|
/**
|
|
339
|
-
* @
|
|
340
|
-
* Retrieves information about a connector definition.
|
|
301
|
+
* @see {@link GetConnectorDefinitionCommand}
|
|
341
302
|
*/
|
|
342
303
|
getConnectorDefinition(args: GetConnectorDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectorDefinitionCommandOutput>;
|
|
343
304
|
getConnectorDefinition(args: GetConnectorDefinitionCommandInput, cb: (err: any, data?: GetConnectorDefinitionCommandOutput) => void): void;
|
|
344
305
|
getConnectorDefinition(args: GetConnectorDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectorDefinitionCommandOutput) => void): void;
|
|
345
306
|
/**
|
|
346
|
-
* @
|
|
347
|
-
* Retrieves information about a connector definition version, including the connectors that the version contains. Connectors are prebuilt modules that interact with local infrastructure, device protocols, AWS, and other cloud services.
|
|
307
|
+
* @see {@link GetConnectorDefinitionVersionCommand}
|
|
348
308
|
*/
|
|
349
309
|
getConnectorDefinitionVersion(args: GetConnectorDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetConnectorDefinitionVersionCommandOutput>;
|
|
350
310
|
getConnectorDefinitionVersion(args: GetConnectorDefinitionVersionCommandInput, cb: (err: any, data?: GetConnectorDefinitionVersionCommandOutput) => void): void;
|
|
351
311
|
getConnectorDefinitionVersion(args: GetConnectorDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetConnectorDefinitionVersionCommandOutput) => void): void;
|
|
352
312
|
/**
|
|
353
|
-
* @
|
|
354
|
-
* Retrieves information about a core definition version.
|
|
313
|
+
* @see {@link GetCoreDefinitionCommand}
|
|
355
314
|
*/
|
|
356
315
|
getCoreDefinition(args: GetCoreDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetCoreDefinitionCommandOutput>;
|
|
357
316
|
getCoreDefinition(args: GetCoreDefinitionCommandInput, cb: (err: any, data?: GetCoreDefinitionCommandOutput) => void): void;
|
|
358
317
|
getCoreDefinition(args: GetCoreDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCoreDefinitionCommandOutput) => void): void;
|
|
359
318
|
/**
|
|
360
|
-
* @
|
|
361
|
-
* Retrieves information about a core definition version.
|
|
319
|
+
* @see {@link GetCoreDefinitionVersionCommand}
|
|
362
320
|
*/
|
|
363
321
|
getCoreDefinitionVersion(args: GetCoreDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetCoreDefinitionVersionCommandOutput>;
|
|
364
322
|
getCoreDefinitionVersion(args: GetCoreDefinitionVersionCommandInput, cb: (err: any, data?: GetCoreDefinitionVersionCommandOutput) => void): void;
|
|
365
323
|
getCoreDefinitionVersion(args: GetCoreDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetCoreDefinitionVersionCommandOutput) => void): void;
|
|
366
324
|
/**
|
|
367
|
-
* @
|
|
368
|
-
* Returns the status of a deployment.
|
|
325
|
+
* @see {@link GetDeploymentStatusCommand}
|
|
369
326
|
*/
|
|
370
327
|
getDeploymentStatus(args: GetDeploymentStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetDeploymentStatusCommandOutput>;
|
|
371
328
|
getDeploymentStatus(args: GetDeploymentStatusCommandInput, cb: (err: any, data?: GetDeploymentStatusCommandOutput) => void): void;
|
|
372
329
|
getDeploymentStatus(args: GetDeploymentStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentStatusCommandOutput) => void): void;
|
|
373
330
|
/**
|
|
374
|
-
* @
|
|
375
|
-
* Retrieves information about a device definition.
|
|
331
|
+
* @see {@link GetDeviceDefinitionCommand}
|
|
376
332
|
*/
|
|
377
333
|
getDeviceDefinition(args: GetDeviceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceDefinitionCommandOutput>;
|
|
378
334
|
getDeviceDefinition(args: GetDeviceDefinitionCommandInput, cb: (err: any, data?: GetDeviceDefinitionCommandOutput) => void): void;
|
|
379
335
|
getDeviceDefinition(args: GetDeviceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceDefinitionCommandOutput) => void): void;
|
|
380
336
|
/**
|
|
381
|
-
* @
|
|
382
|
-
* Retrieves information about a device definition version.
|
|
337
|
+
* @see {@link GetDeviceDefinitionVersionCommand}
|
|
383
338
|
*/
|
|
384
339
|
getDeviceDefinitionVersion(args: GetDeviceDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetDeviceDefinitionVersionCommandOutput>;
|
|
385
340
|
getDeviceDefinitionVersion(args: GetDeviceDefinitionVersionCommandInput, cb: (err: any, data?: GetDeviceDefinitionVersionCommandOutput) => void): void;
|
|
386
341
|
getDeviceDefinitionVersion(args: GetDeviceDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeviceDefinitionVersionCommandOutput) => void): void;
|
|
387
342
|
/**
|
|
388
|
-
* @
|
|
389
|
-
* Retrieves information about a Lambda function definition, including its creation time and latest version.
|
|
343
|
+
* @see {@link GetFunctionDefinitionCommand}
|
|
390
344
|
*/
|
|
391
345
|
getFunctionDefinition(args: GetFunctionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionDefinitionCommandOutput>;
|
|
392
346
|
getFunctionDefinition(args: GetFunctionDefinitionCommandInput, cb: (err: any, data?: GetFunctionDefinitionCommandOutput) => void): void;
|
|
393
347
|
getFunctionDefinition(args: GetFunctionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionDefinitionCommandOutput) => void): void;
|
|
394
348
|
/**
|
|
395
|
-
* @
|
|
396
|
-
* Retrieves information about a Lambda function definition version, including which Lambda functions are included in the version and their configurations.
|
|
349
|
+
* @see {@link GetFunctionDefinitionVersionCommand}
|
|
397
350
|
*/
|
|
398
351
|
getFunctionDefinitionVersion(args: GetFunctionDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetFunctionDefinitionVersionCommandOutput>;
|
|
399
352
|
getFunctionDefinitionVersion(args: GetFunctionDefinitionVersionCommandInput, cb: (err: any, data?: GetFunctionDefinitionVersionCommandOutput) => void): void;
|
|
400
353
|
getFunctionDefinitionVersion(args: GetFunctionDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetFunctionDefinitionVersionCommandOutput) => void): void;
|
|
401
354
|
/**
|
|
402
|
-
* @
|
|
403
|
-
* Retrieves information about a group.
|
|
355
|
+
* @see {@link GetGroupCommand}
|
|
404
356
|
*/
|
|
405
357
|
getGroup(args: GetGroupCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupCommandOutput>;
|
|
406
358
|
getGroup(args: GetGroupCommandInput, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
407
359
|
getGroup(args: GetGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCommandOutput) => void): void;
|
|
408
360
|
/**
|
|
409
|
-
* @
|
|
410
|
-
* Retreives the CA associated with a group. Returns the public key of the CA.
|
|
361
|
+
* @see {@link GetGroupCertificateAuthorityCommand}
|
|
411
362
|
*/
|
|
412
363
|
getGroupCertificateAuthority(args: GetGroupCertificateAuthorityCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupCertificateAuthorityCommandOutput>;
|
|
413
364
|
getGroupCertificateAuthority(args: GetGroupCertificateAuthorityCommandInput, cb: (err: any, data?: GetGroupCertificateAuthorityCommandOutput) => void): void;
|
|
414
365
|
getGroupCertificateAuthority(args: GetGroupCertificateAuthorityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCertificateAuthorityCommandOutput) => void): void;
|
|
415
366
|
/**
|
|
416
|
-
* @
|
|
417
|
-
* Retrieves the current configuration for the CA used by the group.
|
|
367
|
+
* @see {@link GetGroupCertificateConfigurationCommand}
|
|
418
368
|
*/
|
|
419
369
|
getGroupCertificateConfiguration(args: GetGroupCertificateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupCertificateConfigurationCommandOutput>;
|
|
420
370
|
getGroupCertificateConfiguration(args: GetGroupCertificateConfigurationCommandInput, cb: (err: any, data?: GetGroupCertificateConfigurationCommandOutput) => void): void;
|
|
421
371
|
getGroupCertificateConfiguration(args: GetGroupCertificateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupCertificateConfigurationCommandOutput) => void): void;
|
|
422
372
|
/**
|
|
423
|
-
* @
|
|
424
|
-
* Retrieves information about a group version.
|
|
373
|
+
* @see {@link GetGroupVersionCommand}
|
|
425
374
|
*/
|
|
426
375
|
getGroupVersion(args: GetGroupVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetGroupVersionCommandOutput>;
|
|
427
376
|
getGroupVersion(args: GetGroupVersionCommandInput, cb: (err: any, data?: GetGroupVersionCommandOutput) => void): void;
|
|
428
377
|
getGroupVersion(args: GetGroupVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetGroupVersionCommandOutput) => void): void;
|
|
429
378
|
/**
|
|
430
|
-
* @
|
|
431
|
-
* Retrieves information about a logger definition.
|
|
379
|
+
* @see {@link GetLoggerDefinitionCommand}
|
|
432
380
|
*/
|
|
433
381
|
getLoggerDefinition(args: GetLoggerDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetLoggerDefinitionCommandOutput>;
|
|
434
382
|
getLoggerDefinition(args: GetLoggerDefinitionCommandInput, cb: (err: any, data?: GetLoggerDefinitionCommandOutput) => void): void;
|
|
435
383
|
getLoggerDefinition(args: GetLoggerDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLoggerDefinitionCommandOutput) => void): void;
|
|
436
384
|
/**
|
|
437
|
-
* @
|
|
438
|
-
* Retrieves information about a logger definition version.
|
|
385
|
+
* @see {@link GetLoggerDefinitionVersionCommand}
|
|
439
386
|
*/
|
|
440
387
|
getLoggerDefinitionVersion(args: GetLoggerDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetLoggerDefinitionVersionCommandOutput>;
|
|
441
388
|
getLoggerDefinitionVersion(args: GetLoggerDefinitionVersionCommandInput, cb: (err: any, data?: GetLoggerDefinitionVersionCommandOutput) => void): void;
|
|
442
389
|
getLoggerDefinitionVersion(args: GetLoggerDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetLoggerDefinitionVersionCommandOutput) => void): void;
|
|
443
390
|
/**
|
|
444
|
-
* @
|
|
445
|
-
* Retrieves information about a resource definition, including its creation time and latest version.
|
|
391
|
+
* @see {@link GetResourceDefinitionCommand}
|
|
446
392
|
*/
|
|
447
393
|
getResourceDefinition(args: GetResourceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceDefinitionCommandOutput>;
|
|
448
394
|
getResourceDefinition(args: GetResourceDefinitionCommandInput, cb: (err: any, data?: GetResourceDefinitionCommandOutput) => void): void;
|
|
449
395
|
getResourceDefinition(args: GetResourceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceDefinitionCommandOutput) => void): void;
|
|
450
396
|
/**
|
|
451
|
-
* @
|
|
452
|
-
* Retrieves information about a resource definition version, including which resources are included in the version.
|
|
397
|
+
* @see {@link GetResourceDefinitionVersionCommand}
|
|
453
398
|
*/
|
|
454
399
|
getResourceDefinitionVersion(args: GetResourceDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceDefinitionVersionCommandOutput>;
|
|
455
400
|
getResourceDefinitionVersion(args: GetResourceDefinitionVersionCommandInput, cb: (err: any, data?: GetResourceDefinitionVersionCommandOutput) => void): void;
|
|
456
401
|
getResourceDefinitionVersion(args: GetResourceDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceDefinitionVersionCommandOutput) => void): void;
|
|
457
402
|
/**
|
|
458
|
-
* @
|
|
459
|
-
* Retrieves the service role that is attached to your account.
|
|
403
|
+
* @see {@link GetServiceRoleForAccountCommand}
|
|
460
404
|
*/
|
|
461
405
|
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, options?: __HttpHandlerOptions): Promise<GetServiceRoleForAccountCommandOutput>;
|
|
462
406
|
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
|
|
463
407
|
getServiceRoleForAccount(args: GetServiceRoleForAccountCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetServiceRoleForAccountCommandOutput) => void): void;
|
|
464
408
|
/**
|
|
465
|
-
* @
|
|
466
|
-
* Retrieves information about a subscription definition.
|
|
409
|
+
* @see {@link GetSubscriptionDefinitionCommand}
|
|
467
410
|
*/
|
|
468
411
|
getSubscriptionDefinition(args: GetSubscriptionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetSubscriptionDefinitionCommandOutput>;
|
|
469
412
|
getSubscriptionDefinition(args: GetSubscriptionDefinitionCommandInput, cb: (err: any, data?: GetSubscriptionDefinitionCommandOutput) => void): void;
|
|
470
413
|
getSubscriptionDefinition(args: GetSubscriptionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSubscriptionDefinitionCommandOutput) => void): void;
|
|
471
414
|
/**
|
|
472
|
-
* @
|
|
473
|
-
* Retrieves information about a subscription definition version.
|
|
415
|
+
* @see {@link GetSubscriptionDefinitionVersionCommand}
|
|
474
416
|
*/
|
|
475
417
|
getSubscriptionDefinitionVersion(args: GetSubscriptionDefinitionVersionCommandInput, options?: __HttpHandlerOptions): Promise<GetSubscriptionDefinitionVersionCommandOutput>;
|
|
476
418
|
getSubscriptionDefinitionVersion(args: GetSubscriptionDefinitionVersionCommandInput, cb: (err: any, data?: GetSubscriptionDefinitionVersionCommandOutput) => void): void;
|
|
477
419
|
getSubscriptionDefinitionVersion(args: GetSubscriptionDefinitionVersionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSubscriptionDefinitionVersionCommandOutput) => void): void;
|
|
478
420
|
/**
|
|
479
|
-
* @
|
|
480
|
-
* Get the runtime configuration of a thing.
|
|
421
|
+
* @see {@link GetThingRuntimeConfigurationCommand}
|
|
481
422
|
*/
|
|
482
423
|
getThingRuntimeConfiguration(args: GetThingRuntimeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetThingRuntimeConfigurationCommandOutput>;
|
|
483
424
|
getThingRuntimeConfiguration(args: GetThingRuntimeConfigurationCommandInput, cb: (err: any, data?: GetThingRuntimeConfigurationCommandOutput) => void): void;
|
|
484
425
|
getThingRuntimeConfiguration(args: GetThingRuntimeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThingRuntimeConfigurationCommandOutput) => void): void;
|
|
485
426
|
/**
|
|
486
|
-
* @
|
|
487
|
-
* Gets a paginated list of the deployments that have been started in a bulk deployment operation, and their current deployment status.
|
|
427
|
+
* @see {@link ListBulkDeploymentDetailedReportsCommand}
|
|
488
428
|
*/
|
|
489
429
|
listBulkDeploymentDetailedReports(args: ListBulkDeploymentDetailedReportsCommandInput, options?: __HttpHandlerOptions): Promise<ListBulkDeploymentDetailedReportsCommandOutput>;
|
|
490
430
|
listBulkDeploymentDetailedReports(args: ListBulkDeploymentDetailedReportsCommandInput, cb: (err: any, data?: ListBulkDeploymentDetailedReportsCommandOutput) => void): void;
|
|
491
431
|
listBulkDeploymentDetailedReports(args: ListBulkDeploymentDetailedReportsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBulkDeploymentDetailedReportsCommandOutput) => void): void;
|
|
492
432
|
/**
|
|
493
|
-
* @
|
|
494
|
-
* Returns a list of bulk deployments.
|
|
433
|
+
* @see {@link ListBulkDeploymentsCommand}
|
|
495
434
|
*/
|
|
496
435
|
listBulkDeployments(args: ListBulkDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListBulkDeploymentsCommandOutput>;
|
|
497
436
|
listBulkDeployments(args: ListBulkDeploymentsCommandInput, cb: (err: any, data?: ListBulkDeploymentsCommandOutput) => void): void;
|
|
498
437
|
listBulkDeployments(args: ListBulkDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListBulkDeploymentsCommandOutput) => void): void;
|
|
499
438
|
/**
|
|
500
|
-
* @
|
|
501
|
-
* Retrieves a list of connector definitions.
|
|
439
|
+
* @see {@link ListConnectorDefinitionsCommand}
|
|
502
440
|
*/
|
|
503
441
|
listConnectorDefinitions(args: ListConnectorDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorDefinitionsCommandOutput>;
|
|
504
442
|
listConnectorDefinitions(args: ListConnectorDefinitionsCommandInput, cb: (err: any, data?: ListConnectorDefinitionsCommandOutput) => void): void;
|
|
505
443
|
listConnectorDefinitions(args: ListConnectorDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorDefinitionsCommandOutput) => void): void;
|
|
506
444
|
/**
|
|
507
|
-
* @
|
|
508
|
-
* Lists the versions of a connector definition, which are containers for connectors. Connectors run on the Greengrass core and contain built-in integration with local infrastructure, device protocols, AWS, and other cloud services.
|
|
445
|
+
* @see {@link ListConnectorDefinitionVersionsCommand}
|
|
509
446
|
*/
|
|
510
447
|
listConnectorDefinitionVersions(args: ListConnectorDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorDefinitionVersionsCommandOutput>;
|
|
511
448
|
listConnectorDefinitionVersions(args: ListConnectorDefinitionVersionsCommandInput, cb: (err: any, data?: ListConnectorDefinitionVersionsCommandOutput) => void): void;
|
|
512
449
|
listConnectorDefinitionVersions(args: ListConnectorDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorDefinitionVersionsCommandOutput) => void): void;
|
|
513
450
|
/**
|
|
514
|
-
* @
|
|
515
|
-
* Retrieves a list of core definitions.
|
|
451
|
+
* @see {@link ListCoreDefinitionsCommand}
|
|
516
452
|
*/
|
|
517
453
|
listCoreDefinitions(args: ListCoreDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreDefinitionsCommandOutput>;
|
|
518
454
|
listCoreDefinitions(args: ListCoreDefinitionsCommandInput, cb: (err: any, data?: ListCoreDefinitionsCommandOutput) => void): void;
|
|
519
455
|
listCoreDefinitions(args: ListCoreDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreDefinitionsCommandOutput) => void): void;
|
|
520
456
|
/**
|
|
521
|
-
* @
|
|
522
|
-
* Lists the versions of a core definition.
|
|
457
|
+
* @see {@link ListCoreDefinitionVersionsCommand}
|
|
523
458
|
*/
|
|
524
459
|
listCoreDefinitionVersions(args: ListCoreDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListCoreDefinitionVersionsCommandOutput>;
|
|
525
460
|
listCoreDefinitionVersions(args: ListCoreDefinitionVersionsCommandInput, cb: (err: any, data?: ListCoreDefinitionVersionsCommandOutput) => void): void;
|
|
526
461
|
listCoreDefinitionVersions(args: ListCoreDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListCoreDefinitionVersionsCommandOutput) => void): void;
|
|
527
462
|
/**
|
|
528
|
-
* @
|
|
529
|
-
* Returns a history of deployments for the group.
|
|
463
|
+
* @see {@link ListDeploymentsCommand}
|
|
530
464
|
*/
|
|
531
465
|
listDeployments(args: ListDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeploymentsCommandOutput>;
|
|
532
466
|
listDeployments(args: ListDeploymentsCommandInput, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
533
467
|
listDeployments(args: ListDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeploymentsCommandOutput) => void): void;
|
|
534
468
|
/**
|
|
535
|
-
* @
|
|
536
|
-
* Retrieves a list of device definitions.
|
|
469
|
+
* @see {@link ListDeviceDefinitionsCommand}
|
|
537
470
|
*/
|
|
538
471
|
listDeviceDefinitions(args: ListDeviceDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceDefinitionsCommandOutput>;
|
|
539
472
|
listDeviceDefinitions(args: ListDeviceDefinitionsCommandInput, cb: (err: any, data?: ListDeviceDefinitionsCommandOutput) => void): void;
|
|
540
473
|
listDeviceDefinitions(args: ListDeviceDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceDefinitionsCommandOutput) => void): void;
|
|
541
474
|
/**
|
|
542
|
-
* @
|
|
543
|
-
* Lists the versions of a device definition.
|
|
475
|
+
* @see {@link ListDeviceDefinitionVersionsCommand}
|
|
544
476
|
*/
|
|
545
477
|
listDeviceDefinitionVersions(args: ListDeviceDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeviceDefinitionVersionsCommandOutput>;
|
|
546
478
|
listDeviceDefinitionVersions(args: ListDeviceDefinitionVersionsCommandInput, cb: (err: any, data?: ListDeviceDefinitionVersionsCommandOutput) => void): void;
|
|
547
479
|
listDeviceDefinitionVersions(args: ListDeviceDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeviceDefinitionVersionsCommandOutput) => void): void;
|
|
548
480
|
/**
|
|
549
|
-
* @
|
|
550
|
-
* Retrieves a list of Lambda function definitions.
|
|
481
|
+
* @see {@link ListFunctionDefinitionsCommand}
|
|
551
482
|
*/
|
|
552
483
|
listFunctionDefinitions(args: ListFunctionDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionDefinitionsCommandOutput>;
|
|
553
484
|
listFunctionDefinitions(args: ListFunctionDefinitionsCommandInput, cb: (err: any, data?: ListFunctionDefinitionsCommandOutput) => void): void;
|
|
554
485
|
listFunctionDefinitions(args: ListFunctionDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionDefinitionsCommandOutput) => void): void;
|
|
555
486
|
/**
|
|
556
|
-
* @
|
|
557
|
-
* Lists the versions of a Lambda function definition.
|
|
487
|
+
* @see {@link ListFunctionDefinitionVersionsCommand}
|
|
558
488
|
*/
|
|
559
489
|
listFunctionDefinitionVersions(args: ListFunctionDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListFunctionDefinitionVersionsCommandOutput>;
|
|
560
490
|
listFunctionDefinitionVersions(args: ListFunctionDefinitionVersionsCommandInput, cb: (err: any, data?: ListFunctionDefinitionVersionsCommandOutput) => void): void;
|
|
561
491
|
listFunctionDefinitionVersions(args: ListFunctionDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFunctionDefinitionVersionsCommandOutput) => void): void;
|
|
562
492
|
/**
|
|
563
|
-
* @
|
|
564
|
-
* Retrieves the current CAs for a group.
|
|
493
|
+
* @see {@link ListGroupCertificateAuthoritiesCommand}
|
|
565
494
|
*/
|
|
566
495
|
listGroupCertificateAuthorities(args: ListGroupCertificateAuthoritiesCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupCertificateAuthoritiesCommandOutput>;
|
|
567
496
|
listGroupCertificateAuthorities(args: ListGroupCertificateAuthoritiesCommandInput, cb: (err: any, data?: ListGroupCertificateAuthoritiesCommandOutput) => void): void;
|
|
568
497
|
listGroupCertificateAuthorities(args: ListGroupCertificateAuthoritiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupCertificateAuthoritiesCommandOutput) => void): void;
|
|
569
498
|
/**
|
|
570
|
-
* @
|
|
571
|
-
* Retrieves a list of groups.
|
|
499
|
+
* @see {@link ListGroupsCommand}
|
|
572
500
|
*/
|
|
573
501
|
listGroups(args: ListGroupsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupsCommandOutput>;
|
|
574
502
|
listGroups(args: ListGroupsCommandInput, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
575
503
|
listGroups(args: ListGroupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupsCommandOutput) => void): void;
|
|
576
504
|
/**
|
|
577
|
-
* @
|
|
578
|
-
* Lists the versions of a group.
|
|
505
|
+
* @see {@link ListGroupVersionsCommand}
|
|
579
506
|
*/
|
|
580
507
|
listGroupVersions(args: ListGroupVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListGroupVersionsCommandOutput>;
|
|
581
508
|
listGroupVersions(args: ListGroupVersionsCommandInput, cb: (err: any, data?: ListGroupVersionsCommandOutput) => void): void;
|
|
582
509
|
listGroupVersions(args: ListGroupVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListGroupVersionsCommandOutput) => void): void;
|
|
583
510
|
/**
|
|
584
|
-
* @
|
|
585
|
-
* Retrieves a list of logger definitions.
|
|
511
|
+
* @see {@link ListLoggerDefinitionsCommand}
|
|
586
512
|
*/
|
|
587
513
|
listLoggerDefinitions(args: ListLoggerDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLoggerDefinitionsCommandOutput>;
|
|
588
514
|
listLoggerDefinitions(args: ListLoggerDefinitionsCommandInput, cb: (err: any, data?: ListLoggerDefinitionsCommandOutput) => void): void;
|
|
589
515
|
listLoggerDefinitions(args: ListLoggerDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLoggerDefinitionsCommandOutput) => void): void;
|
|
590
516
|
/**
|
|
591
|
-
* @
|
|
592
|
-
* Lists the versions of a logger definition.
|
|
517
|
+
* @see {@link ListLoggerDefinitionVersionsCommand}
|
|
593
518
|
*/
|
|
594
519
|
listLoggerDefinitionVersions(args: ListLoggerDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListLoggerDefinitionVersionsCommandOutput>;
|
|
595
520
|
listLoggerDefinitionVersions(args: ListLoggerDefinitionVersionsCommandInput, cb: (err: any, data?: ListLoggerDefinitionVersionsCommandOutput) => void): void;
|
|
596
521
|
listLoggerDefinitionVersions(args: ListLoggerDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListLoggerDefinitionVersionsCommandOutput) => void): void;
|
|
597
522
|
/**
|
|
598
|
-
* @
|
|
599
|
-
* Retrieves a list of resource definitions.
|
|
523
|
+
* @see {@link ListResourceDefinitionsCommand}
|
|
600
524
|
*/
|
|
601
525
|
listResourceDefinitions(args: ListResourceDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceDefinitionsCommandOutput>;
|
|
602
526
|
listResourceDefinitions(args: ListResourceDefinitionsCommandInput, cb: (err: any, data?: ListResourceDefinitionsCommandOutput) => void): void;
|
|
603
527
|
listResourceDefinitions(args: ListResourceDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceDefinitionsCommandOutput) => void): void;
|
|
604
528
|
/**
|
|
605
|
-
* @
|
|
606
|
-
* Lists the versions of a resource definition.
|
|
529
|
+
* @see {@link ListResourceDefinitionVersionsCommand}
|
|
607
530
|
*/
|
|
608
531
|
listResourceDefinitionVersions(args: ListResourceDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceDefinitionVersionsCommandOutput>;
|
|
609
532
|
listResourceDefinitionVersions(args: ListResourceDefinitionVersionsCommandInput, cb: (err: any, data?: ListResourceDefinitionVersionsCommandOutput) => void): void;
|
|
610
533
|
listResourceDefinitionVersions(args: ListResourceDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceDefinitionVersionsCommandOutput) => void): void;
|
|
611
534
|
/**
|
|
612
|
-
* @
|
|
613
|
-
* Retrieves a list of subscription definitions.
|
|
535
|
+
* @see {@link ListSubscriptionDefinitionsCommand}
|
|
614
536
|
*/
|
|
615
537
|
listSubscriptionDefinitions(args: ListSubscriptionDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSubscriptionDefinitionsCommandOutput>;
|
|
616
538
|
listSubscriptionDefinitions(args: ListSubscriptionDefinitionsCommandInput, cb: (err: any, data?: ListSubscriptionDefinitionsCommandOutput) => void): void;
|
|
617
539
|
listSubscriptionDefinitions(args: ListSubscriptionDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSubscriptionDefinitionsCommandOutput) => void): void;
|
|
618
540
|
/**
|
|
619
|
-
* @
|
|
620
|
-
* Lists the versions of a subscription definition.
|
|
541
|
+
* @see {@link ListSubscriptionDefinitionVersionsCommand}
|
|
621
542
|
*/
|
|
622
543
|
listSubscriptionDefinitionVersions(args: ListSubscriptionDefinitionVersionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSubscriptionDefinitionVersionsCommandOutput>;
|
|
623
544
|
listSubscriptionDefinitionVersions(args: ListSubscriptionDefinitionVersionsCommandInput, cb: (err: any, data?: ListSubscriptionDefinitionVersionsCommandOutput) => void): void;
|
|
624
545
|
listSubscriptionDefinitionVersions(args: ListSubscriptionDefinitionVersionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSubscriptionDefinitionVersionsCommandOutput) => void): void;
|
|
625
546
|
/**
|
|
626
|
-
* @
|
|
627
|
-
* Retrieves a list of resource tags for a resource arn.
|
|
547
|
+
* @see {@link ListTagsForResourceCommand}
|
|
628
548
|
*/
|
|
629
549
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
630
550
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
631
551
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
632
552
|
/**
|
|
633
|
-
* @
|
|
634
|
-
* Resets a group's deployments.
|
|
553
|
+
* @see {@link ResetDeploymentsCommand}
|
|
635
554
|
*/
|
|
636
555
|
resetDeployments(args: ResetDeploymentsCommandInput, options?: __HttpHandlerOptions): Promise<ResetDeploymentsCommandOutput>;
|
|
637
556
|
resetDeployments(args: ResetDeploymentsCommandInput, cb: (err: any, data?: ResetDeploymentsCommandOutput) => void): void;
|
|
638
557
|
resetDeployments(args: ResetDeploymentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ResetDeploymentsCommandOutput) => void): void;
|
|
639
558
|
/**
|
|
640
|
-
* @
|
|
641
|
-
* Deploys multiple groups in one operation. This action starts the bulk deployment of a specified set of group versions. Each group version deployment will be triggered with an adaptive rate that has a fixed upper limit. We recommend that you include an ''X-Amzn-Client-Token'' token in every ''StartBulkDeployment'' request. These requests are idempotent with respect to the token and the request parameters.
|
|
559
|
+
* @see {@link StartBulkDeploymentCommand}
|
|
642
560
|
*/
|
|
643
561
|
startBulkDeployment(args: StartBulkDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StartBulkDeploymentCommandOutput>;
|
|
644
562
|
startBulkDeployment(args: StartBulkDeploymentCommandInput, cb: (err: any, data?: StartBulkDeploymentCommandOutput) => void): void;
|
|
645
563
|
startBulkDeployment(args: StartBulkDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartBulkDeploymentCommandOutput) => void): void;
|
|
646
564
|
/**
|
|
647
|
-
* @
|
|
648
|
-
* Stops the execution of a bulk deployment. This action returns a status of ''Stopping'' until the deployment is stopped. You cannot start a new bulk deployment while a previous deployment is in the ''Stopping'' state. This action doesn't rollback completed deployments or cancel pending deployments.
|
|
565
|
+
* @see {@link StopBulkDeploymentCommand}
|
|
649
566
|
*/
|
|
650
567
|
stopBulkDeployment(args: StopBulkDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StopBulkDeploymentCommandOutput>;
|
|
651
568
|
stopBulkDeployment(args: StopBulkDeploymentCommandInput, cb: (err: any, data?: StopBulkDeploymentCommandOutput) => void): void;
|
|
652
569
|
stopBulkDeployment(args: StopBulkDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopBulkDeploymentCommandOutput) => void): void;
|
|
653
570
|
/**
|
|
654
|
-
* @
|
|
655
|
-
* Adds tags to a Greengrass resource. Valid resources are 'Group', 'ConnectorDefinition', 'CoreDefinition', 'DeviceDefinition', 'FunctionDefinition', 'LoggerDefinition', 'SubscriptionDefinition', 'ResourceDefinition', and 'BulkDeployment'.
|
|
571
|
+
* @see {@link TagResourceCommand}
|
|
656
572
|
*/
|
|
657
573
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
658
574
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
659
575
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
660
576
|
/**
|
|
661
|
-
* @
|
|
662
|
-
* Remove resource tags from a Greengrass Resource.
|
|
577
|
+
* @see {@link UntagResourceCommand}
|
|
663
578
|
*/
|
|
664
579
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
665
580
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
666
581
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
667
582
|
/**
|
|
668
|
-
* @
|
|
669
|
-
* Updates the connectivity information for the core. Any devices that belong to the group which has this core will receive this information in order to find the location of the core and connect to it.
|
|
583
|
+
* @see {@link UpdateConnectivityInfoCommand}
|
|
670
584
|
*/
|
|
671
585
|
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectivityInfoCommandOutput>;
|
|
672
586
|
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void): void;
|
|
673
587
|
updateConnectivityInfo(args: UpdateConnectivityInfoCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectivityInfoCommandOutput) => void): void;
|
|
674
588
|
/**
|
|
675
|
-
* @
|
|
676
|
-
* Updates a connector definition.
|
|
589
|
+
* @see {@link UpdateConnectorDefinitionCommand}
|
|
677
590
|
*/
|
|
678
591
|
updateConnectorDefinition(args: UpdateConnectorDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorDefinitionCommandOutput>;
|
|
679
592
|
updateConnectorDefinition(args: UpdateConnectorDefinitionCommandInput, cb: (err: any, data?: UpdateConnectorDefinitionCommandOutput) => void): void;
|
|
680
593
|
updateConnectorDefinition(args: UpdateConnectorDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorDefinitionCommandOutput) => void): void;
|
|
681
594
|
/**
|
|
682
|
-
* @
|
|
683
|
-
* Updates a core definition.
|
|
595
|
+
* @see {@link UpdateCoreDefinitionCommand}
|
|
684
596
|
*/
|
|
685
597
|
updateCoreDefinition(args: UpdateCoreDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateCoreDefinitionCommandOutput>;
|
|
686
598
|
updateCoreDefinition(args: UpdateCoreDefinitionCommandInput, cb: (err: any, data?: UpdateCoreDefinitionCommandOutput) => void): void;
|
|
687
599
|
updateCoreDefinition(args: UpdateCoreDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateCoreDefinitionCommandOutput) => void): void;
|
|
688
600
|
/**
|
|
689
|
-
* @
|
|
690
|
-
* Updates a device definition.
|
|
601
|
+
* @see {@link UpdateDeviceDefinitionCommand}
|
|
691
602
|
*/
|
|
692
603
|
updateDeviceDefinition(args: UpdateDeviceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDeviceDefinitionCommandOutput>;
|
|
693
604
|
updateDeviceDefinition(args: UpdateDeviceDefinitionCommandInput, cb: (err: any, data?: UpdateDeviceDefinitionCommandOutput) => void): void;
|
|
694
605
|
updateDeviceDefinition(args: UpdateDeviceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDeviceDefinitionCommandOutput) => void): void;
|
|
695
606
|
/**
|
|
696
|
-
* @
|
|
697
|
-
* Updates a Lambda function definition.
|
|
607
|
+
* @see {@link UpdateFunctionDefinitionCommand}
|
|
698
608
|
*/
|
|
699
609
|
updateFunctionDefinition(args: UpdateFunctionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFunctionDefinitionCommandOutput>;
|
|
700
610
|
updateFunctionDefinition(args: UpdateFunctionDefinitionCommandInput, cb: (err: any, data?: UpdateFunctionDefinitionCommandOutput) => void): void;
|
|
701
611
|
updateFunctionDefinition(args: UpdateFunctionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFunctionDefinitionCommandOutput) => void): void;
|
|
702
612
|
/**
|
|
703
|
-
* @
|
|
704
|
-
* Updates a group.
|
|
613
|
+
* @see {@link UpdateGroupCommand}
|
|
705
614
|
*/
|
|
706
615
|
updateGroup(args: UpdateGroupCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCommandOutput>;
|
|
707
616
|
updateGroup(args: UpdateGroupCommandInput, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
708
617
|
updateGroup(args: UpdateGroupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCommandOutput) => void): void;
|
|
709
618
|
/**
|
|
710
|
-
* @
|
|
711
|
-
* Updates the Certificate expiry time for a group.
|
|
619
|
+
* @see {@link UpdateGroupCertificateConfigurationCommand}
|
|
712
620
|
*/
|
|
713
621
|
updateGroupCertificateConfiguration(args: UpdateGroupCertificateConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateGroupCertificateConfigurationCommandOutput>;
|
|
714
622
|
updateGroupCertificateConfiguration(args: UpdateGroupCertificateConfigurationCommandInput, cb: (err: any, data?: UpdateGroupCertificateConfigurationCommandOutput) => void): void;
|
|
715
623
|
updateGroupCertificateConfiguration(args: UpdateGroupCertificateConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateGroupCertificateConfigurationCommandOutput) => void): void;
|
|
716
624
|
/**
|
|
717
|
-
* @
|
|
718
|
-
* Updates a logger definition.
|
|
625
|
+
* @see {@link UpdateLoggerDefinitionCommand}
|
|
719
626
|
*/
|
|
720
627
|
updateLoggerDefinition(args: UpdateLoggerDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateLoggerDefinitionCommandOutput>;
|
|
721
628
|
updateLoggerDefinition(args: UpdateLoggerDefinitionCommandInput, cb: (err: any, data?: UpdateLoggerDefinitionCommandOutput) => void): void;
|
|
722
629
|
updateLoggerDefinition(args: UpdateLoggerDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateLoggerDefinitionCommandOutput) => void): void;
|
|
723
630
|
/**
|
|
724
|
-
* @
|
|
725
|
-
* Updates a resource definition.
|
|
631
|
+
* @see {@link UpdateResourceDefinitionCommand}
|
|
726
632
|
*/
|
|
727
633
|
updateResourceDefinition(args: UpdateResourceDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateResourceDefinitionCommandOutput>;
|
|
728
634
|
updateResourceDefinition(args: UpdateResourceDefinitionCommandInput, cb: (err: any, data?: UpdateResourceDefinitionCommandOutput) => void): void;
|
|
729
635
|
updateResourceDefinition(args: UpdateResourceDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateResourceDefinitionCommandOutput) => void): void;
|
|
730
636
|
/**
|
|
731
|
-
* @
|
|
732
|
-
* Updates a subscription definition.
|
|
637
|
+
* @see {@link UpdateSubscriptionDefinitionCommand}
|
|
733
638
|
*/
|
|
734
639
|
updateSubscriptionDefinition(args: UpdateSubscriptionDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSubscriptionDefinitionCommandOutput>;
|
|
735
640
|
updateSubscriptionDefinition(args: UpdateSubscriptionDefinitionCommandInput, cb: (err: any, data?: UpdateSubscriptionDefinitionCommandOutput) => void): void;
|
|
736
641
|
updateSubscriptionDefinition(args: UpdateSubscriptionDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSubscriptionDefinitionCommandOutput) => void): void;
|
|
737
642
|
/**
|
|
738
|
-
* @
|
|
739
|
-
* Updates the runtime configuration of a thing.
|
|
643
|
+
* @see {@link UpdateThingRuntimeConfigurationCommand}
|
|
740
644
|
*/
|
|
741
645
|
updateThingRuntimeConfiguration(args: UpdateThingRuntimeConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateThingRuntimeConfigurationCommandOutput>;
|
|
742
646
|
updateThingRuntimeConfiguration(args: UpdateThingRuntimeConfigurationCommandInput, cb: (err: any, data?: UpdateThingRuntimeConfigurationCommandOutput) => void): void;
|
|
743
647
|
updateThingRuntimeConfiguration(args: UpdateThingRuntimeConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateThingRuntimeConfigurationCommandOutput) => void): void;
|
|
744
648
|
}
|
|
649
|
+
/**
|
|
650
|
+
* @public
|
|
651
|
+
* AWS IoT Greengrass seamlessly extends AWS onto physical devices so they can act locally on the data they generate, while still using the cloud for management, analytics, and durable storage. AWS IoT Greengrass ensures your devices can respond quickly to local events and operate with intermittent connectivity. AWS IoT Greengrass minimizes the cost of transmitting data to the cloud by allowing you to author AWS Lambda functions that execute locally.
|
|
652
|
+
*/
|
|
653
|
+
export declare class Greengrass extends GreengrassClient implements Greengrass {
|
|
654
|
+
}
|