@aws-sdk/client-greengrassv2 3.183.0 → 3.186.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/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/GreengrassV2.js +125 -118
- package/dist-es/GreengrassV2Client.js +28 -22
- package/dist-es/commands/AssociateServiceRoleToAccountCommand.js +28 -21
- package/dist-es/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.js +28 -21
- package/dist-es/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.js +28 -21
- package/dist-es/commands/CancelDeploymentCommand.js +28 -21
- package/dist-es/commands/CreateComponentVersionCommand.js +28 -21
- package/dist-es/commands/CreateDeploymentCommand.js +28 -21
- package/dist-es/commands/DeleteComponentCommand.js +29 -22
- package/dist-es/commands/DeleteCoreDeviceCommand.js +29 -22
- package/dist-es/commands/DeleteDeploymentCommand.js +29 -22
- package/dist-es/commands/DescribeComponentCommand.js +28 -21
- package/dist-es/commands/DisassociateServiceRoleFromAccountCommand.js +28 -21
- package/dist-es/commands/GetComponentCommand.js +28 -21
- package/dist-es/commands/GetComponentVersionArtifactCommand.js +28 -21
- package/dist-es/commands/GetConnectivityInfoCommand.js +28 -21
- package/dist-es/commands/GetCoreDeviceCommand.js +28 -21
- package/dist-es/commands/GetDeploymentCommand.js +28 -21
- package/dist-es/commands/GetServiceRoleForAccountCommand.js +28 -21
- package/dist-es/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.js +28 -21
- package/dist-es/commands/ListComponentVersionsCommand.js +28 -21
- package/dist-es/commands/ListComponentsCommand.js +28 -21
- package/dist-es/commands/ListCoreDevicesCommand.js +28 -21
- package/dist-es/commands/ListDeploymentsCommand.js +28 -21
- package/dist-es/commands/ListEffectiveDeploymentsCommand.js +28 -21
- package/dist-es/commands/ListInstalledComponentsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ResolveComponentCandidatesCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateConnectivityInfoCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/GreengrassV2ServiceException.js +10 -5
- package/dist-es/models/models_0.js +198 -387
- package/dist-es/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.js +68 -25
- package/dist-es/pagination/ListComponentVersionsPaginator.js +68 -25
- package/dist-es/pagination/ListComponentsPaginator.js +68 -25
- package/dist-es/pagination/ListCoreDevicesPaginator.js +68 -25
- package/dist-es/pagination/ListDeploymentsPaginator.js +68 -25
- package/dist-es/pagination/ListEffectiveDeploymentsPaginator.js +68 -25
- package/dist-es/pagination/ListInstalledComponentsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +3292 -2480
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
|
@@ -1,29 +1,30 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { GreengrassV2ServiceException as __BaseException } from "./GreengrassV2ServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
this.$fault = "client";
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
return _this;
|
|
12
11
|
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
12
|
+
return AccessDeniedException;
|
|
13
|
+
}(__BaseException));
|
|
14
|
+
export { AccessDeniedException };
|
|
15
|
+
var InternalServerException = (function (_super) {
|
|
16
|
+
__extends(InternalServerException, _super);
|
|
17
|
+
function InternalServerException(opts) {
|
|
18
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
19
|
+
_this.name = "InternalServerException";
|
|
20
|
+
_this.$fault = "server";
|
|
21
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
22
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
23
|
+
return _this;
|
|
25
24
|
}
|
|
26
|
-
|
|
25
|
+
return InternalServerException;
|
|
26
|
+
}(__BaseException));
|
|
27
|
+
export { InternalServerException };
|
|
27
28
|
export var ValidationExceptionReason;
|
|
28
29
|
(function (ValidationExceptionReason) {
|
|
29
30
|
ValidationExceptionReason["CANNOT_PARSE"] = "CANNOT_PARSE";
|
|
@@ -31,63 +32,63 @@ export var ValidationExceptionReason;
|
|
|
31
32
|
ValidationExceptionReason["OTHER"] = "OTHER";
|
|
32
33
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "UNKNOWN_OPERATION";
|
|
33
34
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
this.reason = opts.reason;
|
|
45
|
-
this.fields = opts.fields;
|
|
35
|
+
var ValidationException = (function (_super) {
|
|
36
|
+
__extends(ValidationException, _super);
|
|
37
|
+
function ValidationException(opts) {
|
|
38
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
39
|
+
_this.name = "ValidationException";
|
|
40
|
+
_this.$fault = "client";
|
|
41
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
42
|
+
_this.reason = opts.reason;
|
|
43
|
+
_this.fields = opts.fields;
|
|
44
|
+
return _this;
|
|
46
45
|
}
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
46
|
+
return ValidationException;
|
|
47
|
+
}(__BaseException));
|
|
48
|
+
export { ValidationException };
|
|
49
|
+
var ResourceNotFoundException = (function (_super) {
|
|
50
|
+
__extends(ResourceNotFoundException, _super);
|
|
51
|
+
function ResourceNotFoundException(opts) {
|
|
52
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
53
|
+
_this.name = "ResourceNotFoundException";
|
|
54
|
+
_this.$fault = "client";
|
|
55
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
56
|
+
_this.resourceId = opts.resourceId;
|
|
57
|
+
_this.resourceType = opts.resourceType;
|
|
58
|
+
return _this;
|
|
60
59
|
}
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
60
|
+
return ResourceNotFoundException;
|
|
61
|
+
}(__BaseException));
|
|
62
|
+
export { ResourceNotFoundException };
|
|
63
|
+
var ThrottlingException = (function (_super) {
|
|
64
|
+
__extends(ThrottlingException, _super);
|
|
65
|
+
function ThrottlingException(opts) {
|
|
66
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
67
|
+
_this.name = "ThrottlingException";
|
|
68
|
+
_this.$fault = "client";
|
|
69
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
70
|
+
_this.quotaCode = opts.quotaCode;
|
|
71
|
+
_this.serviceCode = opts.serviceCode;
|
|
72
|
+
_this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
73
|
+
return _this;
|
|
75
74
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
75
|
+
return ThrottlingException;
|
|
76
|
+
}(__BaseException));
|
|
77
|
+
export { ThrottlingException };
|
|
78
|
+
var ConflictException = (function (_super) {
|
|
79
|
+
__extends(ConflictException, _super);
|
|
80
|
+
function ConflictException(opts) {
|
|
81
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
82
|
+
_this.name = "ConflictException";
|
|
83
|
+
_this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
85
|
+
_this.resourceId = opts.resourceId;
|
|
86
|
+
_this.resourceType = opts.resourceType;
|
|
87
|
+
return _this;
|
|
89
88
|
}
|
|
90
|
-
|
|
89
|
+
return ConflictException;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { ConflictException };
|
|
91
92
|
export var CloudComponentState;
|
|
92
93
|
(function (CloudComponentState) {
|
|
93
94
|
CloudComponentState["DEPLOYABLE"] = "DEPLOYABLE";
|
|
@@ -137,34 +138,34 @@ export var LambdaIsolationMode;
|
|
|
137
138
|
LambdaIsolationMode["GREENGRASS_CONTAINER"] = "GreengrassContainer";
|
|
138
139
|
LambdaIsolationMode["NO_CONTAINER"] = "NoContainer";
|
|
139
140
|
})(LambdaIsolationMode || (LambdaIsolationMode = {}));
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
this.$fault = "client";
|
|
149
|
-
Object.setPrototypeOf(this, RequestAlreadyInProgressException.prototype);
|
|
141
|
+
var RequestAlreadyInProgressException = (function (_super) {
|
|
142
|
+
__extends(RequestAlreadyInProgressException, _super);
|
|
143
|
+
function RequestAlreadyInProgressException(opts) {
|
|
144
|
+
var _this = _super.call(this, __assign({ name: "RequestAlreadyInProgressException", $fault: "client" }, opts)) || this;
|
|
145
|
+
_this.name = "RequestAlreadyInProgressException";
|
|
146
|
+
_this.$fault = "client";
|
|
147
|
+
Object.setPrototypeOf(_this, RequestAlreadyInProgressException.prototype);
|
|
148
|
+
return _this;
|
|
150
149
|
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
150
|
+
return RequestAlreadyInProgressException;
|
|
151
|
+
}(__BaseException));
|
|
152
|
+
export { RequestAlreadyInProgressException };
|
|
153
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
154
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
155
|
+
function ServiceQuotaExceededException(opts) {
|
|
156
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
157
|
+
_this.name = "ServiceQuotaExceededException";
|
|
158
|
+
_this.$fault = "client";
|
|
159
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
160
|
+
_this.resourceId = opts.resourceId;
|
|
161
|
+
_this.resourceType = opts.resourceType;
|
|
162
|
+
_this.quotaCode = opts.quotaCode;
|
|
163
|
+
_this.serviceCode = opts.serviceCode;
|
|
164
|
+
return _this;
|
|
166
165
|
}
|
|
167
|
-
|
|
166
|
+
return ServiceQuotaExceededException;
|
|
167
|
+
}(__BaseException));
|
|
168
|
+
export { ServiceQuotaExceededException };
|
|
168
169
|
export var DeploymentComponentUpdatePolicyAction;
|
|
169
170
|
(function (DeploymentComponentUpdatePolicyAction) {
|
|
170
171
|
DeploymentComponentUpdatePolicyAction["NOTIFY_COMPONENTS"] = "NOTIFY_COMPONENTS";
|
|
@@ -230,288 +231,98 @@ export var InstalledComponentLifecycleState;
|
|
|
230
231
|
InstalledComponentLifecycleState["STARTING"] = "STARTING";
|
|
231
232
|
InstalledComponentLifecycleState["STOPPING"] = "STOPPING";
|
|
232
233
|
})(InstalledComponentLifecycleState || (InstalledComponentLifecycleState = {}));
|
|
233
|
-
export
|
|
234
|
-
|
|
235
|
-
});
|
|
236
|
-
export
|
|
237
|
-
|
|
238
|
-
});
|
|
239
|
-
export
|
|
240
|
-
|
|
241
|
-
});
|
|
242
|
-
export
|
|
243
|
-
|
|
244
|
-
});
|
|
245
|
-
export
|
|
246
|
-
|
|
247
|
-
});
|
|
248
|
-
export
|
|
249
|
-
|
|
250
|
-
});
|
|
251
|
-
export
|
|
252
|
-
|
|
253
|
-
});
|
|
254
|
-
export
|
|
255
|
-
|
|
256
|
-
});
|
|
257
|
-
export
|
|
258
|
-
|
|
259
|
-
});
|
|
260
|
-
export
|
|
261
|
-
|
|
262
|
-
});
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
});
|
|
266
|
-
export
|
|
267
|
-
|
|
268
|
-
});
|
|
269
|
-
export
|
|
270
|
-
|
|
271
|
-
});
|
|
272
|
-
export
|
|
273
|
-
|
|
274
|
-
});
|
|
275
|
-
export
|
|
276
|
-
|
|
277
|
-
});
|
|
278
|
-
export
|
|
279
|
-
|
|
280
|
-
});
|
|
281
|
-
export
|
|
282
|
-
|
|
283
|
-
});
|
|
284
|
-
export
|
|
285
|
-
|
|
286
|
-
});
|
|
287
|
-
export
|
|
288
|
-
|
|
289
|
-
});
|
|
290
|
-
export
|
|
291
|
-
|
|
292
|
-
});
|
|
293
|
-
export
|
|
294
|
-
|
|
295
|
-
});
|
|
296
|
-
export
|
|
297
|
-
|
|
298
|
-
});
|
|
299
|
-
export
|
|
300
|
-
|
|
301
|
-
});
|
|
302
|
-
export
|
|
303
|
-
|
|
304
|
-
});
|
|
305
|
-
export
|
|
306
|
-
|
|
307
|
-
});
|
|
308
|
-
export
|
|
309
|
-
|
|
310
|
-
});
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
});
|
|
314
|
-
export
|
|
315
|
-
|
|
316
|
-
});
|
|
317
|
-
export
|
|
318
|
-
|
|
319
|
-
});
|
|
320
|
-
export
|
|
321
|
-
|
|
322
|
-
});
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
});
|
|
326
|
-
export
|
|
327
|
-
|
|
328
|
-
});
|
|
329
|
-
export const LambdaExecutionParametersFilterSensitiveLog = (obj) => ({
|
|
330
|
-
...obj,
|
|
331
|
-
});
|
|
332
|
-
export const LambdaFunctionRecipeSourceFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const CreateComponentVersionRequestFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const CreateComponentVersionResponseFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const DeploymentComponentUpdatePolicyFilterSensitiveLog = (obj) => ({
|
|
342
|
-
...obj,
|
|
343
|
-
});
|
|
344
|
-
export const DeploymentConfigurationValidationPolicyFilterSensitiveLog = (obj) => ({
|
|
345
|
-
...obj,
|
|
346
|
-
});
|
|
347
|
-
export const DeploymentPoliciesFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
});
|
|
350
|
-
export const IoTJobAbortCriteriaFilterSensitiveLog = (obj) => ({
|
|
351
|
-
...obj,
|
|
352
|
-
});
|
|
353
|
-
export const IoTJobAbortConfigFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const IoTJobRateIncreaseCriteriaFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const IoTJobExponentialRolloutRateFilterSensitiveLog = (obj) => ({
|
|
360
|
-
...obj,
|
|
361
|
-
});
|
|
362
|
-
export const IoTJobExecutionsRolloutConfigFilterSensitiveLog = (obj) => ({
|
|
363
|
-
...obj,
|
|
364
|
-
});
|
|
365
|
-
export const IoTJobTimeoutConfigFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
});
|
|
368
|
-
export const DeploymentIoTJobConfigurationFilterSensitiveLog = (obj) => ({
|
|
369
|
-
...obj,
|
|
370
|
-
});
|
|
371
|
-
export const CreateDeploymentRequestFilterSensitiveLog = (obj) => ({
|
|
372
|
-
...obj,
|
|
373
|
-
});
|
|
374
|
-
export const CreateDeploymentResponseFilterSensitiveLog = (obj) => ({
|
|
375
|
-
...obj,
|
|
376
|
-
});
|
|
377
|
-
export const DeleteComponentRequestFilterSensitiveLog = (obj) => ({
|
|
378
|
-
...obj,
|
|
379
|
-
});
|
|
380
|
-
export const DeleteCoreDeviceRequestFilterSensitiveLog = (obj) => ({
|
|
381
|
-
...obj,
|
|
382
|
-
});
|
|
383
|
-
export const DeleteDeploymentRequestFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
});
|
|
386
|
-
export const DeploymentFilterSensitiveLog = (obj) => ({
|
|
387
|
-
...obj,
|
|
388
|
-
});
|
|
389
|
-
export const DescribeComponentRequestFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const DescribeComponentResponseFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const DisassociateServiceRoleFromAccountRequestFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const DisassociateServiceRoleFromAccountResponseFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
401
|
-
export const EffectiveDeploymentFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
export const GetComponentRequestFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const GetComponentResponseFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const GetComponentVersionArtifactRequestFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const GetComponentVersionArtifactResponseFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const GetConnectivityInfoRequestFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const GetConnectivityInfoResponseFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const GetCoreDeviceRequestFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const GetCoreDeviceResponseFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
});
|
|
428
|
-
export const GetDeploymentRequestFilterSensitiveLog = (obj) => ({
|
|
429
|
-
...obj,
|
|
430
|
-
});
|
|
431
|
-
export const GetDeploymentResponseFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
});
|
|
434
|
-
export const GetServiceRoleForAccountRequestFilterSensitiveLog = (obj) => ({
|
|
435
|
-
...obj,
|
|
436
|
-
});
|
|
437
|
-
export const GetServiceRoleForAccountResponseFilterSensitiveLog = (obj) => ({
|
|
438
|
-
...obj,
|
|
439
|
-
});
|
|
440
|
-
export const ListClientDevicesAssociatedWithCoreDeviceRequestFilterSensitiveLog = (obj) => ({
|
|
441
|
-
...obj,
|
|
442
|
-
});
|
|
443
|
-
export const ListClientDevicesAssociatedWithCoreDeviceResponseFilterSensitiveLog = (obj) => ({
|
|
444
|
-
...obj,
|
|
445
|
-
});
|
|
446
|
-
export const ListComponentsRequestFilterSensitiveLog = (obj) => ({
|
|
447
|
-
...obj,
|
|
448
|
-
});
|
|
449
|
-
export const ListComponentsResponseFilterSensitiveLog = (obj) => ({
|
|
450
|
-
...obj,
|
|
451
|
-
});
|
|
452
|
-
export const ListComponentVersionsRequestFilterSensitiveLog = (obj) => ({
|
|
453
|
-
...obj,
|
|
454
|
-
});
|
|
455
|
-
export const ListComponentVersionsResponseFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
});
|
|
458
|
-
export const ListCoreDevicesRequestFilterSensitiveLog = (obj) => ({
|
|
459
|
-
...obj,
|
|
460
|
-
});
|
|
461
|
-
export const ListCoreDevicesResponseFilterSensitiveLog = (obj) => ({
|
|
462
|
-
...obj,
|
|
463
|
-
});
|
|
464
|
-
export const ListDeploymentsRequestFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
});
|
|
467
|
-
export const ListDeploymentsResponseFilterSensitiveLog = (obj) => ({
|
|
468
|
-
...obj,
|
|
469
|
-
});
|
|
470
|
-
export const ListEffectiveDeploymentsRequestFilterSensitiveLog = (obj) => ({
|
|
471
|
-
...obj,
|
|
472
|
-
});
|
|
473
|
-
export const ListEffectiveDeploymentsResponseFilterSensitiveLog = (obj) => ({
|
|
474
|
-
...obj,
|
|
475
|
-
});
|
|
476
|
-
export const ListInstalledComponentsRequestFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
});
|
|
479
|
-
export const InstalledComponentFilterSensitiveLog = (obj) => ({
|
|
480
|
-
...obj,
|
|
481
|
-
});
|
|
482
|
-
export const ListInstalledComponentsResponseFilterSensitiveLog = (obj) => ({
|
|
483
|
-
...obj,
|
|
484
|
-
});
|
|
485
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
486
|
-
...obj,
|
|
487
|
-
});
|
|
488
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
489
|
-
...obj,
|
|
490
|
-
});
|
|
491
|
-
export const ResolveComponentCandidatesRequestFilterSensitiveLog = (obj) => ({
|
|
492
|
-
...obj,
|
|
493
|
-
});
|
|
494
|
-
export const ResolvedComponentVersionFilterSensitiveLog = (obj) => ({
|
|
495
|
-
...obj,
|
|
496
|
-
});
|
|
497
|
-
export const ResolveComponentCandidatesResponseFilterSensitiveLog = (obj) => ({
|
|
498
|
-
...obj,
|
|
499
|
-
});
|
|
500
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
501
|
-
...obj,
|
|
502
|
-
});
|
|
503
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
504
|
-
...obj,
|
|
505
|
-
});
|
|
506
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
507
|
-
...obj,
|
|
508
|
-
});
|
|
509
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
510
|
-
...obj,
|
|
511
|
-
});
|
|
512
|
-
export const UpdateConnectivityInfoRequestFilterSensitiveLog = (obj) => ({
|
|
513
|
-
...obj,
|
|
514
|
-
});
|
|
515
|
-
export const UpdateConnectivityInfoResponseFilterSensitiveLog = (obj) => ({
|
|
516
|
-
...obj,
|
|
517
|
-
});
|
|
234
|
+
export var AssociateClientDeviceWithCoreDeviceEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var AssociateClientDeviceWithCoreDeviceErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var AssociatedClientDeviceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var AssociateServiceRoleToAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var AssociateServiceRoleToAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var BatchAssociateClientDeviceWithCoreDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var BatchAssociateClientDeviceWithCoreDeviceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var DisassociateClientDeviceFromCoreDeviceEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var BatchDisassociateClientDeviceFromCoreDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var DisassociateClientDeviceFromCoreDeviceErrorEntryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var BatchDisassociateClientDeviceFromCoreDeviceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var CancelDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var CancelDeploymentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var CloudComponentStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var ComponentPlatformFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var ComponentLatestVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var ComponentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var ComponentCandidateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var ComponentConfigurationUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var ComponentDependencyRequirementFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var SystemResourceLimitsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var ComponentRunWithFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var ComponentDeploymentSpecificationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var ComponentVersionListItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var ConnectivityInfoFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var CoreDeviceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var LambdaEventSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var LambdaDeviceMountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var LambdaVolumeMountFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var LambdaContainerParamsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var LambdaLinuxProcessParamsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var LambdaExecutionParametersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var LambdaFunctionRecipeSourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var CreateComponentVersionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var CreateComponentVersionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var DeploymentComponentUpdatePolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var DeploymentConfigurationValidationPolicyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var DeploymentPoliciesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var IoTJobAbortCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var IoTJobAbortConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var IoTJobRateIncreaseCriteriaFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var IoTJobExponentialRolloutRateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var IoTJobExecutionsRolloutConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var IoTJobTimeoutConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var DeploymentIoTJobConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var CreateDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var CreateDeploymentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var DeleteComponentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var DeleteCoreDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var DeleteDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var DeploymentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var DescribeComponentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var DescribeComponentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var DisassociateServiceRoleFromAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var DisassociateServiceRoleFromAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var EffectiveDeploymentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var GetComponentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var GetComponentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var GetComponentVersionArtifactRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var GetComponentVersionArtifactResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var GetConnectivityInfoRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var GetConnectivityInfoResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var GetCoreDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var GetCoreDeviceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var GetDeploymentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var GetDeploymentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var GetServiceRoleForAccountRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var GetServiceRoleForAccountResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var ListClientDevicesAssociatedWithCoreDeviceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var ListClientDevicesAssociatedWithCoreDeviceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var ListComponentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var ListComponentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var ListComponentVersionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var ListComponentVersionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var ListCoreDevicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var ListCoreDevicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var ListDeploymentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var ListDeploymentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var ListEffectiveDeploymentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var ListEffectiveDeploymentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var ListInstalledComponentsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var InstalledComponentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var ListInstalledComponentsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var ResolveComponentCandidatesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var ResolvedComponentVersionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var ResolveComponentCandidatesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var UpdateConnectivityInfoRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var UpdateConnectivityInfoResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|