@aws-sdk/client-iot-managed-integrations 3.987.0 → 3.988.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 CHANGED
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
19
+ var errors = require('./models/errors');
20
+ var IoTManagedIntegrationsServiceException = require('./models/IoTManagedIntegrationsServiceException');
18
21
 
19
22
  const resolveClientEndpointParameters = (options) => {
20
23
  return Object.assign(options, {
@@ -108,2279 +111,6 @@ class IoTManagedIntegrationsClient extends smithyClient.Client {
108
111
  }
109
112
  }
110
113
 
111
- class IoTManagedIntegrationsServiceException extends smithyClient.ServiceException {
112
- constructor(options) {
113
- super(options);
114
- Object.setPrototypeOf(this, IoTManagedIntegrationsServiceException.prototype);
115
- }
116
- }
117
-
118
- class AccessDeniedException extends IoTManagedIntegrationsServiceException {
119
- name = "AccessDeniedException";
120
- $fault = "client";
121
- Message;
122
- constructor(opts) {
123
- super({
124
- name: "AccessDeniedException",
125
- $fault: "client",
126
- ...opts,
127
- });
128
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
129
- this.Message = opts.Message;
130
- }
131
- }
132
- class ConflictException extends IoTManagedIntegrationsServiceException {
133
- name = "ConflictException";
134
- $fault = "client";
135
- Message;
136
- constructor(opts) {
137
- super({
138
- name: "ConflictException",
139
- $fault: "client",
140
- ...opts,
141
- });
142
- Object.setPrototypeOf(this, ConflictException.prototype);
143
- this.Message = opts.Message;
144
- }
145
- }
146
- class InternalServerException extends IoTManagedIntegrationsServiceException {
147
- name = "InternalServerException";
148
- $fault = "server";
149
- Message;
150
- constructor(opts) {
151
- super({
152
- name: "InternalServerException",
153
- $fault: "server",
154
- ...opts,
155
- });
156
- Object.setPrototypeOf(this, InternalServerException.prototype);
157
- this.Message = opts.Message;
158
- }
159
- }
160
- class ResourceNotFoundException extends IoTManagedIntegrationsServiceException {
161
- name = "ResourceNotFoundException";
162
- $fault = "client";
163
- Message;
164
- ResourceId;
165
- ResourceType;
166
- constructor(opts) {
167
- super({
168
- name: "ResourceNotFoundException",
169
- $fault: "client",
170
- ...opts,
171
- });
172
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
173
- this.Message = opts.Message;
174
- this.ResourceId = opts.ResourceId;
175
- this.ResourceType = opts.ResourceType;
176
- }
177
- }
178
- class ServiceUnavailableException extends IoTManagedIntegrationsServiceException {
179
- name = "ServiceUnavailableException";
180
- $fault = "server";
181
- Message;
182
- constructor(opts) {
183
- super({
184
- name: "ServiceUnavailableException",
185
- $fault: "server",
186
- ...opts,
187
- });
188
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
189
- this.Message = opts.Message;
190
- }
191
- }
192
- class ThrottlingException extends IoTManagedIntegrationsServiceException {
193
- name = "ThrottlingException";
194
- $fault = "client";
195
- Message;
196
- constructor(opts) {
197
- super({
198
- name: "ThrottlingException",
199
- $fault: "client",
200
- ...opts,
201
- });
202
- Object.setPrototypeOf(this, ThrottlingException.prototype);
203
- this.Message = opts.Message;
204
- }
205
- }
206
- class UnauthorizedException extends IoTManagedIntegrationsServiceException {
207
- name = "UnauthorizedException";
208
- $fault = "client";
209
- Message;
210
- constructor(opts) {
211
- super({
212
- name: "UnauthorizedException",
213
- $fault: "client",
214
- ...opts,
215
- });
216
- Object.setPrototypeOf(this, UnauthorizedException.prototype);
217
- this.Message = opts.Message;
218
- }
219
- }
220
- class ValidationException extends IoTManagedIntegrationsServiceException {
221
- name = "ValidationException";
222
- $fault = "client";
223
- Message;
224
- constructor(opts) {
225
- super({
226
- name: "ValidationException",
227
- $fault: "client",
228
- ...opts,
229
- });
230
- Object.setPrototypeOf(this, ValidationException.prototype);
231
- this.Message = opts.Message;
232
- }
233
- }
234
- class ServiceQuotaExceededException extends IoTManagedIntegrationsServiceException {
235
- name = "ServiceQuotaExceededException";
236
- $fault = "client";
237
- Message;
238
- constructor(opts) {
239
- super({
240
- name: "ServiceQuotaExceededException",
241
- $fault: "client",
242
- ...opts,
243
- });
244
- Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
245
- this.Message = opts.Message;
246
- }
247
- }
248
- class LimitExceededException extends IoTManagedIntegrationsServiceException {
249
- name = "LimitExceededException";
250
- $fault = "client";
251
- Message;
252
- constructor(opts) {
253
- super({
254
- name: "LimitExceededException",
255
- $fault: "client",
256
- ...opts,
257
- });
258
- Object.setPrototypeOf(this, LimitExceededException.prototype);
259
- this.Message = opts.Message;
260
- }
261
- }
262
- class InternalFailureException extends IoTManagedIntegrationsServiceException {
263
- name = "InternalFailureException";
264
- $fault = "server";
265
- Message;
266
- constructor(opts) {
267
- super({
268
- name: "InternalFailureException",
269
- $fault: "server",
270
- ...opts,
271
- });
272
- Object.setPrototypeOf(this, InternalFailureException.prototype);
273
- this.Message = opts.Message;
274
- }
275
- }
276
- class InvalidRequestException extends IoTManagedIntegrationsServiceException {
277
- name = "InvalidRequestException";
278
- $fault = "client";
279
- Message;
280
- constructor(opts) {
281
- super({
282
- name: "InvalidRequestException",
283
- $fault: "client",
284
- ...opts,
285
- });
286
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
287
- this.Message = opts.Message;
288
- }
289
- }
290
-
291
- const _A = "Action";
292
- const _AA = "ActivatedAt";
293
- const _AAI = "AccountAssociationItem";
294
- const _AAIc = "AccountAssociationId";
295
- const _AALD = "AccountAssociationListDefinition";
296
- const _AC = "AuthConfig";
297
- const _ACC = "AbortConfigCriteria";
298
- const _ACCL = "AbortConfigCriteriaList";
299
- const _ACU = "AuthConfigUpdate";
300
- const _ACb = "AbortConfig";
301
- const _ADE = "AccessDeniedException";
302
- const _AM = "AuthMaterial";
303
- const _AMN = "AuthMaterialName";
304
- const _AMS = "AuthMaterialString";
305
- const _AMT = "AuthenticationMaterialType";
306
- const _AMTA = "AuthMaterialsToAdd";
307
- const _AMTU = "AuthMaterialsToUpdate";
308
- const _AMu = "AuthenticationMaterial";
309
- const _AMut = "AuthMaterials";
310
- const _API = "AdvertisedProductId";
311
- const _AS = "AssociationState";
312
- const _AT = "AuthType";
313
- const _Ar = "Arn";
314
- const _B = "Brand";
315
- const _BRPM = "BaseRatePerMinute";
316
- const _C = "Classification";
317
- const _CA = "CapabilityAction";
318
- const _CAA = "CreateAccountAssociation";
319
- const _CAAR = "CreateAccountAssociationRequest";
320
- const _CAARr = "CreateAccountAssociationResponse";
321
- const _CAI = "ConnectorAssociationId";
322
- const _CAIo = "ConnectorAssociationIdentifier";
323
- const _CAa = "CapabilityActions";
324
- const _CAr = "CreatedAt";
325
- const _CC = "CaCertificate";
326
- const _CCC = "CreateCloudConnector";
327
- const _CCCR = "CreateCloudConnectorRequest";
328
- const _CCCRr = "CreateCloudConnectorResponse";
329
- const _CCD = "CreateConnectorDestination";
330
- const _CCDR = "CreateConnectorDestinationRequest";
331
- const _CCDRr = "CreateConnectorDestinationResponse";
332
- const _CCI = "CloudConnectorId";
333
- const _CCL = "CreateCredentialLocker";
334
- const _CCLR = "CreateCredentialLockerRequest";
335
- const _CCLRr = "CreateCredentialLockerResponse";
336
- const _CCPK = "ClaimCertificatePrivateKey";
337
- const _CCl = "ClaimCertificate";
338
- const _CCo = "CommandCapability";
339
- const _CCom = "CommandCapabilities";
340
- const _CD = "CreateDestination";
341
- const _CDI = "ConnectorDeviceId";
342
- const _CDIF = "ConnectorDestinationIdFilter";
343
- const _CDIFo = "ConnectorDeviceIdFilter";
344
- const _CDIL = "ConnectorDeviceIdList";
345
- const _CDIo = "ConnectorDestinationId";
346
- const _CDL = "ConnectorDestinationList";
347
- const _CDLD = "ConnectorDestinationListDefinition";
348
- const _CDN = "ConnectorDeviceName";
349
- const _CDR = "CreateDestinationRequest";
350
- const _CDRr = "CreateDestinationResponse";
351
- const _CDS = "ConnectorDestinationSummary";
352
- const _CE = "CommandEndpoint";
353
- const _CELC = "CreateEventLogConfiguration";
354
- const _CELCR = "CreateEventLogConfigurationRequest";
355
- const _CELCRr = "CreateEventLogConfigurationResponse";
356
- const _CEM = "ConnectorEventMessage";
357
- const _CEo = "ConfigurationError";
358
- const _CEom = "CommandEndpoints";
359
- const _CEon = "ConflictException";
360
- const _CI = "CapabilityId";
361
- const _CIF = "CapabilityIdFilter";
362
- const _CIo = "ConnectorItem";
363
- const _CIon = "ControllerId";
364
- const _CIonn = "ConnectorId";
365
- const _CIont = "ControllerIdentifier";
366
- const _CL = "ConnectorList";
367
- const _CLF = "CredentialLockerFilter";
368
- const _CLI = "CredentialLockerId";
369
- const _CLLD = "CredentialLockerListDefinition";
370
- const _CLN = "CredentialLockerName";
371
- const _CLS = "CredentialLockerSummary";
372
- const _CMT = "CreateManagedThing";
373
- const _CMTR = "CreateManagedThingRequest";
374
- const _CMTRr = "CreateManagedThingResponse";
375
- const _CNC = "CreateNotificationConfiguration";
376
- const _CNCR = "CreateNotificationConfigurationRequest";
377
- const _CNCRr = "CreateNotificationConfigurationResponse";
378
- const _COT = "CreateOtaTask";
379
- const _COTC = "CreateOtaTaskConfiguration";
380
- const _COTCR = "CreateOtaTaskConfigurationRequest";
381
- const _COTCRr = "CreateOtaTaskConfigurationResponse";
382
- const _COTR = "CreateOtaTaskRequest";
383
- const _COTRr = "CreateOtaTaskResponse";
384
- const _CP = "CapabilityProperties";
385
- const _CPD = "CustomProtocolDetail";
386
- const _CPI = "ConnectorPolicyId";
387
- const _CPIF = "ConnectorPolicyIdFilter";
388
- const _CPP = "CreateProvisioningProfile";
389
- const _CPPR = "CreateProvisioningProfileRequest";
390
- const _CPPRr = "CreateProvisioningProfileResponse";
391
- const _CPe = "CertificatePem";
392
- const _CR = "CapabilityReport";
393
- const _CRC = "CapabilityReportCapability";
394
- const _CRCa = "CapabilityReportCapabilities";
395
- const _CRE = "CapabilityReportEndpoint";
396
- const _CREa = "CapabilityReportEndpoints";
397
- const _CS = "ConfigurationStatus";
398
- const _CSI = "CapabilitySchemaItem";
399
- const _CSa = "CapabilitySchemas";
400
- const _CT = "ClientToken";
401
- const _Ca = "Capabilities";
402
- const _Co = "Connected";
403
- const _D = "Description";
404
- const _DA = "DiscoveredAt";
405
- const _DAA = "DeleteAccountAssociation";
406
- const _DAAR = "DeleteAccountAssociationRequest";
407
- const _DAARe = "DeregisterAccountAssociationRequest";
408
- const _DAAe = "DeregisterAccountAssociation";
409
- const _DAMS = "DiscoveryAuthMaterialString";
410
- const _DBR = "DaysBeforeRenewal";
411
- const _DCC = "DeleteCloudConnector";
412
- const _DCCR = "DeleteCloudConnectorRequest";
413
- const _DCD = "DeleteConnectorDestination";
414
- const _DCDR = "DeleteConnectorDestinationRequest";
415
- const _DCL = "DeleteCredentialLocker";
416
- const _DCLR = "DeleteCredentialLockerRequest";
417
- const _DD = "DeleteDestination";
418
- const _DDA = "DeliveryDestinationArn";
419
- const _DDI = "DeviceDiscoveryId";
420
- const _DDLD = "DeviceDiscoveryListDefinition";
421
- const _DDLDi = "DiscoveredDeviceListDefinition";
422
- const _DDR = "DeleteDestinationRequest";
423
- const _DDS = "DeviceDiscoverySummary";
424
- const _DDSi = "DiscoveredDeviceSummary";
425
- const _DDT = "DeliveryDestinationType";
426
- const _DELC = "DeleteEventLogConfiguration";
427
- const _DELCR = "DeleteEventLogConfigurationRequest";
428
- const _DIM = "DurationInMinutes";
429
- const _DL = "DestinationList";
430
- const _DLD = "DestinationListDefinition";
431
- const _DLSAU = "DeleteLocalStoreAfterUpload";
432
- const _DM = "DeviceMetadata";
433
- const _DMT = "DeleteManagedThing";
434
- const _DMTR = "DeleteManagedThingRequest";
435
- const _DN = "DestinationName";
436
- const _DNC = "DeleteNotificationConfiguration";
437
- const _DNCR = "DeleteNotificationConfigurationRequest";
438
- const _DOT = "DeleteOtaTask";
439
- const _DOTC = "DeleteOtaTaskConfiguration";
440
- const _DOTCR = "DeleteOtaTaskConfigurationRequest";
441
- const _DOTR = "DeleteOtaTaskRequest";
442
- const _DPP = "DeleteProvisioningProfile";
443
- const _DPPR = "DeleteProvisioningProfileRequest";
444
- const _DR = "DisconnectReason";
445
- const _DS = "DestinationSummary";
446
- const _DSK = "DeviceSpecificKey";
447
- const _DT = "DiscoveryType";
448
- const _DTe = "DeviceTypes";
449
- const _De = "Device";
450
- const _Dev = "Devices";
451
- const _E = "Endpoints";
452
- const _EA = "EndpointAddress";
453
- const _EAP = "EnableAsProvisioner";
454
- const _EAPn = "EnableAsProvisionee";
455
- const _EB = "EndBehavior";
456
- const _EC = "EndpointConfig";
457
- const _EDI = "EndDeviceIdentifier";
458
- const _EI = "ExtrinsicId";
459
- const _EIF = "EndpointIdFilter";
460
- const _EIn = "EndpointId";
461
- const _ELCL = "EventLogConfigurationList";
462
- const _ELCLD = "EventLogConfigurationListDefinition";
463
- const _ELCS = "EventLogConfigurationSummary";
464
- const _ELL = "EventLogLevel";
465
- const _EM = "ErrorMessage";
466
- const _EN = "ExecutionNumber";
467
- const _ERR = "ExponentialRolloutRate";
468
- const _ES = "ExecutionSummaries";
469
- const _ET = "EndpointType";
470
- const _ETn = "EndTime";
471
- const _ETv = "EventType";
472
- const _EV = "ExtrinsicVersion";
473
- const _F = "Format";
474
- const _FA = "FinishedAt";
475
- const _FT = "FailureType";
476
- const _Fo = "Force";
477
- const _GA = "GeneralAuthorization";
478
- const _GAA = "GetAccountAssociation";
479
- const _GAAR = "GetAccountAssociationRequest";
480
- const _GAARe = "GetAccountAssociationResponse";
481
- const _GAN = "GeneralAuthorizationName";
482
- const _GAU = "GeneralAuthorizationUpdate";
483
- const _GCC = "GetCloudConnector";
484
- const _GCCR = "GetCloudConnectorRequest";
485
- const _GCCRe = "GetCloudConnectorResponse";
486
- const _GCD = "GetConnectorDestination";
487
- const _GCDR = "GetConnectorDestinationRequest";
488
- const _GCDRe = "GetConnectorDestinationResponse";
489
- const _GCE = "GetCustomEndpoint";
490
- const _GCER = "GetCustomEndpointRequest";
491
- const _GCERe = "GetCustomEndpointResponse";
492
- const _GCL = "GetCredentialLocker";
493
- const _GCLR = "GetCredentialLockerRequest";
494
- const _GCLRe = "GetCredentialLockerResponse";
495
- const _GD = "GetDestination";
496
- const _GDD = "GetDeviceDiscovery";
497
- const _GDDR = "GetDeviceDiscoveryRequest";
498
- const _GDDRe = "GetDeviceDiscoveryResponse";
499
- const _GDEC = "GetDefaultEncryptionConfiguration";
500
- const _GDECR = "GetDefaultEncryptionConfigurationRequest";
501
- const _GDECRe = "GetDefaultEncryptionConfigurationResponse";
502
- const _GDR = "GetDestinationRequest";
503
- const _GDRe = "GetDestinationResponse";
504
- const _GELC = "GetEventLogConfiguration";
505
- const _GELCR = "GetEventLogConfigurationRequest";
506
- const _GELCRe = "GetEventLogConfigurationResponse";
507
- const _GHC = "GetHubConfiguration";
508
- const _GHCR = "GetHubConfigurationRequest";
509
- const _GHCRe = "GetHubConfigurationResponse";
510
- const _GMT = "GetManagedThing";
511
- const _GMTC = "GetManagedThingCapabilities";
512
- const _GMTCD = "GetManagedThingConnectivityData";
513
- const _GMTCDR = "GetManagedThingConnectivityDataRequest";
514
- const _GMTCDRe = "GetManagedThingConnectivityDataResponse";
515
- const _GMTCR = "GetManagedThingCapabilitiesRequest";
516
- const _GMTCRe = "GetManagedThingCapabilitiesResponse";
517
- const _GMTCRet = "GetManagedThingCertificateRequest";
518
- const _GMTCReta = "GetManagedThingCertificateResponse";
519
- const _GMTCe = "GetManagedThingCertificate";
520
- const _GMTMD = "GetManagedThingMetaData";
521
- const _GMTMDR = "GetManagedThingMetaDataRequest";
522
- const _GMTMDRe = "GetManagedThingMetaDataResponse";
523
- const _GMTR = "GetManagedThingRequest";
524
- const _GMTRe = "GetManagedThingResponse";
525
- const _GMTS = "GetManagedThingState";
526
- const _GMTSR = "GetManagedThingStateRequest";
527
- const _GMTSRe = "GetManagedThingStateResponse";
528
- const _GNC = "GetNotificationConfiguration";
529
- const _GNCR = "GetNotificationConfigurationRequest";
530
- const _GNCRe = "GetNotificationConfigurationResponse";
531
- const _GOT = "GetOtaTask";
532
- const _GOTC = "GetOtaTaskConfiguration";
533
- const _GOTCR = "GetOtaTaskConfigurationRequest";
534
- const _GOTCRe = "GetOtaTaskConfigurationResponse";
535
- const _GOTR = "GetOtaTaskRequest";
536
- const _GOTRe = "GetOtaTaskResponse";
537
- const _GPP = "GetProvisioningProfile";
538
- const _GPPR = "GetProvisioningProfileRequest";
539
- const _GPPRe = "GetProvisioningProfileResponse";
540
- const _GRLC = "GetRuntimeLogConfiguration";
541
- const _GRLCR = "GetRuntimeLogConfigurationRequest";
542
- const _GRLCRe = "GetRuntimeLogConfigurationResponse";
543
- const _GSV = "GetSchemaVersion";
544
- const _GSVR = "GetSchemaVersionRequest";
545
- const _GSVRe = "GetSchemaVersionResponse";
546
- const _HNM = "HubNetworkMode";
547
- const _HTTESIS = "HubTokenTimerExpirySettingInSeconds";
548
- const _I = "Id";
549
- const _IAN = "InternationalArticleNumber";
550
- const _IF = "IncrementFactor";
551
- const _IFE = "InternalFailureException";
552
- const _IPTIM = "InProgressTimeoutInMinutes";
553
- const _IRE = "InvalidRequestException";
554
- const _ISE = "InternalServerException";
555
- const _Id = "Identifier";
556
- const _It = "Items";
557
- const _LA = "LambdaArn";
558
- const _LAA = "ListAccountAssociations";
559
- const _LAAR = "ListAccountAssociationsRequest";
560
- const _LAARi = "ListAccountAssociationsResponse";
561
- const _LC = "LambdaConfig";
562
- const _LCC = "ListCloudConnectors";
563
- const _LCCR = "ListCloudConnectorsRequest";
564
- const _LCCRi = "ListCloudConnectorsResponse";
565
- const _LCD = "ListConnectorDestinations";
566
- const _LCDR = "ListConnectorDestinationsRequest";
567
- const _LCDRi = "ListConnectorDestinationsResponse";
568
- const _LCL = "ListCredentialLockers";
569
- const _LCLR = "ListCredentialLockersRequest";
570
- const _LCLRi = "ListCredentialLockersResponse";
571
- const _LD = "ListDestinations";
572
- const _LDD = "ListDeviceDiscoveries";
573
- const _LDDR = "ListDeviceDiscoveriesRequest";
574
- const _LDDRi = "ListDeviceDiscoveriesResponse";
575
- const _LDDRis = "ListDiscoveredDevicesRequest";
576
- const _LDDRist = "ListDiscoveredDevicesResponse";
577
- const _LDDi = "ListDiscoveredDevices";
578
- const _LDR = "ListDestinationsRequest";
579
- const _LDRi = "ListDestinationsResponse";
580
- const _LEE = "LimitExceededException";
581
- const _LELC = "ListEventLogConfigurations";
582
- const _LELCR = "ListEventLogConfigurationsRequest";
583
- const _LELCRi = "ListEventLogConfigurationsResponse";
584
- const _LFL = "LogFlushLevel";
585
- const _LL = "LogLevel";
586
- const _LMT = "ListManagedThings";
587
- const _LMTAA = "ListManagedThingAccountAssociations";
588
- const _LMTAAR = "ListManagedThingAccountAssociationsRequest";
589
- const _LMTAARi = "ListManagedThingAccountAssociationsResponse";
590
- const _LMTR = "ListManagedThingsRequest";
591
- const _LMTRi = "ListManagedThingsResponse";
592
- const _LMTS = "ListManagedThingSchemas";
593
- const _LMTSR = "ListManagedThingSchemasRequest";
594
- const _LMTSRi = "ListManagedThingSchemasResponse";
595
- const _LNC = "ListNotificationConfigurations";
596
- const _LNCR = "ListNotificationConfigurationsRequest";
597
- const _LNCRi = "ListNotificationConfigurationsResponse";
598
- const _LOT = "ListOtaTasks";
599
- const _LOTC = "ListOtaTaskConfigurations";
600
- const _LOTCR = "ListOtaTaskConfigurationsRequest";
601
- const _LOTCRi = "ListOtaTaskConfigurationsResponse";
602
- const _LOTE = "ListOtaTaskExecutions";
603
- const _LOTER = "ListOtaTaskExecutionsRequest";
604
- const _LOTERi = "ListOtaTaskExecutionsResponse";
605
- const _LOTR = "ListOtaTasksRequest";
606
- const _LOTRi = "ListOtaTasksResponse";
607
- const _LPP = "ListProvisioningProfiles";
608
- const _LPPR = "ListProvisioningProfilesRequest";
609
- const _LPPRi = "ListProvisioningProfilesResponse";
610
- const _LSFRMB = "LocalStoreFileRotationMaxBytes";
611
- const _LSFRMF = "LocalStoreFileRotationMaxFiles";
612
- const _LSL = "LocalStoreLocation";
613
- const _LSV = "ListSchemaVersions";
614
- const _LSVR = "ListSchemaVersionsRequest";
615
- const _LSVRi = "ListSchemaVersionsResponse";
616
- const _LTFR = "ListTagsForResource";
617
- const _LTFRR = "ListTagsForResourceRequest";
618
- const _LTFRRi = "ListTagsForResourceResponse";
619
- const _LUA = "LastUpdatedAt";
620
- const _M = "Model";
621
- const _MA = "MacAddress";
622
- const _MAa = "MatterAttributes";
623
- const _MC = "MatterCluster";
624
- const _MCR = "MatterCapabilityReport";
625
- const _MCRA = "MatterCapabilityReportAttribute";
626
- const _MCRAa = "MatterCapabilityReportAttributes";
627
- const _MCRC = "MatterCapabilityReportCluster";
628
- const _MCRCa = "MatterCapabilityReportClusters";
629
- const _MCRE = "MatterCapabilityReportEndpoint";
630
- const _MCREa = "MatterCapabilityReportEndpoints";
631
- const _MCa = "MatterClusters";
632
- const _MCat = "MatterCommands";
633
- const _MD = "MetaData";
634
- const _ME = "MatterEndpoint";
635
- const _MEa = "MatterEvents";
636
- const _MF = "MatterFields";
637
- const _MNOET = "MinNumberOfExecutedThings";
638
- const _MNOR = "MinNumberOfRetries";
639
- const _MPM = "MaximumPerMinute";
640
- const _MR = "MaxResults";
641
- const _MTA = "ManagedThingAssociation";
642
- const _MTAL = "ManagedThingAssociationList";
643
- const _MTAS = "ManagedThingAssociationStatus";
644
- const _MTI = "ManagedThingId";
645
- const _MTLD = "ManagedThingListDefinition";
646
- const _MTS = "ManagedThingSummary";
647
- const _MTSLD = "ManagedThingSchemaListDefinition";
648
- const _MTSLI = "ManagedThingSchemaListItem";
649
- const _MW = "MaintenanceWindows";
650
- const _Me = "Message";
651
- const _Mo = "Modification";
652
- const _N = "Name";
653
- const _NCL = "NotificationConfigurationList";
654
- const _NCLD = "NotificationConfigurationListDefinition";
655
- const _NCS = "NotificationConfigurationSummary";
656
- const _NF = "NamespaceFilter";
657
- const _NOCT = "NumberOfCanceledThings";
658
- const _NOFT = "NumberOfFailedThings";
659
- const _NOIPT = "NumberOfInProgressThings";
660
- const _NT = "NextToken";
661
- const _Na = "Namespace";
662
- const _O = "Owner";
663
- const _OAAU = "OAuthAuthorizationUrl";
664
- const _OAAUO = "OAuthAuthorizationUrlOutput";
665
- const _OAC = "OAuthConfig";
666
- const _OACRU = "OAuthCompleteRedirectUrl";
667
- const _OAU = "OAuthUpdate";
668
- const _OF = "OwnerFilter";
669
- const _OM = "OtaMechanism";
670
- const _OSC = "OtaSchedulingConfig";
671
- const _OT = "OtaType";
672
- const _OTAC = "OtaTaskAbortConfig";
673
- const _OTCLD = "OtaTaskConfigurationListDefinition";
674
- const _OTCN = "OtaTaskConfigurationName";
675
- const _OTCS = "OtaTaskConfigurationSummary";
676
- const _OTERC = "OtaTaskExecutionRetryConfig";
677
- const _OTERCt = "OtaTaskExecutionRolloutConfig";
678
- const _OTES = "OtaTaskExecutionSummaries";
679
- const _OTESLD = "OtaTaskExecutionSummariesListDefinition";
680
- const _OTESt = "OtaTaskExecutionSummary";
681
- const _OTLD = "OtaTaskListDefinition";
682
- const _OTQS = "OtaTargetQueryString";
683
- const _OTS = "OtaTaskSummary";
684
- const _OTSC = "OtaTaskSchedulingConfig";
685
- const _OTTC = "OtaTaskTimeoutConfig";
686
- const _OV = "OperationVersion";
687
- const _Op = "Operation";
688
- const _P = "Protocol";
689
- const _PC = "PushConfig";
690
- const _PCI = "ParentControllerId";
691
- const _PCIF = "ParentControllerIdentifierFilter";
692
- const _PDEC = "PutDefaultEncryptionConfiguration";
693
- const _PDECR = "PutDefaultEncryptionConfigurationRequest";
694
- const _PDECRu = "PutDefaultEncryptionConfigurationResponse";
695
- const _PHC = "PutHubConfiguration";
696
- const _PHCR = "PutHubConfigurationRequest";
697
- const _PHCRu = "PutHubConfigurationResponse";
698
- const _PPLD = "ProvisioningProfileListDefinition";
699
- const _PPS = "ProvisioningProfileSummary";
700
- const _PRLC = "PutRuntimeLogConfiguration";
701
- const _PRLCR = "PutRuntimeLogConfigurationRequest";
702
- const _PRTR = "ProactiveRefreshTokenRenewal";
703
- const _PS = "ProvisioningStatus";
704
- const _PSF = "ProvisioningStatusFilter";
705
- const _PT = "ProvisioningType";
706
- const _QA = "QueuedAt";
707
- const _R = "Role";
708
- const _RA = "RoleArn";
709
- const _RAA = "RegisterAccountAssociation";
710
- const _RAAR = "RegisterAccountAssociationRequest";
711
- const _RAARe = "RegisterAccountAssociationResponse";
712
- const _RAe = "ResourceArn";
713
- const _RAet = "RetryAttempt";
714
- const _RC = "RolloutConfig";
715
- const _RCC = "RetryConfigCriteria";
716
- const _RCCL = "RetryConfigCriteriaList";
717
- const _RCE = "RegisterCustomEndpoint";
718
- const _RCER = "RegisterCustomEndpointRequest";
719
- const _RCERe = "RegisterCustomEndpointResponse";
720
- const _RF = "RoleFilter";
721
- const _RI = "ResourceId";
722
- const _RIC = "RateIncreaseCriteria";
723
- const _RLC = "RuntimeLogConfigurations";
724
- const _RNFE = "ResourceNotFoundException";
725
- const _RRIC = "RolloutRateIncreaseCriteria";
726
- const _RRLC = "ResetRuntimeLogConfiguration";
727
- const _RRLCR = "ResetRuntimeLogConfigurationRequest";
728
- const _RT = "ResourceType";
729
- const _S = "Schema";
730
- const _SA = "StartedAt";
731
- const _SAAR = "StartAccountAssociationRefresh";
732
- const _SAARR = "StartAccountAssociationRefreshRequest";
733
- const _SAARRt = "StartAccountAssociationRefreshResponse";
734
- const _SC = "StatusCode";
735
- const _SCE = "SendConnectorEvent";
736
- const _SCER = "SendConnectorEventRequest";
737
- const _SCERe = "SendConnectorEventResponse";
738
- const _SCt = "StateCapability";
739
- const _SCta = "StateCapabilities";
740
- const _SDD = "StartDeviceDiscovery";
741
- const _SDDR = "StartDeviceDiscoveryRequest";
742
- const _SDDRt = "StartDeviceDiscoveryResponse";
743
- const _SE = "StateEndpoint";
744
- const _SEt = "StateEndpoints";
745
- const _SF = "StatusFilter";
746
- const _SI = "SchemaId";
747
- const _SIF = "SchemaIdFilter";
748
- const _SM = "SecretsManager";
749
- const _SMTC = "SendManagedThingCommand";
750
- const _SMTCR = "SendManagedThingCommandRequest";
751
- const _SMTCRe = "SendManagedThingCommandResponse";
752
- const _SMW = "ScheduleMaintenanceWindow";
753
- const _SMWL = "ScheduleMaintenanceWindowList";
754
- const _SN = "SerialNumber";
755
- const _SNF = "SerialNumberFilter";
756
- const _SQEE = "ServiceQuotaExceededException";
757
- const _ST = "StartTime";
758
- const _SU = "S3Url";
759
- const _SUE = "ServiceUnavailableException";
760
- const _SV = "SemanticVersion";
761
- const _SVF = "SemanticVersionFilter";
762
- const _SVI = "SchemaVersionedId";
763
- const _SVL = "SchemaVersionList";
764
- const _SVLI = "SchemaVersionListItem";
765
- const _St = "Status";
766
- const _T = "Type";
767
- const _TA = "TaskArn";
768
- const _TC = "TimeoutConfig";
769
- const _TCI = "TaskConfigurationId";
770
- const _TE = "ThrottlingException";
771
- const _TES = "TaskExecutionSummary";
772
- const _TF = "TypeFilter";
773
- const _TI = "TaskId";
774
- const _TIM = "TimeoutInMinutes";
775
- const _TIr = "TraceId";
776
- const _TK = "TagKeys";
777
- const _TM = "TagsMap";
778
- const _TP = "ThresholdPercentage";
779
- const _TPD = "TaskProcessingDetails";
780
- const _TPUI = "ThirdPartyUserId";
781
- const _TR = "TagResource";
782
- const _TRR = "TagResourceRequest";
783
- const _TRRa = "TagResourceResponse";
784
- const _Ta = "Tags";
785
- const _Tar = "Target";
786
- const _Tas = "Tasks";
787
- const _Ti = "Timestamp";
788
- const _UA = "UpdatedAt";
789
- const _UAA = "UpdateAccountAssociation";
790
- const _UAAR = "UpdateAccountAssociationRequest";
791
- const _UCC = "UpdateCloudConnector";
792
- const _UCCR = "UpdateCloudConnectorRequest";
793
- const _UCD = "UpdateConnectorDestination";
794
- const _UCDR = "UpdateConnectorDestinationRequest";
795
- const _UD = "UpdateDestination";
796
- const _UDR = "UpdateDestinationRequest";
797
- const _UE = "UnauthorizedException";
798
- const _UELC = "UpdateEventLogConfiguration";
799
- const _UELCR = "UpdateEventLogConfigurationRequest";
800
- const _UI = "UserId";
801
- const _UL = "UploadLog";
802
- const _UMT = "UpdateManagedThing";
803
- const _UMTR = "UpdateManagedThingRequest";
804
- const _UNC = "UpdateNotificationConfiguration";
805
- const _UNCR = "UpdateNotificationConfigurationRequest";
806
- const _UOT = "UpdateOtaTask";
807
- const _UOTR = "UpdateOtaTaskRequest";
808
- const _UPC = "UniversalProductCode";
809
- const _UPM = "UploadPeriodMinutes";
810
- const _UR = "UntagResource";
811
- const _URR = "UntagResourceRequest";
812
- const _URRn = "UntagResourceResponse";
813
- const _V = "Visibility";
814
- const _VE = "ValidationException";
815
- const _VF = "VisibilityFilter";
816
- const _WFSSC = "WiFiSimpleSetupConfiguration";
817
- const _a = "actions";
818
- const _aTI = "actionTraceId";
819
- const _aU = "authUrl";
820
- const _ar = "arn";
821
- const _at = "attributes";
822
- const _c = "client";
823
- const _cC = "clientClusters";
824
- const _cS = "configurationStatus";
825
- const _ca = "capabilities";
826
- const _cl = "clusters";
827
- const _co = "code";
828
- const _com = "commands";
829
- const _dT = "deviceTypes";
830
- const _e = "error";
831
- const _eI = "endpointId";
832
- const _eT = "encryptionType";
833
- const _en = "endpoints";
834
- const _ena = "enabled";
835
- const _ev = "events";
836
- const _fI = "fabricIndex";
837
- const _fM = "featureMap";
838
- const _gC = "generatedCommands";
839
- const _h = "http";
840
- const _hE = "httpError";
841
- const _hQ = "httpQuery";
842
- const _i = "id";
843
- const _kKA = "kmsKeyArn";
844
- const _l = "lambda";
845
- const _m = "message";
846
- const _n = "name";
847
- const _nI = "nodeId";
848
- const _nONT = "numberOfNotifiedThings";
849
- const _nOQT = "numberOfQueuedThings";
850
- const _nORT = "numberOfRejectedThings";
851
- const _nORTu = "numberOfRemovedThings";
852
- const _nOST = "numberOfSucceededThings";
853
- const _nOTOT = "numberOfTimedOutThings";
854
- const _oA = "oAuth";
855
- const _oACRU = "oAuthCompleteRedirectUrl";
856
- const _oAU = "oAuthUpdate";
857
- const _p = "parameters";
858
- const _pI = "publicId";
859
- const _pRTR = "proactiveRefreshTokenRenewal";
860
- const _pT = "processingTargets";
861
- const _pa = "parts";
862
- const _pr = "properties";
863
- const _r = "ref";
864
- const _re = "revision";
865
- const _s = "state";
866
- const _sT = "semanticTags";
867
- const _sV = "specVersion";
868
- const _sc = "scope";
869
- const _se = "server";
870
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.iotmanagedintegrations";
871
- const _t = "tags";
872
- const _tEAS = "tokenEndpointAuthenticationScheme";
873
- const _tK = "tagKeys";
874
- const _tU = "tokenUrl";
875
- const _v = "version";
876
- const _vI = "versionId";
877
- const _va = "value";
878
- const n0 = "com.amazonaws.iotmanagedintegrations";
879
- var AuthMaterialString = [0, n0, _AMS, 8, 0];
880
- var Brand = [0, n0, _B, 8, 0];
881
- var CaCertificate = [0, n0, _CC, 8, 0];
882
- var CapabilityProperties = [0, n0, _CP, 8, 15];
883
- var ClaimCertificate = [0, n0, _CCl, 8, 0];
884
- var ClaimCertificatePrivateKey = [0, n0, _CCPK, 8, 0];
885
- var Classification = [0, n0, _C, 8, 0];
886
- var ConnectorDeviceId = [0, n0, _CDI, 8, 0];
887
- var ConnectorEventMessage = [0, n0, _CEM, 8, 0];
888
- var CredentialLockerName = [0, n0, _CLN, 8, 0];
889
- var DeviceSpecificKey = [0, n0, _DSK, 8, 0];
890
- var DiscoveryAuthMaterialString = [0, n0, _DAMS, 8, 0];
891
- var InternationalArticleNumber = [0, n0, _IAN, 8, 0];
892
- var MacAddress = [0, n0, _MA, 8, 0];
893
- var MatterAttributes = [0, n0, _MAa, 8, 15];
894
- var MatterFields = [0, n0, _MF, 8, 15];
895
- var Model = [0, n0, _M, 8, 0];
896
- var OAuthAuthorizationUrlOutput = [0, n0, _OAAUO, 8, 0];
897
- var OtaTaskConfigurationName = [0, n0, _OTCN, 8, 0];
898
- var Owner = [0, n0, _O, 8, 0];
899
- var SerialNumber = [0, n0, _SN, 8, 0];
900
- var ThirdPartyUserId = [0, n0, _TPUI, 8, 0];
901
- var UniversalProductCode = [0, n0, _UPC, 8, 0];
902
- var AbortConfigCriteria$ = [3, n0, _ACC,
903
- 0,
904
- [_A, _FT, _MNOET, _TP],
905
- [0, 0, 1, 1]
906
- ];
907
- var AccessDeniedException$ = [-3, n0, _ADE,
908
- { [_e]: _c, [_hE]: 403 },
909
- [_Me],
910
- [0]
911
- ];
912
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
913
- var AccountAssociationItem$ = [3, n0, _AAI,
914
- 0,
915
- [_AAIc, _AS, _EM, _CDIo, _N, _D, _Ar],
916
- [0, 0, 0, 0, 0, 0, 0], 2
917
- ];
918
- var AuthConfig$ = [3, n0, _AC,
919
- 0,
920
- [_oA, _GA],
921
- [() => OAuthConfig$, () => AuthMaterials]
922
- ];
923
- var AuthConfigUpdate$ = [3, n0, _ACU,
924
- 0,
925
- [_oAU, _GAU],
926
- [() => OAuthUpdate$, () => GeneralAuthorizationUpdate$]
927
- ];
928
- var AuthMaterial$ = [3, n0, _AM,
929
- 0,
930
- [_SM, _AMN],
931
- [() => SecretsManager$, 0], 2
932
- ];
933
- var CapabilityAction$ = [3, n0, _CA,
934
- 0,
935
- [_n, _r, _aTI, _p],
936
- [0, 0, 0, [() => CapabilityProperties, 0]], 1
937
- ];
938
- var CapabilityReport$ = [3, n0, _CR,
939
- 0,
940
- [_v, _en, _nI],
941
- [0, () => CapabilityReportEndpoints, 0], 2
942
- ];
943
- var CapabilityReportCapability$ = [3, n0, _CRC,
944
- 0,
945
- [_i, _n, _v, _pr, _a, _ev],
946
- [0, 0, 0, 64 | 0, 64 | 0, 64 | 0], 6
947
- ];
948
- var CapabilityReportEndpoint$ = [3, n0, _CRE,
949
- 0,
950
- [_i, _dT, _ca],
951
- [0, 64 | 0, () => CapabilityReportCapabilities], 3
952
- ];
953
- var CapabilitySchemaItem$ = [3, n0, _CSI,
954
- 0,
955
- [_F, _CI, _EI, _EV, _S],
956
- [0, 0, 0, 1, 15], 5
957
- ];
958
- var CommandCapability$ = [3, n0, _CCo,
959
- 0,
960
- [_i, _n, _v, _a],
961
- [0, 0, 0, [() => CapabilityActions, 0]], 4
962
- ];
963
- var CommandEndpoint$ = [3, n0, _CE,
964
- 0,
965
- [_eI, _ca],
966
- [0, [() => CommandCapabilities, 0]], 2
967
- ];
968
- var ConfigurationError$ = [3, n0, _CEo,
969
- 0,
970
- [_co, _m],
971
- [0, 0]
972
- ];
973
- var ConfigurationStatus$ = [3, n0, _CS,
974
- 0,
975
- [_s, _e],
976
- [0, () => ConfigurationError$], 1
977
- ];
978
- var ConflictException$ = [-3, n0, _CEon,
979
- { [_e]: _c, [_hE]: 409 },
980
- [_Me],
981
- [0]
982
- ];
983
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
984
- var ConnectorDestinationSummary$ = [3, n0, _CDS,
985
- 0,
986
- [_N, _D, _CCI, _I],
987
- [0, 0, 0, 0]
988
- ];
989
- var ConnectorItem$ = [3, n0, _CIo,
990
- 0,
991
- [_N, _EC, _D, _ET, _I, _T],
992
- [0, () => EndpointConfig$, 0, 0, 0, 0], 2
993
- ];
994
- var CreateAccountAssociationRequest$ = [3, n0, _CAAR,
995
- 0,
996
- [_CDIo, _CT, _N, _D, _Ta, _GA],
997
- [0, [0, 4], 0, 0, [() => TagsMap, 0], () => GeneralAuthorizationName$], 1
998
- ];
999
- var CreateAccountAssociationResponse$ = [3, n0, _CAARr,
1000
- 0,
1001
- [_OAAU, _AAIc, _AS, _Ar],
1002
- [[() => OAuthAuthorizationUrlOutput, 0], 0, 0, 0], 3
1003
- ];
1004
- var CreateCloudConnectorRequest$ = [3, n0, _CCCR,
1005
- 0,
1006
- [_N, _EC, _D, _ET, _CT],
1007
- [0, () => EndpointConfig$, 0, 0, [0, 4]], 2
1008
- ];
1009
- var CreateCloudConnectorResponse$ = [3, n0, _CCCRr,
1010
- 0,
1011
- [_I],
1012
- [0]
1013
- ];
1014
- var CreateConnectorDestinationRequest$ = [3, n0, _CCDR,
1015
- 0,
1016
- [_CCI, _AC, _N, _D, _AT, _SM, _CT],
1017
- [0, () => AuthConfig$, 0, 0, 0, () => SecretsManager$, [0, 4]], 2
1018
- ];
1019
- var CreateConnectorDestinationResponse$ = [3, n0, _CCDRr,
1020
- 0,
1021
- [_I],
1022
- [0]
1023
- ];
1024
- var CreateCredentialLockerRequest$ = [3, n0, _CCLR,
1025
- 0,
1026
- [_N, _CT, _Ta],
1027
- [[() => CredentialLockerName, 0], [0, 4], [() => TagsMap, 0]]
1028
- ];
1029
- var CreateCredentialLockerResponse$ = [3, n0, _CCLRr,
1030
- 0,
1031
- [_I, _Ar, _CAr],
1032
- [0, 0, 4]
1033
- ];
1034
- var CreateDestinationRequest$ = [3, n0, _CDR,
1035
- 0,
1036
- [_DDA, _DDT, _N, _RA, _CT, _D, _Ta],
1037
- [0, 0, 0, 0, [0, 4], 0, [() => TagsMap, 0]], 4
1038
- ];
1039
- var CreateDestinationResponse$ = [3, n0, _CDRr,
1040
- 0,
1041
- [_N],
1042
- [0]
1043
- ];
1044
- var CreateEventLogConfigurationRequest$ = [3, n0, _CELCR,
1045
- 0,
1046
- [_RT, _ELL, _RI, _CT],
1047
- [0, 0, 0, [0, 4]], 2
1048
- ];
1049
- var CreateEventLogConfigurationResponse$ = [3, n0, _CELCRr,
1050
- 0,
1051
- [_I],
1052
- [0]
1053
- ];
1054
- var CreateManagedThingRequest$ = [3, n0, _CMTR,
1055
- 0,
1056
- [_R, _AMu, _AMT, _O, _CLI, _WFSSC, _SN, _B, _M, _N, _CR, _CSa, _Ca, _CT, _C, _Ta, _MD],
1057
- [0, [() => AuthMaterialString, 0], 0, [() => Owner, 0], 0, () => WiFiSimpleSetupConfiguration$, [() => SerialNumber, 0], [() => Brand, 0], [() => Model, 0], 0, () => CapabilityReport$, () => CapabilitySchemas, 0, [0, 4], [() => Classification, 0], [() => TagsMap, 0], 128 | 0], 3
1058
- ];
1059
- var CreateManagedThingResponse$ = [3, n0, _CMTRr,
1060
- 0,
1061
- [_I, _Ar, _CAr],
1062
- [0, 0, 4]
1063
- ];
1064
- var CreateNotificationConfigurationRequest$ = [3, n0, _CNCR,
1065
- 0,
1066
- [_ETv, _DN, _CT, _Ta],
1067
- [0, 0, [0, 4], [() => TagsMap, 0]], 2
1068
- ];
1069
- var CreateNotificationConfigurationResponse$ = [3, n0, _CNCRr,
1070
- 0,
1071
- [_ETv],
1072
- [0]
1073
- ];
1074
- var CreateOtaTaskConfigurationRequest$ = [3, n0, _COTCR,
1075
- 0,
1076
- [_D, _N, _PC, _CT],
1077
- [0, [() => OtaTaskConfigurationName, 0], () => PushConfig$, [0, 4]]
1078
- ];
1079
- var CreateOtaTaskConfigurationResponse$ = [3, n0, _COTCRr,
1080
- 0,
1081
- [_TCI],
1082
- [0]
1083
- ];
1084
- var CreateOtaTaskRequest$ = [3, n0, _COTR,
1085
- 0,
1086
- [_SU, _OT, _D, _P, _Tar, _TCI, _OM, _OTQS, _CT, _OSC, _OTERC, _Ta],
1087
- [0, 0, 0, 0, 64 | 0, 0, 0, 0, [0, 4], () => OtaTaskSchedulingConfig$, () => OtaTaskExecutionRetryConfig$, [() => TagsMap, 0]], 2
1088
- ];
1089
- var CreateOtaTaskResponse$ = [3, n0, _COTRr,
1090
- 0,
1091
- [_TI, _TA, _D],
1092
- [0, 0, 0]
1093
- ];
1094
- var CreateProvisioningProfileRequest$ = [3, n0, _CPPR,
1095
- 0,
1096
- [_PT, _CC, _CCl, _N, _CT, _Ta],
1097
- [0, [() => CaCertificate, 0], [() => ClaimCertificate, 0], 0, [0, 4], [() => TagsMap, 0]], 1
1098
- ];
1099
- var CreateProvisioningProfileResponse$ = [3, n0, _CPPRr,
1100
- 0,
1101
- [_Ar, _N, _PT, _I, _CCl, _CCPK],
1102
- [0, 0, 0, 0, [() => ClaimCertificate, 0], [() => ClaimCertificatePrivateKey, 0]]
1103
- ];
1104
- var CredentialLockerSummary$ = [3, n0, _CLS,
1105
- 0,
1106
- [_I, _Ar, _N, _CAr],
1107
- [0, 0, [() => CredentialLockerName, 0], 4]
1108
- ];
1109
- var DeleteAccountAssociationRequest$ = [3, n0, _DAAR,
1110
- 0,
1111
- [_AAIc],
1112
- [[0, 1]], 1
1113
- ];
1114
- var DeleteCloudConnectorRequest$ = [3, n0, _DCCR,
1115
- 0,
1116
- [_Id],
1117
- [[0, 1]], 1
1118
- ];
1119
- var DeleteConnectorDestinationRequest$ = [3, n0, _DCDR,
1120
- 0,
1121
- [_Id],
1122
- [[0, 1]], 1
1123
- ];
1124
- var DeleteCredentialLockerRequest$ = [3, n0, _DCLR,
1125
- 0,
1126
- [_Id],
1127
- [[0, 1]], 1
1128
- ];
1129
- var DeleteDestinationRequest$ = [3, n0, _DDR,
1130
- 0,
1131
- [_N],
1132
- [[0, 1]], 1
1133
- ];
1134
- var DeleteEventLogConfigurationRequest$ = [3, n0, _DELCR,
1135
- 0,
1136
- [_I],
1137
- [[0, 1]], 1
1138
- ];
1139
- var DeleteManagedThingRequest$ = [3, n0, _DMTR,
1140
- 0,
1141
- [_Id, _Fo],
1142
- [[0, 1], [2, { [_hQ]: _Fo }]], 1
1143
- ];
1144
- var DeleteNotificationConfigurationRequest$ = [3, n0, _DNCR,
1145
- 0,
1146
- [_ETv],
1147
- [[0, 1]], 1
1148
- ];
1149
- var DeleteOtaTaskConfigurationRequest$ = [3, n0, _DOTCR,
1150
- 0,
1151
- [_Id],
1152
- [[0, 1]], 1
1153
- ];
1154
- var DeleteOtaTaskRequest$ = [3, n0, _DOTR,
1155
- 0,
1156
- [_Id],
1157
- [[0, 1]], 1
1158
- ];
1159
- var DeleteProvisioningProfileRequest$ = [3, n0, _DPPR,
1160
- 0,
1161
- [_Id],
1162
- [[0, 1]], 1
1163
- ];
1164
- var DeregisterAccountAssociationRequest$ = [3, n0, _DAARe,
1165
- 0,
1166
- [_MTI, _AAIc],
1167
- [0, 0], 2
1168
- ];
1169
- var DestinationSummary$ = [3, n0, _DS,
1170
- 0,
1171
- [_D, _DDA, _DDT, _N, _RA],
1172
- [0, 0, 0, 0, 0]
1173
- ];
1174
- var Device$ = [3, n0, _De,
1175
- 0,
1176
- [_CDI, _CR, _CDN, _CSa, _DM],
1177
- [[() => ConnectorDeviceId, 0], () => MatterCapabilityReport$, 0, () => CapabilitySchemas, 15], 2
1178
- ];
1179
- var DeviceDiscoverySummary$ = [3, n0, _DDS,
1180
- 0,
1181
- [_I, _DT, _St],
1182
- [0, 0, 0]
1183
- ];
1184
- var DiscoveredDeviceSummary$ = [3, n0, _DDSi,
1185
- 0,
1186
- [_CDI, _CDN, _DTe, _MTI, _Mo, _DA, _B, _M, _AMu],
1187
- [[() => ConnectorDeviceId, 0], 0, 64 | 0, 0, 0, 4, [() => Brand, 0], [() => Model, 0], [() => AuthMaterialString, 0]]
1188
- ];
1189
- var EndpointConfig$ = [3, n0, _EC,
1190
- 0,
1191
- [_l],
1192
- [() => LambdaConfig$]
1193
- ];
1194
- var EventLogConfigurationSummary$ = [3, n0, _ELCS,
1195
- 0,
1196
- [_I, _RT, _RI, _ELL],
1197
- [0, 0, 0, 0]
1198
- ];
1199
- var ExponentialRolloutRate$ = [3, n0, _ERR,
1200
- 0,
1201
- [_BRPM, _IF, _RIC],
1202
- [1, 1, () => RolloutRateIncreaseCriteria$]
1203
- ];
1204
- var GeneralAuthorizationName$ = [3, n0, _GAN,
1205
- 0,
1206
- [_AMN],
1207
- [0]
1208
- ];
1209
- var GeneralAuthorizationUpdate$ = [3, n0, _GAU,
1210
- 0,
1211
- [_AMTA, _AMTU],
1212
- [() => AuthMaterials, () => AuthMaterials]
1213
- ];
1214
- var GetAccountAssociationRequest$ = [3, n0, _GAAR,
1215
- 0,
1216
- [_AAIc],
1217
- [[0, 1]], 1
1218
- ];
1219
- var GetAccountAssociationResponse$ = [3, n0, _GAARe,
1220
- 0,
1221
- [_AAIc, _AS, _OAAU, _EM, _CDIo, _N, _D, _Ar, _Ta, _GA],
1222
- [0, 0, [() => OAuthAuthorizationUrlOutput, 0], 0, 0, 0, 0, 0, [() => TagsMap, 0], () => GeneralAuthorizationName$], 3
1223
- ];
1224
- var GetCloudConnectorRequest$ = [3, n0, _GCCR,
1225
- 0,
1226
- [_Id],
1227
- [[0, 1]], 1
1228
- ];
1229
- var GetCloudConnectorResponse$ = [3, n0, _GCCRe,
1230
- 0,
1231
- [_N, _EC, _D, _ET, _I, _T],
1232
- [0, () => EndpointConfig$, 0, 0, 0, 0], 2
1233
- ];
1234
- var GetConnectorDestinationRequest$ = [3, n0, _GCDR,
1235
- 0,
1236
- [_Id],
1237
- [[0, 1]], 1
1238
- ];
1239
- var GetConnectorDestinationResponse$ = [3, n0, _GCDRe,
1240
- 0,
1241
- [_N, _D, _CCI, _I, _AT, _AC, _SM, _OACRU],
1242
- [0, 0, 0, 0, 0, () => AuthConfig$, () => SecretsManager$, 0]
1243
- ];
1244
- var GetCredentialLockerRequest$ = [3, n0, _GCLR,
1245
- 0,
1246
- [_Id],
1247
- [[0, 1]], 1
1248
- ];
1249
- var GetCredentialLockerResponse$ = [3, n0, _GCLRe,
1250
- 0,
1251
- [_I, _Ar, _N, _CAr, _Ta],
1252
- [0, 0, [() => CredentialLockerName, 0], 4, [() => TagsMap, 0]]
1253
- ];
1254
- var GetCustomEndpointRequest$ = [3, n0, _GCER,
1255
- 0,
1256
- [],
1257
- []
1258
- ];
1259
- var GetCustomEndpointResponse$ = [3, n0, _GCERe,
1260
- 0,
1261
- [_EA],
1262
- [0], 1
1263
- ];
1264
- var GetDefaultEncryptionConfigurationRequest$ = [3, n0, _GDECR,
1265
- 0,
1266
- [],
1267
- []
1268
- ];
1269
- var GetDefaultEncryptionConfigurationResponse$ = [3, n0, _GDECRe,
1270
- 0,
1271
- [_cS, _eT, _kKA],
1272
- [() => ConfigurationStatus$, 0, 0], 2
1273
- ];
1274
- var GetDestinationRequest$ = [3, n0, _GDR,
1275
- 0,
1276
- [_N],
1277
- [[0, 1]], 1
1278
- ];
1279
- var GetDestinationResponse$ = [3, n0, _GDRe,
1280
- 0,
1281
- [_D, _DDA, _DDT, _N, _RA, _CAr, _UA, _Ta],
1282
- [0, 0, 0, 0, 0, 4, 4, [() => TagsMap, 0]]
1283
- ];
1284
- var GetDeviceDiscoveryRequest$ = [3, n0, _GDDR,
1285
- 0,
1286
- [_Id],
1287
- [[0, 1]], 1
1288
- ];
1289
- var GetDeviceDiscoveryResponse$ = [3, n0, _GDDRe,
1290
- 0,
1291
- [_I, _Ar, _DT, _St, _SA, _CIon, _CAI, _AAIc, _FA, _Ta],
1292
- [0, 0, 0, 0, 4, 0, 0, 0, 4, [() => TagsMap, 0]], 5
1293
- ];
1294
- var GetEventLogConfigurationRequest$ = [3, n0, _GELCR,
1295
- 0,
1296
- [_I],
1297
- [[0, 1]], 1
1298
- ];
1299
- var GetEventLogConfigurationResponse$ = [3, n0, _GELCRe,
1300
- 0,
1301
- [_I, _RT, _RI, _ELL],
1302
- [0, 0, 0, 0]
1303
- ];
1304
- var GetHubConfigurationRequest$ = [3, n0, _GHCR,
1305
- 0,
1306
- [],
1307
- []
1308
- ];
1309
- var GetHubConfigurationResponse$ = [3, n0, _GHCRe,
1310
- 0,
1311
- [_HTTESIS, _UA],
1312
- [1, 4]
1313
- ];
1314
- var GetManagedThingCapabilitiesRequest$ = [3, n0, _GMTCR,
1315
- 0,
1316
- [_Id],
1317
- [[0, 1]], 1
1318
- ];
1319
- var GetManagedThingCapabilitiesResponse$ = [3, n0, _GMTCRe,
1320
- 0,
1321
- [_MTI, _Ca, _CR],
1322
- [0, 0, () => CapabilityReport$]
1323
- ];
1324
- var GetManagedThingCertificateRequest$ = [3, n0, _GMTCRet,
1325
- 0,
1326
- [_Id],
1327
- [[0, 1]], 1
1328
- ];
1329
- var GetManagedThingCertificateResponse$ = [3, n0, _GMTCReta,
1330
- 0,
1331
- [_MTI, _CPe],
1332
- [0, 0]
1333
- ];
1334
- var GetManagedThingConnectivityDataRequest$ = [3, n0, _GMTCDR,
1335
- 0,
1336
- [_Id],
1337
- [[0, 1]], 1
1338
- ];
1339
- var GetManagedThingConnectivityDataResponse$ = [3, n0, _GMTCDRe,
1340
- 0,
1341
- [_MTI, _Co, _Ti, _DR],
1342
- [0, 2, 4, 0]
1343
- ];
1344
- var GetManagedThingMetaDataRequest$ = [3, n0, _GMTMDR,
1345
- 0,
1346
- [_Id],
1347
- [[0, 1]], 1
1348
- ];
1349
- var GetManagedThingMetaDataResponse$ = [3, n0, _GMTMDRe,
1350
- 0,
1351
- [_MTI, _MD],
1352
- [0, 128 | 0]
1353
- ];
1354
- var GetManagedThingRequest$ = [3, n0, _GMTR,
1355
- 0,
1356
- [_Id],
1357
- [[0, 1]], 1
1358
- ];
1359
- var GetManagedThingResponse$ = [3, n0, _GMTRe,
1360
- 0,
1361
- [_I, _Ar, _O, _CLI, _API, _R, _PS, _N, _M, _B, _SN, _UPC, _IAN, _CPI, _CDIo, _CDI, _DSK, _MA, _PCI, _C, _CAr, _UA, _AA, _HNM, _MD, _Ta, _WFSSC],
1362
- [0, 0, [() => Owner, 0], 0, 0, 0, 0, 0, [() => Model, 0], [() => Brand, 0], [() => SerialNumber, 0], [() => UniversalProductCode, 0], [() => InternationalArticleNumber, 0], 0, 0, [() => ConnectorDeviceId, 0], [() => DeviceSpecificKey, 0], [() => MacAddress, 0], 0, [() => Classification, 0], 4, 4, 4, 0, 128 | 0, [() => TagsMap, 0], () => WiFiSimpleSetupConfiguration$]
1363
- ];
1364
- var GetManagedThingStateRequest$ = [3, n0, _GMTSR,
1365
- 0,
1366
- [_MTI],
1367
- [[0, 1]], 1
1368
- ];
1369
- var GetManagedThingStateResponse$ = [3, n0, _GMTSRe,
1370
- 0,
1371
- [_E],
1372
- [[() => StateEndpoints, 0]], 1
1373
- ];
1374
- var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
1375
- 0,
1376
- [_ETv],
1377
- [[0, 1]], 1
1378
- ];
1379
- var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
1380
- 0,
1381
- [_ETv, _DN, _CAr, _UA, _Ta],
1382
- [0, 0, 4, 4, [() => TagsMap, 0]]
1383
- ];
1384
- var GetOtaTaskConfigurationRequest$ = [3, n0, _GOTCR,
1385
- 0,
1386
- [_Id],
1387
- [[0, 1]], 1
1388
- ];
1389
- var GetOtaTaskConfigurationResponse$ = [3, n0, _GOTCRe,
1390
- 0,
1391
- [_TCI, _N, _PC, _D, _CAr],
1392
- [0, [() => OtaTaskConfigurationName, 0], () => PushConfig$, 0, 4]
1393
- ];
1394
- var GetOtaTaskRequest$ = [3, n0, _GOTR,
1395
- 0,
1396
- [_Id],
1397
- [[0, 1]], 1
1398
- ];
1399
- var GetOtaTaskResponse$ = [3, n0, _GOTRe,
1400
- 0,
1401
- [_TI, _TA, _D, _SU, _P, _OT, _OTQS, _OM, _Tar, _CAr, _LUA, _TCI, _TPD, _OSC, _OTERC, _St, _Ta],
1402
- [0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 4, 4, 0, () => TaskProcessingDetails$, () => OtaTaskSchedulingConfig$, () => OtaTaskExecutionRetryConfig$, 0, [() => TagsMap, 0]]
1403
- ];
1404
- var GetProvisioningProfileRequest$ = [3, n0, _GPPR,
1405
- 0,
1406
- [_Id],
1407
- [[0, 1]], 1
1408
- ];
1409
- var GetProvisioningProfileResponse$ = [3, n0, _GPPRe,
1410
- 0,
1411
- [_Ar, _N, _PT, _I, _CCl, _Ta],
1412
- [0, 0, 0, 0, [() => ClaimCertificate, 0], [() => TagsMap, 0]]
1413
- ];
1414
- var GetRuntimeLogConfigurationRequest$ = [3, n0, _GRLCR,
1415
- 0,
1416
- [_MTI],
1417
- [[0, 1]], 1
1418
- ];
1419
- var GetRuntimeLogConfigurationResponse$ = [3, n0, _GRLCRe,
1420
- 0,
1421
- [_MTI, _RLC],
1422
- [0, () => RuntimeLogConfigurations$]
1423
- ];
1424
- var GetSchemaVersionRequest$ = [3, n0, _GSVR,
1425
- 0,
1426
- [_T, _SVI, _F],
1427
- [[0, 1], [0, 1], [0, { [_hQ]: _F }]], 2
1428
- ];
1429
- var GetSchemaVersionResponse$ = [3, n0, _GSVRe,
1430
- 0,
1431
- [_SI, _T, _D, _Na, _SV, _V, _S],
1432
- [0, 0, 0, 0, 0, 0, 15]
1433
- ];
1434
- var InternalFailureException$ = [-3, n0, _IFE,
1435
- { [_e]: _se, [_hE]: 500 },
1436
- [_Me],
1437
- [0]
1438
- ];
1439
- schema.TypeRegistry.for(n0).registerError(InternalFailureException$, InternalFailureException);
1440
- var InternalServerException$ = [-3, n0, _ISE,
1441
- { [_e]: _se, [_hE]: 500 },
1442
- [_Me],
1443
- [0]
1444
- ];
1445
- schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
1446
- var InvalidRequestException$ = [-3, n0, _IRE,
1447
- { [_e]: _c, [_hE]: 400 },
1448
- [_Me],
1449
- [0]
1450
- ];
1451
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
1452
- var LambdaConfig$ = [3, n0, _LC,
1453
- 0,
1454
- [_ar],
1455
- [0], 1
1456
- ];
1457
- var LimitExceededException$ = [-3, n0, _LEE,
1458
- { [_e]: _c, [_hE]: 410 },
1459
- [_Me],
1460
- [0]
1461
- ];
1462
- schema.TypeRegistry.for(n0).registerError(LimitExceededException$, LimitExceededException);
1463
- var ListAccountAssociationsRequest$ = [3, n0, _LAAR,
1464
- 0,
1465
- [_CDIo, _MR, _NT],
1466
- [[0, { [_hQ]: _CDIo }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1467
- ];
1468
- var ListAccountAssociationsResponse$ = [3, n0, _LAARi,
1469
- 0,
1470
- [_It, _NT],
1471
- [() => AccountAssociationListDefinition, 0]
1472
- ];
1473
- var ListCloudConnectorsRequest$ = [3, n0, _LCCR,
1474
- 0,
1475
- [_T, _LA, _MR, _NT],
1476
- [[0, { [_hQ]: _T }], [0, { [_hQ]: _LA }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1477
- ];
1478
- var ListCloudConnectorsResponse$ = [3, n0, _LCCRi,
1479
- 0,
1480
- [_It, _NT],
1481
- [() => ConnectorList, 0]
1482
- ];
1483
- var ListConnectorDestinationsRequest$ = [3, n0, _LCDR,
1484
- 0,
1485
- [_CCI, _NT, _MR],
1486
- [[0, { [_hQ]: _CCI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1487
- ];
1488
- var ListConnectorDestinationsResponse$ = [3, n0, _LCDRi,
1489
- 0,
1490
- [_CDL, _NT],
1491
- [() => ConnectorDestinationListDefinition, 0]
1492
- ];
1493
- var ListCredentialLockersRequest$ = [3, n0, _LCLR,
1494
- 0,
1495
- [_NT, _MR],
1496
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1497
- ];
1498
- var ListCredentialLockersResponse$ = [3, n0, _LCLRi,
1499
- 0,
1500
- [_It, _NT],
1501
- [[() => CredentialLockerListDefinition, 0], 0]
1502
- ];
1503
- var ListDestinationsRequest$ = [3, n0, _LDR,
1504
- 0,
1505
- [_NT, _MR],
1506
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1507
- ];
1508
- var ListDestinationsResponse$ = [3, n0, _LDRi,
1509
- 0,
1510
- [_DL, _NT],
1511
- [() => DestinationListDefinition, 0]
1512
- ];
1513
- var ListDeviceDiscoveriesRequest$ = [3, n0, _LDDR,
1514
- 0,
1515
- [_NT, _MR, _TF, _SF],
1516
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _TF }], [0, { [_hQ]: _SF }]]
1517
- ];
1518
- var ListDeviceDiscoveriesResponse$ = [3, n0, _LDDRi,
1519
- 0,
1520
- [_It, _NT],
1521
- [() => DeviceDiscoveryListDefinition, 0]
1522
- ];
1523
- var ListDiscoveredDevicesRequest$ = [3, n0, _LDDRis,
1524
- 0,
1525
- [_Id, _NT, _MR],
1526
- [[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
1527
- ];
1528
- var ListDiscoveredDevicesResponse$ = [3, n0, _LDDRist,
1529
- 0,
1530
- [_It, _NT],
1531
- [[() => DiscoveredDeviceListDefinition, 0], 0]
1532
- ];
1533
- var ListEventLogConfigurationsRequest$ = [3, n0, _LELCR,
1534
- 0,
1535
- [_NT, _MR],
1536
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1537
- ];
1538
- var ListEventLogConfigurationsResponse$ = [3, n0, _LELCRi,
1539
- 0,
1540
- [_ELCL, _NT],
1541
- [() => EventLogConfigurationListDefinition, 0]
1542
- ];
1543
- var ListManagedThingAccountAssociationsRequest$ = [3, n0, _LMTAAR,
1544
- 0,
1545
- [_MTI, _AAIc, _MR, _NT],
1546
- [[0, { [_hQ]: _MTI }], [0, { [_hQ]: _AAIc }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1547
- ];
1548
- var ListManagedThingAccountAssociationsResponse$ = [3, n0, _LMTAARi,
1549
- 0,
1550
- [_It, _NT],
1551
- [() => ManagedThingAssociationList, 0]
1552
- ];
1553
- var ListManagedThingSchemasRequest$ = [3, n0, _LMTSR,
1554
- 0,
1555
- [_Id, _EIF, _CIF, _NT, _MR],
1556
- [[0, 1], [0, { [_hQ]: _EIF }], [0, { [_hQ]: _CIF }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
1557
- ];
1558
- var ListManagedThingSchemasResponse$ = [3, n0, _LMTSRi,
1559
- 0,
1560
- [_It, _NT],
1561
- [() => ManagedThingSchemaListDefinition, 0]
1562
- ];
1563
- var ListManagedThingsRequest$ = [3, n0, _LMTR,
1564
- 0,
1565
- [_OF, _CLF, _RF, _PCIF, _CPIF, _CDIF, _CDIFo, _SNF, _PSF, _NT, _MR],
1566
- [[() => Owner, { [_hQ]: _OF }], [0, { [_hQ]: _CLF }], [0, { [_hQ]: _RF }], [0, { [_hQ]: _PCIF }], [0, { [_hQ]: _CPIF }], [0, { [_hQ]: _CDIF }], [() => ConnectorDeviceId, { [_hQ]: _CDIFo }], [() => SerialNumber, { [_hQ]: _SNF }], [0, { [_hQ]: _PSF }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1567
- ];
1568
- var ListManagedThingsResponse$ = [3, n0, _LMTRi,
1569
- 0,
1570
- [_It, _NT],
1571
- [[() => ManagedThingListDefinition, 0], 0]
1572
- ];
1573
- var ListNotificationConfigurationsRequest$ = [3, n0, _LNCR,
1574
- 0,
1575
- [_MR, _NT],
1576
- [[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
1577
- ];
1578
- var ListNotificationConfigurationsResponse$ = [3, n0, _LNCRi,
1579
- 0,
1580
- [_NCL, _NT],
1581
- [() => NotificationConfigurationListDefinition, 0]
1582
- ];
1583
- var ListOtaTaskConfigurationsRequest$ = [3, n0, _LOTCR,
1584
- 0,
1585
- [_NT, _MR],
1586
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1587
- ];
1588
- var ListOtaTaskConfigurationsResponse$ = [3, n0, _LOTCRi,
1589
- 0,
1590
- [_It, _NT],
1591
- [[() => OtaTaskConfigurationListDefinition, 0], 0]
1592
- ];
1593
- var ListOtaTaskExecutionsRequest$ = [3, n0, _LOTER,
1594
- 0,
1595
- [_Id, _NT, _MR],
1596
- [[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
1597
- ];
1598
- var ListOtaTaskExecutionsResponse$ = [3, n0, _LOTERi,
1599
- 0,
1600
- [_ES, _NT],
1601
- [() => OtaTaskExecutionSummariesListDefinition, 0]
1602
- ];
1603
- var ListOtaTasksRequest$ = [3, n0, _LOTR,
1604
- 0,
1605
- [_NT, _MR],
1606
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1607
- ];
1608
- var ListOtaTasksResponse$ = [3, n0, _LOTRi,
1609
- 0,
1610
- [_Tas, _NT],
1611
- [() => OtaTaskListDefinition, 0]
1612
- ];
1613
- var ListProvisioningProfilesRequest$ = [3, n0, _LPPR,
1614
- 0,
1615
- [_NT, _MR],
1616
- [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1617
- ];
1618
- var ListProvisioningProfilesResponse$ = [3, n0, _LPPRi,
1619
- 0,
1620
- [_It, _NT],
1621
- [() => ProvisioningProfileListDefinition, 0]
1622
- ];
1623
- var ListSchemaVersionsRequest$ = [3, n0, _LSVR,
1624
- 0,
1625
- [_T, _MR, _NT, _SI, _Na, _V, _SV],
1626
- [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [0, { [_hQ]: _SIF }], [0, { [_hQ]: _NF }], [0, { [_hQ]: _VF }], [0, { [_hQ]: _SVF }]], 1
1627
- ];
1628
- var ListSchemaVersionsResponse$ = [3, n0, _LSVRi,
1629
- 0,
1630
- [_It, _NT],
1631
- [() => SchemaVersionList, 0]
1632
- ];
1633
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1634
- 0,
1635
- [_RAe],
1636
- [[0, 1]], 1
1637
- ];
1638
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1639
- 0,
1640
- [_t],
1641
- [[() => TagsMap, 0]]
1642
- ];
1643
- var ManagedThingAssociation$ = [3, n0, _MTA,
1644
- 0,
1645
- [_MTI, _AAIc, _MTAS],
1646
- [0, 0, 0]
1647
- ];
1648
- var ManagedThingSchemaListItem$ = [3, n0, _MTSLI,
1649
- 0,
1650
- [_EIn, _CI, _S],
1651
- [0, 0, 15]
1652
- ];
1653
- var ManagedThingSummary$ = [3, n0, _MTS,
1654
- 0,
1655
- [_I, _Ar, _API, _B, _C, _CDI, _CPI, _CDIo, _M, _N, _O, _CLI, _PCI, _PS, _R, _SN, _CAr, _UA, _AA],
1656
- [0, 0, 0, [() => Brand, 0], [() => Classification, 0], [() => ConnectorDeviceId, 0], 0, 0, [() => Model, 0], 0, [() => Owner, 0], 0, 0, 0, 0, [() => SerialNumber, 0], 4, 4, 4]
1657
- ];
1658
- var MatterCapabilityReport$ = [3, n0, _MCR,
1659
- 0,
1660
- [_v, _en, _nI],
1661
- [0, () => MatterCapabilityReportEndpoints, 0], 2
1662
- ];
1663
- var MatterCapabilityReportAttribute$ = [3, n0, _MCRA,
1664
- 0,
1665
- [_i, _n, _va],
1666
- [0, 0, 15]
1667
- ];
1668
- var MatterCapabilityReportCluster$ = [3, n0, _MCRC,
1669
- 0,
1670
- [_i, _re, _pI, _n, _sV, _at, _com, _ev, _fM, _gC, _fI],
1671
- [0, 1, 0, 0, 0, () => MatterCapabilityReportAttributes, 64 | 0, 64 | 0, 1, 64 | 0, 1], 2
1672
- ];
1673
- var MatterCapabilityReportEndpoint$ = [3, n0, _MCRE,
1674
- 0,
1675
- [_i, _dT, _cl, _pa, _sT, _cC],
1676
- [0, 64 | 0, () => MatterCapabilityReportClusters, 64 | 0, 64 | 0, 64 | 0], 3
1677
- ];
1678
- var MatterCluster$ = [3, n0, _MC,
1679
- 0,
1680
- [_i, _at, _com, _ev],
1681
- [0, [() => MatterAttributes, 0], [() => MatterCommands, 0], [() => MatterEvents, 0]]
1682
- ];
1683
- var MatterEndpoint$ = [3, n0, _ME,
1684
- 0,
1685
- [_i, _cl],
1686
- [0, [() => MatterClusters, 0]]
1687
- ];
1688
- var NotificationConfigurationSummary$ = [3, n0, _NCS,
1689
- 0,
1690
- [_ETv, _DN],
1691
- [0, 0]
1692
- ];
1693
- var OAuthConfig$ = [3, n0, _OAC,
1694
- 0,
1695
- [_aU, _tU, _tEAS, _sc, _oACRU, _pRTR],
1696
- [0, 0, 0, 0, 0, () => ProactiveRefreshTokenRenewal$], 3
1697
- ];
1698
- var OAuthUpdate$ = [3, n0, _OAU,
1699
- 0,
1700
- [_oACRU, _pRTR],
1701
- [0, () => ProactiveRefreshTokenRenewal$]
1702
- ];
1703
- var OtaTaskAbortConfig$ = [3, n0, _OTAC,
1704
- 0,
1705
- [_ACCL],
1706
- [() => AbortConfigCriteriaList]
1707
- ];
1708
- var OtaTaskConfigurationSummary$ = [3, n0, _OTCS,
1709
- 0,
1710
- [_TCI, _N, _CAr],
1711
- [0, [() => OtaTaskConfigurationName, 0], 4]
1712
- ];
1713
- var OtaTaskExecutionRetryConfig$ = [3, n0, _OTERC,
1714
- 0,
1715
- [_RCC],
1716
- [() => RetryConfigCriteriaList]
1717
- ];
1718
- var OtaTaskExecutionRolloutConfig$ = [3, n0, _OTERCt,
1719
- 0,
1720
- [_ERR, _MPM],
1721
- [() => ExponentialRolloutRate$, 1]
1722
- ];
1723
- var OtaTaskExecutionSummaries$ = [3, n0, _OTES,
1724
- 0,
1725
- [_TES, _MTI],
1726
- [() => OtaTaskExecutionSummary$, 0]
1727
- ];
1728
- var OtaTaskExecutionSummary$ = [3, n0, _OTESt,
1729
- 0,
1730
- [_EN, _LUA, _QA, _RAet, _SA, _St],
1731
- [1, 4, 4, 1, 4, 0]
1732
- ];
1733
- var OtaTaskSchedulingConfig$ = [3, n0, _OTSC,
1734
- 0,
1735
- [_EB, _ETn, _MW, _ST],
1736
- [0, 0, () => ScheduleMaintenanceWindowList, 0]
1737
- ];
1738
- var OtaTaskSummary$ = [3, n0, _OTS,
1739
- 0,
1740
- [_TI, _TA, _CAr, _LUA, _TCI, _St],
1741
- [0, 0, 4, 4, 0, 0]
1742
- ];
1743
- var OtaTaskTimeoutConfig$ = [3, n0, _OTTC,
1744
- 0,
1745
- [_IPTIM],
1746
- [1]
1747
- ];
1748
- var ProactiveRefreshTokenRenewal$ = [3, n0, _PRTR,
1749
- 0,
1750
- [_ena, _DBR],
1751
- [2, 1]
1752
- ];
1753
- var ProvisioningProfileSummary$ = [3, n0, _PPS,
1754
- 0,
1755
- [_N, _I, _Ar, _PT],
1756
- [0, 0, 0, 0]
1757
- ];
1758
- var PushConfig$ = [3, n0, _PC,
1759
- 0,
1760
- [_ACb, _RC, _TC],
1761
- [() => OtaTaskAbortConfig$, () => OtaTaskExecutionRolloutConfig$, () => OtaTaskTimeoutConfig$]
1762
- ];
1763
- var PutDefaultEncryptionConfigurationRequest$ = [3, n0, _PDECR,
1764
- 0,
1765
- [_eT, _kKA],
1766
- [0, 0], 1
1767
- ];
1768
- var PutDefaultEncryptionConfigurationResponse$ = [3, n0, _PDECRu,
1769
- 0,
1770
- [_cS, _eT, _kKA],
1771
- [() => ConfigurationStatus$, 0, 0], 2
1772
- ];
1773
- var PutHubConfigurationRequest$ = [3, n0, _PHCR,
1774
- 0,
1775
- [_HTTESIS],
1776
- [1], 1
1777
- ];
1778
- var PutHubConfigurationResponse$ = [3, n0, _PHCRu,
1779
- 0,
1780
- [_HTTESIS],
1781
- [1]
1782
- ];
1783
- var PutRuntimeLogConfigurationRequest$ = [3, n0, _PRLCR,
1784
- 0,
1785
- [_MTI, _RLC],
1786
- [[0, 1], () => RuntimeLogConfigurations$], 2
1787
- ];
1788
- var RegisterAccountAssociationRequest$ = [3, n0, _RAAR,
1789
- 0,
1790
- [_MTI, _AAIc, _DDI],
1791
- [0, 0, 0], 3
1792
- ];
1793
- var RegisterAccountAssociationResponse$ = [3, n0, _RAARe,
1794
- 0,
1795
- [_AAIc, _DDI, _MTI],
1796
- [0, 0, 0]
1797
- ];
1798
- var RegisterCustomEndpointRequest$ = [3, n0, _RCER,
1799
- 0,
1800
- [],
1801
- []
1802
- ];
1803
- var RegisterCustomEndpointResponse$ = [3, n0, _RCERe,
1804
- 0,
1805
- [_EA],
1806
- [0], 1
1807
- ];
1808
- var ResetRuntimeLogConfigurationRequest$ = [3, n0, _RRLCR,
1809
- 0,
1810
- [_MTI],
1811
- [[0, 1]], 1
1812
- ];
1813
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
1814
- { [_e]: _c, [_hE]: 404 },
1815
- [_Me, _RI, _RT],
1816
- [0, 0, 0]
1817
- ];
1818
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1819
- var RetryConfigCriteria$ = [3, n0, _RCC,
1820
- 0,
1821
- [_FT, _MNOR],
1822
- [0, 1]
1823
- ];
1824
- var RolloutRateIncreaseCriteria$ = [3, n0, _RRIC,
1825
- 0,
1826
- [_nONT, _nOST],
1827
- [1, 1]
1828
- ];
1829
- var RuntimeLogConfigurations$ = [3, n0, _RLC,
1830
- 0,
1831
- [_LL, _LFL, _LSL, _LSFRMF, _LSFRMB, _UL, _UPM, _DLSAU],
1832
- [0, 0, 0, 1, 1, 2, 1, 2]
1833
- ];
1834
- var ScheduleMaintenanceWindow$ = [3, n0, _SMW,
1835
- 0,
1836
- [_DIM, _ST],
1837
- [1, 0]
1838
- ];
1839
- var SchemaVersionListItem$ = [3, n0, _SVLI,
1840
- 0,
1841
- [_SI, _T, _D, _Na, _SV, _V],
1842
- [0, 0, 0, 0, 0, 0]
1843
- ];
1844
- var SecretsManager$ = [3, n0, _SM,
1845
- 0,
1846
- [_ar, _vI],
1847
- [0, 0], 2
1848
- ];
1849
- var SendConnectorEventRequest$ = [3, n0, _SCER,
1850
- 0,
1851
- [_CIonn, _Op, _UI, _OV, _SC, _Me, _DDI, _CDI, _TIr, _Dev, _ME],
1852
- [[0, 1], 0, [() => ThirdPartyUserId, 0], 0, 1, [() => ConnectorEventMessage, 0], 0, [() => ConnectorDeviceId, 0], 0, [() => Devices, 0], [() => MatterEndpoint$, 0]], 2
1853
- ];
1854
- var SendConnectorEventResponse$ = [3, n0, _SCERe,
1855
- 0,
1856
- [_CIonn],
1857
- [0], 1
1858
- ];
1859
- var SendManagedThingCommandRequest$ = [3, n0, _SMTCR,
1860
- 0,
1861
- [_MTI, _E, _CAI, _AAIc],
1862
- [[0, 1], [() => CommandEndpoints, 0], 0, 0], 2
1863
- ];
1864
- var SendManagedThingCommandResponse$ = [3, n0, _SMTCRe,
1865
- 0,
1866
- [_TIr],
1867
- [0]
1868
- ];
1869
- var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
1870
- { [_e]: _c, [_hE]: 402 },
1871
- [_Me],
1872
- [0]
1873
- ];
1874
- schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
1875
- var ServiceUnavailableException$ = [-3, n0, _SUE,
1876
- { [_e]: _se, [_hE]: 503 },
1877
- [_Me],
1878
- [0]
1879
- ];
1880
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
1881
- var StartAccountAssociationRefreshRequest$ = [3, n0, _SAARR,
1882
- 0,
1883
- [_AAIc],
1884
- [[0, 1]], 1
1885
- ];
1886
- var StartAccountAssociationRefreshResponse$ = [3, n0, _SAARRt,
1887
- 0,
1888
- [_OAAU],
1889
- [[() => OAuthAuthorizationUrlOutput, 0]], 1
1890
- ];
1891
- var StartDeviceDiscoveryRequest$ = [3, n0, _SDDR,
1892
- 0,
1893
- [_DT, _CPD, _CIont, _CAIo, _AAIc, _AMu, _AMT, _CT, _Ta, _CDIL, _P, _EDI],
1894
- [0, 128 | 0, 0, 0, 0, [() => DiscoveryAuthMaterialString, 0], 0, 0, [() => TagsMap, 0], [() => ConnectorDeviceIdList, 0], 0, 0], 1
1895
- ];
1896
- var StartDeviceDiscoveryResponse$ = [3, n0, _SDDRt,
1897
- 0,
1898
- [_I, _SA],
1899
- [0, 4]
1900
- ];
1901
- var StateCapability$ = [3, n0, _SCt,
1902
- 0,
1903
- [_i, _n, _v, _pr],
1904
- [0, 0, 0, [() => CapabilityProperties, 0]], 3
1905
- ];
1906
- var StateEndpoint$ = [3, n0, _SE,
1907
- 0,
1908
- [_eI, _ca],
1909
- [0, [() => StateCapabilities, 0]], 2
1910
- ];
1911
- var TagResourceRequest$ = [3, n0, _TRR,
1912
- 0,
1913
- [_RAe, _Ta],
1914
- [[0, 1], [() => TagsMap, 0]], 2
1915
- ];
1916
- var TagResourceResponse$ = [3, n0, _TRRa,
1917
- 0,
1918
- [],
1919
- []
1920
- ];
1921
- var TaskProcessingDetails$ = [3, n0, _TPD,
1922
- 0,
1923
- [_NOCT, _NOFT, _NOIPT, _nOQT, _nORT, _nORTu, _nOST, _nOTOT, _pT],
1924
- [1, 1, 1, 1, 1, 1, 1, 1, 64 | 0]
1925
- ];
1926
- var ThrottlingException$ = [-3, n0, _TE,
1927
- { [_e]: _c, [_hE]: 429 },
1928
- [_Me],
1929
- [0]
1930
- ];
1931
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1932
- var UnauthorizedException$ = [-3, n0, _UE,
1933
- { [_e]: _c, [_hE]: 401 },
1934
- [_Me],
1935
- [0]
1936
- ];
1937
- schema.TypeRegistry.for(n0).registerError(UnauthorizedException$, UnauthorizedException);
1938
- var UntagResourceRequest$ = [3, n0, _URR,
1939
- 0,
1940
- [_RAe, _TK],
1941
- [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1942
- ];
1943
- var UntagResourceResponse$ = [3, n0, _URRn,
1944
- 0,
1945
- [],
1946
- []
1947
- ];
1948
- var UpdateAccountAssociationRequest$ = [3, n0, _UAAR,
1949
- 0,
1950
- [_AAIc, _N, _D],
1951
- [[0, 1], 0, 0], 1
1952
- ];
1953
- var UpdateCloudConnectorRequest$ = [3, n0, _UCCR,
1954
- 0,
1955
- [_Id, _N, _D],
1956
- [[0, 1], 0, 0], 1
1957
- ];
1958
- var UpdateConnectorDestinationRequest$ = [3, n0, _UCDR,
1959
- 0,
1960
- [_Id, _D, _N, _AT, _AC, _SM],
1961
- [[0, 1], 0, 0, 0, () => AuthConfigUpdate$, () => SecretsManager$], 1
1962
- ];
1963
- var UpdateDestinationRequest$ = [3, n0, _UDR,
1964
- 0,
1965
- [_N, _DDA, _DDT, _RA, _D],
1966
- [[0, 1], 0, 0, 0, 0], 1
1967
- ];
1968
- var UpdateEventLogConfigurationRequest$ = [3, n0, _UELCR,
1969
- 0,
1970
- [_I, _ELL],
1971
- [[0, 1], 0], 2
1972
- ];
1973
- var UpdateManagedThingRequest$ = [3, n0, _UMTR,
1974
- 0,
1975
- [_Id, _O, _CLI, _SN, _WFSSC, _B, _M, _N, _CR, _CSa, _Ca, _C, _HNM, _MD],
1976
- [[0, 1], [() => Owner, 0], 0, [() => SerialNumber, 0], () => WiFiSimpleSetupConfiguration$, [() => Brand, 0], [() => Model, 0], 0, () => CapabilityReport$, () => CapabilitySchemas, 0, [() => Classification, 0], 0, 128 | 0], 1
1977
- ];
1978
- var UpdateNotificationConfigurationRequest$ = [3, n0, _UNCR,
1979
- 0,
1980
- [_ETv, _DN],
1981
- [[0, 1], 0], 2
1982
- ];
1983
- var UpdateOtaTaskRequest$ = [3, n0, _UOTR,
1984
- 0,
1985
- [_Id, _D, _TCI],
1986
- [[0, 1], 0, 0], 1
1987
- ];
1988
- var ValidationException$ = [-3, n0, _VE,
1989
- { [_e]: _c, [_hE]: 400 },
1990
- [_Me],
1991
- [0]
1992
- ];
1993
- schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
1994
- var WiFiSimpleSetupConfiguration$ = [3, n0, _WFSSC,
1995
- 0,
1996
- [_EAP, _EAPn, _TIM],
1997
- [2, 2, 1]
1998
- ];
1999
- var __Unit = "unit";
2000
- var IoTManagedIntegrationsServiceException$ = [-3, _sm, "IoTManagedIntegrationsServiceException", 0, [], []];
2001
- schema.TypeRegistry.for(_sm).registerError(IoTManagedIntegrationsServiceException$, IoTManagedIntegrationsServiceException);
2002
- var AbortConfigCriteriaList = [1, n0, _ACCL,
2003
- 0, () => AbortConfigCriteria$
2004
- ];
2005
- var AccountAssociationListDefinition = [1, n0, _AALD,
2006
- 0, () => AccountAssociationItem$
2007
- ];
2008
- var AuthMaterials = [1, n0, _AMut,
2009
- 0, () => AuthMaterial$
2010
- ];
2011
- var CapabilityActions = [1, n0, _CAa,
2012
- 0, [() => CapabilityAction$,
2013
- 0]
2014
- ];
2015
- var CapabilityReportCapabilities = [1, n0, _CRCa,
2016
- 0, () => CapabilityReportCapability$
2017
- ];
2018
- var CapabilityReportEndpoints = [1, n0, _CREa,
2019
- 0, () => CapabilityReportEndpoint$
2020
- ];
2021
- var CapabilitySchemas = [1, n0, _CSa,
2022
- 0, () => CapabilitySchemaItem$
2023
- ];
2024
- var CommandCapabilities = [1, n0, _CCom,
2025
- 0, [() => CommandCapability$,
2026
- 0]
2027
- ];
2028
- var CommandEndpoints = [1, n0, _CEom,
2029
- 0, [() => CommandEndpoint$,
2030
- 0]
2031
- ];
2032
- var ConnectorDestinationListDefinition = [1, n0, _CDLD,
2033
- 0, () => ConnectorDestinationSummary$
2034
- ];
2035
- var ConnectorDeviceIdList = [1, n0, _CDIL,
2036
- 0, [() => ConnectorDeviceId,
2037
- 0]
2038
- ];
2039
- var ConnectorList = [1, n0, _CL,
2040
- 0, () => ConnectorItem$
2041
- ];
2042
- var CredentialLockerListDefinition = [1, n0, _CLLD,
2043
- 0, [() => CredentialLockerSummary$,
2044
- 0]
2045
- ];
2046
- var DestinationListDefinition = [1, n0, _DLD,
2047
- 0, () => DestinationSummary$
2048
- ];
2049
- var DeviceDiscoveryListDefinition = [1, n0, _DDLD,
2050
- 0, () => DeviceDiscoverySummary$
2051
- ];
2052
- var Devices = [1, n0, _Dev,
2053
- 0, [() => Device$,
2054
- 0]
2055
- ];
2056
- var DiscoveredDeviceListDefinition = [1, n0, _DDLDi,
2057
- 0, [() => DiscoveredDeviceSummary$,
2058
- 0]
2059
- ];
2060
- var EventLogConfigurationListDefinition = [1, n0, _ELCLD,
2061
- 0, () => EventLogConfigurationSummary$
2062
- ];
2063
- var ManagedThingAssociationList = [1, n0, _MTAL,
2064
- 0, () => ManagedThingAssociation$
2065
- ];
2066
- var ManagedThingListDefinition = [1, n0, _MTLD,
2067
- 0, [() => ManagedThingSummary$,
2068
- 0]
2069
- ];
2070
- var ManagedThingSchemaListDefinition = [1, n0, _MTSLD,
2071
- 0, () => ManagedThingSchemaListItem$
2072
- ];
2073
- var MatterCapabilityReportAttributes = [1, n0, _MCRAa,
2074
- 0, () => MatterCapabilityReportAttribute$
2075
- ];
2076
- var MatterCapabilityReportClusters = [1, n0, _MCRCa,
2077
- 0, () => MatterCapabilityReportCluster$
2078
- ];
2079
- var MatterCapabilityReportEndpoints = [1, n0, _MCREa,
2080
- 0, () => MatterCapabilityReportEndpoint$
2081
- ];
2082
- var MatterClusters = [1, n0, _MCa,
2083
- 0, [() => MatterCluster$,
2084
- 0]
2085
- ];
2086
- var NotificationConfigurationListDefinition = [1, n0, _NCLD,
2087
- 0, () => NotificationConfigurationSummary$
2088
- ];
2089
- var OtaTaskConfigurationListDefinition = [1, n0, _OTCLD,
2090
- 0, [() => OtaTaskConfigurationSummary$,
2091
- 0]
2092
- ];
2093
- var OtaTaskExecutionSummariesListDefinition = [1, n0, _OTESLD,
2094
- 0, () => OtaTaskExecutionSummaries$
2095
- ];
2096
- var OtaTaskListDefinition = [1, n0, _OTLD,
2097
- 0, () => OtaTaskSummary$
2098
- ];
2099
- var ProvisioningProfileListDefinition = [1, n0, _PPLD,
2100
- 0, () => ProvisioningProfileSummary$
2101
- ];
2102
- var RetryConfigCriteriaList = [1, n0, _RCCL,
2103
- 0, () => RetryConfigCriteria$
2104
- ];
2105
- var ScheduleMaintenanceWindowList = [1, n0, _SMWL,
2106
- 0, () => ScheduleMaintenanceWindow$
2107
- ];
2108
- var SchemaVersionList = [1, n0, _SVL,
2109
- 0, () => SchemaVersionListItem$
2110
- ];
2111
- var StateCapabilities = [1, n0, _SCta,
2112
- 0, [() => StateCapability$,
2113
- 0]
2114
- ];
2115
- var StateEndpoints = [1, n0, _SEt,
2116
- 0, [() => StateEndpoint$,
2117
- 0]
2118
- ];
2119
- var MatterCommands = [2, n0, _MCat,
2120
- 0, [0,
2121
- 0],
2122
- [() => MatterFields,
2123
- 0]
2124
- ];
2125
- var MatterEvents = [2, n0, _MEa,
2126
- 0, [0,
2127
- 0],
2128
- [() => MatterFields,
2129
- 0]
2130
- ];
2131
- var TagsMap = [2, n0, _TM,
2132
- 8, 0, 0
2133
- ];
2134
- var CreateAccountAssociation$ = [9, n0, _CAA,
2135
- { [_h]: ["POST", "/account-associations", 201] }, () => CreateAccountAssociationRequest$, () => CreateAccountAssociationResponse$
2136
- ];
2137
- var CreateCloudConnector$ = [9, n0, _CCC,
2138
- { [_h]: ["POST", "/cloud-connectors", 201] }, () => CreateCloudConnectorRequest$, () => CreateCloudConnectorResponse$
2139
- ];
2140
- var CreateConnectorDestination$ = [9, n0, _CCD,
2141
- { [_h]: ["POST", "/connector-destinations", 201] }, () => CreateConnectorDestinationRequest$, () => CreateConnectorDestinationResponse$
2142
- ];
2143
- var CreateCredentialLocker$ = [9, n0, _CCL,
2144
- { [_h]: ["POST", "/credential-lockers", 201] }, () => CreateCredentialLockerRequest$, () => CreateCredentialLockerResponse$
2145
- ];
2146
- var CreateDestination$ = [9, n0, _CD,
2147
- { [_h]: ["POST", "/destinations", 201] }, () => CreateDestinationRequest$, () => CreateDestinationResponse$
2148
- ];
2149
- var CreateEventLogConfiguration$ = [9, n0, _CELC,
2150
- { [_h]: ["POST", "/event-log-configurations", 201] }, () => CreateEventLogConfigurationRequest$, () => CreateEventLogConfigurationResponse$
2151
- ];
2152
- var CreateManagedThing$ = [9, n0, _CMT,
2153
- { [_h]: ["POST", "/managed-things", 201] }, () => CreateManagedThingRequest$, () => CreateManagedThingResponse$
2154
- ];
2155
- var CreateNotificationConfiguration$ = [9, n0, _CNC,
2156
- { [_h]: ["POST", "/notification-configurations", 201] }, () => CreateNotificationConfigurationRequest$, () => CreateNotificationConfigurationResponse$
2157
- ];
2158
- var CreateOtaTask$ = [9, n0, _COT,
2159
- { [_h]: ["POST", "/ota-tasks", 201] }, () => CreateOtaTaskRequest$, () => CreateOtaTaskResponse$
2160
- ];
2161
- var CreateOtaTaskConfiguration$ = [9, n0, _COTC,
2162
- { [_h]: ["POST", "/ota-task-configurations", 201] }, () => CreateOtaTaskConfigurationRequest$, () => CreateOtaTaskConfigurationResponse$
2163
- ];
2164
- var CreateProvisioningProfile$ = [9, n0, _CPP,
2165
- { [_h]: ["POST", "/provisioning-profiles", 201] }, () => CreateProvisioningProfileRequest$, () => CreateProvisioningProfileResponse$
2166
- ];
2167
- var DeleteAccountAssociation$ = [9, n0, _DAA,
2168
- { [_h]: ["DELETE", "/account-associations/{AccountAssociationId}", 200] }, () => DeleteAccountAssociationRequest$, () => __Unit
2169
- ];
2170
- var DeleteCloudConnector$ = [9, n0, _DCC,
2171
- { [_h]: ["DELETE", "/cloud-connectors/{Identifier}", 200] }, () => DeleteCloudConnectorRequest$, () => __Unit
2172
- ];
2173
- var DeleteConnectorDestination$ = [9, n0, _DCD,
2174
- { [_h]: ["DELETE", "/connector-destinations/{Identifier}", 200] }, () => DeleteConnectorDestinationRequest$, () => __Unit
2175
- ];
2176
- var DeleteCredentialLocker$ = [9, n0, _DCL,
2177
- { [_h]: ["DELETE", "/credential-lockers/{Identifier}", 200] }, () => DeleteCredentialLockerRequest$, () => __Unit
2178
- ];
2179
- var DeleteDestination$ = [9, n0, _DD,
2180
- { [_h]: ["DELETE", "/destinations/{Name}", 200] }, () => DeleteDestinationRequest$, () => __Unit
2181
- ];
2182
- var DeleteEventLogConfiguration$ = [9, n0, _DELC,
2183
- { [_h]: ["DELETE", "/event-log-configurations/{Id}", 200] }, () => DeleteEventLogConfigurationRequest$, () => __Unit
2184
- ];
2185
- var DeleteManagedThing$ = [9, n0, _DMT,
2186
- { [_h]: ["DELETE", "/managed-things/{Identifier}", 204] }, () => DeleteManagedThingRequest$, () => __Unit
2187
- ];
2188
- var DeleteNotificationConfiguration$ = [9, n0, _DNC,
2189
- { [_h]: ["DELETE", "/notification-configurations/{EventType}", 200] }, () => DeleteNotificationConfigurationRequest$, () => __Unit
2190
- ];
2191
- var DeleteOtaTask$ = [9, n0, _DOT,
2192
- { [_h]: ["DELETE", "/ota-tasks/{Identifier}", 200] }, () => DeleteOtaTaskRequest$, () => __Unit
2193
- ];
2194
- var DeleteOtaTaskConfiguration$ = [9, n0, _DOTC,
2195
- { [_h]: ["DELETE", "/ota-task-configurations/{Identifier}", 204] }, () => DeleteOtaTaskConfigurationRequest$, () => __Unit
2196
- ];
2197
- var DeleteProvisioningProfile$ = [9, n0, _DPP,
2198
- { [_h]: ["DELETE", "/provisioning-profiles/{Identifier}", 200] }, () => DeleteProvisioningProfileRequest$, () => __Unit
2199
- ];
2200
- var DeregisterAccountAssociation$ = [9, n0, _DAAe,
2201
- { [_h]: ["PUT", "/managed-thing-associations/deregister", 200] }, () => DeregisterAccountAssociationRequest$, () => __Unit
2202
- ];
2203
- var GetAccountAssociation$ = [9, n0, _GAA,
2204
- { [_h]: ["GET", "/account-associations/{AccountAssociationId}", 200] }, () => GetAccountAssociationRequest$, () => GetAccountAssociationResponse$
2205
- ];
2206
- var GetCloudConnector$ = [9, n0, _GCC,
2207
- { [_h]: ["GET", "/cloud-connectors/{Identifier}", 200] }, () => GetCloudConnectorRequest$, () => GetCloudConnectorResponse$
2208
- ];
2209
- var GetConnectorDestination$ = [9, n0, _GCD,
2210
- { [_h]: ["GET", "/connector-destinations/{Identifier}", 200] }, () => GetConnectorDestinationRequest$, () => GetConnectorDestinationResponse$
2211
- ];
2212
- var GetCredentialLocker$ = [9, n0, _GCL,
2213
- { [_h]: ["GET", "/credential-lockers/{Identifier}", 200] }, () => GetCredentialLockerRequest$, () => GetCredentialLockerResponse$
2214
- ];
2215
- var GetCustomEndpoint$ = [9, n0, _GCE,
2216
- { [_h]: ["GET", "/custom-endpoint", 200] }, () => GetCustomEndpointRequest$, () => GetCustomEndpointResponse$
2217
- ];
2218
- var GetDefaultEncryptionConfiguration$ = [9, n0, _GDEC,
2219
- { [_h]: ["GET", "/configuration/account/encryption", 200] }, () => GetDefaultEncryptionConfigurationRequest$, () => GetDefaultEncryptionConfigurationResponse$
2220
- ];
2221
- var GetDestination$ = [9, n0, _GD,
2222
- { [_h]: ["GET", "/destinations/{Name}", 200] }, () => GetDestinationRequest$, () => GetDestinationResponse$
2223
- ];
2224
- var GetDeviceDiscovery$ = [9, n0, _GDD,
2225
- { [_h]: ["GET", "/device-discoveries/{Identifier}", 200] }, () => GetDeviceDiscoveryRequest$, () => GetDeviceDiscoveryResponse$
2226
- ];
2227
- var GetEventLogConfiguration$ = [9, n0, _GELC,
2228
- { [_h]: ["GET", "/event-log-configurations/{Id}", 200] }, () => GetEventLogConfigurationRequest$, () => GetEventLogConfigurationResponse$
2229
- ];
2230
- var GetHubConfiguration$ = [9, n0, _GHC,
2231
- { [_h]: ["GET", "/hub-configuration", 200] }, () => GetHubConfigurationRequest$, () => GetHubConfigurationResponse$
2232
- ];
2233
- var GetManagedThing$ = [9, n0, _GMT,
2234
- { [_h]: ["GET", "/managed-things/{Identifier}", 200] }, () => GetManagedThingRequest$, () => GetManagedThingResponse$
2235
- ];
2236
- var GetManagedThingCapabilities$ = [9, n0, _GMTC,
2237
- { [_h]: ["GET", "/managed-things-capabilities/{Identifier}", 200] }, () => GetManagedThingCapabilitiesRequest$, () => GetManagedThingCapabilitiesResponse$
2238
- ];
2239
- var GetManagedThingCertificate$ = [9, n0, _GMTCe,
2240
- { [_h]: ["GET", "/managed-things-certificate/{Identifier}", 200] }, () => GetManagedThingCertificateRequest$, () => GetManagedThingCertificateResponse$
2241
- ];
2242
- var GetManagedThingConnectivityData$ = [9, n0, _GMTCD,
2243
- { [_h]: ["POST", "/managed-things-connectivity-data/{Identifier}", 200] }, () => GetManagedThingConnectivityDataRequest$, () => GetManagedThingConnectivityDataResponse$
2244
- ];
2245
- var GetManagedThingMetaData$ = [9, n0, _GMTMD,
2246
- { [_h]: ["GET", "/managed-things-metadata/{Identifier}", 200] }, () => GetManagedThingMetaDataRequest$, () => GetManagedThingMetaDataResponse$
2247
- ];
2248
- var GetManagedThingState$ = [9, n0, _GMTS,
2249
- { [_h]: ["GET", "/managed-thing-states/{ManagedThingId}", 200] }, () => GetManagedThingStateRequest$, () => GetManagedThingStateResponse$
2250
- ];
2251
- var GetNotificationConfiguration$ = [9, n0, _GNC,
2252
- { [_h]: ["GET", "/notification-configurations/{EventType}", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
2253
- ];
2254
- var GetOtaTask$ = [9, n0, _GOT,
2255
- { [_h]: ["GET", "/ota-tasks/{Identifier}", 200] }, () => GetOtaTaskRequest$, () => GetOtaTaskResponse$
2256
- ];
2257
- var GetOtaTaskConfiguration$ = [9, n0, _GOTC,
2258
- { [_h]: ["GET", "/ota-task-configurations/{Identifier}", 200] }, () => GetOtaTaskConfigurationRequest$, () => GetOtaTaskConfigurationResponse$
2259
- ];
2260
- var GetProvisioningProfile$ = [9, n0, _GPP,
2261
- { [_h]: ["GET", "/provisioning-profiles/{Identifier}", 200] }, () => GetProvisioningProfileRequest$, () => GetProvisioningProfileResponse$
2262
- ];
2263
- var GetRuntimeLogConfiguration$ = [9, n0, _GRLC,
2264
- { [_h]: ["GET", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => GetRuntimeLogConfigurationRequest$, () => GetRuntimeLogConfigurationResponse$
2265
- ];
2266
- var GetSchemaVersion$ = [9, n0, _GSV,
2267
- { [_h]: ["GET", "/schema-versions/{Type}/{SchemaVersionedId}", 200] }, () => GetSchemaVersionRequest$, () => GetSchemaVersionResponse$
2268
- ];
2269
- var ListAccountAssociations$ = [9, n0, _LAA,
2270
- { [_h]: ["GET", "/account-associations", 200] }, () => ListAccountAssociationsRequest$, () => ListAccountAssociationsResponse$
2271
- ];
2272
- var ListCloudConnectors$ = [9, n0, _LCC,
2273
- { [_h]: ["GET", "/cloud-connectors", 200] }, () => ListCloudConnectorsRequest$, () => ListCloudConnectorsResponse$
2274
- ];
2275
- var ListConnectorDestinations$ = [9, n0, _LCD,
2276
- { [_h]: ["GET", "/connector-destinations", 200] }, () => ListConnectorDestinationsRequest$, () => ListConnectorDestinationsResponse$
2277
- ];
2278
- var ListCredentialLockers$ = [9, n0, _LCL,
2279
- { [_h]: ["GET", "/credential-lockers", 200] }, () => ListCredentialLockersRequest$, () => ListCredentialLockersResponse$
2280
- ];
2281
- var ListDestinations$ = [9, n0, _LD,
2282
- { [_h]: ["GET", "/destinations", 200] }, () => ListDestinationsRequest$, () => ListDestinationsResponse$
2283
- ];
2284
- var ListDeviceDiscoveries$ = [9, n0, _LDD,
2285
- { [_h]: ["GET", "/device-discoveries", 200] }, () => ListDeviceDiscoveriesRequest$, () => ListDeviceDiscoveriesResponse$
2286
- ];
2287
- var ListDiscoveredDevices$ = [9, n0, _LDDi,
2288
- { [_h]: ["GET", "/device-discoveries/{Identifier}/devices", 200] }, () => ListDiscoveredDevicesRequest$, () => ListDiscoveredDevicesResponse$
2289
- ];
2290
- var ListEventLogConfigurations$ = [9, n0, _LELC,
2291
- { [_h]: ["GET", "/event-log-configurations", 200] }, () => ListEventLogConfigurationsRequest$, () => ListEventLogConfigurationsResponse$
2292
- ];
2293
- var ListManagedThingAccountAssociations$ = [9, n0, _LMTAA,
2294
- { [_h]: ["GET", "/managed-thing-associations", 200] }, () => ListManagedThingAccountAssociationsRequest$, () => ListManagedThingAccountAssociationsResponse$
2295
- ];
2296
- var ListManagedThings$ = [9, n0, _LMT,
2297
- { [_h]: ["GET", "/managed-things", 200] }, () => ListManagedThingsRequest$, () => ListManagedThingsResponse$
2298
- ];
2299
- var ListManagedThingSchemas$ = [9, n0, _LMTS,
2300
- { [_h]: ["GET", "/managed-thing-schemas/{Identifier}", 200] }, () => ListManagedThingSchemasRequest$, () => ListManagedThingSchemasResponse$
2301
- ];
2302
- var ListNotificationConfigurations$ = [9, n0, _LNC,
2303
- { [_h]: ["GET", "/notification-configurations", 200] }, () => ListNotificationConfigurationsRequest$, () => ListNotificationConfigurationsResponse$
2304
- ];
2305
- var ListOtaTaskConfigurations$ = [9, n0, _LOTC,
2306
- { [_h]: ["GET", "/ota-task-configurations", 200] }, () => ListOtaTaskConfigurationsRequest$, () => ListOtaTaskConfigurationsResponse$
2307
- ];
2308
- var ListOtaTaskExecutions$ = [9, n0, _LOTE,
2309
- { [_h]: ["GET", "/ota-tasks/{Identifier}/devices", 200] }, () => ListOtaTaskExecutionsRequest$, () => ListOtaTaskExecutionsResponse$
2310
- ];
2311
- var ListOtaTasks$ = [9, n0, _LOT,
2312
- { [_h]: ["GET", "/ota-tasks", 200] }, () => ListOtaTasksRequest$, () => ListOtaTasksResponse$
2313
- ];
2314
- var ListProvisioningProfiles$ = [9, n0, _LPP,
2315
- { [_h]: ["GET", "/provisioning-profiles", 200] }, () => ListProvisioningProfilesRequest$, () => ListProvisioningProfilesResponse$
2316
- ];
2317
- var ListSchemaVersions$ = [9, n0, _LSV,
2318
- { [_h]: ["GET", "/schema-versions/{Type}", 200] }, () => ListSchemaVersionsRequest$, () => ListSchemaVersionsResponse$
2319
- ];
2320
- var ListTagsForResource$ = [9, n0, _LTFR,
2321
- { [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2322
- ];
2323
- var PutDefaultEncryptionConfiguration$ = [9, n0, _PDEC,
2324
- { [_h]: ["POST", "/configuration/account/encryption", 201] }, () => PutDefaultEncryptionConfigurationRequest$, () => PutDefaultEncryptionConfigurationResponse$
2325
- ];
2326
- var PutHubConfiguration$ = [9, n0, _PHC,
2327
- { [_h]: ["PUT", "/hub-configuration", 201] }, () => PutHubConfigurationRequest$, () => PutHubConfigurationResponse$
2328
- ];
2329
- var PutRuntimeLogConfiguration$ = [9, n0, _PRLC,
2330
- { [_h]: ["PUT", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => PutRuntimeLogConfigurationRequest$, () => __Unit
2331
- ];
2332
- var RegisterAccountAssociation$ = [9, n0, _RAA,
2333
- { [_h]: ["PUT", "/managed-thing-associations/register", 201] }, () => RegisterAccountAssociationRequest$, () => RegisterAccountAssociationResponse$
2334
- ];
2335
- var RegisterCustomEndpoint$ = [9, n0, _RCE,
2336
- { [_h]: ["POST", "/custom-endpoint", 201] }, () => RegisterCustomEndpointRequest$, () => RegisterCustomEndpointResponse$
2337
- ];
2338
- var ResetRuntimeLogConfiguration$ = [9, n0, _RRLC,
2339
- { [_h]: ["DELETE", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => ResetRuntimeLogConfigurationRequest$, () => __Unit
2340
- ];
2341
- var SendConnectorEvent$ = [9, n0, _SCE,
2342
- { [_h]: ["POST", "/connector-event/{ConnectorId}", 202] }, () => SendConnectorEventRequest$, () => SendConnectorEventResponse$
2343
- ];
2344
- var SendManagedThingCommand$ = [9, n0, _SMTC,
2345
- { [_h]: ["POST", "/managed-things-command/{ManagedThingId}", 202] }, () => SendManagedThingCommandRequest$, () => SendManagedThingCommandResponse$
2346
- ];
2347
- var StartAccountAssociationRefresh$ = [9, n0, _SAAR,
2348
- { [_h]: ["POST", "/account-associations/{AccountAssociationId}/refresh", 200] }, () => StartAccountAssociationRefreshRequest$, () => StartAccountAssociationRefreshResponse$
2349
- ];
2350
- var StartDeviceDiscovery$ = [9, n0, _SDD,
2351
- { [_h]: ["POST", "/device-discoveries", 201] }, () => StartDeviceDiscoveryRequest$, () => StartDeviceDiscoveryResponse$
2352
- ];
2353
- var TagResource$ = [9, n0, _TR,
2354
- { [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
2355
- ];
2356
- var UntagResource$ = [9, n0, _UR,
2357
- { [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
2358
- ];
2359
- var UpdateAccountAssociation$ = [9, n0, _UAA,
2360
- { [_h]: ["PUT", "/account-associations/{AccountAssociationId}", 204] }, () => UpdateAccountAssociationRequest$, () => __Unit
2361
- ];
2362
- var UpdateCloudConnector$ = [9, n0, _UCC,
2363
- { [_h]: ["PUT", "/cloud-connectors/{Identifier}", 200] }, () => UpdateCloudConnectorRequest$, () => __Unit
2364
- ];
2365
- var UpdateConnectorDestination$ = [9, n0, _UCD,
2366
- { [_h]: ["PUT", "/connector-destinations/{Identifier}", 204] }, () => UpdateConnectorDestinationRequest$, () => __Unit
2367
- ];
2368
- var UpdateDestination$ = [9, n0, _UD,
2369
- { [_h]: ["PUT", "/destinations/{Name}", 201] }, () => UpdateDestinationRequest$, () => __Unit
2370
- ];
2371
- var UpdateEventLogConfiguration$ = [9, n0, _UELC,
2372
- { [_h]: ["PATCH", "/event-log-configurations/{Id}", 200] }, () => UpdateEventLogConfigurationRequest$, () => __Unit
2373
- ];
2374
- var UpdateManagedThing$ = [9, n0, _UMT,
2375
- { [_h]: ["PUT", "/managed-things/{Identifier}", 204] }, () => UpdateManagedThingRequest$, () => __Unit
2376
- ];
2377
- var UpdateNotificationConfiguration$ = [9, n0, _UNC,
2378
- { [_h]: ["PUT", "/notification-configurations/{EventType}", 201] }, () => UpdateNotificationConfigurationRequest$, () => __Unit
2379
- ];
2380
- var UpdateOtaTask$ = [9, n0, _UOT,
2381
- { [_h]: ["PUT", "/ota-tasks/{Identifier}", 204] }, () => UpdateOtaTaskRequest$, () => __Unit
2382
- ];
2383
-
2384
114
  class CreateAccountAssociationCommand extends smithyClient.Command
2385
115
  .classBuilder()
2386
116
  .ep(commonParams)
@@ -2389,7 +119,7 @@ class CreateAccountAssociationCommand extends smithyClient.Command
2389
119
  })
2390
120
  .s("IotManagedIntegrations", "CreateAccountAssociation", {})
2391
121
  .n("IoTManagedIntegrationsClient", "CreateAccountAssociationCommand")
2392
- .sc(CreateAccountAssociation$)
122
+ .sc(schemas_0.CreateAccountAssociation$)
2393
123
  .build() {
2394
124
  }
2395
125
 
@@ -2401,7 +131,7 @@ class CreateCloudConnectorCommand extends smithyClient.Command
2401
131
  })
2402
132
  .s("IotManagedIntegrations", "CreateCloudConnector", {})
2403
133
  .n("IoTManagedIntegrationsClient", "CreateCloudConnectorCommand")
2404
- .sc(CreateCloudConnector$)
134
+ .sc(schemas_0.CreateCloudConnector$)
2405
135
  .build() {
2406
136
  }
2407
137
 
@@ -2413,7 +143,7 @@ class CreateConnectorDestinationCommand extends smithyClient.Command
2413
143
  })
2414
144
  .s("IotManagedIntegrations", "CreateConnectorDestination", {})
2415
145
  .n("IoTManagedIntegrationsClient", "CreateConnectorDestinationCommand")
2416
- .sc(CreateConnectorDestination$)
146
+ .sc(schemas_0.CreateConnectorDestination$)
2417
147
  .build() {
2418
148
  }
2419
149
 
@@ -2425,7 +155,7 @@ class CreateCredentialLockerCommand extends smithyClient.Command
2425
155
  })
2426
156
  .s("IotManagedIntegrations", "CreateCredentialLocker", {})
2427
157
  .n("IoTManagedIntegrationsClient", "CreateCredentialLockerCommand")
2428
- .sc(CreateCredentialLocker$)
158
+ .sc(schemas_0.CreateCredentialLocker$)
2429
159
  .build() {
2430
160
  }
2431
161
 
@@ -2437,7 +167,7 @@ class CreateDestinationCommand extends smithyClient.Command
2437
167
  })
2438
168
  .s("IotManagedIntegrations", "CreateDestination", {})
2439
169
  .n("IoTManagedIntegrationsClient", "CreateDestinationCommand")
2440
- .sc(CreateDestination$)
170
+ .sc(schemas_0.CreateDestination$)
2441
171
  .build() {
2442
172
  }
2443
173
 
@@ -2449,7 +179,7 @@ class CreateEventLogConfigurationCommand extends smithyClient.Command
2449
179
  })
2450
180
  .s("IotManagedIntegrations", "CreateEventLogConfiguration", {})
2451
181
  .n("IoTManagedIntegrationsClient", "CreateEventLogConfigurationCommand")
2452
- .sc(CreateEventLogConfiguration$)
182
+ .sc(schemas_0.CreateEventLogConfiguration$)
2453
183
  .build() {
2454
184
  }
2455
185
 
@@ -2461,7 +191,7 @@ class CreateManagedThingCommand extends smithyClient.Command
2461
191
  })
2462
192
  .s("IotManagedIntegrations", "CreateManagedThing", {})
2463
193
  .n("IoTManagedIntegrationsClient", "CreateManagedThingCommand")
2464
- .sc(CreateManagedThing$)
194
+ .sc(schemas_0.CreateManagedThing$)
2465
195
  .build() {
2466
196
  }
2467
197
 
@@ -2473,7 +203,7 @@ class CreateNotificationConfigurationCommand extends smithyClient.Command
2473
203
  })
2474
204
  .s("IotManagedIntegrations", "CreateNotificationConfiguration", {})
2475
205
  .n("IoTManagedIntegrationsClient", "CreateNotificationConfigurationCommand")
2476
- .sc(CreateNotificationConfiguration$)
206
+ .sc(schemas_0.CreateNotificationConfiguration$)
2477
207
  .build() {
2478
208
  }
2479
209
 
@@ -2485,7 +215,7 @@ class CreateOtaTaskCommand extends smithyClient.Command
2485
215
  })
2486
216
  .s("IotManagedIntegrations", "CreateOtaTask", {})
2487
217
  .n("IoTManagedIntegrationsClient", "CreateOtaTaskCommand")
2488
- .sc(CreateOtaTask$)
218
+ .sc(schemas_0.CreateOtaTask$)
2489
219
  .build() {
2490
220
  }
2491
221
 
@@ -2497,7 +227,7 @@ class CreateOtaTaskConfigurationCommand extends smithyClient.Command
2497
227
  })
2498
228
  .s("IotManagedIntegrations", "CreateOtaTaskConfiguration", {})
2499
229
  .n("IoTManagedIntegrationsClient", "CreateOtaTaskConfigurationCommand")
2500
- .sc(CreateOtaTaskConfiguration$)
230
+ .sc(schemas_0.CreateOtaTaskConfiguration$)
2501
231
  .build() {
2502
232
  }
2503
233
 
@@ -2509,7 +239,7 @@ class CreateProvisioningProfileCommand extends smithyClient.Command
2509
239
  })
2510
240
  .s("IotManagedIntegrations", "CreateProvisioningProfile", {})
2511
241
  .n("IoTManagedIntegrationsClient", "CreateProvisioningProfileCommand")
2512
- .sc(CreateProvisioningProfile$)
242
+ .sc(schemas_0.CreateProvisioningProfile$)
2513
243
  .build() {
2514
244
  }
2515
245
 
@@ -2521,7 +251,7 @@ class DeleteAccountAssociationCommand extends smithyClient.Command
2521
251
  })
2522
252
  .s("IotManagedIntegrations", "DeleteAccountAssociation", {})
2523
253
  .n("IoTManagedIntegrationsClient", "DeleteAccountAssociationCommand")
2524
- .sc(DeleteAccountAssociation$)
254
+ .sc(schemas_0.DeleteAccountAssociation$)
2525
255
  .build() {
2526
256
  }
2527
257
 
@@ -2533,7 +263,7 @@ class DeleteCloudConnectorCommand extends smithyClient.Command
2533
263
  })
2534
264
  .s("IotManagedIntegrations", "DeleteCloudConnector", {})
2535
265
  .n("IoTManagedIntegrationsClient", "DeleteCloudConnectorCommand")
2536
- .sc(DeleteCloudConnector$)
266
+ .sc(schemas_0.DeleteCloudConnector$)
2537
267
  .build() {
2538
268
  }
2539
269
 
@@ -2545,7 +275,7 @@ class DeleteConnectorDestinationCommand extends smithyClient.Command
2545
275
  })
2546
276
  .s("IotManagedIntegrations", "DeleteConnectorDestination", {})
2547
277
  .n("IoTManagedIntegrationsClient", "DeleteConnectorDestinationCommand")
2548
- .sc(DeleteConnectorDestination$)
278
+ .sc(schemas_0.DeleteConnectorDestination$)
2549
279
  .build() {
2550
280
  }
2551
281
 
@@ -2557,7 +287,7 @@ class DeleteCredentialLockerCommand extends smithyClient.Command
2557
287
  })
2558
288
  .s("IotManagedIntegrations", "DeleteCredentialLocker", {})
2559
289
  .n("IoTManagedIntegrationsClient", "DeleteCredentialLockerCommand")
2560
- .sc(DeleteCredentialLocker$)
290
+ .sc(schemas_0.DeleteCredentialLocker$)
2561
291
  .build() {
2562
292
  }
2563
293
 
@@ -2569,7 +299,7 @@ class DeleteDestinationCommand extends smithyClient.Command
2569
299
  })
2570
300
  .s("IotManagedIntegrations", "DeleteDestination", {})
2571
301
  .n("IoTManagedIntegrationsClient", "DeleteDestinationCommand")
2572
- .sc(DeleteDestination$)
302
+ .sc(schemas_0.DeleteDestination$)
2573
303
  .build() {
2574
304
  }
2575
305
 
@@ -2581,7 +311,7 @@ class DeleteEventLogConfigurationCommand extends smithyClient.Command
2581
311
  })
2582
312
  .s("IotManagedIntegrations", "DeleteEventLogConfiguration", {})
2583
313
  .n("IoTManagedIntegrationsClient", "DeleteEventLogConfigurationCommand")
2584
- .sc(DeleteEventLogConfiguration$)
314
+ .sc(schemas_0.DeleteEventLogConfiguration$)
2585
315
  .build() {
2586
316
  }
2587
317
 
@@ -2593,7 +323,7 @@ class DeleteManagedThingCommand extends smithyClient.Command
2593
323
  })
2594
324
  .s("IotManagedIntegrations", "DeleteManagedThing", {})
2595
325
  .n("IoTManagedIntegrationsClient", "DeleteManagedThingCommand")
2596
- .sc(DeleteManagedThing$)
326
+ .sc(schemas_0.DeleteManagedThing$)
2597
327
  .build() {
2598
328
  }
2599
329
 
@@ -2605,7 +335,7 @@ class DeleteNotificationConfigurationCommand extends smithyClient.Command
2605
335
  })
2606
336
  .s("IotManagedIntegrations", "DeleteNotificationConfiguration", {})
2607
337
  .n("IoTManagedIntegrationsClient", "DeleteNotificationConfigurationCommand")
2608
- .sc(DeleteNotificationConfiguration$)
338
+ .sc(schemas_0.DeleteNotificationConfiguration$)
2609
339
  .build() {
2610
340
  }
2611
341
 
@@ -2617,7 +347,7 @@ class DeleteOtaTaskCommand extends smithyClient.Command
2617
347
  })
2618
348
  .s("IotManagedIntegrations", "DeleteOtaTask", {})
2619
349
  .n("IoTManagedIntegrationsClient", "DeleteOtaTaskCommand")
2620
- .sc(DeleteOtaTask$)
350
+ .sc(schemas_0.DeleteOtaTask$)
2621
351
  .build() {
2622
352
  }
2623
353
 
@@ -2629,7 +359,7 @@ class DeleteOtaTaskConfigurationCommand extends smithyClient.Command
2629
359
  })
2630
360
  .s("IotManagedIntegrations", "DeleteOtaTaskConfiguration", {})
2631
361
  .n("IoTManagedIntegrationsClient", "DeleteOtaTaskConfigurationCommand")
2632
- .sc(DeleteOtaTaskConfiguration$)
362
+ .sc(schemas_0.DeleteOtaTaskConfiguration$)
2633
363
  .build() {
2634
364
  }
2635
365
 
@@ -2641,7 +371,7 @@ class DeleteProvisioningProfileCommand extends smithyClient.Command
2641
371
  })
2642
372
  .s("IotManagedIntegrations", "DeleteProvisioningProfile", {})
2643
373
  .n("IoTManagedIntegrationsClient", "DeleteProvisioningProfileCommand")
2644
- .sc(DeleteProvisioningProfile$)
374
+ .sc(schemas_0.DeleteProvisioningProfile$)
2645
375
  .build() {
2646
376
  }
2647
377
 
@@ -2653,7 +383,7 @@ class DeregisterAccountAssociationCommand extends smithyClient.Command
2653
383
  })
2654
384
  .s("IotManagedIntegrations", "DeregisterAccountAssociation", {})
2655
385
  .n("IoTManagedIntegrationsClient", "DeregisterAccountAssociationCommand")
2656
- .sc(DeregisterAccountAssociation$)
386
+ .sc(schemas_0.DeregisterAccountAssociation$)
2657
387
  .build() {
2658
388
  }
2659
389
 
@@ -2665,7 +395,7 @@ class GetAccountAssociationCommand extends smithyClient.Command
2665
395
  })
2666
396
  .s("IotManagedIntegrations", "GetAccountAssociation", {})
2667
397
  .n("IoTManagedIntegrationsClient", "GetAccountAssociationCommand")
2668
- .sc(GetAccountAssociation$)
398
+ .sc(schemas_0.GetAccountAssociation$)
2669
399
  .build() {
2670
400
  }
2671
401
 
@@ -2677,7 +407,7 @@ class GetCloudConnectorCommand extends smithyClient.Command
2677
407
  })
2678
408
  .s("IotManagedIntegrations", "GetCloudConnector", {})
2679
409
  .n("IoTManagedIntegrationsClient", "GetCloudConnectorCommand")
2680
- .sc(GetCloudConnector$)
410
+ .sc(schemas_0.GetCloudConnector$)
2681
411
  .build() {
2682
412
  }
2683
413
 
@@ -2689,7 +419,7 @@ class GetConnectorDestinationCommand extends smithyClient.Command
2689
419
  })
2690
420
  .s("IotManagedIntegrations", "GetConnectorDestination", {})
2691
421
  .n("IoTManagedIntegrationsClient", "GetConnectorDestinationCommand")
2692
- .sc(GetConnectorDestination$)
422
+ .sc(schemas_0.GetConnectorDestination$)
2693
423
  .build() {
2694
424
  }
2695
425
 
@@ -2701,7 +431,7 @@ class GetCredentialLockerCommand extends smithyClient.Command
2701
431
  })
2702
432
  .s("IotManagedIntegrations", "GetCredentialLocker", {})
2703
433
  .n("IoTManagedIntegrationsClient", "GetCredentialLockerCommand")
2704
- .sc(GetCredentialLocker$)
434
+ .sc(schemas_0.GetCredentialLocker$)
2705
435
  .build() {
2706
436
  }
2707
437
 
@@ -2713,7 +443,7 @@ class GetCustomEndpointCommand extends smithyClient.Command
2713
443
  })
2714
444
  .s("IotManagedIntegrations", "GetCustomEndpoint", {})
2715
445
  .n("IoTManagedIntegrationsClient", "GetCustomEndpointCommand")
2716
- .sc(GetCustomEndpoint$)
446
+ .sc(schemas_0.GetCustomEndpoint$)
2717
447
  .build() {
2718
448
  }
2719
449
 
@@ -2725,7 +455,7 @@ class GetDefaultEncryptionConfigurationCommand extends smithyClient.Command
2725
455
  })
2726
456
  .s("IotManagedIntegrations", "GetDefaultEncryptionConfiguration", {})
2727
457
  .n("IoTManagedIntegrationsClient", "GetDefaultEncryptionConfigurationCommand")
2728
- .sc(GetDefaultEncryptionConfiguration$)
458
+ .sc(schemas_0.GetDefaultEncryptionConfiguration$)
2729
459
  .build() {
2730
460
  }
2731
461
 
@@ -2737,7 +467,7 @@ class GetDestinationCommand extends smithyClient.Command
2737
467
  })
2738
468
  .s("IotManagedIntegrations", "GetDestination", {})
2739
469
  .n("IoTManagedIntegrationsClient", "GetDestinationCommand")
2740
- .sc(GetDestination$)
470
+ .sc(schemas_0.GetDestination$)
2741
471
  .build() {
2742
472
  }
2743
473
 
@@ -2749,7 +479,7 @@ class GetDeviceDiscoveryCommand extends smithyClient.Command
2749
479
  })
2750
480
  .s("IotManagedIntegrations", "GetDeviceDiscovery", {})
2751
481
  .n("IoTManagedIntegrationsClient", "GetDeviceDiscoveryCommand")
2752
- .sc(GetDeviceDiscovery$)
482
+ .sc(schemas_0.GetDeviceDiscovery$)
2753
483
  .build() {
2754
484
  }
2755
485
 
@@ -2761,7 +491,7 @@ class GetEventLogConfigurationCommand extends smithyClient.Command
2761
491
  })
2762
492
  .s("IotManagedIntegrations", "GetEventLogConfiguration", {})
2763
493
  .n("IoTManagedIntegrationsClient", "GetEventLogConfigurationCommand")
2764
- .sc(GetEventLogConfiguration$)
494
+ .sc(schemas_0.GetEventLogConfiguration$)
2765
495
  .build() {
2766
496
  }
2767
497
 
@@ -2773,7 +503,7 @@ class GetHubConfigurationCommand extends smithyClient.Command
2773
503
  })
2774
504
  .s("IotManagedIntegrations", "GetHubConfiguration", {})
2775
505
  .n("IoTManagedIntegrationsClient", "GetHubConfigurationCommand")
2776
- .sc(GetHubConfiguration$)
506
+ .sc(schemas_0.GetHubConfiguration$)
2777
507
  .build() {
2778
508
  }
2779
509
 
@@ -2785,7 +515,7 @@ class GetManagedThingCapabilitiesCommand extends smithyClient.Command
2785
515
  })
2786
516
  .s("IotManagedIntegrations", "GetManagedThingCapabilities", {})
2787
517
  .n("IoTManagedIntegrationsClient", "GetManagedThingCapabilitiesCommand")
2788
- .sc(GetManagedThingCapabilities$)
518
+ .sc(schemas_0.GetManagedThingCapabilities$)
2789
519
  .build() {
2790
520
  }
2791
521
 
@@ -2797,7 +527,7 @@ class GetManagedThingCertificateCommand extends smithyClient.Command
2797
527
  })
2798
528
  .s("IotManagedIntegrations", "GetManagedThingCertificate", {})
2799
529
  .n("IoTManagedIntegrationsClient", "GetManagedThingCertificateCommand")
2800
- .sc(GetManagedThingCertificate$)
530
+ .sc(schemas_0.GetManagedThingCertificate$)
2801
531
  .build() {
2802
532
  }
2803
533
 
@@ -2809,7 +539,7 @@ class GetManagedThingCommand extends smithyClient.Command
2809
539
  })
2810
540
  .s("IotManagedIntegrations", "GetManagedThing", {})
2811
541
  .n("IoTManagedIntegrationsClient", "GetManagedThingCommand")
2812
- .sc(GetManagedThing$)
542
+ .sc(schemas_0.GetManagedThing$)
2813
543
  .build() {
2814
544
  }
2815
545
 
@@ -2821,7 +551,7 @@ class GetManagedThingConnectivityDataCommand extends smithyClient.Command
2821
551
  })
2822
552
  .s("IotManagedIntegrations", "GetManagedThingConnectivityData", {})
2823
553
  .n("IoTManagedIntegrationsClient", "GetManagedThingConnectivityDataCommand")
2824
- .sc(GetManagedThingConnectivityData$)
554
+ .sc(schemas_0.GetManagedThingConnectivityData$)
2825
555
  .build() {
2826
556
  }
2827
557
 
@@ -2833,7 +563,7 @@ class GetManagedThingMetaDataCommand extends smithyClient.Command
2833
563
  })
2834
564
  .s("IotManagedIntegrations", "GetManagedThingMetaData", {})
2835
565
  .n("IoTManagedIntegrationsClient", "GetManagedThingMetaDataCommand")
2836
- .sc(GetManagedThingMetaData$)
566
+ .sc(schemas_0.GetManagedThingMetaData$)
2837
567
  .build() {
2838
568
  }
2839
569
 
@@ -2845,7 +575,7 @@ class GetManagedThingStateCommand extends smithyClient.Command
2845
575
  })
2846
576
  .s("IotManagedIntegrations", "GetManagedThingState", {})
2847
577
  .n("IoTManagedIntegrationsClient", "GetManagedThingStateCommand")
2848
- .sc(GetManagedThingState$)
578
+ .sc(schemas_0.GetManagedThingState$)
2849
579
  .build() {
2850
580
  }
2851
581
 
@@ -2857,7 +587,7 @@ class GetNotificationConfigurationCommand extends smithyClient.Command
2857
587
  })
2858
588
  .s("IotManagedIntegrations", "GetNotificationConfiguration", {})
2859
589
  .n("IoTManagedIntegrationsClient", "GetNotificationConfigurationCommand")
2860
- .sc(GetNotificationConfiguration$)
590
+ .sc(schemas_0.GetNotificationConfiguration$)
2861
591
  .build() {
2862
592
  }
2863
593
 
@@ -2869,7 +599,7 @@ class GetOtaTaskCommand extends smithyClient.Command
2869
599
  })
2870
600
  .s("IotManagedIntegrations", "GetOtaTask", {})
2871
601
  .n("IoTManagedIntegrationsClient", "GetOtaTaskCommand")
2872
- .sc(GetOtaTask$)
602
+ .sc(schemas_0.GetOtaTask$)
2873
603
  .build() {
2874
604
  }
2875
605
 
@@ -2881,7 +611,7 @@ class GetOtaTaskConfigurationCommand extends smithyClient.Command
2881
611
  })
2882
612
  .s("IotManagedIntegrations", "GetOtaTaskConfiguration", {})
2883
613
  .n("IoTManagedIntegrationsClient", "GetOtaTaskConfigurationCommand")
2884
- .sc(GetOtaTaskConfiguration$)
614
+ .sc(schemas_0.GetOtaTaskConfiguration$)
2885
615
  .build() {
2886
616
  }
2887
617
 
@@ -2893,7 +623,7 @@ class GetProvisioningProfileCommand extends smithyClient.Command
2893
623
  })
2894
624
  .s("IotManagedIntegrations", "GetProvisioningProfile", {})
2895
625
  .n("IoTManagedIntegrationsClient", "GetProvisioningProfileCommand")
2896
- .sc(GetProvisioningProfile$)
626
+ .sc(schemas_0.GetProvisioningProfile$)
2897
627
  .build() {
2898
628
  }
2899
629
 
@@ -2905,7 +635,7 @@ class GetRuntimeLogConfigurationCommand extends smithyClient.Command
2905
635
  })
2906
636
  .s("IotManagedIntegrations", "GetRuntimeLogConfiguration", {})
2907
637
  .n("IoTManagedIntegrationsClient", "GetRuntimeLogConfigurationCommand")
2908
- .sc(GetRuntimeLogConfiguration$)
638
+ .sc(schemas_0.GetRuntimeLogConfiguration$)
2909
639
  .build() {
2910
640
  }
2911
641
 
@@ -2917,7 +647,7 @@ class GetSchemaVersionCommand extends smithyClient.Command
2917
647
  })
2918
648
  .s("IotManagedIntegrations", "GetSchemaVersion", {})
2919
649
  .n("IoTManagedIntegrationsClient", "GetSchemaVersionCommand")
2920
- .sc(GetSchemaVersion$)
650
+ .sc(schemas_0.GetSchemaVersion$)
2921
651
  .build() {
2922
652
  }
2923
653
 
@@ -2929,7 +659,7 @@ class ListAccountAssociationsCommand extends smithyClient.Command
2929
659
  })
2930
660
  .s("IotManagedIntegrations", "ListAccountAssociations", {})
2931
661
  .n("IoTManagedIntegrationsClient", "ListAccountAssociationsCommand")
2932
- .sc(ListAccountAssociations$)
662
+ .sc(schemas_0.ListAccountAssociations$)
2933
663
  .build() {
2934
664
  }
2935
665
 
@@ -2941,7 +671,7 @@ class ListCloudConnectorsCommand extends smithyClient.Command
2941
671
  })
2942
672
  .s("IotManagedIntegrations", "ListCloudConnectors", {})
2943
673
  .n("IoTManagedIntegrationsClient", "ListCloudConnectorsCommand")
2944
- .sc(ListCloudConnectors$)
674
+ .sc(schemas_0.ListCloudConnectors$)
2945
675
  .build() {
2946
676
  }
2947
677
 
@@ -2953,7 +683,7 @@ class ListConnectorDestinationsCommand extends smithyClient.Command
2953
683
  })
2954
684
  .s("IotManagedIntegrations", "ListConnectorDestinations", {})
2955
685
  .n("IoTManagedIntegrationsClient", "ListConnectorDestinationsCommand")
2956
- .sc(ListConnectorDestinations$)
686
+ .sc(schemas_0.ListConnectorDestinations$)
2957
687
  .build() {
2958
688
  }
2959
689
 
@@ -2965,7 +695,7 @@ class ListCredentialLockersCommand extends smithyClient.Command
2965
695
  })
2966
696
  .s("IotManagedIntegrations", "ListCredentialLockers", {})
2967
697
  .n("IoTManagedIntegrationsClient", "ListCredentialLockersCommand")
2968
- .sc(ListCredentialLockers$)
698
+ .sc(schemas_0.ListCredentialLockers$)
2969
699
  .build() {
2970
700
  }
2971
701
 
@@ -2977,7 +707,7 @@ class ListDestinationsCommand extends smithyClient.Command
2977
707
  })
2978
708
  .s("IotManagedIntegrations", "ListDestinations", {})
2979
709
  .n("IoTManagedIntegrationsClient", "ListDestinationsCommand")
2980
- .sc(ListDestinations$)
710
+ .sc(schemas_0.ListDestinations$)
2981
711
  .build() {
2982
712
  }
2983
713
 
@@ -2989,7 +719,7 @@ class ListDeviceDiscoveriesCommand extends smithyClient.Command
2989
719
  })
2990
720
  .s("IotManagedIntegrations", "ListDeviceDiscoveries", {})
2991
721
  .n("IoTManagedIntegrationsClient", "ListDeviceDiscoveriesCommand")
2992
- .sc(ListDeviceDiscoveries$)
722
+ .sc(schemas_0.ListDeviceDiscoveries$)
2993
723
  .build() {
2994
724
  }
2995
725
 
@@ -3001,7 +731,7 @@ class ListDiscoveredDevicesCommand extends smithyClient.Command
3001
731
  })
3002
732
  .s("IotManagedIntegrations", "ListDiscoveredDevices", {})
3003
733
  .n("IoTManagedIntegrationsClient", "ListDiscoveredDevicesCommand")
3004
- .sc(ListDiscoveredDevices$)
734
+ .sc(schemas_0.ListDiscoveredDevices$)
3005
735
  .build() {
3006
736
  }
3007
737
 
@@ -3013,7 +743,7 @@ class ListEventLogConfigurationsCommand extends smithyClient.Command
3013
743
  })
3014
744
  .s("IotManagedIntegrations", "ListEventLogConfigurations", {})
3015
745
  .n("IoTManagedIntegrationsClient", "ListEventLogConfigurationsCommand")
3016
- .sc(ListEventLogConfigurations$)
746
+ .sc(schemas_0.ListEventLogConfigurations$)
3017
747
  .build() {
3018
748
  }
3019
749
 
@@ -3025,7 +755,7 @@ class ListManagedThingAccountAssociationsCommand extends smithyClient.Command
3025
755
  })
3026
756
  .s("IotManagedIntegrations", "ListManagedThingAccountAssociations", {})
3027
757
  .n("IoTManagedIntegrationsClient", "ListManagedThingAccountAssociationsCommand")
3028
- .sc(ListManagedThingAccountAssociations$)
758
+ .sc(schemas_0.ListManagedThingAccountAssociations$)
3029
759
  .build() {
3030
760
  }
3031
761
 
@@ -3037,7 +767,7 @@ class ListManagedThingSchemasCommand extends smithyClient.Command
3037
767
  })
3038
768
  .s("IotManagedIntegrations", "ListManagedThingSchemas", {})
3039
769
  .n("IoTManagedIntegrationsClient", "ListManagedThingSchemasCommand")
3040
- .sc(ListManagedThingSchemas$)
770
+ .sc(schemas_0.ListManagedThingSchemas$)
3041
771
  .build() {
3042
772
  }
3043
773
 
@@ -3049,7 +779,7 @@ class ListManagedThingsCommand extends smithyClient.Command
3049
779
  })
3050
780
  .s("IotManagedIntegrations", "ListManagedThings", {})
3051
781
  .n("IoTManagedIntegrationsClient", "ListManagedThingsCommand")
3052
- .sc(ListManagedThings$)
782
+ .sc(schemas_0.ListManagedThings$)
3053
783
  .build() {
3054
784
  }
3055
785
 
@@ -3061,7 +791,7 @@ class ListNotificationConfigurationsCommand extends smithyClient.Command
3061
791
  })
3062
792
  .s("IotManagedIntegrations", "ListNotificationConfigurations", {})
3063
793
  .n("IoTManagedIntegrationsClient", "ListNotificationConfigurationsCommand")
3064
- .sc(ListNotificationConfigurations$)
794
+ .sc(schemas_0.ListNotificationConfigurations$)
3065
795
  .build() {
3066
796
  }
3067
797
 
@@ -3073,7 +803,7 @@ class ListOtaTaskConfigurationsCommand extends smithyClient.Command
3073
803
  })
3074
804
  .s("IotManagedIntegrations", "ListOtaTaskConfigurations", {})
3075
805
  .n("IoTManagedIntegrationsClient", "ListOtaTaskConfigurationsCommand")
3076
- .sc(ListOtaTaskConfigurations$)
806
+ .sc(schemas_0.ListOtaTaskConfigurations$)
3077
807
  .build() {
3078
808
  }
3079
809
 
@@ -3085,7 +815,7 @@ class ListOtaTaskExecutionsCommand extends smithyClient.Command
3085
815
  })
3086
816
  .s("IotManagedIntegrations", "ListOtaTaskExecutions", {})
3087
817
  .n("IoTManagedIntegrationsClient", "ListOtaTaskExecutionsCommand")
3088
- .sc(ListOtaTaskExecutions$)
818
+ .sc(schemas_0.ListOtaTaskExecutions$)
3089
819
  .build() {
3090
820
  }
3091
821
 
@@ -3097,7 +827,7 @@ class ListOtaTasksCommand extends smithyClient.Command
3097
827
  })
3098
828
  .s("IotManagedIntegrations", "ListOtaTasks", {})
3099
829
  .n("IoTManagedIntegrationsClient", "ListOtaTasksCommand")
3100
- .sc(ListOtaTasks$)
830
+ .sc(schemas_0.ListOtaTasks$)
3101
831
  .build() {
3102
832
  }
3103
833
 
@@ -3109,7 +839,7 @@ class ListProvisioningProfilesCommand extends smithyClient.Command
3109
839
  })
3110
840
  .s("IotManagedIntegrations", "ListProvisioningProfiles", {})
3111
841
  .n("IoTManagedIntegrationsClient", "ListProvisioningProfilesCommand")
3112
- .sc(ListProvisioningProfiles$)
842
+ .sc(schemas_0.ListProvisioningProfiles$)
3113
843
  .build() {
3114
844
  }
3115
845
 
@@ -3121,7 +851,7 @@ class ListSchemaVersionsCommand extends smithyClient.Command
3121
851
  })
3122
852
  .s("IotManagedIntegrations", "ListSchemaVersions", {})
3123
853
  .n("IoTManagedIntegrationsClient", "ListSchemaVersionsCommand")
3124
- .sc(ListSchemaVersions$)
854
+ .sc(schemas_0.ListSchemaVersions$)
3125
855
  .build() {
3126
856
  }
3127
857
 
@@ -3133,7 +863,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
3133
863
  })
3134
864
  .s("IotManagedIntegrations", "ListTagsForResource", {})
3135
865
  .n("IoTManagedIntegrationsClient", "ListTagsForResourceCommand")
3136
- .sc(ListTagsForResource$)
866
+ .sc(schemas_0.ListTagsForResource$)
3137
867
  .build() {
3138
868
  }
3139
869
 
@@ -3145,7 +875,7 @@ class PutDefaultEncryptionConfigurationCommand extends smithyClient.Command
3145
875
  })
3146
876
  .s("IotManagedIntegrations", "PutDefaultEncryptionConfiguration", {})
3147
877
  .n("IoTManagedIntegrationsClient", "PutDefaultEncryptionConfigurationCommand")
3148
- .sc(PutDefaultEncryptionConfiguration$)
878
+ .sc(schemas_0.PutDefaultEncryptionConfiguration$)
3149
879
  .build() {
3150
880
  }
3151
881
 
@@ -3157,7 +887,7 @@ class PutHubConfigurationCommand extends smithyClient.Command
3157
887
  })
3158
888
  .s("IotManagedIntegrations", "PutHubConfiguration", {})
3159
889
  .n("IoTManagedIntegrationsClient", "PutHubConfigurationCommand")
3160
- .sc(PutHubConfiguration$)
890
+ .sc(schemas_0.PutHubConfiguration$)
3161
891
  .build() {
3162
892
  }
3163
893
 
@@ -3169,7 +899,7 @@ class PutRuntimeLogConfigurationCommand extends smithyClient.Command
3169
899
  })
3170
900
  .s("IotManagedIntegrations", "PutRuntimeLogConfiguration", {})
3171
901
  .n("IoTManagedIntegrationsClient", "PutRuntimeLogConfigurationCommand")
3172
- .sc(PutRuntimeLogConfiguration$)
902
+ .sc(schemas_0.PutRuntimeLogConfiguration$)
3173
903
  .build() {
3174
904
  }
3175
905
 
@@ -3181,7 +911,7 @@ class RegisterAccountAssociationCommand extends smithyClient.Command
3181
911
  })
3182
912
  .s("IotManagedIntegrations", "RegisterAccountAssociation", {})
3183
913
  .n("IoTManagedIntegrationsClient", "RegisterAccountAssociationCommand")
3184
- .sc(RegisterAccountAssociation$)
914
+ .sc(schemas_0.RegisterAccountAssociation$)
3185
915
  .build() {
3186
916
  }
3187
917
 
@@ -3193,7 +923,7 @@ class RegisterCustomEndpointCommand extends smithyClient.Command
3193
923
  })
3194
924
  .s("IotManagedIntegrations", "RegisterCustomEndpoint", {})
3195
925
  .n("IoTManagedIntegrationsClient", "RegisterCustomEndpointCommand")
3196
- .sc(RegisterCustomEndpoint$)
926
+ .sc(schemas_0.RegisterCustomEndpoint$)
3197
927
  .build() {
3198
928
  }
3199
929
 
@@ -3205,7 +935,7 @@ class ResetRuntimeLogConfigurationCommand extends smithyClient.Command
3205
935
  })
3206
936
  .s("IotManagedIntegrations", "ResetRuntimeLogConfiguration", {})
3207
937
  .n("IoTManagedIntegrationsClient", "ResetRuntimeLogConfigurationCommand")
3208
- .sc(ResetRuntimeLogConfiguration$)
938
+ .sc(schemas_0.ResetRuntimeLogConfiguration$)
3209
939
  .build() {
3210
940
  }
3211
941
 
@@ -3217,7 +947,7 @@ class SendConnectorEventCommand extends smithyClient.Command
3217
947
  })
3218
948
  .s("IotManagedIntegrations", "SendConnectorEvent", {})
3219
949
  .n("IoTManagedIntegrationsClient", "SendConnectorEventCommand")
3220
- .sc(SendConnectorEvent$)
950
+ .sc(schemas_0.SendConnectorEvent$)
3221
951
  .build() {
3222
952
  }
3223
953
 
@@ -3229,7 +959,7 @@ class SendManagedThingCommandCommand extends smithyClient.Command
3229
959
  })
3230
960
  .s("IotManagedIntegrations", "SendManagedThingCommand", {})
3231
961
  .n("IoTManagedIntegrationsClient", "SendManagedThingCommandCommand")
3232
- .sc(SendManagedThingCommand$)
962
+ .sc(schemas_0.SendManagedThingCommand$)
3233
963
  .build() {
3234
964
  }
3235
965
 
@@ -3241,7 +971,7 @@ class StartAccountAssociationRefreshCommand extends smithyClient.Command
3241
971
  })
3242
972
  .s("IotManagedIntegrations", "StartAccountAssociationRefresh", {})
3243
973
  .n("IoTManagedIntegrationsClient", "StartAccountAssociationRefreshCommand")
3244
- .sc(StartAccountAssociationRefresh$)
974
+ .sc(schemas_0.StartAccountAssociationRefresh$)
3245
975
  .build() {
3246
976
  }
3247
977
 
@@ -3253,7 +983,7 @@ class StartDeviceDiscoveryCommand extends smithyClient.Command
3253
983
  })
3254
984
  .s("IotManagedIntegrations", "StartDeviceDiscovery", {})
3255
985
  .n("IoTManagedIntegrationsClient", "StartDeviceDiscoveryCommand")
3256
- .sc(StartDeviceDiscovery$)
986
+ .sc(schemas_0.StartDeviceDiscovery$)
3257
987
  .build() {
3258
988
  }
3259
989
 
@@ -3265,7 +995,7 @@ class TagResourceCommand extends smithyClient.Command
3265
995
  })
3266
996
  .s("IotManagedIntegrations", "TagResource", {})
3267
997
  .n("IoTManagedIntegrationsClient", "TagResourceCommand")
3268
- .sc(TagResource$)
998
+ .sc(schemas_0.TagResource$)
3269
999
  .build() {
3270
1000
  }
3271
1001
 
@@ -3277,7 +1007,7 @@ class UntagResourceCommand extends smithyClient.Command
3277
1007
  })
3278
1008
  .s("IotManagedIntegrations", "UntagResource", {})
3279
1009
  .n("IoTManagedIntegrationsClient", "UntagResourceCommand")
3280
- .sc(UntagResource$)
1010
+ .sc(schemas_0.UntagResource$)
3281
1011
  .build() {
3282
1012
  }
3283
1013
 
@@ -3289,7 +1019,7 @@ class UpdateAccountAssociationCommand extends smithyClient.Command
3289
1019
  })
3290
1020
  .s("IotManagedIntegrations", "UpdateAccountAssociation", {})
3291
1021
  .n("IoTManagedIntegrationsClient", "UpdateAccountAssociationCommand")
3292
- .sc(UpdateAccountAssociation$)
1022
+ .sc(schemas_0.UpdateAccountAssociation$)
3293
1023
  .build() {
3294
1024
  }
3295
1025
 
@@ -3301,7 +1031,7 @@ class UpdateCloudConnectorCommand extends smithyClient.Command
3301
1031
  })
3302
1032
  .s("IotManagedIntegrations", "UpdateCloudConnector", {})
3303
1033
  .n("IoTManagedIntegrationsClient", "UpdateCloudConnectorCommand")
3304
- .sc(UpdateCloudConnector$)
1034
+ .sc(schemas_0.UpdateCloudConnector$)
3305
1035
  .build() {
3306
1036
  }
3307
1037
 
@@ -3313,7 +1043,7 @@ class UpdateConnectorDestinationCommand extends smithyClient.Command
3313
1043
  })
3314
1044
  .s("IotManagedIntegrations", "UpdateConnectorDestination", {})
3315
1045
  .n("IoTManagedIntegrationsClient", "UpdateConnectorDestinationCommand")
3316
- .sc(UpdateConnectorDestination$)
1046
+ .sc(schemas_0.UpdateConnectorDestination$)
3317
1047
  .build() {
3318
1048
  }
3319
1049
 
@@ -3325,7 +1055,7 @@ class UpdateDestinationCommand extends smithyClient.Command
3325
1055
  })
3326
1056
  .s("IotManagedIntegrations", "UpdateDestination", {})
3327
1057
  .n("IoTManagedIntegrationsClient", "UpdateDestinationCommand")
3328
- .sc(UpdateDestination$)
1058
+ .sc(schemas_0.UpdateDestination$)
3329
1059
  .build() {
3330
1060
  }
3331
1061
 
@@ -3337,7 +1067,7 @@ class UpdateEventLogConfigurationCommand extends smithyClient.Command
3337
1067
  })
3338
1068
  .s("IotManagedIntegrations", "UpdateEventLogConfiguration", {})
3339
1069
  .n("IoTManagedIntegrationsClient", "UpdateEventLogConfigurationCommand")
3340
- .sc(UpdateEventLogConfiguration$)
1070
+ .sc(schemas_0.UpdateEventLogConfiguration$)
3341
1071
  .build() {
3342
1072
  }
3343
1073
 
@@ -3349,7 +1079,7 @@ class UpdateManagedThingCommand extends smithyClient.Command
3349
1079
  })
3350
1080
  .s("IotManagedIntegrations", "UpdateManagedThing", {})
3351
1081
  .n("IoTManagedIntegrationsClient", "UpdateManagedThingCommand")
3352
- .sc(UpdateManagedThing$)
1082
+ .sc(schemas_0.UpdateManagedThing$)
3353
1083
  .build() {
3354
1084
  }
3355
1085
 
@@ -3361,7 +1091,7 @@ class UpdateNotificationConfigurationCommand extends smithyClient.Command
3361
1091
  })
3362
1092
  .s("IotManagedIntegrations", "UpdateNotificationConfiguration", {})
3363
1093
  .n("IoTManagedIntegrationsClient", "UpdateNotificationConfigurationCommand")
3364
- .sc(UpdateNotificationConfiguration$)
1094
+ .sc(schemas_0.UpdateNotificationConfiguration$)
3365
1095
  .build() {
3366
1096
  }
3367
1097
 
@@ -3373,7 +1103,7 @@ class UpdateOtaTaskCommand extends smithyClient.Command
3373
1103
  })
3374
1104
  .s("IotManagedIntegrations", "UpdateOtaTask", {})
3375
1105
  .n("IoTManagedIntegrationsClient", "UpdateOtaTaskCommand")
3376
- .sc(UpdateOtaTask$)
1106
+ .sc(schemas_0.UpdateOtaTask$)
3377
1107
  .build() {
3378
1108
  }
3379
1109
 
@@ -3721,440 +1451,130 @@ Object.defineProperty(exports, "__Client", {
3721
1451
  enumerable: true,
3722
1452
  get: function () { return smithyClient.Client; }
3723
1453
  });
3724
- exports.AbortConfigCriteria$ = AbortConfigCriteria$;
1454
+ Object.defineProperty(exports, "IoTManagedIntegrationsServiceException", {
1455
+ enumerable: true,
1456
+ get: function () { return IoTManagedIntegrationsServiceException.IoTManagedIntegrationsServiceException; }
1457
+ });
3725
1458
  exports.AbortCriteriaAction = AbortCriteriaAction;
3726
1459
  exports.AbortCriteriaFailureType = AbortCriteriaFailureType;
3727
- exports.AccessDeniedException = AccessDeniedException;
3728
- exports.AccessDeniedException$ = AccessDeniedException$;
3729
- exports.AccountAssociationItem$ = AccountAssociationItem$;
3730
1460
  exports.AssociationState = AssociationState;
3731
- exports.AuthConfig$ = AuthConfig$;
3732
- exports.AuthConfigUpdate$ = AuthConfigUpdate$;
3733
- exports.AuthMaterial$ = AuthMaterial$;
3734
1461
  exports.AuthMaterialType = AuthMaterialType;
3735
1462
  exports.AuthType = AuthType;
3736
- exports.CapabilityAction$ = CapabilityAction$;
3737
- exports.CapabilityReport$ = CapabilityReport$;
3738
- exports.CapabilityReportCapability$ = CapabilityReportCapability$;
3739
- exports.CapabilityReportEndpoint$ = CapabilityReportEndpoint$;
3740
- exports.CapabilitySchemaItem$ = CapabilitySchemaItem$;
3741
1463
  exports.CloudConnectorType = CloudConnectorType;
3742
- exports.CommandCapability$ = CommandCapability$;
3743
- exports.CommandEndpoint$ = CommandEndpoint$;
3744
- exports.ConfigurationError$ = ConfigurationError$;
3745
1464
  exports.ConfigurationState = ConfigurationState;
3746
- exports.ConfigurationStatus$ = ConfigurationStatus$;
3747
- exports.ConflictException = ConflictException;
3748
- exports.ConflictException$ = ConflictException$;
3749
- exports.ConnectorDestinationSummary$ = ConnectorDestinationSummary$;
3750
1465
  exports.ConnectorEventOperation = ConnectorEventOperation;
3751
- exports.ConnectorItem$ = ConnectorItem$;
3752
- exports.CreateAccountAssociation$ = CreateAccountAssociation$;
3753
1466
  exports.CreateAccountAssociationCommand = CreateAccountAssociationCommand;
3754
- exports.CreateAccountAssociationRequest$ = CreateAccountAssociationRequest$;
3755
- exports.CreateAccountAssociationResponse$ = CreateAccountAssociationResponse$;
3756
- exports.CreateCloudConnector$ = CreateCloudConnector$;
3757
1467
  exports.CreateCloudConnectorCommand = CreateCloudConnectorCommand;
3758
- exports.CreateCloudConnectorRequest$ = CreateCloudConnectorRequest$;
3759
- exports.CreateCloudConnectorResponse$ = CreateCloudConnectorResponse$;
3760
- exports.CreateConnectorDestination$ = CreateConnectorDestination$;
3761
1468
  exports.CreateConnectorDestinationCommand = CreateConnectorDestinationCommand;
3762
- exports.CreateConnectorDestinationRequest$ = CreateConnectorDestinationRequest$;
3763
- exports.CreateConnectorDestinationResponse$ = CreateConnectorDestinationResponse$;
3764
- exports.CreateCredentialLocker$ = CreateCredentialLocker$;
3765
1469
  exports.CreateCredentialLockerCommand = CreateCredentialLockerCommand;
3766
- exports.CreateCredentialLockerRequest$ = CreateCredentialLockerRequest$;
3767
- exports.CreateCredentialLockerResponse$ = CreateCredentialLockerResponse$;
3768
- exports.CreateDestination$ = CreateDestination$;
3769
1470
  exports.CreateDestinationCommand = CreateDestinationCommand;
3770
- exports.CreateDestinationRequest$ = CreateDestinationRequest$;
3771
- exports.CreateDestinationResponse$ = CreateDestinationResponse$;
3772
- exports.CreateEventLogConfiguration$ = CreateEventLogConfiguration$;
3773
1471
  exports.CreateEventLogConfigurationCommand = CreateEventLogConfigurationCommand;
3774
- exports.CreateEventLogConfigurationRequest$ = CreateEventLogConfigurationRequest$;
3775
- exports.CreateEventLogConfigurationResponse$ = CreateEventLogConfigurationResponse$;
3776
- exports.CreateManagedThing$ = CreateManagedThing$;
3777
1472
  exports.CreateManagedThingCommand = CreateManagedThingCommand;
3778
- exports.CreateManagedThingRequest$ = CreateManagedThingRequest$;
3779
- exports.CreateManagedThingResponse$ = CreateManagedThingResponse$;
3780
- exports.CreateNotificationConfiguration$ = CreateNotificationConfiguration$;
3781
1473
  exports.CreateNotificationConfigurationCommand = CreateNotificationConfigurationCommand;
3782
- exports.CreateNotificationConfigurationRequest$ = CreateNotificationConfigurationRequest$;
3783
- exports.CreateNotificationConfigurationResponse$ = CreateNotificationConfigurationResponse$;
3784
- exports.CreateOtaTask$ = CreateOtaTask$;
3785
1474
  exports.CreateOtaTaskCommand = CreateOtaTaskCommand;
3786
- exports.CreateOtaTaskConfiguration$ = CreateOtaTaskConfiguration$;
3787
1475
  exports.CreateOtaTaskConfigurationCommand = CreateOtaTaskConfigurationCommand;
3788
- exports.CreateOtaTaskConfigurationRequest$ = CreateOtaTaskConfigurationRequest$;
3789
- exports.CreateOtaTaskConfigurationResponse$ = CreateOtaTaskConfigurationResponse$;
3790
- exports.CreateOtaTaskRequest$ = CreateOtaTaskRequest$;
3791
- exports.CreateOtaTaskResponse$ = CreateOtaTaskResponse$;
3792
- exports.CreateProvisioningProfile$ = CreateProvisioningProfile$;
3793
1476
  exports.CreateProvisioningProfileCommand = CreateProvisioningProfileCommand;
3794
- exports.CreateProvisioningProfileRequest$ = CreateProvisioningProfileRequest$;
3795
- exports.CreateProvisioningProfileResponse$ = CreateProvisioningProfileResponse$;
3796
- exports.CredentialLockerSummary$ = CredentialLockerSummary$;
3797
- exports.DeleteAccountAssociation$ = DeleteAccountAssociation$;
3798
1477
  exports.DeleteAccountAssociationCommand = DeleteAccountAssociationCommand;
3799
- exports.DeleteAccountAssociationRequest$ = DeleteAccountAssociationRequest$;
3800
- exports.DeleteCloudConnector$ = DeleteCloudConnector$;
3801
1478
  exports.DeleteCloudConnectorCommand = DeleteCloudConnectorCommand;
3802
- exports.DeleteCloudConnectorRequest$ = DeleteCloudConnectorRequest$;
3803
- exports.DeleteConnectorDestination$ = DeleteConnectorDestination$;
3804
1479
  exports.DeleteConnectorDestinationCommand = DeleteConnectorDestinationCommand;
3805
- exports.DeleteConnectorDestinationRequest$ = DeleteConnectorDestinationRequest$;
3806
- exports.DeleteCredentialLocker$ = DeleteCredentialLocker$;
3807
1480
  exports.DeleteCredentialLockerCommand = DeleteCredentialLockerCommand;
3808
- exports.DeleteCredentialLockerRequest$ = DeleteCredentialLockerRequest$;
3809
- exports.DeleteDestination$ = DeleteDestination$;
3810
1481
  exports.DeleteDestinationCommand = DeleteDestinationCommand;
3811
- exports.DeleteDestinationRequest$ = DeleteDestinationRequest$;
3812
- exports.DeleteEventLogConfiguration$ = DeleteEventLogConfiguration$;
3813
1482
  exports.DeleteEventLogConfigurationCommand = DeleteEventLogConfigurationCommand;
3814
- exports.DeleteEventLogConfigurationRequest$ = DeleteEventLogConfigurationRequest$;
3815
- exports.DeleteManagedThing$ = DeleteManagedThing$;
3816
1483
  exports.DeleteManagedThingCommand = DeleteManagedThingCommand;
3817
- exports.DeleteManagedThingRequest$ = DeleteManagedThingRequest$;
3818
- exports.DeleteNotificationConfiguration$ = DeleteNotificationConfiguration$;
3819
1484
  exports.DeleteNotificationConfigurationCommand = DeleteNotificationConfigurationCommand;
3820
- exports.DeleteNotificationConfigurationRequest$ = DeleteNotificationConfigurationRequest$;
3821
- exports.DeleteOtaTask$ = DeleteOtaTask$;
3822
1485
  exports.DeleteOtaTaskCommand = DeleteOtaTaskCommand;
3823
- exports.DeleteOtaTaskConfiguration$ = DeleteOtaTaskConfiguration$;
3824
1486
  exports.DeleteOtaTaskConfigurationCommand = DeleteOtaTaskConfigurationCommand;
3825
- exports.DeleteOtaTaskConfigurationRequest$ = DeleteOtaTaskConfigurationRequest$;
3826
- exports.DeleteOtaTaskRequest$ = DeleteOtaTaskRequest$;
3827
- exports.DeleteProvisioningProfile$ = DeleteProvisioningProfile$;
3828
1487
  exports.DeleteProvisioningProfileCommand = DeleteProvisioningProfileCommand;
3829
- exports.DeleteProvisioningProfileRequest$ = DeleteProvisioningProfileRequest$;
3830
1488
  exports.DeliveryDestinationType = DeliveryDestinationType;
3831
- exports.DeregisterAccountAssociation$ = DeregisterAccountAssociation$;
3832
1489
  exports.DeregisterAccountAssociationCommand = DeregisterAccountAssociationCommand;
3833
- exports.DeregisterAccountAssociationRequest$ = DeregisterAccountAssociationRequest$;
3834
- exports.DestinationSummary$ = DestinationSummary$;
3835
- exports.Device$ = Device$;
3836
1490
  exports.DeviceDiscoveryStatus = DeviceDiscoveryStatus;
3837
- exports.DeviceDiscoverySummary$ = DeviceDiscoverySummary$;
3838
1491
  exports.DisconnectReasonValue = DisconnectReasonValue;
3839
- exports.DiscoveredDeviceSummary$ = DiscoveredDeviceSummary$;
3840
1492
  exports.DiscoveryAuthMaterialType = DiscoveryAuthMaterialType;
3841
1493
  exports.DiscoveryModification = DiscoveryModification;
3842
1494
  exports.DiscoveryType = DiscoveryType;
3843
1495
  exports.EncryptionType = EncryptionType;
3844
- exports.EndpointConfig$ = EndpointConfig$;
3845
1496
  exports.EndpointType = EndpointType;
3846
- exports.EventLogConfigurationSummary$ = EventLogConfigurationSummary$;
3847
1497
  exports.EventType = EventType;
3848
- exports.ExponentialRolloutRate$ = ExponentialRolloutRate$;
3849
- exports.GeneralAuthorizationName$ = GeneralAuthorizationName$;
3850
- exports.GeneralAuthorizationUpdate$ = GeneralAuthorizationUpdate$;
3851
- exports.GetAccountAssociation$ = GetAccountAssociation$;
3852
1498
  exports.GetAccountAssociationCommand = GetAccountAssociationCommand;
3853
- exports.GetAccountAssociationRequest$ = GetAccountAssociationRequest$;
3854
- exports.GetAccountAssociationResponse$ = GetAccountAssociationResponse$;
3855
- exports.GetCloudConnector$ = GetCloudConnector$;
3856
1499
  exports.GetCloudConnectorCommand = GetCloudConnectorCommand;
3857
- exports.GetCloudConnectorRequest$ = GetCloudConnectorRequest$;
3858
- exports.GetCloudConnectorResponse$ = GetCloudConnectorResponse$;
3859
- exports.GetConnectorDestination$ = GetConnectorDestination$;
3860
1500
  exports.GetConnectorDestinationCommand = GetConnectorDestinationCommand;
3861
- exports.GetConnectorDestinationRequest$ = GetConnectorDestinationRequest$;
3862
- exports.GetConnectorDestinationResponse$ = GetConnectorDestinationResponse$;
3863
- exports.GetCredentialLocker$ = GetCredentialLocker$;
3864
1501
  exports.GetCredentialLockerCommand = GetCredentialLockerCommand;
3865
- exports.GetCredentialLockerRequest$ = GetCredentialLockerRequest$;
3866
- exports.GetCredentialLockerResponse$ = GetCredentialLockerResponse$;
3867
- exports.GetCustomEndpoint$ = GetCustomEndpoint$;
3868
1502
  exports.GetCustomEndpointCommand = GetCustomEndpointCommand;
3869
- exports.GetCustomEndpointRequest$ = GetCustomEndpointRequest$;
3870
- exports.GetCustomEndpointResponse$ = GetCustomEndpointResponse$;
3871
- exports.GetDefaultEncryptionConfiguration$ = GetDefaultEncryptionConfiguration$;
3872
1503
  exports.GetDefaultEncryptionConfigurationCommand = GetDefaultEncryptionConfigurationCommand;
3873
- exports.GetDefaultEncryptionConfigurationRequest$ = GetDefaultEncryptionConfigurationRequest$;
3874
- exports.GetDefaultEncryptionConfigurationResponse$ = GetDefaultEncryptionConfigurationResponse$;
3875
- exports.GetDestination$ = GetDestination$;
3876
1504
  exports.GetDestinationCommand = GetDestinationCommand;
3877
- exports.GetDestinationRequest$ = GetDestinationRequest$;
3878
- exports.GetDestinationResponse$ = GetDestinationResponse$;
3879
- exports.GetDeviceDiscovery$ = GetDeviceDiscovery$;
3880
1505
  exports.GetDeviceDiscoveryCommand = GetDeviceDiscoveryCommand;
3881
- exports.GetDeviceDiscoveryRequest$ = GetDeviceDiscoveryRequest$;
3882
- exports.GetDeviceDiscoveryResponse$ = GetDeviceDiscoveryResponse$;
3883
- exports.GetEventLogConfiguration$ = GetEventLogConfiguration$;
3884
1506
  exports.GetEventLogConfigurationCommand = GetEventLogConfigurationCommand;
3885
- exports.GetEventLogConfigurationRequest$ = GetEventLogConfigurationRequest$;
3886
- exports.GetEventLogConfigurationResponse$ = GetEventLogConfigurationResponse$;
3887
- exports.GetHubConfiguration$ = GetHubConfiguration$;
3888
1507
  exports.GetHubConfigurationCommand = GetHubConfigurationCommand;
3889
- exports.GetHubConfigurationRequest$ = GetHubConfigurationRequest$;
3890
- exports.GetHubConfigurationResponse$ = GetHubConfigurationResponse$;
3891
- exports.GetManagedThing$ = GetManagedThing$;
3892
- exports.GetManagedThingCapabilities$ = GetManagedThingCapabilities$;
3893
1508
  exports.GetManagedThingCapabilitiesCommand = GetManagedThingCapabilitiesCommand;
3894
- exports.GetManagedThingCapabilitiesRequest$ = GetManagedThingCapabilitiesRequest$;
3895
- exports.GetManagedThingCapabilitiesResponse$ = GetManagedThingCapabilitiesResponse$;
3896
- exports.GetManagedThingCertificate$ = GetManagedThingCertificate$;
3897
1509
  exports.GetManagedThingCertificateCommand = GetManagedThingCertificateCommand;
3898
- exports.GetManagedThingCertificateRequest$ = GetManagedThingCertificateRequest$;
3899
- exports.GetManagedThingCertificateResponse$ = GetManagedThingCertificateResponse$;
3900
1510
  exports.GetManagedThingCommand = GetManagedThingCommand;
3901
- exports.GetManagedThingConnectivityData$ = GetManagedThingConnectivityData$;
3902
1511
  exports.GetManagedThingConnectivityDataCommand = GetManagedThingConnectivityDataCommand;
3903
- exports.GetManagedThingConnectivityDataRequest$ = GetManagedThingConnectivityDataRequest$;
3904
- exports.GetManagedThingConnectivityDataResponse$ = GetManagedThingConnectivityDataResponse$;
3905
- exports.GetManagedThingMetaData$ = GetManagedThingMetaData$;
3906
1512
  exports.GetManagedThingMetaDataCommand = GetManagedThingMetaDataCommand;
3907
- exports.GetManagedThingMetaDataRequest$ = GetManagedThingMetaDataRequest$;
3908
- exports.GetManagedThingMetaDataResponse$ = GetManagedThingMetaDataResponse$;
3909
- exports.GetManagedThingRequest$ = GetManagedThingRequest$;
3910
- exports.GetManagedThingResponse$ = GetManagedThingResponse$;
3911
- exports.GetManagedThingState$ = GetManagedThingState$;
3912
1513
  exports.GetManagedThingStateCommand = GetManagedThingStateCommand;
3913
- exports.GetManagedThingStateRequest$ = GetManagedThingStateRequest$;
3914
- exports.GetManagedThingStateResponse$ = GetManagedThingStateResponse$;
3915
- exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
3916
1514
  exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
3917
- exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
3918
- exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
3919
- exports.GetOtaTask$ = GetOtaTask$;
3920
1515
  exports.GetOtaTaskCommand = GetOtaTaskCommand;
3921
- exports.GetOtaTaskConfiguration$ = GetOtaTaskConfiguration$;
3922
1516
  exports.GetOtaTaskConfigurationCommand = GetOtaTaskConfigurationCommand;
3923
- exports.GetOtaTaskConfigurationRequest$ = GetOtaTaskConfigurationRequest$;
3924
- exports.GetOtaTaskConfigurationResponse$ = GetOtaTaskConfigurationResponse$;
3925
- exports.GetOtaTaskRequest$ = GetOtaTaskRequest$;
3926
- exports.GetOtaTaskResponse$ = GetOtaTaskResponse$;
3927
- exports.GetProvisioningProfile$ = GetProvisioningProfile$;
3928
1517
  exports.GetProvisioningProfileCommand = GetProvisioningProfileCommand;
3929
- exports.GetProvisioningProfileRequest$ = GetProvisioningProfileRequest$;
3930
- exports.GetProvisioningProfileResponse$ = GetProvisioningProfileResponse$;
3931
- exports.GetRuntimeLogConfiguration$ = GetRuntimeLogConfiguration$;
3932
1518
  exports.GetRuntimeLogConfigurationCommand = GetRuntimeLogConfigurationCommand;
3933
- exports.GetRuntimeLogConfigurationRequest$ = GetRuntimeLogConfigurationRequest$;
3934
- exports.GetRuntimeLogConfigurationResponse$ = GetRuntimeLogConfigurationResponse$;
3935
- exports.GetSchemaVersion$ = GetSchemaVersion$;
3936
1519
  exports.GetSchemaVersionCommand = GetSchemaVersionCommand;
3937
- exports.GetSchemaVersionRequest$ = GetSchemaVersionRequest$;
3938
- exports.GetSchemaVersionResponse$ = GetSchemaVersionResponse$;
3939
1520
  exports.HubNetworkMode = HubNetworkMode;
3940
- exports.InternalFailureException = InternalFailureException;
3941
- exports.InternalFailureException$ = InternalFailureException$;
3942
- exports.InternalServerException = InternalServerException;
3943
- exports.InternalServerException$ = InternalServerException$;
3944
- exports.InvalidRequestException = InvalidRequestException;
3945
- exports.InvalidRequestException$ = InvalidRequestException$;
3946
1521
  exports.IoTManagedIntegrations = IoTManagedIntegrations;
3947
1522
  exports.IoTManagedIntegrationsClient = IoTManagedIntegrationsClient;
3948
- exports.IoTManagedIntegrationsServiceException = IoTManagedIntegrationsServiceException;
3949
- exports.IoTManagedIntegrationsServiceException$ = IoTManagedIntegrationsServiceException$;
3950
- exports.LambdaConfig$ = LambdaConfig$;
3951
- exports.LimitExceededException = LimitExceededException;
3952
- exports.LimitExceededException$ = LimitExceededException$;
3953
- exports.ListAccountAssociations$ = ListAccountAssociations$;
3954
1523
  exports.ListAccountAssociationsCommand = ListAccountAssociationsCommand;
3955
- exports.ListAccountAssociationsRequest$ = ListAccountAssociationsRequest$;
3956
- exports.ListAccountAssociationsResponse$ = ListAccountAssociationsResponse$;
3957
- exports.ListCloudConnectors$ = ListCloudConnectors$;
3958
1524
  exports.ListCloudConnectorsCommand = ListCloudConnectorsCommand;
3959
- exports.ListCloudConnectorsRequest$ = ListCloudConnectorsRequest$;
3960
- exports.ListCloudConnectorsResponse$ = ListCloudConnectorsResponse$;
3961
- exports.ListConnectorDestinations$ = ListConnectorDestinations$;
3962
1525
  exports.ListConnectorDestinationsCommand = ListConnectorDestinationsCommand;
3963
- exports.ListConnectorDestinationsRequest$ = ListConnectorDestinationsRequest$;
3964
- exports.ListConnectorDestinationsResponse$ = ListConnectorDestinationsResponse$;
3965
- exports.ListCredentialLockers$ = ListCredentialLockers$;
3966
1526
  exports.ListCredentialLockersCommand = ListCredentialLockersCommand;
3967
- exports.ListCredentialLockersRequest$ = ListCredentialLockersRequest$;
3968
- exports.ListCredentialLockersResponse$ = ListCredentialLockersResponse$;
3969
- exports.ListDestinations$ = ListDestinations$;
3970
1527
  exports.ListDestinationsCommand = ListDestinationsCommand;
3971
- exports.ListDestinationsRequest$ = ListDestinationsRequest$;
3972
- exports.ListDestinationsResponse$ = ListDestinationsResponse$;
3973
- exports.ListDeviceDiscoveries$ = ListDeviceDiscoveries$;
3974
1528
  exports.ListDeviceDiscoveriesCommand = ListDeviceDiscoveriesCommand;
3975
- exports.ListDeviceDiscoveriesRequest$ = ListDeviceDiscoveriesRequest$;
3976
- exports.ListDeviceDiscoveriesResponse$ = ListDeviceDiscoveriesResponse$;
3977
- exports.ListDiscoveredDevices$ = ListDiscoveredDevices$;
3978
1529
  exports.ListDiscoveredDevicesCommand = ListDiscoveredDevicesCommand;
3979
- exports.ListDiscoveredDevicesRequest$ = ListDiscoveredDevicesRequest$;
3980
- exports.ListDiscoveredDevicesResponse$ = ListDiscoveredDevicesResponse$;
3981
- exports.ListEventLogConfigurations$ = ListEventLogConfigurations$;
3982
1530
  exports.ListEventLogConfigurationsCommand = ListEventLogConfigurationsCommand;
3983
- exports.ListEventLogConfigurationsRequest$ = ListEventLogConfigurationsRequest$;
3984
- exports.ListEventLogConfigurationsResponse$ = ListEventLogConfigurationsResponse$;
3985
- exports.ListManagedThingAccountAssociations$ = ListManagedThingAccountAssociations$;
3986
1531
  exports.ListManagedThingAccountAssociationsCommand = ListManagedThingAccountAssociationsCommand;
3987
- exports.ListManagedThingAccountAssociationsRequest$ = ListManagedThingAccountAssociationsRequest$;
3988
- exports.ListManagedThingAccountAssociationsResponse$ = ListManagedThingAccountAssociationsResponse$;
3989
- exports.ListManagedThingSchemas$ = ListManagedThingSchemas$;
3990
1532
  exports.ListManagedThingSchemasCommand = ListManagedThingSchemasCommand;
3991
- exports.ListManagedThingSchemasRequest$ = ListManagedThingSchemasRequest$;
3992
- exports.ListManagedThingSchemasResponse$ = ListManagedThingSchemasResponse$;
3993
- exports.ListManagedThings$ = ListManagedThings$;
3994
1533
  exports.ListManagedThingsCommand = ListManagedThingsCommand;
3995
- exports.ListManagedThingsRequest$ = ListManagedThingsRequest$;
3996
- exports.ListManagedThingsResponse$ = ListManagedThingsResponse$;
3997
- exports.ListNotificationConfigurations$ = ListNotificationConfigurations$;
3998
1534
  exports.ListNotificationConfigurationsCommand = ListNotificationConfigurationsCommand;
3999
- exports.ListNotificationConfigurationsRequest$ = ListNotificationConfigurationsRequest$;
4000
- exports.ListNotificationConfigurationsResponse$ = ListNotificationConfigurationsResponse$;
4001
- exports.ListOtaTaskConfigurations$ = ListOtaTaskConfigurations$;
4002
1535
  exports.ListOtaTaskConfigurationsCommand = ListOtaTaskConfigurationsCommand;
4003
- exports.ListOtaTaskConfigurationsRequest$ = ListOtaTaskConfigurationsRequest$;
4004
- exports.ListOtaTaskConfigurationsResponse$ = ListOtaTaskConfigurationsResponse$;
4005
- exports.ListOtaTaskExecutions$ = ListOtaTaskExecutions$;
4006
1536
  exports.ListOtaTaskExecutionsCommand = ListOtaTaskExecutionsCommand;
4007
- exports.ListOtaTaskExecutionsRequest$ = ListOtaTaskExecutionsRequest$;
4008
- exports.ListOtaTaskExecutionsResponse$ = ListOtaTaskExecutionsResponse$;
4009
- exports.ListOtaTasks$ = ListOtaTasks$;
4010
1537
  exports.ListOtaTasksCommand = ListOtaTasksCommand;
4011
- exports.ListOtaTasksRequest$ = ListOtaTasksRequest$;
4012
- exports.ListOtaTasksResponse$ = ListOtaTasksResponse$;
4013
- exports.ListProvisioningProfiles$ = ListProvisioningProfiles$;
4014
1538
  exports.ListProvisioningProfilesCommand = ListProvisioningProfilesCommand;
4015
- exports.ListProvisioningProfilesRequest$ = ListProvisioningProfilesRequest$;
4016
- exports.ListProvisioningProfilesResponse$ = ListProvisioningProfilesResponse$;
4017
- exports.ListSchemaVersions$ = ListSchemaVersions$;
4018
1539
  exports.ListSchemaVersionsCommand = ListSchemaVersionsCommand;
4019
- exports.ListSchemaVersionsRequest$ = ListSchemaVersionsRequest$;
4020
- exports.ListSchemaVersionsResponse$ = ListSchemaVersionsResponse$;
4021
- exports.ListTagsForResource$ = ListTagsForResource$;
4022
1540
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
4023
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
4024
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
4025
1541
  exports.LogLevel = LogLevel;
4026
- exports.ManagedThingAssociation$ = ManagedThingAssociation$;
4027
1542
  exports.ManagedThingAssociationStatus = ManagedThingAssociationStatus;
4028
- exports.ManagedThingSchemaListItem$ = ManagedThingSchemaListItem$;
4029
- exports.ManagedThingSummary$ = ManagedThingSummary$;
4030
- exports.MatterCapabilityReport$ = MatterCapabilityReport$;
4031
- exports.MatterCapabilityReportAttribute$ = MatterCapabilityReportAttribute$;
4032
- exports.MatterCapabilityReportCluster$ = MatterCapabilityReportCluster$;
4033
- exports.MatterCapabilityReportEndpoint$ = MatterCapabilityReportEndpoint$;
4034
- exports.MatterCluster$ = MatterCluster$;
4035
- exports.MatterEndpoint$ = MatterEndpoint$;
4036
- exports.NotificationConfigurationSummary$ = NotificationConfigurationSummary$;
4037
- exports.OAuthConfig$ = OAuthConfig$;
4038
- exports.OAuthUpdate$ = OAuthUpdate$;
4039
1543
  exports.OtaMechanism = OtaMechanism;
4040
1544
  exports.OtaProtocol = OtaProtocol;
4041
1545
  exports.OtaStatus = OtaStatus;
4042
- exports.OtaTaskAbortConfig$ = OtaTaskAbortConfig$;
4043
- exports.OtaTaskConfigurationSummary$ = OtaTaskConfigurationSummary$;
4044
- exports.OtaTaskExecutionRetryConfig$ = OtaTaskExecutionRetryConfig$;
4045
- exports.OtaTaskExecutionRolloutConfig$ = OtaTaskExecutionRolloutConfig$;
4046
1546
  exports.OtaTaskExecutionStatus = OtaTaskExecutionStatus;
4047
- exports.OtaTaskExecutionSummaries$ = OtaTaskExecutionSummaries$;
4048
- exports.OtaTaskExecutionSummary$ = OtaTaskExecutionSummary$;
4049
- exports.OtaTaskSchedulingConfig$ = OtaTaskSchedulingConfig$;
4050
- exports.OtaTaskSummary$ = OtaTaskSummary$;
4051
- exports.OtaTaskTimeoutConfig$ = OtaTaskTimeoutConfig$;
4052
1547
  exports.OtaType = OtaType;
4053
- exports.ProactiveRefreshTokenRenewal$ = ProactiveRefreshTokenRenewal$;
4054
1548
  exports.ProtocolType = ProtocolType;
4055
- exports.ProvisioningProfileSummary$ = ProvisioningProfileSummary$;
4056
1549
  exports.ProvisioningStatus = ProvisioningStatus;
4057
1550
  exports.ProvisioningType = ProvisioningType;
4058
- exports.PushConfig$ = PushConfig$;
4059
- exports.PutDefaultEncryptionConfiguration$ = PutDefaultEncryptionConfiguration$;
4060
1551
  exports.PutDefaultEncryptionConfigurationCommand = PutDefaultEncryptionConfigurationCommand;
4061
- exports.PutDefaultEncryptionConfigurationRequest$ = PutDefaultEncryptionConfigurationRequest$;
4062
- exports.PutDefaultEncryptionConfigurationResponse$ = PutDefaultEncryptionConfigurationResponse$;
4063
- exports.PutHubConfiguration$ = PutHubConfiguration$;
4064
1552
  exports.PutHubConfigurationCommand = PutHubConfigurationCommand;
4065
- exports.PutHubConfigurationRequest$ = PutHubConfigurationRequest$;
4066
- exports.PutHubConfigurationResponse$ = PutHubConfigurationResponse$;
4067
- exports.PutRuntimeLogConfiguration$ = PutRuntimeLogConfiguration$;
4068
1553
  exports.PutRuntimeLogConfigurationCommand = PutRuntimeLogConfigurationCommand;
4069
- exports.PutRuntimeLogConfigurationRequest$ = PutRuntimeLogConfigurationRequest$;
4070
- exports.RegisterAccountAssociation$ = RegisterAccountAssociation$;
4071
1554
  exports.RegisterAccountAssociationCommand = RegisterAccountAssociationCommand;
4072
- exports.RegisterAccountAssociationRequest$ = RegisterAccountAssociationRequest$;
4073
- exports.RegisterAccountAssociationResponse$ = RegisterAccountAssociationResponse$;
4074
- exports.RegisterCustomEndpoint$ = RegisterCustomEndpoint$;
4075
1555
  exports.RegisterCustomEndpointCommand = RegisterCustomEndpointCommand;
4076
- exports.RegisterCustomEndpointRequest$ = RegisterCustomEndpointRequest$;
4077
- exports.RegisterCustomEndpointResponse$ = RegisterCustomEndpointResponse$;
4078
- exports.ResetRuntimeLogConfiguration$ = ResetRuntimeLogConfiguration$;
4079
1556
  exports.ResetRuntimeLogConfigurationCommand = ResetRuntimeLogConfigurationCommand;
4080
- exports.ResetRuntimeLogConfigurationRequest$ = ResetRuntimeLogConfigurationRequest$;
4081
- exports.ResourceNotFoundException = ResourceNotFoundException;
4082
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
4083
- exports.RetryConfigCriteria$ = RetryConfigCriteria$;
4084
1557
  exports.RetryCriteriaFailureType = RetryCriteriaFailureType;
4085
1558
  exports.Role = Role;
4086
- exports.RolloutRateIncreaseCriteria$ = RolloutRateIncreaseCriteria$;
4087
- exports.RuntimeLogConfigurations$ = RuntimeLogConfigurations$;
4088
- exports.ScheduleMaintenanceWindow$ = ScheduleMaintenanceWindow$;
4089
1559
  exports.SchedulingConfigEndBehavior = SchedulingConfigEndBehavior;
4090
1560
  exports.SchemaVersionFormat = SchemaVersionFormat;
4091
- exports.SchemaVersionListItem$ = SchemaVersionListItem$;
4092
1561
  exports.SchemaVersionType = SchemaVersionType;
4093
1562
  exports.SchemaVersionVisibility = SchemaVersionVisibility;
4094
- exports.SecretsManager$ = SecretsManager$;
4095
- exports.SendConnectorEvent$ = SendConnectorEvent$;
4096
1563
  exports.SendConnectorEventCommand = SendConnectorEventCommand;
4097
- exports.SendConnectorEventRequest$ = SendConnectorEventRequest$;
4098
- exports.SendConnectorEventResponse$ = SendConnectorEventResponse$;
4099
- exports.SendManagedThingCommand$ = SendManagedThingCommand$;
4100
1564
  exports.SendManagedThingCommandCommand = SendManagedThingCommandCommand;
4101
- exports.SendManagedThingCommandRequest$ = SendManagedThingCommandRequest$;
4102
- exports.SendManagedThingCommandResponse$ = SendManagedThingCommandResponse$;
4103
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
4104
- exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
4105
- exports.ServiceUnavailableException = ServiceUnavailableException;
4106
- exports.ServiceUnavailableException$ = ServiceUnavailableException$;
4107
- exports.StartAccountAssociationRefresh$ = StartAccountAssociationRefresh$;
4108
1565
  exports.StartAccountAssociationRefreshCommand = StartAccountAssociationRefreshCommand;
4109
- exports.StartAccountAssociationRefreshRequest$ = StartAccountAssociationRefreshRequest$;
4110
- exports.StartAccountAssociationRefreshResponse$ = StartAccountAssociationRefreshResponse$;
4111
- exports.StartDeviceDiscovery$ = StartDeviceDiscovery$;
4112
1566
  exports.StartDeviceDiscoveryCommand = StartDeviceDiscoveryCommand;
4113
- exports.StartDeviceDiscoveryRequest$ = StartDeviceDiscoveryRequest$;
4114
- exports.StartDeviceDiscoveryResponse$ = StartDeviceDiscoveryResponse$;
4115
- exports.StateCapability$ = StateCapability$;
4116
- exports.StateEndpoint$ = StateEndpoint$;
4117
- exports.TagResource$ = TagResource$;
4118
1567
  exports.TagResourceCommand = TagResourceCommand;
4119
- exports.TagResourceRequest$ = TagResourceRequest$;
4120
- exports.TagResourceResponse$ = TagResourceResponse$;
4121
- exports.TaskProcessingDetails$ = TaskProcessingDetails$;
4122
- exports.ThrottlingException = ThrottlingException;
4123
- exports.ThrottlingException$ = ThrottlingException$;
4124
1568
  exports.TokenEndpointAuthenticationScheme = TokenEndpointAuthenticationScheme;
4125
- exports.UnauthorizedException = UnauthorizedException;
4126
- exports.UnauthorizedException$ = UnauthorizedException$;
4127
- exports.UntagResource$ = UntagResource$;
4128
1569
  exports.UntagResourceCommand = UntagResourceCommand;
4129
- exports.UntagResourceRequest$ = UntagResourceRequest$;
4130
- exports.UntagResourceResponse$ = UntagResourceResponse$;
4131
- exports.UpdateAccountAssociation$ = UpdateAccountAssociation$;
4132
1570
  exports.UpdateAccountAssociationCommand = UpdateAccountAssociationCommand;
4133
- exports.UpdateAccountAssociationRequest$ = UpdateAccountAssociationRequest$;
4134
- exports.UpdateCloudConnector$ = UpdateCloudConnector$;
4135
1571
  exports.UpdateCloudConnectorCommand = UpdateCloudConnectorCommand;
4136
- exports.UpdateCloudConnectorRequest$ = UpdateCloudConnectorRequest$;
4137
- exports.UpdateConnectorDestination$ = UpdateConnectorDestination$;
4138
1572
  exports.UpdateConnectorDestinationCommand = UpdateConnectorDestinationCommand;
4139
- exports.UpdateConnectorDestinationRequest$ = UpdateConnectorDestinationRequest$;
4140
- exports.UpdateDestination$ = UpdateDestination$;
4141
1573
  exports.UpdateDestinationCommand = UpdateDestinationCommand;
4142
- exports.UpdateDestinationRequest$ = UpdateDestinationRequest$;
4143
- exports.UpdateEventLogConfiguration$ = UpdateEventLogConfiguration$;
4144
1574
  exports.UpdateEventLogConfigurationCommand = UpdateEventLogConfigurationCommand;
4145
- exports.UpdateEventLogConfigurationRequest$ = UpdateEventLogConfigurationRequest$;
4146
- exports.UpdateManagedThing$ = UpdateManagedThing$;
4147
1575
  exports.UpdateManagedThingCommand = UpdateManagedThingCommand;
4148
- exports.UpdateManagedThingRequest$ = UpdateManagedThingRequest$;
4149
- exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
4150
1576
  exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
4151
- exports.UpdateNotificationConfigurationRequest$ = UpdateNotificationConfigurationRequest$;
4152
- exports.UpdateOtaTask$ = UpdateOtaTask$;
4153
1577
  exports.UpdateOtaTaskCommand = UpdateOtaTaskCommand;
4154
- exports.UpdateOtaTaskRequest$ = UpdateOtaTaskRequest$;
4155
- exports.ValidationException = ValidationException;
4156
- exports.ValidationException$ = ValidationException$;
4157
- exports.WiFiSimpleSetupConfiguration$ = WiFiSimpleSetupConfiguration$;
4158
1578
  exports.paginateListAccountAssociations = paginateListAccountAssociations;
4159
1579
  exports.paginateListCloudConnectors = paginateListCloudConnectors;
4160
1580
  exports.paginateListConnectorDestinations = paginateListConnectorDestinations;
@@ -4172,3 +1592,15 @@ exports.paginateListOtaTaskExecutions = paginateListOtaTaskExecutions;
4172
1592
  exports.paginateListOtaTasks = paginateListOtaTasks;
4173
1593
  exports.paginateListProvisioningProfiles = paginateListProvisioningProfiles;
4174
1594
  exports.paginateListSchemaVersions = paginateListSchemaVersions;
1595
+ Object.keys(schemas_0).forEach(function (k) {
1596
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1597
+ enumerable: true,
1598
+ get: function () { return schemas_0[k]; }
1599
+ });
1600
+ });
1601
+ Object.keys(errors).forEach(function (k) {
1602
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1603
+ enumerable: true,
1604
+ get: function () { return errors[k]; }
1605
+ });
1606
+ });