@aws-sdk/client-iot-managed-integrations 3.1075.0 → 3.1076.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 +2756 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -29
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/IoTManagedIntegrationsServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -173
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2334
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultIoTManagedIntegrationsHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "iotmanagedintegrations",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultIoTManagedIntegrationsHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -29,6 +65,2396 @@ const commonParams = {
|
|
|
29
65
|
Region: { type: "builtInParams", name: "region" },
|
|
30
66
|
};
|
|
31
67
|
|
|
68
|
+
var version = "3.1075.0";
|
|
69
|
+
var packageInfo = {
|
|
70
|
+
version: version};
|
|
71
|
+
|
|
72
|
+
const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
|
|
73
|
+
const _data = {
|
|
74
|
+
conditions: [
|
|
75
|
+
[a, [b]],
|
|
76
|
+
[a, c],
|
|
77
|
+
["aws.partition", c, "PartitionResult"],
|
|
78
|
+
["booleanEquals", [{ ref: "UseFIPS" }, true]]
|
|
79
|
+
],
|
|
80
|
+
results: [
|
|
81
|
+
[-1],
|
|
82
|
+
[-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
83
|
+
[b, {}],
|
|
84
|
+
["https://api.iotmanagedintegrations-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
85
|
+
["https://api.iotmanagedintegrations.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
|
|
86
|
+
[-1, "Invalid Configuration: Missing Region"]
|
|
87
|
+
]
|
|
88
|
+
};
|
|
89
|
+
const root = 2;
|
|
90
|
+
const r = 100_000_000;
|
|
91
|
+
const nodes = new Int32Array([
|
|
92
|
+
-1, 1, -1,
|
|
93
|
+
0, 6, 3,
|
|
94
|
+
1, 4, r + 5,
|
|
95
|
+
2, 5, r + 5,
|
|
96
|
+
3, r + 3, r + 4,
|
|
97
|
+
3, r + 1, r + 2,
|
|
98
|
+
]);
|
|
99
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
100
|
+
|
|
101
|
+
const cache = new EndpointCache({
|
|
102
|
+
size: 50,
|
|
103
|
+
params: ["Endpoint", "Region", "UseFIPS"],
|
|
104
|
+
});
|
|
105
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
106
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
107
|
+
endpointParams: endpointParams,
|
|
108
|
+
logger: context.logger,
|
|
109
|
+
}));
|
|
110
|
+
};
|
|
111
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
112
|
+
|
|
113
|
+
class IoTManagedIntegrationsServiceException extends ServiceException {
|
|
114
|
+
constructor(options) {
|
|
115
|
+
super(options);
|
|
116
|
+
Object.setPrototypeOf(this, IoTManagedIntegrationsServiceException.prototype);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
class AccessDeniedException extends IoTManagedIntegrationsServiceException {
|
|
121
|
+
name = "AccessDeniedException";
|
|
122
|
+
$fault = "client";
|
|
123
|
+
Message;
|
|
124
|
+
constructor(opts) {
|
|
125
|
+
super({
|
|
126
|
+
name: "AccessDeniedException",
|
|
127
|
+
$fault: "client",
|
|
128
|
+
...opts,
|
|
129
|
+
});
|
|
130
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
+
this.Message = opts.Message;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
class ConflictException extends IoTManagedIntegrationsServiceException {
|
|
135
|
+
name = "ConflictException";
|
|
136
|
+
$fault = "client";
|
|
137
|
+
Message;
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "ConflictException",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
145
|
+
this.Message = opts.Message;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
class InternalServerException extends IoTManagedIntegrationsServiceException {
|
|
149
|
+
name = "InternalServerException";
|
|
150
|
+
$fault = "server";
|
|
151
|
+
Message;
|
|
152
|
+
constructor(opts) {
|
|
153
|
+
super({
|
|
154
|
+
name: "InternalServerException",
|
|
155
|
+
$fault: "server",
|
|
156
|
+
...opts,
|
|
157
|
+
});
|
|
158
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
159
|
+
this.Message = opts.Message;
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
class ResourceNotFoundException extends IoTManagedIntegrationsServiceException {
|
|
163
|
+
name = "ResourceNotFoundException";
|
|
164
|
+
$fault = "client";
|
|
165
|
+
Message;
|
|
166
|
+
ResourceId;
|
|
167
|
+
ResourceType;
|
|
168
|
+
constructor(opts) {
|
|
169
|
+
super({
|
|
170
|
+
name: "ResourceNotFoundException",
|
|
171
|
+
$fault: "client",
|
|
172
|
+
...opts,
|
|
173
|
+
});
|
|
174
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
175
|
+
this.Message = opts.Message;
|
|
176
|
+
this.ResourceId = opts.ResourceId;
|
|
177
|
+
this.ResourceType = opts.ResourceType;
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
class ServiceUnavailableException extends IoTManagedIntegrationsServiceException {
|
|
181
|
+
name = "ServiceUnavailableException";
|
|
182
|
+
$fault = "server";
|
|
183
|
+
Message;
|
|
184
|
+
constructor(opts) {
|
|
185
|
+
super({
|
|
186
|
+
name: "ServiceUnavailableException",
|
|
187
|
+
$fault: "server",
|
|
188
|
+
...opts,
|
|
189
|
+
});
|
|
190
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
191
|
+
this.Message = opts.Message;
|
|
192
|
+
}
|
|
193
|
+
}
|
|
194
|
+
class ThrottlingException extends IoTManagedIntegrationsServiceException {
|
|
195
|
+
name = "ThrottlingException";
|
|
196
|
+
$fault = "client";
|
|
197
|
+
Message;
|
|
198
|
+
constructor(opts) {
|
|
199
|
+
super({
|
|
200
|
+
name: "ThrottlingException",
|
|
201
|
+
$fault: "client",
|
|
202
|
+
...opts,
|
|
203
|
+
});
|
|
204
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
205
|
+
this.Message = opts.Message;
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
class UnauthorizedException extends IoTManagedIntegrationsServiceException {
|
|
209
|
+
name = "UnauthorizedException";
|
|
210
|
+
$fault = "client";
|
|
211
|
+
Message;
|
|
212
|
+
constructor(opts) {
|
|
213
|
+
super({
|
|
214
|
+
name: "UnauthorizedException",
|
|
215
|
+
$fault: "client",
|
|
216
|
+
...opts,
|
|
217
|
+
});
|
|
218
|
+
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
219
|
+
this.Message = opts.Message;
|
|
220
|
+
}
|
|
221
|
+
}
|
|
222
|
+
class ValidationException extends IoTManagedIntegrationsServiceException {
|
|
223
|
+
name = "ValidationException";
|
|
224
|
+
$fault = "client";
|
|
225
|
+
Message;
|
|
226
|
+
constructor(opts) {
|
|
227
|
+
super({
|
|
228
|
+
name: "ValidationException",
|
|
229
|
+
$fault: "client",
|
|
230
|
+
...opts,
|
|
231
|
+
});
|
|
232
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
233
|
+
this.Message = opts.Message;
|
|
234
|
+
}
|
|
235
|
+
}
|
|
236
|
+
class ServiceQuotaExceededException extends IoTManagedIntegrationsServiceException {
|
|
237
|
+
name = "ServiceQuotaExceededException";
|
|
238
|
+
$fault = "client";
|
|
239
|
+
Message;
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "ServiceQuotaExceededException",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
247
|
+
this.Message = opts.Message;
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
class LimitExceededException extends IoTManagedIntegrationsServiceException {
|
|
251
|
+
name = "LimitExceededException";
|
|
252
|
+
$fault = "client";
|
|
253
|
+
Message;
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "LimitExceededException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
261
|
+
this.Message = opts.Message;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
class InternalFailureException extends IoTManagedIntegrationsServiceException {
|
|
265
|
+
name = "InternalFailureException";
|
|
266
|
+
$fault = "server";
|
|
267
|
+
Message;
|
|
268
|
+
constructor(opts) {
|
|
269
|
+
super({
|
|
270
|
+
name: "InternalFailureException",
|
|
271
|
+
$fault: "server",
|
|
272
|
+
...opts,
|
|
273
|
+
});
|
|
274
|
+
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
275
|
+
this.Message = opts.Message;
|
|
276
|
+
}
|
|
277
|
+
}
|
|
278
|
+
class InvalidRequestException extends IoTManagedIntegrationsServiceException {
|
|
279
|
+
name = "InvalidRequestException";
|
|
280
|
+
$fault = "client";
|
|
281
|
+
Message;
|
|
282
|
+
constructor(opts) {
|
|
283
|
+
super({
|
|
284
|
+
name: "InvalidRequestException",
|
|
285
|
+
$fault: "client",
|
|
286
|
+
...opts,
|
|
287
|
+
});
|
|
288
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
289
|
+
this.Message = opts.Message;
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
const _A = "Action";
|
|
294
|
+
const _AA = "ActivatedAt";
|
|
295
|
+
const _AAI = "AccountAssociationItem";
|
|
296
|
+
const _AAIc = "AccountAssociationId";
|
|
297
|
+
const _AALD = "AccountAssociationListDefinition";
|
|
298
|
+
const _AC = "AuthConfig";
|
|
299
|
+
const _ACC = "AbortConfigCriteria";
|
|
300
|
+
const _ACCL = "AbortConfigCriteriaList";
|
|
301
|
+
const _ACU = "AuthConfigUpdate";
|
|
302
|
+
const _ACb = "AbortConfig";
|
|
303
|
+
const _ADE = "AccessDeniedException";
|
|
304
|
+
const _AM = "AuthMaterial";
|
|
305
|
+
const _AMN = "AuthMaterialName";
|
|
306
|
+
const _AMS = "AuthMaterialString";
|
|
307
|
+
const _AMT = "AuthenticationMaterialType";
|
|
308
|
+
const _AMTA = "AuthMaterialsToAdd";
|
|
309
|
+
const _AMTU = "AuthMaterialsToUpdate";
|
|
310
|
+
const _AMu = "AuthenticationMaterial";
|
|
311
|
+
const _AMut = "AuthMaterials";
|
|
312
|
+
const _API = "AdvertisedProductId";
|
|
313
|
+
const _AS = "AssociationState";
|
|
314
|
+
const _AT = "AuthType";
|
|
315
|
+
const _Ar = "Arn";
|
|
316
|
+
const _B = "Brand";
|
|
317
|
+
const _BRPM = "BaseRatePerMinute";
|
|
318
|
+
const _C = "Classification";
|
|
319
|
+
const _CA = "CapabilityAction";
|
|
320
|
+
const _CAA = "CreateAccountAssociation";
|
|
321
|
+
const _CAAR = "CreateAccountAssociationRequest";
|
|
322
|
+
const _CAARr = "CreateAccountAssociationResponse";
|
|
323
|
+
const _CAI = "ConnectorAssociationId";
|
|
324
|
+
const _CAIo = "ConnectorAssociationIdentifier";
|
|
325
|
+
const _CAa = "CapabilityActions";
|
|
326
|
+
const _CAr = "CreatedAt";
|
|
327
|
+
const _CC = "CaCertificate";
|
|
328
|
+
const _CCC = "CreateCloudConnector";
|
|
329
|
+
const _CCCR = "CreateCloudConnectorRequest";
|
|
330
|
+
const _CCCRr = "CreateCloudConnectorResponse";
|
|
331
|
+
const _CCD = "CreateConnectorDestination";
|
|
332
|
+
const _CCDR = "CreateConnectorDestinationRequest";
|
|
333
|
+
const _CCDRr = "CreateConnectorDestinationResponse";
|
|
334
|
+
const _CCI = "CloudConnectorId";
|
|
335
|
+
const _CCL = "CreateCredentialLocker";
|
|
336
|
+
const _CCLR = "CreateCredentialLockerRequest";
|
|
337
|
+
const _CCLRr = "CreateCredentialLockerResponse";
|
|
338
|
+
const _CCPK = "ClaimCertificatePrivateKey";
|
|
339
|
+
const _CCl = "ClaimCertificate";
|
|
340
|
+
const _CCo = "CommandCapability";
|
|
341
|
+
const _CCom = "CommandCapabilities";
|
|
342
|
+
const _CD = "CreateDestination";
|
|
343
|
+
const _CDI = "ConnectorDeviceId";
|
|
344
|
+
const _CDIF = "ConnectorDestinationIdFilter";
|
|
345
|
+
const _CDIFo = "ConnectorDeviceIdFilter";
|
|
346
|
+
const _CDIL = "ConnectorDeviceIdList";
|
|
347
|
+
const _CDIo = "ConnectorDestinationId";
|
|
348
|
+
const _CDL = "ConnectorDestinationList";
|
|
349
|
+
const _CDLD = "ConnectorDestinationListDefinition";
|
|
350
|
+
const _CDN = "ConnectorDeviceName";
|
|
351
|
+
const _CDR = "CreateDestinationRequest";
|
|
352
|
+
const _CDRr = "CreateDestinationResponse";
|
|
353
|
+
const _CDS = "ConnectorDestinationSummary";
|
|
354
|
+
const _CE = "ConflictException";
|
|
355
|
+
const _CELC = "CreateEventLogConfiguration";
|
|
356
|
+
const _CELCR = "CreateEventLogConfigurationRequest";
|
|
357
|
+
const _CELCRr = "CreateEventLogConfigurationResponse";
|
|
358
|
+
const _CEM = "ConnectorEventMessage";
|
|
359
|
+
const _CEo = "CommandEndpoint";
|
|
360
|
+
const _CEom = "CommandEndpoints";
|
|
361
|
+
const _CEon = "ConfigurationError";
|
|
362
|
+
const _CI = "CapabilityId";
|
|
363
|
+
const _CIF = "CapabilityIdFilter";
|
|
364
|
+
const _CIo = "ConnectorItem";
|
|
365
|
+
const _CIon = "ControllerId";
|
|
366
|
+
const _CIonn = "ConnectorId";
|
|
367
|
+
const _CIont = "ControllerIdentifier";
|
|
368
|
+
const _CL = "ConnectorList";
|
|
369
|
+
const _CLF = "CredentialLockerFilter";
|
|
370
|
+
const _CLI = "CredentialLockerId";
|
|
371
|
+
const _CLLD = "CredentialLockerListDefinition";
|
|
372
|
+
const _CLN = "CredentialLockerName";
|
|
373
|
+
const _CLS = "CredentialLockerSummary";
|
|
374
|
+
const _CMT = "CreateManagedThing";
|
|
375
|
+
const _CMTR = "CreateManagedThingRequest";
|
|
376
|
+
const _CMTRr = "CreateManagedThingResponse";
|
|
377
|
+
const _CNC = "CreateNotificationConfiguration";
|
|
378
|
+
const _CNCR = "CreateNotificationConfigurationRequest";
|
|
379
|
+
const _CNCRr = "CreateNotificationConfigurationResponse";
|
|
380
|
+
const _COT = "CreateOtaTask";
|
|
381
|
+
const _COTC = "CreateOtaTaskConfiguration";
|
|
382
|
+
const _COTCR = "CreateOtaTaskConfigurationRequest";
|
|
383
|
+
const _COTCRr = "CreateOtaTaskConfigurationResponse";
|
|
384
|
+
const _COTR = "CreateOtaTaskRequest";
|
|
385
|
+
const _COTRr = "CreateOtaTaskResponse";
|
|
386
|
+
const _CP = "CapabilityProperties";
|
|
387
|
+
const _CPD = "CustomProtocolDetail";
|
|
388
|
+
const _CPI = "ConnectorPolicyId";
|
|
389
|
+
const _CPIF = "ConnectorPolicyIdFilter";
|
|
390
|
+
const _CPP = "CreateProvisioningProfile";
|
|
391
|
+
const _CPPR = "CreateProvisioningProfileRequest";
|
|
392
|
+
const _CPPRr = "CreateProvisioningProfileResponse";
|
|
393
|
+
const _CPe = "CertificatePem";
|
|
394
|
+
const _CR = "CapabilityReport";
|
|
395
|
+
const _CRC = "CapabilityReportCapability";
|
|
396
|
+
const _CRCa = "CapabilityReportCapabilities";
|
|
397
|
+
const _CRE = "CapabilityReportEndpoint";
|
|
398
|
+
const _CREa = "CapabilityReportEndpoints";
|
|
399
|
+
const _CS = "ConfigurationStatus";
|
|
400
|
+
const _CSI = "CapabilitySchemaItem";
|
|
401
|
+
const _CSa = "CapabilitySchemas";
|
|
402
|
+
const _CT = "ClientToken";
|
|
403
|
+
const _Ca = "Capabilities";
|
|
404
|
+
const _Co = "Connected";
|
|
405
|
+
const _D = "Description";
|
|
406
|
+
const _DA = "DiscoveredAt";
|
|
407
|
+
const _DAA = "DeleteAccountAssociation";
|
|
408
|
+
const _DAAR = "DeleteAccountAssociationRequest";
|
|
409
|
+
const _DAARe = "DeregisterAccountAssociationRequest";
|
|
410
|
+
const _DAAe = "DeregisterAccountAssociation";
|
|
411
|
+
const _DAMS = "DiscoveryAuthMaterialString";
|
|
412
|
+
const _DBR = "DaysBeforeRenewal";
|
|
413
|
+
const _DCC = "DeleteCloudConnector";
|
|
414
|
+
const _DCCR = "DeleteCloudConnectorRequest";
|
|
415
|
+
const _DCD = "DeleteConnectorDestination";
|
|
416
|
+
const _DCDR = "DeleteConnectorDestinationRequest";
|
|
417
|
+
const _DCL = "DeleteCredentialLocker";
|
|
418
|
+
const _DCLR = "DeleteCredentialLockerRequest";
|
|
419
|
+
const _DD = "DeleteDestination";
|
|
420
|
+
const _DDA = "DeliveryDestinationArn";
|
|
421
|
+
const _DDI = "DeviceDiscoveryId";
|
|
422
|
+
const _DDLD = "DeviceDiscoveryListDefinition";
|
|
423
|
+
const _DDLDi = "DiscoveredDeviceListDefinition";
|
|
424
|
+
const _DDR = "DeleteDestinationRequest";
|
|
425
|
+
const _DDS = "DeviceDiscoverySummary";
|
|
426
|
+
const _DDSi = "DiscoveredDeviceSummary";
|
|
427
|
+
const _DDT = "DeliveryDestinationType";
|
|
428
|
+
const _DELC = "DeleteEventLogConfiguration";
|
|
429
|
+
const _DELCR = "DeleteEventLogConfigurationRequest";
|
|
430
|
+
const _DIM = "DurationInMinutes";
|
|
431
|
+
const _DL = "DestinationList";
|
|
432
|
+
const _DLD = "DestinationListDefinition";
|
|
433
|
+
const _DLSAU = "DeleteLocalStoreAfterUpload";
|
|
434
|
+
const _DM = "DeviceMetadata";
|
|
435
|
+
const _DMT = "DeleteManagedThing";
|
|
436
|
+
const _DMTR = "DeleteManagedThingRequest";
|
|
437
|
+
const _DN = "DestinationName";
|
|
438
|
+
const _DNC = "DeleteNotificationConfiguration";
|
|
439
|
+
const _DNCR = "DeleteNotificationConfigurationRequest";
|
|
440
|
+
const _DOT = "DeleteOtaTask";
|
|
441
|
+
const _DOTC = "DeleteOtaTaskConfiguration";
|
|
442
|
+
const _DOTCR = "DeleteOtaTaskConfigurationRequest";
|
|
443
|
+
const _DOTR = "DeleteOtaTaskRequest";
|
|
444
|
+
const _DPP = "DeleteProvisioningProfile";
|
|
445
|
+
const _DPPR = "DeleteProvisioningProfileRequest";
|
|
446
|
+
const _DR = "DisconnectReason";
|
|
447
|
+
const _DS = "DestinationSummary";
|
|
448
|
+
const _DSK = "DeviceSpecificKey";
|
|
449
|
+
const _DT = "DiscoveryType";
|
|
450
|
+
const _DTe = "DeviceTypes";
|
|
451
|
+
const _De = "Device";
|
|
452
|
+
const _Dev = "Devices";
|
|
453
|
+
const _E = "Endpoints";
|
|
454
|
+
const _EA = "EndpointAddress";
|
|
455
|
+
const _EAP = "EnableAsProvisioner";
|
|
456
|
+
const _EAPn = "EnableAsProvisionee";
|
|
457
|
+
const _EB = "EndBehavior";
|
|
458
|
+
const _EC = "EndpointConfig";
|
|
459
|
+
const _EDI = "EndDeviceIdentifier";
|
|
460
|
+
const _EI = "ExtrinsicId";
|
|
461
|
+
const _EIF = "EndpointIdFilter";
|
|
462
|
+
const _EIn = "EndpointId";
|
|
463
|
+
const _ELCL = "EventLogConfigurationList";
|
|
464
|
+
const _ELCLD = "EventLogConfigurationListDefinition";
|
|
465
|
+
const _ELCS = "EventLogConfigurationSummary";
|
|
466
|
+
const _ELL = "EventLogLevel";
|
|
467
|
+
const _EM = "ErrorMessage";
|
|
468
|
+
const _EN = "ExecutionNumber";
|
|
469
|
+
const _ERR = "ExponentialRolloutRate";
|
|
470
|
+
const _ES = "ExecutionSummaries";
|
|
471
|
+
const _ET = "EndpointType";
|
|
472
|
+
const _ETn = "EndTime";
|
|
473
|
+
const _ETv = "EventType";
|
|
474
|
+
const _EV = "ExtrinsicVersion";
|
|
475
|
+
const _F = "Format";
|
|
476
|
+
const _FA = "FinishedAt";
|
|
477
|
+
const _FT = "FailureType";
|
|
478
|
+
const _Fo = "Force";
|
|
479
|
+
const _GA = "GeneralAuthorization";
|
|
480
|
+
const _GAA = "GetAccountAssociation";
|
|
481
|
+
const _GAAR = "GetAccountAssociationRequest";
|
|
482
|
+
const _GAARe = "GetAccountAssociationResponse";
|
|
483
|
+
const _GAN = "GeneralAuthorizationName";
|
|
484
|
+
const _GAU = "GeneralAuthorizationUpdate";
|
|
485
|
+
const _GCC = "GetCloudConnector";
|
|
486
|
+
const _GCCR = "GetCloudConnectorRequest";
|
|
487
|
+
const _GCCRe = "GetCloudConnectorResponse";
|
|
488
|
+
const _GCD = "GetConnectorDestination";
|
|
489
|
+
const _GCDR = "GetConnectorDestinationRequest";
|
|
490
|
+
const _GCDRe = "GetConnectorDestinationResponse";
|
|
491
|
+
const _GCE = "GetCustomEndpoint";
|
|
492
|
+
const _GCER = "GetCustomEndpointRequest";
|
|
493
|
+
const _GCERe = "GetCustomEndpointResponse";
|
|
494
|
+
const _GCL = "GetCredentialLocker";
|
|
495
|
+
const _GCLR = "GetCredentialLockerRequest";
|
|
496
|
+
const _GCLRe = "GetCredentialLockerResponse";
|
|
497
|
+
const _GD = "GetDestination";
|
|
498
|
+
const _GDD = "GetDeviceDiscovery";
|
|
499
|
+
const _GDDR = "GetDeviceDiscoveryRequest";
|
|
500
|
+
const _GDDRe = "GetDeviceDiscoveryResponse";
|
|
501
|
+
const _GDEC = "GetDefaultEncryptionConfiguration";
|
|
502
|
+
const _GDECR = "GetDefaultEncryptionConfigurationRequest";
|
|
503
|
+
const _GDECRe = "GetDefaultEncryptionConfigurationResponse";
|
|
504
|
+
const _GDR = "GetDestinationRequest";
|
|
505
|
+
const _GDRe = "GetDestinationResponse";
|
|
506
|
+
const _GELC = "GetEventLogConfiguration";
|
|
507
|
+
const _GELCR = "GetEventLogConfigurationRequest";
|
|
508
|
+
const _GELCRe = "GetEventLogConfigurationResponse";
|
|
509
|
+
const _GHC = "GetHubConfiguration";
|
|
510
|
+
const _GHCR = "GetHubConfigurationRequest";
|
|
511
|
+
const _GHCRe = "GetHubConfigurationResponse";
|
|
512
|
+
const _GMT = "GetManagedThing";
|
|
513
|
+
const _GMTC = "GetManagedThingCapabilities";
|
|
514
|
+
const _GMTCD = "GetManagedThingConnectivityData";
|
|
515
|
+
const _GMTCDR = "GetManagedThingConnectivityDataRequest";
|
|
516
|
+
const _GMTCDRe = "GetManagedThingConnectivityDataResponse";
|
|
517
|
+
const _GMTCR = "GetManagedThingCapabilitiesRequest";
|
|
518
|
+
const _GMTCRe = "GetManagedThingCapabilitiesResponse";
|
|
519
|
+
const _GMTCRet = "GetManagedThingCertificateRequest";
|
|
520
|
+
const _GMTCReta = "GetManagedThingCertificateResponse";
|
|
521
|
+
const _GMTCe = "GetManagedThingCertificate";
|
|
522
|
+
const _GMTMD = "GetManagedThingMetaData";
|
|
523
|
+
const _GMTMDR = "GetManagedThingMetaDataRequest";
|
|
524
|
+
const _GMTMDRe = "GetManagedThingMetaDataResponse";
|
|
525
|
+
const _GMTR = "GetManagedThingRequest";
|
|
526
|
+
const _GMTRe = "GetManagedThingResponse";
|
|
527
|
+
const _GMTS = "GetManagedThingState";
|
|
528
|
+
const _GMTSR = "GetManagedThingStateRequest";
|
|
529
|
+
const _GMTSRe = "GetManagedThingStateResponse";
|
|
530
|
+
const _GNC = "GetNotificationConfiguration";
|
|
531
|
+
const _GNCR = "GetNotificationConfigurationRequest";
|
|
532
|
+
const _GNCRe = "GetNotificationConfigurationResponse";
|
|
533
|
+
const _GOT = "GetOtaTask";
|
|
534
|
+
const _GOTC = "GetOtaTaskConfiguration";
|
|
535
|
+
const _GOTCR = "GetOtaTaskConfigurationRequest";
|
|
536
|
+
const _GOTCRe = "GetOtaTaskConfigurationResponse";
|
|
537
|
+
const _GOTR = "GetOtaTaskRequest";
|
|
538
|
+
const _GOTRe = "GetOtaTaskResponse";
|
|
539
|
+
const _GPP = "GetProvisioningProfile";
|
|
540
|
+
const _GPPR = "GetProvisioningProfileRequest";
|
|
541
|
+
const _GPPRe = "GetProvisioningProfileResponse";
|
|
542
|
+
const _GRLC = "GetRuntimeLogConfiguration";
|
|
543
|
+
const _GRLCR = "GetRuntimeLogConfigurationRequest";
|
|
544
|
+
const _GRLCRe = "GetRuntimeLogConfigurationResponse";
|
|
545
|
+
const _GSV = "GetSchemaVersion";
|
|
546
|
+
const _GSVR = "GetSchemaVersionRequest";
|
|
547
|
+
const _GSVRe = "GetSchemaVersionResponse";
|
|
548
|
+
const _HNM = "HubNetworkMode";
|
|
549
|
+
const _HTTESIS = "HubTokenTimerExpirySettingInSeconds";
|
|
550
|
+
const _I = "Id";
|
|
551
|
+
const _IAN = "InternationalArticleNumber";
|
|
552
|
+
const _IF = "IncrementFactor";
|
|
553
|
+
const _IFE = "InternalFailureException";
|
|
554
|
+
const _IPTIM = "InProgressTimeoutInMinutes";
|
|
555
|
+
const _IRE = "InvalidRequestException";
|
|
556
|
+
const _ISE = "InternalServerException";
|
|
557
|
+
const _Id = "Identifier";
|
|
558
|
+
const _It = "Items";
|
|
559
|
+
const _LA = "LambdaArn";
|
|
560
|
+
const _LAA = "ListAccountAssociations";
|
|
561
|
+
const _LAAR = "ListAccountAssociationsRequest";
|
|
562
|
+
const _LAARi = "ListAccountAssociationsResponse";
|
|
563
|
+
const _LC = "LambdaConfig";
|
|
564
|
+
const _LCC = "ListCloudConnectors";
|
|
565
|
+
const _LCCR = "ListCloudConnectorsRequest";
|
|
566
|
+
const _LCCRi = "ListCloudConnectorsResponse";
|
|
567
|
+
const _LCD = "ListConnectorDestinations";
|
|
568
|
+
const _LCDR = "ListConnectorDestinationsRequest";
|
|
569
|
+
const _LCDRi = "ListConnectorDestinationsResponse";
|
|
570
|
+
const _LCL = "ListCredentialLockers";
|
|
571
|
+
const _LCLR = "ListCredentialLockersRequest";
|
|
572
|
+
const _LCLRi = "ListCredentialLockersResponse";
|
|
573
|
+
const _LD = "ListDestinations";
|
|
574
|
+
const _LDD = "ListDeviceDiscoveries";
|
|
575
|
+
const _LDDR = "ListDeviceDiscoveriesRequest";
|
|
576
|
+
const _LDDRi = "ListDeviceDiscoveriesResponse";
|
|
577
|
+
const _LDDRis = "ListDiscoveredDevicesRequest";
|
|
578
|
+
const _LDDRist = "ListDiscoveredDevicesResponse";
|
|
579
|
+
const _LDDi = "ListDiscoveredDevices";
|
|
580
|
+
const _LDR = "ListDestinationsRequest";
|
|
581
|
+
const _LDRi = "ListDestinationsResponse";
|
|
582
|
+
const _LEE = "LimitExceededException";
|
|
583
|
+
const _LELC = "ListEventLogConfigurations";
|
|
584
|
+
const _LELCR = "ListEventLogConfigurationsRequest";
|
|
585
|
+
const _LELCRi = "ListEventLogConfigurationsResponse";
|
|
586
|
+
const _LFL = "LogFlushLevel";
|
|
587
|
+
const _LL = "LogLevel";
|
|
588
|
+
const _LMT = "ListManagedThings";
|
|
589
|
+
const _LMTAA = "ListManagedThingAccountAssociations";
|
|
590
|
+
const _LMTAAR = "ListManagedThingAccountAssociationsRequest";
|
|
591
|
+
const _LMTAARi = "ListManagedThingAccountAssociationsResponse";
|
|
592
|
+
const _LMTR = "ListManagedThingsRequest";
|
|
593
|
+
const _LMTRi = "ListManagedThingsResponse";
|
|
594
|
+
const _LMTS = "ListManagedThingSchemas";
|
|
595
|
+
const _LMTSR = "ListManagedThingSchemasRequest";
|
|
596
|
+
const _LMTSRi = "ListManagedThingSchemasResponse";
|
|
597
|
+
const _LNC = "ListNotificationConfigurations";
|
|
598
|
+
const _LNCR = "ListNotificationConfigurationsRequest";
|
|
599
|
+
const _LNCRi = "ListNotificationConfigurationsResponse";
|
|
600
|
+
const _LOT = "ListOtaTasks";
|
|
601
|
+
const _LOTC = "ListOtaTaskConfigurations";
|
|
602
|
+
const _LOTCR = "ListOtaTaskConfigurationsRequest";
|
|
603
|
+
const _LOTCRi = "ListOtaTaskConfigurationsResponse";
|
|
604
|
+
const _LOTE = "ListOtaTaskExecutions";
|
|
605
|
+
const _LOTER = "ListOtaTaskExecutionsRequest";
|
|
606
|
+
const _LOTERi = "ListOtaTaskExecutionsResponse";
|
|
607
|
+
const _LOTR = "ListOtaTasksRequest";
|
|
608
|
+
const _LOTRi = "ListOtaTasksResponse";
|
|
609
|
+
const _LPP = "ListProvisioningProfiles";
|
|
610
|
+
const _LPPR = "ListProvisioningProfilesRequest";
|
|
611
|
+
const _LPPRi = "ListProvisioningProfilesResponse";
|
|
612
|
+
const _LSFRMB = "LocalStoreFileRotationMaxBytes";
|
|
613
|
+
const _LSFRMF = "LocalStoreFileRotationMaxFiles";
|
|
614
|
+
const _LSL = "LocalStoreLocation";
|
|
615
|
+
const _LSV = "ListSchemaVersions";
|
|
616
|
+
const _LSVR = "ListSchemaVersionsRequest";
|
|
617
|
+
const _LSVRi = "ListSchemaVersionsResponse";
|
|
618
|
+
const _LTFR = "ListTagsForResource";
|
|
619
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
620
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
621
|
+
const _LUA = "LastUpdatedAt";
|
|
622
|
+
const _M = "Message";
|
|
623
|
+
const _MA = "MacAddress";
|
|
624
|
+
const _MAa = "MatterAttributes";
|
|
625
|
+
const _MC = "MatterCluster";
|
|
626
|
+
const _MCR = "MatterCapabilityReport";
|
|
627
|
+
const _MCRA = "MatterCapabilityReportAttribute";
|
|
628
|
+
const _MCRAa = "MatterCapabilityReportAttributes";
|
|
629
|
+
const _MCRC = "MatterCapabilityReportCluster";
|
|
630
|
+
const _MCRCa = "MatterCapabilityReportClusters";
|
|
631
|
+
const _MCRE = "MatterCapabilityReportEndpoint";
|
|
632
|
+
const _MCREa = "MatterCapabilityReportEndpoints";
|
|
633
|
+
const _MCa = "MatterClusters";
|
|
634
|
+
const _MCat = "MatterCommands";
|
|
635
|
+
const _MD = "MetaData";
|
|
636
|
+
const _ME = "MatterEndpoint";
|
|
637
|
+
const _MEa = "MatterEvents";
|
|
638
|
+
const _MF = "MatterFields";
|
|
639
|
+
const _MNOET = "MinNumberOfExecutedThings";
|
|
640
|
+
const _MNOR = "MinNumberOfRetries";
|
|
641
|
+
const _MPM = "MaximumPerMinute";
|
|
642
|
+
const _MR = "MaxResults";
|
|
643
|
+
const _MTA = "ManagedThingAssociation";
|
|
644
|
+
const _MTAL = "ManagedThingAssociationList";
|
|
645
|
+
const _MTAS = "ManagedThingAssociationStatus";
|
|
646
|
+
const _MTI = "ManagedThingId";
|
|
647
|
+
const _MTLD = "ManagedThingListDefinition";
|
|
648
|
+
const _MTS = "ManagedThingSummary";
|
|
649
|
+
const _MTSLD = "ManagedThingSchemaListDefinition";
|
|
650
|
+
const _MTSLI = "ManagedThingSchemaListItem";
|
|
651
|
+
const _MW = "MaintenanceWindows";
|
|
652
|
+
const _Mo = "Model";
|
|
653
|
+
const _Mod = "Modification";
|
|
654
|
+
const _N = "Name";
|
|
655
|
+
const _NCL = "NotificationConfigurationList";
|
|
656
|
+
const _NCLD = "NotificationConfigurationListDefinition";
|
|
657
|
+
const _NCS = "NotificationConfigurationSummary";
|
|
658
|
+
const _NF = "NamespaceFilter";
|
|
659
|
+
const _NOCT = "NumberOfCanceledThings";
|
|
660
|
+
const _NOFT = "NumberOfFailedThings";
|
|
661
|
+
const _NOIPT = "NumberOfInProgressThings";
|
|
662
|
+
const _NT = "NextToken";
|
|
663
|
+
const _Na = "Namespace";
|
|
664
|
+
const _O = "Owner";
|
|
665
|
+
const _OAAU = "OAuthAuthorizationUrl";
|
|
666
|
+
const _OAAUO = "OAuthAuthorizationUrlOutput";
|
|
667
|
+
const _OAC = "OAuthConfig";
|
|
668
|
+
const _OACRU = "OAuthCompleteRedirectUrl";
|
|
669
|
+
const _OAU = "OAuthUpdate";
|
|
670
|
+
const _OF = "OwnerFilter";
|
|
671
|
+
const _OM = "OtaMechanism";
|
|
672
|
+
const _OSC = "OtaSchedulingConfig";
|
|
673
|
+
const _OT = "OtaType";
|
|
674
|
+
const _OTAC = "OtaTaskAbortConfig";
|
|
675
|
+
const _OTCLD = "OtaTaskConfigurationListDefinition";
|
|
676
|
+
const _OTCN = "OtaTaskConfigurationName";
|
|
677
|
+
const _OTCS = "OtaTaskConfigurationSummary";
|
|
678
|
+
const _OTERC = "OtaTaskExecutionRetryConfig";
|
|
679
|
+
const _OTERCt = "OtaTaskExecutionRolloutConfig";
|
|
680
|
+
const _OTES = "OtaTaskExecutionSummaries";
|
|
681
|
+
const _OTESLD = "OtaTaskExecutionSummariesListDefinition";
|
|
682
|
+
const _OTESt = "OtaTaskExecutionSummary";
|
|
683
|
+
const _OTLD = "OtaTaskListDefinition";
|
|
684
|
+
const _OTQS = "OtaTargetQueryString";
|
|
685
|
+
const _OTS = "OtaTaskSummary";
|
|
686
|
+
const _OTSC = "OtaTaskSchedulingConfig";
|
|
687
|
+
const _OTTC = "OtaTaskTimeoutConfig";
|
|
688
|
+
const _OV = "OperationVersion";
|
|
689
|
+
const _Op = "Operation";
|
|
690
|
+
const _P = "Protocol";
|
|
691
|
+
const _PC = "PushConfig";
|
|
692
|
+
const _PCI = "ParentControllerId";
|
|
693
|
+
const _PCIF = "ParentControllerIdentifierFilter";
|
|
694
|
+
const _PDEC = "PutDefaultEncryptionConfiguration";
|
|
695
|
+
const _PDECR = "PutDefaultEncryptionConfigurationRequest";
|
|
696
|
+
const _PDECRu = "PutDefaultEncryptionConfigurationResponse";
|
|
697
|
+
const _PHC = "PutHubConfiguration";
|
|
698
|
+
const _PHCR = "PutHubConfigurationRequest";
|
|
699
|
+
const _PHCRu = "PutHubConfigurationResponse";
|
|
700
|
+
const _PPLD = "ProvisioningProfileListDefinition";
|
|
701
|
+
const _PPS = "ProvisioningProfileSummary";
|
|
702
|
+
const _PRLC = "PutRuntimeLogConfiguration";
|
|
703
|
+
const _PRLCR = "PutRuntimeLogConfigurationRequest";
|
|
704
|
+
const _PRTR = "ProactiveRefreshTokenRenewal";
|
|
705
|
+
const _PS = "ProvisioningStatus";
|
|
706
|
+
const _PSF = "ProvisioningStatusFilter";
|
|
707
|
+
const _PT = "ProvisioningType";
|
|
708
|
+
const _QA = "QueuedAt";
|
|
709
|
+
const _R = "Role";
|
|
710
|
+
const _RA = "RoleArn";
|
|
711
|
+
const _RAA = "RegisterAccountAssociation";
|
|
712
|
+
const _RAAR = "RegisterAccountAssociationRequest";
|
|
713
|
+
const _RAARe = "RegisterAccountAssociationResponse";
|
|
714
|
+
const _RAe = "ResourceArn";
|
|
715
|
+
const _RAet = "RetryAttempt";
|
|
716
|
+
const _RC = "RolloutConfig";
|
|
717
|
+
const _RCC = "RetryConfigCriteria";
|
|
718
|
+
const _RCCL = "RetryConfigCriteriaList";
|
|
719
|
+
const _RCE = "RegisterCustomEndpoint";
|
|
720
|
+
const _RCER = "RegisterCustomEndpointRequest";
|
|
721
|
+
const _RCERe = "RegisterCustomEndpointResponse";
|
|
722
|
+
const _RF = "RoleFilter";
|
|
723
|
+
const _RI = "ResourceId";
|
|
724
|
+
const _RIC = "RateIncreaseCriteria";
|
|
725
|
+
const _RLC = "RuntimeLogConfigurations";
|
|
726
|
+
const _RNFE = "ResourceNotFoundException";
|
|
727
|
+
const _RRIC = "RolloutRateIncreaseCriteria";
|
|
728
|
+
const _RRLC = "ResetRuntimeLogConfiguration";
|
|
729
|
+
const _RRLCR = "ResetRuntimeLogConfigurationRequest";
|
|
730
|
+
const _RT = "ResourceType";
|
|
731
|
+
const _S = "Schema";
|
|
732
|
+
const _SA = "StartedAt";
|
|
733
|
+
const _SAAR = "StartAccountAssociationRefresh";
|
|
734
|
+
const _SAARR = "StartAccountAssociationRefreshRequest";
|
|
735
|
+
const _SAARRt = "StartAccountAssociationRefreshResponse";
|
|
736
|
+
const _SC = "StatusCode";
|
|
737
|
+
const _SCE = "SendConnectorEvent";
|
|
738
|
+
const _SCER = "SendConnectorEventRequest";
|
|
739
|
+
const _SCERe = "SendConnectorEventResponse";
|
|
740
|
+
const _SCt = "StateCapability";
|
|
741
|
+
const _SCta = "StateCapabilities";
|
|
742
|
+
const _SDD = "StartDeviceDiscovery";
|
|
743
|
+
const _SDDR = "StartDeviceDiscoveryRequest";
|
|
744
|
+
const _SDDRt = "StartDeviceDiscoveryResponse";
|
|
745
|
+
const _SE = "StateEndpoint";
|
|
746
|
+
const _SEt = "StateEndpoints";
|
|
747
|
+
const _SF = "StatusFilter";
|
|
748
|
+
const _SI = "SchemaId";
|
|
749
|
+
const _SIF = "SchemaIdFilter";
|
|
750
|
+
const _SM = "SecretsManager";
|
|
751
|
+
const _SMTC = "SendManagedThingCommand";
|
|
752
|
+
const _SMTCR = "SendManagedThingCommandRequest";
|
|
753
|
+
const _SMTCRe = "SendManagedThingCommandResponse";
|
|
754
|
+
const _SMW = "ScheduleMaintenanceWindow";
|
|
755
|
+
const _SMWL = "ScheduleMaintenanceWindowList";
|
|
756
|
+
const _SN = "SerialNumber";
|
|
757
|
+
const _SNF = "SerialNumberFilter";
|
|
758
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
759
|
+
const _ST = "StartTime";
|
|
760
|
+
const _SU = "S3Url";
|
|
761
|
+
const _SUE = "ServiceUnavailableException";
|
|
762
|
+
const _SV = "SemanticVersion";
|
|
763
|
+
const _SVF = "SemanticVersionFilter";
|
|
764
|
+
const _SVI = "SchemaVersionedId";
|
|
765
|
+
const _SVL = "SchemaVersionList";
|
|
766
|
+
const _SVLI = "SchemaVersionListItem";
|
|
767
|
+
const _St = "Status";
|
|
768
|
+
const _T = "Type";
|
|
769
|
+
const _TA = "TaskArn";
|
|
770
|
+
const _TC = "TimeoutConfig";
|
|
771
|
+
const _TCI = "TaskConfigurationId";
|
|
772
|
+
const _TE = "ThrottlingException";
|
|
773
|
+
const _TES = "TaskExecutionSummary";
|
|
774
|
+
const _TF = "TypeFilter";
|
|
775
|
+
const _TI = "TaskId";
|
|
776
|
+
const _TIM = "TimeoutInMinutes";
|
|
777
|
+
const _TIr = "TraceId";
|
|
778
|
+
const _TK = "TagKeys";
|
|
779
|
+
const _TM = "TagsMap";
|
|
780
|
+
const _TP = "ThresholdPercentage";
|
|
781
|
+
const _TPD = "TaskProcessingDetails";
|
|
782
|
+
const _TPUI = "ThirdPartyUserId";
|
|
783
|
+
const _TR = "TagResource";
|
|
784
|
+
const _TRR = "TagResourceRequest";
|
|
785
|
+
const _TRRa = "TagResourceResponse";
|
|
786
|
+
const _Ta = "Tags";
|
|
787
|
+
const _Tar = "Target";
|
|
788
|
+
const _Tas = "Tasks";
|
|
789
|
+
const _Ti = "Timestamp";
|
|
790
|
+
const _UA = "UpdatedAt";
|
|
791
|
+
const _UAA = "UpdateAccountAssociation";
|
|
792
|
+
const _UAAR = "UpdateAccountAssociationRequest";
|
|
793
|
+
const _UCC = "UpdateCloudConnector";
|
|
794
|
+
const _UCCR = "UpdateCloudConnectorRequest";
|
|
795
|
+
const _UCD = "UpdateConnectorDestination";
|
|
796
|
+
const _UCDR = "UpdateConnectorDestinationRequest";
|
|
797
|
+
const _UD = "UpdateDestination";
|
|
798
|
+
const _UDR = "UpdateDestinationRequest";
|
|
799
|
+
const _UE = "UnauthorizedException";
|
|
800
|
+
const _UELC = "UpdateEventLogConfiguration";
|
|
801
|
+
const _UELCR = "UpdateEventLogConfigurationRequest";
|
|
802
|
+
const _UI = "UserId";
|
|
803
|
+
const _UL = "UploadLog";
|
|
804
|
+
const _UMT = "UpdateManagedThing";
|
|
805
|
+
const _UMTR = "UpdateManagedThingRequest";
|
|
806
|
+
const _UNC = "UpdateNotificationConfiguration";
|
|
807
|
+
const _UNCR = "UpdateNotificationConfigurationRequest";
|
|
808
|
+
const _UOT = "UpdateOtaTask";
|
|
809
|
+
const _UOTR = "UpdateOtaTaskRequest";
|
|
810
|
+
const _UPC = "UniversalProductCode";
|
|
811
|
+
const _UPM = "UploadPeriodMinutes";
|
|
812
|
+
const _UR = "UntagResource";
|
|
813
|
+
const _URR = "UntagResourceRequest";
|
|
814
|
+
const _URRn = "UntagResourceResponse";
|
|
815
|
+
const _V = "Visibility";
|
|
816
|
+
const _VE = "ValidationException";
|
|
817
|
+
const _VF = "VisibilityFilter";
|
|
818
|
+
const _WFSSC = "WiFiSimpleSetupConfiguration";
|
|
819
|
+
const _a = "actions";
|
|
820
|
+
const _aTI = "actionTraceId";
|
|
821
|
+
const _aU = "authUrl";
|
|
822
|
+
const _ar = "arn";
|
|
823
|
+
const _at = "attributes";
|
|
824
|
+
const _c = "client";
|
|
825
|
+
const _cC = "clientClusters";
|
|
826
|
+
const _cS = "configurationStatus";
|
|
827
|
+
const _ca = "capabilities";
|
|
828
|
+
const _cl = "clusters";
|
|
829
|
+
const _co = "code";
|
|
830
|
+
const _com = "commands";
|
|
831
|
+
const _dT = "deviceTypes";
|
|
832
|
+
const _e = "error";
|
|
833
|
+
const _eI = "endpointId";
|
|
834
|
+
const _eT = "encryptionType";
|
|
835
|
+
const _en = "endpoints";
|
|
836
|
+
const _ena = "enabled";
|
|
837
|
+
const _ev = "events";
|
|
838
|
+
const _fI = "fabricIndex";
|
|
839
|
+
const _fM = "featureMap";
|
|
840
|
+
const _gC = "generatedCommands";
|
|
841
|
+
const _h = "http";
|
|
842
|
+
const _hE = "httpError";
|
|
843
|
+
const _hQ = "httpQuery";
|
|
844
|
+
const _i = "id";
|
|
845
|
+
const _kKA = "kmsKeyArn";
|
|
846
|
+
const _l = "lambda";
|
|
847
|
+
const _m = "message";
|
|
848
|
+
const _n = "name";
|
|
849
|
+
const _nI = "nodeId";
|
|
850
|
+
const _nONT = "numberOfNotifiedThings";
|
|
851
|
+
const _nOQT = "numberOfQueuedThings";
|
|
852
|
+
const _nORT = "numberOfRejectedThings";
|
|
853
|
+
const _nORTu = "numberOfRemovedThings";
|
|
854
|
+
const _nOST = "numberOfSucceededThings";
|
|
855
|
+
const _nOTOT = "numberOfTimedOutThings";
|
|
856
|
+
const _oA = "oAuth";
|
|
857
|
+
const _oACRU = "oAuthCompleteRedirectUrl";
|
|
858
|
+
const _oAU = "oAuthUpdate";
|
|
859
|
+
const _p = "parameters";
|
|
860
|
+
const _pI = "publicId";
|
|
861
|
+
const _pRTR = "proactiveRefreshTokenRenewal";
|
|
862
|
+
const _pT = "processingTargets";
|
|
863
|
+
const _pa = "parts";
|
|
864
|
+
const _pr = "properties";
|
|
865
|
+
const _r = "ref";
|
|
866
|
+
const _re = "revision";
|
|
867
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.iotmanagedintegrations";
|
|
868
|
+
const _sT = "semanticTags";
|
|
869
|
+
const _sV = "specVersion";
|
|
870
|
+
const _sc = "scope";
|
|
871
|
+
const _se = "server";
|
|
872
|
+
const _st = "state";
|
|
873
|
+
const _t = "tags";
|
|
874
|
+
const _tEAS = "tokenEndpointAuthenticationScheme";
|
|
875
|
+
const _tK = "tagKeys";
|
|
876
|
+
const _tU = "tokenUrl";
|
|
877
|
+
const _v = "version";
|
|
878
|
+
const _vI = "versionId";
|
|
879
|
+
const _va = "value";
|
|
880
|
+
const n0 = "com.amazonaws.iotmanagedintegrations";
|
|
881
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
882
|
+
var IoTManagedIntegrationsServiceException$ = [-3, _s, "IoTManagedIntegrationsServiceException", 0, [], []];
|
|
883
|
+
_s_registry.registerError(IoTManagedIntegrationsServiceException$, IoTManagedIntegrationsServiceException);
|
|
884
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
885
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
886
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
887
|
+
[_M],
|
|
888
|
+
[0]
|
|
889
|
+
];
|
|
890
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
891
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
892
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
893
|
+
[_M],
|
|
894
|
+
[0]
|
|
895
|
+
];
|
|
896
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
897
|
+
var InternalFailureException$ = [-3, n0, _IFE,
|
|
898
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
899
|
+
[_M],
|
|
900
|
+
[0]
|
|
901
|
+
];
|
|
902
|
+
n0_registry.registerError(InternalFailureException$, InternalFailureException);
|
|
903
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
904
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
905
|
+
[_M],
|
|
906
|
+
[0]
|
|
907
|
+
];
|
|
908
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
909
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
910
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
911
|
+
[_M],
|
|
912
|
+
[0]
|
|
913
|
+
];
|
|
914
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
915
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
916
|
+
{ [_e]: _c, [_hE]: 410 },
|
|
917
|
+
[_M],
|
|
918
|
+
[0]
|
|
919
|
+
];
|
|
920
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
921
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
922
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
923
|
+
[_M, _RI, _RT],
|
|
924
|
+
[0, 0, 0]
|
|
925
|
+
];
|
|
926
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
927
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
928
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
929
|
+
[_M],
|
|
930
|
+
[0]
|
|
931
|
+
];
|
|
932
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
933
|
+
var ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
934
|
+
{ [_e]: _se, [_hE]: 503 },
|
|
935
|
+
[_M],
|
|
936
|
+
[0]
|
|
937
|
+
];
|
|
938
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
939
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
940
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
941
|
+
[_M],
|
|
942
|
+
[0]
|
|
943
|
+
];
|
|
944
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
945
|
+
var UnauthorizedException$ = [-3, n0, _UE,
|
|
946
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
947
|
+
[_M],
|
|
948
|
+
[0]
|
|
949
|
+
];
|
|
950
|
+
n0_registry.registerError(UnauthorizedException$, UnauthorizedException);
|
|
951
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
952
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
953
|
+
[_M],
|
|
954
|
+
[0]
|
|
955
|
+
];
|
|
956
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
957
|
+
const errorTypeRegistries = [
|
|
958
|
+
_s_registry,
|
|
959
|
+
n0_registry,
|
|
960
|
+
];
|
|
961
|
+
var AuthMaterialString = [0, n0, _AMS, 8, 0];
|
|
962
|
+
var Brand = [0, n0, _B, 8, 0];
|
|
963
|
+
var CaCertificate = [0, n0, _CC, 8, 0];
|
|
964
|
+
var CapabilityProperties = [0, n0, _CP, 8, 15];
|
|
965
|
+
var ClaimCertificate = [0, n0, _CCl, 8, 0];
|
|
966
|
+
var ClaimCertificatePrivateKey = [0, n0, _CCPK, 8, 0];
|
|
967
|
+
var Classification = [0, n0, _C, 8, 0];
|
|
968
|
+
var ConnectorDeviceId = [0, n0, _CDI, 8, 0];
|
|
969
|
+
var ConnectorEventMessage = [0, n0, _CEM, 8, 0];
|
|
970
|
+
var CredentialLockerName = [0, n0, _CLN, 8, 0];
|
|
971
|
+
var DeviceSpecificKey = [0, n0, _DSK, 8, 0];
|
|
972
|
+
var DiscoveryAuthMaterialString = [0, n0, _DAMS, 8, 0];
|
|
973
|
+
var InternationalArticleNumber = [0, n0, _IAN, 8, 0];
|
|
974
|
+
var MacAddress = [0, n0, _MA, 8, 0];
|
|
975
|
+
var MatterAttributes = [0, n0, _MAa, 8, 15];
|
|
976
|
+
var MatterFields = [0, n0, _MF, 8, 15];
|
|
977
|
+
var Model = [0, n0, _Mo, 8, 0];
|
|
978
|
+
var OAuthAuthorizationUrlOutput = [0, n0, _OAAUO, 8, 0];
|
|
979
|
+
var OtaTaskConfigurationName = [0, n0, _OTCN, 8, 0];
|
|
980
|
+
var Owner = [0, n0, _O, 8, 0];
|
|
981
|
+
var SerialNumber = [0, n0, _SN, 8, 0];
|
|
982
|
+
var ThirdPartyUserId = [0, n0, _TPUI, 8, 0];
|
|
983
|
+
var UniversalProductCode = [0, n0, _UPC, 8, 0];
|
|
984
|
+
var AbortConfigCriteria$ = [3, n0, _ACC,
|
|
985
|
+
0,
|
|
986
|
+
[_A, _FT, _MNOET, _TP],
|
|
987
|
+
[0, 0, 1, 1]
|
|
988
|
+
];
|
|
989
|
+
var AccountAssociationItem$ = [3, n0, _AAI,
|
|
990
|
+
0,
|
|
991
|
+
[_AAIc, _AS, _EM, _CDIo, _N, _D, _Ar],
|
|
992
|
+
[0, 0, 0, 0, 0, 0, 0], 2
|
|
993
|
+
];
|
|
994
|
+
var AuthConfig$ = [3, n0, _AC,
|
|
995
|
+
0,
|
|
996
|
+
[_oA, _GA],
|
|
997
|
+
[() => OAuthConfig$, () => AuthMaterials]
|
|
998
|
+
];
|
|
999
|
+
var AuthConfigUpdate$ = [3, n0, _ACU,
|
|
1000
|
+
0,
|
|
1001
|
+
[_oAU, _GAU],
|
|
1002
|
+
[() => OAuthUpdate$, () => GeneralAuthorizationUpdate$]
|
|
1003
|
+
];
|
|
1004
|
+
var AuthMaterial$ = [3, n0, _AM,
|
|
1005
|
+
0,
|
|
1006
|
+
[_SM, _AMN],
|
|
1007
|
+
[() => SecretsManager$, 0], 2
|
|
1008
|
+
];
|
|
1009
|
+
var CapabilityAction$ = [3, n0, _CA,
|
|
1010
|
+
0,
|
|
1011
|
+
[_n, _r, _aTI, _p],
|
|
1012
|
+
[0, 0, 0, [() => CapabilityProperties, 0]], 1
|
|
1013
|
+
];
|
|
1014
|
+
var CapabilityReport$ = [3, n0, _CR,
|
|
1015
|
+
0,
|
|
1016
|
+
[_v, _en, _nI],
|
|
1017
|
+
[0, () => CapabilityReportEndpoints, 0], 2
|
|
1018
|
+
];
|
|
1019
|
+
var CapabilityReportCapability$ = [3, n0, _CRC,
|
|
1020
|
+
0,
|
|
1021
|
+
[_i, _n, _v, _pr, _a, _ev],
|
|
1022
|
+
[0, 0, 0, 64 | 0, 64 | 0, 64 | 0], 6
|
|
1023
|
+
];
|
|
1024
|
+
var CapabilityReportEndpoint$ = [3, n0, _CRE,
|
|
1025
|
+
0,
|
|
1026
|
+
[_i, _dT, _ca],
|
|
1027
|
+
[0, 64 | 0, () => CapabilityReportCapabilities], 3
|
|
1028
|
+
];
|
|
1029
|
+
var CapabilitySchemaItem$ = [3, n0, _CSI,
|
|
1030
|
+
0,
|
|
1031
|
+
[_F, _CI, _EI, _EV, _S],
|
|
1032
|
+
[0, 0, 0, 1, 15], 5
|
|
1033
|
+
];
|
|
1034
|
+
var CommandCapability$ = [3, n0, _CCo,
|
|
1035
|
+
0,
|
|
1036
|
+
[_i, _n, _v, _a],
|
|
1037
|
+
[0, 0, 0, [() => CapabilityActions, 0]], 4
|
|
1038
|
+
];
|
|
1039
|
+
var CommandEndpoint$ = [3, n0, _CEo,
|
|
1040
|
+
0,
|
|
1041
|
+
[_eI, _ca],
|
|
1042
|
+
[0, [() => CommandCapabilities, 0]], 2
|
|
1043
|
+
];
|
|
1044
|
+
var ConfigurationError$ = [3, n0, _CEon,
|
|
1045
|
+
0,
|
|
1046
|
+
[_co, _m],
|
|
1047
|
+
[0, 0]
|
|
1048
|
+
];
|
|
1049
|
+
var ConfigurationStatus$ = [3, n0, _CS,
|
|
1050
|
+
0,
|
|
1051
|
+
[_st, _e],
|
|
1052
|
+
[0, () => ConfigurationError$], 1
|
|
1053
|
+
];
|
|
1054
|
+
var ConnectorDestinationSummary$ = [3, n0, _CDS,
|
|
1055
|
+
0,
|
|
1056
|
+
[_N, _D, _CCI, _I],
|
|
1057
|
+
[0, 0, 0, 0]
|
|
1058
|
+
];
|
|
1059
|
+
var ConnectorItem$ = [3, n0, _CIo,
|
|
1060
|
+
0,
|
|
1061
|
+
[_N, _EC, _D, _ET, _I, _T],
|
|
1062
|
+
[0, () => EndpointConfig$, 0, 0, 0, 0], 2
|
|
1063
|
+
];
|
|
1064
|
+
var CreateAccountAssociationRequest$ = [3, n0, _CAAR,
|
|
1065
|
+
0,
|
|
1066
|
+
[_CDIo, _CT, _N, _D, _Ta, _GA],
|
|
1067
|
+
[0, [0, 4], 0, 0, [() => TagsMap, 0], () => GeneralAuthorizationName$], 1
|
|
1068
|
+
];
|
|
1069
|
+
var CreateAccountAssociationResponse$ = [3, n0, _CAARr,
|
|
1070
|
+
0,
|
|
1071
|
+
[_OAAU, _AAIc, _AS, _Ar],
|
|
1072
|
+
[[() => OAuthAuthorizationUrlOutput, 0], 0, 0, 0], 3
|
|
1073
|
+
];
|
|
1074
|
+
var CreateCloudConnectorRequest$ = [3, n0, _CCCR,
|
|
1075
|
+
0,
|
|
1076
|
+
[_N, _EC, _D, _ET, _CT],
|
|
1077
|
+
[0, () => EndpointConfig$, 0, 0, [0, 4]], 2
|
|
1078
|
+
];
|
|
1079
|
+
var CreateCloudConnectorResponse$ = [3, n0, _CCCRr,
|
|
1080
|
+
0,
|
|
1081
|
+
[_I],
|
|
1082
|
+
[0]
|
|
1083
|
+
];
|
|
1084
|
+
var CreateConnectorDestinationRequest$ = [3, n0, _CCDR,
|
|
1085
|
+
0,
|
|
1086
|
+
[_CCI, _AC, _N, _D, _AT, _SM, _CT],
|
|
1087
|
+
[0, () => AuthConfig$, 0, 0, 0, () => SecretsManager$, [0, 4]], 2
|
|
1088
|
+
];
|
|
1089
|
+
var CreateConnectorDestinationResponse$ = [3, n0, _CCDRr,
|
|
1090
|
+
0,
|
|
1091
|
+
[_I],
|
|
1092
|
+
[0]
|
|
1093
|
+
];
|
|
1094
|
+
var CreateCredentialLockerRequest$ = [3, n0, _CCLR,
|
|
1095
|
+
0,
|
|
1096
|
+
[_N, _CT, _Ta],
|
|
1097
|
+
[[() => CredentialLockerName, 0], [0, 4], [() => TagsMap, 0]]
|
|
1098
|
+
];
|
|
1099
|
+
var CreateCredentialLockerResponse$ = [3, n0, _CCLRr,
|
|
1100
|
+
0,
|
|
1101
|
+
[_I, _Ar, _CAr],
|
|
1102
|
+
[0, 0, 4]
|
|
1103
|
+
];
|
|
1104
|
+
var CreateDestinationRequest$ = [3, n0, _CDR,
|
|
1105
|
+
0,
|
|
1106
|
+
[_DDA, _DDT, _N, _RA, _CT, _D, _Ta],
|
|
1107
|
+
[0, 0, 0, 0, [0, 4], 0, [() => TagsMap, 0]], 4
|
|
1108
|
+
];
|
|
1109
|
+
var CreateDestinationResponse$ = [3, n0, _CDRr,
|
|
1110
|
+
0,
|
|
1111
|
+
[_N],
|
|
1112
|
+
[0]
|
|
1113
|
+
];
|
|
1114
|
+
var CreateEventLogConfigurationRequest$ = [3, n0, _CELCR,
|
|
1115
|
+
0,
|
|
1116
|
+
[_RT, _ELL, _RI, _CT],
|
|
1117
|
+
[0, 0, 0, [0, 4]], 2
|
|
1118
|
+
];
|
|
1119
|
+
var CreateEventLogConfigurationResponse$ = [3, n0, _CELCRr,
|
|
1120
|
+
0,
|
|
1121
|
+
[_I],
|
|
1122
|
+
[0]
|
|
1123
|
+
];
|
|
1124
|
+
var CreateManagedThingRequest$ = [3, n0, _CMTR,
|
|
1125
|
+
0,
|
|
1126
|
+
[_R, _AMu, _AMT, _O, _CLI, _WFSSC, _SN, _B, _Mo, _N, _CR, _CSa, _Ca, _CT, _C, _Ta, _MD],
|
|
1127
|
+
[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
|
|
1128
|
+
];
|
|
1129
|
+
var CreateManagedThingResponse$ = [3, n0, _CMTRr,
|
|
1130
|
+
0,
|
|
1131
|
+
[_I, _Ar, _CAr],
|
|
1132
|
+
[0, 0, 4]
|
|
1133
|
+
];
|
|
1134
|
+
var CreateNotificationConfigurationRequest$ = [3, n0, _CNCR,
|
|
1135
|
+
0,
|
|
1136
|
+
[_ETv, _DN, _CT, _Ta],
|
|
1137
|
+
[0, 0, [0, 4], [() => TagsMap, 0]], 2
|
|
1138
|
+
];
|
|
1139
|
+
var CreateNotificationConfigurationResponse$ = [3, n0, _CNCRr,
|
|
1140
|
+
0,
|
|
1141
|
+
[_ETv],
|
|
1142
|
+
[0]
|
|
1143
|
+
];
|
|
1144
|
+
var CreateOtaTaskConfigurationRequest$ = [3, n0, _COTCR,
|
|
1145
|
+
0,
|
|
1146
|
+
[_D, _N, _PC, _CT],
|
|
1147
|
+
[0, [() => OtaTaskConfigurationName, 0], () => PushConfig$, [0, 4]]
|
|
1148
|
+
];
|
|
1149
|
+
var CreateOtaTaskConfigurationResponse$ = [3, n0, _COTCRr,
|
|
1150
|
+
0,
|
|
1151
|
+
[_TCI],
|
|
1152
|
+
[0]
|
|
1153
|
+
];
|
|
1154
|
+
var CreateOtaTaskRequest$ = [3, n0, _COTR,
|
|
1155
|
+
0,
|
|
1156
|
+
[_SU, _OT, _D, _P, _Tar, _TCI, _OM, _OTQS, _CT, _OSC, _OTERC, _Ta],
|
|
1157
|
+
[0, 0, 0, 0, 64 | 0, 0, 0, 0, [0, 4], () => OtaTaskSchedulingConfig$, () => OtaTaskExecutionRetryConfig$, [() => TagsMap, 0]], 2
|
|
1158
|
+
];
|
|
1159
|
+
var CreateOtaTaskResponse$ = [3, n0, _COTRr,
|
|
1160
|
+
0,
|
|
1161
|
+
[_TI, _TA, _D],
|
|
1162
|
+
[0, 0, 0]
|
|
1163
|
+
];
|
|
1164
|
+
var CreateProvisioningProfileRequest$ = [3, n0, _CPPR,
|
|
1165
|
+
0,
|
|
1166
|
+
[_PT, _CC, _CCl, _N, _CT, _Ta],
|
|
1167
|
+
[0, [() => CaCertificate, 0], [() => ClaimCertificate, 0], 0, [0, 4], [() => TagsMap, 0]], 1
|
|
1168
|
+
];
|
|
1169
|
+
var CreateProvisioningProfileResponse$ = [3, n0, _CPPRr,
|
|
1170
|
+
0,
|
|
1171
|
+
[_Ar, _N, _PT, _I, _St, _CCl, _CCPK],
|
|
1172
|
+
[0, 0, 0, 0, 0, [() => ClaimCertificate, 0], [() => ClaimCertificatePrivateKey, 0]]
|
|
1173
|
+
];
|
|
1174
|
+
var CredentialLockerSummary$ = [3, n0, _CLS,
|
|
1175
|
+
0,
|
|
1176
|
+
[_I, _Ar, _N, _CAr],
|
|
1177
|
+
[0, 0, [() => CredentialLockerName, 0], 4]
|
|
1178
|
+
];
|
|
1179
|
+
var DeleteAccountAssociationRequest$ = [3, n0, _DAAR,
|
|
1180
|
+
0,
|
|
1181
|
+
[_AAIc],
|
|
1182
|
+
[[0, 1]], 1
|
|
1183
|
+
];
|
|
1184
|
+
var DeleteCloudConnectorRequest$ = [3, n0, _DCCR,
|
|
1185
|
+
0,
|
|
1186
|
+
[_Id],
|
|
1187
|
+
[[0, 1]], 1
|
|
1188
|
+
];
|
|
1189
|
+
var DeleteConnectorDestinationRequest$ = [3, n0, _DCDR,
|
|
1190
|
+
0,
|
|
1191
|
+
[_Id],
|
|
1192
|
+
[[0, 1]], 1
|
|
1193
|
+
];
|
|
1194
|
+
var DeleteCredentialLockerRequest$ = [3, n0, _DCLR,
|
|
1195
|
+
0,
|
|
1196
|
+
[_Id],
|
|
1197
|
+
[[0, 1]], 1
|
|
1198
|
+
];
|
|
1199
|
+
var DeleteDestinationRequest$ = [3, n0, _DDR,
|
|
1200
|
+
0,
|
|
1201
|
+
[_N],
|
|
1202
|
+
[[0, 1]], 1
|
|
1203
|
+
];
|
|
1204
|
+
var DeleteEventLogConfigurationRequest$ = [3, n0, _DELCR,
|
|
1205
|
+
0,
|
|
1206
|
+
[_I],
|
|
1207
|
+
[[0, 1]], 1
|
|
1208
|
+
];
|
|
1209
|
+
var DeleteManagedThingRequest$ = [3, n0, _DMTR,
|
|
1210
|
+
0,
|
|
1211
|
+
[_Id, _Fo],
|
|
1212
|
+
[[0, 1], [2, { [_hQ]: _Fo }]], 1
|
|
1213
|
+
];
|
|
1214
|
+
var DeleteNotificationConfigurationRequest$ = [3, n0, _DNCR,
|
|
1215
|
+
0,
|
|
1216
|
+
[_ETv],
|
|
1217
|
+
[[0, 1]], 1
|
|
1218
|
+
];
|
|
1219
|
+
var DeleteOtaTaskConfigurationRequest$ = [3, n0, _DOTCR,
|
|
1220
|
+
0,
|
|
1221
|
+
[_Id],
|
|
1222
|
+
[[0, 1]], 1
|
|
1223
|
+
];
|
|
1224
|
+
var DeleteOtaTaskRequest$ = [3, n0, _DOTR,
|
|
1225
|
+
0,
|
|
1226
|
+
[_Id],
|
|
1227
|
+
[[0, 1]], 1
|
|
1228
|
+
];
|
|
1229
|
+
var DeleteProvisioningProfileRequest$ = [3, n0, _DPPR,
|
|
1230
|
+
0,
|
|
1231
|
+
[_Id],
|
|
1232
|
+
[[0, 1]], 1
|
|
1233
|
+
];
|
|
1234
|
+
var DeregisterAccountAssociationRequest$ = [3, n0, _DAARe,
|
|
1235
|
+
0,
|
|
1236
|
+
[_MTI, _AAIc],
|
|
1237
|
+
[0, 0], 2
|
|
1238
|
+
];
|
|
1239
|
+
var DestinationSummary$ = [3, n0, _DS,
|
|
1240
|
+
0,
|
|
1241
|
+
[_D, _DDA, _DDT, _N, _RA],
|
|
1242
|
+
[0, 0, 0, 0, 0]
|
|
1243
|
+
];
|
|
1244
|
+
var Device$ = [3, n0, _De,
|
|
1245
|
+
0,
|
|
1246
|
+
[_CDI, _CR, _CDN, _CSa, _DM],
|
|
1247
|
+
[[() => ConnectorDeviceId, 0], () => MatterCapabilityReport$, 0, () => CapabilitySchemas, 15], 2
|
|
1248
|
+
];
|
|
1249
|
+
var DeviceDiscoverySummary$ = [3, n0, _DDS,
|
|
1250
|
+
0,
|
|
1251
|
+
[_I, _DT, _St],
|
|
1252
|
+
[0, 0, 0]
|
|
1253
|
+
];
|
|
1254
|
+
var DiscoveredDeviceSummary$ = [3, n0, _DDSi,
|
|
1255
|
+
0,
|
|
1256
|
+
[_CDI, _CDN, _DTe, _MTI, _Mod, _DA, _B, _Mo, _AMu],
|
|
1257
|
+
[[() => ConnectorDeviceId, 0], 0, 64 | 0, 0, 0, 4, [() => Brand, 0], [() => Model, 0], [() => AuthMaterialString, 0]]
|
|
1258
|
+
];
|
|
1259
|
+
var EndpointConfig$ = [3, n0, _EC,
|
|
1260
|
+
0,
|
|
1261
|
+
[_l],
|
|
1262
|
+
[() => LambdaConfig$]
|
|
1263
|
+
];
|
|
1264
|
+
var EventLogConfigurationSummary$ = [3, n0, _ELCS,
|
|
1265
|
+
0,
|
|
1266
|
+
[_I, _RT, _RI, _ELL],
|
|
1267
|
+
[0, 0, 0, 0]
|
|
1268
|
+
];
|
|
1269
|
+
var ExponentialRolloutRate$ = [3, n0, _ERR,
|
|
1270
|
+
0,
|
|
1271
|
+
[_BRPM, _IF, _RIC],
|
|
1272
|
+
[1, 1, () => RolloutRateIncreaseCriteria$]
|
|
1273
|
+
];
|
|
1274
|
+
var GeneralAuthorizationName$ = [3, n0, _GAN,
|
|
1275
|
+
0,
|
|
1276
|
+
[_AMN],
|
|
1277
|
+
[0]
|
|
1278
|
+
];
|
|
1279
|
+
var GeneralAuthorizationUpdate$ = [3, n0, _GAU,
|
|
1280
|
+
0,
|
|
1281
|
+
[_AMTA, _AMTU],
|
|
1282
|
+
[() => AuthMaterials, () => AuthMaterials]
|
|
1283
|
+
];
|
|
1284
|
+
var GetAccountAssociationRequest$ = [3, n0, _GAAR,
|
|
1285
|
+
0,
|
|
1286
|
+
[_AAIc],
|
|
1287
|
+
[[0, 1]], 1
|
|
1288
|
+
];
|
|
1289
|
+
var GetAccountAssociationResponse$ = [3, n0, _GAARe,
|
|
1290
|
+
0,
|
|
1291
|
+
[_AAIc, _AS, _OAAU, _EM, _CDIo, _N, _D, _Ar, _Ta, _GA],
|
|
1292
|
+
[0, 0, [() => OAuthAuthorizationUrlOutput, 0], 0, 0, 0, 0, 0, [() => TagsMap, 0], () => GeneralAuthorizationName$], 3
|
|
1293
|
+
];
|
|
1294
|
+
var GetCloudConnectorRequest$ = [3, n0, _GCCR,
|
|
1295
|
+
0,
|
|
1296
|
+
[_Id],
|
|
1297
|
+
[[0, 1]], 1
|
|
1298
|
+
];
|
|
1299
|
+
var GetCloudConnectorResponse$ = [3, n0, _GCCRe,
|
|
1300
|
+
0,
|
|
1301
|
+
[_N, _EC, _D, _ET, _I, _T],
|
|
1302
|
+
[0, () => EndpointConfig$, 0, 0, 0, 0], 2
|
|
1303
|
+
];
|
|
1304
|
+
var GetConnectorDestinationRequest$ = [3, n0, _GCDR,
|
|
1305
|
+
0,
|
|
1306
|
+
[_Id],
|
|
1307
|
+
[[0, 1]], 1
|
|
1308
|
+
];
|
|
1309
|
+
var GetConnectorDestinationResponse$ = [3, n0, _GCDRe,
|
|
1310
|
+
0,
|
|
1311
|
+
[_N, _D, _CCI, _I, _AT, _AC, _SM, _OACRU],
|
|
1312
|
+
[0, 0, 0, 0, 0, () => AuthConfig$, () => SecretsManager$, 0]
|
|
1313
|
+
];
|
|
1314
|
+
var GetCredentialLockerRequest$ = [3, n0, _GCLR,
|
|
1315
|
+
0,
|
|
1316
|
+
[_Id],
|
|
1317
|
+
[[0, 1]], 1
|
|
1318
|
+
];
|
|
1319
|
+
var GetCredentialLockerResponse$ = [3, n0, _GCLRe,
|
|
1320
|
+
0,
|
|
1321
|
+
[_I, _Ar, _N, _CAr, _Ta],
|
|
1322
|
+
[0, 0, [() => CredentialLockerName, 0], 4, [() => TagsMap, 0]]
|
|
1323
|
+
];
|
|
1324
|
+
var GetCustomEndpointRequest$ = [3, n0, _GCER,
|
|
1325
|
+
0,
|
|
1326
|
+
[],
|
|
1327
|
+
[]
|
|
1328
|
+
];
|
|
1329
|
+
var GetCustomEndpointResponse$ = [3, n0, _GCERe,
|
|
1330
|
+
0,
|
|
1331
|
+
[_EA],
|
|
1332
|
+
[0], 1
|
|
1333
|
+
];
|
|
1334
|
+
var GetDefaultEncryptionConfigurationRequest$ = [3, n0, _GDECR,
|
|
1335
|
+
0,
|
|
1336
|
+
[],
|
|
1337
|
+
[]
|
|
1338
|
+
];
|
|
1339
|
+
var GetDefaultEncryptionConfigurationResponse$ = [3, n0, _GDECRe,
|
|
1340
|
+
0,
|
|
1341
|
+
[_cS, _eT, _kKA],
|
|
1342
|
+
[() => ConfigurationStatus$, 0, 0], 2
|
|
1343
|
+
];
|
|
1344
|
+
var GetDestinationRequest$ = [3, n0, _GDR,
|
|
1345
|
+
0,
|
|
1346
|
+
[_N],
|
|
1347
|
+
[[0, 1]], 1
|
|
1348
|
+
];
|
|
1349
|
+
var GetDestinationResponse$ = [3, n0, _GDRe,
|
|
1350
|
+
0,
|
|
1351
|
+
[_D, _DDA, _DDT, _N, _RA, _CAr, _UA, _Ta],
|
|
1352
|
+
[0, 0, 0, 0, 0, 4, 4, [() => TagsMap, 0]]
|
|
1353
|
+
];
|
|
1354
|
+
var GetDeviceDiscoveryRequest$ = [3, n0, _GDDR,
|
|
1355
|
+
0,
|
|
1356
|
+
[_Id],
|
|
1357
|
+
[[0, 1]], 1
|
|
1358
|
+
];
|
|
1359
|
+
var GetDeviceDiscoveryResponse$ = [3, n0, _GDDRe,
|
|
1360
|
+
0,
|
|
1361
|
+
[_I, _Ar, _DT, _St, _SA, _CIon, _CAI, _AAIc, _FA, _Ta],
|
|
1362
|
+
[0, 0, 0, 0, 4, 0, 0, 0, 4, [() => TagsMap, 0]], 5
|
|
1363
|
+
];
|
|
1364
|
+
var GetEventLogConfigurationRequest$ = [3, n0, _GELCR,
|
|
1365
|
+
0,
|
|
1366
|
+
[_I],
|
|
1367
|
+
[[0, 1]], 1
|
|
1368
|
+
];
|
|
1369
|
+
var GetEventLogConfigurationResponse$ = [3, n0, _GELCRe,
|
|
1370
|
+
0,
|
|
1371
|
+
[_I, _RT, _RI, _ELL],
|
|
1372
|
+
[0, 0, 0, 0]
|
|
1373
|
+
];
|
|
1374
|
+
var GetHubConfigurationRequest$ = [3, n0, _GHCR,
|
|
1375
|
+
0,
|
|
1376
|
+
[],
|
|
1377
|
+
[]
|
|
1378
|
+
];
|
|
1379
|
+
var GetHubConfigurationResponse$ = [3, n0, _GHCRe,
|
|
1380
|
+
0,
|
|
1381
|
+
[_HTTESIS, _UA],
|
|
1382
|
+
[1, 4]
|
|
1383
|
+
];
|
|
1384
|
+
var GetManagedThingCapabilitiesRequest$ = [3, n0, _GMTCR,
|
|
1385
|
+
0,
|
|
1386
|
+
[_Id],
|
|
1387
|
+
[[0, 1]], 1
|
|
1388
|
+
];
|
|
1389
|
+
var GetManagedThingCapabilitiesResponse$ = [3, n0, _GMTCRe,
|
|
1390
|
+
0,
|
|
1391
|
+
[_MTI, _Ca, _CR],
|
|
1392
|
+
[0, 0, () => CapabilityReport$]
|
|
1393
|
+
];
|
|
1394
|
+
var GetManagedThingCertificateRequest$ = [3, n0, _GMTCRet,
|
|
1395
|
+
0,
|
|
1396
|
+
[_Id],
|
|
1397
|
+
[[0, 1]], 1
|
|
1398
|
+
];
|
|
1399
|
+
var GetManagedThingCertificateResponse$ = [3, n0, _GMTCReta,
|
|
1400
|
+
0,
|
|
1401
|
+
[_MTI, _CPe],
|
|
1402
|
+
[0, 0]
|
|
1403
|
+
];
|
|
1404
|
+
var GetManagedThingConnectivityDataRequest$ = [3, n0, _GMTCDR,
|
|
1405
|
+
0,
|
|
1406
|
+
[_Id],
|
|
1407
|
+
[[0, 1]], 1
|
|
1408
|
+
];
|
|
1409
|
+
var GetManagedThingConnectivityDataResponse$ = [3, n0, _GMTCDRe,
|
|
1410
|
+
0,
|
|
1411
|
+
[_MTI, _Co, _Ti, _DR],
|
|
1412
|
+
[0, 2, 4, 0]
|
|
1413
|
+
];
|
|
1414
|
+
var GetManagedThingMetaDataRequest$ = [3, n0, _GMTMDR,
|
|
1415
|
+
0,
|
|
1416
|
+
[_Id],
|
|
1417
|
+
[[0, 1]], 1
|
|
1418
|
+
];
|
|
1419
|
+
var GetManagedThingMetaDataResponse$ = [3, n0, _GMTMDRe,
|
|
1420
|
+
0,
|
|
1421
|
+
[_MTI, _MD],
|
|
1422
|
+
[0, 128 | 0]
|
|
1423
|
+
];
|
|
1424
|
+
var GetManagedThingRequest$ = [3, n0, _GMTR,
|
|
1425
|
+
0,
|
|
1426
|
+
[_Id],
|
|
1427
|
+
[[0, 1]], 1
|
|
1428
|
+
];
|
|
1429
|
+
var GetManagedThingResponse$ = [3, n0, _GMTRe,
|
|
1430
|
+
0,
|
|
1431
|
+
[_I, _Ar, _O, _CLI, _API, _R, _PS, _N, _Mo, _B, _SN, _UPC, _IAN, _CPI, _CDIo, _CDI, _DSK, _MA, _PCI, _C, _CAr, _UA, _AA, _HNM, _MD, _Ta, _WFSSC],
|
|
1432
|
+
[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$]
|
|
1433
|
+
];
|
|
1434
|
+
var GetManagedThingStateRequest$ = [3, n0, _GMTSR,
|
|
1435
|
+
0,
|
|
1436
|
+
[_MTI],
|
|
1437
|
+
[[0, 1]], 1
|
|
1438
|
+
];
|
|
1439
|
+
var GetManagedThingStateResponse$ = [3, n0, _GMTSRe,
|
|
1440
|
+
0,
|
|
1441
|
+
[_E],
|
|
1442
|
+
[[() => StateEndpoints, 0]], 1
|
|
1443
|
+
];
|
|
1444
|
+
var GetNotificationConfigurationRequest$ = [3, n0, _GNCR,
|
|
1445
|
+
0,
|
|
1446
|
+
[_ETv],
|
|
1447
|
+
[[0, 1]], 1
|
|
1448
|
+
];
|
|
1449
|
+
var GetNotificationConfigurationResponse$ = [3, n0, _GNCRe,
|
|
1450
|
+
0,
|
|
1451
|
+
[_ETv, _DN, _CAr, _UA, _Ta],
|
|
1452
|
+
[0, 0, 4, 4, [() => TagsMap, 0]]
|
|
1453
|
+
];
|
|
1454
|
+
var GetOtaTaskConfigurationRequest$ = [3, n0, _GOTCR,
|
|
1455
|
+
0,
|
|
1456
|
+
[_Id],
|
|
1457
|
+
[[0, 1]], 1
|
|
1458
|
+
];
|
|
1459
|
+
var GetOtaTaskConfigurationResponse$ = [3, n0, _GOTCRe,
|
|
1460
|
+
0,
|
|
1461
|
+
[_TCI, _N, _PC, _D, _CAr],
|
|
1462
|
+
[0, [() => OtaTaskConfigurationName, 0], () => PushConfig$, 0, 4]
|
|
1463
|
+
];
|
|
1464
|
+
var GetOtaTaskRequest$ = [3, n0, _GOTR,
|
|
1465
|
+
0,
|
|
1466
|
+
[_Id],
|
|
1467
|
+
[[0, 1]], 1
|
|
1468
|
+
];
|
|
1469
|
+
var GetOtaTaskResponse$ = [3, n0, _GOTRe,
|
|
1470
|
+
0,
|
|
1471
|
+
[_TI, _TA, _D, _SU, _P, _OT, _OTQS, _OM, _Tar, _CAr, _LUA, _TCI, _TPD, _OSC, _OTERC, _St, _Ta],
|
|
1472
|
+
[0, 0, 0, 0, 0, 0, 0, 0, 64 | 0, 4, 4, 0, () => TaskProcessingDetails$, () => OtaTaskSchedulingConfig$, () => OtaTaskExecutionRetryConfig$, 0, [() => TagsMap, 0]]
|
|
1473
|
+
];
|
|
1474
|
+
var GetProvisioningProfileRequest$ = [3, n0, _GPPR,
|
|
1475
|
+
0,
|
|
1476
|
+
[_Id],
|
|
1477
|
+
[[0, 1]], 1
|
|
1478
|
+
];
|
|
1479
|
+
var GetProvisioningProfileResponse$ = [3, n0, _GPPRe,
|
|
1480
|
+
0,
|
|
1481
|
+
[_Ar, _N, _PT, _I, _St, _CCl, _Ta],
|
|
1482
|
+
[0, 0, 0, 0, 0, [() => ClaimCertificate, 0], [() => TagsMap, 0]]
|
|
1483
|
+
];
|
|
1484
|
+
var GetRuntimeLogConfigurationRequest$ = [3, n0, _GRLCR,
|
|
1485
|
+
0,
|
|
1486
|
+
[_MTI],
|
|
1487
|
+
[[0, 1]], 1
|
|
1488
|
+
];
|
|
1489
|
+
var GetRuntimeLogConfigurationResponse$ = [3, n0, _GRLCRe,
|
|
1490
|
+
0,
|
|
1491
|
+
[_MTI, _RLC],
|
|
1492
|
+
[0, () => RuntimeLogConfigurations$]
|
|
1493
|
+
];
|
|
1494
|
+
var GetSchemaVersionRequest$ = [3, n0, _GSVR,
|
|
1495
|
+
0,
|
|
1496
|
+
[_T, _SVI, _F],
|
|
1497
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _F }]], 2
|
|
1498
|
+
];
|
|
1499
|
+
var GetSchemaVersionResponse$ = [3, n0, _GSVRe,
|
|
1500
|
+
0,
|
|
1501
|
+
[_SI, _T, _D, _Na, _SV, _V, _S],
|
|
1502
|
+
[0, 0, 0, 0, 0, 0, 15]
|
|
1503
|
+
];
|
|
1504
|
+
var LambdaConfig$ = [3, n0, _LC,
|
|
1505
|
+
0,
|
|
1506
|
+
[_ar],
|
|
1507
|
+
[0], 1
|
|
1508
|
+
];
|
|
1509
|
+
var ListAccountAssociationsRequest$ = [3, n0, _LAAR,
|
|
1510
|
+
0,
|
|
1511
|
+
[_CDIo, _MR, _NT],
|
|
1512
|
+
[[0, { [_hQ]: _CDIo }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1513
|
+
];
|
|
1514
|
+
var ListAccountAssociationsResponse$ = [3, n0, _LAARi,
|
|
1515
|
+
0,
|
|
1516
|
+
[_It, _NT],
|
|
1517
|
+
[() => AccountAssociationListDefinition, 0]
|
|
1518
|
+
];
|
|
1519
|
+
var ListCloudConnectorsRequest$ = [3, n0, _LCCR,
|
|
1520
|
+
0,
|
|
1521
|
+
[_T, _LA, _MR, _NT],
|
|
1522
|
+
[[0, { [_hQ]: _T }], [0, { [_hQ]: _LA }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1523
|
+
];
|
|
1524
|
+
var ListCloudConnectorsResponse$ = [3, n0, _LCCRi,
|
|
1525
|
+
0,
|
|
1526
|
+
[_It, _NT],
|
|
1527
|
+
[() => ConnectorList, 0]
|
|
1528
|
+
];
|
|
1529
|
+
var ListConnectorDestinationsRequest$ = [3, n0, _LCDR,
|
|
1530
|
+
0,
|
|
1531
|
+
[_CCI, _NT, _MR],
|
|
1532
|
+
[[0, { [_hQ]: _CCI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1533
|
+
];
|
|
1534
|
+
var ListConnectorDestinationsResponse$ = [3, n0, _LCDRi,
|
|
1535
|
+
0,
|
|
1536
|
+
[_CDL, _NT],
|
|
1537
|
+
[() => ConnectorDestinationListDefinition, 0]
|
|
1538
|
+
];
|
|
1539
|
+
var ListCredentialLockersRequest$ = [3, n0, _LCLR,
|
|
1540
|
+
0,
|
|
1541
|
+
[_NT, _MR],
|
|
1542
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1543
|
+
];
|
|
1544
|
+
var ListCredentialLockersResponse$ = [3, n0, _LCLRi,
|
|
1545
|
+
0,
|
|
1546
|
+
[_It, _NT],
|
|
1547
|
+
[[() => CredentialLockerListDefinition, 0], 0]
|
|
1548
|
+
];
|
|
1549
|
+
var ListDestinationsRequest$ = [3, n0, _LDR,
|
|
1550
|
+
0,
|
|
1551
|
+
[_NT, _MR],
|
|
1552
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1553
|
+
];
|
|
1554
|
+
var ListDestinationsResponse$ = [3, n0, _LDRi,
|
|
1555
|
+
0,
|
|
1556
|
+
[_DL, _NT],
|
|
1557
|
+
[() => DestinationListDefinition, 0]
|
|
1558
|
+
];
|
|
1559
|
+
var ListDeviceDiscoveriesRequest$ = [3, n0, _LDDR,
|
|
1560
|
+
0,
|
|
1561
|
+
[_NT, _MR, _TF, _SF],
|
|
1562
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _TF }], [0, { [_hQ]: _SF }]]
|
|
1563
|
+
];
|
|
1564
|
+
var ListDeviceDiscoveriesResponse$ = [3, n0, _LDDRi,
|
|
1565
|
+
0,
|
|
1566
|
+
[_It, _NT],
|
|
1567
|
+
[() => DeviceDiscoveryListDefinition, 0]
|
|
1568
|
+
];
|
|
1569
|
+
var ListDiscoveredDevicesRequest$ = [3, n0, _LDDRis,
|
|
1570
|
+
0,
|
|
1571
|
+
[_Id, _NT, _MR],
|
|
1572
|
+
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
1573
|
+
];
|
|
1574
|
+
var ListDiscoveredDevicesResponse$ = [3, n0, _LDDRist,
|
|
1575
|
+
0,
|
|
1576
|
+
[_It, _NT],
|
|
1577
|
+
[[() => DiscoveredDeviceListDefinition, 0], 0]
|
|
1578
|
+
];
|
|
1579
|
+
var ListEventLogConfigurationsRequest$ = [3, n0, _LELCR,
|
|
1580
|
+
0,
|
|
1581
|
+
[_NT, _MR],
|
|
1582
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1583
|
+
];
|
|
1584
|
+
var ListEventLogConfigurationsResponse$ = [3, n0, _LELCRi,
|
|
1585
|
+
0,
|
|
1586
|
+
[_ELCL, _NT],
|
|
1587
|
+
[() => EventLogConfigurationListDefinition, 0]
|
|
1588
|
+
];
|
|
1589
|
+
var ListManagedThingAccountAssociationsRequest$ = [3, n0, _LMTAAR,
|
|
1590
|
+
0,
|
|
1591
|
+
[_MTI, _AAIc, _MR, _NT],
|
|
1592
|
+
[[0, { [_hQ]: _MTI }], [0, { [_hQ]: _AAIc }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1593
|
+
];
|
|
1594
|
+
var ListManagedThingAccountAssociationsResponse$ = [3, n0, _LMTAARi,
|
|
1595
|
+
0,
|
|
1596
|
+
[_It, _NT],
|
|
1597
|
+
[() => ManagedThingAssociationList, 0]
|
|
1598
|
+
];
|
|
1599
|
+
var ListManagedThingSchemasRequest$ = [3, n0, _LMTSR,
|
|
1600
|
+
0,
|
|
1601
|
+
[_Id, _EIF, _CIF, _NT, _MR],
|
|
1602
|
+
[[0, 1], [0, { [_hQ]: _EIF }], [0, { [_hQ]: _CIF }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
1603
|
+
];
|
|
1604
|
+
var ListManagedThingSchemasResponse$ = [3, n0, _LMTSRi,
|
|
1605
|
+
0,
|
|
1606
|
+
[_It, _NT],
|
|
1607
|
+
[() => ManagedThingSchemaListDefinition, 0]
|
|
1608
|
+
];
|
|
1609
|
+
var ListManagedThingsRequest$ = [3, n0, _LMTR,
|
|
1610
|
+
0,
|
|
1611
|
+
[_OF, _CLF, _RF, _PCIF, _CPIF, _CDIF, _CDIFo, _SNF, _PSF, _NT, _MR],
|
|
1612
|
+
[[() => 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 }]]
|
|
1613
|
+
];
|
|
1614
|
+
var ListManagedThingsResponse$ = [3, n0, _LMTRi,
|
|
1615
|
+
0,
|
|
1616
|
+
[_It, _NT],
|
|
1617
|
+
[[() => ManagedThingListDefinition, 0], 0]
|
|
1618
|
+
];
|
|
1619
|
+
var ListNotificationConfigurationsRequest$ = [3, n0, _LNCR,
|
|
1620
|
+
0,
|
|
1621
|
+
[_MR, _NT],
|
|
1622
|
+
[[1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1623
|
+
];
|
|
1624
|
+
var ListNotificationConfigurationsResponse$ = [3, n0, _LNCRi,
|
|
1625
|
+
0,
|
|
1626
|
+
[_NCL, _NT],
|
|
1627
|
+
[() => NotificationConfigurationListDefinition, 0]
|
|
1628
|
+
];
|
|
1629
|
+
var ListOtaTaskConfigurationsRequest$ = [3, n0, _LOTCR,
|
|
1630
|
+
0,
|
|
1631
|
+
[_NT, _MR],
|
|
1632
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1633
|
+
];
|
|
1634
|
+
var ListOtaTaskConfigurationsResponse$ = [3, n0, _LOTCRi,
|
|
1635
|
+
0,
|
|
1636
|
+
[_It, _NT],
|
|
1637
|
+
[[() => OtaTaskConfigurationListDefinition, 0], 0]
|
|
1638
|
+
];
|
|
1639
|
+
var ListOtaTaskExecutionsRequest$ = [3, n0, _LOTER,
|
|
1640
|
+
0,
|
|
1641
|
+
[_Id, _NT, _MR],
|
|
1642
|
+
[[0, 1], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
|
|
1643
|
+
];
|
|
1644
|
+
var ListOtaTaskExecutionsResponse$ = [3, n0, _LOTERi,
|
|
1645
|
+
0,
|
|
1646
|
+
[_ES, _NT],
|
|
1647
|
+
[() => OtaTaskExecutionSummariesListDefinition, 0]
|
|
1648
|
+
];
|
|
1649
|
+
var ListOtaTasksRequest$ = [3, n0, _LOTR,
|
|
1650
|
+
0,
|
|
1651
|
+
[_NT, _MR],
|
|
1652
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1653
|
+
];
|
|
1654
|
+
var ListOtaTasksResponse$ = [3, n0, _LOTRi,
|
|
1655
|
+
0,
|
|
1656
|
+
[_Tas, _NT],
|
|
1657
|
+
[() => OtaTaskListDefinition, 0]
|
|
1658
|
+
];
|
|
1659
|
+
var ListProvisioningProfilesRequest$ = [3, n0, _LPPR,
|
|
1660
|
+
0,
|
|
1661
|
+
[_NT, _MR],
|
|
1662
|
+
[[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
1663
|
+
];
|
|
1664
|
+
var ListProvisioningProfilesResponse$ = [3, n0, _LPPRi,
|
|
1665
|
+
0,
|
|
1666
|
+
[_It, _NT],
|
|
1667
|
+
[() => ProvisioningProfileListDefinition, 0]
|
|
1668
|
+
];
|
|
1669
|
+
var ListSchemaVersionsRequest$ = [3, n0, _LSVR,
|
|
1670
|
+
0,
|
|
1671
|
+
[_T, _MR, _NT, _SI, _Na, _V, _SV],
|
|
1672
|
+
[[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [0, { [_hQ]: _SIF }], [0, { [_hQ]: _NF }], [0, { [_hQ]: _VF }], [0, { [_hQ]: _SVF }]], 1
|
|
1673
|
+
];
|
|
1674
|
+
var ListSchemaVersionsResponse$ = [3, n0, _LSVRi,
|
|
1675
|
+
0,
|
|
1676
|
+
[_It, _NT],
|
|
1677
|
+
[() => SchemaVersionList, 0]
|
|
1678
|
+
];
|
|
1679
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1680
|
+
0,
|
|
1681
|
+
[_RAe],
|
|
1682
|
+
[[0, 1]], 1
|
|
1683
|
+
];
|
|
1684
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1685
|
+
0,
|
|
1686
|
+
[_t],
|
|
1687
|
+
[[() => TagsMap, 0]]
|
|
1688
|
+
];
|
|
1689
|
+
var ManagedThingAssociation$ = [3, n0, _MTA,
|
|
1690
|
+
0,
|
|
1691
|
+
[_MTI, _AAIc, _MTAS],
|
|
1692
|
+
[0, 0, 0]
|
|
1693
|
+
];
|
|
1694
|
+
var ManagedThingSchemaListItem$ = [3, n0, _MTSLI,
|
|
1695
|
+
0,
|
|
1696
|
+
[_EIn, _CI, _S],
|
|
1697
|
+
[0, 0, 15]
|
|
1698
|
+
];
|
|
1699
|
+
var ManagedThingSummary$ = [3, n0, _MTS,
|
|
1700
|
+
0,
|
|
1701
|
+
[_I, _Ar, _API, _B, _C, _CDI, _CPI, _CDIo, _Mo, _N, _O, _CLI, _PCI, _PS, _R, _SN, _CAr, _UA, _AA],
|
|
1702
|
+
[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]
|
|
1703
|
+
];
|
|
1704
|
+
var MatterCapabilityReport$ = [3, n0, _MCR,
|
|
1705
|
+
0,
|
|
1706
|
+
[_v, _en, _nI],
|
|
1707
|
+
[0, () => MatterCapabilityReportEndpoints, 0], 2
|
|
1708
|
+
];
|
|
1709
|
+
var MatterCapabilityReportAttribute$ = [3, n0, _MCRA,
|
|
1710
|
+
0,
|
|
1711
|
+
[_i, _n, _va],
|
|
1712
|
+
[0, 0, 15]
|
|
1713
|
+
];
|
|
1714
|
+
var MatterCapabilityReportCluster$ = [3, n0, _MCRC,
|
|
1715
|
+
0,
|
|
1716
|
+
[_i, _re, _pI, _n, _sV, _at, _com, _ev, _fM, _gC, _fI],
|
|
1717
|
+
[0, 1, 0, 0, 0, () => MatterCapabilityReportAttributes, 64 | 0, 64 | 0, 1, 64 | 0, 1], 2
|
|
1718
|
+
];
|
|
1719
|
+
var MatterCapabilityReportEndpoint$ = [3, n0, _MCRE,
|
|
1720
|
+
0,
|
|
1721
|
+
[_i, _dT, _cl, _pa, _sT, _cC],
|
|
1722
|
+
[0, 64 | 0, () => MatterCapabilityReportClusters, 64 | 0, 64 | 0, 64 | 0], 3
|
|
1723
|
+
];
|
|
1724
|
+
var MatterCluster$ = [3, n0, _MC,
|
|
1725
|
+
0,
|
|
1726
|
+
[_i, _at, _com, _ev],
|
|
1727
|
+
[0, [() => MatterAttributes, 0], [() => MatterCommands, 0], [() => MatterEvents, 0]]
|
|
1728
|
+
];
|
|
1729
|
+
var MatterEndpoint$ = [3, n0, _ME,
|
|
1730
|
+
0,
|
|
1731
|
+
[_i, _cl],
|
|
1732
|
+
[0, [() => MatterClusters, 0]]
|
|
1733
|
+
];
|
|
1734
|
+
var NotificationConfigurationSummary$ = [3, n0, _NCS,
|
|
1735
|
+
0,
|
|
1736
|
+
[_ETv, _DN],
|
|
1737
|
+
[0, 0]
|
|
1738
|
+
];
|
|
1739
|
+
var OAuthConfig$ = [3, n0, _OAC,
|
|
1740
|
+
0,
|
|
1741
|
+
[_aU, _tU, _tEAS, _sc, _oACRU, _pRTR],
|
|
1742
|
+
[0, 0, 0, 0, 0, () => ProactiveRefreshTokenRenewal$], 3
|
|
1743
|
+
];
|
|
1744
|
+
var OAuthUpdate$ = [3, n0, _OAU,
|
|
1745
|
+
0,
|
|
1746
|
+
[_oACRU, _pRTR],
|
|
1747
|
+
[0, () => ProactiveRefreshTokenRenewal$]
|
|
1748
|
+
];
|
|
1749
|
+
var OtaTaskAbortConfig$ = [3, n0, _OTAC,
|
|
1750
|
+
0,
|
|
1751
|
+
[_ACCL],
|
|
1752
|
+
[() => AbortConfigCriteriaList]
|
|
1753
|
+
];
|
|
1754
|
+
var OtaTaskConfigurationSummary$ = [3, n0, _OTCS,
|
|
1755
|
+
0,
|
|
1756
|
+
[_TCI, _N, _CAr],
|
|
1757
|
+
[0, [() => OtaTaskConfigurationName, 0], 4]
|
|
1758
|
+
];
|
|
1759
|
+
var OtaTaskExecutionRetryConfig$ = [3, n0, _OTERC,
|
|
1760
|
+
0,
|
|
1761
|
+
[_RCC],
|
|
1762
|
+
[() => RetryConfigCriteriaList]
|
|
1763
|
+
];
|
|
1764
|
+
var OtaTaskExecutionRolloutConfig$ = [3, n0, _OTERCt,
|
|
1765
|
+
0,
|
|
1766
|
+
[_ERR, _MPM],
|
|
1767
|
+
[() => ExponentialRolloutRate$, 1]
|
|
1768
|
+
];
|
|
1769
|
+
var OtaTaskExecutionSummaries$ = [3, n0, _OTES,
|
|
1770
|
+
0,
|
|
1771
|
+
[_TES, _MTI],
|
|
1772
|
+
[() => OtaTaskExecutionSummary$, 0]
|
|
1773
|
+
];
|
|
1774
|
+
var OtaTaskExecutionSummary$ = [3, n0, _OTESt,
|
|
1775
|
+
0,
|
|
1776
|
+
[_EN, _LUA, _QA, _RAet, _SA, _St],
|
|
1777
|
+
[1, 4, 4, 1, 4, 0]
|
|
1778
|
+
];
|
|
1779
|
+
var OtaTaskSchedulingConfig$ = [3, n0, _OTSC,
|
|
1780
|
+
0,
|
|
1781
|
+
[_EB, _ETn, _MW, _ST],
|
|
1782
|
+
[0, 0, () => ScheduleMaintenanceWindowList, 0]
|
|
1783
|
+
];
|
|
1784
|
+
var OtaTaskSummary$ = [3, n0, _OTS,
|
|
1785
|
+
0,
|
|
1786
|
+
[_TI, _TA, _CAr, _LUA, _TCI, _St],
|
|
1787
|
+
[0, 0, 4, 4, 0, 0]
|
|
1788
|
+
];
|
|
1789
|
+
var OtaTaskTimeoutConfig$ = [3, n0, _OTTC,
|
|
1790
|
+
0,
|
|
1791
|
+
[_IPTIM],
|
|
1792
|
+
[1]
|
|
1793
|
+
];
|
|
1794
|
+
var ProactiveRefreshTokenRenewal$ = [3, n0, _PRTR,
|
|
1795
|
+
0,
|
|
1796
|
+
[_ena, _DBR],
|
|
1797
|
+
[2, 1]
|
|
1798
|
+
];
|
|
1799
|
+
var ProvisioningProfileSummary$ = [3, n0, _PPS,
|
|
1800
|
+
0,
|
|
1801
|
+
[_N, _I, _Ar, _PT, _St],
|
|
1802
|
+
[0, 0, 0, 0, 0]
|
|
1803
|
+
];
|
|
1804
|
+
var PushConfig$ = [3, n0, _PC,
|
|
1805
|
+
0,
|
|
1806
|
+
[_ACb, _RC, _TC],
|
|
1807
|
+
[() => OtaTaskAbortConfig$, () => OtaTaskExecutionRolloutConfig$, () => OtaTaskTimeoutConfig$]
|
|
1808
|
+
];
|
|
1809
|
+
var PutDefaultEncryptionConfigurationRequest$ = [3, n0, _PDECR,
|
|
1810
|
+
0,
|
|
1811
|
+
[_eT, _kKA],
|
|
1812
|
+
[0, 0], 1
|
|
1813
|
+
];
|
|
1814
|
+
var PutDefaultEncryptionConfigurationResponse$ = [3, n0, _PDECRu,
|
|
1815
|
+
0,
|
|
1816
|
+
[_cS, _eT, _kKA],
|
|
1817
|
+
[() => ConfigurationStatus$, 0, 0], 2
|
|
1818
|
+
];
|
|
1819
|
+
var PutHubConfigurationRequest$ = [3, n0, _PHCR,
|
|
1820
|
+
0,
|
|
1821
|
+
[_HTTESIS],
|
|
1822
|
+
[1], 1
|
|
1823
|
+
];
|
|
1824
|
+
var PutHubConfigurationResponse$ = [3, n0, _PHCRu,
|
|
1825
|
+
0,
|
|
1826
|
+
[_HTTESIS],
|
|
1827
|
+
[1]
|
|
1828
|
+
];
|
|
1829
|
+
var PutRuntimeLogConfigurationRequest$ = [3, n0, _PRLCR,
|
|
1830
|
+
0,
|
|
1831
|
+
[_MTI, _RLC],
|
|
1832
|
+
[[0, 1], () => RuntimeLogConfigurations$], 2
|
|
1833
|
+
];
|
|
1834
|
+
var RegisterAccountAssociationRequest$ = [3, n0, _RAAR,
|
|
1835
|
+
0,
|
|
1836
|
+
[_MTI, _AAIc, _DDI],
|
|
1837
|
+
[0, 0, 0], 3
|
|
1838
|
+
];
|
|
1839
|
+
var RegisterAccountAssociationResponse$ = [3, n0, _RAARe,
|
|
1840
|
+
0,
|
|
1841
|
+
[_AAIc, _DDI, _MTI],
|
|
1842
|
+
[0, 0, 0]
|
|
1843
|
+
];
|
|
1844
|
+
var RegisterCustomEndpointRequest$ = [3, n0, _RCER,
|
|
1845
|
+
0,
|
|
1846
|
+
[],
|
|
1847
|
+
[]
|
|
1848
|
+
];
|
|
1849
|
+
var RegisterCustomEndpointResponse$ = [3, n0, _RCERe,
|
|
1850
|
+
0,
|
|
1851
|
+
[_EA],
|
|
1852
|
+
[0], 1
|
|
1853
|
+
];
|
|
1854
|
+
var ResetRuntimeLogConfigurationRequest$ = [3, n0, _RRLCR,
|
|
1855
|
+
0,
|
|
1856
|
+
[_MTI],
|
|
1857
|
+
[[0, 1]], 1
|
|
1858
|
+
];
|
|
1859
|
+
var RetryConfigCriteria$ = [3, n0, _RCC,
|
|
1860
|
+
0,
|
|
1861
|
+
[_FT, _MNOR],
|
|
1862
|
+
[0, 1]
|
|
1863
|
+
];
|
|
1864
|
+
var RolloutRateIncreaseCriteria$ = [3, n0, _RRIC,
|
|
1865
|
+
0,
|
|
1866
|
+
[_nONT, _nOST],
|
|
1867
|
+
[1, 1]
|
|
1868
|
+
];
|
|
1869
|
+
var RuntimeLogConfigurations$ = [3, n0, _RLC,
|
|
1870
|
+
0,
|
|
1871
|
+
[_LL, _LFL, _LSL, _LSFRMF, _LSFRMB, _UL, _UPM, _DLSAU],
|
|
1872
|
+
[0, 0, 0, 1, 1, 2, 1, 2]
|
|
1873
|
+
];
|
|
1874
|
+
var ScheduleMaintenanceWindow$ = [3, n0, _SMW,
|
|
1875
|
+
0,
|
|
1876
|
+
[_DIM, _ST],
|
|
1877
|
+
[1, 0]
|
|
1878
|
+
];
|
|
1879
|
+
var SchemaVersionListItem$ = [3, n0, _SVLI,
|
|
1880
|
+
0,
|
|
1881
|
+
[_SI, _T, _D, _Na, _SV, _V],
|
|
1882
|
+
[0, 0, 0, 0, 0, 0]
|
|
1883
|
+
];
|
|
1884
|
+
var SecretsManager$ = [3, n0, _SM,
|
|
1885
|
+
0,
|
|
1886
|
+
[_ar, _vI],
|
|
1887
|
+
[0, 0], 2
|
|
1888
|
+
];
|
|
1889
|
+
var SendConnectorEventRequest$ = [3, n0, _SCER,
|
|
1890
|
+
0,
|
|
1891
|
+
[_CIonn, _Op, _UI, _OV, _SC, _M, _DDI, _CDI, _TIr, _Dev, _ME],
|
|
1892
|
+
[[0, 1], 0, [() => ThirdPartyUserId, 0], 0, 1, [() => ConnectorEventMessage, 0], 0, [() => ConnectorDeviceId, 0], 0, [() => Devices, 0], [() => MatterEndpoint$, 0]], 2
|
|
1893
|
+
];
|
|
1894
|
+
var SendConnectorEventResponse$ = [3, n0, _SCERe,
|
|
1895
|
+
0,
|
|
1896
|
+
[_CIonn],
|
|
1897
|
+
[0], 1
|
|
1898
|
+
];
|
|
1899
|
+
var SendManagedThingCommandRequest$ = [3, n0, _SMTCR,
|
|
1900
|
+
0,
|
|
1901
|
+
[_MTI, _E, _CAI, _AAIc],
|
|
1902
|
+
[[0, 1], [() => CommandEndpoints, 0], 0, 0], 2
|
|
1903
|
+
];
|
|
1904
|
+
var SendManagedThingCommandResponse$ = [3, n0, _SMTCRe,
|
|
1905
|
+
0,
|
|
1906
|
+
[_TIr],
|
|
1907
|
+
[0]
|
|
1908
|
+
];
|
|
1909
|
+
var StartAccountAssociationRefreshRequest$ = [3, n0, _SAARR,
|
|
1910
|
+
0,
|
|
1911
|
+
[_AAIc],
|
|
1912
|
+
[[0, 1]], 1
|
|
1913
|
+
];
|
|
1914
|
+
var StartAccountAssociationRefreshResponse$ = [3, n0, _SAARRt,
|
|
1915
|
+
0,
|
|
1916
|
+
[_OAAU],
|
|
1917
|
+
[[() => OAuthAuthorizationUrlOutput, 0]], 1
|
|
1918
|
+
];
|
|
1919
|
+
var StartDeviceDiscoveryRequest$ = [3, n0, _SDDR,
|
|
1920
|
+
0,
|
|
1921
|
+
[_DT, _CPD, _CIont, _CAIo, _AAIc, _AMu, _AMT, _CT, _Ta, _CDIL, _P, _EDI],
|
|
1922
|
+
[0, 128 | 0, 0, 0, 0, [() => DiscoveryAuthMaterialString, 0], 0, 0, [() => TagsMap, 0], [() => ConnectorDeviceIdList, 0], 0, 0], 1
|
|
1923
|
+
];
|
|
1924
|
+
var StartDeviceDiscoveryResponse$ = [3, n0, _SDDRt,
|
|
1925
|
+
0,
|
|
1926
|
+
[_I, _SA],
|
|
1927
|
+
[0, 4]
|
|
1928
|
+
];
|
|
1929
|
+
var StateCapability$ = [3, n0, _SCt,
|
|
1930
|
+
0,
|
|
1931
|
+
[_i, _n, _v, _pr],
|
|
1932
|
+
[0, 0, 0, [() => CapabilityProperties, 0]], 3
|
|
1933
|
+
];
|
|
1934
|
+
var StateEndpoint$ = [3, n0, _SE,
|
|
1935
|
+
0,
|
|
1936
|
+
[_eI, _ca],
|
|
1937
|
+
[0, [() => StateCapabilities, 0]], 2
|
|
1938
|
+
];
|
|
1939
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1940
|
+
0,
|
|
1941
|
+
[_RAe, _Ta],
|
|
1942
|
+
[[0, 1], [() => TagsMap, 0]], 2
|
|
1943
|
+
];
|
|
1944
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1945
|
+
0,
|
|
1946
|
+
[],
|
|
1947
|
+
[]
|
|
1948
|
+
];
|
|
1949
|
+
var TaskProcessingDetails$ = [3, n0, _TPD,
|
|
1950
|
+
0,
|
|
1951
|
+
[_NOCT, _NOFT, _NOIPT, _nOQT, _nORT, _nORTu, _nOST, _nOTOT, _pT],
|
|
1952
|
+
[1, 1, 1, 1, 1, 1, 1, 1, 64 | 0]
|
|
1953
|
+
];
|
|
1954
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1955
|
+
0,
|
|
1956
|
+
[_RAe, _TK],
|
|
1957
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1958
|
+
];
|
|
1959
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1960
|
+
0,
|
|
1961
|
+
[],
|
|
1962
|
+
[]
|
|
1963
|
+
];
|
|
1964
|
+
var UpdateAccountAssociationRequest$ = [3, n0, _UAAR,
|
|
1965
|
+
0,
|
|
1966
|
+
[_AAIc, _N, _D],
|
|
1967
|
+
[[0, 1], 0, 0], 1
|
|
1968
|
+
];
|
|
1969
|
+
var UpdateCloudConnectorRequest$ = [3, n0, _UCCR,
|
|
1970
|
+
0,
|
|
1971
|
+
[_Id, _N, _D],
|
|
1972
|
+
[[0, 1], 0, 0], 1
|
|
1973
|
+
];
|
|
1974
|
+
var UpdateConnectorDestinationRequest$ = [3, n0, _UCDR,
|
|
1975
|
+
0,
|
|
1976
|
+
[_Id, _D, _N, _AT, _AC, _SM],
|
|
1977
|
+
[[0, 1], 0, 0, 0, () => AuthConfigUpdate$, () => SecretsManager$], 1
|
|
1978
|
+
];
|
|
1979
|
+
var UpdateDestinationRequest$ = [3, n0, _UDR,
|
|
1980
|
+
0,
|
|
1981
|
+
[_N, _DDA, _DDT, _RA, _D],
|
|
1982
|
+
[[0, 1], 0, 0, 0, 0], 1
|
|
1983
|
+
];
|
|
1984
|
+
var UpdateEventLogConfigurationRequest$ = [3, n0, _UELCR,
|
|
1985
|
+
0,
|
|
1986
|
+
[_I, _ELL],
|
|
1987
|
+
[[0, 1], 0], 2
|
|
1988
|
+
];
|
|
1989
|
+
var UpdateManagedThingRequest$ = [3, n0, _UMTR,
|
|
1990
|
+
0,
|
|
1991
|
+
[_Id, _O, _CLI, _SN, _WFSSC, _B, _Mo, _N, _CR, _CSa, _Ca, _C, _HNM, _MD],
|
|
1992
|
+
[[0, 1], [() => Owner, 0], 0, [() => SerialNumber, 0], () => WiFiSimpleSetupConfiguration$, [() => Brand, 0], [() => Model, 0], 0, () => CapabilityReport$, () => CapabilitySchemas, 0, [() => Classification, 0], 0, 128 | 0], 1
|
|
1993
|
+
];
|
|
1994
|
+
var UpdateNotificationConfigurationRequest$ = [3, n0, _UNCR,
|
|
1995
|
+
0,
|
|
1996
|
+
[_ETv, _DN],
|
|
1997
|
+
[[0, 1], 0], 2
|
|
1998
|
+
];
|
|
1999
|
+
var UpdateOtaTaskRequest$ = [3, n0, _UOTR,
|
|
2000
|
+
0,
|
|
2001
|
+
[_Id, _D, _TCI],
|
|
2002
|
+
[[0, 1], 0, 0], 1
|
|
2003
|
+
];
|
|
2004
|
+
var WiFiSimpleSetupConfiguration$ = [3, n0, _WFSSC,
|
|
2005
|
+
0,
|
|
2006
|
+
[_EAP, _EAPn, _TIM],
|
|
2007
|
+
[2, 2, 1]
|
|
2008
|
+
];
|
|
2009
|
+
var __Unit = "unit";
|
|
2010
|
+
var AbortConfigCriteriaList = [1, n0, _ACCL,
|
|
2011
|
+
0, () => AbortConfigCriteria$
|
|
2012
|
+
];
|
|
2013
|
+
var AccountAssociationListDefinition = [1, n0, _AALD,
|
|
2014
|
+
0, () => AccountAssociationItem$
|
|
2015
|
+
];
|
|
2016
|
+
var AuthMaterials = [1, n0, _AMut,
|
|
2017
|
+
0, () => AuthMaterial$
|
|
2018
|
+
];
|
|
2019
|
+
var CapabilityActions = [1, n0, _CAa,
|
|
2020
|
+
0, [() => CapabilityAction$,
|
|
2021
|
+
0]
|
|
2022
|
+
];
|
|
2023
|
+
var CapabilityReportCapabilities = [1, n0, _CRCa,
|
|
2024
|
+
0, () => CapabilityReportCapability$
|
|
2025
|
+
];
|
|
2026
|
+
var CapabilityReportEndpoints = [1, n0, _CREa,
|
|
2027
|
+
0, () => CapabilityReportEndpoint$
|
|
2028
|
+
];
|
|
2029
|
+
var CapabilitySchemas = [1, n0, _CSa,
|
|
2030
|
+
0, () => CapabilitySchemaItem$
|
|
2031
|
+
];
|
|
2032
|
+
var CommandCapabilities = [1, n0, _CCom,
|
|
2033
|
+
0, [() => CommandCapability$,
|
|
2034
|
+
0]
|
|
2035
|
+
];
|
|
2036
|
+
var CommandEndpoints = [1, n0, _CEom,
|
|
2037
|
+
0, [() => CommandEndpoint$,
|
|
2038
|
+
0]
|
|
2039
|
+
];
|
|
2040
|
+
var ConnectorDestinationListDefinition = [1, n0, _CDLD,
|
|
2041
|
+
0, () => ConnectorDestinationSummary$
|
|
2042
|
+
];
|
|
2043
|
+
var ConnectorDeviceIdList = [1, n0, _CDIL,
|
|
2044
|
+
0, [() => ConnectorDeviceId,
|
|
2045
|
+
0]
|
|
2046
|
+
];
|
|
2047
|
+
var ConnectorList = [1, n0, _CL,
|
|
2048
|
+
0, () => ConnectorItem$
|
|
2049
|
+
];
|
|
2050
|
+
var CredentialLockerListDefinition = [1, n0, _CLLD,
|
|
2051
|
+
0, [() => CredentialLockerSummary$,
|
|
2052
|
+
0]
|
|
2053
|
+
];
|
|
2054
|
+
var DestinationListDefinition = [1, n0, _DLD,
|
|
2055
|
+
0, () => DestinationSummary$
|
|
2056
|
+
];
|
|
2057
|
+
var DeviceDiscoveryListDefinition = [1, n0, _DDLD,
|
|
2058
|
+
0, () => DeviceDiscoverySummary$
|
|
2059
|
+
];
|
|
2060
|
+
var Devices = [1, n0, _Dev,
|
|
2061
|
+
0, [() => Device$,
|
|
2062
|
+
0]
|
|
2063
|
+
];
|
|
2064
|
+
var DiscoveredDeviceListDefinition = [1, n0, _DDLDi,
|
|
2065
|
+
0, [() => DiscoveredDeviceSummary$,
|
|
2066
|
+
0]
|
|
2067
|
+
];
|
|
2068
|
+
var EventLogConfigurationListDefinition = [1, n0, _ELCLD,
|
|
2069
|
+
0, () => EventLogConfigurationSummary$
|
|
2070
|
+
];
|
|
2071
|
+
var ManagedThingAssociationList = [1, n0, _MTAL,
|
|
2072
|
+
0, () => ManagedThingAssociation$
|
|
2073
|
+
];
|
|
2074
|
+
var ManagedThingListDefinition = [1, n0, _MTLD,
|
|
2075
|
+
0, [() => ManagedThingSummary$,
|
|
2076
|
+
0]
|
|
2077
|
+
];
|
|
2078
|
+
var ManagedThingSchemaListDefinition = [1, n0, _MTSLD,
|
|
2079
|
+
0, () => ManagedThingSchemaListItem$
|
|
2080
|
+
];
|
|
2081
|
+
var MatterCapabilityReportAttributes = [1, n0, _MCRAa,
|
|
2082
|
+
0, () => MatterCapabilityReportAttribute$
|
|
2083
|
+
];
|
|
2084
|
+
var MatterCapabilityReportClusters = [1, n0, _MCRCa,
|
|
2085
|
+
0, () => MatterCapabilityReportCluster$
|
|
2086
|
+
];
|
|
2087
|
+
var MatterCapabilityReportEndpoints = [1, n0, _MCREa,
|
|
2088
|
+
0, () => MatterCapabilityReportEndpoint$
|
|
2089
|
+
];
|
|
2090
|
+
var MatterClusters = [1, n0, _MCa,
|
|
2091
|
+
0, [() => MatterCluster$,
|
|
2092
|
+
0]
|
|
2093
|
+
];
|
|
2094
|
+
var NotificationConfigurationListDefinition = [1, n0, _NCLD,
|
|
2095
|
+
0, () => NotificationConfigurationSummary$
|
|
2096
|
+
];
|
|
2097
|
+
var OtaTaskConfigurationListDefinition = [1, n0, _OTCLD,
|
|
2098
|
+
0, [() => OtaTaskConfigurationSummary$,
|
|
2099
|
+
0]
|
|
2100
|
+
];
|
|
2101
|
+
var OtaTaskExecutionSummariesListDefinition = [1, n0, _OTESLD,
|
|
2102
|
+
0, () => OtaTaskExecutionSummaries$
|
|
2103
|
+
];
|
|
2104
|
+
var OtaTaskListDefinition = [1, n0, _OTLD,
|
|
2105
|
+
0, () => OtaTaskSummary$
|
|
2106
|
+
];
|
|
2107
|
+
var ProvisioningProfileListDefinition = [1, n0, _PPLD,
|
|
2108
|
+
0, () => ProvisioningProfileSummary$
|
|
2109
|
+
];
|
|
2110
|
+
var RetryConfigCriteriaList = [1, n0, _RCCL,
|
|
2111
|
+
0, () => RetryConfigCriteria$
|
|
2112
|
+
];
|
|
2113
|
+
var ScheduleMaintenanceWindowList = [1, n0, _SMWL,
|
|
2114
|
+
0, () => ScheduleMaintenanceWindow$
|
|
2115
|
+
];
|
|
2116
|
+
var SchemaVersionList = [1, n0, _SVL,
|
|
2117
|
+
0, () => SchemaVersionListItem$
|
|
2118
|
+
];
|
|
2119
|
+
var StateCapabilities = [1, n0, _SCta,
|
|
2120
|
+
0, [() => StateCapability$,
|
|
2121
|
+
0]
|
|
2122
|
+
];
|
|
2123
|
+
var StateEndpoints = [1, n0, _SEt,
|
|
2124
|
+
0, [() => StateEndpoint$,
|
|
2125
|
+
0]
|
|
2126
|
+
];
|
|
2127
|
+
var MatterCommands = [2, n0, _MCat,
|
|
2128
|
+
0, [0,
|
|
2129
|
+
0],
|
|
2130
|
+
[() => MatterFields,
|
|
2131
|
+
0]
|
|
2132
|
+
];
|
|
2133
|
+
var MatterEvents = [2, n0, _MEa,
|
|
2134
|
+
0, [0,
|
|
2135
|
+
0],
|
|
2136
|
+
[() => MatterFields,
|
|
2137
|
+
0]
|
|
2138
|
+
];
|
|
2139
|
+
var TagsMap = [2, n0, _TM,
|
|
2140
|
+
8, 0, 0
|
|
2141
|
+
];
|
|
2142
|
+
var CreateAccountAssociation$ = [9, n0, _CAA,
|
|
2143
|
+
{ [_h]: ["POST", "/account-associations", 201] }, () => CreateAccountAssociationRequest$, () => CreateAccountAssociationResponse$
|
|
2144
|
+
];
|
|
2145
|
+
var CreateCloudConnector$ = [9, n0, _CCC,
|
|
2146
|
+
{ [_h]: ["POST", "/cloud-connectors", 201] }, () => CreateCloudConnectorRequest$, () => CreateCloudConnectorResponse$
|
|
2147
|
+
];
|
|
2148
|
+
var CreateConnectorDestination$ = [9, n0, _CCD,
|
|
2149
|
+
{ [_h]: ["POST", "/connector-destinations", 201] }, () => CreateConnectorDestinationRequest$, () => CreateConnectorDestinationResponse$
|
|
2150
|
+
];
|
|
2151
|
+
var CreateCredentialLocker$ = [9, n0, _CCL,
|
|
2152
|
+
{ [_h]: ["POST", "/credential-lockers", 201] }, () => CreateCredentialLockerRequest$, () => CreateCredentialLockerResponse$
|
|
2153
|
+
];
|
|
2154
|
+
var CreateDestination$ = [9, n0, _CD,
|
|
2155
|
+
{ [_h]: ["POST", "/destinations", 201] }, () => CreateDestinationRequest$, () => CreateDestinationResponse$
|
|
2156
|
+
];
|
|
2157
|
+
var CreateEventLogConfiguration$ = [9, n0, _CELC,
|
|
2158
|
+
{ [_h]: ["POST", "/event-log-configurations", 201] }, () => CreateEventLogConfigurationRequest$, () => CreateEventLogConfigurationResponse$
|
|
2159
|
+
];
|
|
2160
|
+
var CreateManagedThing$ = [9, n0, _CMT,
|
|
2161
|
+
{ [_h]: ["POST", "/managed-things", 201] }, () => CreateManagedThingRequest$, () => CreateManagedThingResponse$
|
|
2162
|
+
];
|
|
2163
|
+
var CreateNotificationConfiguration$ = [9, n0, _CNC,
|
|
2164
|
+
{ [_h]: ["POST", "/notification-configurations", 201] }, () => CreateNotificationConfigurationRequest$, () => CreateNotificationConfigurationResponse$
|
|
2165
|
+
];
|
|
2166
|
+
var CreateOtaTask$ = [9, n0, _COT,
|
|
2167
|
+
{ [_h]: ["POST", "/ota-tasks", 201] }, () => CreateOtaTaskRequest$, () => CreateOtaTaskResponse$
|
|
2168
|
+
];
|
|
2169
|
+
var CreateOtaTaskConfiguration$ = [9, n0, _COTC,
|
|
2170
|
+
{ [_h]: ["POST", "/ota-task-configurations", 201] }, () => CreateOtaTaskConfigurationRequest$, () => CreateOtaTaskConfigurationResponse$
|
|
2171
|
+
];
|
|
2172
|
+
var CreateProvisioningProfile$ = [9, n0, _CPP,
|
|
2173
|
+
{ [_h]: ["POST", "/provisioning-profiles", 201] }, () => CreateProvisioningProfileRequest$, () => CreateProvisioningProfileResponse$
|
|
2174
|
+
];
|
|
2175
|
+
var DeleteAccountAssociation$ = [9, n0, _DAA,
|
|
2176
|
+
{ [_h]: ["DELETE", "/account-associations/{AccountAssociationId}", 200] }, () => DeleteAccountAssociationRequest$, () => __Unit
|
|
2177
|
+
];
|
|
2178
|
+
var DeleteCloudConnector$ = [9, n0, _DCC,
|
|
2179
|
+
{ [_h]: ["DELETE", "/cloud-connectors/{Identifier}", 200] }, () => DeleteCloudConnectorRequest$, () => __Unit
|
|
2180
|
+
];
|
|
2181
|
+
var DeleteConnectorDestination$ = [9, n0, _DCD,
|
|
2182
|
+
{ [_h]: ["DELETE", "/connector-destinations/{Identifier}", 200] }, () => DeleteConnectorDestinationRequest$, () => __Unit
|
|
2183
|
+
];
|
|
2184
|
+
var DeleteCredentialLocker$ = [9, n0, _DCL,
|
|
2185
|
+
{ [_h]: ["DELETE", "/credential-lockers/{Identifier}", 200] }, () => DeleteCredentialLockerRequest$, () => __Unit
|
|
2186
|
+
];
|
|
2187
|
+
var DeleteDestination$ = [9, n0, _DD,
|
|
2188
|
+
{ [_h]: ["DELETE", "/destinations/{Name}", 200] }, () => DeleteDestinationRequest$, () => __Unit
|
|
2189
|
+
];
|
|
2190
|
+
var DeleteEventLogConfiguration$ = [9, n0, _DELC,
|
|
2191
|
+
{ [_h]: ["DELETE", "/event-log-configurations/{Id}", 200] }, () => DeleteEventLogConfigurationRequest$, () => __Unit
|
|
2192
|
+
];
|
|
2193
|
+
var DeleteManagedThing$ = [9, n0, _DMT,
|
|
2194
|
+
{ [_h]: ["DELETE", "/managed-things/{Identifier}", 204] }, () => DeleteManagedThingRequest$, () => __Unit
|
|
2195
|
+
];
|
|
2196
|
+
var DeleteNotificationConfiguration$ = [9, n0, _DNC,
|
|
2197
|
+
{ [_h]: ["DELETE", "/notification-configurations/{EventType}", 200] }, () => DeleteNotificationConfigurationRequest$, () => __Unit
|
|
2198
|
+
];
|
|
2199
|
+
var DeleteOtaTask$ = [9, n0, _DOT,
|
|
2200
|
+
{ [_h]: ["DELETE", "/ota-tasks/{Identifier}", 200] }, () => DeleteOtaTaskRequest$, () => __Unit
|
|
2201
|
+
];
|
|
2202
|
+
var DeleteOtaTaskConfiguration$ = [9, n0, _DOTC,
|
|
2203
|
+
{ [_h]: ["DELETE", "/ota-task-configurations/{Identifier}", 204] }, () => DeleteOtaTaskConfigurationRequest$, () => __Unit
|
|
2204
|
+
];
|
|
2205
|
+
var DeleteProvisioningProfile$ = [9, n0, _DPP,
|
|
2206
|
+
{ [_h]: ["DELETE", "/provisioning-profiles/{Identifier}", 200] }, () => DeleteProvisioningProfileRequest$, () => __Unit
|
|
2207
|
+
];
|
|
2208
|
+
var DeregisterAccountAssociation$ = [9, n0, _DAAe,
|
|
2209
|
+
{ [_h]: ["PUT", "/managed-thing-associations/deregister", 200] }, () => DeregisterAccountAssociationRequest$, () => __Unit
|
|
2210
|
+
];
|
|
2211
|
+
var GetAccountAssociation$ = [9, n0, _GAA,
|
|
2212
|
+
{ [_h]: ["GET", "/account-associations/{AccountAssociationId}", 200] }, () => GetAccountAssociationRequest$, () => GetAccountAssociationResponse$
|
|
2213
|
+
];
|
|
2214
|
+
var GetCloudConnector$ = [9, n0, _GCC,
|
|
2215
|
+
{ [_h]: ["GET", "/cloud-connectors/{Identifier}", 200] }, () => GetCloudConnectorRequest$, () => GetCloudConnectorResponse$
|
|
2216
|
+
];
|
|
2217
|
+
var GetConnectorDestination$ = [9, n0, _GCD,
|
|
2218
|
+
{ [_h]: ["GET", "/connector-destinations/{Identifier}", 200] }, () => GetConnectorDestinationRequest$, () => GetConnectorDestinationResponse$
|
|
2219
|
+
];
|
|
2220
|
+
var GetCredentialLocker$ = [9, n0, _GCL,
|
|
2221
|
+
{ [_h]: ["GET", "/credential-lockers/{Identifier}", 200] }, () => GetCredentialLockerRequest$, () => GetCredentialLockerResponse$
|
|
2222
|
+
];
|
|
2223
|
+
var GetCustomEndpoint$ = [9, n0, _GCE,
|
|
2224
|
+
{ [_h]: ["GET", "/custom-endpoint", 200] }, () => GetCustomEndpointRequest$, () => GetCustomEndpointResponse$
|
|
2225
|
+
];
|
|
2226
|
+
var GetDefaultEncryptionConfiguration$ = [9, n0, _GDEC,
|
|
2227
|
+
{ [_h]: ["GET", "/configuration/account/encryption", 200] }, () => GetDefaultEncryptionConfigurationRequest$, () => GetDefaultEncryptionConfigurationResponse$
|
|
2228
|
+
];
|
|
2229
|
+
var GetDestination$ = [9, n0, _GD,
|
|
2230
|
+
{ [_h]: ["GET", "/destinations/{Name}", 200] }, () => GetDestinationRequest$, () => GetDestinationResponse$
|
|
2231
|
+
];
|
|
2232
|
+
var GetDeviceDiscovery$ = [9, n0, _GDD,
|
|
2233
|
+
{ [_h]: ["GET", "/device-discoveries/{Identifier}", 200] }, () => GetDeviceDiscoveryRequest$, () => GetDeviceDiscoveryResponse$
|
|
2234
|
+
];
|
|
2235
|
+
var GetEventLogConfiguration$ = [9, n0, _GELC,
|
|
2236
|
+
{ [_h]: ["GET", "/event-log-configurations/{Id}", 200] }, () => GetEventLogConfigurationRequest$, () => GetEventLogConfigurationResponse$
|
|
2237
|
+
];
|
|
2238
|
+
var GetHubConfiguration$ = [9, n0, _GHC,
|
|
2239
|
+
{ [_h]: ["GET", "/hub-configuration", 200] }, () => GetHubConfigurationRequest$, () => GetHubConfigurationResponse$
|
|
2240
|
+
];
|
|
2241
|
+
var GetManagedThing$ = [9, n0, _GMT,
|
|
2242
|
+
{ [_h]: ["GET", "/managed-things/{Identifier}", 200] }, () => GetManagedThingRequest$, () => GetManagedThingResponse$
|
|
2243
|
+
];
|
|
2244
|
+
var GetManagedThingCapabilities$ = [9, n0, _GMTC,
|
|
2245
|
+
{ [_h]: ["GET", "/managed-things-capabilities/{Identifier}", 200] }, () => GetManagedThingCapabilitiesRequest$, () => GetManagedThingCapabilitiesResponse$
|
|
2246
|
+
];
|
|
2247
|
+
var GetManagedThingCertificate$ = [9, n0, _GMTCe,
|
|
2248
|
+
{ [_h]: ["GET", "/managed-things-certificate/{Identifier}", 200] }, () => GetManagedThingCertificateRequest$, () => GetManagedThingCertificateResponse$
|
|
2249
|
+
];
|
|
2250
|
+
var GetManagedThingConnectivityData$ = [9, n0, _GMTCD,
|
|
2251
|
+
{ [_h]: ["POST", "/managed-things-connectivity-data/{Identifier}", 200] }, () => GetManagedThingConnectivityDataRequest$, () => GetManagedThingConnectivityDataResponse$
|
|
2252
|
+
];
|
|
2253
|
+
var GetManagedThingMetaData$ = [9, n0, _GMTMD,
|
|
2254
|
+
{ [_h]: ["GET", "/managed-things-metadata/{Identifier}", 200] }, () => GetManagedThingMetaDataRequest$, () => GetManagedThingMetaDataResponse$
|
|
2255
|
+
];
|
|
2256
|
+
var GetManagedThingState$ = [9, n0, _GMTS,
|
|
2257
|
+
{ [_h]: ["GET", "/managed-thing-states/{ManagedThingId}", 200] }, () => GetManagedThingStateRequest$, () => GetManagedThingStateResponse$
|
|
2258
|
+
];
|
|
2259
|
+
var GetNotificationConfiguration$ = [9, n0, _GNC,
|
|
2260
|
+
{ [_h]: ["GET", "/notification-configurations/{EventType}", 200] }, () => GetNotificationConfigurationRequest$, () => GetNotificationConfigurationResponse$
|
|
2261
|
+
];
|
|
2262
|
+
var GetOtaTask$ = [9, n0, _GOT,
|
|
2263
|
+
{ [_h]: ["GET", "/ota-tasks/{Identifier}", 200] }, () => GetOtaTaskRequest$, () => GetOtaTaskResponse$
|
|
2264
|
+
];
|
|
2265
|
+
var GetOtaTaskConfiguration$ = [9, n0, _GOTC,
|
|
2266
|
+
{ [_h]: ["GET", "/ota-task-configurations/{Identifier}", 200] }, () => GetOtaTaskConfigurationRequest$, () => GetOtaTaskConfigurationResponse$
|
|
2267
|
+
];
|
|
2268
|
+
var GetProvisioningProfile$ = [9, n0, _GPP,
|
|
2269
|
+
{ [_h]: ["GET", "/provisioning-profiles/{Identifier}", 200] }, () => GetProvisioningProfileRequest$, () => GetProvisioningProfileResponse$
|
|
2270
|
+
];
|
|
2271
|
+
var GetRuntimeLogConfiguration$ = [9, n0, _GRLC,
|
|
2272
|
+
{ [_h]: ["GET", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => GetRuntimeLogConfigurationRequest$, () => GetRuntimeLogConfigurationResponse$
|
|
2273
|
+
];
|
|
2274
|
+
var GetSchemaVersion$ = [9, n0, _GSV,
|
|
2275
|
+
{ [_h]: ["GET", "/schema-versions/{Type}/{SchemaVersionedId}", 200] }, () => GetSchemaVersionRequest$, () => GetSchemaVersionResponse$
|
|
2276
|
+
];
|
|
2277
|
+
var ListAccountAssociations$ = [9, n0, _LAA,
|
|
2278
|
+
{ [_h]: ["GET", "/account-associations", 200] }, () => ListAccountAssociationsRequest$, () => ListAccountAssociationsResponse$
|
|
2279
|
+
];
|
|
2280
|
+
var ListCloudConnectors$ = [9, n0, _LCC,
|
|
2281
|
+
{ [_h]: ["GET", "/cloud-connectors", 200] }, () => ListCloudConnectorsRequest$, () => ListCloudConnectorsResponse$
|
|
2282
|
+
];
|
|
2283
|
+
var ListConnectorDestinations$ = [9, n0, _LCD,
|
|
2284
|
+
{ [_h]: ["GET", "/connector-destinations", 200] }, () => ListConnectorDestinationsRequest$, () => ListConnectorDestinationsResponse$
|
|
2285
|
+
];
|
|
2286
|
+
var ListCredentialLockers$ = [9, n0, _LCL,
|
|
2287
|
+
{ [_h]: ["GET", "/credential-lockers", 200] }, () => ListCredentialLockersRequest$, () => ListCredentialLockersResponse$
|
|
2288
|
+
];
|
|
2289
|
+
var ListDestinations$ = [9, n0, _LD,
|
|
2290
|
+
{ [_h]: ["GET", "/destinations", 200] }, () => ListDestinationsRequest$, () => ListDestinationsResponse$
|
|
2291
|
+
];
|
|
2292
|
+
var ListDeviceDiscoveries$ = [9, n0, _LDD,
|
|
2293
|
+
{ [_h]: ["GET", "/device-discoveries", 200] }, () => ListDeviceDiscoveriesRequest$, () => ListDeviceDiscoveriesResponse$
|
|
2294
|
+
];
|
|
2295
|
+
var ListDiscoveredDevices$ = [9, n0, _LDDi,
|
|
2296
|
+
{ [_h]: ["GET", "/device-discoveries/{Identifier}/devices", 200] }, () => ListDiscoveredDevicesRequest$, () => ListDiscoveredDevicesResponse$
|
|
2297
|
+
];
|
|
2298
|
+
var ListEventLogConfigurations$ = [9, n0, _LELC,
|
|
2299
|
+
{ [_h]: ["GET", "/event-log-configurations", 200] }, () => ListEventLogConfigurationsRequest$, () => ListEventLogConfigurationsResponse$
|
|
2300
|
+
];
|
|
2301
|
+
var ListManagedThingAccountAssociations$ = [9, n0, _LMTAA,
|
|
2302
|
+
{ [_h]: ["GET", "/managed-thing-associations", 200] }, () => ListManagedThingAccountAssociationsRequest$, () => ListManagedThingAccountAssociationsResponse$
|
|
2303
|
+
];
|
|
2304
|
+
var ListManagedThings$ = [9, n0, _LMT,
|
|
2305
|
+
{ [_h]: ["GET", "/managed-things", 200] }, () => ListManagedThingsRequest$, () => ListManagedThingsResponse$
|
|
2306
|
+
];
|
|
2307
|
+
var ListManagedThingSchemas$ = [9, n0, _LMTS,
|
|
2308
|
+
{ [_h]: ["GET", "/managed-thing-schemas/{Identifier}", 200] }, () => ListManagedThingSchemasRequest$, () => ListManagedThingSchemasResponse$
|
|
2309
|
+
];
|
|
2310
|
+
var ListNotificationConfigurations$ = [9, n0, _LNC,
|
|
2311
|
+
{ [_h]: ["GET", "/notification-configurations", 200] }, () => ListNotificationConfigurationsRequest$, () => ListNotificationConfigurationsResponse$
|
|
2312
|
+
];
|
|
2313
|
+
var ListOtaTaskConfigurations$ = [9, n0, _LOTC,
|
|
2314
|
+
{ [_h]: ["GET", "/ota-task-configurations", 200] }, () => ListOtaTaskConfigurationsRequest$, () => ListOtaTaskConfigurationsResponse$
|
|
2315
|
+
];
|
|
2316
|
+
var ListOtaTaskExecutions$ = [9, n0, _LOTE,
|
|
2317
|
+
{ [_h]: ["GET", "/ota-tasks/{Identifier}/devices", 200] }, () => ListOtaTaskExecutionsRequest$, () => ListOtaTaskExecutionsResponse$
|
|
2318
|
+
];
|
|
2319
|
+
var ListOtaTasks$ = [9, n0, _LOT,
|
|
2320
|
+
{ [_h]: ["GET", "/ota-tasks", 200] }, () => ListOtaTasksRequest$, () => ListOtaTasksResponse$
|
|
2321
|
+
];
|
|
2322
|
+
var ListProvisioningProfiles$ = [9, n0, _LPP,
|
|
2323
|
+
{ [_h]: ["GET", "/provisioning-profiles", 200] }, () => ListProvisioningProfilesRequest$, () => ListProvisioningProfilesResponse$
|
|
2324
|
+
];
|
|
2325
|
+
var ListSchemaVersions$ = [9, n0, _LSV,
|
|
2326
|
+
{ [_h]: ["GET", "/schema-versions/{Type}", 200] }, () => ListSchemaVersionsRequest$, () => ListSchemaVersionsResponse$
|
|
2327
|
+
];
|
|
2328
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2329
|
+
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2330
|
+
];
|
|
2331
|
+
var PutDefaultEncryptionConfiguration$ = [9, n0, _PDEC,
|
|
2332
|
+
{ [_h]: ["POST", "/configuration/account/encryption", 201] }, () => PutDefaultEncryptionConfigurationRequest$, () => PutDefaultEncryptionConfigurationResponse$
|
|
2333
|
+
];
|
|
2334
|
+
var PutHubConfiguration$ = [9, n0, _PHC,
|
|
2335
|
+
{ [_h]: ["PUT", "/hub-configuration", 201] }, () => PutHubConfigurationRequest$, () => PutHubConfigurationResponse$
|
|
2336
|
+
];
|
|
2337
|
+
var PutRuntimeLogConfiguration$ = [9, n0, _PRLC,
|
|
2338
|
+
{ [_h]: ["PUT", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => PutRuntimeLogConfigurationRequest$, () => __Unit
|
|
2339
|
+
];
|
|
2340
|
+
var RegisterAccountAssociation$ = [9, n0, _RAA,
|
|
2341
|
+
{ [_h]: ["PUT", "/managed-thing-associations/register", 201] }, () => RegisterAccountAssociationRequest$, () => RegisterAccountAssociationResponse$
|
|
2342
|
+
];
|
|
2343
|
+
var RegisterCustomEndpoint$ = [9, n0, _RCE,
|
|
2344
|
+
{ [_h]: ["POST", "/custom-endpoint", 201] }, () => RegisterCustomEndpointRequest$, () => RegisterCustomEndpointResponse$
|
|
2345
|
+
];
|
|
2346
|
+
var ResetRuntimeLogConfiguration$ = [9, n0, _RRLC,
|
|
2347
|
+
{ [_h]: ["DELETE", "/runtime-log-configurations/{ManagedThingId}", 200] }, () => ResetRuntimeLogConfigurationRequest$, () => __Unit
|
|
2348
|
+
];
|
|
2349
|
+
var SendConnectorEvent$ = [9, n0, _SCE,
|
|
2350
|
+
{ [_h]: ["POST", "/connector-event/{ConnectorId}", 202] }, () => SendConnectorEventRequest$, () => SendConnectorEventResponse$
|
|
2351
|
+
];
|
|
2352
|
+
var SendManagedThingCommand$ = [9, n0, _SMTC,
|
|
2353
|
+
{ [_h]: ["POST", "/managed-things-command/{ManagedThingId}", 202] }, () => SendManagedThingCommandRequest$, () => SendManagedThingCommandResponse$
|
|
2354
|
+
];
|
|
2355
|
+
var StartAccountAssociationRefresh$ = [9, n0, _SAAR,
|
|
2356
|
+
{ [_h]: ["POST", "/account-associations/{AccountAssociationId}/refresh", 200] }, () => StartAccountAssociationRefreshRequest$, () => StartAccountAssociationRefreshResponse$
|
|
2357
|
+
];
|
|
2358
|
+
var StartDeviceDiscovery$ = [9, n0, _SDD,
|
|
2359
|
+
{ [_h]: ["POST", "/device-discoveries", 201] }, () => StartDeviceDiscoveryRequest$, () => StartDeviceDiscoveryResponse$
|
|
2360
|
+
];
|
|
2361
|
+
var TagResource$ = [9, n0, _TR,
|
|
2362
|
+
{ [_h]: ["POST", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2363
|
+
];
|
|
2364
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2365
|
+
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2366
|
+
];
|
|
2367
|
+
var UpdateAccountAssociation$ = [9, n0, _UAA,
|
|
2368
|
+
{ [_h]: ["PUT", "/account-associations/{AccountAssociationId}", 204] }, () => UpdateAccountAssociationRequest$, () => __Unit
|
|
2369
|
+
];
|
|
2370
|
+
var UpdateCloudConnector$ = [9, n0, _UCC,
|
|
2371
|
+
{ [_h]: ["PUT", "/cloud-connectors/{Identifier}", 200] }, () => UpdateCloudConnectorRequest$, () => __Unit
|
|
2372
|
+
];
|
|
2373
|
+
var UpdateConnectorDestination$ = [9, n0, _UCD,
|
|
2374
|
+
{ [_h]: ["PUT", "/connector-destinations/{Identifier}", 204] }, () => UpdateConnectorDestinationRequest$, () => __Unit
|
|
2375
|
+
];
|
|
2376
|
+
var UpdateDestination$ = [9, n0, _UD,
|
|
2377
|
+
{ [_h]: ["PUT", "/destinations/{Name}", 201] }, () => UpdateDestinationRequest$, () => __Unit
|
|
2378
|
+
];
|
|
2379
|
+
var UpdateEventLogConfiguration$ = [9, n0, _UELC,
|
|
2380
|
+
{ [_h]: ["PATCH", "/event-log-configurations/{Id}", 200] }, () => UpdateEventLogConfigurationRequest$, () => __Unit
|
|
2381
|
+
];
|
|
2382
|
+
var UpdateManagedThing$ = [9, n0, _UMT,
|
|
2383
|
+
{ [_h]: ["PUT", "/managed-things/{Identifier}", 204] }, () => UpdateManagedThingRequest$, () => __Unit
|
|
2384
|
+
];
|
|
2385
|
+
var UpdateNotificationConfiguration$ = [9, n0, _UNC,
|
|
2386
|
+
{ [_h]: ["PUT", "/notification-configurations/{EventType}", 201] }, () => UpdateNotificationConfigurationRequest$, () => __Unit
|
|
2387
|
+
];
|
|
2388
|
+
var UpdateOtaTask$ = [9, n0, _UOT,
|
|
2389
|
+
{ [_h]: ["PUT", "/ota-tasks/{Identifier}", 204] }, () => UpdateOtaTaskRequest$, () => __Unit
|
|
2390
|
+
];
|
|
2391
|
+
|
|
2392
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2393
|
+
return {
|
|
2394
|
+
apiVersion: "2025-03-03",
|
|
2395
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2396
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2397
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2398
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2399
|
+
extensions: config?.extensions ?? [],
|
|
2400
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultIoTManagedIntegrationsHttpAuthSchemeProvider,
|
|
2401
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2402
|
+
{
|
|
2403
|
+
schemeId: "aws.auth#sigv4",
|
|
2404
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2405
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2406
|
+
},
|
|
2407
|
+
],
|
|
2408
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2409
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2410
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2411
|
+
defaultNamespace: "com.amazonaws.iotmanagedintegrations",
|
|
2412
|
+
errorTypeRegistries,
|
|
2413
|
+
version: "2025-03-03",
|
|
2414
|
+
serviceTarget: "IotManagedIntegrations",
|
|
2415
|
+
},
|
|
2416
|
+
serviceId: config?.serviceId ?? "IoT Managed Integrations",
|
|
2417
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2418
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2419
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2420
|
+
};
|
|
2421
|
+
};
|
|
2422
|
+
|
|
2423
|
+
const getRuntimeConfig = (config) => {
|
|
2424
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2425
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2426
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2427
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2428
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2429
|
+
const loaderConfig = {
|
|
2430
|
+
profile: config?.profile,
|
|
2431
|
+
logger: clientSharedValues.logger,
|
|
2432
|
+
};
|
|
2433
|
+
return {
|
|
2434
|
+
...clientSharedValues,
|
|
2435
|
+
...config,
|
|
2436
|
+
runtime: "node",
|
|
2437
|
+
defaultsMode,
|
|
2438
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2439
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2440
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2441
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2442
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2443
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2444
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2445
|
+
retryMode: config?.retryMode ??
|
|
2446
|
+
loadConfig({
|
|
2447
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2448
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2449
|
+
}, config),
|
|
2450
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2451
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2452
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2453
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2454
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2455
|
+
};
|
|
2456
|
+
};
|
|
2457
|
+
|
|
32
2458
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
33
2459
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
34
2460
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1448,127 +3874,442 @@ const OtaTaskExecutionStatus = {
|
|
|
1448
3874
|
TIMED_OUT: "TIMED_OUT",
|
|
1449
3875
|
};
|
|
1450
3876
|
|
|
3877
|
+
exports.AbortConfigCriteria$ = AbortConfigCriteria$;
|
|
1451
3878
|
exports.AbortCriteriaAction = AbortCriteriaAction;
|
|
1452
3879
|
exports.AbortCriteriaFailureType = AbortCriteriaFailureType;
|
|
3880
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3881
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3882
|
+
exports.AccountAssociationItem$ = AccountAssociationItem$;
|
|
1453
3883
|
exports.AssociationState = AssociationState;
|
|
3884
|
+
exports.AuthConfig$ = AuthConfig$;
|
|
3885
|
+
exports.AuthConfigUpdate$ = AuthConfigUpdate$;
|
|
3886
|
+
exports.AuthMaterial$ = AuthMaterial$;
|
|
1454
3887
|
exports.AuthMaterialType = AuthMaterialType;
|
|
1455
3888
|
exports.AuthType = AuthType;
|
|
3889
|
+
exports.CapabilityAction$ = CapabilityAction$;
|
|
3890
|
+
exports.CapabilityReport$ = CapabilityReport$;
|
|
3891
|
+
exports.CapabilityReportCapability$ = CapabilityReportCapability$;
|
|
3892
|
+
exports.CapabilityReportEndpoint$ = CapabilityReportEndpoint$;
|
|
3893
|
+
exports.CapabilitySchemaItem$ = CapabilitySchemaItem$;
|
|
1456
3894
|
exports.CloudConnectorType = CloudConnectorType;
|
|
3895
|
+
exports.CommandCapability$ = CommandCapability$;
|
|
3896
|
+
exports.CommandEndpoint$ = CommandEndpoint$;
|
|
3897
|
+
exports.ConfigurationError$ = ConfigurationError$;
|
|
1457
3898
|
exports.ConfigurationState = ConfigurationState;
|
|
3899
|
+
exports.ConfigurationStatus$ = ConfigurationStatus$;
|
|
3900
|
+
exports.ConflictException = ConflictException;
|
|
3901
|
+
exports.ConflictException$ = ConflictException$;
|
|
3902
|
+
exports.ConnectorDestinationSummary$ = ConnectorDestinationSummary$;
|
|
1458
3903
|
exports.ConnectorEventOperation = ConnectorEventOperation;
|
|
3904
|
+
exports.ConnectorItem$ = ConnectorItem$;
|
|
3905
|
+
exports.CreateAccountAssociation$ = CreateAccountAssociation$;
|
|
1459
3906
|
exports.CreateAccountAssociationCommand = CreateAccountAssociationCommand;
|
|
3907
|
+
exports.CreateAccountAssociationRequest$ = CreateAccountAssociationRequest$;
|
|
3908
|
+
exports.CreateAccountAssociationResponse$ = CreateAccountAssociationResponse$;
|
|
3909
|
+
exports.CreateCloudConnector$ = CreateCloudConnector$;
|
|
1460
3910
|
exports.CreateCloudConnectorCommand = CreateCloudConnectorCommand;
|
|
3911
|
+
exports.CreateCloudConnectorRequest$ = CreateCloudConnectorRequest$;
|
|
3912
|
+
exports.CreateCloudConnectorResponse$ = CreateCloudConnectorResponse$;
|
|
3913
|
+
exports.CreateConnectorDestination$ = CreateConnectorDestination$;
|
|
1461
3914
|
exports.CreateConnectorDestinationCommand = CreateConnectorDestinationCommand;
|
|
3915
|
+
exports.CreateConnectorDestinationRequest$ = CreateConnectorDestinationRequest$;
|
|
3916
|
+
exports.CreateConnectorDestinationResponse$ = CreateConnectorDestinationResponse$;
|
|
3917
|
+
exports.CreateCredentialLocker$ = CreateCredentialLocker$;
|
|
1462
3918
|
exports.CreateCredentialLockerCommand = CreateCredentialLockerCommand;
|
|
3919
|
+
exports.CreateCredentialLockerRequest$ = CreateCredentialLockerRequest$;
|
|
3920
|
+
exports.CreateCredentialLockerResponse$ = CreateCredentialLockerResponse$;
|
|
3921
|
+
exports.CreateDestination$ = CreateDestination$;
|
|
1463
3922
|
exports.CreateDestinationCommand = CreateDestinationCommand;
|
|
3923
|
+
exports.CreateDestinationRequest$ = CreateDestinationRequest$;
|
|
3924
|
+
exports.CreateDestinationResponse$ = CreateDestinationResponse$;
|
|
3925
|
+
exports.CreateEventLogConfiguration$ = CreateEventLogConfiguration$;
|
|
1464
3926
|
exports.CreateEventLogConfigurationCommand = CreateEventLogConfigurationCommand;
|
|
3927
|
+
exports.CreateEventLogConfigurationRequest$ = CreateEventLogConfigurationRequest$;
|
|
3928
|
+
exports.CreateEventLogConfigurationResponse$ = CreateEventLogConfigurationResponse$;
|
|
3929
|
+
exports.CreateManagedThing$ = CreateManagedThing$;
|
|
1465
3930
|
exports.CreateManagedThingCommand = CreateManagedThingCommand;
|
|
3931
|
+
exports.CreateManagedThingRequest$ = CreateManagedThingRequest$;
|
|
3932
|
+
exports.CreateManagedThingResponse$ = CreateManagedThingResponse$;
|
|
3933
|
+
exports.CreateNotificationConfiguration$ = CreateNotificationConfiguration$;
|
|
1466
3934
|
exports.CreateNotificationConfigurationCommand = CreateNotificationConfigurationCommand;
|
|
3935
|
+
exports.CreateNotificationConfigurationRequest$ = CreateNotificationConfigurationRequest$;
|
|
3936
|
+
exports.CreateNotificationConfigurationResponse$ = CreateNotificationConfigurationResponse$;
|
|
3937
|
+
exports.CreateOtaTask$ = CreateOtaTask$;
|
|
1467
3938
|
exports.CreateOtaTaskCommand = CreateOtaTaskCommand;
|
|
3939
|
+
exports.CreateOtaTaskConfiguration$ = CreateOtaTaskConfiguration$;
|
|
1468
3940
|
exports.CreateOtaTaskConfigurationCommand = CreateOtaTaskConfigurationCommand;
|
|
3941
|
+
exports.CreateOtaTaskConfigurationRequest$ = CreateOtaTaskConfigurationRequest$;
|
|
3942
|
+
exports.CreateOtaTaskConfigurationResponse$ = CreateOtaTaskConfigurationResponse$;
|
|
3943
|
+
exports.CreateOtaTaskRequest$ = CreateOtaTaskRequest$;
|
|
3944
|
+
exports.CreateOtaTaskResponse$ = CreateOtaTaskResponse$;
|
|
3945
|
+
exports.CreateProvisioningProfile$ = CreateProvisioningProfile$;
|
|
1469
3946
|
exports.CreateProvisioningProfileCommand = CreateProvisioningProfileCommand;
|
|
3947
|
+
exports.CreateProvisioningProfileRequest$ = CreateProvisioningProfileRequest$;
|
|
3948
|
+
exports.CreateProvisioningProfileResponse$ = CreateProvisioningProfileResponse$;
|
|
3949
|
+
exports.CredentialLockerSummary$ = CredentialLockerSummary$;
|
|
3950
|
+
exports.DeleteAccountAssociation$ = DeleteAccountAssociation$;
|
|
1470
3951
|
exports.DeleteAccountAssociationCommand = DeleteAccountAssociationCommand;
|
|
3952
|
+
exports.DeleteAccountAssociationRequest$ = DeleteAccountAssociationRequest$;
|
|
3953
|
+
exports.DeleteCloudConnector$ = DeleteCloudConnector$;
|
|
1471
3954
|
exports.DeleteCloudConnectorCommand = DeleteCloudConnectorCommand;
|
|
3955
|
+
exports.DeleteCloudConnectorRequest$ = DeleteCloudConnectorRequest$;
|
|
3956
|
+
exports.DeleteConnectorDestination$ = DeleteConnectorDestination$;
|
|
1472
3957
|
exports.DeleteConnectorDestinationCommand = DeleteConnectorDestinationCommand;
|
|
3958
|
+
exports.DeleteConnectorDestinationRequest$ = DeleteConnectorDestinationRequest$;
|
|
3959
|
+
exports.DeleteCredentialLocker$ = DeleteCredentialLocker$;
|
|
1473
3960
|
exports.DeleteCredentialLockerCommand = DeleteCredentialLockerCommand;
|
|
3961
|
+
exports.DeleteCredentialLockerRequest$ = DeleteCredentialLockerRequest$;
|
|
3962
|
+
exports.DeleteDestination$ = DeleteDestination$;
|
|
1474
3963
|
exports.DeleteDestinationCommand = DeleteDestinationCommand;
|
|
3964
|
+
exports.DeleteDestinationRequest$ = DeleteDestinationRequest$;
|
|
3965
|
+
exports.DeleteEventLogConfiguration$ = DeleteEventLogConfiguration$;
|
|
1475
3966
|
exports.DeleteEventLogConfigurationCommand = DeleteEventLogConfigurationCommand;
|
|
3967
|
+
exports.DeleteEventLogConfigurationRequest$ = DeleteEventLogConfigurationRequest$;
|
|
3968
|
+
exports.DeleteManagedThing$ = DeleteManagedThing$;
|
|
1476
3969
|
exports.DeleteManagedThingCommand = DeleteManagedThingCommand;
|
|
3970
|
+
exports.DeleteManagedThingRequest$ = DeleteManagedThingRequest$;
|
|
3971
|
+
exports.DeleteNotificationConfiguration$ = DeleteNotificationConfiguration$;
|
|
1477
3972
|
exports.DeleteNotificationConfigurationCommand = DeleteNotificationConfigurationCommand;
|
|
3973
|
+
exports.DeleteNotificationConfigurationRequest$ = DeleteNotificationConfigurationRequest$;
|
|
3974
|
+
exports.DeleteOtaTask$ = DeleteOtaTask$;
|
|
1478
3975
|
exports.DeleteOtaTaskCommand = DeleteOtaTaskCommand;
|
|
3976
|
+
exports.DeleteOtaTaskConfiguration$ = DeleteOtaTaskConfiguration$;
|
|
1479
3977
|
exports.DeleteOtaTaskConfigurationCommand = DeleteOtaTaskConfigurationCommand;
|
|
3978
|
+
exports.DeleteOtaTaskConfigurationRequest$ = DeleteOtaTaskConfigurationRequest$;
|
|
3979
|
+
exports.DeleteOtaTaskRequest$ = DeleteOtaTaskRequest$;
|
|
3980
|
+
exports.DeleteProvisioningProfile$ = DeleteProvisioningProfile$;
|
|
1480
3981
|
exports.DeleteProvisioningProfileCommand = DeleteProvisioningProfileCommand;
|
|
3982
|
+
exports.DeleteProvisioningProfileRequest$ = DeleteProvisioningProfileRequest$;
|
|
1481
3983
|
exports.DeliveryDestinationType = DeliveryDestinationType;
|
|
3984
|
+
exports.DeregisterAccountAssociation$ = DeregisterAccountAssociation$;
|
|
1482
3985
|
exports.DeregisterAccountAssociationCommand = DeregisterAccountAssociationCommand;
|
|
3986
|
+
exports.DeregisterAccountAssociationRequest$ = DeregisterAccountAssociationRequest$;
|
|
3987
|
+
exports.DestinationSummary$ = DestinationSummary$;
|
|
3988
|
+
exports.Device$ = Device$;
|
|
1483
3989
|
exports.DeviceDiscoveryStatus = DeviceDiscoveryStatus;
|
|
3990
|
+
exports.DeviceDiscoverySummary$ = DeviceDiscoverySummary$;
|
|
1484
3991
|
exports.DisconnectReasonValue = DisconnectReasonValue;
|
|
3992
|
+
exports.DiscoveredDeviceSummary$ = DiscoveredDeviceSummary$;
|
|
1485
3993
|
exports.DiscoveryAuthMaterialType = DiscoveryAuthMaterialType;
|
|
1486
3994
|
exports.DiscoveryModification = DiscoveryModification;
|
|
1487
3995
|
exports.DiscoveryType = DiscoveryType;
|
|
1488
3996
|
exports.EncryptionType = EncryptionType;
|
|
3997
|
+
exports.EndpointConfig$ = EndpointConfig$;
|
|
1489
3998
|
exports.EndpointType = EndpointType;
|
|
3999
|
+
exports.EventLogConfigurationSummary$ = EventLogConfigurationSummary$;
|
|
1490
4000
|
exports.EventType = EventType;
|
|
4001
|
+
exports.ExponentialRolloutRate$ = ExponentialRolloutRate$;
|
|
4002
|
+
exports.GeneralAuthorizationName$ = GeneralAuthorizationName$;
|
|
4003
|
+
exports.GeneralAuthorizationUpdate$ = GeneralAuthorizationUpdate$;
|
|
4004
|
+
exports.GetAccountAssociation$ = GetAccountAssociation$;
|
|
1491
4005
|
exports.GetAccountAssociationCommand = GetAccountAssociationCommand;
|
|
4006
|
+
exports.GetAccountAssociationRequest$ = GetAccountAssociationRequest$;
|
|
4007
|
+
exports.GetAccountAssociationResponse$ = GetAccountAssociationResponse$;
|
|
4008
|
+
exports.GetCloudConnector$ = GetCloudConnector$;
|
|
1492
4009
|
exports.GetCloudConnectorCommand = GetCloudConnectorCommand;
|
|
4010
|
+
exports.GetCloudConnectorRequest$ = GetCloudConnectorRequest$;
|
|
4011
|
+
exports.GetCloudConnectorResponse$ = GetCloudConnectorResponse$;
|
|
4012
|
+
exports.GetConnectorDestination$ = GetConnectorDestination$;
|
|
1493
4013
|
exports.GetConnectorDestinationCommand = GetConnectorDestinationCommand;
|
|
4014
|
+
exports.GetConnectorDestinationRequest$ = GetConnectorDestinationRequest$;
|
|
4015
|
+
exports.GetConnectorDestinationResponse$ = GetConnectorDestinationResponse$;
|
|
4016
|
+
exports.GetCredentialLocker$ = GetCredentialLocker$;
|
|
1494
4017
|
exports.GetCredentialLockerCommand = GetCredentialLockerCommand;
|
|
4018
|
+
exports.GetCredentialLockerRequest$ = GetCredentialLockerRequest$;
|
|
4019
|
+
exports.GetCredentialLockerResponse$ = GetCredentialLockerResponse$;
|
|
4020
|
+
exports.GetCustomEndpoint$ = GetCustomEndpoint$;
|
|
1495
4021
|
exports.GetCustomEndpointCommand = GetCustomEndpointCommand;
|
|
4022
|
+
exports.GetCustomEndpointRequest$ = GetCustomEndpointRequest$;
|
|
4023
|
+
exports.GetCustomEndpointResponse$ = GetCustomEndpointResponse$;
|
|
4024
|
+
exports.GetDefaultEncryptionConfiguration$ = GetDefaultEncryptionConfiguration$;
|
|
1496
4025
|
exports.GetDefaultEncryptionConfigurationCommand = GetDefaultEncryptionConfigurationCommand;
|
|
4026
|
+
exports.GetDefaultEncryptionConfigurationRequest$ = GetDefaultEncryptionConfigurationRequest$;
|
|
4027
|
+
exports.GetDefaultEncryptionConfigurationResponse$ = GetDefaultEncryptionConfigurationResponse$;
|
|
4028
|
+
exports.GetDestination$ = GetDestination$;
|
|
1497
4029
|
exports.GetDestinationCommand = GetDestinationCommand;
|
|
4030
|
+
exports.GetDestinationRequest$ = GetDestinationRequest$;
|
|
4031
|
+
exports.GetDestinationResponse$ = GetDestinationResponse$;
|
|
4032
|
+
exports.GetDeviceDiscovery$ = GetDeviceDiscovery$;
|
|
1498
4033
|
exports.GetDeviceDiscoveryCommand = GetDeviceDiscoveryCommand;
|
|
4034
|
+
exports.GetDeviceDiscoveryRequest$ = GetDeviceDiscoveryRequest$;
|
|
4035
|
+
exports.GetDeviceDiscoveryResponse$ = GetDeviceDiscoveryResponse$;
|
|
4036
|
+
exports.GetEventLogConfiguration$ = GetEventLogConfiguration$;
|
|
1499
4037
|
exports.GetEventLogConfigurationCommand = GetEventLogConfigurationCommand;
|
|
4038
|
+
exports.GetEventLogConfigurationRequest$ = GetEventLogConfigurationRequest$;
|
|
4039
|
+
exports.GetEventLogConfigurationResponse$ = GetEventLogConfigurationResponse$;
|
|
4040
|
+
exports.GetHubConfiguration$ = GetHubConfiguration$;
|
|
1500
4041
|
exports.GetHubConfigurationCommand = GetHubConfigurationCommand;
|
|
4042
|
+
exports.GetHubConfigurationRequest$ = GetHubConfigurationRequest$;
|
|
4043
|
+
exports.GetHubConfigurationResponse$ = GetHubConfigurationResponse$;
|
|
4044
|
+
exports.GetManagedThing$ = GetManagedThing$;
|
|
4045
|
+
exports.GetManagedThingCapabilities$ = GetManagedThingCapabilities$;
|
|
1501
4046
|
exports.GetManagedThingCapabilitiesCommand = GetManagedThingCapabilitiesCommand;
|
|
4047
|
+
exports.GetManagedThingCapabilitiesRequest$ = GetManagedThingCapabilitiesRequest$;
|
|
4048
|
+
exports.GetManagedThingCapabilitiesResponse$ = GetManagedThingCapabilitiesResponse$;
|
|
4049
|
+
exports.GetManagedThingCertificate$ = GetManagedThingCertificate$;
|
|
1502
4050
|
exports.GetManagedThingCertificateCommand = GetManagedThingCertificateCommand;
|
|
4051
|
+
exports.GetManagedThingCertificateRequest$ = GetManagedThingCertificateRequest$;
|
|
4052
|
+
exports.GetManagedThingCertificateResponse$ = GetManagedThingCertificateResponse$;
|
|
1503
4053
|
exports.GetManagedThingCommand = GetManagedThingCommand;
|
|
4054
|
+
exports.GetManagedThingConnectivityData$ = GetManagedThingConnectivityData$;
|
|
1504
4055
|
exports.GetManagedThingConnectivityDataCommand = GetManagedThingConnectivityDataCommand;
|
|
4056
|
+
exports.GetManagedThingConnectivityDataRequest$ = GetManagedThingConnectivityDataRequest$;
|
|
4057
|
+
exports.GetManagedThingConnectivityDataResponse$ = GetManagedThingConnectivityDataResponse$;
|
|
4058
|
+
exports.GetManagedThingMetaData$ = GetManagedThingMetaData$;
|
|
1505
4059
|
exports.GetManagedThingMetaDataCommand = GetManagedThingMetaDataCommand;
|
|
4060
|
+
exports.GetManagedThingMetaDataRequest$ = GetManagedThingMetaDataRequest$;
|
|
4061
|
+
exports.GetManagedThingMetaDataResponse$ = GetManagedThingMetaDataResponse$;
|
|
4062
|
+
exports.GetManagedThingRequest$ = GetManagedThingRequest$;
|
|
4063
|
+
exports.GetManagedThingResponse$ = GetManagedThingResponse$;
|
|
4064
|
+
exports.GetManagedThingState$ = GetManagedThingState$;
|
|
1506
4065
|
exports.GetManagedThingStateCommand = GetManagedThingStateCommand;
|
|
4066
|
+
exports.GetManagedThingStateRequest$ = GetManagedThingStateRequest$;
|
|
4067
|
+
exports.GetManagedThingStateResponse$ = GetManagedThingStateResponse$;
|
|
4068
|
+
exports.GetNotificationConfiguration$ = GetNotificationConfiguration$;
|
|
1507
4069
|
exports.GetNotificationConfigurationCommand = GetNotificationConfigurationCommand;
|
|
4070
|
+
exports.GetNotificationConfigurationRequest$ = GetNotificationConfigurationRequest$;
|
|
4071
|
+
exports.GetNotificationConfigurationResponse$ = GetNotificationConfigurationResponse$;
|
|
4072
|
+
exports.GetOtaTask$ = GetOtaTask$;
|
|
1508
4073
|
exports.GetOtaTaskCommand = GetOtaTaskCommand;
|
|
4074
|
+
exports.GetOtaTaskConfiguration$ = GetOtaTaskConfiguration$;
|
|
1509
4075
|
exports.GetOtaTaskConfigurationCommand = GetOtaTaskConfigurationCommand;
|
|
4076
|
+
exports.GetOtaTaskConfigurationRequest$ = GetOtaTaskConfigurationRequest$;
|
|
4077
|
+
exports.GetOtaTaskConfigurationResponse$ = GetOtaTaskConfigurationResponse$;
|
|
4078
|
+
exports.GetOtaTaskRequest$ = GetOtaTaskRequest$;
|
|
4079
|
+
exports.GetOtaTaskResponse$ = GetOtaTaskResponse$;
|
|
4080
|
+
exports.GetProvisioningProfile$ = GetProvisioningProfile$;
|
|
1510
4081
|
exports.GetProvisioningProfileCommand = GetProvisioningProfileCommand;
|
|
4082
|
+
exports.GetProvisioningProfileRequest$ = GetProvisioningProfileRequest$;
|
|
4083
|
+
exports.GetProvisioningProfileResponse$ = GetProvisioningProfileResponse$;
|
|
4084
|
+
exports.GetRuntimeLogConfiguration$ = GetRuntimeLogConfiguration$;
|
|
1511
4085
|
exports.GetRuntimeLogConfigurationCommand = GetRuntimeLogConfigurationCommand;
|
|
4086
|
+
exports.GetRuntimeLogConfigurationRequest$ = GetRuntimeLogConfigurationRequest$;
|
|
4087
|
+
exports.GetRuntimeLogConfigurationResponse$ = GetRuntimeLogConfigurationResponse$;
|
|
4088
|
+
exports.GetSchemaVersion$ = GetSchemaVersion$;
|
|
1512
4089
|
exports.GetSchemaVersionCommand = GetSchemaVersionCommand;
|
|
4090
|
+
exports.GetSchemaVersionRequest$ = GetSchemaVersionRequest$;
|
|
4091
|
+
exports.GetSchemaVersionResponse$ = GetSchemaVersionResponse$;
|
|
1513
4092
|
exports.HubNetworkMode = HubNetworkMode;
|
|
4093
|
+
exports.InternalFailureException = InternalFailureException;
|
|
4094
|
+
exports.InternalFailureException$ = InternalFailureException$;
|
|
4095
|
+
exports.InternalServerException = InternalServerException;
|
|
4096
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
4097
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
4098
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
1514
4099
|
exports.IoTManagedIntegrations = IoTManagedIntegrations;
|
|
1515
4100
|
exports.IoTManagedIntegrationsClient = IoTManagedIntegrationsClient;
|
|
4101
|
+
exports.IoTManagedIntegrationsServiceException = IoTManagedIntegrationsServiceException;
|
|
4102
|
+
exports.IoTManagedIntegrationsServiceException$ = IoTManagedIntegrationsServiceException$;
|
|
4103
|
+
exports.LambdaConfig$ = LambdaConfig$;
|
|
4104
|
+
exports.LimitExceededException = LimitExceededException;
|
|
4105
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
4106
|
+
exports.ListAccountAssociations$ = ListAccountAssociations$;
|
|
1516
4107
|
exports.ListAccountAssociationsCommand = ListAccountAssociationsCommand;
|
|
4108
|
+
exports.ListAccountAssociationsRequest$ = ListAccountAssociationsRequest$;
|
|
4109
|
+
exports.ListAccountAssociationsResponse$ = ListAccountAssociationsResponse$;
|
|
4110
|
+
exports.ListCloudConnectors$ = ListCloudConnectors$;
|
|
1517
4111
|
exports.ListCloudConnectorsCommand = ListCloudConnectorsCommand;
|
|
4112
|
+
exports.ListCloudConnectorsRequest$ = ListCloudConnectorsRequest$;
|
|
4113
|
+
exports.ListCloudConnectorsResponse$ = ListCloudConnectorsResponse$;
|
|
4114
|
+
exports.ListConnectorDestinations$ = ListConnectorDestinations$;
|
|
1518
4115
|
exports.ListConnectorDestinationsCommand = ListConnectorDestinationsCommand;
|
|
4116
|
+
exports.ListConnectorDestinationsRequest$ = ListConnectorDestinationsRequest$;
|
|
4117
|
+
exports.ListConnectorDestinationsResponse$ = ListConnectorDestinationsResponse$;
|
|
4118
|
+
exports.ListCredentialLockers$ = ListCredentialLockers$;
|
|
1519
4119
|
exports.ListCredentialLockersCommand = ListCredentialLockersCommand;
|
|
4120
|
+
exports.ListCredentialLockersRequest$ = ListCredentialLockersRequest$;
|
|
4121
|
+
exports.ListCredentialLockersResponse$ = ListCredentialLockersResponse$;
|
|
4122
|
+
exports.ListDestinations$ = ListDestinations$;
|
|
1520
4123
|
exports.ListDestinationsCommand = ListDestinationsCommand;
|
|
4124
|
+
exports.ListDestinationsRequest$ = ListDestinationsRequest$;
|
|
4125
|
+
exports.ListDestinationsResponse$ = ListDestinationsResponse$;
|
|
4126
|
+
exports.ListDeviceDiscoveries$ = ListDeviceDiscoveries$;
|
|
1521
4127
|
exports.ListDeviceDiscoveriesCommand = ListDeviceDiscoveriesCommand;
|
|
4128
|
+
exports.ListDeviceDiscoveriesRequest$ = ListDeviceDiscoveriesRequest$;
|
|
4129
|
+
exports.ListDeviceDiscoveriesResponse$ = ListDeviceDiscoveriesResponse$;
|
|
4130
|
+
exports.ListDiscoveredDevices$ = ListDiscoveredDevices$;
|
|
1522
4131
|
exports.ListDiscoveredDevicesCommand = ListDiscoveredDevicesCommand;
|
|
4132
|
+
exports.ListDiscoveredDevicesRequest$ = ListDiscoveredDevicesRequest$;
|
|
4133
|
+
exports.ListDiscoveredDevicesResponse$ = ListDiscoveredDevicesResponse$;
|
|
4134
|
+
exports.ListEventLogConfigurations$ = ListEventLogConfigurations$;
|
|
1523
4135
|
exports.ListEventLogConfigurationsCommand = ListEventLogConfigurationsCommand;
|
|
4136
|
+
exports.ListEventLogConfigurationsRequest$ = ListEventLogConfigurationsRequest$;
|
|
4137
|
+
exports.ListEventLogConfigurationsResponse$ = ListEventLogConfigurationsResponse$;
|
|
4138
|
+
exports.ListManagedThingAccountAssociations$ = ListManagedThingAccountAssociations$;
|
|
1524
4139
|
exports.ListManagedThingAccountAssociationsCommand = ListManagedThingAccountAssociationsCommand;
|
|
4140
|
+
exports.ListManagedThingAccountAssociationsRequest$ = ListManagedThingAccountAssociationsRequest$;
|
|
4141
|
+
exports.ListManagedThingAccountAssociationsResponse$ = ListManagedThingAccountAssociationsResponse$;
|
|
4142
|
+
exports.ListManagedThingSchemas$ = ListManagedThingSchemas$;
|
|
1525
4143
|
exports.ListManagedThingSchemasCommand = ListManagedThingSchemasCommand;
|
|
4144
|
+
exports.ListManagedThingSchemasRequest$ = ListManagedThingSchemasRequest$;
|
|
4145
|
+
exports.ListManagedThingSchemasResponse$ = ListManagedThingSchemasResponse$;
|
|
4146
|
+
exports.ListManagedThings$ = ListManagedThings$;
|
|
1526
4147
|
exports.ListManagedThingsCommand = ListManagedThingsCommand;
|
|
4148
|
+
exports.ListManagedThingsRequest$ = ListManagedThingsRequest$;
|
|
4149
|
+
exports.ListManagedThingsResponse$ = ListManagedThingsResponse$;
|
|
4150
|
+
exports.ListNotificationConfigurations$ = ListNotificationConfigurations$;
|
|
1527
4151
|
exports.ListNotificationConfigurationsCommand = ListNotificationConfigurationsCommand;
|
|
4152
|
+
exports.ListNotificationConfigurationsRequest$ = ListNotificationConfigurationsRequest$;
|
|
4153
|
+
exports.ListNotificationConfigurationsResponse$ = ListNotificationConfigurationsResponse$;
|
|
4154
|
+
exports.ListOtaTaskConfigurations$ = ListOtaTaskConfigurations$;
|
|
1528
4155
|
exports.ListOtaTaskConfigurationsCommand = ListOtaTaskConfigurationsCommand;
|
|
4156
|
+
exports.ListOtaTaskConfigurationsRequest$ = ListOtaTaskConfigurationsRequest$;
|
|
4157
|
+
exports.ListOtaTaskConfigurationsResponse$ = ListOtaTaskConfigurationsResponse$;
|
|
4158
|
+
exports.ListOtaTaskExecutions$ = ListOtaTaskExecutions$;
|
|
1529
4159
|
exports.ListOtaTaskExecutionsCommand = ListOtaTaskExecutionsCommand;
|
|
4160
|
+
exports.ListOtaTaskExecutionsRequest$ = ListOtaTaskExecutionsRequest$;
|
|
4161
|
+
exports.ListOtaTaskExecutionsResponse$ = ListOtaTaskExecutionsResponse$;
|
|
4162
|
+
exports.ListOtaTasks$ = ListOtaTasks$;
|
|
1530
4163
|
exports.ListOtaTasksCommand = ListOtaTasksCommand;
|
|
4164
|
+
exports.ListOtaTasksRequest$ = ListOtaTasksRequest$;
|
|
4165
|
+
exports.ListOtaTasksResponse$ = ListOtaTasksResponse$;
|
|
4166
|
+
exports.ListProvisioningProfiles$ = ListProvisioningProfiles$;
|
|
1531
4167
|
exports.ListProvisioningProfilesCommand = ListProvisioningProfilesCommand;
|
|
4168
|
+
exports.ListProvisioningProfilesRequest$ = ListProvisioningProfilesRequest$;
|
|
4169
|
+
exports.ListProvisioningProfilesResponse$ = ListProvisioningProfilesResponse$;
|
|
4170
|
+
exports.ListSchemaVersions$ = ListSchemaVersions$;
|
|
1532
4171
|
exports.ListSchemaVersionsCommand = ListSchemaVersionsCommand;
|
|
4172
|
+
exports.ListSchemaVersionsRequest$ = ListSchemaVersionsRequest$;
|
|
4173
|
+
exports.ListSchemaVersionsResponse$ = ListSchemaVersionsResponse$;
|
|
4174
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1533
4175
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
4176
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
4177
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1534
4178
|
exports.LogLevel = LogLevel;
|
|
4179
|
+
exports.ManagedThingAssociation$ = ManagedThingAssociation$;
|
|
1535
4180
|
exports.ManagedThingAssociationStatus = ManagedThingAssociationStatus;
|
|
4181
|
+
exports.ManagedThingSchemaListItem$ = ManagedThingSchemaListItem$;
|
|
4182
|
+
exports.ManagedThingSummary$ = ManagedThingSummary$;
|
|
4183
|
+
exports.MatterCapabilityReport$ = MatterCapabilityReport$;
|
|
4184
|
+
exports.MatterCapabilityReportAttribute$ = MatterCapabilityReportAttribute$;
|
|
4185
|
+
exports.MatterCapabilityReportCluster$ = MatterCapabilityReportCluster$;
|
|
4186
|
+
exports.MatterCapabilityReportEndpoint$ = MatterCapabilityReportEndpoint$;
|
|
4187
|
+
exports.MatterCluster$ = MatterCluster$;
|
|
4188
|
+
exports.MatterEndpoint$ = MatterEndpoint$;
|
|
4189
|
+
exports.NotificationConfigurationSummary$ = NotificationConfigurationSummary$;
|
|
4190
|
+
exports.OAuthConfig$ = OAuthConfig$;
|
|
4191
|
+
exports.OAuthUpdate$ = OAuthUpdate$;
|
|
1536
4192
|
exports.OtaMechanism = OtaMechanism;
|
|
1537
4193
|
exports.OtaProtocol = OtaProtocol;
|
|
1538
4194
|
exports.OtaStatus = OtaStatus;
|
|
4195
|
+
exports.OtaTaskAbortConfig$ = OtaTaskAbortConfig$;
|
|
4196
|
+
exports.OtaTaskConfigurationSummary$ = OtaTaskConfigurationSummary$;
|
|
4197
|
+
exports.OtaTaskExecutionRetryConfig$ = OtaTaskExecutionRetryConfig$;
|
|
4198
|
+
exports.OtaTaskExecutionRolloutConfig$ = OtaTaskExecutionRolloutConfig$;
|
|
1539
4199
|
exports.OtaTaskExecutionStatus = OtaTaskExecutionStatus;
|
|
4200
|
+
exports.OtaTaskExecutionSummaries$ = OtaTaskExecutionSummaries$;
|
|
4201
|
+
exports.OtaTaskExecutionSummary$ = OtaTaskExecutionSummary$;
|
|
4202
|
+
exports.OtaTaskSchedulingConfig$ = OtaTaskSchedulingConfig$;
|
|
4203
|
+
exports.OtaTaskSummary$ = OtaTaskSummary$;
|
|
4204
|
+
exports.OtaTaskTimeoutConfig$ = OtaTaskTimeoutConfig$;
|
|
1540
4205
|
exports.OtaType = OtaType;
|
|
4206
|
+
exports.ProactiveRefreshTokenRenewal$ = ProactiveRefreshTokenRenewal$;
|
|
1541
4207
|
exports.ProtocolType = ProtocolType;
|
|
1542
4208
|
exports.ProvisioningProfileStatus = ProvisioningProfileStatus;
|
|
4209
|
+
exports.ProvisioningProfileSummary$ = ProvisioningProfileSummary$;
|
|
1543
4210
|
exports.ProvisioningStatus = ProvisioningStatus;
|
|
1544
4211
|
exports.ProvisioningType = ProvisioningType;
|
|
4212
|
+
exports.PushConfig$ = PushConfig$;
|
|
4213
|
+
exports.PutDefaultEncryptionConfiguration$ = PutDefaultEncryptionConfiguration$;
|
|
1545
4214
|
exports.PutDefaultEncryptionConfigurationCommand = PutDefaultEncryptionConfigurationCommand;
|
|
4215
|
+
exports.PutDefaultEncryptionConfigurationRequest$ = PutDefaultEncryptionConfigurationRequest$;
|
|
4216
|
+
exports.PutDefaultEncryptionConfigurationResponse$ = PutDefaultEncryptionConfigurationResponse$;
|
|
4217
|
+
exports.PutHubConfiguration$ = PutHubConfiguration$;
|
|
1546
4218
|
exports.PutHubConfigurationCommand = PutHubConfigurationCommand;
|
|
4219
|
+
exports.PutHubConfigurationRequest$ = PutHubConfigurationRequest$;
|
|
4220
|
+
exports.PutHubConfigurationResponse$ = PutHubConfigurationResponse$;
|
|
4221
|
+
exports.PutRuntimeLogConfiguration$ = PutRuntimeLogConfiguration$;
|
|
1547
4222
|
exports.PutRuntimeLogConfigurationCommand = PutRuntimeLogConfigurationCommand;
|
|
4223
|
+
exports.PutRuntimeLogConfigurationRequest$ = PutRuntimeLogConfigurationRequest$;
|
|
4224
|
+
exports.RegisterAccountAssociation$ = RegisterAccountAssociation$;
|
|
1548
4225
|
exports.RegisterAccountAssociationCommand = RegisterAccountAssociationCommand;
|
|
4226
|
+
exports.RegisterAccountAssociationRequest$ = RegisterAccountAssociationRequest$;
|
|
4227
|
+
exports.RegisterAccountAssociationResponse$ = RegisterAccountAssociationResponse$;
|
|
4228
|
+
exports.RegisterCustomEndpoint$ = RegisterCustomEndpoint$;
|
|
1549
4229
|
exports.RegisterCustomEndpointCommand = RegisterCustomEndpointCommand;
|
|
4230
|
+
exports.RegisterCustomEndpointRequest$ = RegisterCustomEndpointRequest$;
|
|
4231
|
+
exports.RegisterCustomEndpointResponse$ = RegisterCustomEndpointResponse$;
|
|
4232
|
+
exports.ResetRuntimeLogConfiguration$ = ResetRuntimeLogConfiguration$;
|
|
1550
4233
|
exports.ResetRuntimeLogConfigurationCommand = ResetRuntimeLogConfigurationCommand;
|
|
4234
|
+
exports.ResetRuntimeLogConfigurationRequest$ = ResetRuntimeLogConfigurationRequest$;
|
|
4235
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
4236
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
4237
|
+
exports.RetryConfigCriteria$ = RetryConfigCriteria$;
|
|
1551
4238
|
exports.RetryCriteriaFailureType = RetryCriteriaFailureType;
|
|
1552
4239
|
exports.Role = Role;
|
|
4240
|
+
exports.RolloutRateIncreaseCriteria$ = RolloutRateIncreaseCriteria$;
|
|
4241
|
+
exports.RuntimeLogConfigurations$ = RuntimeLogConfigurations$;
|
|
4242
|
+
exports.ScheduleMaintenanceWindow$ = ScheduleMaintenanceWindow$;
|
|
1553
4243
|
exports.SchedulingConfigEndBehavior = SchedulingConfigEndBehavior;
|
|
1554
4244
|
exports.SchemaVersionFormat = SchemaVersionFormat;
|
|
4245
|
+
exports.SchemaVersionListItem$ = SchemaVersionListItem$;
|
|
1555
4246
|
exports.SchemaVersionType = SchemaVersionType;
|
|
1556
4247
|
exports.SchemaVersionVisibility = SchemaVersionVisibility;
|
|
4248
|
+
exports.SecretsManager$ = SecretsManager$;
|
|
4249
|
+
exports.SendConnectorEvent$ = SendConnectorEvent$;
|
|
1557
4250
|
exports.SendConnectorEventCommand = SendConnectorEventCommand;
|
|
4251
|
+
exports.SendConnectorEventRequest$ = SendConnectorEventRequest$;
|
|
4252
|
+
exports.SendConnectorEventResponse$ = SendConnectorEventResponse$;
|
|
4253
|
+
exports.SendManagedThingCommand$ = SendManagedThingCommand$;
|
|
1558
4254
|
exports.SendManagedThingCommandCommand = SendManagedThingCommandCommand;
|
|
4255
|
+
exports.SendManagedThingCommandRequest$ = SendManagedThingCommandRequest$;
|
|
4256
|
+
exports.SendManagedThingCommandResponse$ = SendManagedThingCommandResponse$;
|
|
4257
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
4258
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
4259
|
+
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
4260
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
4261
|
+
exports.StartAccountAssociationRefresh$ = StartAccountAssociationRefresh$;
|
|
1559
4262
|
exports.StartAccountAssociationRefreshCommand = StartAccountAssociationRefreshCommand;
|
|
4263
|
+
exports.StartAccountAssociationRefreshRequest$ = StartAccountAssociationRefreshRequest$;
|
|
4264
|
+
exports.StartAccountAssociationRefreshResponse$ = StartAccountAssociationRefreshResponse$;
|
|
4265
|
+
exports.StartDeviceDiscovery$ = StartDeviceDiscovery$;
|
|
1560
4266
|
exports.StartDeviceDiscoveryCommand = StartDeviceDiscoveryCommand;
|
|
4267
|
+
exports.StartDeviceDiscoveryRequest$ = StartDeviceDiscoveryRequest$;
|
|
4268
|
+
exports.StartDeviceDiscoveryResponse$ = StartDeviceDiscoveryResponse$;
|
|
4269
|
+
exports.StateCapability$ = StateCapability$;
|
|
4270
|
+
exports.StateEndpoint$ = StateEndpoint$;
|
|
4271
|
+
exports.TagResource$ = TagResource$;
|
|
1561
4272
|
exports.TagResourceCommand = TagResourceCommand;
|
|
4273
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
4274
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
4275
|
+
exports.TaskProcessingDetails$ = TaskProcessingDetails$;
|
|
4276
|
+
exports.ThrottlingException = ThrottlingException;
|
|
4277
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
1562
4278
|
exports.TokenEndpointAuthenticationScheme = TokenEndpointAuthenticationScheme;
|
|
4279
|
+
exports.UnauthorizedException = UnauthorizedException;
|
|
4280
|
+
exports.UnauthorizedException$ = UnauthorizedException$;
|
|
4281
|
+
exports.UntagResource$ = UntagResource$;
|
|
1563
4282
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
4283
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
4284
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
4285
|
+
exports.UpdateAccountAssociation$ = UpdateAccountAssociation$;
|
|
1564
4286
|
exports.UpdateAccountAssociationCommand = UpdateAccountAssociationCommand;
|
|
4287
|
+
exports.UpdateAccountAssociationRequest$ = UpdateAccountAssociationRequest$;
|
|
4288
|
+
exports.UpdateCloudConnector$ = UpdateCloudConnector$;
|
|
1565
4289
|
exports.UpdateCloudConnectorCommand = UpdateCloudConnectorCommand;
|
|
4290
|
+
exports.UpdateCloudConnectorRequest$ = UpdateCloudConnectorRequest$;
|
|
4291
|
+
exports.UpdateConnectorDestination$ = UpdateConnectorDestination$;
|
|
1566
4292
|
exports.UpdateConnectorDestinationCommand = UpdateConnectorDestinationCommand;
|
|
4293
|
+
exports.UpdateConnectorDestinationRequest$ = UpdateConnectorDestinationRequest$;
|
|
4294
|
+
exports.UpdateDestination$ = UpdateDestination$;
|
|
1567
4295
|
exports.UpdateDestinationCommand = UpdateDestinationCommand;
|
|
4296
|
+
exports.UpdateDestinationRequest$ = UpdateDestinationRequest$;
|
|
4297
|
+
exports.UpdateEventLogConfiguration$ = UpdateEventLogConfiguration$;
|
|
1568
4298
|
exports.UpdateEventLogConfigurationCommand = UpdateEventLogConfigurationCommand;
|
|
4299
|
+
exports.UpdateEventLogConfigurationRequest$ = UpdateEventLogConfigurationRequest$;
|
|
4300
|
+
exports.UpdateManagedThing$ = UpdateManagedThing$;
|
|
1569
4301
|
exports.UpdateManagedThingCommand = UpdateManagedThingCommand;
|
|
4302
|
+
exports.UpdateManagedThingRequest$ = UpdateManagedThingRequest$;
|
|
4303
|
+
exports.UpdateNotificationConfiguration$ = UpdateNotificationConfiguration$;
|
|
1570
4304
|
exports.UpdateNotificationConfigurationCommand = UpdateNotificationConfigurationCommand;
|
|
4305
|
+
exports.UpdateNotificationConfigurationRequest$ = UpdateNotificationConfigurationRequest$;
|
|
4306
|
+
exports.UpdateOtaTask$ = UpdateOtaTask$;
|
|
1571
4307
|
exports.UpdateOtaTaskCommand = UpdateOtaTaskCommand;
|
|
4308
|
+
exports.UpdateOtaTaskRequest$ = UpdateOtaTaskRequest$;
|
|
4309
|
+
exports.ValidationException = ValidationException;
|
|
4310
|
+
exports.ValidationException$ = ValidationException$;
|
|
4311
|
+
exports.WiFiSimpleSetupConfiguration$ = WiFiSimpleSetupConfiguration$;
|
|
4312
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1572
4313
|
exports.paginateListAccountAssociations = paginateListAccountAssociations;
|
|
1573
4314
|
exports.paginateListCloudConnectors = paginateListCloudConnectors;
|
|
1574
4315
|
exports.paginateListConnectorDestinations = paginateListConnectorDestinations;
|