@aws-sdk/client-greengrassv2 3.686.0 → 3.691.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-types/models/models_0.d.ts +227 -227
- package/dist-types/ts3.4/models/models_0.d.ts +231 -227
- package/package.json +7 -7
|
@@ -35,17 +35,17 @@ export interface AssociateClientDeviceWithCoreDeviceErrorEntry {
|
|
|
35
35
|
* <p>The name of the IoT thing whose associate request failed.</p>
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
thingName?: string;
|
|
38
|
+
thingName?: string | undefined;
|
|
39
39
|
/**
|
|
40
40
|
* <p>The error code for the request.</p>
|
|
41
41
|
* @public
|
|
42
42
|
*/
|
|
43
|
-
code?: string;
|
|
43
|
+
code?: string | undefined;
|
|
44
44
|
/**
|
|
45
45
|
* <p>A message that provides additional information about the error.</p>
|
|
46
46
|
* @public
|
|
47
47
|
*/
|
|
48
|
-
message?: string;
|
|
48
|
+
message?: string | undefined;
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
51
51
|
* <p>Contains information about a client device that is associated to a core device for cloud
|
|
@@ -57,12 +57,12 @@ export interface AssociatedClientDevice {
|
|
|
57
57
|
* <p>The name of the IoT thing that represents the associated client device.</p>
|
|
58
58
|
* @public
|
|
59
59
|
*/
|
|
60
|
-
thingName?: string;
|
|
60
|
+
thingName?: string | undefined;
|
|
61
61
|
/**
|
|
62
62
|
* <p>The time that the client device was associated, expressed in ISO 8601 format.</p>
|
|
63
63
|
* @public
|
|
64
64
|
*/
|
|
65
|
-
associationTimestamp?: Date;
|
|
65
|
+
associationTimestamp?: Date | undefined;
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
68
|
* @public
|
|
@@ -84,7 +84,7 @@ export interface AssociateServiceRoleToAccountResponse {
|
|
|
84
84
|
* Amazon Web Services Region.</p>
|
|
85
85
|
* @public
|
|
86
86
|
*/
|
|
87
|
-
associatedAt?: string;
|
|
87
|
+
associatedAt?: string | undefined;
|
|
88
88
|
}
|
|
89
89
|
/**
|
|
90
90
|
* <p>IoT Greengrass can't process your request right now. Try again later.</p>
|
|
@@ -97,7 +97,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
97
97
|
* <p>The amount of time to wait before you retry the request.</p>
|
|
98
98
|
* @public
|
|
99
99
|
*/
|
|
100
|
-
retryAfterSeconds?: number;
|
|
100
|
+
retryAfterSeconds?: number | undefined;
|
|
101
101
|
/**
|
|
102
102
|
* @internal
|
|
103
103
|
*/
|
|
@@ -145,12 +145,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
145
145
|
* <p>The reason for the validation exception.</p>
|
|
146
146
|
* @public
|
|
147
147
|
*/
|
|
148
|
-
reason?: ValidationExceptionReason;
|
|
148
|
+
reason?: ValidationExceptionReason | undefined;
|
|
149
149
|
/**
|
|
150
150
|
* <p>The list of fields that failed to validate.</p>
|
|
151
151
|
* @public
|
|
152
152
|
*/
|
|
153
|
-
fields?: ValidationExceptionField[];
|
|
153
|
+
fields?: ValidationExceptionField[] | undefined;
|
|
154
154
|
/**
|
|
155
155
|
* @internal
|
|
156
156
|
*/
|
|
@@ -164,7 +164,7 @@ export interface BatchAssociateClientDeviceWithCoreDeviceRequest {
|
|
|
164
164
|
* <p>The list of client devices to associate.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
entries?: AssociateClientDeviceWithCoreDeviceEntry[];
|
|
167
|
+
entries?: AssociateClientDeviceWithCoreDeviceEntry[] | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
170
170
|
* @public
|
|
@@ -180,7 +180,7 @@ export interface BatchAssociateClientDeviceWithCoreDeviceResponse {
|
|
|
180
180
|
* of the IoT thing that failed to associate.</p>
|
|
181
181
|
* @public
|
|
182
182
|
*/
|
|
183
|
-
errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[];
|
|
183
|
+
errorEntries?: AssociateClientDeviceWithCoreDeviceErrorEntry[] | undefined;
|
|
184
184
|
}
|
|
185
185
|
/**
|
|
186
186
|
* <p>The requested resource can't be found.</p>
|
|
@@ -216,17 +216,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
216
216
|
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
quotaCode?: string;
|
|
219
|
+
quotaCode?: string | undefined;
|
|
220
220
|
/**
|
|
221
221
|
* <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
serviceCode?: string;
|
|
224
|
+
serviceCode?: string | undefined;
|
|
225
225
|
/**
|
|
226
226
|
* <p>The amount of time to wait before you retry the request.</p>
|
|
227
227
|
* @public
|
|
228
228
|
*/
|
|
229
|
-
retryAfterSeconds?: number;
|
|
229
|
+
retryAfterSeconds?: number | undefined;
|
|
230
230
|
/**
|
|
231
231
|
* @internal
|
|
232
232
|
*/
|
|
@@ -252,7 +252,7 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceRequest {
|
|
|
252
252
|
* <p>The list of client devices to disassociate.</p>
|
|
253
253
|
* @public
|
|
254
254
|
*/
|
|
255
|
-
entries?: DisassociateClientDeviceFromCoreDeviceEntry[];
|
|
255
|
+
entries?: DisassociateClientDeviceFromCoreDeviceEntry[] | undefined;
|
|
256
256
|
/**
|
|
257
257
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
258
258
|
* @public
|
|
@@ -270,17 +270,17 @@ export interface DisassociateClientDeviceFromCoreDeviceErrorEntry {
|
|
|
270
270
|
* <p>The name of the IoT thing whose disassociate request failed.</p>
|
|
271
271
|
* @public
|
|
272
272
|
*/
|
|
273
|
-
thingName?: string;
|
|
273
|
+
thingName?: string | undefined;
|
|
274
274
|
/**
|
|
275
275
|
* <p>The error code for the request.</p>
|
|
276
276
|
* @public
|
|
277
277
|
*/
|
|
278
|
-
code?: string;
|
|
278
|
+
code?: string | undefined;
|
|
279
279
|
/**
|
|
280
280
|
* <p>A message that provides additional information about the error.</p>
|
|
281
281
|
* @public
|
|
282
282
|
*/
|
|
283
|
-
message?: string;
|
|
283
|
+
message?: string | undefined;
|
|
284
284
|
}
|
|
285
285
|
/**
|
|
286
286
|
* @public
|
|
@@ -291,7 +291,7 @@ export interface BatchDisassociateClientDeviceFromCoreDeviceResponse {
|
|
|
291
291
|
* of the IoT thing that failed to disassociate.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[];
|
|
294
|
+
errorEntries?: DisassociateClientDeviceFromCoreDeviceErrorEntry[] | undefined;
|
|
295
295
|
}
|
|
296
296
|
/**
|
|
297
297
|
* @public
|
|
@@ -311,7 +311,7 @@ export interface CancelDeploymentResponse {
|
|
|
311
311
|
* <p>A message that communicates if the cancel was successful.</p>
|
|
312
312
|
* @public
|
|
313
313
|
*/
|
|
314
|
-
message?: string;
|
|
314
|
+
message?: string | undefined;
|
|
315
315
|
}
|
|
316
316
|
/**
|
|
317
317
|
* <p>Your request has conflicting operations. This can occur if you're trying to perform more
|
|
@@ -373,13 +373,13 @@ export interface CloudComponentStatus {
|
|
|
373
373
|
* <p>The state of the component version.</p>
|
|
374
374
|
* @public
|
|
375
375
|
*/
|
|
376
|
-
componentState?: CloudComponentState;
|
|
376
|
+
componentState?: CloudComponentState | undefined;
|
|
377
377
|
/**
|
|
378
378
|
* <p>A message that communicates details, such as errors, about the status of the component
|
|
379
379
|
* version.</p>
|
|
380
380
|
* @public
|
|
381
381
|
*/
|
|
382
|
-
message?: string;
|
|
382
|
+
message?: string | undefined;
|
|
383
383
|
/**
|
|
384
384
|
* <p>A dictionary of errors that communicate why the component version is in an error state.
|
|
385
385
|
* For example, if IoT Greengrass can't access an artifact for the component version, then
|
|
@@ -387,7 +387,7 @@ export interface CloudComponentStatus {
|
|
|
387
387
|
* for that key.</p>
|
|
388
388
|
* @public
|
|
389
389
|
*/
|
|
390
|
-
errors?: Record<string, string
|
|
390
|
+
errors?: Record<string, string> | undefined;
|
|
391
391
|
/**
|
|
392
392
|
* <p>The vendor guidance state for the component version. This state indicates whether
|
|
393
393
|
* the component version has any issues that you should consider before you deploy it. The vendor guidance state can be:</p>
|
|
@@ -409,13 +409,13 @@ export interface CloudComponentStatus {
|
|
|
409
409
|
* </ul>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
vendorGuidance?: VendorGuidance;
|
|
412
|
+
vendorGuidance?: VendorGuidance | undefined;
|
|
413
413
|
/**
|
|
414
414
|
* <p>A message that communicates details about the vendor guidance state
|
|
415
415
|
* of the component version. This message communicates why a component version is discontinued or deleted.</p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
vendorGuidanceMessage?: string;
|
|
418
|
+
vendorGuidanceMessage?: string | undefined;
|
|
419
419
|
}
|
|
420
420
|
/**
|
|
421
421
|
* <p>Contains information about a platform that a component supports.</p>
|
|
@@ -428,7 +428,7 @@ export interface ComponentPlatform {
|
|
|
428
428
|
* <code>architecture</code> of the platform.</p>
|
|
429
429
|
* @public
|
|
430
430
|
*/
|
|
431
|
-
name?: string;
|
|
431
|
+
name?: string | undefined;
|
|
432
432
|
/**
|
|
433
433
|
* <p>A dictionary of attributes for the platform. The IoT Greengrass Core software defines the
|
|
434
434
|
* <code>os</code> and <code>architecture</code> by default. You can specify additional
|
|
@@ -437,7 +437,7 @@ export interface ComponentPlatform {
|
|
|
437
437
|
* component</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
438
438
|
* @public
|
|
439
439
|
*/
|
|
440
|
-
attributes?: Record<string, string
|
|
440
|
+
attributes?: Record<string, string> | undefined;
|
|
441
441
|
}
|
|
442
442
|
/**
|
|
443
443
|
* <p>Contains information about the latest version of a component.</p>
|
|
@@ -448,32 +448,32 @@ export interface ComponentLatestVersion {
|
|
|
448
448
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
arn?: string;
|
|
451
|
+
arn?: string | undefined;
|
|
452
452
|
/**
|
|
453
453
|
* <p>The version of the component.</p>
|
|
454
454
|
* @public
|
|
455
455
|
*/
|
|
456
|
-
componentVersion?: string;
|
|
456
|
+
componentVersion?: string | undefined;
|
|
457
457
|
/**
|
|
458
458
|
* <p>The time at which the component was created, expressed in ISO 8601 format.</p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
creationTimestamp?: Date;
|
|
461
|
+
creationTimestamp?: Date | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* <p>The description of the component version.</p>
|
|
464
464
|
* @public
|
|
465
465
|
*/
|
|
466
|
-
description?: string;
|
|
466
|
+
description?: string | undefined;
|
|
467
467
|
/**
|
|
468
468
|
* <p>The publisher of the component version.</p>
|
|
469
469
|
* @public
|
|
470
470
|
*/
|
|
471
|
-
publisher?: string;
|
|
471
|
+
publisher?: string | undefined;
|
|
472
472
|
/**
|
|
473
473
|
* <p>The platforms that the component version supports.</p>
|
|
474
474
|
* @public
|
|
475
475
|
*/
|
|
476
|
-
platforms?: ComponentPlatform[];
|
|
476
|
+
platforms?: ComponentPlatform[] | undefined;
|
|
477
477
|
}
|
|
478
478
|
/**
|
|
479
479
|
* <p>Contains information about a component.</p>
|
|
@@ -484,17 +484,17 @@ export interface Component {
|
|
|
484
484
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
arn?: string;
|
|
487
|
+
arn?: string | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>The name of the component.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
componentName?: string;
|
|
492
|
+
componentName?: string | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The latest version of the component and its details.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
latestVersion?: ComponentLatestVersion;
|
|
497
|
+
latestVersion?: ComponentLatestVersion | undefined;
|
|
498
498
|
}
|
|
499
499
|
/**
|
|
500
500
|
* <p>Contains information about a component that is a candidate to deploy to a Greengrass core
|
|
@@ -506,19 +506,19 @@ export interface ComponentCandidate {
|
|
|
506
506
|
* <p>The name of the component.</p>
|
|
507
507
|
* @public
|
|
508
508
|
*/
|
|
509
|
-
componentName?: string;
|
|
509
|
+
componentName?: string | undefined;
|
|
510
510
|
/**
|
|
511
511
|
* <p>The version of the component.</p>
|
|
512
512
|
* @public
|
|
513
513
|
*/
|
|
514
|
-
componentVersion?: string;
|
|
514
|
+
componentVersion?: string | undefined;
|
|
515
515
|
/**
|
|
516
516
|
* <p>The version requirements for the component's dependencies. Greengrass core devices get the
|
|
517
517
|
* version requirements from component recipes.</p>
|
|
518
518
|
* <p>IoT Greengrass V2 uses semantic version constraints. For more information, see <a href="https://semver.org/">Semantic Versioning</a>.</p>
|
|
519
519
|
* @public
|
|
520
520
|
*/
|
|
521
|
-
versionRequirements?: Record<string, string
|
|
521
|
+
versionRequirements?: Record<string, string> | undefined;
|
|
522
522
|
}
|
|
523
523
|
/**
|
|
524
524
|
* <p>Contains information about a deployment's update to a component's configuration on
|
|
@@ -537,7 +537,7 @@ export interface ComponentConfigurationUpdate {
|
|
|
537
537
|
* Guide</i>.</p>
|
|
538
538
|
* @public
|
|
539
539
|
*/
|
|
540
|
-
merge?: string;
|
|
540
|
+
merge?: string | undefined;
|
|
541
541
|
/**
|
|
542
542
|
* <p>The list of configuration nodes to reset to default values on target devices. Use JSON
|
|
543
543
|
* pointers to specify each node to reset. JSON pointers start with a forward slash
|
|
@@ -547,7 +547,7 @@ export interface ComponentConfigurationUpdate {
|
|
|
547
547
|
* Guide</i>.</p>
|
|
548
548
|
* @public
|
|
549
549
|
*/
|
|
550
|
-
reset?: string[];
|
|
550
|
+
reset?: string[] | undefined;
|
|
551
551
|
}
|
|
552
552
|
/**
|
|
553
553
|
* @public
|
|
@@ -571,7 +571,7 @@ export interface ComponentDependencyRequirement {
|
|
|
571
571
|
* <p>IoT Greengrass V2 uses semantic version constraints. For more information, see <a href="https://semver.org/">Semantic Versioning</a>.</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
versionRequirement?: string;
|
|
574
|
+
versionRequirement?: string | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>The type of this dependency. Choose from the following options:</p>
|
|
577
577
|
* <ul>
|
|
@@ -590,7 +590,7 @@ export interface ComponentDependencyRequirement {
|
|
|
590
590
|
* </p>
|
|
591
591
|
* @public
|
|
592
592
|
*/
|
|
593
|
-
dependencyType?: ComponentDependencyType;
|
|
593
|
+
dependencyType?: ComponentDependencyType | undefined;
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* <p>Contains information about system resource limits that the IoT Greengrass Core software applies to a
|
|
@@ -603,7 +603,7 @@ export interface SystemResourceLimits {
|
|
|
603
603
|
* the core device.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
memory?: number;
|
|
606
|
+
memory?: number | undefined;
|
|
607
607
|
/**
|
|
608
608
|
* <p>The maximum amount of CPU time that a component's processes can use on the core device. A
|
|
609
609
|
* core device's total CPU time is equivalent to the device's number of CPU cores. For example,
|
|
@@ -614,7 +614,7 @@ export interface SystemResourceLimits {
|
|
|
614
614
|
* software doesn't limit the component's CPU usage.</p>
|
|
615
615
|
* @public
|
|
616
616
|
*/
|
|
617
|
-
cpus?: number;
|
|
617
|
+
cpus?: number | undefined;
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
620
|
* <p>Contains information system user and group that the IoT Greengrass Core software uses to run component
|
|
@@ -633,7 +633,7 @@ export interface ComponentRunWith {
|
|
|
633
633
|
* you configure on the Greengrass nucleus component. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-user">Configure the user and group that run components</a>.</p>
|
|
634
634
|
* @public
|
|
635
635
|
*/
|
|
636
|
-
posixUser?: string;
|
|
636
|
+
posixUser?: string | undefined;
|
|
637
637
|
/**
|
|
638
638
|
* <p>The system resource limits to apply to this component's process on the core device. IoT Greengrass
|
|
639
639
|
* currently supports this feature on only Linux core devices.</p>
|
|
@@ -641,7 +641,7 @@ export interface ComponentRunWith {
|
|
|
641
641
|
* that you configure on the Greengrass nucleus component. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-system-resource-limits">Configure system resource limits for components</a>.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
systemResourceLimits?: SystemResourceLimits;
|
|
644
|
+
systemResourceLimits?: SystemResourceLimits | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>The Windows user to use to run this component on Windows core devices. The user must exist
|
|
647
647
|
* on each Windows core device, and its name and password must be in the LocalSystem account's
|
|
@@ -650,7 +650,7 @@ export interface ComponentRunWith {
|
|
|
650
650
|
* configure on the Greengrass nucleus component. For more information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/configure-greengrass-core-v2.html#configure-component-user">Configure the user and group that run components</a>.</p>
|
|
651
651
|
* @public
|
|
652
652
|
*/
|
|
653
|
-
windowsUser?: string;
|
|
653
|
+
windowsUser?: string | undefined;
|
|
654
654
|
}
|
|
655
655
|
/**
|
|
656
656
|
* <p>Contains information about a component to deploy.</p>
|
|
@@ -672,7 +672,7 @@ export interface ComponentDeploymentSpecification {
|
|
|
672
672
|
* configurations</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
673
673
|
* @public
|
|
674
674
|
*/
|
|
675
|
-
configurationUpdate?: ComponentConfigurationUpdate;
|
|
675
|
+
configurationUpdate?: ComponentConfigurationUpdate | undefined;
|
|
676
676
|
/**
|
|
677
677
|
* <p>The system user and group that the IoT Greengrass Core software uses to run component processes on the
|
|
678
678
|
* core device. If you omit this parameter, the IoT Greengrass Core software uses the system user and group
|
|
@@ -680,7 +680,7 @@ export interface ComponentDeploymentSpecification {
|
|
|
680
680
|
* Guide</i>.</p>
|
|
681
681
|
* @public
|
|
682
682
|
*/
|
|
683
|
-
runWith?: ComponentRunWith;
|
|
683
|
+
runWith?: ComponentRunWith | undefined;
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
* <p>Contains information about a component version in a list.</p>
|
|
@@ -691,17 +691,17 @@ export interface ComponentVersionListItem {
|
|
|
691
691
|
* <p>The name of the component.</p>
|
|
692
692
|
* @public
|
|
693
693
|
*/
|
|
694
|
-
componentName?: string;
|
|
694
|
+
componentName?: string | undefined;
|
|
695
695
|
/**
|
|
696
696
|
* <p>The version of the component.</p>
|
|
697
697
|
* @public
|
|
698
698
|
*/
|
|
699
|
-
componentVersion?: string;
|
|
699
|
+
componentVersion?: string | undefined;
|
|
700
700
|
/**
|
|
701
701
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
702
702
|
* @public
|
|
703
703
|
*/
|
|
704
|
-
arn?: string;
|
|
704
|
+
arn?: string | undefined;
|
|
705
705
|
}
|
|
706
706
|
/**
|
|
707
707
|
* @public
|
|
@@ -725,24 +725,24 @@ export interface ConnectivityInfo {
|
|
|
725
725
|
* <p>An ID for the connectivity information.</p>
|
|
726
726
|
* @public
|
|
727
727
|
*/
|
|
728
|
-
id?: string;
|
|
728
|
+
id?: string | undefined;
|
|
729
729
|
/**
|
|
730
730
|
* <p>The IP address or DNS address where client devices can connect to an MQTT broker on the
|
|
731
731
|
* Greengrass core device.</p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
hostAddress?: string;
|
|
734
|
+
hostAddress?: string | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* <p>The port where the MQTT broker operates on the core device. This port is typically 8883,
|
|
737
737
|
* which is the default port for the MQTT broker component that runs on core devices.</p>
|
|
738
738
|
* @public
|
|
739
739
|
*/
|
|
740
|
-
portNumber?: number;
|
|
740
|
+
portNumber?: number | undefined;
|
|
741
741
|
/**
|
|
742
742
|
* <p>Additional metadata to provide to client devices that connect to this core device.</p>
|
|
743
743
|
* @public
|
|
744
744
|
*/
|
|
745
|
-
metadata?: string;
|
|
745
|
+
metadata?: string | undefined;
|
|
746
746
|
}
|
|
747
747
|
/**
|
|
748
748
|
* @public
|
|
@@ -766,7 +766,7 @@ export interface CoreDevice {
|
|
|
766
766
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
767
767
|
* @public
|
|
768
768
|
*/
|
|
769
|
-
coreDeviceThingName?: string;
|
|
769
|
+
coreDeviceThingName?: string | undefined;
|
|
770
770
|
/**
|
|
771
771
|
* <p>The status of the core device. Core devices can have the following
|
|
772
772
|
* statuses:</p>
|
|
@@ -783,13 +783,13 @@ export interface CoreDevice {
|
|
|
783
783
|
* </ul>
|
|
784
784
|
* @public
|
|
785
785
|
*/
|
|
786
|
-
status?: CoreDeviceStatus;
|
|
786
|
+
status?: CoreDeviceStatus | undefined;
|
|
787
787
|
/**
|
|
788
788
|
* <p>The time at which the core device's status last updated, expressed in ISO 8601
|
|
789
789
|
* format.</p>
|
|
790
790
|
* @public
|
|
791
791
|
*/
|
|
792
|
-
lastStatusUpdateTimestamp?: Date;
|
|
792
|
+
lastStatusUpdateTimestamp?: Date | undefined;
|
|
793
793
|
}
|
|
794
794
|
/**
|
|
795
795
|
* @public
|
|
@@ -876,14 +876,14 @@ export interface LambdaDeviceMount {
|
|
|
876
876
|
* </p>
|
|
877
877
|
* @public
|
|
878
878
|
*/
|
|
879
|
-
permission?: LambdaFilesystemPermission;
|
|
879
|
+
permission?: LambdaFilesystemPermission | undefined;
|
|
880
880
|
/**
|
|
881
881
|
* <p>Whether or not to add the component's system user as an owner of the device.</p>
|
|
882
882
|
* <p>Default: <code>false</code>
|
|
883
883
|
* </p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
addGroupOwner?: boolean;
|
|
886
|
+
addGroupOwner?: boolean | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* <p>Contains information about a volume that Linux processes in a container can access. When
|
|
@@ -909,14 +909,14 @@ export interface LambdaVolumeMount {
|
|
|
909
909
|
* </p>
|
|
910
910
|
* @public
|
|
911
911
|
*/
|
|
912
|
-
permission?: LambdaFilesystemPermission;
|
|
912
|
+
permission?: LambdaFilesystemPermission | undefined;
|
|
913
913
|
/**
|
|
914
914
|
* <p>Whether or not to add the IoT Greengrass user group as an owner of the volume.</p>
|
|
915
915
|
* <p>Default: <code>false</code>
|
|
916
916
|
* </p>
|
|
917
917
|
* @public
|
|
918
918
|
*/
|
|
919
|
-
addGroupOwner?: boolean;
|
|
919
|
+
addGroupOwner?: boolean | undefined;
|
|
920
920
|
}
|
|
921
921
|
/**
|
|
922
922
|
* <p>Contains information about a container in which Lambda functions run on Greengrass core
|
|
@@ -929,7 +929,7 @@ export interface LambdaContainerParams {
|
|
|
929
929
|
* <p>Default: <code>16384</code> (16 MB)</p>
|
|
930
930
|
* @public
|
|
931
931
|
*/
|
|
932
|
-
memorySizeInKB?: number;
|
|
932
|
+
memorySizeInKB?: number | undefined;
|
|
933
933
|
/**
|
|
934
934
|
* <p>Whether or not the container can read information from the device's <code>/sys</code>
|
|
935
935
|
* folder.</p>
|
|
@@ -937,17 +937,17 @@ export interface LambdaContainerParams {
|
|
|
937
937
|
* </p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
mountROSysfs?: boolean;
|
|
940
|
+
mountROSysfs?: boolean | undefined;
|
|
941
941
|
/**
|
|
942
942
|
* <p>The list of volumes that the container can access.</p>
|
|
943
943
|
* @public
|
|
944
944
|
*/
|
|
945
|
-
volumes?: LambdaVolumeMount[];
|
|
945
|
+
volumes?: LambdaVolumeMount[] | undefined;
|
|
946
946
|
/**
|
|
947
947
|
* <p>The list of system devices that the container can access.</p>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
devices?: LambdaDeviceMount[];
|
|
950
|
+
devices?: LambdaDeviceMount[] | undefined;
|
|
951
951
|
}
|
|
952
952
|
/**
|
|
953
953
|
* @public
|
|
@@ -974,12 +974,12 @@ export interface LambdaLinuxProcessParams {
|
|
|
974
974
|
* </p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
isolationMode?: LambdaIsolationMode;
|
|
977
|
+
isolationMode?: LambdaIsolationMode | undefined;
|
|
978
978
|
/**
|
|
979
979
|
* <p>The parameters for the container in which the Lambda function runs.</p>
|
|
980
980
|
* @public
|
|
981
981
|
*/
|
|
982
|
-
containerParams?: LambdaContainerParams;
|
|
982
|
+
containerParams?: LambdaContainerParams | undefined;
|
|
983
983
|
}
|
|
984
984
|
/**
|
|
985
985
|
* <p>Contains parameters for a Lambda function that runs on IoT Greengrass.</p>
|
|
@@ -992,38 +992,38 @@ export interface LambdaExecutionParameters {
|
|
|
992
992
|
* to local publish/subscribe messages and Amazon Web Services IoT Core MQTT messages.</p>
|
|
993
993
|
* @public
|
|
994
994
|
*/
|
|
995
|
-
eventSources?: LambdaEventSource[];
|
|
995
|
+
eventSources?: LambdaEventSource[] | undefined;
|
|
996
996
|
/**
|
|
997
997
|
* <p>The maximum size of the message queue for the Lambda function component. The IoT Greengrass core
|
|
998
998
|
* stores messages in a FIFO (first-in-first-out) queue until it can run the Lambda function to
|
|
999
999
|
* consume each message.</p>
|
|
1000
1000
|
* @public
|
|
1001
1001
|
*/
|
|
1002
|
-
maxQueueSize?: number;
|
|
1002
|
+
maxQueueSize?: number | undefined;
|
|
1003
1003
|
/**
|
|
1004
1004
|
* <p>The maximum number of instances that a non-pinned Lambda function can run at the same
|
|
1005
1005
|
* time.</p>
|
|
1006
1006
|
* @public
|
|
1007
1007
|
*/
|
|
1008
|
-
maxInstancesCount?: number;
|
|
1008
|
+
maxInstancesCount?: number | undefined;
|
|
1009
1009
|
/**
|
|
1010
1010
|
* <p>The maximum amount of time in seconds that a non-pinned Lambda function can idle before the
|
|
1011
1011
|
* IoT Greengrass Core software stops its process.</p>
|
|
1012
1012
|
* @public
|
|
1013
1013
|
*/
|
|
1014
|
-
maxIdleTimeInSeconds?: number;
|
|
1014
|
+
maxIdleTimeInSeconds?: number | undefined;
|
|
1015
1015
|
/**
|
|
1016
1016
|
* <p>The maximum amount of time in seconds that the Lambda function can process a work
|
|
1017
1017
|
* item.</p>
|
|
1018
1018
|
* @public
|
|
1019
1019
|
*/
|
|
1020
|
-
timeoutInSeconds?: number;
|
|
1020
|
+
timeoutInSeconds?: number | undefined;
|
|
1021
1021
|
/**
|
|
1022
1022
|
* <p>The interval in seconds at which a pinned (also known as long-lived) Lambda function
|
|
1023
1023
|
* component sends status updates to the Lambda manager component.</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
statusTimeoutInSeconds?: number;
|
|
1026
|
+
statusTimeoutInSeconds?: number | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>Whether or not the Lambda function is pinned, or long-lived.</p>
|
|
1029
1029
|
* <ul>
|
|
@@ -1041,30 +1041,30 @@ export interface LambdaExecutionParameters {
|
|
|
1041
1041
|
* </p>
|
|
1042
1042
|
* @public
|
|
1043
1043
|
*/
|
|
1044
|
-
pinned?: boolean;
|
|
1044
|
+
pinned?: boolean | undefined;
|
|
1045
1045
|
/**
|
|
1046
1046
|
* <p>The encoding type that the Lambda function supports.</p>
|
|
1047
1047
|
* <p>Default: <code>json</code>
|
|
1048
1048
|
* </p>
|
|
1049
1049
|
* @public
|
|
1050
1050
|
*/
|
|
1051
|
-
inputPayloadEncodingType?: LambdaInputPayloadEncodingType;
|
|
1051
|
+
inputPayloadEncodingType?: LambdaInputPayloadEncodingType | undefined;
|
|
1052
1052
|
/**
|
|
1053
1053
|
* <p>The list of arguments to pass to the Lambda function when it runs.</p>
|
|
1054
1054
|
* @public
|
|
1055
1055
|
*/
|
|
1056
|
-
execArgs?: string[];
|
|
1056
|
+
execArgs?: string[] | undefined;
|
|
1057
1057
|
/**
|
|
1058
1058
|
* <p>The map of environment variables that are available to the Lambda function when it
|
|
1059
1059
|
* runs.</p>
|
|
1060
1060
|
* @public
|
|
1061
1061
|
*/
|
|
1062
|
-
environmentVariables?: Record<string, string
|
|
1062
|
+
environmentVariables?: Record<string, string> | undefined;
|
|
1063
1063
|
/**
|
|
1064
1064
|
* <p>The parameters for the Linux process that contains the Lambda function.</p>
|
|
1065
1065
|
* @public
|
|
1066
1066
|
*/
|
|
1067
|
-
linuxProcessParams?: LambdaLinuxProcessParams;
|
|
1067
|
+
linuxProcessParams?: LambdaLinuxProcessParams | undefined;
|
|
1068
1068
|
}
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Contains information about an Lambda function to import to create a component.</p>
|
|
@@ -1082,30 +1082,30 @@ export interface LambdaFunctionRecipeSource {
|
|
|
1082
1082
|
* <p>Defaults to the name of the Lambda function.</p>
|
|
1083
1083
|
* @public
|
|
1084
1084
|
*/
|
|
1085
|
-
componentName?: string;
|
|
1085
|
+
componentName?: string | undefined;
|
|
1086
1086
|
/**
|
|
1087
1087
|
* <p>The version of the component.</p>
|
|
1088
1088
|
* <p>Defaults to the version of the Lambda function as a semantic version. For example, if your
|
|
1089
1089
|
* function version is <code>3</code>, the component version becomes <code>3.0.0</code>.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
componentVersion?: string;
|
|
1092
|
+
componentVersion?: string | undefined;
|
|
1093
1093
|
/**
|
|
1094
1094
|
* <p>The platforms that the component version supports.</p>
|
|
1095
1095
|
* @public
|
|
1096
1096
|
*/
|
|
1097
|
-
componentPlatforms?: ComponentPlatform[];
|
|
1097
|
+
componentPlatforms?: ComponentPlatform[] | undefined;
|
|
1098
1098
|
/**
|
|
1099
1099
|
* <p>The component versions on which this Lambda function component depends.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
componentDependencies?: Record<string, ComponentDependencyRequirement
|
|
1102
|
+
componentDependencies?: Record<string, ComponentDependencyRequirement> | undefined;
|
|
1103
1103
|
/**
|
|
1104
1104
|
* <p>The system and runtime parameters for the Lambda function as it runs on the Greengrass core
|
|
1105
1105
|
* device.</p>
|
|
1106
1106
|
* @public
|
|
1107
1107
|
*/
|
|
1108
|
-
componentLambdaParameters?: LambdaExecutionParameters;
|
|
1108
|
+
componentLambdaParameters?: LambdaExecutionParameters | undefined;
|
|
1109
1109
|
}
|
|
1110
1110
|
/**
|
|
1111
1111
|
* @public
|
|
@@ -1117,20 +1117,20 @@ export interface CreateComponentVersionRequest {
|
|
|
1117
1117
|
* <p>You must specify either <code>inlineRecipe</code> or <code>lambdaFunction</code>.</p>
|
|
1118
1118
|
* @public
|
|
1119
1119
|
*/
|
|
1120
|
-
inlineRecipe?: Uint8Array;
|
|
1120
|
+
inlineRecipe?: Uint8Array | undefined;
|
|
1121
1121
|
/**
|
|
1122
1122
|
* <p>The parameters to create a component from a Lambda function.</p>
|
|
1123
1123
|
* <p>You must specify either <code>inlineRecipe</code> or <code>lambdaFunction</code>.</p>
|
|
1124
1124
|
* @public
|
|
1125
1125
|
*/
|
|
1126
|
-
lambdaFunction?: LambdaFunctionRecipeSource;
|
|
1126
|
+
lambdaFunction?: LambdaFunctionRecipeSource | undefined;
|
|
1127
1127
|
/**
|
|
1128
1128
|
* <p>A list of key-value pairs that contain metadata for the resource. For more
|
|
1129
1129
|
* information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html">Tag your
|
|
1130
1130
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
1131
1131
|
* @public
|
|
1132
1132
|
*/
|
|
1133
|
-
tags?: Record<string, string
|
|
1133
|
+
tags?: Record<string, string> | undefined;
|
|
1134
1134
|
/**
|
|
1135
1135
|
* <p>A unique, case-sensitive identifier that you can provide to ensure that the request is idempotent.
|
|
1136
1136
|
* Idempotency means that the request is successfully processed only once, even if you send the request multiple times.
|
|
@@ -1139,7 +1139,7 @@ export interface CreateComponentVersionRequest {
|
|
|
1139
1139
|
* idempotent requests for up to 8 hours.</p>
|
|
1140
1140
|
* @public
|
|
1141
1141
|
*/
|
|
1142
|
-
clientToken?: string;
|
|
1142
|
+
clientToken?: string | undefined;
|
|
1143
1143
|
}
|
|
1144
1144
|
/**
|
|
1145
1145
|
* @public
|
|
@@ -1149,7 +1149,7 @@ export interface CreateComponentVersionResponse {
|
|
|
1149
1149
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
1150
1150
|
* @public
|
|
1151
1151
|
*/
|
|
1152
|
-
arn?: string;
|
|
1152
|
+
arn?: string | undefined;
|
|
1153
1153
|
/**
|
|
1154
1154
|
* <p>The name of the component.</p>
|
|
1155
1155
|
* @public
|
|
@@ -1198,12 +1198,12 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
1198
1198
|
* <p>The ID of the resource that exceeds the service quota.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
resourceId?: string;
|
|
1201
|
+
resourceId?: string | undefined;
|
|
1202
1202
|
/**
|
|
1203
1203
|
* <p>The type of the resource that exceeds the service quota.</p>
|
|
1204
1204
|
* @public
|
|
1205
1205
|
*/
|
|
1206
|
-
resourceType?: string;
|
|
1206
|
+
resourceType?: string | undefined;
|
|
1207
1207
|
/**
|
|
1208
1208
|
* <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
|
|
1209
1209
|
* @public
|
|
@@ -1250,7 +1250,7 @@ export interface DeploymentComponentUpdatePolicy {
|
|
|
1250
1250
|
* </p>
|
|
1251
1251
|
* @public
|
|
1252
1252
|
*/
|
|
1253
|
-
timeoutInSeconds?: number;
|
|
1253
|
+
timeoutInSeconds?: number | undefined;
|
|
1254
1254
|
/**
|
|
1255
1255
|
* <p>Whether or not to notify components and wait for components to become safe to update.
|
|
1256
1256
|
* Choose from the following options:</p>
|
|
@@ -1272,7 +1272,7 @@ export interface DeploymentComponentUpdatePolicy {
|
|
|
1272
1272
|
* </p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
action?: DeploymentComponentUpdatePolicyAction;
|
|
1275
|
+
action?: DeploymentComponentUpdatePolicyAction | undefined;
|
|
1276
1276
|
}
|
|
1277
1277
|
/**
|
|
1278
1278
|
* <p>Contains information about how long a component on a core device can validate its
|
|
@@ -1289,7 +1289,7 @@ export interface DeploymentConfigurationValidationPolicy {
|
|
|
1289
1289
|
* </p>
|
|
1290
1290
|
* @public
|
|
1291
1291
|
*/
|
|
1292
|
-
timeoutInSeconds?: number;
|
|
1292
|
+
timeoutInSeconds?: number | undefined;
|
|
1293
1293
|
}
|
|
1294
1294
|
/**
|
|
1295
1295
|
* @public
|
|
@@ -1316,19 +1316,19 @@ export interface DeploymentPolicies {
|
|
|
1316
1316
|
* </p>
|
|
1317
1317
|
* @public
|
|
1318
1318
|
*/
|
|
1319
|
-
failureHandlingPolicy?: DeploymentFailureHandlingPolicy;
|
|
1319
|
+
failureHandlingPolicy?: DeploymentFailureHandlingPolicy | undefined;
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>The component update policy for the configuration deployment. This policy defines when
|
|
1322
1322
|
* it's safe to deploy the configuration to devices.</p>
|
|
1323
1323
|
* @public
|
|
1324
1324
|
*/
|
|
1325
|
-
componentUpdatePolicy?: DeploymentComponentUpdatePolicy;
|
|
1325
|
+
componentUpdatePolicy?: DeploymentComponentUpdatePolicy | undefined;
|
|
1326
1326
|
/**
|
|
1327
1327
|
* <p>The configuration validation policy for the configuration deployment. This policy defines
|
|
1328
1328
|
* how long each component has to validate its configure updates.</p>
|
|
1329
1329
|
* @public
|
|
1330
1330
|
*/
|
|
1331
|
-
configurationValidationPolicy?: DeploymentConfigurationValidationPolicy;
|
|
1331
|
+
configurationValidationPolicy?: DeploymentConfigurationValidationPolicy | undefined;
|
|
1332
1332
|
}
|
|
1333
1333
|
/**
|
|
1334
1334
|
* @public
|
|
@@ -1421,13 +1421,13 @@ export interface IoTJobRateIncreaseCriteria {
|
|
|
1421
1421
|
* increases.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
numberOfNotifiedThings?: number;
|
|
1424
|
+
numberOfNotifiedThings?: number | undefined;
|
|
1425
1425
|
/**
|
|
1426
1426
|
* <p>The number of devices to successfully run the configuration job before the rollout rate
|
|
1427
1427
|
* increases.</p>
|
|
1428
1428
|
* @public
|
|
1429
1429
|
*/
|
|
1430
|
-
numberOfSucceededThings?: number;
|
|
1430
|
+
numberOfSucceededThings?: number | undefined;
|
|
1431
1431
|
}
|
|
1432
1432
|
/**
|
|
1433
1433
|
* <p>Contains information about an exponential rollout rate for a configuration deployment
|
|
@@ -1464,12 +1464,12 @@ export interface IoTJobExecutionsRolloutConfig {
|
|
|
1464
1464
|
* <p>The exponential rate to increase the job rollout rate.</p>
|
|
1465
1465
|
* @public
|
|
1466
1466
|
*/
|
|
1467
|
-
exponentialRate?: IoTJobExponentialRolloutRate;
|
|
1467
|
+
exponentialRate?: IoTJobExponentialRolloutRate | undefined;
|
|
1468
1468
|
/**
|
|
1469
1469
|
* <p>The maximum number of devices that receive a pending job notification, per minute.</p>
|
|
1470
1470
|
* @public
|
|
1471
1471
|
*/
|
|
1472
|
-
maximumPerMinute?: number;
|
|
1472
|
+
maximumPerMinute?: number | undefined;
|
|
1473
1473
|
}
|
|
1474
1474
|
/**
|
|
1475
1475
|
* <p>Contains information about the timeout configuration for a job.</p>
|
|
@@ -1484,7 +1484,7 @@ export interface IoTJobTimeoutConfig {
|
|
|
1484
1484
|
* <p>The timeout interval must be between 1 minute and 7 days (10080 minutes).</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
inProgressTimeoutInMinutes?: number;
|
|
1487
|
+
inProgressTimeoutInMinutes?: number | undefined;
|
|
1488
1488
|
}
|
|
1489
1489
|
/**
|
|
1490
1490
|
* <p>Contains information about an IoT job configuration.</p>
|
|
@@ -1496,19 +1496,19 @@ export interface DeploymentIoTJobConfiguration {
|
|
|
1496
1496
|
* job rolls out to the fleet of target devices.</p>
|
|
1497
1497
|
* @public
|
|
1498
1498
|
*/
|
|
1499
|
-
jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig;
|
|
1499
|
+
jobExecutionsRolloutConfig?: IoTJobExecutionsRolloutConfig | undefined;
|
|
1500
1500
|
/**
|
|
1501
1501
|
* <p>The stop configuration for the job. This configuration defines when and how to stop a job
|
|
1502
1502
|
* rollout.</p>
|
|
1503
1503
|
* @public
|
|
1504
1504
|
*/
|
|
1505
|
-
abortConfig?: IoTJobAbortConfig;
|
|
1505
|
+
abortConfig?: IoTJobAbortConfig | undefined;
|
|
1506
1506
|
/**
|
|
1507
1507
|
* <p>The timeout configuration for the job. This configuration defines the amount of time each
|
|
1508
1508
|
* device has to complete the job.</p>
|
|
1509
1509
|
* @public
|
|
1510
1510
|
*/
|
|
1511
|
-
timeoutConfig?: IoTJobTimeoutConfig;
|
|
1511
|
+
timeoutConfig?: IoTJobTimeoutConfig | undefined;
|
|
1512
1512
|
}
|
|
1513
1513
|
/**
|
|
1514
1514
|
* @public
|
|
@@ -1523,37 +1523,37 @@ export interface CreateDeploymentRequest {
|
|
|
1523
1523
|
* <p>The name of the deployment.</p>
|
|
1524
1524
|
* @public
|
|
1525
1525
|
*/
|
|
1526
|
-
deploymentName?: string;
|
|
1526
|
+
deploymentName?: string | undefined;
|
|
1527
1527
|
/**
|
|
1528
1528
|
* <p>The components to deploy. This is a dictionary, where each key is the name of a component,
|
|
1529
1529
|
* and each key's value is the version and configuration to deploy for that component.</p>
|
|
1530
1530
|
* @public
|
|
1531
1531
|
*/
|
|
1532
|
-
components?: Record<string, ComponentDeploymentSpecification
|
|
1532
|
+
components?: Record<string, ComponentDeploymentSpecification> | undefined;
|
|
1533
1533
|
/**
|
|
1534
1534
|
* <p>The job configuration for the deployment configuration. The job configuration specifies
|
|
1535
1535
|
* the rollout, timeout, and stop configurations for the deployment configuration.</p>
|
|
1536
1536
|
* @public
|
|
1537
1537
|
*/
|
|
1538
|
-
iotJobConfiguration?: DeploymentIoTJobConfiguration;
|
|
1538
|
+
iotJobConfiguration?: DeploymentIoTJobConfiguration | undefined;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* <p>The deployment policies for the deployment. These policies define how the deployment
|
|
1541
1541
|
* updates components and handles failure.</p>
|
|
1542
1542
|
* @public
|
|
1543
1543
|
*/
|
|
1544
|
-
deploymentPolicies?: DeploymentPolicies;
|
|
1544
|
+
deploymentPolicies?: DeploymentPolicies | undefined;
|
|
1545
1545
|
/**
|
|
1546
1546
|
* <p>The parent deployment's target <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> within a subdeployment.</p>
|
|
1547
1547
|
* @public
|
|
1548
1548
|
*/
|
|
1549
|
-
parentTargetArn?: string;
|
|
1549
|
+
parentTargetArn?: string | undefined;
|
|
1550
1550
|
/**
|
|
1551
1551
|
* <p>A list of key-value pairs that contain metadata for the resource. For more
|
|
1552
1552
|
* information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html">Tag your
|
|
1553
1553
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
1554
1554
|
* @public
|
|
1555
1555
|
*/
|
|
1556
|
-
tags?: Record<string, string
|
|
1556
|
+
tags?: Record<string, string> | undefined;
|
|
1557
1557
|
/**
|
|
1558
1558
|
* <p>A unique, case-sensitive identifier that you can provide to ensure that the request is idempotent.
|
|
1559
1559
|
* Idempotency means that the request is successfully processed only once, even if you send the request multiple times.
|
|
@@ -1562,7 +1562,7 @@ export interface CreateDeploymentRequest {
|
|
|
1562
1562
|
* idempotent requests for up to 8 hours.</p>
|
|
1563
1563
|
* @public
|
|
1564
1564
|
*/
|
|
1565
|
-
clientToken?: string;
|
|
1565
|
+
clientToken?: string | undefined;
|
|
1566
1566
|
}
|
|
1567
1567
|
/**
|
|
1568
1568
|
* @public
|
|
@@ -1572,17 +1572,17 @@ export interface CreateDeploymentResponse {
|
|
|
1572
1572
|
* <p>The ID of the deployment.</p>
|
|
1573
1573
|
* @public
|
|
1574
1574
|
*/
|
|
1575
|
-
deploymentId?: string;
|
|
1575
|
+
deploymentId?: string | undefined;
|
|
1576
1576
|
/**
|
|
1577
1577
|
* <p>The ID of the IoT job that applies the deployment to target devices.</p>
|
|
1578
1578
|
* @public
|
|
1579
1579
|
*/
|
|
1580
|
-
iotJobId?: string;
|
|
1580
|
+
iotJobId?: string | undefined;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the IoT job that applies the deployment to target devices.</p>
|
|
1583
1583
|
* @public
|
|
1584
1584
|
*/
|
|
1585
|
-
iotJobArn?: string;
|
|
1585
|
+
iotJobArn?: string | undefined;
|
|
1586
1586
|
}
|
|
1587
1587
|
/**
|
|
1588
1588
|
* @public
|
|
@@ -1638,42 +1638,42 @@ export interface Deployment {
|
|
|
1638
1638
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the target IoT thing or thing group. When creating a subdeployment, the targetARN can only be a thing group.</p>
|
|
1639
1639
|
* @public
|
|
1640
1640
|
*/
|
|
1641
|
-
targetArn?: string;
|
|
1641
|
+
targetArn?: string | undefined;
|
|
1642
1642
|
/**
|
|
1643
1643
|
* <p>The revision number of the deployment.</p>
|
|
1644
1644
|
* @public
|
|
1645
1645
|
*/
|
|
1646
|
-
revisionId?: string;
|
|
1646
|
+
revisionId?: string | undefined;
|
|
1647
1647
|
/**
|
|
1648
1648
|
* <p>The ID of the deployment.</p>
|
|
1649
1649
|
* @public
|
|
1650
1650
|
*/
|
|
1651
|
-
deploymentId?: string;
|
|
1651
|
+
deploymentId?: string | undefined;
|
|
1652
1652
|
/**
|
|
1653
1653
|
* <p>The name of the deployment.</p>
|
|
1654
1654
|
* @public
|
|
1655
1655
|
*/
|
|
1656
|
-
deploymentName?: string;
|
|
1656
|
+
deploymentName?: string | undefined;
|
|
1657
1657
|
/**
|
|
1658
1658
|
* <p>The time at which the deployment was created, expressed in ISO 8601 format.</p>
|
|
1659
1659
|
* @public
|
|
1660
1660
|
*/
|
|
1661
|
-
creationTimestamp?: Date;
|
|
1661
|
+
creationTimestamp?: Date | undefined;
|
|
1662
1662
|
/**
|
|
1663
1663
|
* <p>The status of the deployment.</p>
|
|
1664
1664
|
* @public
|
|
1665
1665
|
*/
|
|
1666
|
-
deploymentStatus?: DeploymentStatus;
|
|
1666
|
+
deploymentStatus?: DeploymentStatus | undefined;
|
|
1667
1667
|
/**
|
|
1668
1668
|
* <p>Whether or not the deployment is the latest revision for its target.</p>
|
|
1669
1669
|
* @public
|
|
1670
1670
|
*/
|
|
1671
|
-
isLatestForTarget?: boolean;
|
|
1671
|
+
isLatestForTarget?: boolean | undefined;
|
|
1672
1672
|
/**
|
|
1673
1673
|
* <p>The parent deployment's target <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> within a subdeployment.</p>
|
|
1674
1674
|
* @public
|
|
1675
1675
|
*/
|
|
1676
|
-
parentTargetArn?: string;
|
|
1676
|
+
parentTargetArn?: string | undefined;
|
|
1677
1677
|
}
|
|
1678
1678
|
/**
|
|
1679
1679
|
* @public
|
|
@@ -1705,50 +1705,50 @@ export interface DescribeComponentResponse {
|
|
|
1705
1705
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
1706
1706
|
* @public
|
|
1707
1707
|
*/
|
|
1708
|
-
arn?: string;
|
|
1708
|
+
arn?: string | undefined;
|
|
1709
1709
|
/**
|
|
1710
1710
|
* <p>The name of the component.</p>
|
|
1711
1711
|
* @public
|
|
1712
1712
|
*/
|
|
1713
|
-
componentName?: string;
|
|
1713
|
+
componentName?: string | undefined;
|
|
1714
1714
|
/**
|
|
1715
1715
|
* <p>The version of the component.</p>
|
|
1716
1716
|
* @public
|
|
1717
1717
|
*/
|
|
1718
|
-
componentVersion?: string;
|
|
1718
|
+
componentVersion?: string | undefined;
|
|
1719
1719
|
/**
|
|
1720
1720
|
* <p>The time at which the component was created, expressed in ISO 8601 format.</p>
|
|
1721
1721
|
* @public
|
|
1722
1722
|
*/
|
|
1723
|
-
creationTimestamp?: Date;
|
|
1723
|
+
creationTimestamp?: Date | undefined;
|
|
1724
1724
|
/**
|
|
1725
1725
|
* <p>The publisher of the component version.</p>
|
|
1726
1726
|
* @public
|
|
1727
1727
|
*/
|
|
1728
|
-
publisher?: string;
|
|
1728
|
+
publisher?: string | undefined;
|
|
1729
1729
|
/**
|
|
1730
1730
|
* <p>The description of the component version.</p>
|
|
1731
1731
|
* @public
|
|
1732
1732
|
*/
|
|
1733
|
-
description?: string;
|
|
1733
|
+
description?: string | undefined;
|
|
1734
1734
|
/**
|
|
1735
1735
|
* <p>The status of the component version in IoT Greengrass V2. This status
|
|
1736
1736
|
* is different from the status of the component on a core device.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
status?: CloudComponentStatus;
|
|
1739
|
+
status?: CloudComponentStatus | undefined;
|
|
1740
1740
|
/**
|
|
1741
1741
|
* <p>The platforms that the component version supports.</p>
|
|
1742
1742
|
* @public
|
|
1743
1743
|
*/
|
|
1744
|
-
platforms?: ComponentPlatform[];
|
|
1744
|
+
platforms?: ComponentPlatform[] | undefined;
|
|
1745
1745
|
/**
|
|
1746
1746
|
* <p>A list of key-value pairs that contain metadata for the resource. For more
|
|
1747
1747
|
* information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html">Tag your
|
|
1748
1748
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
1749
1749
|
* @public
|
|
1750
1750
|
*/
|
|
1751
|
-
tags?: Record<string, string
|
|
1751
|
+
tags?: Record<string, string> | undefined;
|
|
1752
1752
|
}
|
|
1753
1753
|
/**
|
|
1754
1754
|
* @public
|
|
@@ -1764,7 +1764,7 @@ export interface DisassociateServiceRoleFromAccountResponse {
|
|
|
1764
1764
|
* Amazon Web Services Region.</p>
|
|
1765
1765
|
* @public
|
|
1766
1766
|
*/
|
|
1767
|
-
disassociatedAt?: string;
|
|
1767
|
+
disassociatedAt?: string | undefined;
|
|
1768
1768
|
}
|
|
1769
1769
|
/**
|
|
1770
1770
|
* @public
|
|
@@ -1802,14 +1802,14 @@ export interface EffectiveDeploymentStatusDetails {
|
|
|
1802
1802
|
* list if there is no error.</p>
|
|
1803
1803
|
* @public
|
|
1804
1804
|
*/
|
|
1805
|
-
errorStack?: string[];
|
|
1805
|
+
errorStack?: string[] | undefined;
|
|
1806
1806
|
/**
|
|
1807
1807
|
* <p>Contains tags which describe the error. You can use the error types to classify errors to
|
|
1808
1808
|
* assist with remediating the failure. The response will be an empty list if there is no
|
|
1809
1809
|
* error.</p>
|
|
1810
1810
|
* @public
|
|
1811
1811
|
*/
|
|
1812
|
-
errorTypes?: string[];
|
|
1812
|
+
errorTypes?: string[] | undefined;
|
|
1813
1813
|
}
|
|
1814
1814
|
/**
|
|
1815
1815
|
* <p>Contains information about a deployment job that IoT Greengrass sends to a Greengrass core device.</p>
|
|
@@ -1830,17 +1830,17 @@ export interface EffectiveDeployment {
|
|
|
1830
1830
|
* <p>The ID of the IoT job that applies the deployment to target devices.</p>
|
|
1831
1831
|
* @public
|
|
1832
1832
|
*/
|
|
1833
|
-
iotJobId?: string;
|
|
1833
|
+
iotJobId?: string | undefined;
|
|
1834
1834
|
/**
|
|
1835
1835
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the IoT job that applies the deployment to target devices.</p>
|
|
1836
1836
|
* @public
|
|
1837
1837
|
*/
|
|
1838
|
-
iotJobArn?: string;
|
|
1838
|
+
iotJobArn?: string | undefined;
|
|
1839
1839
|
/**
|
|
1840
1840
|
* <p>The description of the deployment job.</p>
|
|
1841
1841
|
* @public
|
|
1842
1842
|
*/
|
|
1843
|
-
description?: string;
|
|
1843
|
+
description?: string | undefined;
|
|
1844
1844
|
/**
|
|
1845
1845
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the target IoT thing or thing group.</p>
|
|
1846
1846
|
* @public
|
|
@@ -1895,7 +1895,7 @@ export interface EffectiveDeployment {
|
|
|
1895
1895
|
* <p>The reason code for the update, if the job was updated.</p>
|
|
1896
1896
|
* @public
|
|
1897
1897
|
*/
|
|
1898
|
-
reason?: string;
|
|
1898
|
+
reason?: string | undefined;
|
|
1899
1899
|
/**
|
|
1900
1900
|
* <p>The time at which the deployment was created, expressed in ISO 8601 format.</p>
|
|
1901
1901
|
* @public
|
|
@@ -1912,7 +1912,7 @@ export interface EffectiveDeployment {
|
|
|
1912
1912
|
* if the deployment is in a success state.</p>
|
|
1913
1913
|
* @public
|
|
1914
1914
|
*/
|
|
1915
|
-
statusDetails?: EffectiveDeploymentStatusDetails;
|
|
1915
|
+
statusDetails?: EffectiveDeploymentStatusDetails | undefined;
|
|
1916
1916
|
}
|
|
1917
1917
|
/**
|
|
1918
1918
|
* @public
|
|
@@ -1934,7 +1934,7 @@ export interface GetComponentRequest {
|
|
|
1934
1934
|
* <p>The format of the recipe.</p>
|
|
1935
1935
|
* @public
|
|
1936
1936
|
*/
|
|
1937
|
-
recipeOutputFormat?: RecipeOutputFormat;
|
|
1937
|
+
recipeOutputFormat?: RecipeOutputFormat | undefined;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
1940
1940
|
* @public
|
|
@@ -1961,7 +1961,7 @@ export interface GetComponentResponse {
|
|
|
1961
1961
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
1962
1962
|
* @public
|
|
1963
1963
|
*/
|
|
1964
|
-
tags?: Record<string, string
|
|
1964
|
+
tags?: Record<string, string> | undefined;
|
|
1965
1965
|
}
|
|
1966
1966
|
/**
|
|
1967
1967
|
* @public
|
|
@@ -2013,14 +2013,14 @@ export interface GetComponentVersionArtifactRequest {
|
|
|
2013
2013
|
* to <code>REGIONAL</code> with this parameter.</p>
|
|
2014
2014
|
* @public
|
|
2015
2015
|
*/
|
|
2016
|
-
s3EndpointType?: S3EndpointType;
|
|
2016
|
+
s3EndpointType?: S3EndpointType | undefined;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* <p>Determines if the Amazon S3 URL returned is a FIPS pre-signed URL endpoint.
|
|
2019
2019
|
* Specify <code>fips</code> if you want the returned Amazon S3 pre-signed URL to point to
|
|
2020
2020
|
* an Amazon S3 FIPS endpoint. If you don't specify a value, the default is <code>standard</code>.</p>
|
|
2021
2021
|
* @public
|
|
2022
2022
|
*/
|
|
2023
|
-
iotEndpointType?: IotEndpointType;
|
|
2023
|
+
iotEndpointType?: IotEndpointType | undefined;
|
|
2024
2024
|
}
|
|
2025
2025
|
/**
|
|
2026
2026
|
* @public
|
|
@@ -2050,12 +2050,12 @@ export interface GetConnectivityInfoResponse {
|
|
|
2050
2050
|
* <p>The connectivity information for the core device.</p>
|
|
2051
2051
|
* @public
|
|
2052
2052
|
*/
|
|
2053
|
-
connectivityInfo?: ConnectivityInfo[];
|
|
2053
|
+
connectivityInfo?: ConnectivityInfo[] | undefined;
|
|
2054
2054
|
/**
|
|
2055
2055
|
* <p>A message about the connectivity information request.</p>
|
|
2056
2056
|
* @public
|
|
2057
2057
|
*/
|
|
2058
|
-
message?: string;
|
|
2058
|
+
message?: string | undefined;
|
|
2059
2059
|
}
|
|
2060
2060
|
/**
|
|
2061
2061
|
* @public
|
|
@@ -2075,7 +2075,7 @@ export interface GetCoreDeviceResponse {
|
|
|
2075
2075
|
* <p>The name of the core device. This is also the name of the IoT thing.</p>
|
|
2076
2076
|
* @public
|
|
2077
2077
|
*/
|
|
2078
|
-
coreDeviceThingName?: string;
|
|
2078
|
+
coreDeviceThingName?: string | undefined;
|
|
2079
2079
|
/**
|
|
2080
2080
|
* <p>The version of the IoT Greengrass Core software that the core device runs. This version is equivalent to
|
|
2081
2081
|
* the version of the Greengrass nucleus component that runs on the core device. For more information,
|
|
@@ -2083,17 +2083,17 @@ export interface GetCoreDeviceResponse {
|
|
|
2083
2083
|
* component</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
2084
2084
|
* @public
|
|
2085
2085
|
*/
|
|
2086
|
-
coreVersion?: string;
|
|
2086
|
+
coreVersion?: string | undefined;
|
|
2087
2087
|
/**
|
|
2088
2088
|
* <p>The operating system platform that the core device runs.</p>
|
|
2089
2089
|
* @public
|
|
2090
2090
|
*/
|
|
2091
|
-
platform?: string;
|
|
2091
|
+
platform?: string | undefined;
|
|
2092
2092
|
/**
|
|
2093
2093
|
* <p>The computer architecture of the core device.</p>
|
|
2094
2094
|
* @public
|
|
2095
2095
|
*/
|
|
2096
|
-
architecture?: string;
|
|
2096
|
+
architecture?: string | undefined;
|
|
2097
2097
|
/**
|
|
2098
2098
|
* <p>The status of the core device. The core device status can be:</p>
|
|
2099
2099
|
* <ul>
|
|
@@ -2109,20 +2109,20 @@ export interface GetCoreDeviceResponse {
|
|
|
2109
2109
|
* </ul>
|
|
2110
2110
|
* @public
|
|
2111
2111
|
*/
|
|
2112
|
-
status?: CoreDeviceStatus;
|
|
2112
|
+
status?: CoreDeviceStatus | undefined;
|
|
2113
2113
|
/**
|
|
2114
2114
|
* <p>The time at which the core device's status last updated, expressed in ISO 8601
|
|
2115
2115
|
* format.</p>
|
|
2116
2116
|
* @public
|
|
2117
2117
|
*/
|
|
2118
|
-
lastStatusUpdateTimestamp?: Date;
|
|
2118
|
+
lastStatusUpdateTimestamp?: Date | undefined;
|
|
2119
2119
|
/**
|
|
2120
2120
|
* <p>A list of key-value pairs that contain metadata for the resource. For more
|
|
2121
2121
|
* information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html">Tag your
|
|
2122
2122
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
2123
2123
|
* @public
|
|
2124
2124
|
*/
|
|
2125
|
-
tags?: Record<string, string
|
|
2125
|
+
tags?: Record<string, string> | undefined;
|
|
2126
2126
|
}
|
|
2127
2127
|
/**
|
|
2128
2128
|
* @public
|
|
@@ -2142,77 +2142,77 @@ export interface GetDeploymentResponse {
|
|
|
2142
2142
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the target IoT thing or thing group.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
targetArn?: string;
|
|
2145
|
+
targetArn?: string | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The revision number of the deployment.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
revisionId?: string;
|
|
2150
|
+
revisionId?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The ID of the deployment.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
deploymentId?: string;
|
|
2155
|
+
deploymentId?: string | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The name of the deployment.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
deploymentName?: string;
|
|
2160
|
+
deploymentName?: string | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The status of the deployment.</p>
|
|
2163
2163
|
* @public
|
|
2164
2164
|
*/
|
|
2165
|
-
deploymentStatus?: DeploymentStatus;
|
|
2165
|
+
deploymentStatus?: DeploymentStatus | undefined;
|
|
2166
2166
|
/**
|
|
2167
2167
|
* <p>The ID of the IoT job that applies the deployment to target devices.</p>
|
|
2168
2168
|
* @public
|
|
2169
2169
|
*/
|
|
2170
|
-
iotJobId?: string;
|
|
2170
|
+
iotJobId?: string | undefined;
|
|
2171
2171
|
/**
|
|
2172
2172
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the IoT job that applies the deployment to target devices.</p>
|
|
2173
2173
|
* @public
|
|
2174
2174
|
*/
|
|
2175
|
-
iotJobArn?: string;
|
|
2175
|
+
iotJobArn?: string | undefined;
|
|
2176
2176
|
/**
|
|
2177
2177
|
* <p>The components to deploy. This is a dictionary, where each key is the name of a component,
|
|
2178
2178
|
* and each key's value is the version and configuration to deploy for that component.</p>
|
|
2179
2179
|
* @public
|
|
2180
2180
|
*/
|
|
2181
|
-
components?: Record<string, ComponentDeploymentSpecification
|
|
2181
|
+
components?: Record<string, ComponentDeploymentSpecification> | undefined;
|
|
2182
2182
|
/**
|
|
2183
2183
|
* <p>The deployment policies for the deployment. These policies define how the deployment
|
|
2184
2184
|
* updates components and handles failure.</p>
|
|
2185
2185
|
* @public
|
|
2186
2186
|
*/
|
|
2187
|
-
deploymentPolicies?: DeploymentPolicies;
|
|
2187
|
+
deploymentPolicies?: DeploymentPolicies | undefined;
|
|
2188
2188
|
/**
|
|
2189
2189
|
* <p>The job configuration for the deployment configuration. The job configuration specifies
|
|
2190
2190
|
* the rollout, timeout, and stop configurations for the deployment configuration.</p>
|
|
2191
2191
|
* @public
|
|
2192
2192
|
*/
|
|
2193
|
-
iotJobConfiguration?: DeploymentIoTJobConfiguration;
|
|
2193
|
+
iotJobConfiguration?: DeploymentIoTJobConfiguration | undefined;
|
|
2194
2194
|
/**
|
|
2195
2195
|
* <p>The time at which the deployment was created, expressed in ISO 8601 format.</p>
|
|
2196
2196
|
* @public
|
|
2197
2197
|
*/
|
|
2198
|
-
creationTimestamp?: Date;
|
|
2198
|
+
creationTimestamp?: Date | undefined;
|
|
2199
2199
|
/**
|
|
2200
2200
|
* <p>Whether or not the deployment is the latest revision for its target.</p>
|
|
2201
2201
|
* @public
|
|
2202
2202
|
*/
|
|
2203
|
-
isLatestForTarget?: boolean;
|
|
2203
|
+
isLatestForTarget?: boolean | undefined;
|
|
2204
2204
|
/**
|
|
2205
2205
|
* <p>The parent deployment's target <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> within a subdeployment.</p>
|
|
2206
2206
|
* @public
|
|
2207
2207
|
*/
|
|
2208
|
-
parentTargetArn?: string;
|
|
2208
|
+
parentTargetArn?: string | undefined;
|
|
2209
2209
|
/**
|
|
2210
2210
|
* <p>A list of key-value pairs that contain metadata for the resource. For more
|
|
2211
2211
|
* information, see <a href="https://docs.aws.amazon.com/greengrass/v2/developerguide/tag-resources.html">Tag your
|
|
2212
2212
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
2213
2213
|
* @public
|
|
2214
2214
|
*/
|
|
2215
|
-
tags?: Record<string, string
|
|
2215
|
+
tags?: Record<string, string> | undefined;
|
|
2216
2216
|
}
|
|
2217
2217
|
/**
|
|
2218
2218
|
* @public
|
|
@@ -2228,13 +2228,13 @@ export interface GetServiceRoleForAccountResponse {
|
|
|
2228
2228
|
* Amazon Web Services Region.</p>
|
|
2229
2229
|
* @public
|
|
2230
2230
|
*/
|
|
2231
|
-
associatedAt?: string;
|
|
2231
|
+
associatedAt?: string | undefined;
|
|
2232
2232
|
/**
|
|
2233
2233
|
* <p>The ARN of the service role that is associated with IoT Greengrass for your Amazon Web Services account in this
|
|
2234
2234
|
* Amazon Web Services Region.</p>
|
|
2235
2235
|
* @public
|
|
2236
2236
|
*/
|
|
2237
|
-
roleArn?: string;
|
|
2237
|
+
roleArn?: string | undefined;
|
|
2238
2238
|
}
|
|
2239
2239
|
/**
|
|
2240
2240
|
* @public
|
|
@@ -2249,12 +2249,12 @@ export interface ListClientDevicesAssociatedWithCoreDeviceRequest {
|
|
|
2249
2249
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2250
2250
|
* @public
|
|
2251
2251
|
*/
|
|
2252
|
-
maxResults?: number;
|
|
2252
|
+
maxResults?: number | undefined;
|
|
2253
2253
|
/**
|
|
2254
2254
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2255
2255
|
* @public
|
|
2256
2256
|
*/
|
|
2257
|
-
nextToken?: string;
|
|
2257
|
+
nextToken?: string | undefined;
|
|
2258
2258
|
}
|
|
2259
2259
|
/**
|
|
2260
2260
|
* @public
|
|
@@ -2264,12 +2264,12 @@ export interface ListClientDevicesAssociatedWithCoreDeviceResponse {
|
|
|
2264
2264
|
* <p>A list that describes the client devices that are associated with the core device.</p>
|
|
2265
2265
|
* @public
|
|
2266
2266
|
*/
|
|
2267
|
-
associatedClientDevices?: AssociatedClientDevice[];
|
|
2267
|
+
associatedClientDevices?: AssociatedClientDevice[] | undefined;
|
|
2268
2268
|
/**
|
|
2269
2269
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2270
2270
|
* @public
|
|
2271
2271
|
*/
|
|
2272
|
-
nextToken?: string;
|
|
2272
|
+
nextToken?: string | undefined;
|
|
2273
2273
|
}
|
|
2274
2274
|
/**
|
|
2275
2275
|
* @public
|
|
@@ -2281,17 +2281,17 @@ export interface ListComponentsRequest {
|
|
|
2281
2281
|
* </p>
|
|
2282
2282
|
* @public
|
|
2283
2283
|
*/
|
|
2284
|
-
scope?: ComponentVisibilityScope;
|
|
2284
|
+
scope?: ComponentVisibilityScope | undefined;
|
|
2285
2285
|
/**
|
|
2286
2286
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2287
2287
|
* @public
|
|
2288
2288
|
*/
|
|
2289
|
-
maxResults?: number;
|
|
2289
|
+
maxResults?: number | undefined;
|
|
2290
2290
|
/**
|
|
2291
2291
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2292
2292
|
* @public
|
|
2293
2293
|
*/
|
|
2294
|
-
nextToken?: string;
|
|
2294
|
+
nextToken?: string | undefined;
|
|
2295
2295
|
}
|
|
2296
2296
|
/**
|
|
2297
2297
|
* @public
|
|
@@ -2301,12 +2301,12 @@ export interface ListComponentsResponse {
|
|
|
2301
2301
|
* <p>A list that summarizes each component.</p>
|
|
2302
2302
|
* @public
|
|
2303
2303
|
*/
|
|
2304
|
-
components?: Component[];
|
|
2304
|
+
components?: Component[] | undefined;
|
|
2305
2305
|
/**
|
|
2306
2306
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2307
2307
|
* @public
|
|
2308
2308
|
*/
|
|
2309
|
-
nextToken?: string;
|
|
2309
|
+
nextToken?: string | undefined;
|
|
2310
2310
|
}
|
|
2311
2311
|
/**
|
|
2312
2312
|
* @public
|
|
@@ -2321,12 +2321,12 @@ export interface ListComponentVersionsRequest {
|
|
|
2321
2321
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2322
2322
|
* @public
|
|
2323
2323
|
*/
|
|
2324
|
-
maxResults?: number;
|
|
2324
|
+
maxResults?: number | undefined;
|
|
2325
2325
|
/**
|
|
2326
2326
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2327
2327
|
* @public
|
|
2328
2328
|
*/
|
|
2329
|
-
nextToken?: string;
|
|
2329
|
+
nextToken?: string | undefined;
|
|
2330
2330
|
}
|
|
2331
2331
|
/**
|
|
2332
2332
|
* @public
|
|
@@ -2336,12 +2336,12 @@ export interface ListComponentVersionsResponse {
|
|
|
2336
2336
|
* <p>A list of versions that exist for the component.</p>
|
|
2337
2337
|
* @public
|
|
2338
2338
|
*/
|
|
2339
|
-
componentVersions?: ComponentVersionListItem[];
|
|
2339
|
+
componentVersions?: ComponentVersionListItem[] | undefined;
|
|
2340
2340
|
/**
|
|
2341
2341
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2342
2342
|
* @public
|
|
2343
2343
|
*/
|
|
2344
|
-
nextToken?: string;
|
|
2344
|
+
nextToken?: string | undefined;
|
|
2345
2345
|
}
|
|
2346
2346
|
/**
|
|
2347
2347
|
* @public
|
|
@@ -2354,7 +2354,7 @@ export interface ListCoreDevicesRequest {
|
|
|
2354
2354
|
* include that core device.</p>
|
|
2355
2355
|
* @public
|
|
2356
2356
|
*/
|
|
2357
|
-
thingGroupArn?: string;
|
|
2357
|
+
thingGroupArn?: string | undefined;
|
|
2358
2358
|
/**
|
|
2359
2359
|
* <p>The core device status by which to filter. If you specify this parameter, the list
|
|
2360
2360
|
* includes only core devices that have this status. Choose one of the following options:</p>
|
|
@@ -2371,17 +2371,17 @@ export interface ListCoreDevicesRequest {
|
|
|
2371
2371
|
* </ul>
|
|
2372
2372
|
* @public
|
|
2373
2373
|
*/
|
|
2374
|
-
status?: CoreDeviceStatus;
|
|
2374
|
+
status?: CoreDeviceStatus | undefined;
|
|
2375
2375
|
/**
|
|
2376
2376
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2377
2377
|
* @public
|
|
2378
2378
|
*/
|
|
2379
|
-
maxResults?: number;
|
|
2379
|
+
maxResults?: number | undefined;
|
|
2380
2380
|
/**
|
|
2381
2381
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2382
2382
|
* @public
|
|
2383
2383
|
*/
|
|
2384
|
-
nextToken?: string;
|
|
2384
|
+
nextToken?: string | undefined;
|
|
2385
2385
|
}
|
|
2386
2386
|
/**
|
|
2387
2387
|
* @public
|
|
@@ -2391,12 +2391,12 @@ export interface ListCoreDevicesResponse {
|
|
|
2391
2391
|
* <p>A list that summarizes each core device.</p>
|
|
2392
2392
|
* @public
|
|
2393
2393
|
*/
|
|
2394
|
-
coreDevices?: CoreDevice[];
|
|
2394
|
+
coreDevices?: CoreDevice[] | undefined;
|
|
2395
2395
|
/**
|
|
2396
2396
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2397
2397
|
* @public
|
|
2398
2398
|
*/
|
|
2399
|
-
nextToken?: string;
|
|
2399
|
+
nextToken?: string | undefined;
|
|
2400
2400
|
}
|
|
2401
2401
|
/**
|
|
2402
2402
|
* @public
|
|
@@ -2406,7 +2406,7 @@ export interface ListDeploymentsRequest {
|
|
|
2406
2406
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the target IoT thing or thing group.</p>
|
|
2407
2407
|
* @public
|
|
2408
2408
|
*/
|
|
2409
|
-
targetArn?: string;
|
|
2409
|
+
targetArn?: string | undefined;
|
|
2410
2410
|
/**
|
|
2411
2411
|
* <p>The filter for the list of deployments. Choose one of the following options:</p>
|
|
2412
2412
|
* <ul>
|
|
@@ -2424,24 +2424,24 @@ export interface ListDeploymentsRequest {
|
|
|
2424
2424
|
* </p>
|
|
2425
2425
|
* @public
|
|
2426
2426
|
*/
|
|
2427
|
-
historyFilter?: DeploymentHistoryFilter;
|
|
2427
|
+
historyFilter?: DeploymentHistoryFilter | undefined;
|
|
2428
2428
|
/**
|
|
2429
2429
|
* <p>The parent deployment's target <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> within a subdeployment.</p>
|
|
2430
2430
|
* @public
|
|
2431
2431
|
*/
|
|
2432
|
-
parentTargetArn?: string;
|
|
2432
|
+
parentTargetArn?: string | undefined;
|
|
2433
2433
|
/**
|
|
2434
2434
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2435
2435
|
* <p>Default: <code>50</code>
|
|
2436
2436
|
* </p>
|
|
2437
2437
|
* @public
|
|
2438
2438
|
*/
|
|
2439
|
-
maxResults?: number;
|
|
2439
|
+
maxResults?: number | undefined;
|
|
2440
2440
|
/**
|
|
2441
2441
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2442
2442
|
* @public
|
|
2443
2443
|
*/
|
|
2444
|
-
nextToken?: string;
|
|
2444
|
+
nextToken?: string | undefined;
|
|
2445
2445
|
}
|
|
2446
2446
|
/**
|
|
2447
2447
|
* @public
|
|
@@ -2451,12 +2451,12 @@ export interface ListDeploymentsResponse {
|
|
|
2451
2451
|
* <p>A list that summarizes each deployment.</p>
|
|
2452
2452
|
* @public
|
|
2453
2453
|
*/
|
|
2454
|
-
deployments?: Deployment[];
|
|
2454
|
+
deployments?: Deployment[] | undefined;
|
|
2455
2455
|
/**
|
|
2456
2456
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2457
2457
|
* @public
|
|
2458
2458
|
*/
|
|
2459
|
-
nextToken?: string;
|
|
2459
|
+
nextToken?: string | undefined;
|
|
2460
2460
|
}
|
|
2461
2461
|
/**
|
|
2462
2462
|
* @public
|
|
@@ -2471,12 +2471,12 @@ export interface ListEffectiveDeploymentsRequest {
|
|
|
2471
2471
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2472
2472
|
* @public
|
|
2473
2473
|
*/
|
|
2474
|
-
maxResults?: number;
|
|
2474
|
+
maxResults?: number | undefined;
|
|
2475
2475
|
/**
|
|
2476
2476
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2477
2477
|
* @public
|
|
2478
2478
|
*/
|
|
2479
|
-
nextToken?: string;
|
|
2479
|
+
nextToken?: string | undefined;
|
|
2480
2480
|
}
|
|
2481
2481
|
/**
|
|
2482
2482
|
* @public
|
|
@@ -2486,12 +2486,12 @@ export interface ListEffectiveDeploymentsResponse {
|
|
|
2486
2486
|
* <p>A list that summarizes each deployment on the core device.</p>
|
|
2487
2487
|
* @public
|
|
2488
2488
|
*/
|
|
2489
|
-
effectiveDeployments?: EffectiveDeployment[];
|
|
2489
|
+
effectiveDeployments?: EffectiveDeployment[] | undefined;
|
|
2490
2490
|
/**
|
|
2491
2491
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2492
2492
|
* @public
|
|
2493
2493
|
*/
|
|
2494
|
-
nextToken?: string;
|
|
2494
|
+
nextToken?: string | undefined;
|
|
2495
2495
|
}
|
|
2496
2496
|
/**
|
|
2497
2497
|
* @public
|
|
@@ -2518,12 +2518,12 @@ export interface ListInstalledComponentsRequest {
|
|
|
2518
2518
|
* <p>The maximum number of results to be returned per paginated request.</p>
|
|
2519
2519
|
* @public
|
|
2520
2520
|
*/
|
|
2521
|
-
maxResults?: number;
|
|
2521
|
+
maxResults?: number | undefined;
|
|
2522
2522
|
/**
|
|
2523
2523
|
* <p>The token to be used for the next set of paginated results.</p>
|
|
2524
2524
|
* @public
|
|
2525
2525
|
*/
|
|
2526
|
-
nextToken?: string;
|
|
2526
|
+
nextToken?: string | undefined;
|
|
2527
2527
|
/**
|
|
2528
2528
|
* <p>The filter for the list of components. Choose from the following options:</p>
|
|
2529
2529
|
* <ul>
|
|
@@ -2544,7 +2544,7 @@ export interface ListInstalledComponentsRequest {
|
|
|
2544
2544
|
* </p>
|
|
2545
2545
|
* @public
|
|
2546
2546
|
*/
|
|
2547
|
-
topologyFilter?: InstalledComponentTopologyFilter;
|
|
2547
|
+
topologyFilter?: InstalledComponentTopologyFilter | undefined;
|
|
2548
2548
|
}
|
|
2549
2549
|
/**
|
|
2550
2550
|
* @public
|
|
@@ -2573,28 +2573,28 @@ export interface InstalledComponent {
|
|
|
2573
2573
|
* <p>The name of the component.</p>
|
|
2574
2574
|
* @public
|
|
2575
2575
|
*/
|
|
2576
|
-
componentName?: string;
|
|
2576
|
+
componentName?: string | undefined;
|
|
2577
2577
|
/**
|
|
2578
2578
|
* <p>The version of the component.</p>
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
|
-
componentVersion?: string;
|
|
2581
|
+
componentVersion?: string | undefined;
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>The lifecycle state of the component.</p>
|
|
2584
2584
|
* @public
|
|
2585
2585
|
*/
|
|
2586
|
-
lifecycleState?: InstalledComponentLifecycleState;
|
|
2586
|
+
lifecycleState?: InstalledComponentLifecycleState | undefined;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* <p>A detailed response about the lifecycle state of the component that explains the reason
|
|
2589
2589
|
* why a component has an error or is broken.</p>
|
|
2590
2590
|
* @public
|
|
2591
2591
|
*/
|
|
2592
|
-
lifecycleStateDetails?: string;
|
|
2592
|
+
lifecycleStateDetails?: string | undefined;
|
|
2593
2593
|
/**
|
|
2594
2594
|
* <p>Whether or not the component is a root component.</p>
|
|
2595
2595
|
* @public
|
|
2596
2596
|
*/
|
|
2597
|
-
isRoot?: boolean;
|
|
2597
|
+
isRoot?: boolean | undefined;
|
|
2598
2598
|
/**
|
|
2599
2599
|
* <p>The status of how current the data is.</p>
|
|
2600
2600
|
* <p>This response is based off of component state changes. The status reflects component
|
|
@@ -2602,14 +2602,14 @@ export interface InstalledComponent {
|
|
|
2602
2602
|
* deployment, it might not undergo a state change and this status would not be updated.</p>
|
|
2603
2603
|
* @public
|
|
2604
2604
|
*/
|
|
2605
|
-
lastStatusChangeTimestamp?: Date;
|
|
2605
|
+
lastStatusChangeTimestamp?: Date | undefined;
|
|
2606
2606
|
/**
|
|
2607
2607
|
* <p>The last time the Greengrass core device sent a message containing a component's state to the
|
|
2608
2608
|
* Amazon Web Services Cloud.</p>
|
|
2609
2609
|
* <p>A component does not need to see a state change for this field to update.</p>
|
|
2610
2610
|
* @public
|
|
2611
2611
|
*/
|
|
2612
|
-
lastReportedTimestamp?: Date;
|
|
2612
|
+
lastReportedTimestamp?: Date | undefined;
|
|
2613
2613
|
/**
|
|
2614
2614
|
* <p>The most recent deployment source that brought the component to the Greengrass core device. For
|
|
2615
2615
|
* a thing group deployment or thing deployment, the source will be the ID of the last deployment
|
|
@@ -2620,7 +2620,7 @@ export interface InstalledComponent {
|
|
|
2620
2620
|
* </note>
|
|
2621
2621
|
* @public
|
|
2622
2622
|
*/
|
|
2623
|
-
lastInstallationSource?: string;
|
|
2623
|
+
lastInstallationSource?: string | undefined;
|
|
2624
2624
|
/**
|
|
2625
2625
|
* <p>The status codes that indicate the reason for failure whenever the
|
|
2626
2626
|
* <code>lifecycleState</code> has an error or is in a broken state.</p>
|
|
@@ -2631,7 +2631,7 @@ export interface InstalledComponent {
|
|
|
2631
2631
|
* </note>
|
|
2632
2632
|
* @public
|
|
2633
2633
|
*/
|
|
2634
|
-
lifecycleStatusCodes?: string[];
|
|
2634
|
+
lifecycleStatusCodes?: string[] | undefined;
|
|
2635
2635
|
}
|
|
2636
2636
|
/**
|
|
2637
2637
|
* @public
|
|
@@ -2651,12 +2651,12 @@ export interface ListInstalledComponentsResponse {
|
|
|
2651
2651
|
* </note>
|
|
2652
2652
|
* @public
|
|
2653
2653
|
*/
|
|
2654
|
-
installedComponents?: InstalledComponent[];
|
|
2654
|
+
installedComponents?: InstalledComponent[] | undefined;
|
|
2655
2655
|
/**
|
|
2656
2656
|
* <p>The token for the next set of results, or null if there are no additional results.</p>
|
|
2657
2657
|
* @public
|
|
2658
2658
|
*/
|
|
2659
|
-
nextToken?: string;
|
|
2659
|
+
nextToken?: string | undefined;
|
|
2660
2660
|
}
|
|
2661
2661
|
/**
|
|
2662
2662
|
* @public
|
|
@@ -2678,7 +2678,7 @@ export interface ListTagsForResourceResponse {
|
|
|
2678
2678
|
* resources</a> in the <i>IoT Greengrass V2 Developer Guide</i>.</p>
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
tags?: Record<string, string
|
|
2681
|
+
tags?: Record<string, string> | undefined;
|
|
2682
2682
|
}
|
|
2683
2683
|
/**
|
|
2684
2684
|
* @public
|
|
@@ -2688,12 +2688,12 @@ export interface ResolveComponentCandidatesRequest {
|
|
|
2688
2688
|
* <p>The platform to use to resolve compatible components.</p>
|
|
2689
2689
|
* @public
|
|
2690
2690
|
*/
|
|
2691
|
-
platform?: ComponentPlatform;
|
|
2691
|
+
platform?: ComponentPlatform | undefined;
|
|
2692
2692
|
/**
|
|
2693
2693
|
* <p>The list of components to resolve.</p>
|
|
2694
2694
|
* @public
|
|
2695
2695
|
*/
|
|
2696
|
-
componentCandidates?: ComponentCandidate[];
|
|
2696
|
+
componentCandidates?: ComponentCandidate[] | undefined;
|
|
2697
2697
|
}
|
|
2698
2698
|
/**
|
|
2699
2699
|
* <p>Contains information about a component version that is compatible to run on a Greengrass core
|
|
@@ -2705,22 +2705,22 @@ export interface ResolvedComponentVersion {
|
|
|
2705
2705
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">ARN</a> of the component version.</p>
|
|
2706
2706
|
* @public
|
|
2707
2707
|
*/
|
|
2708
|
-
arn?: string;
|
|
2708
|
+
arn?: string | undefined;
|
|
2709
2709
|
/**
|
|
2710
2710
|
* <p>The name of the component.</p>
|
|
2711
2711
|
* @public
|
|
2712
2712
|
*/
|
|
2713
|
-
componentName?: string;
|
|
2713
|
+
componentName?: string | undefined;
|
|
2714
2714
|
/**
|
|
2715
2715
|
* <p>The version of the component.</p>
|
|
2716
2716
|
* @public
|
|
2717
2717
|
*/
|
|
2718
|
-
componentVersion?: string;
|
|
2718
|
+
componentVersion?: string | undefined;
|
|
2719
2719
|
/**
|
|
2720
2720
|
* <p>The recipe of the component version.</p>
|
|
2721
2721
|
* @public
|
|
2722
2722
|
*/
|
|
2723
|
-
recipe?: Uint8Array;
|
|
2723
|
+
recipe?: Uint8Array | undefined;
|
|
2724
2724
|
/**
|
|
2725
2725
|
* <p>The vendor guidance state for the component version. This state indicates whether
|
|
2726
2726
|
* the component version has any issues that you should consider before you deploy it. The vendor guidance state can be:</p>
|
|
@@ -2742,13 +2742,13 @@ export interface ResolvedComponentVersion {
|
|
|
2742
2742
|
* </ul>
|
|
2743
2743
|
* @public
|
|
2744
2744
|
*/
|
|
2745
|
-
vendorGuidance?: VendorGuidance;
|
|
2745
|
+
vendorGuidance?: VendorGuidance | undefined;
|
|
2746
2746
|
/**
|
|
2747
2747
|
* <p>A message that communicates details about the vendor guidance state
|
|
2748
2748
|
* of the component version. This message communicates why a component version is discontinued or deleted.</p>
|
|
2749
2749
|
* @public
|
|
2750
2750
|
*/
|
|
2751
|
-
message?: string;
|
|
2751
|
+
message?: string | undefined;
|
|
2752
2752
|
}
|
|
2753
2753
|
/**
|
|
2754
2754
|
* @public
|
|
@@ -2759,7 +2759,7 @@ export interface ResolveComponentCandidatesResponse {
|
|
|
2759
2759
|
* includes each component's recipe that you can use to install the component.</p>
|
|
2760
2760
|
* @public
|
|
2761
2761
|
*/
|
|
2762
|
-
resolvedComponentVersions?: ResolvedComponentVersion[];
|
|
2762
|
+
resolvedComponentVersions?: ResolvedComponentVersion[] | undefined;
|
|
2763
2763
|
}
|
|
2764
2764
|
/**
|
|
2765
2765
|
* @public
|
|
@@ -2826,10 +2826,10 @@ export interface UpdateConnectivityInfoResponse {
|
|
|
2826
2826
|
* <p>The new version of the connectivity information for the core device.</p>
|
|
2827
2827
|
* @public
|
|
2828
2828
|
*/
|
|
2829
|
-
version?: string;
|
|
2829
|
+
version?: string | undefined;
|
|
2830
2830
|
/**
|
|
2831
2831
|
* <p>A message about the connectivity information update request.</p>
|
|
2832
2832
|
* @public
|
|
2833
2833
|
*/
|
|
2834
|
-
message?: string;
|
|
2834
|
+
message?: string | undefined;
|
|
2835
2835
|
}
|