@aws-sdk/client-greengrassv2 3.952.0 → 3.954.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +444 -303
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/AssociateServiceRoleToAccountCommand.js +2 -2
- package/dist-es/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.js +2 -2
- package/dist-es/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.js +2 -2
- package/dist-es/commands/CancelDeploymentCommand.js +2 -2
- package/dist-es/commands/CreateComponentVersionCommand.js +2 -2
- package/dist-es/commands/CreateDeploymentCommand.js +2 -2
- package/dist-es/commands/DeleteComponentCommand.js +2 -2
- package/dist-es/commands/DeleteCoreDeviceCommand.js +2 -2
- package/dist-es/commands/DeleteDeploymentCommand.js +2 -2
- package/dist-es/commands/DescribeComponentCommand.js +2 -2
- package/dist-es/commands/DisassociateServiceRoleFromAccountCommand.js +2 -2
- package/dist-es/commands/GetComponentCommand.js +2 -2
- package/dist-es/commands/GetComponentVersionArtifactCommand.js +2 -2
- package/dist-es/commands/GetConnectivityInfoCommand.js +2 -2
- package/dist-es/commands/GetCoreDeviceCommand.js +2 -2
- package/dist-es/commands/GetDeploymentCommand.js +2 -2
- package/dist-es/commands/GetServiceRoleForAccountCommand.js +2 -2
- package/dist-es/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.js +2 -2
- package/dist-es/commands/ListComponentVersionsCommand.js +2 -2
- package/dist-es/commands/ListComponentsCommand.js +2 -2
- package/dist-es/commands/ListCoreDevicesCommand.js +2 -2
- package/dist-es/commands/ListDeploymentsCommand.js +2 -2
- package/dist-es/commands/ListEffectiveDeploymentsCommand.js +2 -2
- package/dist-es/commands/ListInstalledComponentsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ResolveComponentCandidatesCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateConnectivityInfoCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +272 -265
- package/dist-types/GreengrassV2Client.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +135 -169
- package/dist-types/ts3.4/GreengrassV2Client.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +134 -170
- package/package.json +34 -34
package/dist-cjs/index.js
CHANGED
|
@@ -110,14 +110,14 @@ class GreengrassV2Client extends smithyClient.Client {
|
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
|
|
113
|
-
|
|
113
|
+
class GreengrassV2ServiceException extends smithyClient.ServiceException {
|
|
114
114
|
constructor(options) {
|
|
115
115
|
super(options);
|
|
116
116
|
Object.setPrototypeOf(this, GreengrassV2ServiceException.prototype);
|
|
117
117
|
}
|
|
118
|
-
}
|
|
118
|
+
}
|
|
119
119
|
|
|
120
|
-
|
|
120
|
+
class AccessDeniedException extends GreengrassV2ServiceException {
|
|
121
121
|
name = "AccessDeniedException";
|
|
122
122
|
$fault = "client";
|
|
123
123
|
constructor(opts) {
|
|
@@ -128,8 +128,8 @@ let AccessDeniedException$1 = class AccessDeniedException extends GreengrassV2Se
|
|
|
128
128
|
});
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
131
|
+
}
|
|
132
|
+
class InternalServerException extends GreengrassV2ServiceException {
|
|
133
133
|
name = "InternalServerException";
|
|
134
134
|
$fault = "server";
|
|
135
135
|
retryAfterSeconds;
|
|
@@ -142,8 +142,8 @@ let InternalServerException$1 = class InternalServerException extends Greengrass
|
|
|
142
142
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
143
143
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
144
144
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
145
|
+
}
|
|
146
|
+
class ValidationException extends GreengrassV2ServiceException {
|
|
147
147
|
name = "ValidationException";
|
|
148
148
|
$fault = "client";
|
|
149
149
|
reason;
|
|
@@ -158,8 +158,8 @@ let ValidationException$1 = class ValidationException extends GreengrassV2Servic
|
|
|
158
158
|
this.reason = opts.reason;
|
|
159
159
|
this.fields = opts.fields;
|
|
160
160
|
}
|
|
161
|
-
}
|
|
162
|
-
|
|
161
|
+
}
|
|
162
|
+
class ResourceNotFoundException extends GreengrassV2ServiceException {
|
|
163
163
|
name = "ResourceNotFoundException";
|
|
164
164
|
$fault = "client";
|
|
165
165
|
resourceId;
|
|
@@ -174,8 +174,8 @@ let ResourceNotFoundException$1 = class ResourceNotFoundException extends Greeng
|
|
|
174
174
|
this.resourceId = opts.resourceId;
|
|
175
175
|
this.resourceType = opts.resourceType;
|
|
176
176
|
}
|
|
177
|
-
}
|
|
178
|
-
|
|
177
|
+
}
|
|
178
|
+
class ThrottlingException extends GreengrassV2ServiceException {
|
|
179
179
|
name = "ThrottlingException";
|
|
180
180
|
$fault = "client";
|
|
181
181
|
quotaCode;
|
|
@@ -192,8 +192,8 @@ let ThrottlingException$1 = class ThrottlingException extends GreengrassV2Servic
|
|
|
192
192
|
this.serviceCode = opts.serviceCode;
|
|
193
193
|
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
194
194
|
}
|
|
195
|
-
}
|
|
196
|
-
|
|
195
|
+
}
|
|
196
|
+
class ConflictException extends GreengrassV2ServiceException {
|
|
197
197
|
name = "ConflictException";
|
|
198
198
|
$fault = "client";
|
|
199
199
|
resourceId;
|
|
@@ -208,8 +208,8 @@ let ConflictException$1 = class ConflictException extends GreengrassV2ServiceExc
|
|
|
208
208
|
this.resourceId = opts.resourceId;
|
|
209
209
|
this.resourceType = opts.resourceType;
|
|
210
210
|
}
|
|
211
|
-
}
|
|
212
|
-
|
|
211
|
+
}
|
|
212
|
+
class RequestAlreadyInProgressException extends GreengrassV2ServiceException {
|
|
213
213
|
name = "RequestAlreadyInProgressException";
|
|
214
214
|
$fault = "client";
|
|
215
215
|
constructor(opts) {
|
|
@@ -220,8 +220,8 @@ let RequestAlreadyInProgressException$1 = class RequestAlreadyInProgressExceptio
|
|
|
220
220
|
});
|
|
221
221
|
Object.setPrototypeOf(this, RequestAlreadyInProgressException.prototype);
|
|
222
222
|
}
|
|
223
|
-
}
|
|
224
|
-
|
|
223
|
+
}
|
|
224
|
+
class ServiceQuotaExceededException extends GreengrassV2ServiceException {
|
|
225
225
|
name = "ServiceQuotaExceededException";
|
|
226
226
|
$fault = "client";
|
|
227
227
|
resourceId;
|
|
@@ -240,7 +240,7 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
240
240
|
this.quotaCode = opts.quotaCode;
|
|
241
241
|
this.serviceCode = opts.serviceCode;
|
|
242
242
|
}
|
|
243
|
-
}
|
|
243
|
+
}
|
|
244
244
|
|
|
245
245
|
const _AA = "AssociatedAt";
|
|
246
246
|
const _ACD = "AssociatedClientDevice";
|
|
@@ -572,10 +572,10 @@ const _ve = "version";
|
|
|
572
572
|
const _wU = "windowsUser";
|
|
573
573
|
const _xaiet = "x-amz-iot-endpoint-type";
|
|
574
574
|
const n0 = "com.amazonaws.greengrassv2";
|
|
575
|
-
var AccessDeniedException = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
576
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException
|
|
577
|
-
var AssociateClientDeviceWithCoreDeviceEntry = [3, n0, _ACDWCDE, 0, [_tN], [0]];
|
|
578
|
-
var AssociateClientDeviceWithCoreDeviceErrorEntry = [
|
|
575
|
+
var AccessDeniedException$ = [-3, n0, _ADE, { [_e]: _c, [_hE]: 403 }, [_m], [0]];
|
|
576
|
+
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
577
|
+
var AssociateClientDeviceWithCoreDeviceEntry$ = [3, n0, _ACDWCDE, 0, [_tN], [0]];
|
|
578
|
+
var AssociateClientDeviceWithCoreDeviceErrorEntry$ = [
|
|
579
579
|
3,
|
|
580
580
|
n0,
|
|
581
581
|
_ACDWCDEE,
|
|
@@ -583,8 +583,8 @@ var AssociateClientDeviceWithCoreDeviceErrorEntry = [
|
|
|
583
583
|
[_tN, _co, _m],
|
|
584
584
|
[0, 0, 0],
|
|
585
585
|
];
|
|
586
|
-
var AssociatedClientDevice = [3, n0, _ACD, 0, [_tN, _aT], [0, 4]];
|
|
587
|
-
var AssociateServiceRoleToAccountRequest = [
|
|
586
|
+
var AssociatedClientDevice$ = [3, n0, _ACD, 0, [_tN, _aT], [0, 4]];
|
|
587
|
+
var AssociateServiceRoleToAccountRequest$ = [
|
|
588
588
|
3,
|
|
589
589
|
n0,
|
|
590
590
|
_ASRTAR,
|
|
@@ -592,7 +592,7 @@ var AssociateServiceRoleToAccountRequest = [
|
|
|
592
592
|
[_rA],
|
|
593
593
|
[[0, { [_jN]: _RA }]],
|
|
594
594
|
];
|
|
595
|
-
var AssociateServiceRoleToAccountResponse = [
|
|
595
|
+
var AssociateServiceRoleToAccountResponse$ = [
|
|
596
596
|
3,
|
|
597
597
|
n0,
|
|
598
598
|
_ASRTARs,
|
|
@@ -600,7 +600,7 @@ var AssociateServiceRoleToAccountResponse = [
|
|
|
600
600
|
[_aA],
|
|
601
601
|
[[0, { [_jN]: _AA }]],
|
|
602
602
|
];
|
|
603
|
-
var BatchAssociateClientDeviceWithCoreDeviceRequest = [
|
|
603
|
+
var BatchAssociateClientDeviceWithCoreDeviceRequest$ = [
|
|
604
604
|
3,
|
|
605
605
|
n0,
|
|
606
606
|
_BACDWCDR,
|
|
@@ -608,7 +608,7 @@ var BatchAssociateClientDeviceWithCoreDeviceRequest = [
|
|
|
608
608
|
[_en, _cDTN],
|
|
609
609
|
[() => AssociateClientDeviceWithCoreDeviceEntryList, [0, 1]],
|
|
610
610
|
];
|
|
611
|
-
var BatchAssociateClientDeviceWithCoreDeviceResponse = [
|
|
611
|
+
var BatchAssociateClientDeviceWithCoreDeviceResponse$ = [
|
|
612
612
|
3,
|
|
613
613
|
n0,
|
|
614
614
|
_BACDWCDRa,
|
|
@@ -616,7 +616,7 @@ var BatchAssociateClientDeviceWithCoreDeviceResponse = [
|
|
|
616
616
|
[_eE],
|
|
617
617
|
[() => AssociateClientDeviceWithCoreDeviceErrorList],
|
|
618
618
|
];
|
|
619
|
-
var BatchDisassociateClientDeviceFromCoreDeviceRequest = [
|
|
619
|
+
var BatchDisassociateClientDeviceFromCoreDeviceRequest$ = [
|
|
620
620
|
3,
|
|
621
621
|
n0,
|
|
622
622
|
_BDCDFCDR,
|
|
@@ -624,7 +624,7 @@ var BatchDisassociateClientDeviceFromCoreDeviceRequest = [
|
|
|
624
624
|
[_en, _cDTN],
|
|
625
625
|
[() => DisassociateClientDeviceFromCoreDeviceEntryList, [0, 1]],
|
|
626
626
|
];
|
|
627
|
-
var BatchDisassociateClientDeviceFromCoreDeviceResponse = [
|
|
627
|
+
var BatchDisassociateClientDeviceFromCoreDeviceResponse$ = [
|
|
628
628
|
3,
|
|
629
629
|
n0,
|
|
630
630
|
_BDCDFCDRa,
|
|
@@ -632,9 +632,9 @@ var BatchDisassociateClientDeviceFromCoreDeviceResponse = [
|
|
|
632
632
|
[_eE],
|
|
633
633
|
[() => DisassociateClientDeviceFromCoreDeviceErrorList],
|
|
634
634
|
];
|
|
635
|
-
var CancelDeploymentRequest = [3, n0, _CDR, 0, [_dI], [[0, 1]]];
|
|
636
|
-
var CancelDeploymentResponse = [3, n0, _CDRa, 0, [_m], [0]];
|
|
637
|
-
var CloudComponentStatus = [
|
|
635
|
+
var CancelDeploymentRequest$ = [3, n0, _CDR, 0, [_dI], [[0, 1]]];
|
|
636
|
+
var CancelDeploymentResponse$ = [3, n0, _CDRa, 0, [_m], [0]];
|
|
637
|
+
var CloudComponentStatus$ = [
|
|
638
638
|
3,
|
|
639
639
|
n0,
|
|
640
640
|
_CCS,
|
|
@@ -642,19 +642,19 @@ var CloudComponentStatus = [
|
|
|
642
642
|
[_cS, _m, _er, _vG, _vGM],
|
|
643
643
|
[0, 0, 128 | 0, 0, 0],
|
|
644
644
|
];
|
|
645
|
-
var Component = [3, n0, _C, 0, [_a, _cN, _lV], [0, 0, () => ComponentLatestVersion]];
|
|
646
|
-
var ComponentCandidate = [3, n0, _CC, 0, [_cN, _cV, _vR], [0, 0, 128 | 0]];
|
|
647
|
-
var ComponentConfigurationUpdate = [3, n0, _CCU, 0, [_me, _r], [0, 64 | 0]];
|
|
648
|
-
var ComponentDependencyRequirement = [3, n0, _CDRo, 0, [_vRe, _dT], [0, 0]];
|
|
649
|
-
var ComponentDeploymentSpecification = [
|
|
645
|
+
var Component$ = [3, n0, _C, 0, [_a, _cN, _lV], [0, 0, () => ComponentLatestVersion$]];
|
|
646
|
+
var ComponentCandidate$ = [3, n0, _CC, 0, [_cN, _cV, _vR], [0, 0, 128 | 0]];
|
|
647
|
+
var ComponentConfigurationUpdate$ = [3, n0, _CCU, 0, [_me, _r], [0, 64 | 0]];
|
|
648
|
+
var ComponentDependencyRequirement$ = [3, n0, _CDRo, 0, [_vRe, _dT], [0, 0]];
|
|
649
|
+
var ComponentDeploymentSpecification$ = [
|
|
650
650
|
3,
|
|
651
651
|
n0,
|
|
652
652
|
_CDS,
|
|
653
653
|
0,
|
|
654
654
|
[_cV, _cU, _rW],
|
|
655
|
-
[0, () => ComponentConfigurationUpdate
|
|
655
|
+
[0, () => ComponentConfigurationUpdate$, () => ComponentRunWith$],
|
|
656
656
|
];
|
|
657
|
-
var ComponentLatestVersion = [
|
|
657
|
+
var ComponentLatestVersion$ = [
|
|
658
658
|
3,
|
|
659
659
|
n0,
|
|
660
660
|
_CLV,
|
|
@@ -662,19 +662,19 @@ var ComponentLatestVersion = [
|
|
|
662
662
|
[_a, _cV, _cT, _d, _p, _pl],
|
|
663
663
|
[0, 0, 4, 0, 0, () => ComponentPlatformList],
|
|
664
664
|
];
|
|
665
|
-
var ComponentPlatform = [3, n0, _CP, 0, [_n, _at], [0, 128 | 0]];
|
|
666
|
-
var ComponentRunWith = [
|
|
665
|
+
var ComponentPlatform$ = [3, n0, _CP, 0, [_n, _at], [0, 128 | 0]];
|
|
666
|
+
var ComponentRunWith$ = [
|
|
667
667
|
3,
|
|
668
668
|
n0,
|
|
669
669
|
_CRW,
|
|
670
670
|
0,
|
|
671
671
|
[_pU, _sRL, _wU],
|
|
672
|
-
[0, () => SystemResourceLimits
|
|
672
|
+
[0, () => SystemResourceLimits$, 0],
|
|
673
673
|
];
|
|
674
|
-
var ComponentVersionListItem = [3, n0, _CVLI, 0, [_cN, _cV, _a], [0, 0, 0]];
|
|
675
|
-
var ConflictException = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
676
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException
|
|
677
|
-
var ConnectivityInfo = [
|
|
674
|
+
var ComponentVersionListItem$ = [3, n0, _CVLI, 0, [_cN, _cV, _a], [0, 0, 0]];
|
|
675
|
+
var ConflictException$ = [-3, n0, _CE, { [_e]: _c, [_hE]: 409 }, [_m, _rI, _rT], [0, 0, 0]];
|
|
676
|
+
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
677
|
+
var ConnectivityInfo$ = [
|
|
678
678
|
3,
|
|
679
679
|
n0,
|
|
680
680
|
_CI,
|
|
@@ -687,24 +687,24 @@ var ConnectivityInfo = [
|
|
|
687
687
|
[0, { [_jN]: _M }],
|
|
688
688
|
],
|
|
689
689
|
];
|
|
690
|
-
var CoreDevice = [3, n0, _CD, 0, [_cDTN, _s, _lSUT, _pla, _ar, _ru], [0, 0, 4, 0, 0, 0]];
|
|
691
|
-
var CreateComponentVersionRequest = [
|
|
690
|
+
var CoreDevice$ = [3, n0, _CD, 0, [_cDTN, _s, _lSUT, _pla, _ar, _ru], [0, 0, 4, 0, 0, 0]];
|
|
691
|
+
var CreateComponentVersionRequest$ = [
|
|
692
692
|
3,
|
|
693
693
|
n0,
|
|
694
694
|
_CCVR,
|
|
695
695
|
0,
|
|
696
696
|
[_iR, _lF, _t, _cTl],
|
|
697
|
-
[21, () => LambdaFunctionRecipeSource
|
|
697
|
+
[21, () => LambdaFunctionRecipeSource$, 128 | 0, [0, 4]],
|
|
698
698
|
];
|
|
699
|
-
var CreateComponentVersionResponse = [
|
|
699
|
+
var CreateComponentVersionResponse$ = [
|
|
700
700
|
3,
|
|
701
701
|
n0,
|
|
702
702
|
_CCVRr,
|
|
703
703
|
0,
|
|
704
704
|
[_a, _cN, _cV, _cT, _s],
|
|
705
|
-
[0, 0, 0, 4, () => CloudComponentStatus],
|
|
705
|
+
[0, 0, 0, 4, () => CloudComponentStatus$],
|
|
706
706
|
];
|
|
707
|
-
var CreateDeploymentRequest = [
|
|
707
|
+
var CreateDeploymentRequest$ = [
|
|
708
708
|
3,
|
|
709
709
|
n0,
|
|
710
710
|
_CDRr,
|
|
@@ -714,18 +714,18 @@ var CreateDeploymentRequest = [
|
|
|
714
714
|
0,
|
|
715
715
|
0,
|
|
716
716
|
() => ComponentDeploymentSpecifications,
|
|
717
|
-
() => DeploymentIoTJobConfiguration
|
|
718
|
-
() => DeploymentPolicies
|
|
717
|
+
() => DeploymentIoTJobConfiguration$,
|
|
718
|
+
() => DeploymentPolicies$,
|
|
719
719
|
0,
|
|
720
720
|
128 | 0,
|
|
721
721
|
[0, 4],
|
|
722
722
|
],
|
|
723
723
|
];
|
|
724
|
-
var CreateDeploymentResponse = [3, n0, _CDRre, 0, [_dI, _iJI, _iJA], [0, 0, 0]];
|
|
725
|
-
var DeleteComponentRequest = [3, n0, _DCR, 0, [_a], [[0, 1]]];
|
|
726
|
-
var DeleteCoreDeviceRequest = [3, n0, _DCDR, 0, [_cDTN], [[0, 1]]];
|
|
727
|
-
var DeleteDeploymentRequest = [3, n0, _DDR, 0, [_dI], [[0, 1]]];
|
|
728
|
-
var Deployment = [
|
|
724
|
+
var CreateDeploymentResponse$ = [3, n0, _CDRre, 0, [_dI, _iJI, _iJA], [0, 0, 0]];
|
|
725
|
+
var DeleteComponentRequest$ = [3, n0, _DCR, 0, [_a], [[0, 1]]];
|
|
726
|
+
var DeleteCoreDeviceRequest$ = [3, n0, _DCDR, 0, [_cDTN], [[0, 1]]];
|
|
727
|
+
var DeleteDeploymentRequest$ = [3, n0, _DDR, 0, [_dI], [[0, 1]]];
|
|
728
|
+
var Deployment$ = [
|
|
729
729
|
3,
|
|
730
730
|
n0,
|
|
731
731
|
_D,
|
|
@@ -733,35 +733,35 @@ var Deployment = [
|
|
|
733
733
|
[_tA, _rIe, _dI, _dN, _cT, _dS, _iLFT, _pTA],
|
|
734
734
|
[0, 0, 0, 0, 4, 0, 2, 0],
|
|
735
735
|
];
|
|
736
|
-
var DeploymentComponentUpdatePolicy = [3, n0, _DCUP, 0, [_tIS, _ac], [1, 0]];
|
|
737
|
-
var DeploymentConfigurationValidationPolicy = [3, n0, _DCVP, 0, [_tIS], [1]];
|
|
738
|
-
var DeploymentIoTJobConfiguration = [
|
|
736
|
+
var DeploymentComponentUpdatePolicy$ = [3, n0, _DCUP, 0, [_tIS, _ac], [1, 0]];
|
|
737
|
+
var DeploymentConfigurationValidationPolicy$ = [3, n0, _DCVP, 0, [_tIS], [1]];
|
|
738
|
+
var DeploymentIoTJobConfiguration$ = [
|
|
739
739
|
3,
|
|
740
740
|
n0,
|
|
741
741
|
_DITJC,
|
|
742
742
|
0,
|
|
743
743
|
[_jERC, _aC, _tC],
|
|
744
|
-
[() => IoTJobExecutionsRolloutConfig
|
|
744
|
+
[() => IoTJobExecutionsRolloutConfig$, () => IoTJobAbortConfig$, () => IoTJobTimeoutConfig$],
|
|
745
745
|
];
|
|
746
|
-
var DeploymentPolicies = [
|
|
746
|
+
var DeploymentPolicies$ = [
|
|
747
747
|
3,
|
|
748
748
|
n0,
|
|
749
749
|
_DP,
|
|
750
750
|
0,
|
|
751
751
|
[_fHP, _cUP, _cVP],
|
|
752
|
-
[0, () => DeploymentComponentUpdatePolicy
|
|
752
|
+
[0, () => DeploymentComponentUpdatePolicy$, () => DeploymentConfigurationValidationPolicy$],
|
|
753
753
|
];
|
|
754
|
-
var DescribeComponentRequest = [3, n0, _DCRe, 0, [_a], [[0, 1]]];
|
|
755
|
-
var DescribeComponentResponse = [
|
|
754
|
+
var DescribeComponentRequest$ = [3, n0, _DCRe, 0, [_a], [[0, 1]]];
|
|
755
|
+
var DescribeComponentResponse$ = [
|
|
756
756
|
3,
|
|
757
757
|
n0,
|
|
758
758
|
_DCRes,
|
|
759
759
|
0,
|
|
760
760
|
[_a, _cN, _cV, _cT, _p, _d, _s, _pl, _t],
|
|
761
|
-
[0, 0, 0, 4, 0, 0, () => CloudComponentStatus
|
|
761
|
+
[0, 0, 0, 4, 0, 0, () => CloudComponentStatus$, () => ComponentPlatformList, 128 | 0],
|
|
762
762
|
];
|
|
763
|
-
var DisassociateClientDeviceFromCoreDeviceEntry = [3, n0, _DCDFCDE, 0, [_tN], [0]];
|
|
764
|
-
var DisassociateClientDeviceFromCoreDeviceErrorEntry = [
|
|
763
|
+
var DisassociateClientDeviceFromCoreDeviceEntry$ = [3, n0, _DCDFCDE, 0, [_tN], [0]];
|
|
764
|
+
var DisassociateClientDeviceFromCoreDeviceErrorEntry$ = [
|
|
765
765
|
3,
|
|
766
766
|
n0,
|
|
767
767
|
_DCDFCDEE,
|
|
@@ -769,8 +769,8 @@ var DisassociateClientDeviceFromCoreDeviceErrorEntry = [
|
|
|
769
769
|
[_tN, _co, _m],
|
|
770
770
|
[0, 0, 0],
|
|
771
771
|
];
|
|
772
|
-
var DisassociateServiceRoleFromAccountRequest = [3, n0, _DSRFAR, 0, [], []];
|
|
773
|
-
var DisassociateServiceRoleFromAccountResponse = [
|
|
772
|
+
var DisassociateServiceRoleFromAccountRequest$ = [3, n0, _DSRFAR, 0, [], []];
|
|
773
|
+
var DisassociateServiceRoleFromAccountResponse$ = [
|
|
774
774
|
3,
|
|
775
775
|
n0,
|
|
776
776
|
_DSRFARi,
|
|
@@ -778,16 +778,16 @@ var DisassociateServiceRoleFromAccountResponse = [
|
|
|
778
778
|
[_dA],
|
|
779
779
|
[[0, { [_jN]: _DA }]],
|
|
780
780
|
];
|
|
781
|
-
var EffectiveDeployment = [
|
|
781
|
+
var EffectiveDeployment$ = [
|
|
782
782
|
3,
|
|
783
783
|
n0,
|
|
784
784
|
_ED,
|
|
785
785
|
0,
|
|
786
786
|
[_dI, _dN, _iJI, _iJA, _d, _tA, _cDES, _re, _cT, _mT, _sD],
|
|
787
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EffectiveDeploymentStatusDetails],
|
|
787
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 4, 4, () => EffectiveDeploymentStatusDetails$],
|
|
788
788
|
];
|
|
789
|
-
var EffectiveDeploymentStatusDetails = [3, n0, _EDSD, 0, [_eS, _eT], [64 | 0, 64 | 0]];
|
|
790
|
-
var GetComponentRequest = [
|
|
789
|
+
var EffectiveDeploymentStatusDetails$ = [3, n0, _EDSD, 0, [_eS, _eT], [64 | 0, 64 | 0]];
|
|
790
|
+
var GetComponentRequest$ = [
|
|
791
791
|
3,
|
|
792
792
|
n0,
|
|
793
793
|
_GCR,
|
|
@@ -798,8 +798,8 @@ var GetComponentRequest = [
|
|
|
798
798
|
[0, 1],
|
|
799
799
|
],
|
|
800
800
|
];
|
|
801
|
-
var GetComponentResponse = [3, n0, _GCRe, 0, [_rOF, _rec, _t], [0, 21, 128 | 0]];
|
|
802
|
-
var GetComponentVersionArtifactRequest = [
|
|
801
|
+
var GetComponentResponse$ = [3, n0, _GCRe, 0, [_rOF, _rec, _t], [0, 21, 128 | 0]];
|
|
802
|
+
var GetComponentVersionArtifactRequest$ = [
|
|
803
803
|
3,
|
|
804
804
|
n0,
|
|
805
805
|
_GCVAR,
|
|
@@ -812,9 +812,9 @@ var GetComponentVersionArtifactRequest = [
|
|
|
812
812
|
[0, { [_hH]: _xaiet }],
|
|
813
813
|
],
|
|
814
814
|
];
|
|
815
|
-
var GetComponentVersionArtifactResponse = [3, n0, _GCVARe, 0, [_pSU], [0]];
|
|
816
|
-
var GetConnectivityInfoRequest = [3, n0, _GCIR, 0, [_tN], [[0, 1]]];
|
|
817
|
-
var GetConnectivityInfoResponse = [
|
|
815
|
+
var GetComponentVersionArtifactResponse$ = [3, n0, _GCVARe, 0, [_pSU], [0]];
|
|
816
|
+
var GetConnectivityInfoRequest$ = [3, n0, _GCIR, 0, [_tN], [[0, 1]]];
|
|
817
|
+
var GetConnectivityInfoResponse$ = [
|
|
818
818
|
3,
|
|
819
819
|
n0,
|
|
820
820
|
_GCIRe,
|
|
@@ -825,8 +825,8 @@ var GetConnectivityInfoResponse = [
|
|
|
825
825
|
[0, { [_jN]: _Me }],
|
|
826
826
|
],
|
|
827
827
|
];
|
|
828
|
-
var GetCoreDeviceRequest = [3, n0, _GCDR, 0, [_cDTN], [[0, 1]]];
|
|
829
|
-
var GetCoreDeviceResponse = [
|
|
828
|
+
var GetCoreDeviceRequest$ = [3, n0, _GCDR, 0, [_cDTN], [[0, 1]]];
|
|
829
|
+
var GetCoreDeviceResponse$ = [
|
|
830
830
|
3,
|
|
831
831
|
n0,
|
|
832
832
|
_GCDRe,
|
|
@@ -834,8 +834,8 @@ var GetCoreDeviceResponse = [
|
|
|
834
834
|
[_cDTN, _cVo, _pla, _ar, _ru, _s, _lSUT, _t],
|
|
835
835
|
[0, 0, 0, 0, 0, 0, 4, 128 | 0],
|
|
836
836
|
];
|
|
837
|
-
var GetDeploymentRequest = [3, n0, _GDR, 0, [_dI], [[0, 1]]];
|
|
838
|
-
var GetDeploymentResponse = [
|
|
837
|
+
var GetDeploymentRequest$ = [3, n0, _GDR, 0, [_dI], [[0, 1]]];
|
|
838
|
+
var GetDeploymentResponse$ = [
|
|
839
839
|
3,
|
|
840
840
|
n0,
|
|
841
841
|
_GDRe,
|
|
@@ -850,16 +850,16 @@ var GetDeploymentResponse = [
|
|
|
850
850
|
0,
|
|
851
851
|
0,
|
|
852
852
|
() => ComponentDeploymentSpecifications,
|
|
853
|
-
() => DeploymentPolicies
|
|
854
|
-
() => DeploymentIoTJobConfiguration
|
|
853
|
+
() => DeploymentPolicies$,
|
|
854
|
+
() => DeploymentIoTJobConfiguration$,
|
|
855
855
|
4,
|
|
856
856
|
2,
|
|
857
857
|
0,
|
|
858
858
|
128 | 0,
|
|
859
859
|
],
|
|
860
860
|
];
|
|
861
|
-
var GetServiceRoleForAccountRequest = [3, n0, _GSRFAR, 0, [], []];
|
|
862
|
-
var GetServiceRoleForAccountResponse = [
|
|
861
|
+
var GetServiceRoleForAccountRequest$ = [3, n0, _GSRFAR, 0, [], []];
|
|
862
|
+
var GetServiceRoleForAccountResponse$ = [
|
|
863
863
|
3,
|
|
864
864
|
n0,
|
|
865
865
|
_GSRFARe,
|
|
@@ -870,7 +870,7 @@ var GetServiceRoleForAccountResponse = [
|
|
|
870
870
|
[0, { [_jN]: _RA }],
|
|
871
871
|
],
|
|
872
872
|
];
|
|
873
|
-
var InstalledComponent = [
|
|
873
|
+
var InstalledComponent$ = [
|
|
874
874
|
3,
|
|
875
875
|
n0,
|
|
876
876
|
_IC,
|
|
@@ -878,7 +878,7 @@ var InstalledComponent = [
|
|
|
878
878
|
[_cN, _cV, _lS, _lSD, _iRs, _lSCT, _lRT, _lIS, _lSC],
|
|
879
879
|
[0, 0, 0, 0, 2, 4, 4, 0, 64 | 0],
|
|
880
880
|
];
|
|
881
|
-
var InternalServerException = [
|
|
881
|
+
var InternalServerException$ = [
|
|
882
882
|
-3,
|
|
883
883
|
n0,
|
|
884
884
|
_ISE,
|
|
@@ -886,28 +886,28 @@ var InternalServerException = [
|
|
|
886
886
|
[_m, _rAS],
|
|
887
887
|
[0, [1, { [_hH]: _RA_ }]],
|
|
888
888
|
];
|
|
889
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException
|
|
890
|
-
var IoTJobAbortConfig = [3, n0, _ITJAC, 0, [_cL], [() => IoTJobAbortCriteriaList]];
|
|
891
|
-
var IoTJobAbortCriteria = [3, n0, _ITJACo, 0, [_fT, _ac, _tP, _mNOET], [0, 0, 1, 1]];
|
|
892
|
-
var IoTJobExecutionsRolloutConfig = [
|
|
889
|
+
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
890
|
+
var IoTJobAbortConfig$ = [3, n0, _ITJAC, 0, [_cL], [() => IoTJobAbortCriteriaList]];
|
|
891
|
+
var IoTJobAbortCriteria$ = [3, n0, _ITJACo, 0, [_fT, _ac, _tP, _mNOET], [0, 0, 1, 1]];
|
|
892
|
+
var IoTJobExecutionsRolloutConfig$ = [
|
|
893
893
|
3,
|
|
894
894
|
n0,
|
|
895
895
|
_ITJERC,
|
|
896
896
|
0,
|
|
897
897
|
[_eR, _mPM],
|
|
898
|
-
[() => IoTJobExponentialRolloutRate
|
|
898
|
+
[() => IoTJobExponentialRolloutRate$, 1],
|
|
899
899
|
];
|
|
900
|
-
var IoTJobExponentialRolloutRate = [
|
|
900
|
+
var IoTJobExponentialRolloutRate$ = [
|
|
901
901
|
3,
|
|
902
902
|
n0,
|
|
903
903
|
_ITJERR,
|
|
904
904
|
0,
|
|
905
905
|
[_bRPM, _iF, _rIC],
|
|
906
|
-
[1, 1, () => IoTJobRateIncreaseCriteria],
|
|
906
|
+
[1, 1, () => IoTJobRateIncreaseCriteria$],
|
|
907
907
|
];
|
|
908
|
-
var IoTJobRateIncreaseCriteria = [3, n0, _ITJRIC, 0, [_nONT, _nOST], [1, 1]];
|
|
909
|
-
var IoTJobTimeoutConfig = [3, n0, _ITJTC, 0, [_iPTIM], [1]];
|
|
910
|
-
var LambdaContainerParams = [
|
|
908
|
+
var IoTJobRateIncreaseCriteria$ = [3, n0, _ITJRIC, 0, [_nONT, _nOST], [1, 1]];
|
|
909
|
+
var IoTJobTimeoutConfig$ = [3, n0, _ITJTC, 0, [_iPTIM], [1]];
|
|
910
|
+
var LambdaContainerParams$ = [
|
|
911
911
|
3,
|
|
912
912
|
n0,
|
|
913
913
|
_LCP,
|
|
@@ -915,34 +915,34 @@ var LambdaContainerParams = [
|
|
|
915
915
|
[_mSIKB, _mROS, _v, _de],
|
|
916
916
|
[1, 2, () => LambdaVolumeList, () => LambdaDeviceList],
|
|
917
917
|
];
|
|
918
|
-
var LambdaDeviceMount = [3, n0, _LDM, 0, [_pa, _pe, _aGO], [0, 0, 2]];
|
|
919
|
-
var LambdaEventSource = [3, n0, _LES, 0, [_to, _ty], [0, 0]];
|
|
920
|
-
var LambdaExecutionParameters = [
|
|
918
|
+
var LambdaDeviceMount$ = [3, n0, _LDM, 0, [_pa, _pe, _aGO], [0, 0, 2]];
|
|
919
|
+
var LambdaEventSource$ = [3, n0, _LES, 0, [_to, _ty], [0, 0]];
|
|
920
|
+
var LambdaExecutionParameters$ = [
|
|
921
921
|
3,
|
|
922
922
|
n0,
|
|
923
923
|
_LEP,
|
|
924
924
|
0,
|
|
925
925
|
[_eSv, _mQS, _mIC, _mITIS, _tIS, _sTIS, _pi, _iPET, _eA, _eV, _lPP],
|
|
926
|
-
[() => LambdaEventSourceList, 1, 1, 1, 1, 1, 2, 0, 64 | 0, 128 | 0, () => LambdaLinuxProcessParams],
|
|
926
|
+
[() => LambdaEventSourceList, 1, 1, 1, 1, 1, 2, 0, 64 | 0, 128 | 0, () => LambdaLinuxProcessParams$],
|
|
927
927
|
];
|
|
928
|
-
var LambdaFunctionRecipeSource = [
|
|
928
|
+
var LambdaFunctionRecipeSource$ = [
|
|
929
929
|
3,
|
|
930
930
|
n0,
|
|
931
931
|
_LFRS,
|
|
932
932
|
0,
|
|
933
933
|
[_lA, _cN, _cV, _cP, _cD, _cLP],
|
|
934
|
-
[0, 0, 0, () => ComponentPlatformList, () => ComponentDependencyMap, () => LambdaExecutionParameters],
|
|
934
|
+
[0, 0, 0, () => ComponentPlatformList, () => ComponentDependencyMap, () => LambdaExecutionParameters$],
|
|
935
935
|
];
|
|
936
|
-
var LambdaLinuxProcessParams = [
|
|
936
|
+
var LambdaLinuxProcessParams$ = [
|
|
937
937
|
3,
|
|
938
938
|
n0,
|
|
939
939
|
_LLPP,
|
|
940
940
|
0,
|
|
941
941
|
[_iM, _cPo],
|
|
942
|
-
[0, () => LambdaContainerParams],
|
|
942
|
+
[0, () => LambdaContainerParams$],
|
|
943
943
|
];
|
|
944
|
-
var LambdaVolumeMount = [3, n0, _LVM, 0, [_sP, _dPe, _pe, _aGO], [0, 0, 0, 2]];
|
|
945
|
-
var ListClientDevicesAssociatedWithCoreDeviceRequest = [
|
|
944
|
+
var LambdaVolumeMount$ = [3, n0, _LVM, 0, [_sP, _dPe, _pe, _aGO], [0, 0, 0, 2]];
|
|
945
|
+
var ListClientDevicesAssociatedWithCoreDeviceRequest$ = [
|
|
946
946
|
3,
|
|
947
947
|
n0,
|
|
948
948
|
_LCDAWCDR,
|
|
@@ -954,7 +954,7 @@ var ListClientDevicesAssociatedWithCoreDeviceRequest = [
|
|
|
954
954
|
[0, { [_hQ]: _nT }],
|
|
955
955
|
],
|
|
956
956
|
];
|
|
957
|
-
var ListClientDevicesAssociatedWithCoreDeviceResponse = [
|
|
957
|
+
var ListClientDevicesAssociatedWithCoreDeviceResponse$ = [
|
|
958
958
|
3,
|
|
959
959
|
n0,
|
|
960
960
|
_LCDAWCDRi,
|
|
@@ -962,7 +962,7 @@ var ListClientDevicesAssociatedWithCoreDeviceResponse = [
|
|
|
962
962
|
[_aCD, _nT],
|
|
963
963
|
[() => AssociatedClientDeviceList, 0],
|
|
964
964
|
];
|
|
965
|
-
var ListComponentsRequest = [
|
|
965
|
+
var ListComponentsRequest$ = [
|
|
966
966
|
3,
|
|
967
967
|
n0,
|
|
968
968
|
_LCR,
|
|
@@ -974,8 +974,8 @@ var ListComponentsRequest = [
|
|
|
974
974
|
[0, { [_hQ]: _nT }],
|
|
975
975
|
],
|
|
976
976
|
];
|
|
977
|
-
var ListComponentsResponse = [3, n0, _LCRi, 0, [_com, _nT], [() => ComponentList, 0]];
|
|
978
|
-
var ListComponentVersionsRequest = [
|
|
977
|
+
var ListComponentsResponse$ = [3, n0, _LCRi, 0, [_com, _nT], [() => ComponentList, 0]];
|
|
978
|
+
var ListComponentVersionsRequest$ = [
|
|
979
979
|
3,
|
|
980
980
|
n0,
|
|
981
981
|
_LCVR,
|
|
@@ -987,7 +987,7 @@ var ListComponentVersionsRequest = [
|
|
|
987
987
|
[0, { [_hQ]: _nT }],
|
|
988
988
|
],
|
|
989
989
|
];
|
|
990
|
-
var ListComponentVersionsResponse = [
|
|
990
|
+
var ListComponentVersionsResponse$ = [
|
|
991
991
|
3,
|
|
992
992
|
n0,
|
|
993
993
|
_LCVRi,
|
|
@@ -995,7 +995,7 @@ var ListComponentVersionsResponse = [
|
|
|
995
995
|
[_cVom, _nT],
|
|
996
996
|
[() => ComponentVersionList, 0],
|
|
997
997
|
];
|
|
998
|
-
var ListCoreDevicesRequest = [
|
|
998
|
+
var ListCoreDevicesRequest$ = [
|
|
999
999
|
3,
|
|
1000
1000
|
n0,
|
|
1001
1001
|
_LCDR,
|
|
@@ -1009,8 +1009,15 @@ var ListCoreDevicesRequest = [
|
|
|
1009
1009
|
[0, { [_hQ]: _ru }],
|
|
1010
1010
|
],
|
|
1011
1011
|
];
|
|
1012
|
-
var ListCoreDevicesResponse = [
|
|
1013
|
-
|
|
1012
|
+
var ListCoreDevicesResponse$ = [
|
|
1013
|
+
3,
|
|
1014
|
+
n0,
|
|
1015
|
+
_LCDRi,
|
|
1016
|
+
0,
|
|
1017
|
+
[_cDo, _nT],
|
|
1018
|
+
[() => CoreDevicesList, 0],
|
|
1019
|
+
];
|
|
1020
|
+
var ListDeploymentsRequest$ = [
|
|
1014
1021
|
3,
|
|
1015
1022
|
n0,
|
|
1016
1023
|
_LDR,
|
|
@@ -1024,8 +1031,8 @@ var ListDeploymentsRequest = [
|
|
|
1024
1031
|
[0, { [_hQ]: _nT }],
|
|
1025
1032
|
],
|
|
1026
1033
|
];
|
|
1027
|
-
var ListDeploymentsResponse = [3, n0, _LDRi, 0, [_dep, _nT], [() => DeploymentList, 0]];
|
|
1028
|
-
var ListEffectiveDeploymentsRequest = [
|
|
1034
|
+
var ListDeploymentsResponse$ = [3, n0, _LDRi, 0, [_dep, _nT], [() => DeploymentList, 0]];
|
|
1035
|
+
var ListEffectiveDeploymentsRequest$ = [
|
|
1029
1036
|
3,
|
|
1030
1037
|
n0,
|
|
1031
1038
|
_LEDR,
|
|
@@ -1037,7 +1044,7 @@ var ListEffectiveDeploymentsRequest = [
|
|
|
1037
1044
|
[0, { [_hQ]: _nT }],
|
|
1038
1045
|
],
|
|
1039
1046
|
];
|
|
1040
|
-
var ListEffectiveDeploymentsResponse = [
|
|
1047
|
+
var ListEffectiveDeploymentsResponse$ = [
|
|
1041
1048
|
3,
|
|
1042
1049
|
n0,
|
|
1043
1050
|
_LEDRi,
|
|
@@ -1045,7 +1052,7 @@ var ListEffectiveDeploymentsResponse = [
|
|
|
1045
1052
|
[_eD, _nT],
|
|
1046
1053
|
[() => EffectiveDeploymentsList, 0],
|
|
1047
1054
|
];
|
|
1048
|
-
var ListInstalledComponentsRequest = [
|
|
1055
|
+
var ListInstalledComponentsRequest$ = [
|
|
1049
1056
|
3,
|
|
1050
1057
|
n0,
|
|
1051
1058
|
_LICR,
|
|
@@ -1058,7 +1065,7 @@ var ListInstalledComponentsRequest = [
|
|
|
1058
1065
|
[0, { [_hQ]: _tF }],
|
|
1059
1066
|
],
|
|
1060
1067
|
];
|
|
1061
|
-
var ListInstalledComponentsResponse = [
|
|
1068
|
+
var ListInstalledComponentsResponse$ = [
|
|
1062
1069
|
3,
|
|
1063
1070
|
n0,
|
|
1064
1071
|
_LICRi,
|
|
@@ -1066,19 +1073,26 @@ var ListInstalledComponentsResponse = [
|
|
|
1066
1073
|
[_iC, _nT],
|
|
1067
1074
|
[() => InstalledComponentList, 0],
|
|
1068
1075
|
];
|
|
1069
|
-
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
1070
|
-
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1071
|
-
var RequestAlreadyInProgressException = [
|
|
1072
|
-
|
|
1073
|
-
|
|
1076
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
|
|
1077
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi, 0, [_t], [128 | 0]];
|
|
1078
|
+
var RequestAlreadyInProgressException$ = [
|
|
1079
|
+
-3,
|
|
1080
|
+
n0,
|
|
1081
|
+
_RAIPE,
|
|
1082
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1083
|
+
[_m],
|
|
1084
|
+
[0],
|
|
1085
|
+
];
|
|
1086
|
+
schema.TypeRegistry.for(n0).registerError(RequestAlreadyInProgressException$, RequestAlreadyInProgressException);
|
|
1087
|
+
var ResolveComponentCandidatesRequest$ = [
|
|
1074
1088
|
3,
|
|
1075
1089
|
n0,
|
|
1076
1090
|
_RCCR,
|
|
1077
1091
|
0,
|
|
1078
1092
|
[_pla, _cC],
|
|
1079
|
-
[() => ComponentPlatform
|
|
1093
|
+
[() => ComponentPlatform$, () => ComponentCandidateList],
|
|
1080
1094
|
];
|
|
1081
|
-
var ResolveComponentCandidatesResponse = [
|
|
1095
|
+
var ResolveComponentCandidatesResponse$ = [
|
|
1082
1096
|
3,
|
|
1083
1097
|
n0,
|
|
1084
1098
|
_RCCRe,
|
|
@@ -1086,7 +1100,7 @@ var ResolveComponentCandidatesResponse = [
|
|
|
1086
1100
|
[_rCV],
|
|
1087
1101
|
[() => ResolvedComponentVersionsList],
|
|
1088
1102
|
];
|
|
1089
|
-
var ResolvedComponentVersion = [
|
|
1103
|
+
var ResolvedComponentVersion$ = [
|
|
1090
1104
|
3,
|
|
1091
1105
|
n0,
|
|
1092
1106
|
_RCV,
|
|
@@ -1094,7 +1108,7 @@ var ResolvedComponentVersion = [
|
|
|
1094
1108
|
[_a, _cN, _cV, _rec, _vG, _m],
|
|
1095
1109
|
[0, 0, 0, 21, 0, 0],
|
|
1096
1110
|
];
|
|
1097
|
-
var ResourceNotFoundException = [
|
|
1111
|
+
var ResourceNotFoundException$ = [
|
|
1098
1112
|
-3,
|
|
1099
1113
|
n0,
|
|
1100
1114
|
_RNFE,
|
|
@@ -1102,8 +1116,8 @@ var ResourceNotFoundException = [
|
|
|
1102
1116
|
[_m, _rI, _rT],
|
|
1103
1117
|
[0, 0, 0],
|
|
1104
1118
|
];
|
|
1105
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException
|
|
1106
|
-
var ServiceQuotaExceededException = [
|
|
1119
|
+
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1120
|
+
var ServiceQuotaExceededException$ = [
|
|
1107
1121
|
-3,
|
|
1108
1122
|
n0,
|
|
1109
1123
|
_SQEE,
|
|
@@ -1111,11 +1125,11 @@ var ServiceQuotaExceededException = [
|
|
|
1111
1125
|
[_m, _rI, _rT, _qC, _sC],
|
|
1112
1126
|
[0, 0, 0, 0, 0],
|
|
1113
1127
|
];
|
|
1114
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException
|
|
1115
|
-
var SystemResourceLimits = [3, n0, _SRL, 0, [_mem, _cp], [1, 1]];
|
|
1116
|
-
var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
1117
|
-
var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
|
|
1118
|
-
var ThrottlingException = [
|
|
1128
|
+
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1129
|
+
var SystemResourceLimits$ = [3, n0, _SRL, 0, [_mem, _cp], [1, 1]];
|
|
1130
|
+
var TagResourceRequest$ = [3, n0, _TRR, 0, [_rAe, _t], [[0, 1], 128 | 0]];
|
|
1131
|
+
var TagResourceResponse$ = [3, n0, _TRRa, 0, [], []];
|
|
1132
|
+
var ThrottlingException$ = [
|
|
1119
1133
|
-3,
|
|
1120
1134
|
n0,
|
|
1121
1135
|
_TE,
|
|
@@ -1123,8 +1137,8 @@ var ThrottlingException = [
|
|
|
1123
1137
|
[_m, _qC, _sC, _rAS],
|
|
1124
1138
|
[0, 0, 0, [1, { [_hH]: _RA_ }]],
|
|
1125
1139
|
];
|
|
1126
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException
|
|
1127
|
-
var UntagResourceRequest = [
|
|
1140
|
+
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1141
|
+
var UntagResourceRequest$ = [
|
|
1128
1142
|
3,
|
|
1129
1143
|
n0,
|
|
1130
1144
|
_URR,
|
|
@@ -1135,8 +1149,8 @@ var UntagResourceRequest = [
|
|
|
1135
1149
|
[64 | 0, { [_hQ]: _tK }],
|
|
1136
1150
|
],
|
|
1137
1151
|
];
|
|
1138
|
-
var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
|
|
1139
|
-
var UpdateConnectivityInfoRequest = [
|
|
1152
|
+
var UntagResourceResponse$ = [3, n0, _URRn, 0, [], []];
|
|
1153
|
+
var UpdateConnectivityInfoRequest$ = [
|
|
1140
1154
|
3,
|
|
1141
1155
|
n0,
|
|
1142
1156
|
_UCIR,
|
|
@@ -1147,7 +1161,7 @@ var UpdateConnectivityInfoRequest = [
|
|
|
1147
1161
|
[() => connectivityInfoList, { [_jN]: _CI }],
|
|
1148
1162
|
],
|
|
1149
1163
|
];
|
|
1150
|
-
var UpdateConnectivityInfoResponse = [
|
|
1164
|
+
var UpdateConnectivityInfoResponse$ = [
|
|
1151
1165
|
3,
|
|
1152
1166
|
n0,
|
|
1153
1167
|
_UCIRp,
|
|
@@ -1158,7 +1172,7 @@ var UpdateConnectivityInfoResponse = [
|
|
|
1158
1172
|
[0, { [_jN]: _Me }],
|
|
1159
1173
|
],
|
|
1160
1174
|
];
|
|
1161
|
-
var ValidationException = [
|
|
1175
|
+
var ValidationException$ = [
|
|
1162
1176
|
-3,
|
|
1163
1177
|
n0,
|
|
1164
1178
|
_VE,
|
|
@@ -1166,295 +1180,288 @@ var ValidationException = [
|
|
|
1166
1180
|
[_m, _re, _f],
|
|
1167
1181
|
[0, 0, () => ValidationExceptionFieldList],
|
|
1168
1182
|
];
|
|
1169
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException
|
|
1170
|
-
var ValidationExceptionField = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1183
|
+
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1184
|
+
var ValidationExceptionField$ = [3, n0, _VEF, 0, [_n, _m], [0, 0]];
|
|
1171
1185
|
var __Unit = "unit";
|
|
1172
|
-
var GreengrassV2ServiceException = [-3, _sm, "GreengrassV2ServiceException", 0, [], []];
|
|
1173
|
-
schema.TypeRegistry.for(_sm).registerError(GreengrassV2ServiceException
|
|
1186
|
+
var GreengrassV2ServiceException$ = [-3, _sm, "GreengrassV2ServiceException", 0, [], []];
|
|
1187
|
+
schema.TypeRegistry.for(_sm).registerError(GreengrassV2ServiceException$, GreengrassV2ServiceException);
|
|
1174
1188
|
var AssociateClientDeviceWithCoreDeviceEntryList = [
|
|
1175
1189
|
1,
|
|
1176
1190
|
n0,
|
|
1177
1191
|
_ACDWCDEL,
|
|
1178
1192
|
0,
|
|
1179
|
-
() => AssociateClientDeviceWithCoreDeviceEntry
|
|
1193
|
+
() => AssociateClientDeviceWithCoreDeviceEntry$,
|
|
1180
1194
|
];
|
|
1181
1195
|
var AssociateClientDeviceWithCoreDeviceErrorList = [
|
|
1182
1196
|
1,
|
|
1183
1197
|
n0,
|
|
1184
1198
|
_ACDWCDELs,
|
|
1185
1199
|
0,
|
|
1186
|
-
() => AssociateClientDeviceWithCoreDeviceErrorEntry
|
|
1187
|
-
];
|
|
1188
|
-
var AssociatedClientDeviceList = [1, n0, _ACDL, 0, () => AssociatedClientDevice];
|
|
1189
|
-
var ComponentCandidateList = [1, n0, _CCL, 0, () => ComponentCandidate];
|
|
1190
|
-
var ComponentList = [1, n0, _CL, 0, () => Component];
|
|
1191
|
-
var ComponentPlatformList = [1, n0, _CPL, 0, () => ComponentPlatform];
|
|
1192
|
-
var ComponentVersionList = [1, n0, _CVL, 0, () => ComponentVersionListItem];
|
|
1193
|
-
var connectivityInfoList = [1, n0, _cIL, 0, [() => ConnectivityInfo
|
|
1194
|
-
var CoreDevicesList = [1, n0, _CDL, 0, () => CoreDevice];
|
|
1195
|
-
var DeploymentList = [1, n0, _DL, 0, () => Deployment];
|
|
1200
|
+
() => AssociateClientDeviceWithCoreDeviceErrorEntry$,
|
|
1201
|
+
];
|
|
1202
|
+
var AssociatedClientDeviceList = [1, n0, _ACDL, 0, () => AssociatedClientDevice$];
|
|
1203
|
+
var ComponentCandidateList = [1, n0, _CCL, 0, () => ComponentCandidate$];
|
|
1204
|
+
var ComponentList = [1, n0, _CL, 0, () => Component$];
|
|
1205
|
+
var ComponentPlatformList = [1, n0, _CPL, 0, () => ComponentPlatform$];
|
|
1206
|
+
var ComponentVersionList = [1, n0, _CVL, 0, () => ComponentVersionListItem$];
|
|
1207
|
+
var connectivityInfoList = [1, n0, _cIL, 0, [() => ConnectivityInfo$, 0]];
|
|
1208
|
+
var CoreDevicesList = [1, n0, _CDL, 0, () => CoreDevice$];
|
|
1209
|
+
var DeploymentList = [1, n0, _DL, 0, () => Deployment$];
|
|
1196
1210
|
var DisassociateClientDeviceFromCoreDeviceEntryList = [
|
|
1197
1211
|
1,
|
|
1198
1212
|
n0,
|
|
1199
1213
|
_DCDFCDEL,
|
|
1200
1214
|
0,
|
|
1201
|
-
() => DisassociateClientDeviceFromCoreDeviceEntry
|
|
1215
|
+
() => DisassociateClientDeviceFromCoreDeviceEntry$,
|
|
1202
1216
|
];
|
|
1203
1217
|
var DisassociateClientDeviceFromCoreDeviceErrorList = [
|
|
1204
1218
|
1,
|
|
1205
1219
|
n0,
|
|
1206
1220
|
_DCDFCDELi,
|
|
1207
1221
|
0,
|
|
1208
|
-
() => DisassociateClientDeviceFromCoreDeviceErrorEntry
|
|
1209
|
-
];
|
|
1210
|
-
var EffectiveDeploymentsList = [1, n0, _EDL, 0, () => EffectiveDeployment];
|
|
1211
|
-
var InstalledComponentList = [1, n0, _ICL, 0, () => InstalledComponent];
|
|
1212
|
-
var IoTJobAbortCriteriaList = [1, n0, _ITJACL, 0, () => IoTJobAbortCriteria];
|
|
1213
|
-
var LambdaDeviceList = [1, n0, _LDL, 0, () => LambdaDeviceMount];
|
|
1214
|
-
var LambdaEventSourceList = [1, n0, _LESL, 0, () => LambdaEventSource];
|
|
1215
|
-
var LambdaVolumeList = [1, n0, _LVL, 0, () => LambdaVolumeMount];
|
|
1216
|
-
var ResolvedComponentVersionsList = [1, n0, _RCVL, 0, () => ResolvedComponentVersion];
|
|
1217
|
-
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField];
|
|
1218
|
-
var ComponentDependencyMap = [2, n0, _CDM, 0, 0, () => ComponentDependencyRequirement];
|
|
1219
|
-
var ComponentDeploymentSpecifications = [
|
|
1220
|
-
|
|
1221
|
-
n0,
|
|
1222
|
-
_CDSo,
|
|
1223
|
-
0,
|
|
1224
|
-
0,
|
|
1225
|
-
() => ComponentDeploymentSpecification,
|
|
1226
|
-
];
|
|
1227
|
-
var AssociateServiceRoleToAccount = [
|
|
1222
|
+
() => DisassociateClientDeviceFromCoreDeviceErrorEntry$,
|
|
1223
|
+
];
|
|
1224
|
+
var EffectiveDeploymentsList = [1, n0, _EDL, 0, () => EffectiveDeployment$];
|
|
1225
|
+
var InstalledComponentList = [1, n0, _ICL, 0, () => InstalledComponent$];
|
|
1226
|
+
var IoTJobAbortCriteriaList = [1, n0, _ITJACL, 0, () => IoTJobAbortCriteria$];
|
|
1227
|
+
var LambdaDeviceList = [1, n0, _LDL, 0, () => LambdaDeviceMount$];
|
|
1228
|
+
var LambdaEventSourceList = [1, n0, _LESL, 0, () => LambdaEventSource$];
|
|
1229
|
+
var LambdaVolumeList = [1, n0, _LVL, 0, () => LambdaVolumeMount$];
|
|
1230
|
+
var ResolvedComponentVersionsList = [1, n0, _RCVL, 0, () => ResolvedComponentVersion$];
|
|
1231
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL, 0, () => ValidationExceptionField$];
|
|
1232
|
+
var ComponentDependencyMap = [2, n0, _CDM, 0, 0, () => ComponentDependencyRequirement$];
|
|
1233
|
+
var ComponentDeploymentSpecifications = [2, n0, _CDSo, 0, 0, () => ComponentDeploymentSpecification$];
|
|
1234
|
+
var AssociateServiceRoleToAccount$ = [
|
|
1228
1235
|
9,
|
|
1229
1236
|
n0,
|
|
1230
1237
|
_ASRTA,
|
|
1231
1238
|
{ [_h]: ["PUT", "/greengrass/servicerole", 200] },
|
|
1232
|
-
() => AssociateServiceRoleToAccountRequest
|
|
1233
|
-
() => AssociateServiceRoleToAccountResponse
|
|
1239
|
+
() => AssociateServiceRoleToAccountRequest$,
|
|
1240
|
+
() => AssociateServiceRoleToAccountResponse$,
|
|
1234
1241
|
];
|
|
1235
|
-
var BatchAssociateClientDeviceWithCoreDevice = [
|
|
1242
|
+
var BatchAssociateClientDeviceWithCoreDevice$ = [
|
|
1236
1243
|
9,
|
|
1237
1244
|
n0,
|
|
1238
1245
|
_BACDWCD,
|
|
1239
1246
|
{ [_h]: ["POST", "/greengrass/v2/coreDevices/{coreDeviceThingName}/associateClientDevices", 200] },
|
|
1240
|
-
() => BatchAssociateClientDeviceWithCoreDeviceRequest
|
|
1241
|
-
() => BatchAssociateClientDeviceWithCoreDeviceResponse
|
|
1247
|
+
() => BatchAssociateClientDeviceWithCoreDeviceRequest$,
|
|
1248
|
+
() => BatchAssociateClientDeviceWithCoreDeviceResponse$,
|
|
1242
1249
|
];
|
|
1243
|
-
var BatchDisassociateClientDeviceFromCoreDevice = [
|
|
1250
|
+
var BatchDisassociateClientDeviceFromCoreDevice$ = [
|
|
1244
1251
|
9,
|
|
1245
1252
|
n0,
|
|
1246
1253
|
_BDCDFCD,
|
|
1247
1254
|
{ [_h]: ["POST", "/greengrass/v2/coreDevices/{coreDeviceThingName}/disassociateClientDevices", 200] },
|
|
1248
|
-
() => BatchDisassociateClientDeviceFromCoreDeviceRequest
|
|
1249
|
-
() => BatchDisassociateClientDeviceFromCoreDeviceResponse
|
|
1255
|
+
() => BatchDisassociateClientDeviceFromCoreDeviceRequest$,
|
|
1256
|
+
() => BatchDisassociateClientDeviceFromCoreDeviceResponse$,
|
|
1250
1257
|
];
|
|
1251
|
-
var CancelDeployment = [
|
|
1258
|
+
var CancelDeployment$ = [
|
|
1252
1259
|
9,
|
|
1253
1260
|
n0,
|
|
1254
1261
|
_CDa,
|
|
1255
1262
|
{ [_h]: ["POST", "/greengrass/v2/deployments/{deploymentId}/cancel", 200] },
|
|
1256
|
-
() => CancelDeploymentRequest
|
|
1257
|
-
() => CancelDeploymentResponse
|
|
1263
|
+
() => CancelDeploymentRequest$,
|
|
1264
|
+
() => CancelDeploymentResponse$,
|
|
1258
1265
|
];
|
|
1259
|
-
var CreateComponentVersion = [
|
|
1266
|
+
var CreateComponentVersion$ = [
|
|
1260
1267
|
9,
|
|
1261
1268
|
n0,
|
|
1262
1269
|
_CCV,
|
|
1263
1270
|
{ [_h]: ["POST", "/greengrass/v2/createComponentVersion", 201] },
|
|
1264
|
-
() => CreateComponentVersionRequest
|
|
1265
|
-
() => CreateComponentVersionResponse
|
|
1271
|
+
() => CreateComponentVersionRequest$,
|
|
1272
|
+
() => CreateComponentVersionResponse$,
|
|
1266
1273
|
];
|
|
1267
|
-
var CreateDeployment = [
|
|
1274
|
+
var CreateDeployment$ = [
|
|
1268
1275
|
9,
|
|
1269
1276
|
n0,
|
|
1270
1277
|
_CDr,
|
|
1271
1278
|
{ [_h]: ["POST", "/greengrass/v2/deployments", 201] },
|
|
1272
|
-
() => CreateDeploymentRequest
|
|
1273
|
-
() => CreateDeploymentResponse
|
|
1279
|
+
() => CreateDeploymentRequest$,
|
|
1280
|
+
() => CreateDeploymentResponse$,
|
|
1274
1281
|
];
|
|
1275
|
-
var DeleteComponent = [
|
|
1282
|
+
var DeleteComponent$ = [
|
|
1276
1283
|
9,
|
|
1277
1284
|
n0,
|
|
1278
1285
|
_DC,
|
|
1279
1286
|
{ [_h]: ["DELETE", "/greengrass/v2/components/{arn}", 204] },
|
|
1280
|
-
() => DeleteComponentRequest
|
|
1287
|
+
() => DeleteComponentRequest$,
|
|
1281
1288
|
() => __Unit,
|
|
1282
1289
|
];
|
|
1283
|
-
var DeleteCoreDevice = [
|
|
1290
|
+
var DeleteCoreDevice$ = [
|
|
1284
1291
|
9,
|
|
1285
1292
|
n0,
|
|
1286
1293
|
_DCD,
|
|
1287
1294
|
{ [_h]: ["DELETE", "/greengrass/v2/coreDevices/{coreDeviceThingName}", 204] },
|
|
1288
|
-
() => DeleteCoreDeviceRequest
|
|
1295
|
+
() => DeleteCoreDeviceRequest$,
|
|
1289
1296
|
() => __Unit,
|
|
1290
1297
|
];
|
|
1291
|
-
var DeleteDeployment = [
|
|
1298
|
+
var DeleteDeployment$ = [
|
|
1292
1299
|
9,
|
|
1293
1300
|
n0,
|
|
1294
1301
|
_DD,
|
|
1295
1302
|
{ [_h]: ["DELETE", "/greengrass/v2/deployments/{deploymentId}", 204] },
|
|
1296
|
-
() => DeleteDeploymentRequest
|
|
1303
|
+
() => DeleteDeploymentRequest$,
|
|
1297
1304
|
() => __Unit,
|
|
1298
1305
|
];
|
|
1299
|
-
var DescribeComponent = [
|
|
1306
|
+
var DescribeComponent$ = [
|
|
1300
1307
|
9,
|
|
1301
1308
|
n0,
|
|
1302
1309
|
_DCe,
|
|
1303
1310
|
{ [_h]: ["GET", "/greengrass/v2/components/{arn}/metadata", 200] },
|
|
1304
|
-
() => DescribeComponentRequest
|
|
1305
|
-
() => DescribeComponentResponse
|
|
1311
|
+
() => DescribeComponentRequest$,
|
|
1312
|
+
() => DescribeComponentResponse$,
|
|
1306
1313
|
];
|
|
1307
|
-
var DisassociateServiceRoleFromAccount = [
|
|
1314
|
+
var DisassociateServiceRoleFromAccount$ = [
|
|
1308
1315
|
9,
|
|
1309
1316
|
n0,
|
|
1310
1317
|
_DSRFA,
|
|
1311
1318
|
{ [_h]: ["DELETE", "/greengrass/servicerole", 200] },
|
|
1312
|
-
() => DisassociateServiceRoleFromAccountRequest
|
|
1313
|
-
() => DisassociateServiceRoleFromAccountResponse
|
|
1319
|
+
() => DisassociateServiceRoleFromAccountRequest$,
|
|
1320
|
+
() => DisassociateServiceRoleFromAccountResponse$,
|
|
1314
1321
|
];
|
|
1315
|
-
var GetComponent = [
|
|
1322
|
+
var GetComponent$ = [
|
|
1316
1323
|
9,
|
|
1317
1324
|
n0,
|
|
1318
1325
|
_GC,
|
|
1319
1326
|
{ [_h]: ["GET", "/greengrass/v2/components/{arn}", 200] },
|
|
1320
|
-
() => GetComponentRequest
|
|
1321
|
-
() => GetComponentResponse
|
|
1327
|
+
() => GetComponentRequest$,
|
|
1328
|
+
() => GetComponentResponse$,
|
|
1322
1329
|
];
|
|
1323
|
-
var GetComponentVersionArtifact = [
|
|
1330
|
+
var GetComponentVersionArtifact$ = [
|
|
1324
1331
|
9,
|
|
1325
1332
|
n0,
|
|
1326
1333
|
_GCVA,
|
|
1327
1334
|
{ [_h]: ["GET", "/greengrass/v2/components/{arn}/artifacts/{artifactName+}", 200] },
|
|
1328
|
-
() => GetComponentVersionArtifactRequest
|
|
1329
|
-
() => GetComponentVersionArtifactResponse
|
|
1335
|
+
() => GetComponentVersionArtifactRequest$,
|
|
1336
|
+
() => GetComponentVersionArtifactResponse$,
|
|
1330
1337
|
];
|
|
1331
|
-
var GetConnectivityInfo = [
|
|
1338
|
+
var GetConnectivityInfo$ = [
|
|
1332
1339
|
9,
|
|
1333
1340
|
n0,
|
|
1334
1341
|
_GCI,
|
|
1335
1342
|
{ [_h]: ["GET", "/greengrass/things/{thingName}/connectivityInfo", 200] },
|
|
1336
|
-
() => GetConnectivityInfoRequest
|
|
1337
|
-
() => GetConnectivityInfoResponse
|
|
1343
|
+
() => GetConnectivityInfoRequest$,
|
|
1344
|
+
() => GetConnectivityInfoResponse$,
|
|
1338
1345
|
];
|
|
1339
|
-
var GetCoreDevice = [
|
|
1346
|
+
var GetCoreDevice$ = [
|
|
1340
1347
|
9,
|
|
1341
1348
|
n0,
|
|
1342
1349
|
_GCD,
|
|
1343
1350
|
{ [_h]: ["GET", "/greengrass/v2/coreDevices/{coreDeviceThingName}", 200] },
|
|
1344
|
-
() => GetCoreDeviceRequest
|
|
1345
|
-
() => GetCoreDeviceResponse
|
|
1351
|
+
() => GetCoreDeviceRequest$,
|
|
1352
|
+
() => GetCoreDeviceResponse$,
|
|
1346
1353
|
];
|
|
1347
|
-
var GetDeployment = [
|
|
1354
|
+
var GetDeployment$ = [
|
|
1348
1355
|
9,
|
|
1349
1356
|
n0,
|
|
1350
1357
|
_GD,
|
|
1351
1358
|
{ [_h]: ["GET", "/greengrass/v2/deployments/{deploymentId}", 200] },
|
|
1352
|
-
() => GetDeploymentRequest
|
|
1353
|
-
() => GetDeploymentResponse
|
|
1359
|
+
() => GetDeploymentRequest$,
|
|
1360
|
+
() => GetDeploymentResponse$,
|
|
1354
1361
|
];
|
|
1355
|
-
var GetServiceRoleForAccount = [
|
|
1362
|
+
var GetServiceRoleForAccount$ = [
|
|
1356
1363
|
9,
|
|
1357
1364
|
n0,
|
|
1358
1365
|
_GSRFA,
|
|
1359
1366
|
{ [_h]: ["GET", "/greengrass/servicerole", 200] },
|
|
1360
|
-
() => GetServiceRoleForAccountRequest
|
|
1361
|
-
() => GetServiceRoleForAccountResponse
|
|
1367
|
+
() => GetServiceRoleForAccountRequest$,
|
|
1368
|
+
() => GetServiceRoleForAccountResponse$,
|
|
1362
1369
|
];
|
|
1363
|
-
var ListClientDevicesAssociatedWithCoreDevice = [
|
|
1370
|
+
var ListClientDevicesAssociatedWithCoreDevice$ = [
|
|
1364
1371
|
9,
|
|
1365
1372
|
n0,
|
|
1366
1373
|
_LCDAWCD,
|
|
1367
1374
|
{ [_h]: ["GET", "/greengrass/v2/coreDevices/{coreDeviceThingName}/associatedClientDevices", 200] },
|
|
1368
|
-
() => ListClientDevicesAssociatedWithCoreDeviceRequest
|
|
1369
|
-
() => ListClientDevicesAssociatedWithCoreDeviceResponse
|
|
1375
|
+
() => ListClientDevicesAssociatedWithCoreDeviceRequest$,
|
|
1376
|
+
() => ListClientDevicesAssociatedWithCoreDeviceResponse$,
|
|
1370
1377
|
];
|
|
1371
|
-
var ListComponents = [
|
|
1378
|
+
var ListComponents$ = [
|
|
1372
1379
|
9,
|
|
1373
1380
|
n0,
|
|
1374
1381
|
_LC,
|
|
1375
1382
|
{ [_h]: ["GET", "/greengrass/v2/components", 200] },
|
|
1376
|
-
() => ListComponentsRequest
|
|
1377
|
-
() => ListComponentsResponse
|
|
1383
|
+
() => ListComponentsRequest$,
|
|
1384
|
+
() => ListComponentsResponse$,
|
|
1378
1385
|
];
|
|
1379
|
-
var ListComponentVersions = [
|
|
1386
|
+
var ListComponentVersions$ = [
|
|
1380
1387
|
9,
|
|
1381
1388
|
n0,
|
|
1382
1389
|
_LCV,
|
|
1383
1390
|
{ [_h]: ["GET", "/greengrass/v2/components/{arn}/versions", 200] },
|
|
1384
|
-
() => ListComponentVersionsRequest
|
|
1385
|
-
() => ListComponentVersionsResponse
|
|
1391
|
+
() => ListComponentVersionsRequest$,
|
|
1392
|
+
() => ListComponentVersionsResponse$,
|
|
1386
1393
|
];
|
|
1387
|
-
var ListCoreDevices = [
|
|
1394
|
+
var ListCoreDevices$ = [
|
|
1388
1395
|
9,
|
|
1389
1396
|
n0,
|
|
1390
1397
|
_LCD,
|
|
1391
1398
|
{ [_h]: ["GET", "/greengrass/v2/coreDevices", 200] },
|
|
1392
|
-
() => ListCoreDevicesRequest
|
|
1393
|
-
() => ListCoreDevicesResponse
|
|
1399
|
+
() => ListCoreDevicesRequest$,
|
|
1400
|
+
() => ListCoreDevicesResponse$,
|
|
1394
1401
|
];
|
|
1395
|
-
var ListDeployments = [
|
|
1402
|
+
var ListDeployments$ = [
|
|
1396
1403
|
9,
|
|
1397
1404
|
n0,
|
|
1398
1405
|
_LD,
|
|
1399
1406
|
{ [_h]: ["GET", "/greengrass/v2/deployments", 200] },
|
|
1400
|
-
() => ListDeploymentsRequest
|
|
1401
|
-
() => ListDeploymentsResponse
|
|
1407
|
+
() => ListDeploymentsRequest$,
|
|
1408
|
+
() => ListDeploymentsResponse$,
|
|
1402
1409
|
];
|
|
1403
|
-
var ListEffectiveDeployments = [
|
|
1410
|
+
var ListEffectiveDeployments$ = [
|
|
1404
1411
|
9,
|
|
1405
1412
|
n0,
|
|
1406
1413
|
_LED,
|
|
1407
1414
|
{ [_h]: ["GET", "/greengrass/v2/coreDevices/{coreDeviceThingName}/effectiveDeployments", 200] },
|
|
1408
|
-
() => ListEffectiveDeploymentsRequest
|
|
1409
|
-
() => ListEffectiveDeploymentsResponse
|
|
1415
|
+
() => ListEffectiveDeploymentsRequest$,
|
|
1416
|
+
() => ListEffectiveDeploymentsResponse$,
|
|
1410
1417
|
];
|
|
1411
|
-
var ListInstalledComponents = [
|
|
1418
|
+
var ListInstalledComponents$ = [
|
|
1412
1419
|
9,
|
|
1413
1420
|
n0,
|
|
1414
1421
|
_LIC,
|
|
1415
1422
|
{ [_h]: ["GET", "/greengrass/v2/coreDevices/{coreDeviceThingName}/installedComponents", 200] },
|
|
1416
|
-
() => ListInstalledComponentsRequest
|
|
1417
|
-
() => ListInstalledComponentsResponse
|
|
1423
|
+
() => ListInstalledComponentsRequest$,
|
|
1424
|
+
() => ListInstalledComponentsResponse$,
|
|
1418
1425
|
];
|
|
1419
|
-
var ListTagsForResource = [
|
|
1426
|
+
var ListTagsForResource$ = [
|
|
1420
1427
|
9,
|
|
1421
1428
|
n0,
|
|
1422
1429
|
_LTFR,
|
|
1423
1430
|
{ [_h]: ["GET", "/tags/{resourceArn}", 200] },
|
|
1424
|
-
() => ListTagsForResourceRequest
|
|
1425
|
-
() => ListTagsForResourceResponse
|
|
1431
|
+
() => ListTagsForResourceRequest$,
|
|
1432
|
+
() => ListTagsForResourceResponse$,
|
|
1426
1433
|
];
|
|
1427
|
-
var ResolveComponentCandidates = [
|
|
1434
|
+
var ResolveComponentCandidates$ = [
|
|
1428
1435
|
9,
|
|
1429
1436
|
n0,
|
|
1430
1437
|
_RCC,
|
|
1431
1438
|
{ [_h]: ["POST", "/greengrass/v2/resolveComponentCandidates", 200] },
|
|
1432
|
-
() => ResolveComponentCandidatesRequest
|
|
1433
|
-
() => ResolveComponentCandidatesResponse
|
|
1439
|
+
() => ResolveComponentCandidatesRequest$,
|
|
1440
|
+
() => ResolveComponentCandidatesResponse$,
|
|
1434
1441
|
];
|
|
1435
|
-
var TagResource = [
|
|
1442
|
+
var TagResource$ = [
|
|
1436
1443
|
9,
|
|
1437
1444
|
n0,
|
|
1438
1445
|
_TR,
|
|
1439
1446
|
{ [_h]: ["POST", "/tags/{resourceArn}", 200] },
|
|
1440
|
-
() => TagResourceRequest
|
|
1441
|
-
() => TagResourceResponse
|
|
1447
|
+
() => TagResourceRequest$,
|
|
1448
|
+
() => TagResourceResponse$,
|
|
1442
1449
|
];
|
|
1443
|
-
var UntagResource = [
|
|
1450
|
+
var UntagResource$ = [
|
|
1444
1451
|
9,
|
|
1445
1452
|
n0,
|
|
1446
1453
|
_UR,
|
|
1447
1454
|
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] },
|
|
1448
|
-
() => UntagResourceRequest
|
|
1449
|
-
() => UntagResourceResponse
|
|
1455
|
+
() => UntagResourceRequest$,
|
|
1456
|
+
() => UntagResourceResponse$,
|
|
1450
1457
|
];
|
|
1451
|
-
var UpdateConnectivityInfo = [
|
|
1458
|
+
var UpdateConnectivityInfo$ = [
|
|
1452
1459
|
9,
|
|
1453
1460
|
n0,
|
|
1454
1461
|
_UCI,
|
|
1455
1462
|
{ [_h]: ["PUT", "/greengrass/things/{thingName}/connectivityInfo", 200] },
|
|
1456
|
-
() => UpdateConnectivityInfoRequest
|
|
1457
|
-
() => UpdateConnectivityInfoResponse
|
|
1463
|
+
() => UpdateConnectivityInfoRequest$,
|
|
1464
|
+
() => UpdateConnectivityInfoResponse$,
|
|
1458
1465
|
];
|
|
1459
1466
|
|
|
1460
1467
|
class AssociateServiceRoleToAccountCommand extends smithyClient.Command
|
|
@@ -1465,7 +1472,7 @@ class AssociateServiceRoleToAccountCommand extends smithyClient.Command
|
|
|
1465
1472
|
})
|
|
1466
1473
|
.s("GreengrassV2", "AssociateServiceRoleToAccount", {})
|
|
1467
1474
|
.n("GreengrassV2Client", "AssociateServiceRoleToAccountCommand")
|
|
1468
|
-
.sc(AssociateServiceRoleToAccount)
|
|
1475
|
+
.sc(AssociateServiceRoleToAccount$)
|
|
1469
1476
|
.build() {
|
|
1470
1477
|
}
|
|
1471
1478
|
|
|
@@ -1477,7 +1484,7 @@ class BatchAssociateClientDeviceWithCoreDeviceCommand extends smithyClient.Comma
|
|
|
1477
1484
|
})
|
|
1478
1485
|
.s("GreengrassV2", "BatchAssociateClientDeviceWithCoreDevice", {})
|
|
1479
1486
|
.n("GreengrassV2Client", "BatchAssociateClientDeviceWithCoreDeviceCommand")
|
|
1480
|
-
.sc(BatchAssociateClientDeviceWithCoreDevice)
|
|
1487
|
+
.sc(BatchAssociateClientDeviceWithCoreDevice$)
|
|
1481
1488
|
.build() {
|
|
1482
1489
|
}
|
|
1483
1490
|
|
|
@@ -1489,7 +1496,7 @@ class BatchDisassociateClientDeviceFromCoreDeviceCommand extends smithyClient.Co
|
|
|
1489
1496
|
})
|
|
1490
1497
|
.s("GreengrassV2", "BatchDisassociateClientDeviceFromCoreDevice", {})
|
|
1491
1498
|
.n("GreengrassV2Client", "BatchDisassociateClientDeviceFromCoreDeviceCommand")
|
|
1492
|
-
.sc(BatchDisassociateClientDeviceFromCoreDevice)
|
|
1499
|
+
.sc(BatchDisassociateClientDeviceFromCoreDevice$)
|
|
1493
1500
|
.build() {
|
|
1494
1501
|
}
|
|
1495
1502
|
|
|
@@ -1501,7 +1508,7 @@ class CancelDeploymentCommand extends smithyClient.Command
|
|
|
1501
1508
|
})
|
|
1502
1509
|
.s("GreengrassV2", "CancelDeployment", {})
|
|
1503
1510
|
.n("GreengrassV2Client", "CancelDeploymentCommand")
|
|
1504
|
-
.sc(CancelDeployment)
|
|
1511
|
+
.sc(CancelDeployment$)
|
|
1505
1512
|
.build() {
|
|
1506
1513
|
}
|
|
1507
1514
|
|
|
@@ -1513,7 +1520,7 @@ class CreateComponentVersionCommand extends smithyClient.Command
|
|
|
1513
1520
|
})
|
|
1514
1521
|
.s("GreengrassV2", "CreateComponentVersion", {})
|
|
1515
1522
|
.n("GreengrassV2Client", "CreateComponentVersionCommand")
|
|
1516
|
-
.sc(CreateComponentVersion)
|
|
1523
|
+
.sc(CreateComponentVersion$)
|
|
1517
1524
|
.build() {
|
|
1518
1525
|
}
|
|
1519
1526
|
|
|
@@ -1525,7 +1532,7 @@ class CreateDeploymentCommand extends smithyClient.Command
|
|
|
1525
1532
|
})
|
|
1526
1533
|
.s("GreengrassV2", "CreateDeployment", {})
|
|
1527
1534
|
.n("GreengrassV2Client", "CreateDeploymentCommand")
|
|
1528
|
-
.sc(CreateDeployment)
|
|
1535
|
+
.sc(CreateDeployment$)
|
|
1529
1536
|
.build() {
|
|
1530
1537
|
}
|
|
1531
1538
|
|
|
@@ -1537,7 +1544,7 @@ class DeleteComponentCommand extends smithyClient.Command
|
|
|
1537
1544
|
})
|
|
1538
1545
|
.s("GreengrassV2", "DeleteComponent", {})
|
|
1539
1546
|
.n("GreengrassV2Client", "DeleteComponentCommand")
|
|
1540
|
-
.sc(DeleteComponent)
|
|
1547
|
+
.sc(DeleteComponent$)
|
|
1541
1548
|
.build() {
|
|
1542
1549
|
}
|
|
1543
1550
|
|
|
@@ -1549,7 +1556,7 @@ class DeleteCoreDeviceCommand extends smithyClient.Command
|
|
|
1549
1556
|
})
|
|
1550
1557
|
.s("GreengrassV2", "DeleteCoreDevice", {})
|
|
1551
1558
|
.n("GreengrassV2Client", "DeleteCoreDeviceCommand")
|
|
1552
|
-
.sc(DeleteCoreDevice)
|
|
1559
|
+
.sc(DeleteCoreDevice$)
|
|
1553
1560
|
.build() {
|
|
1554
1561
|
}
|
|
1555
1562
|
|
|
@@ -1561,7 +1568,7 @@ class DeleteDeploymentCommand extends smithyClient.Command
|
|
|
1561
1568
|
})
|
|
1562
1569
|
.s("GreengrassV2", "DeleteDeployment", {})
|
|
1563
1570
|
.n("GreengrassV2Client", "DeleteDeploymentCommand")
|
|
1564
|
-
.sc(DeleteDeployment)
|
|
1571
|
+
.sc(DeleteDeployment$)
|
|
1565
1572
|
.build() {
|
|
1566
1573
|
}
|
|
1567
1574
|
|
|
@@ -1573,7 +1580,7 @@ class DescribeComponentCommand extends smithyClient.Command
|
|
|
1573
1580
|
})
|
|
1574
1581
|
.s("GreengrassV2", "DescribeComponent", {})
|
|
1575
1582
|
.n("GreengrassV2Client", "DescribeComponentCommand")
|
|
1576
|
-
.sc(DescribeComponent)
|
|
1583
|
+
.sc(DescribeComponent$)
|
|
1577
1584
|
.build() {
|
|
1578
1585
|
}
|
|
1579
1586
|
|
|
@@ -1585,7 +1592,7 @@ class DisassociateServiceRoleFromAccountCommand extends smithyClient.Command
|
|
|
1585
1592
|
})
|
|
1586
1593
|
.s("GreengrassV2", "DisassociateServiceRoleFromAccount", {})
|
|
1587
1594
|
.n("GreengrassV2Client", "DisassociateServiceRoleFromAccountCommand")
|
|
1588
|
-
.sc(DisassociateServiceRoleFromAccount)
|
|
1595
|
+
.sc(DisassociateServiceRoleFromAccount$)
|
|
1589
1596
|
.build() {
|
|
1590
1597
|
}
|
|
1591
1598
|
|
|
@@ -1597,7 +1604,7 @@ class GetComponentCommand extends smithyClient.Command
|
|
|
1597
1604
|
})
|
|
1598
1605
|
.s("GreengrassV2", "GetComponent", {})
|
|
1599
1606
|
.n("GreengrassV2Client", "GetComponentCommand")
|
|
1600
|
-
.sc(GetComponent)
|
|
1607
|
+
.sc(GetComponent$)
|
|
1601
1608
|
.build() {
|
|
1602
1609
|
}
|
|
1603
1610
|
|
|
@@ -1609,7 +1616,7 @@ class GetComponentVersionArtifactCommand extends smithyClient.Command
|
|
|
1609
1616
|
})
|
|
1610
1617
|
.s("GreengrassV2", "GetComponentVersionArtifact", {})
|
|
1611
1618
|
.n("GreengrassV2Client", "GetComponentVersionArtifactCommand")
|
|
1612
|
-
.sc(GetComponentVersionArtifact)
|
|
1619
|
+
.sc(GetComponentVersionArtifact$)
|
|
1613
1620
|
.build() {
|
|
1614
1621
|
}
|
|
1615
1622
|
|
|
@@ -1621,7 +1628,7 @@ class GetConnectivityInfoCommand extends smithyClient.Command
|
|
|
1621
1628
|
})
|
|
1622
1629
|
.s("GreengrassV2", "GetConnectivityInfo", {})
|
|
1623
1630
|
.n("GreengrassV2Client", "GetConnectivityInfoCommand")
|
|
1624
|
-
.sc(GetConnectivityInfo)
|
|
1631
|
+
.sc(GetConnectivityInfo$)
|
|
1625
1632
|
.build() {
|
|
1626
1633
|
}
|
|
1627
1634
|
|
|
@@ -1633,7 +1640,7 @@ class GetCoreDeviceCommand extends smithyClient.Command
|
|
|
1633
1640
|
})
|
|
1634
1641
|
.s("GreengrassV2", "GetCoreDevice", {})
|
|
1635
1642
|
.n("GreengrassV2Client", "GetCoreDeviceCommand")
|
|
1636
|
-
.sc(GetCoreDevice)
|
|
1643
|
+
.sc(GetCoreDevice$)
|
|
1637
1644
|
.build() {
|
|
1638
1645
|
}
|
|
1639
1646
|
|
|
@@ -1645,7 +1652,7 @@ class GetDeploymentCommand extends smithyClient.Command
|
|
|
1645
1652
|
})
|
|
1646
1653
|
.s("GreengrassV2", "GetDeployment", {})
|
|
1647
1654
|
.n("GreengrassV2Client", "GetDeploymentCommand")
|
|
1648
|
-
.sc(GetDeployment)
|
|
1655
|
+
.sc(GetDeployment$)
|
|
1649
1656
|
.build() {
|
|
1650
1657
|
}
|
|
1651
1658
|
|
|
@@ -1657,7 +1664,7 @@ class GetServiceRoleForAccountCommand extends smithyClient.Command
|
|
|
1657
1664
|
})
|
|
1658
1665
|
.s("GreengrassV2", "GetServiceRoleForAccount", {})
|
|
1659
1666
|
.n("GreengrassV2Client", "GetServiceRoleForAccountCommand")
|
|
1660
|
-
.sc(GetServiceRoleForAccount)
|
|
1667
|
+
.sc(GetServiceRoleForAccount$)
|
|
1661
1668
|
.build() {
|
|
1662
1669
|
}
|
|
1663
1670
|
|
|
@@ -1669,7 +1676,7 @@ class ListClientDevicesAssociatedWithCoreDeviceCommand extends smithyClient.Comm
|
|
|
1669
1676
|
})
|
|
1670
1677
|
.s("GreengrassV2", "ListClientDevicesAssociatedWithCoreDevice", {})
|
|
1671
1678
|
.n("GreengrassV2Client", "ListClientDevicesAssociatedWithCoreDeviceCommand")
|
|
1672
|
-
.sc(ListClientDevicesAssociatedWithCoreDevice)
|
|
1679
|
+
.sc(ListClientDevicesAssociatedWithCoreDevice$)
|
|
1673
1680
|
.build() {
|
|
1674
1681
|
}
|
|
1675
1682
|
|
|
@@ -1681,7 +1688,7 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
1681
1688
|
})
|
|
1682
1689
|
.s("GreengrassV2", "ListComponents", {})
|
|
1683
1690
|
.n("GreengrassV2Client", "ListComponentsCommand")
|
|
1684
|
-
.sc(ListComponents)
|
|
1691
|
+
.sc(ListComponents$)
|
|
1685
1692
|
.build() {
|
|
1686
1693
|
}
|
|
1687
1694
|
|
|
@@ -1693,7 +1700,7 @@ class ListComponentVersionsCommand extends smithyClient.Command
|
|
|
1693
1700
|
})
|
|
1694
1701
|
.s("GreengrassV2", "ListComponentVersions", {})
|
|
1695
1702
|
.n("GreengrassV2Client", "ListComponentVersionsCommand")
|
|
1696
|
-
.sc(ListComponentVersions)
|
|
1703
|
+
.sc(ListComponentVersions$)
|
|
1697
1704
|
.build() {
|
|
1698
1705
|
}
|
|
1699
1706
|
|
|
@@ -1705,7 +1712,7 @@ class ListCoreDevicesCommand extends smithyClient.Command
|
|
|
1705
1712
|
})
|
|
1706
1713
|
.s("GreengrassV2", "ListCoreDevices", {})
|
|
1707
1714
|
.n("GreengrassV2Client", "ListCoreDevicesCommand")
|
|
1708
|
-
.sc(ListCoreDevices)
|
|
1715
|
+
.sc(ListCoreDevices$)
|
|
1709
1716
|
.build() {
|
|
1710
1717
|
}
|
|
1711
1718
|
|
|
@@ -1717,7 +1724,7 @@ class ListDeploymentsCommand extends smithyClient.Command
|
|
|
1717
1724
|
})
|
|
1718
1725
|
.s("GreengrassV2", "ListDeployments", {})
|
|
1719
1726
|
.n("GreengrassV2Client", "ListDeploymentsCommand")
|
|
1720
|
-
.sc(ListDeployments)
|
|
1727
|
+
.sc(ListDeployments$)
|
|
1721
1728
|
.build() {
|
|
1722
1729
|
}
|
|
1723
1730
|
|
|
@@ -1729,7 +1736,7 @@ class ListEffectiveDeploymentsCommand extends smithyClient.Command
|
|
|
1729
1736
|
})
|
|
1730
1737
|
.s("GreengrassV2", "ListEffectiveDeployments", {})
|
|
1731
1738
|
.n("GreengrassV2Client", "ListEffectiveDeploymentsCommand")
|
|
1732
|
-
.sc(ListEffectiveDeployments)
|
|
1739
|
+
.sc(ListEffectiveDeployments$)
|
|
1733
1740
|
.build() {
|
|
1734
1741
|
}
|
|
1735
1742
|
|
|
@@ -1741,7 +1748,7 @@ class ListInstalledComponentsCommand extends smithyClient.Command
|
|
|
1741
1748
|
})
|
|
1742
1749
|
.s("GreengrassV2", "ListInstalledComponents", {})
|
|
1743
1750
|
.n("GreengrassV2Client", "ListInstalledComponentsCommand")
|
|
1744
|
-
.sc(ListInstalledComponents)
|
|
1751
|
+
.sc(ListInstalledComponents$)
|
|
1745
1752
|
.build() {
|
|
1746
1753
|
}
|
|
1747
1754
|
|
|
@@ -1753,7 +1760,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1753
1760
|
})
|
|
1754
1761
|
.s("GreengrassV2", "ListTagsForResource", {})
|
|
1755
1762
|
.n("GreengrassV2Client", "ListTagsForResourceCommand")
|
|
1756
|
-
.sc(ListTagsForResource)
|
|
1763
|
+
.sc(ListTagsForResource$)
|
|
1757
1764
|
.build() {
|
|
1758
1765
|
}
|
|
1759
1766
|
|
|
@@ -1765,7 +1772,7 @@ class ResolveComponentCandidatesCommand extends smithyClient.Command
|
|
|
1765
1772
|
})
|
|
1766
1773
|
.s("GreengrassV2", "ResolveComponentCandidates", {})
|
|
1767
1774
|
.n("GreengrassV2Client", "ResolveComponentCandidatesCommand")
|
|
1768
|
-
.sc(ResolveComponentCandidates)
|
|
1775
|
+
.sc(ResolveComponentCandidates$)
|
|
1769
1776
|
.build() {
|
|
1770
1777
|
}
|
|
1771
1778
|
|
|
@@ -1777,7 +1784,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1777
1784
|
})
|
|
1778
1785
|
.s("GreengrassV2", "TagResource", {})
|
|
1779
1786
|
.n("GreengrassV2Client", "TagResourceCommand")
|
|
1780
|
-
.sc(TagResource)
|
|
1787
|
+
.sc(TagResource$)
|
|
1781
1788
|
.build() {
|
|
1782
1789
|
}
|
|
1783
1790
|
|
|
@@ -1789,7 +1796,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1789
1796
|
})
|
|
1790
1797
|
.s("GreengrassV2", "UntagResource", {})
|
|
1791
1798
|
.n("GreengrassV2Client", "UntagResourceCommand")
|
|
1792
|
-
.sc(UntagResource)
|
|
1799
|
+
.sc(UntagResource$)
|
|
1793
1800
|
.build() {
|
|
1794
1801
|
}
|
|
1795
1802
|
|
|
@@ -1801,7 +1808,7 @@ class UpdateConnectivityInfoCommand extends smithyClient.Command
|
|
|
1801
1808
|
})
|
|
1802
1809
|
.s("GreengrassV2", "UpdateConnectivityInfo", {})
|
|
1803
1810
|
.n("GreengrassV2Client", "UpdateConnectivityInfoCommand")
|
|
1804
|
-
.sc(UpdateConnectivityInfo)
|
|
1811
|
+
.sc(UpdateConnectivityInfo$)
|
|
1805
1812
|
.build() {
|
|
1806
1813
|
}
|
|
1807
1814
|
|
|
@@ -1973,66 +1980,200 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1973
1980
|
enumerable: true,
|
|
1974
1981
|
get: function () { return smithyClient.Client; }
|
|
1975
1982
|
});
|
|
1976
|
-
exports.AccessDeniedException = AccessDeniedException
|
|
1983
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
1984
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
1985
|
+
exports.AssociateClientDeviceWithCoreDeviceEntry$ = AssociateClientDeviceWithCoreDeviceEntry$;
|
|
1986
|
+
exports.AssociateClientDeviceWithCoreDeviceErrorEntry$ = AssociateClientDeviceWithCoreDeviceErrorEntry$;
|
|
1987
|
+
exports.AssociateServiceRoleToAccount$ = AssociateServiceRoleToAccount$;
|
|
1977
1988
|
exports.AssociateServiceRoleToAccountCommand = AssociateServiceRoleToAccountCommand;
|
|
1989
|
+
exports.AssociateServiceRoleToAccountRequest$ = AssociateServiceRoleToAccountRequest$;
|
|
1990
|
+
exports.AssociateServiceRoleToAccountResponse$ = AssociateServiceRoleToAccountResponse$;
|
|
1991
|
+
exports.AssociatedClientDevice$ = AssociatedClientDevice$;
|
|
1992
|
+
exports.BatchAssociateClientDeviceWithCoreDevice$ = BatchAssociateClientDeviceWithCoreDevice$;
|
|
1978
1993
|
exports.BatchAssociateClientDeviceWithCoreDeviceCommand = BatchAssociateClientDeviceWithCoreDeviceCommand;
|
|
1994
|
+
exports.BatchAssociateClientDeviceWithCoreDeviceRequest$ = BatchAssociateClientDeviceWithCoreDeviceRequest$;
|
|
1995
|
+
exports.BatchAssociateClientDeviceWithCoreDeviceResponse$ = BatchAssociateClientDeviceWithCoreDeviceResponse$;
|
|
1996
|
+
exports.BatchDisassociateClientDeviceFromCoreDevice$ = BatchDisassociateClientDeviceFromCoreDevice$;
|
|
1979
1997
|
exports.BatchDisassociateClientDeviceFromCoreDeviceCommand = BatchDisassociateClientDeviceFromCoreDeviceCommand;
|
|
1998
|
+
exports.BatchDisassociateClientDeviceFromCoreDeviceRequest$ = BatchDisassociateClientDeviceFromCoreDeviceRequest$;
|
|
1999
|
+
exports.BatchDisassociateClientDeviceFromCoreDeviceResponse$ = BatchDisassociateClientDeviceFromCoreDeviceResponse$;
|
|
2000
|
+
exports.CancelDeployment$ = CancelDeployment$;
|
|
1980
2001
|
exports.CancelDeploymentCommand = CancelDeploymentCommand;
|
|
2002
|
+
exports.CancelDeploymentRequest$ = CancelDeploymentRequest$;
|
|
2003
|
+
exports.CancelDeploymentResponse$ = CancelDeploymentResponse$;
|
|
1981
2004
|
exports.CloudComponentState = CloudComponentState;
|
|
2005
|
+
exports.CloudComponentStatus$ = CloudComponentStatus$;
|
|
2006
|
+
exports.Component$ = Component$;
|
|
2007
|
+
exports.ComponentCandidate$ = ComponentCandidate$;
|
|
2008
|
+
exports.ComponentConfigurationUpdate$ = ComponentConfigurationUpdate$;
|
|
2009
|
+
exports.ComponentDependencyRequirement$ = ComponentDependencyRequirement$;
|
|
1982
2010
|
exports.ComponentDependencyType = ComponentDependencyType;
|
|
2011
|
+
exports.ComponentDeploymentSpecification$ = ComponentDeploymentSpecification$;
|
|
2012
|
+
exports.ComponentLatestVersion$ = ComponentLatestVersion$;
|
|
2013
|
+
exports.ComponentPlatform$ = ComponentPlatform$;
|
|
2014
|
+
exports.ComponentRunWith$ = ComponentRunWith$;
|
|
2015
|
+
exports.ComponentVersionListItem$ = ComponentVersionListItem$;
|
|
1983
2016
|
exports.ComponentVisibilityScope = ComponentVisibilityScope;
|
|
1984
|
-
exports.ConflictException = ConflictException
|
|
2017
|
+
exports.ConflictException = ConflictException;
|
|
2018
|
+
exports.ConflictException$ = ConflictException$;
|
|
2019
|
+
exports.ConnectivityInfo$ = ConnectivityInfo$;
|
|
2020
|
+
exports.CoreDevice$ = CoreDevice$;
|
|
1985
2021
|
exports.CoreDeviceStatus = CoreDeviceStatus;
|
|
2022
|
+
exports.CreateComponentVersion$ = CreateComponentVersion$;
|
|
1986
2023
|
exports.CreateComponentVersionCommand = CreateComponentVersionCommand;
|
|
2024
|
+
exports.CreateComponentVersionRequest$ = CreateComponentVersionRequest$;
|
|
2025
|
+
exports.CreateComponentVersionResponse$ = CreateComponentVersionResponse$;
|
|
2026
|
+
exports.CreateDeployment$ = CreateDeployment$;
|
|
1987
2027
|
exports.CreateDeploymentCommand = CreateDeploymentCommand;
|
|
2028
|
+
exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
|
|
2029
|
+
exports.CreateDeploymentResponse$ = CreateDeploymentResponse$;
|
|
2030
|
+
exports.DeleteComponent$ = DeleteComponent$;
|
|
1988
2031
|
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
2032
|
+
exports.DeleteComponentRequest$ = DeleteComponentRequest$;
|
|
2033
|
+
exports.DeleteCoreDevice$ = DeleteCoreDevice$;
|
|
1989
2034
|
exports.DeleteCoreDeviceCommand = DeleteCoreDeviceCommand;
|
|
2035
|
+
exports.DeleteCoreDeviceRequest$ = DeleteCoreDeviceRequest$;
|
|
2036
|
+
exports.DeleteDeployment$ = DeleteDeployment$;
|
|
1990
2037
|
exports.DeleteDeploymentCommand = DeleteDeploymentCommand;
|
|
2038
|
+
exports.DeleteDeploymentRequest$ = DeleteDeploymentRequest$;
|
|
2039
|
+
exports.Deployment$ = Deployment$;
|
|
2040
|
+
exports.DeploymentComponentUpdatePolicy$ = DeploymentComponentUpdatePolicy$;
|
|
1991
2041
|
exports.DeploymentComponentUpdatePolicyAction = DeploymentComponentUpdatePolicyAction;
|
|
2042
|
+
exports.DeploymentConfigurationValidationPolicy$ = DeploymentConfigurationValidationPolicy$;
|
|
1992
2043
|
exports.DeploymentFailureHandlingPolicy = DeploymentFailureHandlingPolicy;
|
|
1993
2044
|
exports.DeploymentHistoryFilter = DeploymentHistoryFilter;
|
|
2045
|
+
exports.DeploymentIoTJobConfiguration$ = DeploymentIoTJobConfiguration$;
|
|
2046
|
+
exports.DeploymentPolicies$ = DeploymentPolicies$;
|
|
1994
2047
|
exports.DeploymentStatus = DeploymentStatus;
|
|
2048
|
+
exports.DescribeComponent$ = DescribeComponent$;
|
|
1995
2049
|
exports.DescribeComponentCommand = DescribeComponentCommand;
|
|
2050
|
+
exports.DescribeComponentRequest$ = DescribeComponentRequest$;
|
|
2051
|
+
exports.DescribeComponentResponse$ = DescribeComponentResponse$;
|
|
2052
|
+
exports.DisassociateClientDeviceFromCoreDeviceEntry$ = DisassociateClientDeviceFromCoreDeviceEntry$;
|
|
2053
|
+
exports.DisassociateClientDeviceFromCoreDeviceErrorEntry$ = DisassociateClientDeviceFromCoreDeviceErrorEntry$;
|
|
2054
|
+
exports.DisassociateServiceRoleFromAccount$ = DisassociateServiceRoleFromAccount$;
|
|
1996
2055
|
exports.DisassociateServiceRoleFromAccountCommand = DisassociateServiceRoleFromAccountCommand;
|
|
2056
|
+
exports.DisassociateServiceRoleFromAccountRequest$ = DisassociateServiceRoleFromAccountRequest$;
|
|
2057
|
+
exports.DisassociateServiceRoleFromAccountResponse$ = DisassociateServiceRoleFromAccountResponse$;
|
|
2058
|
+
exports.EffectiveDeployment$ = EffectiveDeployment$;
|
|
1997
2059
|
exports.EffectiveDeploymentExecutionStatus = EffectiveDeploymentExecutionStatus;
|
|
2060
|
+
exports.EffectiveDeploymentStatusDetails$ = EffectiveDeploymentStatusDetails$;
|
|
2061
|
+
exports.GetComponent$ = GetComponent$;
|
|
1998
2062
|
exports.GetComponentCommand = GetComponentCommand;
|
|
2063
|
+
exports.GetComponentRequest$ = GetComponentRequest$;
|
|
2064
|
+
exports.GetComponentResponse$ = GetComponentResponse$;
|
|
2065
|
+
exports.GetComponentVersionArtifact$ = GetComponentVersionArtifact$;
|
|
1999
2066
|
exports.GetComponentVersionArtifactCommand = GetComponentVersionArtifactCommand;
|
|
2067
|
+
exports.GetComponentVersionArtifactRequest$ = GetComponentVersionArtifactRequest$;
|
|
2068
|
+
exports.GetComponentVersionArtifactResponse$ = GetComponentVersionArtifactResponse$;
|
|
2069
|
+
exports.GetConnectivityInfo$ = GetConnectivityInfo$;
|
|
2000
2070
|
exports.GetConnectivityInfoCommand = GetConnectivityInfoCommand;
|
|
2071
|
+
exports.GetConnectivityInfoRequest$ = GetConnectivityInfoRequest$;
|
|
2072
|
+
exports.GetConnectivityInfoResponse$ = GetConnectivityInfoResponse$;
|
|
2073
|
+
exports.GetCoreDevice$ = GetCoreDevice$;
|
|
2001
2074
|
exports.GetCoreDeviceCommand = GetCoreDeviceCommand;
|
|
2075
|
+
exports.GetCoreDeviceRequest$ = GetCoreDeviceRequest$;
|
|
2076
|
+
exports.GetCoreDeviceResponse$ = GetCoreDeviceResponse$;
|
|
2077
|
+
exports.GetDeployment$ = GetDeployment$;
|
|
2002
2078
|
exports.GetDeploymentCommand = GetDeploymentCommand;
|
|
2079
|
+
exports.GetDeploymentRequest$ = GetDeploymentRequest$;
|
|
2080
|
+
exports.GetDeploymentResponse$ = GetDeploymentResponse$;
|
|
2081
|
+
exports.GetServiceRoleForAccount$ = GetServiceRoleForAccount$;
|
|
2003
2082
|
exports.GetServiceRoleForAccountCommand = GetServiceRoleForAccountCommand;
|
|
2083
|
+
exports.GetServiceRoleForAccountRequest$ = GetServiceRoleForAccountRequest$;
|
|
2084
|
+
exports.GetServiceRoleForAccountResponse$ = GetServiceRoleForAccountResponse$;
|
|
2004
2085
|
exports.GreengrassV2 = GreengrassV2;
|
|
2005
2086
|
exports.GreengrassV2Client = GreengrassV2Client;
|
|
2006
|
-
exports.GreengrassV2ServiceException = GreengrassV2ServiceException
|
|
2087
|
+
exports.GreengrassV2ServiceException = GreengrassV2ServiceException;
|
|
2088
|
+
exports.GreengrassV2ServiceException$ = GreengrassV2ServiceException$;
|
|
2089
|
+
exports.InstalledComponent$ = InstalledComponent$;
|
|
2007
2090
|
exports.InstalledComponentLifecycleState = InstalledComponentLifecycleState;
|
|
2008
2091
|
exports.InstalledComponentTopologyFilter = InstalledComponentTopologyFilter;
|
|
2009
|
-
exports.InternalServerException = InternalServerException
|
|
2092
|
+
exports.InternalServerException = InternalServerException;
|
|
2093
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2010
2094
|
exports.IoTJobAbortAction = IoTJobAbortAction;
|
|
2095
|
+
exports.IoTJobAbortConfig$ = IoTJobAbortConfig$;
|
|
2096
|
+
exports.IoTJobAbortCriteria$ = IoTJobAbortCriteria$;
|
|
2011
2097
|
exports.IoTJobExecutionFailureType = IoTJobExecutionFailureType;
|
|
2098
|
+
exports.IoTJobExecutionsRolloutConfig$ = IoTJobExecutionsRolloutConfig$;
|
|
2099
|
+
exports.IoTJobExponentialRolloutRate$ = IoTJobExponentialRolloutRate$;
|
|
2100
|
+
exports.IoTJobRateIncreaseCriteria$ = IoTJobRateIncreaseCriteria$;
|
|
2101
|
+
exports.IoTJobTimeoutConfig$ = IoTJobTimeoutConfig$;
|
|
2012
2102
|
exports.IotEndpointType = IotEndpointType;
|
|
2103
|
+
exports.LambdaContainerParams$ = LambdaContainerParams$;
|
|
2104
|
+
exports.LambdaDeviceMount$ = LambdaDeviceMount$;
|
|
2105
|
+
exports.LambdaEventSource$ = LambdaEventSource$;
|
|
2013
2106
|
exports.LambdaEventSourceType = LambdaEventSourceType;
|
|
2107
|
+
exports.LambdaExecutionParameters$ = LambdaExecutionParameters$;
|
|
2014
2108
|
exports.LambdaFilesystemPermission = LambdaFilesystemPermission;
|
|
2109
|
+
exports.LambdaFunctionRecipeSource$ = LambdaFunctionRecipeSource$;
|
|
2015
2110
|
exports.LambdaInputPayloadEncodingType = LambdaInputPayloadEncodingType;
|
|
2016
2111
|
exports.LambdaIsolationMode = LambdaIsolationMode;
|
|
2112
|
+
exports.LambdaLinuxProcessParams$ = LambdaLinuxProcessParams$;
|
|
2113
|
+
exports.LambdaVolumeMount$ = LambdaVolumeMount$;
|
|
2114
|
+
exports.ListClientDevicesAssociatedWithCoreDevice$ = ListClientDevicesAssociatedWithCoreDevice$;
|
|
2017
2115
|
exports.ListClientDevicesAssociatedWithCoreDeviceCommand = ListClientDevicesAssociatedWithCoreDeviceCommand;
|
|
2116
|
+
exports.ListClientDevicesAssociatedWithCoreDeviceRequest$ = ListClientDevicesAssociatedWithCoreDeviceRequest$;
|
|
2117
|
+
exports.ListClientDevicesAssociatedWithCoreDeviceResponse$ = ListClientDevicesAssociatedWithCoreDeviceResponse$;
|
|
2118
|
+
exports.ListComponentVersions$ = ListComponentVersions$;
|
|
2018
2119
|
exports.ListComponentVersionsCommand = ListComponentVersionsCommand;
|
|
2120
|
+
exports.ListComponentVersionsRequest$ = ListComponentVersionsRequest$;
|
|
2121
|
+
exports.ListComponentVersionsResponse$ = ListComponentVersionsResponse$;
|
|
2122
|
+
exports.ListComponents$ = ListComponents$;
|
|
2019
2123
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
2124
|
+
exports.ListComponentsRequest$ = ListComponentsRequest$;
|
|
2125
|
+
exports.ListComponentsResponse$ = ListComponentsResponse$;
|
|
2126
|
+
exports.ListCoreDevices$ = ListCoreDevices$;
|
|
2020
2127
|
exports.ListCoreDevicesCommand = ListCoreDevicesCommand;
|
|
2128
|
+
exports.ListCoreDevicesRequest$ = ListCoreDevicesRequest$;
|
|
2129
|
+
exports.ListCoreDevicesResponse$ = ListCoreDevicesResponse$;
|
|
2130
|
+
exports.ListDeployments$ = ListDeployments$;
|
|
2021
2131
|
exports.ListDeploymentsCommand = ListDeploymentsCommand;
|
|
2132
|
+
exports.ListDeploymentsRequest$ = ListDeploymentsRequest$;
|
|
2133
|
+
exports.ListDeploymentsResponse$ = ListDeploymentsResponse$;
|
|
2134
|
+
exports.ListEffectiveDeployments$ = ListEffectiveDeployments$;
|
|
2022
2135
|
exports.ListEffectiveDeploymentsCommand = ListEffectiveDeploymentsCommand;
|
|
2136
|
+
exports.ListEffectiveDeploymentsRequest$ = ListEffectiveDeploymentsRequest$;
|
|
2137
|
+
exports.ListEffectiveDeploymentsResponse$ = ListEffectiveDeploymentsResponse$;
|
|
2138
|
+
exports.ListInstalledComponents$ = ListInstalledComponents$;
|
|
2023
2139
|
exports.ListInstalledComponentsCommand = ListInstalledComponentsCommand;
|
|
2140
|
+
exports.ListInstalledComponentsRequest$ = ListInstalledComponentsRequest$;
|
|
2141
|
+
exports.ListInstalledComponentsResponse$ = ListInstalledComponentsResponse$;
|
|
2142
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2024
2143
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2144
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2145
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
2025
2146
|
exports.RecipeOutputFormat = RecipeOutputFormat;
|
|
2026
|
-
exports.RequestAlreadyInProgressException = RequestAlreadyInProgressException
|
|
2147
|
+
exports.RequestAlreadyInProgressException = RequestAlreadyInProgressException;
|
|
2148
|
+
exports.RequestAlreadyInProgressException$ = RequestAlreadyInProgressException$;
|
|
2149
|
+
exports.ResolveComponentCandidates$ = ResolveComponentCandidates$;
|
|
2027
2150
|
exports.ResolveComponentCandidatesCommand = ResolveComponentCandidatesCommand;
|
|
2028
|
-
exports.
|
|
2151
|
+
exports.ResolveComponentCandidatesRequest$ = ResolveComponentCandidatesRequest$;
|
|
2152
|
+
exports.ResolveComponentCandidatesResponse$ = ResolveComponentCandidatesResponse$;
|
|
2153
|
+
exports.ResolvedComponentVersion$ = ResolvedComponentVersion$;
|
|
2154
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2155
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2029
2156
|
exports.S3EndpointType = S3EndpointType;
|
|
2030
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException
|
|
2157
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2158
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
2159
|
+
exports.SystemResourceLimits$ = SystemResourceLimits$;
|
|
2160
|
+
exports.TagResource$ = TagResource$;
|
|
2031
2161
|
exports.TagResourceCommand = TagResourceCommand;
|
|
2032
|
-
exports.
|
|
2162
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
2163
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
2164
|
+
exports.ThrottlingException = ThrottlingException;
|
|
2165
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
2166
|
+
exports.UntagResource$ = UntagResource$;
|
|
2033
2167
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
2168
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
2169
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
2170
|
+
exports.UpdateConnectivityInfo$ = UpdateConnectivityInfo$;
|
|
2034
2171
|
exports.UpdateConnectivityInfoCommand = UpdateConnectivityInfoCommand;
|
|
2035
|
-
exports.
|
|
2172
|
+
exports.UpdateConnectivityInfoRequest$ = UpdateConnectivityInfoRequest$;
|
|
2173
|
+
exports.UpdateConnectivityInfoResponse$ = UpdateConnectivityInfoResponse$;
|
|
2174
|
+
exports.ValidationException = ValidationException;
|
|
2175
|
+
exports.ValidationException$ = ValidationException$;
|
|
2176
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
2036
2177
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
2037
2178
|
exports.VendorGuidance = VendorGuidance;
|
|
2038
2179
|
exports.paginateListClientDevicesAssociatedWithCoreDevice = paginateListClientDevicesAssociatedWithCoreDevice;
|