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