@aws-sdk/client-greengrass 3.987.0 → 3.989.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 +111 -2410
- package/dist-cjs/models/GreengrassServiceException.js +12 -0
- package/dist-cjs/models/errors.js +38 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1976 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +22 -16
- package/dist-types/schemas/schemas_0.d.ts +10 -3
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +5 -3
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var GreengrassServiceException = require('./models/GreengrassServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,2001 +113,6 @@ class GreengrassClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class GreengrassServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, GreengrassServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class BadRequestException extends GreengrassServiceException {
|
|
121
|
-
name = "BadRequestException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
ErrorDetails;
|
|
124
|
-
Message;
|
|
125
|
-
constructor(opts) {
|
|
126
|
-
super({
|
|
127
|
-
name: "BadRequestException",
|
|
128
|
-
$fault: "client",
|
|
129
|
-
...opts,
|
|
130
|
-
});
|
|
131
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
132
|
-
this.ErrorDetails = opts.ErrorDetails;
|
|
133
|
-
this.Message = opts.Message;
|
|
134
|
-
}
|
|
135
|
-
}
|
|
136
|
-
class InternalServerErrorException extends GreengrassServiceException {
|
|
137
|
-
name = "InternalServerErrorException";
|
|
138
|
-
$fault = "server";
|
|
139
|
-
ErrorDetails;
|
|
140
|
-
Message;
|
|
141
|
-
constructor(opts) {
|
|
142
|
-
super({
|
|
143
|
-
name: "InternalServerErrorException",
|
|
144
|
-
$fault: "server",
|
|
145
|
-
...opts,
|
|
146
|
-
});
|
|
147
|
-
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
148
|
-
this.ErrorDetails = opts.ErrorDetails;
|
|
149
|
-
this.Message = opts.Message;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
const _A = "Arn";
|
|
154
|
-
const _AA = "AssociatedAt";
|
|
155
|
-
const _AAGO = "AutoAddGroupOwner";
|
|
156
|
-
const _ACT = "AmznClientToken";
|
|
157
|
-
const _ARN = "ARN";
|
|
158
|
-
const _ARTG = "AssociateRoleToGroup";
|
|
159
|
-
const _ARTGR = "AssociateRoleToGroupRequest";
|
|
160
|
-
const _ARTGRs = "AssociateRoleToGroupResponse";
|
|
161
|
-
const _AS = "AccessSysfs";
|
|
162
|
-
const _ASLTD = "AdditionalStagingLabelsToDownload";
|
|
163
|
-
const _ASRTA = "AssociateServiceRoleToAccount";
|
|
164
|
-
const _ASRTAR = "AssociateServiceRoleToAccountRequest";
|
|
165
|
-
const _ASRTARs = "AssociateServiceRoleToAccountResponse";
|
|
166
|
-
const _BD = "BulkDeployment";
|
|
167
|
-
const _BDA = "BulkDeploymentArn";
|
|
168
|
-
const _BDI = "BulkDeploymentId";
|
|
169
|
-
const _BDM = "BulkDeploymentMetrics";
|
|
170
|
-
const _BDR = "BulkDeploymentResult";
|
|
171
|
-
const _BDRu = "BulkDeploymentResults";
|
|
172
|
-
const _BDS = "BulkDeploymentStatus";
|
|
173
|
-
const _BDu = "BulkDeployments";
|
|
174
|
-
const _BRE = "BadRequestException";
|
|
175
|
-
const _C = "Connector";
|
|
176
|
-
const _CA = "CreatedAt";
|
|
177
|
-
const _CAEIM = "CertificateAuthorityExpiryInMilliseconds";
|
|
178
|
-
const _CAI = "CertificateAuthorityId";
|
|
179
|
-
const _CAe = "CertificateArn";
|
|
180
|
-
const _CAo = "ConnectorArn";
|
|
181
|
-
const _CCD = "CreateConnectorDefinition";
|
|
182
|
-
const _CCDR = "CreateConnectorDefinitionRequest";
|
|
183
|
-
const _CCDRr = "CreateConnectorDefinitionResponse";
|
|
184
|
-
const _CCDRre = "CreateCoreDefinitionRequest";
|
|
185
|
-
const _CCDRrea = "CreateCoreDefinitionResponse";
|
|
186
|
-
const _CCDV = "CreateConnectorDefinitionVersion";
|
|
187
|
-
const _CCDVR = "CreateConnectorDefinitionVersionRequest";
|
|
188
|
-
const _CCDVRr = "CreateConnectorDefinitionVersionResponse";
|
|
189
|
-
const _CCDVRre = "CreateCoreDefinitionVersionRequest";
|
|
190
|
-
const _CCDVRrea = "CreateCoreDefinitionVersionResponse";
|
|
191
|
-
const _CCDVr = "CreateCoreDefinitionVersion";
|
|
192
|
-
const _CCDr = "CreateCoreDefinition";
|
|
193
|
-
const _CD = "CreateDeployment";
|
|
194
|
-
const _CDD = "CreateDeviceDefinition";
|
|
195
|
-
const _CDDR = "CreateDeviceDefinitionRequest";
|
|
196
|
-
const _CDDRr = "CreateDeviceDefinitionResponse";
|
|
197
|
-
const _CDDV = "CreateDeviceDefinitionVersion";
|
|
198
|
-
const _CDDVR = "CreateDeviceDefinitionVersionRequest";
|
|
199
|
-
const _CDDVRr = "CreateDeviceDefinitionVersionResponse";
|
|
200
|
-
const _CDI = "ConnectorDefinitionId";
|
|
201
|
-
const _CDIo = "CoreDefinitionId";
|
|
202
|
-
const _CDR = "CreateDeploymentRequest";
|
|
203
|
-
const _CDRr = "CreateDeploymentResponse";
|
|
204
|
-
const _CDV = "ConnectorDefinitionVersion";
|
|
205
|
-
const _CDVA = "ConnectorDefinitionVersionArn";
|
|
206
|
-
const _CDVAo = "CoreDefinitionVersionArn";
|
|
207
|
-
const _CDVI = "ConnectorDefinitionVersionId";
|
|
208
|
-
const _CDVIo = "CoreDefinitionVersionId";
|
|
209
|
-
const _CDVo = "CoreDefinitionVersion";
|
|
210
|
-
const _CEIM = "CertificateExpiryInMilliseconds";
|
|
211
|
-
const _CFD = "CreateFunctionDefinition";
|
|
212
|
-
const _CFDR = "CreateFunctionDefinitionRequest";
|
|
213
|
-
const _CFDRr = "CreateFunctionDefinitionResponse";
|
|
214
|
-
const _CFDV = "CreateFunctionDefinitionVersion";
|
|
215
|
-
const _CFDVR = "CreateFunctionDefinitionVersionRequest";
|
|
216
|
-
const _CFDVRr = "CreateFunctionDefinitionVersionResponse";
|
|
217
|
-
const _CG = "CreateGroup";
|
|
218
|
-
const _CGCA = "CreateGroupCertificateAuthority";
|
|
219
|
-
const _CGCAR = "CreateGroupCertificateAuthorityRequest";
|
|
220
|
-
const _CGCARr = "CreateGroupCertificateAuthorityResponse";
|
|
221
|
-
const _CGR = "CreateGroupRequest";
|
|
222
|
-
const _CGRr = "CreateGroupResponse";
|
|
223
|
-
const _CGV = "CreateGroupVersion";
|
|
224
|
-
const _CGVR = "CreateGroupVersionRequest";
|
|
225
|
-
const _CGVRr = "CreateGroupVersionResponse";
|
|
226
|
-
const _CI = "ConnectivityInfo";
|
|
227
|
-
const _CLD = "CreateLoggerDefinition";
|
|
228
|
-
const _CLDR = "CreateLoggerDefinitionRequest";
|
|
229
|
-
const _CLDRr = "CreateLoggerDefinitionResponse";
|
|
230
|
-
const _CLDV = "CreateLoggerDefinitionVersion";
|
|
231
|
-
const _CLDVR = "CreateLoggerDefinitionVersionRequest";
|
|
232
|
-
const _CLDVRr = "CreateLoggerDefinitionVersionResponse";
|
|
233
|
-
const _CRD = "CreateResourceDefinition";
|
|
234
|
-
const _CRDR = "CreateResourceDefinitionRequest";
|
|
235
|
-
const _CRDRr = "CreateResourceDefinitionResponse";
|
|
236
|
-
const _CRDV = "CreateResourceDefinitionVersion";
|
|
237
|
-
const _CRDVR = "CreateResourceDefinitionVersionRequest";
|
|
238
|
-
const _CRDVRr = "CreateResourceDefinitionVersionResponse";
|
|
239
|
-
const _CSD = "CreateSubscriptionDefinition";
|
|
240
|
-
const _CSDR = "CreateSubscriptionDefinitionRequest";
|
|
241
|
-
const _CSDRr = "CreateSubscriptionDefinitionResponse";
|
|
242
|
-
const _CSDV = "CreateSubscriptionDefinitionVersion";
|
|
243
|
-
const _CSDVR = "CreateSubscriptionDefinitionVersionRequest";
|
|
244
|
-
const _CSDVRr = "CreateSubscriptionDefinitionVersionResponse";
|
|
245
|
-
const _CSS = "ConfigurationSyncStatus";
|
|
246
|
-
const _CSUJ = "CreateSoftwareUpdateJob";
|
|
247
|
-
const _CSUJR = "CreateSoftwareUpdateJobRequest";
|
|
248
|
-
const _CSUJRr = "CreateSoftwareUpdateJobResponse";
|
|
249
|
-
const _CT = "CreationTimestamp";
|
|
250
|
-
const _Co = "Connectors";
|
|
251
|
-
const _Com = "Component";
|
|
252
|
-
const _Cor = "Core";
|
|
253
|
-
const _Core = "Cores";
|
|
254
|
-
const _D = "Devices";
|
|
255
|
-
const _DA = "DeploymentArn";
|
|
256
|
-
const _DAi = "DisassociatedAt";
|
|
257
|
-
const _DC = "DefaultConfig";
|
|
258
|
-
const _DCD = "DeleteConnectorDefinition";
|
|
259
|
-
const _DCDR = "DeleteConnectorDefinitionRequest";
|
|
260
|
-
const _DCDRe = "DeleteConnectorDefinitionResponse";
|
|
261
|
-
const _DCDRel = "DeleteCoreDefinitionRequest";
|
|
262
|
-
const _DCDRele = "DeleteCoreDefinitionResponse";
|
|
263
|
-
const _DCDe = "DeleteCoreDefinition";
|
|
264
|
-
const _DDD = "DeleteDeviceDefinition";
|
|
265
|
-
const _DDDR = "DeleteDeviceDefinitionRequest";
|
|
266
|
-
const _DDDRe = "DeleteDeviceDefinitionResponse";
|
|
267
|
-
const _DDI = "DeviceDefinitionId";
|
|
268
|
-
const _DDV = "DeviceDefinitionVersion";
|
|
269
|
-
const _DDVA = "DeviceDefinitionVersionArn";
|
|
270
|
-
const _DDVI = "DeviceDefinitionVersionId";
|
|
271
|
-
const _DEC = "DetailedErrorCode";
|
|
272
|
-
const _DEM = "DetailedErrorMessage";
|
|
273
|
-
const _DFD = "DeleteFunctionDefinition";
|
|
274
|
-
const _DFDR = "DeleteFunctionDefinitionRequest";
|
|
275
|
-
const _DFDRe = "DeleteFunctionDefinitionResponse";
|
|
276
|
-
const _DG = "DeleteGroup";
|
|
277
|
-
const _DGR = "DeleteGroupRequest";
|
|
278
|
-
const _DGRe = "DeleteGroupResponse";
|
|
279
|
-
const _DI = "DeploymentId";
|
|
280
|
-
const _DIe = "DefinitionInformation";
|
|
281
|
-
const _DLD = "DeleteLoggerDefinition";
|
|
282
|
-
const _DLDR = "DeleteLoggerDefinitionRequest";
|
|
283
|
-
const _DLDRe = "DeleteLoggerDefinitionResponse";
|
|
284
|
-
const _DP = "DestinationPath";
|
|
285
|
-
const _DRD = "DeleteResourceDefinition";
|
|
286
|
-
const _DRDR = "DeleteResourceDefinitionRequest";
|
|
287
|
-
const _DRDRe = "DeleteResourceDefinitionResponse";
|
|
288
|
-
const _DRFG = "DisassociateRoleFromGroup";
|
|
289
|
-
const _DRFGR = "DisassociateRoleFromGroupRequest";
|
|
290
|
-
const _DRFGRi = "DisassociateRoleFromGroupResponse";
|
|
291
|
-
const _DS = "DeploymentStatus";
|
|
292
|
-
const _DSD = "DeleteSubscriptionDefinition";
|
|
293
|
-
const _DSDR = "DeleteSubscriptionDefinitionRequest";
|
|
294
|
-
const _DSDRe = "DeleteSubscriptionDefinitionResponse";
|
|
295
|
-
const _DSRFA = "DisassociateServiceRoleFromAccount";
|
|
296
|
-
const _DSRFAR = "DisassociateServiceRoleFromAccountRequest";
|
|
297
|
-
const _DSRFARi = "DisassociateServiceRoleFromAccountResponse";
|
|
298
|
-
const _DT = "DeploymentType";
|
|
299
|
-
const _De = "Deployment";
|
|
300
|
-
const _Def = "Definition";
|
|
301
|
-
const _Defi = "Definitions";
|
|
302
|
-
const _Dep = "Deployments";
|
|
303
|
-
const _Dev = "Device";
|
|
304
|
-
const _E = "Environment";
|
|
305
|
-
const _EA = "ExecArgs";
|
|
306
|
-
const _ED = "ErrorDetails";
|
|
307
|
-
const _EDr = "ErrorDetail";
|
|
308
|
-
const _EM = "ErrorMessage";
|
|
309
|
-
const _ERA = "ExecutionRoleArn";
|
|
310
|
-
const _ET = "EncodingType";
|
|
311
|
-
const _Ex = "Executable";
|
|
312
|
-
const _Exe = "Execution";
|
|
313
|
-
const _F = "Functions";
|
|
314
|
-
const _FA = "FunctionArn";
|
|
315
|
-
const _FC = "FunctionConfiguration";
|
|
316
|
-
const _FCE = "FunctionConfigurationEnvironment";
|
|
317
|
-
const _FDC = "FunctionDefaultConfig";
|
|
318
|
-
const _FDEC = "FunctionDefaultExecutionConfig";
|
|
319
|
-
const _FDI = "FunctionDefinitionId";
|
|
320
|
-
const _FDV = "FunctionDefinitionVersion";
|
|
321
|
-
const _FDVA = "FunctionDefinitionVersionArn";
|
|
322
|
-
const _FDVI = "FunctionDefinitionVersionId";
|
|
323
|
-
const _FEC = "FunctionExecutionConfig";
|
|
324
|
-
const _FRAC = "FunctionRunAsConfig";
|
|
325
|
-
const _FRO = "FunctionRuntimeOverride";
|
|
326
|
-
const _Fo = "Force";
|
|
327
|
-
const _Fu = "Function";
|
|
328
|
-
const _G = "Gid";
|
|
329
|
-
const _GA = "GroupArn";
|
|
330
|
-
const _GAR = "GetAssociatedRole";
|
|
331
|
-
const _GARR = "GetAssociatedRoleRequest";
|
|
332
|
-
const _GARRe = "GetAssociatedRoleResponse";
|
|
333
|
-
const _GBDS = "GetBulkDeploymentStatus";
|
|
334
|
-
const _GBDSR = "GetBulkDeploymentStatusRequest";
|
|
335
|
-
const _GBDSRe = "GetBulkDeploymentStatusResponse";
|
|
336
|
-
const _GCA = "GroupCertificateAuthorities";
|
|
337
|
-
const _GCAA = "GroupCertificateAuthorityArn";
|
|
338
|
-
const _GCAI = "GroupCertificateAuthorityId";
|
|
339
|
-
const _GCAP = "GroupCertificateAuthorityProperties";
|
|
340
|
-
const _GCD = "GetConnectorDefinition";
|
|
341
|
-
const _GCDR = "GetConnectorDefinitionRequest";
|
|
342
|
-
const _GCDRe = "GetConnectorDefinitionResponse";
|
|
343
|
-
const _GCDRet = "GetCoreDefinitionRequest";
|
|
344
|
-
const _GCDReto = "GetCoreDefinitionResponse";
|
|
345
|
-
const _GCDV = "GetConnectorDefinitionVersion";
|
|
346
|
-
const _GCDVR = "GetConnectorDefinitionVersionRequest";
|
|
347
|
-
const _GCDVRe = "GetConnectorDefinitionVersionResponse";
|
|
348
|
-
const _GCDVRet = "GetCoreDefinitionVersionRequest";
|
|
349
|
-
const _GCDVReto = "GetCoreDefinitionVersionResponse";
|
|
350
|
-
const _GCDVe = "GetCoreDefinitionVersion";
|
|
351
|
-
const _GCDe = "GetCoreDefinition";
|
|
352
|
-
const _GCI = "GetConnectivityInfo";
|
|
353
|
-
const _GCIR = "GetConnectivityInfoRequest";
|
|
354
|
-
const _GCIRe = "GetConnectivityInfoResponse";
|
|
355
|
-
const _GDD = "GetDeviceDefinition";
|
|
356
|
-
const _GDDR = "GetDeviceDefinitionRequest";
|
|
357
|
-
const _GDDRe = "GetDeviceDefinitionResponse";
|
|
358
|
-
const _GDDV = "GetDeviceDefinitionVersion";
|
|
359
|
-
const _GDDVR = "GetDeviceDefinitionVersionRequest";
|
|
360
|
-
const _GDDVRe = "GetDeviceDefinitionVersionResponse";
|
|
361
|
-
const _GDS = "GetDeploymentStatus";
|
|
362
|
-
const _GDSR = "GetDeploymentStatusRequest";
|
|
363
|
-
const _GDSRe = "GetDeploymentStatusResponse";
|
|
364
|
-
const _GFD = "GetFunctionDefinition";
|
|
365
|
-
const _GFDR = "GetFunctionDefinitionRequest";
|
|
366
|
-
const _GFDRe = "GetFunctionDefinitionResponse";
|
|
367
|
-
const _GFDV = "GetFunctionDefinitionVersion";
|
|
368
|
-
const _GFDVR = "GetFunctionDefinitionVersionRequest";
|
|
369
|
-
const _GFDVRe = "GetFunctionDefinitionVersionResponse";
|
|
370
|
-
const _GG = "GetGroup";
|
|
371
|
-
const _GGCA = "GetGroupCertificateAuthority";
|
|
372
|
-
const _GGCAR = "GetGroupCertificateAuthorityRequest";
|
|
373
|
-
const _GGCARe = "GetGroupCertificateAuthorityResponse";
|
|
374
|
-
const _GGCC = "GetGroupCertificateConfiguration";
|
|
375
|
-
const _GGCCR = "GetGroupCertificateConfigurationRequest";
|
|
376
|
-
const _GGCCRe = "GetGroupCertificateConfigurationResponse";
|
|
377
|
-
const _GGR = "GetGroupRequest";
|
|
378
|
-
const _GGRe = "GetGroupResponse";
|
|
379
|
-
const _GGV = "GetGroupVersion";
|
|
380
|
-
const _GGVR = "GetGroupVersionRequest";
|
|
381
|
-
const _GGVRe = "GetGroupVersionResponse";
|
|
382
|
-
const _GI = "GroupId";
|
|
383
|
-
const _GIr = "GroupInformation";
|
|
384
|
-
const _GLD = "GetLoggerDefinition";
|
|
385
|
-
const _GLDR = "GetLoggerDefinitionRequest";
|
|
386
|
-
const _GLDRe = "GetLoggerDefinitionResponse";
|
|
387
|
-
const _GLDV = "GetLoggerDefinitionVersion";
|
|
388
|
-
const _GLDVR = "GetLoggerDefinitionVersionRequest";
|
|
389
|
-
const _GLDVRe = "GetLoggerDefinitionVersionResponse";
|
|
390
|
-
const _GO = "GroupOwner";
|
|
391
|
-
const _GOS = "GroupOwnerSetting";
|
|
392
|
-
const _GP = "GroupPermission";
|
|
393
|
-
const _GRD = "GetResourceDefinition";
|
|
394
|
-
const _GRDR = "GetResourceDefinitionRequest";
|
|
395
|
-
const _GRDRe = "GetResourceDefinitionResponse";
|
|
396
|
-
const _GRDV = "GetResourceDefinitionVersion";
|
|
397
|
-
const _GRDVR = "GetResourceDefinitionVersionRequest";
|
|
398
|
-
const _GRDVRe = "GetResourceDefinitionVersionResponse";
|
|
399
|
-
const _GSD = "GetSubscriptionDefinition";
|
|
400
|
-
const _GSDR = "GetSubscriptionDefinitionRequest";
|
|
401
|
-
const _GSDRe = "GetSubscriptionDefinitionResponse";
|
|
402
|
-
const _GSDV = "GetSubscriptionDefinitionVersion";
|
|
403
|
-
const _GSDVR = "GetSubscriptionDefinitionVersionRequest";
|
|
404
|
-
const _GSDVRe = "GetSubscriptionDefinitionVersionResponse";
|
|
405
|
-
const _GSRFA = "GetServiceRoleForAccount";
|
|
406
|
-
const _GSRFAR = "GetServiceRoleForAccountRequest";
|
|
407
|
-
const _GSRFARe = "GetServiceRoleForAccountResponse";
|
|
408
|
-
const _GTRC = "GetThingRuntimeConfiguration";
|
|
409
|
-
const _GTRCR = "GetThingRuntimeConfigurationRequest";
|
|
410
|
-
const _GTRCRe = "GetThingRuntimeConfigurationResponse";
|
|
411
|
-
const _GV = "GroupVersion";
|
|
412
|
-
const _GVI = "GroupVersionId";
|
|
413
|
-
const _Gr = "Groups";
|
|
414
|
-
const _HA = "HostAddress";
|
|
415
|
-
const _I = "Id";
|
|
416
|
-
const _IFU = "InputFileUri";
|
|
417
|
-
const _IIR = "InvalidInputRecords";
|
|
418
|
-
const _IJA = "IotJobArn";
|
|
419
|
-
const _IJI = "IotJobId";
|
|
420
|
-
const _IM = "IsolationMode";
|
|
421
|
-
const _ISEE = "InternalServerErrorException";
|
|
422
|
-
const _IV = "InitialVersion";
|
|
423
|
-
const _L = "Loggers";
|
|
424
|
-
const _LBD = "ListBulkDeployments";
|
|
425
|
-
const _LBDDR = "ListBulkDeploymentDetailedReports";
|
|
426
|
-
const _LBDDRR = "ListBulkDeploymentDetailedReportsRequest";
|
|
427
|
-
const _LBDDRRi = "ListBulkDeploymentDetailedReportsResponse";
|
|
428
|
-
const _LBDR = "ListBulkDeploymentsRequest";
|
|
429
|
-
const _LBDRi = "ListBulkDeploymentsResponse";
|
|
430
|
-
const _LCD = "ListConnectorDefinitions";
|
|
431
|
-
const _LCDR = "ListConnectorDefinitionsRequest";
|
|
432
|
-
const _LCDRi = "ListConnectorDefinitionsResponse";
|
|
433
|
-
const _LCDRis = "ListCoreDefinitionsRequest";
|
|
434
|
-
const _LCDRist = "ListCoreDefinitionsResponse";
|
|
435
|
-
const _LCDV = "ListConnectorDefinitionVersions";
|
|
436
|
-
const _LCDVR = "ListConnectorDefinitionVersionsRequest";
|
|
437
|
-
const _LCDVRi = "ListConnectorDefinitionVersionsResponse";
|
|
438
|
-
const _LCDVRis = "ListCoreDefinitionVersionsRequest";
|
|
439
|
-
const _LCDVRist = "ListCoreDefinitionVersionsResponse";
|
|
440
|
-
const _LCDVi = "ListCoreDefinitionVersions";
|
|
441
|
-
const _LCDi = "ListCoreDefinitions";
|
|
442
|
-
const _LD = "ListDeployments";
|
|
443
|
-
const _LDD = "ListDeviceDefinitions";
|
|
444
|
-
const _LDDR = "ListDeviceDefinitionsRequest";
|
|
445
|
-
const _LDDRi = "ListDeviceDefinitionsResponse";
|
|
446
|
-
const _LDDV = "ListDeviceDefinitionVersions";
|
|
447
|
-
const _LDDVR = "ListDeviceDefinitionVersionsRequest";
|
|
448
|
-
const _LDDVRi = "ListDeviceDefinitionVersionsResponse";
|
|
449
|
-
const _LDI = "LoggerDefinitionId";
|
|
450
|
-
const _LDR = "ListDeploymentsRequest";
|
|
451
|
-
const _LDRD = "LocalDeviceResourceData";
|
|
452
|
-
const _LDRi = "ListDeploymentsResponse";
|
|
453
|
-
const _LDV = "LoggerDefinitionVersion";
|
|
454
|
-
const _LDVA = "LoggerDefinitionVersionArn";
|
|
455
|
-
const _LDVI = "LoggerDefinitionVersionId";
|
|
456
|
-
const _LFD = "ListFunctionDefinitions";
|
|
457
|
-
const _LFDR = "ListFunctionDefinitionsRequest";
|
|
458
|
-
const _LFDRi = "ListFunctionDefinitionsResponse";
|
|
459
|
-
const _LFDV = "ListFunctionDefinitionVersions";
|
|
460
|
-
const _LFDVR = "ListFunctionDefinitionVersionsRequest";
|
|
461
|
-
const _LFDVRi = "ListFunctionDefinitionVersionsResponse";
|
|
462
|
-
const _LG = "ListGroups";
|
|
463
|
-
const _LGCA = "ListGroupCertificateAuthorities";
|
|
464
|
-
const _LGCAR = "ListGroupCertificateAuthoritiesRequest";
|
|
465
|
-
const _LGCARi = "ListGroupCertificateAuthoritiesResponse";
|
|
466
|
-
const _LGR = "ListGroupsRequest";
|
|
467
|
-
const _LGRi = "ListGroupsResponse";
|
|
468
|
-
const _LGV = "ListGroupVersions";
|
|
469
|
-
const _LGVR = "ListGroupVersionsRequest";
|
|
470
|
-
const _LGVRi = "ListGroupVersionsResponse";
|
|
471
|
-
const _LLD = "ListLoggerDefinitions";
|
|
472
|
-
const _LLDR = "ListLoggerDefinitionsRequest";
|
|
473
|
-
const _LLDRi = "ListLoggerDefinitionsResponse";
|
|
474
|
-
const _LLDV = "ListLoggerDefinitionVersions";
|
|
475
|
-
const _LLDVR = "ListLoggerDefinitionVersionsRequest";
|
|
476
|
-
const _LLDVRi = "ListLoggerDefinitionVersionsResponse";
|
|
477
|
-
const _LRD = "ListResourceDefinitions";
|
|
478
|
-
const _LRDR = "ListResourceDefinitionsRequest";
|
|
479
|
-
const _LRDRi = "ListResourceDefinitionsResponse";
|
|
480
|
-
const _LRDV = "ListResourceDefinitionVersions";
|
|
481
|
-
const _LRDVR = "ListResourceDefinitionVersionsRequest";
|
|
482
|
-
const _LRDVRi = "ListResourceDefinitionVersionsResponse";
|
|
483
|
-
const _LSD = "ListSubscriptionDefinitions";
|
|
484
|
-
const _LSDR = "ListSubscriptionDefinitionsRequest";
|
|
485
|
-
const _LSDRi = "ListSubscriptionDefinitionsResponse";
|
|
486
|
-
const _LSDV = "ListSubscriptionDefinitionVersions";
|
|
487
|
-
const _LSDVR = "ListSubscriptionDefinitionVersionsRequest";
|
|
488
|
-
const _LSDVRi = "ListSubscriptionDefinitionVersionsResponse";
|
|
489
|
-
const _LTFR = "ListTagsForResource";
|
|
490
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
491
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
492
|
-
const _LUT = "LastUpdatedTimestamp";
|
|
493
|
-
const _LV = "LatestVersion";
|
|
494
|
-
const _LVA = "LatestVersionArn";
|
|
495
|
-
const _LVRD = "LocalVolumeResourceData";
|
|
496
|
-
const _Le = "Level";
|
|
497
|
-
const _Lo = "Logger";
|
|
498
|
-
const _M = "Message";
|
|
499
|
-
const _MR = "MaxResults";
|
|
500
|
-
const _MS = "MemorySize";
|
|
501
|
-
const _Me = "Metadata";
|
|
502
|
-
const _N = "Name";
|
|
503
|
-
const _NT = "NextToken";
|
|
504
|
-
const _OS = "OwnerSetting";
|
|
505
|
-
const _P = "Parameters";
|
|
506
|
-
const _PEC = "PemEncodedCertificate";
|
|
507
|
-
const _PN = "PortNumber";
|
|
508
|
-
const _PSV = "PlatformSoftwareVersion";
|
|
509
|
-
const _Pe = "Permission";
|
|
510
|
-
const _Pi = "Pinned";
|
|
511
|
-
const _R = "Resources";
|
|
512
|
-
const _RA = "RoleArn";
|
|
513
|
-
const _RAP = "ResourceAccessPolicies";
|
|
514
|
-
const _RAPe = "ResourceAccessPolicy";
|
|
515
|
-
const _RAe = "RetryAttempts";
|
|
516
|
-
const _RAes = "ResourceArn";
|
|
517
|
-
const _RAu = "RunAs";
|
|
518
|
-
const _RC = "RuntimeConfiguration";
|
|
519
|
-
const _RD = "ResetDeployments";
|
|
520
|
-
const _RDC = "ResourceDataContainer";
|
|
521
|
-
const _RDI = "ResourceDefinitionId";
|
|
522
|
-
const _RDOS = "ResourceDownloadOwnerSetting";
|
|
523
|
-
const _RDR = "ResetDeploymentsRequest";
|
|
524
|
-
const _RDRe = "ResetDeploymentsResponse";
|
|
525
|
-
const _RDV = "ResourceDefinitionVersion";
|
|
526
|
-
const _RDVA = "ResourceDefinitionVersionArn";
|
|
527
|
-
const _RDVI = "ResourceDefinitionVersionId";
|
|
528
|
-
const _RI = "ResourceId";
|
|
529
|
-
const _RP = "RecordsProcessed";
|
|
530
|
-
const _Re = "Resource";
|
|
531
|
-
const _S = "Subscriptions";
|
|
532
|
-
const _SBD = "StartBulkDeployment";
|
|
533
|
-
const _SBDR = "StartBulkDeploymentRequest";
|
|
534
|
-
const _SBDRt = "StartBulkDeploymentResponse";
|
|
535
|
-
const _SBDRto = "StopBulkDeploymentRequest";
|
|
536
|
-
const _SBDRtop = "StopBulkDeploymentResponse";
|
|
537
|
-
const _SBDt = "StopBulkDeployment";
|
|
538
|
-
const _SDI = "SubscriptionDefinitionId";
|
|
539
|
-
const _SDV = "SubscriptionDefinitionVersion";
|
|
540
|
-
const _SDVA = "SubscriptionDefinitionVersionArn";
|
|
541
|
-
const _SDVI = "SubscriptionDefinitionVersionId";
|
|
542
|
-
const _SMJA = "SageMakerJobArn";
|
|
543
|
-
const _SMLMRD = "S3MachineLearningModelResourceData";
|
|
544
|
-
const _SMMLMRD = "SageMakerMachineLearningModelResourceData";
|
|
545
|
-
const _SMSRD = "SecretsManagerSecretResourceData";
|
|
546
|
-
const _SP = "SourcePath";
|
|
547
|
-
const _SS = "SyncShadow";
|
|
548
|
-
const _STU = "SoftwareToUpdate";
|
|
549
|
-
const _SU = "S3Uri";
|
|
550
|
-
const _SUSR = "S3UrlSignerRole";
|
|
551
|
-
const _So = "Source";
|
|
552
|
-
const _Sp = "Space";
|
|
553
|
-
const _Su = "Subscription";
|
|
554
|
-
const _Sub = "Subject";
|
|
555
|
-
const _T = "Tags";
|
|
556
|
-
const _TA = "ThingArn";
|
|
557
|
-
const _TC = "TelemetryConfiguration";
|
|
558
|
-
const _TCU = "TelemetryConfigurationUpdate";
|
|
559
|
-
const _TK = "TagKeys";
|
|
560
|
-
const _TN = "ThingName";
|
|
561
|
-
const _TR = "TagResource";
|
|
562
|
-
const _TRR = "TagResourceRequest";
|
|
563
|
-
const _Ta = "Target";
|
|
564
|
-
const _Te = "Telemetry";
|
|
565
|
-
const _Ti = "Timeout";
|
|
566
|
-
const _Ty = "Type";
|
|
567
|
-
const _U = "Uid";
|
|
568
|
-
const _UA = "UpdatedAt";
|
|
569
|
-
const _UALL = "UpdateAgentLogLevel";
|
|
570
|
-
const _UCD = "UpdateConnectorDefinition";
|
|
571
|
-
const _UCDR = "UpdateConnectorDefinitionRequest";
|
|
572
|
-
const _UCDRp = "UpdateConnectorDefinitionResponse";
|
|
573
|
-
const _UCDRpd = "UpdateCoreDefinitionRequest";
|
|
574
|
-
const _UCDRpda = "UpdateCoreDefinitionResponse";
|
|
575
|
-
const _UCDp = "UpdateCoreDefinition";
|
|
576
|
-
const _UCI = "UpdateConnectivityInfo";
|
|
577
|
-
const _UCIR = "UpdateConnectivityInfoRequest";
|
|
578
|
-
const _UCIRp = "UpdateConnectivityInfoResponse";
|
|
579
|
-
const _UDD = "UpdateDeviceDefinition";
|
|
580
|
-
const _UDDR = "UpdateDeviceDefinitionRequest";
|
|
581
|
-
const _UDDRp = "UpdateDeviceDefinitionResponse";
|
|
582
|
-
const _UFD = "UpdateFunctionDefinition";
|
|
583
|
-
const _UFDR = "UpdateFunctionDefinitionRequest";
|
|
584
|
-
const _UFDRp = "UpdateFunctionDefinitionResponse";
|
|
585
|
-
const _UG = "UpdateGroup";
|
|
586
|
-
const _UGCC = "UpdateGroupCertificateConfiguration";
|
|
587
|
-
const _UGCCR = "UpdateGroupCertificateConfigurationRequest";
|
|
588
|
-
const _UGCCRp = "UpdateGroupCertificateConfigurationResponse";
|
|
589
|
-
const _UGR = "UpdateGroupRequest";
|
|
590
|
-
const _UGRp = "UpdateGroupResponse";
|
|
591
|
-
const _ULD = "UpdateLoggerDefinition";
|
|
592
|
-
const _ULDR = "UpdateLoggerDefinitionRequest";
|
|
593
|
-
const _ULDRp = "UpdateLoggerDefinitionResponse";
|
|
594
|
-
const _UR = "UntagResource";
|
|
595
|
-
const _URD = "UpdateResourceDefinition";
|
|
596
|
-
const _URDR = "UpdateResourceDefinitionRequest";
|
|
597
|
-
const _URDRp = "UpdateResourceDefinitionResponse";
|
|
598
|
-
const _URR = "UntagResourceRequest";
|
|
599
|
-
const _USD = "UpdateSubscriptionDefinition";
|
|
600
|
-
const _USDR = "UpdateSubscriptionDefinitionRequest";
|
|
601
|
-
const _USDRp = "UpdateSubscriptionDefinitionResponse";
|
|
602
|
-
const _UT = "UpdateTargets";
|
|
603
|
-
const _UTA = "UpdateTargetsArchitecture";
|
|
604
|
-
const _UTOS = "UpdateTargetsOperatingSystem";
|
|
605
|
-
const _UTRC = "UpdateThingRuntimeConfiguration";
|
|
606
|
-
const _UTRCR = "UpdateThingRuntimeConfigurationRequest";
|
|
607
|
-
const _UTRCRp = "UpdateThingRuntimeConfigurationResponse";
|
|
608
|
-
const _V = "Version";
|
|
609
|
-
const _VI = "VersionInformation";
|
|
610
|
-
const _Va = "Variables";
|
|
611
|
-
const _Ve = "Versions";
|
|
612
|
-
const _XACT = "X-Amzn-Client-Token";
|
|
613
|
-
const _c = "client";
|
|
614
|
-
const _e = "error";
|
|
615
|
-
const _h = "http";
|
|
616
|
-
const _hE = "httpError";
|
|
617
|
-
const _hH = "httpHeader";
|
|
618
|
-
const _hQ = "httpQuery";
|
|
619
|
-
const _jN = "jsonName";
|
|
620
|
-
const _lOC = "__listOfConnector";
|
|
621
|
-
const _lOCI = "__listOfConnectivityInfo";
|
|
622
|
-
const _lOCi = "__listOfCore";
|
|
623
|
-
const _lOD = "__listOfDevice";
|
|
624
|
-
const _lODI = "__listOfDefinitionInformation";
|
|
625
|
-
const _lOF = "__listOfFunction";
|
|
626
|
-
const _lOGCAP = "__listOfGroupCertificateAuthorityProperties";
|
|
627
|
-
const _lOGI = "__listOfGroupInformation";
|
|
628
|
-
const _lOL = "__listOfLogger";
|
|
629
|
-
const _lOR = "__listOfResource";
|
|
630
|
-
const _lORAP = "__listOfResourceAccessPolicy";
|
|
631
|
-
const _lOS = "__listOfSubscription";
|
|
632
|
-
const _lOVI = "__listOfVersionInformation";
|
|
633
|
-
const _m = "message";
|
|
634
|
-
const _s = "server";
|
|
635
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.greengrass";
|
|
636
|
-
const _t = "tags";
|
|
637
|
-
const _tK = "tagKeys";
|
|
638
|
-
const n0 = "com.amazonaws.greengrass";
|
|
639
|
-
var AssociateRoleToGroupRequest$ = [3, n0, _ARTGR,
|
|
640
|
-
0,
|
|
641
|
-
[_GI, _RA],
|
|
642
|
-
[[0, 1], 0], 2
|
|
643
|
-
];
|
|
644
|
-
var AssociateRoleToGroupResponse$ = [3, n0, _ARTGRs,
|
|
645
|
-
0,
|
|
646
|
-
[_AA],
|
|
647
|
-
[0]
|
|
648
|
-
];
|
|
649
|
-
var AssociateServiceRoleToAccountRequest$ = [3, n0, _ASRTAR,
|
|
650
|
-
0,
|
|
651
|
-
[_RA],
|
|
652
|
-
[0], 1
|
|
653
|
-
];
|
|
654
|
-
var AssociateServiceRoleToAccountResponse$ = [3, n0, _ASRTARs,
|
|
655
|
-
0,
|
|
656
|
-
[_AA],
|
|
657
|
-
[0]
|
|
658
|
-
];
|
|
659
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
660
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
661
|
-
[_ED, _M],
|
|
662
|
-
[() => ErrorDetails, 0]
|
|
663
|
-
];
|
|
664
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
665
|
-
var BulkDeployment$ = [3, n0, _BD,
|
|
666
|
-
0,
|
|
667
|
-
[_BDA, _BDI, _CA],
|
|
668
|
-
[0, 0, 0]
|
|
669
|
-
];
|
|
670
|
-
var BulkDeploymentMetrics$ = [3, n0, _BDM,
|
|
671
|
-
0,
|
|
672
|
-
[_IIR, _RP, _RAe],
|
|
673
|
-
[1, 1, 1]
|
|
674
|
-
];
|
|
675
|
-
var BulkDeploymentResult$ = [3, n0, _BDR,
|
|
676
|
-
0,
|
|
677
|
-
[_CA, _DA, _DI, _DS, _DT, _ED, _EM, _GA],
|
|
678
|
-
[0, 0, 0, 0, 0, () => ErrorDetails, 0, 0]
|
|
679
|
-
];
|
|
680
|
-
var ConnectivityInfo$ = [3, n0, _CI,
|
|
681
|
-
0,
|
|
682
|
-
[_HA, _I, _Me, _PN],
|
|
683
|
-
[0, 0, 0, 1]
|
|
684
|
-
];
|
|
685
|
-
var Connector$ = [3, n0, _C,
|
|
686
|
-
0,
|
|
687
|
-
[_CAo, _I, _P],
|
|
688
|
-
[0, 0, 128 | 0], 2
|
|
689
|
-
];
|
|
690
|
-
var ConnectorDefinitionVersion$ = [3, n0, _CDV,
|
|
691
|
-
0,
|
|
692
|
-
[_Co],
|
|
693
|
-
[() => __listOfConnector]
|
|
694
|
-
];
|
|
695
|
-
var Core$ = [3, n0, _Cor,
|
|
696
|
-
0,
|
|
697
|
-
[_CAe, _I, _TA, _SS],
|
|
698
|
-
[0, 0, 0, 2], 3
|
|
699
|
-
];
|
|
700
|
-
var CoreDefinitionVersion$ = [3, n0, _CDVo,
|
|
701
|
-
0,
|
|
702
|
-
[_Core],
|
|
703
|
-
[() => __listOfCore]
|
|
704
|
-
];
|
|
705
|
-
var CreateConnectorDefinitionRequest$ = [3, n0, _CCDR,
|
|
706
|
-
0,
|
|
707
|
-
[_ACT, _IV, _N, _t],
|
|
708
|
-
[[0, { [_hH]: _XACT }], () => ConnectorDefinitionVersion$, 0, 128 | 0]
|
|
709
|
-
];
|
|
710
|
-
var CreateConnectorDefinitionResponse$ = [3, n0, _CCDRr,
|
|
711
|
-
0,
|
|
712
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
713
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
714
|
-
];
|
|
715
|
-
var CreateConnectorDefinitionVersionRequest$ = [3, n0, _CCDVR,
|
|
716
|
-
0,
|
|
717
|
-
[_CDI, _ACT, _Co],
|
|
718
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfConnector], 1
|
|
719
|
-
];
|
|
720
|
-
var CreateConnectorDefinitionVersionResponse$ = [3, n0, _CCDVRr,
|
|
721
|
-
0,
|
|
722
|
-
[_A, _CT, _I, _V],
|
|
723
|
-
[0, 0, 0, 0]
|
|
724
|
-
];
|
|
725
|
-
var CreateCoreDefinitionRequest$ = [3, n0, _CCDRre,
|
|
726
|
-
0,
|
|
727
|
-
[_ACT, _IV, _N, _t],
|
|
728
|
-
[[0, { [_hH]: _XACT }], () => CoreDefinitionVersion$, 0, 128 | 0]
|
|
729
|
-
];
|
|
730
|
-
var CreateCoreDefinitionResponse$ = [3, n0, _CCDRrea,
|
|
731
|
-
0,
|
|
732
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
733
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
734
|
-
];
|
|
735
|
-
var CreateCoreDefinitionVersionRequest$ = [3, n0, _CCDVRre,
|
|
736
|
-
0,
|
|
737
|
-
[_CDIo, _ACT, _Core],
|
|
738
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfCore], 1
|
|
739
|
-
];
|
|
740
|
-
var CreateCoreDefinitionVersionResponse$ = [3, n0, _CCDVRrea,
|
|
741
|
-
0,
|
|
742
|
-
[_A, _CT, _I, _V],
|
|
743
|
-
[0, 0, 0, 0]
|
|
744
|
-
];
|
|
745
|
-
var CreateDeploymentRequest$ = [3, n0, _CDR,
|
|
746
|
-
0,
|
|
747
|
-
[_DT, _GI, _ACT, _DI, _GVI],
|
|
748
|
-
[0, [0, 1], [0, { [_hH]: _XACT }], 0, 0], 2
|
|
749
|
-
];
|
|
750
|
-
var CreateDeploymentResponse$ = [3, n0, _CDRr,
|
|
751
|
-
0,
|
|
752
|
-
[_DA, _DI],
|
|
753
|
-
[0, 0]
|
|
754
|
-
];
|
|
755
|
-
var CreateDeviceDefinitionRequest$ = [3, n0, _CDDR,
|
|
756
|
-
0,
|
|
757
|
-
[_ACT, _IV, _N, _t],
|
|
758
|
-
[[0, { [_hH]: _XACT }], () => DeviceDefinitionVersion$, 0, 128 | 0]
|
|
759
|
-
];
|
|
760
|
-
var CreateDeviceDefinitionResponse$ = [3, n0, _CDDRr,
|
|
761
|
-
0,
|
|
762
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
763
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
764
|
-
];
|
|
765
|
-
var CreateDeviceDefinitionVersionRequest$ = [3, n0, _CDDVR,
|
|
766
|
-
0,
|
|
767
|
-
[_DDI, _ACT, _D],
|
|
768
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfDevice], 1
|
|
769
|
-
];
|
|
770
|
-
var CreateDeviceDefinitionVersionResponse$ = [3, n0, _CDDVRr,
|
|
771
|
-
0,
|
|
772
|
-
[_A, _CT, _I, _V],
|
|
773
|
-
[0, 0, 0, 0]
|
|
774
|
-
];
|
|
775
|
-
var CreateFunctionDefinitionRequest$ = [3, n0, _CFDR,
|
|
776
|
-
0,
|
|
777
|
-
[_ACT, _IV, _N, _t],
|
|
778
|
-
[[0, { [_hH]: _XACT }], () => FunctionDefinitionVersion$, 0, 128 | 0]
|
|
779
|
-
];
|
|
780
|
-
var CreateFunctionDefinitionResponse$ = [3, n0, _CFDRr,
|
|
781
|
-
0,
|
|
782
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
783
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
784
|
-
];
|
|
785
|
-
var CreateFunctionDefinitionVersionRequest$ = [3, n0, _CFDVR,
|
|
786
|
-
0,
|
|
787
|
-
[_FDI, _ACT, _DC, _F],
|
|
788
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => FunctionDefaultConfig$, () => __listOfFunction], 1
|
|
789
|
-
];
|
|
790
|
-
var CreateFunctionDefinitionVersionResponse$ = [3, n0, _CFDVRr,
|
|
791
|
-
0,
|
|
792
|
-
[_A, _CT, _I, _V],
|
|
793
|
-
[0, 0, 0, 0]
|
|
794
|
-
];
|
|
795
|
-
var CreateGroupCertificateAuthorityRequest$ = [3, n0, _CGCAR,
|
|
796
|
-
0,
|
|
797
|
-
[_GI, _ACT],
|
|
798
|
-
[[0, 1], [0, { [_hH]: _XACT }]], 1
|
|
799
|
-
];
|
|
800
|
-
var CreateGroupCertificateAuthorityResponse$ = [3, n0, _CGCARr,
|
|
801
|
-
0,
|
|
802
|
-
[_GCAA],
|
|
803
|
-
[0]
|
|
804
|
-
];
|
|
805
|
-
var CreateGroupRequest$ = [3, n0, _CGR,
|
|
806
|
-
0,
|
|
807
|
-
[_N, _ACT, _IV, _t],
|
|
808
|
-
[0, [0, { [_hH]: _XACT }], () => GroupVersion$, 128 | 0], 1
|
|
809
|
-
];
|
|
810
|
-
var CreateGroupResponse$ = [3, n0, _CGRr,
|
|
811
|
-
0,
|
|
812
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
813
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
814
|
-
];
|
|
815
|
-
var CreateGroupVersionRequest$ = [3, n0, _CGVR,
|
|
816
|
-
0,
|
|
817
|
-
[_GI, _ACT, _CDVA, _CDVAo, _DDVA, _FDVA, _LDVA, _RDVA, _SDVA],
|
|
818
|
-
[[0, 1], [0, { [_hH]: _XACT }], 0, 0, 0, 0, 0, 0, 0], 1
|
|
819
|
-
];
|
|
820
|
-
var CreateGroupVersionResponse$ = [3, n0, _CGVRr,
|
|
821
|
-
0,
|
|
822
|
-
[_A, _CT, _I, _V],
|
|
823
|
-
[0, 0, 0, 0]
|
|
824
|
-
];
|
|
825
|
-
var CreateLoggerDefinitionRequest$ = [3, n0, _CLDR,
|
|
826
|
-
0,
|
|
827
|
-
[_ACT, _IV, _N, _t],
|
|
828
|
-
[[0, { [_hH]: _XACT }], () => LoggerDefinitionVersion$, 0, 128 | 0]
|
|
829
|
-
];
|
|
830
|
-
var CreateLoggerDefinitionResponse$ = [3, n0, _CLDRr,
|
|
831
|
-
0,
|
|
832
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
833
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
834
|
-
];
|
|
835
|
-
var CreateLoggerDefinitionVersionRequest$ = [3, n0, _CLDVR,
|
|
836
|
-
0,
|
|
837
|
-
[_LDI, _ACT, _L],
|
|
838
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfLogger], 1
|
|
839
|
-
];
|
|
840
|
-
var CreateLoggerDefinitionVersionResponse$ = [3, n0, _CLDVRr,
|
|
841
|
-
0,
|
|
842
|
-
[_A, _CT, _I, _V],
|
|
843
|
-
[0, 0, 0, 0]
|
|
844
|
-
];
|
|
845
|
-
var CreateResourceDefinitionRequest$ = [3, n0, _CRDR,
|
|
846
|
-
0,
|
|
847
|
-
[_ACT, _IV, _N, _t],
|
|
848
|
-
[[0, { [_hH]: _XACT }], () => ResourceDefinitionVersion$, 0, 128 | 0]
|
|
849
|
-
];
|
|
850
|
-
var CreateResourceDefinitionResponse$ = [3, n0, _CRDRr,
|
|
851
|
-
0,
|
|
852
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
853
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
854
|
-
];
|
|
855
|
-
var CreateResourceDefinitionVersionRequest$ = [3, n0, _CRDVR,
|
|
856
|
-
0,
|
|
857
|
-
[_RDI, _ACT, _R],
|
|
858
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfResource], 1
|
|
859
|
-
];
|
|
860
|
-
var CreateResourceDefinitionVersionResponse$ = [3, n0, _CRDVRr,
|
|
861
|
-
0,
|
|
862
|
-
[_A, _CT, _I, _V],
|
|
863
|
-
[0, 0, 0, 0]
|
|
864
|
-
];
|
|
865
|
-
var CreateSoftwareUpdateJobRequest$ = [3, n0, _CSUJR,
|
|
866
|
-
0,
|
|
867
|
-
[_SUSR, _STU, _UT, _UTA, _UTOS, _ACT, _UALL],
|
|
868
|
-
[0, 0, 64 | 0, 0, 0, [0, { [_hH]: _XACT }], 0], 5
|
|
869
|
-
];
|
|
870
|
-
var CreateSoftwareUpdateJobResponse$ = [3, n0, _CSUJRr,
|
|
871
|
-
0,
|
|
872
|
-
[_IJA, _IJI, _PSV],
|
|
873
|
-
[0, 0, 0]
|
|
874
|
-
];
|
|
875
|
-
var CreateSubscriptionDefinitionRequest$ = [3, n0, _CSDR,
|
|
876
|
-
0,
|
|
877
|
-
[_ACT, _IV, _N, _t],
|
|
878
|
-
[[0, { [_hH]: _XACT }], () => SubscriptionDefinitionVersion$, 0, 128 | 0]
|
|
879
|
-
];
|
|
880
|
-
var CreateSubscriptionDefinitionResponse$ = [3, n0, _CSDRr,
|
|
881
|
-
0,
|
|
882
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
883
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
884
|
-
];
|
|
885
|
-
var CreateSubscriptionDefinitionVersionRequest$ = [3, n0, _CSDVR,
|
|
886
|
-
0,
|
|
887
|
-
[_SDI, _ACT, _S],
|
|
888
|
-
[[0, 1], [0, { [_hH]: _XACT }], () => __listOfSubscription], 1
|
|
889
|
-
];
|
|
890
|
-
var CreateSubscriptionDefinitionVersionResponse$ = [3, n0, _CSDVRr,
|
|
891
|
-
0,
|
|
892
|
-
[_A, _CT, _I, _V],
|
|
893
|
-
[0, 0, 0, 0]
|
|
894
|
-
];
|
|
895
|
-
var DefinitionInformation$ = [3, n0, _DIe,
|
|
896
|
-
0,
|
|
897
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _T],
|
|
898
|
-
[0, 0, 0, 0, 0, 0, 0, [128 | 0, { [_jN]: _t }]]
|
|
899
|
-
];
|
|
900
|
-
var DeleteConnectorDefinitionRequest$ = [3, n0, _DCDR,
|
|
901
|
-
0,
|
|
902
|
-
[_CDI],
|
|
903
|
-
[[0, 1]], 1
|
|
904
|
-
];
|
|
905
|
-
var DeleteConnectorDefinitionResponse$ = [3, n0, _DCDRe,
|
|
906
|
-
0,
|
|
907
|
-
[],
|
|
908
|
-
[]
|
|
909
|
-
];
|
|
910
|
-
var DeleteCoreDefinitionRequest$ = [3, n0, _DCDRel,
|
|
911
|
-
0,
|
|
912
|
-
[_CDIo],
|
|
913
|
-
[[0, 1]], 1
|
|
914
|
-
];
|
|
915
|
-
var DeleteCoreDefinitionResponse$ = [3, n0, _DCDRele,
|
|
916
|
-
0,
|
|
917
|
-
[],
|
|
918
|
-
[]
|
|
919
|
-
];
|
|
920
|
-
var DeleteDeviceDefinitionRequest$ = [3, n0, _DDDR,
|
|
921
|
-
0,
|
|
922
|
-
[_DDI],
|
|
923
|
-
[[0, 1]], 1
|
|
924
|
-
];
|
|
925
|
-
var DeleteDeviceDefinitionResponse$ = [3, n0, _DDDRe,
|
|
926
|
-
0,
|
|
927
|
-
[],
|
|
928
|
-
[]
|
|
929
|
-
];
|
|
930
|
-
var DeleteFunctionDefinitionRequest$ = [3, n0, _DFDR,
|
|
931
|
-
0,
|
|
932
|
-
[_FDI],
|
|
933
|
-
[[0, 1]], 1
|
|
934
|
-
];
|
|
935
|
-
var DeleteFunctionDefinitionResponse$ = [3, n0, _DFDRe,
|
|
936
|
-
0,
|
|
937
|
-
[],
|
|
938
|
-
[]
|
|
939
|
-
];
|
|
940
|
-
var DeleteGroupRequest$ = [3, n0, _DGR,
|
|
941
|
-
0,
|
|
942
|
-
[_GI],
|
|
943
|
-
[[0, 1]], 1
|
|
944
|
-
];
|
|
945
|
-
var DeleteGroupResponse$ = [3, n0, _DGRe,
|
|
946
|
-
0,
|
|
947
|
-
[],
|
|
948
|
-
[]
|
|
949
|
-
];
|
|
950
|
-
var DeleteLoggerDefinitionRequest$ = [3, n0, _DLDR,
|
|
951
|
-
0,
|
|
952
|
-
[_LDI],
|
|
953
|
-
[[0, 1]], 1
|
|
954
|
-
];
|
|
955
|
-
var DeleteLoggerDefinitionResponse$ = [3, n0, _DLDRe,
|
|
956
|
-
0,
|
|
957
|
-
[],
|
|
958
|
-
[]
|
|
959
|
-
];
|
|
960
|
-
var DeleteResourceDefinitionRequest$ = [3, n0, _DRDR,
|
|
961
|
-
0,
|
|
962
|
-
[_RDI],
|
|
963
|
-
[[0, 1]], 1
|
|
964
|
-
];
|
|
965
|
-
var DeleteResourceDefinitionResponse$ = [3, n0, _DRDRe,
|
|
966
|
-
0,
|
|
967
|
-
[],
|
|
968
|
-
[]
|
|
969
|
-
];
|
|
970
|
-
var DeleteSubscriptionDefinitionRequest$ = [3, n0, _DSDR,
|
|
971
|
-
0,
|
|
972
|
-
[_SDI],
|
|
973
|
-
[[0, 1]], 1
|
|
974
|
-
];
|
|
975
|
-
var DeleteSubscriptionDefinitionResponse$ = [3, n0, _DSDRe,
|
|
976
|
-
0,
|
|
977
|
-
[],
|
|
978
|
-
[]
|
|
979
|
-
];
|
|
980
|
-
var Deployment$ = [3, n0, _De,
|
|
981
|
-
0,
|
|
982
|
-
[_CA, _DA, _DI, _DT, _GA],
|
|
983
|
-
[0, 0, 0, 0, 0]
|
|
984
|
-
];
|
|
985
|
-
var Device$ = [3, n0, _Dev,
|
|
986
|
-
0,
|
|
987
|
-
[_CAe, _I, _TA, _SS],
|
|
988
|
-
[0, 0, 0, 2], 3
|
|
989
|
-
];
|
|
990
|
-
var DeviceDefinitionVersion$ = [3, n0, _DDV,
|
|
991
|
-
0,
|
|
992
|
-
[_D],
|
|
993
|
-
[() => __listOfDevice]
|
|
994
|
-
];
|
|
995
|
-
var DisassociateRoleFromGroupRequest$ = [3, n0, _DRFGR,
|
|
996
|
-
0,
|
|
997
|
-
[_GI],
|
|
998
|
-
[[0, 1]], 1
|
|
999
|
-
];
|
|
1000
|
-
var DisassociateRoleFromGroupResponse$ = [3, n0, _DRFGRi,
|
|
1001
|
-
0,
|
|
1002
|
-
[_DAi],
|
|
1003
|
-
[0]
|
|
1004
|
-
];
|
|
1005
|
-
var DisassociateServiceRoleFromAccountRequest$ = [3, n0, _DSRFAR,
|
|
1006
|
-
0,
|
|
1007
|
-
[],
|
|
1008
|
-
[]
|
|
1009
|
-
];
|
|
1010
|
-
var DisassociateServiceRoleFromAccountResponse$ = [3, n0, _DSRFARi,
|
|
1011
|
-
0,
|
|
1012
|
-
[_DAi],
|
|
1013
|
-
[0]
|
|
1014
|
-
];
|
|
1015
|
-
var ErrorDetail$ = [3, n0, _EDr,
|
|
1016
|
-
0,
|
|
1017
|
-
[_DEC, _DEM],
|
|
1018
|
-
[0, 0]
|
|
1019
|
-
];
|
|
1020
|
-
var Function$ = [3, n0, _Fu,
|
|
1021
|
-
0,
|
|
1022
|
-
[_I, _FA, _FC],
|
|
1023
|
-
[0, 0, () => FunctionConfiguration$], 1
|
|
1024
|
-
];
|
|
1025
|
-
var FunctionConfiguration$ = [3, n0, _FC,
|
|
1026
|
-
0,
|
|
1027
|
-
[_ET, _E, _EA, _Ex, _MS, _Pi, _Ti, _FRO],
|
|
1028
|
-
[0, () => FunctionConfigurationEnvironment$, 0, 0, 1, 2, 1, 0]
|
|
1029
|
-
];
|
|
1030
|
-
var FunctionConfigurationEnvironment$ = [3, n0, _FCE,
|
|
1031
|
-
0,
|
|
1032
|
-
[_AS, _Exe, _RAP, _Va],
|
|
1033
|
-
[2, () => FunctionExecutionConfig$, () => __listOfResourceAccessPolicy, 128 | 0]
|
|
1034
|
-
];
|
|
1035
|
-
var FunctionDefaultConfig$ = [3, n0, _FDC,
|
|
1036
|
-
0,
|
|
1037
|
-
[_Exe],
|
|
1038
|
-
[() => FunctionDefaultExecutionConfig$]
|
|
1039
|
-
];
|
|
1040
|
-
var FunctionDefaultExecutionConfig$ = [3, n0, _FDEC,
|
|
1041
|
-
0,
|
|
1042
|
-
[_IM, _RAu],
|
|
1043
|
-
[0, () => FunctionRunAsConfig$]
|
|
1044
|
-
];
|
|
1045
|
-
var FunctionDefinitionVersion$ = [3, n0, _FDV,
|
|
1046
|
-
0,
|
|
1047
|
-
[_DC, _F],
|
|
1048
|
-
[() => FunctionDefaultConfig$, () => __listOfFunction]
|
|
1049
|
-
];
|
|
1050
|
-
var FunctionExecutionConfig$ = [3, n0, _FEC,
|
|
1051
|
-
0,
|
|
1052
|
-
[_IM, _RAu],
|
|
1053
|
-
[0, () => FunctionRunAsConfig$]
|
|
1054
|
-
];
|
|
1055
|
-
var FunctionRunAsConfig$ = [3, n0, _FRAC,
|
|
1056
|
-
0,
|
|
1057
|
-
[_G, _U],
|
|
1058
|
-
[1, 1]
|
|
1059
|
-
];
|
|
1060
|
-
var GetAssociatedRoleRequest$ = [3, n0, _GARR,
|
|
1061
|
-
0,
|
|
1062
|
-
[_GI],
|
|
1063
|
-
[[0, 1]], 1
|
|
1064
|
-
];
|
|
1065
|
-
var GetAssociatedRoleResponse$ = [3, n0, _GARRe,
|
|
1066
|
-
0,
|
|
1067
|
-
[_AA, _RA],
|
|
1068
|
-
[0, 0]
|
|
1069
|
-
];
|
|
1070
|
-
var GetBulkDeploymentStatusRequest$ = [3, n0, _GBDSR,
|
|
1071
|
-
0,
|
|
1072
|
-
[_BDI],
|
|
1073
|
-
[[0, 1]], 1
|
|
1074
|
-
];
|
|
1075
|
-
var GetBulkDeploymentStatusResponse$ = [3, n0, _GBDSRe,
|
|
1076
|
-
0,
|
|
1077
|
-
[_BDM, _BDS, _CA, _ED, _EM, _t],
|
|
1078
|
-
[() => BulkDeploymentMetrics$, 0, 0, () => ErrorDetails, 0, 128 | 0]
|
|
1079
|
-
];
|
|
1080
|
-
var GetConnectivityInfoRequest$ = [3, n0, _GCIR,
|
|
1081
|
-
0,
|
|
1082
|
-
[_TN],
|
|
1083
|
-
[[0, 1]], 1
|
|
1084
|
-
];
|
|
1085
|
-
var GetConnectivityInfoResponse$ = [3, n0, _GCIRe,
|
|
1086
|
-
0,
|
|
1087
|
-
[_CI, _M],
|
|
1088
|
-
[() => __listOfConnectivityInfo, [0, { [_jN]: _m }]]
|
|
1089
|
-
];
|
|
1090
|
-
var GetConnectorDefinitionRequest$ = [3, n0, _GCDR,
|
|
1091
|
-
0,
|
|
1092
|
-
[_CDI],
|
|
1093
|
-
[[0, 1]], 1
|
|
1094
|
-
];
|
|
1095
|
-
var GetConnectorDefinitionResponse$ = [3, n0, _GCDRe,
|
|
1096
|
-
0,
|
|
1097
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1098
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1099
|
-
];
|
|
1100
|
-
var GetConnectorDefinitionVersionRequest$ = [3, n0, _GCDVR,
|
|
1101
|
-
0,
|
|
1102
|
-
[_CDI, _CDVI, _NT],
|
|
1103
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _NT }]], 2
|
|
1104
|
-
];
|
|
1105
|
-
var GetConnectorDefinitionVersionResponse$ = [3, n0, _GCDVRe,
|
|
1106
|
-
0,
|
|
1107
|
-
[_A, _CT, _Def, _I, _NT, _V],
|
|
1108
|
-
[0, 0, () => ConnectorDefinitionVersion$, 0, 0, 0]
|
|
1109
|
-
];
|
|
1110
|
-
var GetCoreDefinitionRequest$ = [3, n0, _GCDRet,
|
|
1111
|
-
0,
|
|
1112
|
-
[_CDIo],
|
|
1113
|
-
[[0, 1]], 1
|
|
1114
|
-
];
|
|
1115
|
-
var GetCoreDefinitionResponse$ = [3, n0, _GCDReto,
|
|
1116
|
-
0,
|
|
1117
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1118
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1119
|
-
];
|
|
1120
|
-
var GetCoreDefinitionVersionRequest$ = [3, n0, _GCDVRet,
|
|
1121
|
-
0,
|
|
1122
|
-
[_CDIo, _CDVIo],
|
|
1123
|
-
[[0, 1], [0, 1]], 2
|
|
1124
|
-
];
|
|
1125
|
-
var GetCoreDefinitionVersionResponse$ = [3, n0, _GCDVReto,
|
|
1126
|
-
0,
|
|
1127
|
-
[_A, _CT, _Def, _I, _NT, _V],
|
|
1128
|
-
[0, 0, () => CoreDefinitionVersion$, 0, 0, 0]
|
|
1129
|
-
];
|
|
1130
|
-
var GetDeploymentStatusRequest$ = [3, n0, _GDSR,
|
|
1131
|
-
0,
|
|
1132
|
-
[_DI, _GI],
|
|
1133
|
-
[[0, 1], [0, 1]], 2
|
|
1134
|
-
];
|
|
1135
|
-
var GetDeploymentStatusResponse$ = [3, n0, _GDSRe,
|
|
1136
|
-
0,
|
|
1137
|
-
[_DS, _DT, _ED, _EM, _UA],
|
|
1138
|
-
[0, 0, () => ErrorDetails, 0, 0]
|
|
1139
|
-
];
|
|
1140
|
-
var GetDeviceDefinitionRequest$ = [3, n0, _GDDR,
|
|
1141
|
-
0,
|
|
1142
|
-
[_DDI],
|
|
1143
|
-
[[0, 1]], 1
|
|
1144
|
-
];
|
|
1145
|
-
var GetDeviceDefinitionResponse$ = [3, n0, _GDDRe,
|
|
1146
|
-
0,
|
|
1147
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1148
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1149
|
-
];
|
|
1150
|
-
var GetDeviceDefinitionVersionRequest$ = [3, n0, _GDDVR,
|
|
1151
|
-
0,
|
|
1152
|
-
[_DDI, _DDVI, _NT],
|
|
1153
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _NT }]], 2
|
|
1154
|
-
];
|
|
1155
|
-
var GetDeviceDefinitionVersionResponse$ = [3, n0, _GDDVRe,
|
|
1156
|
-
0,
|
|
1157
|
-
[_A, _CT, _Def, _I, _NT, _V],
|
|
1158
|
-
[0, 0, () => DeviceDefinitionVersion$, 0, 0, 0]
|
|
1159
|
-
];
|
|
1160
|
-
var GetFunctionDefinitionRequest$ = [3, n0, _GFDR,
|
|
1161
|
-
0,
|
|
1162
|
-
[_FDI],
|
|
1163
|
-
[[0, 1]], 1
|
|
1164
|
-
];
|
|
1165
|
-
var GetFunctionDefinitionResponse$ = [3, n0, _GFDRe,
|
|
1166
|
-
0,
|
|
1167
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1168
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1169
|
-
];
|
|
1170
|
-
var GetFunctionDefinitionVersionRequest$ = [3, n0, _GFDVR,
|
|
1171
|
-
0,
|
|
1172
|
-
[_FDI, _FDVI, _NT],
|
|
1173
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _NT }]], 2
|
|
1174
|
-
];
|
|
1175
|
-
var GetFunctionDefinitionVersionResponse$ = [3, n0, _GFDVRe,
|
|
1176
|
-
0,
|
|
1177
|
-
[_A, _CT, _Def, _I, _NT, _V],
|
|
1178
|
-
[0, 0, () => FunctionDefinitionVersion$, 0, 0, 0]
|
|
1179
|
-
];
|
|
1180
|
-
var GetGroupCertificateAuthorityRequest$ = [3, n0, _GGCAR,
|
|
1181
|
-
0,
|
|
1182
|
-
[_CAI, _GI],
|
|
1183
|
-
[[0, 1], [0, 1]], 2
|
|
1184
|
-
];
|
|
1185
|
-
var GetGroupCertificateAuthorityResponse$ = [3, n0, _GGCARe,
|
|
1186
|
-
0,
|
|
1187
|
-
[_GCAA, _GCAI, _PEC],
|
|
1188
|
-
[0, 0, 0]
|
|
1189
|
-
];
|
|
1190
|
-
var GetGroupCertificateConfigurationRequest$ = [3, n0, _GGCCR,
|
|
1191
|
-
0,
|
|
1192
|
-
[_GI],
|
|
1193
|
-
[[0, 1]], 1
|
|
1194
|
-
];
|
|
1195
|
-
var GetGroupCertificateConfigurationResponse$ = [3, n0, _GGCCRe,
|
|
1196
|
-
0,
|
|
1197
|
-
[_CAEIM, _CEIM, _GI],
|
|
1198
|
-
[0, 0, 0]
|
|
1199
|
-
];
|
|
1200
|
-
var GetGroupRequest$ = [3, n0, _GGR,
|
|
1201
|
-
0,
|
|
1202
|
-
[_GI],
|
|
1203
|
-
[[0, 1]], 1
|
|
1204
|
-
];
|
|
1205
|
-
var GetGroupResponse$ = [3, n0, _GGRe,
|
|
1206
|
-
0,
|
|
1207
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1208
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1209
|
-
];
|
|
1210
|
-
var GetGroupVersionRequest$ = [3, n0, _GGVR,
|
|
1211
|
-
0,
|
|
1212
|
-
[_GI, _GVI],
|
|
1213
|
-
[[0, 1], [0, 1]], 2
|
|
1214
|
-
];
|
|
1215
|
-
var GetGroupVersionResponse$ = [3, n0, _GGVRe,
|
|
1216
|
-
0,
|
|
1217
|
-
[_A, _CT, _Def, _I, _V],
|
|
1218
|
-
[0, 0, () => GroupVersion$, 0, 0]
|
|
1219
|
-
];
|
|
1220
|
-
var GetLoggerDefinitionRequest$ = [3, n0, _GLDR,
|
|
1221
|
-
0,
|
|
1222
|
-
[_LDI],
|
|
1223
|
-
[[0, 1]], 1
|
|
1224
|
-
];
|
|
1225
|
-
var GetLoggerDefinitionResponse$ = [3, n0, _GLDRe,
|
|
1226
|
-
0,
|
|
1227
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1228
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1229
|
-
];
|
|
1230
|
-
var GetLoggerDefinitionVersionRequest$ = [3, n0, _GLDVR,
|
|
1231
|
-
0,
|
|
1232
|
-
[_LDI, _LDVI, _NT],
|
|
1233
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _NT }]], 2
|
|
1234
|
-
];
|
|
1235
|
-
var GetLoggerDefinitionVersionResponse$ = [3, n0, _GLDVRe,
|
|
1236
|
-
0,
|
|
1237
|
-
[_A, _CT, _Def, _I, _V],
|
|
1238
|
-
[0, 0, () => LoggerDefinitionVersion$, 0, 0]
|
|
1239
|
-
];
|
|
1240
|
-
var GetResourceDefinitionRequest$ = [3, n0, _GRDR,
|
|
1241
|
-
0,
|
|
1242
|
-
[_RDI],
|
|
1243
|
-
[[0, 1]], 1
|
|
1244
|
-
];
|
|
1245
|
-
var GetResourceDefinitionResponse$ = [3, n0, _GRDRe,
|
|
1246
|
-
0,
|
|
1247
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1248
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1249
|
-
];
|
|
1250
|
-
var GetResourceDefinitionVersionRequest$ = [3, n0, _GRDVR,
|
|
1251
|
-
0,
|
|
1252
|
-
[_RDI, _RDVI],
|
|
1253
|
-
[[0, 1], [0, 1]], 2
|
|
1254
|
-
];
|
|
1255
|
-
var GetResourceDefinitionVersionResponse$ = [3, n0, _GRDVRe,
|
|
1256
|
-
0,
|
|
1257
|
-
[_A, _CT, _Def, _I, _V],
|
|
1258
|
-
[0, 0, () => ResourceDefinitionVersion$, 0, 0]
|
|
1259
|
-
];
|
|
1260
|
-
var GetServiceRoleForAccountRequest$ = [3, n0, _GSRFAR,
|
|
1261
|
-
0,
|
|
1262
|
-
[],
|
|
1263
|
-
[]
|
|
1264
|
-
];
|
|
1265
|
-
var GetServiceRoleForAccountResponse$ = [3, n0, _GSRFARe,
|
|
1266
|
-
0,
|
|
1267
|
-
[_AA, _RA],
|
|
1268
|
-
[0, 0]
|
|
1269
|
-
];
|
|
1270
|
-
var GetSubscriptionDefinitionRequest$ = [3, n0, _GSDR,
|
|
1271
|
-
0,
|
|
1272
|
-
[_SDI],
|
|
1273
|
-
[[0, 1]], 1
|
|
1274
|
-
];
|
|
1275
|
-
var GetSubscriptionDefinitionResponse$ = [3, n0, _GSDRe,
|
|
1276
|
-
0,
|
|
1277
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N, _t],
|
|
1278
|
-
[0, 0, 0, 0, 0, 0, 0, 128 | 0]
|
|
1279
|
-
];
|
|
1280
|
-
var GetSubscriptionDefinitionVersionRequest$ = [3, n0, _GSDVR,
|
|
1281
|
-
0,
|
|
1282
|
-
[_SDI, _SDVI, _NT],
|
|
1283
|
-
[[0, 1], [0, 1], [0, { [_hQ]: _NT }]], 2
|
|
1284
|
-
];
|
|
1285
|
-
var GetSubscriptionDefinitionVersionResponse$ = [3, n0, _GSDVRe,
|
|
1286
|
-
0,
|
|
1287
|
-
[_A, _CT, _Def, _I, _NT, _V],
|
|
1288
|
-
[0, 0, () => SubscriptionDefinitionVersion$, 0, 0, 0]
|
|
1289
|
-
];
|
|
1290
|
-
var GetThingRuntimeConfigurationRequest$ = [3, n0, _GTRCR,
|
|
1291
|
-
0,
|
|
1292
|
-
[_TN],
|
|
1293
|
-
[[0, 1]], 1
|
|
1294
|
-
];
|
|
1295
|
-
var GetThingRuntimeConfigurationResponse$ = [3, n0, _GTRCRe,
|
|
1296
|
-
0,
|
|
1297
|
-
[_RC],
|
|
1298
|
-
[() => RuntimeConfiguration$]
|
|
1299
|
-
];
|
|
1300
|
-
var GroupCertificateAuthorityProperties$ = [3, n0, _GCAP,
|
|
1301
|
-
0,
|
|
1302
|
-
[_GCAA, _GCAI],
|
|
1303
|
-
[0, 0]
|
|
1304
|
-
];
|
|
1305
|
-
var GroupInformation$ = [3, n0, _GIr,
|
|
1306
|
-
0,
|
|
1307
|
-
[_A, _CT, _I, _LUT, _LV, _LVA, _N],
|
|
1308
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
1309
|
-
];
|
|
1310
|
-
var GroupOwnerSetting$ = [3, n0, _GOS,
|
|
1311
|
-
0,
|
|
1312
|
-
[_AAGO, _GO],
|
|
1313
|
-
[2, 0]
|
|
1314
|
-
];
|
|
1315
|
-
var GroupVersion$ = [3, n0, _GV,
|
|
1316
|
-
0,
|
|
1317
|
-
[_CDVA, _CDVAo, _DDVA, _FDVA, _LDVA, _RDVA, _SDVA],
|
|
1318
|
-
[0, 0, 0, 0, 0, 0, 0]
|
|
1319
|
-
];
|
|
1320
|
-
var InternalServerErrorException$ = [-3, n0, _ISEE,
|
|
1321
|
-
{ [_e]: _s, [_hE]: 500 },
|
|
1322
|
-
[_ED, _M],
|
|
1323
|
-
[() => ErrorDetails, 0]
|
|
1324
|
-
];
|
|
1325
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerErrorException$, InternalServerErrorException);
|
|
1326
|
-
var ListBulkDeploymentDetailedReportsRequest$ = [3, n0, _LBDDRR,
|
|
1327
|
-
0,
|
|
1328
|
-
[_BDI, _MR, _NT],
|
|
1329
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1330
|
-
];
|
|
1331
|
-
var ListBulkDeploymentDetailedReportsResponse$ = [3, n0, _LBDDRRi,
|
|
1332
|
-
0,
|
|
1333
|
-
[_Dep, _NT],
|
|
1334
|
-
[() => BulkDeploymentResults, 0]
|
|
1335
|
-
];
|
|
1336
|
-
var ListBulkDeploymentsRequest$ = [3, n0, _LBDR,
|
|
1337
|
-
0,
|
|
1338
|
-
[_MR, _NT],
|
|
1339
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1340
|
-
];
|
|
1341
|
-
var ListBulkDeploymentsResponse$ = [3, n0, _LBDRi,
|
|
1342
|
-
0,
|
|
1343
|
-
[_BDu, _NT],
|
|
1344
|
-
[() => BulkDeployments, 0]
|
|
1345
|
-
];
|
|
1346
|
-
var ListConnectorDefinitionsRequest$ = [3, n0, _LCDR,
|
|
1347
|
-
0,
|
|
1348
|
-
[_MR, _NT],
|
|
1349
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1350
|
-
];
|
|
1351
|
-
var ListConnectorDefinitionsResponse$ = [3, n0, _LCDRi,
|
|
1352
|
-
0,
|
|
1353
|
-
[_Defi, _NT],
|
|
1354
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1355
|
-
];
|
|
1356
|
-
var ListConnectorDefinitionVersionsRequest$ = [3, n0, _LCDVR,
|
|
1357
|
-
0,
|
|
1358
|
-
[_CDI, _MR, _NT],
|
|
1359
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1360
|
-
];
|
|
1361
|
-
var ListConnectorDefinitionVersionsResponse$ = [3, n0, _LCDVRi,
|
|
1362
|
-
0,
|
|
1363
|
-
[_NT, _Ve],
|
|
1364
|
-
[0, () => __listOfVersionInformation]
|
|
1365
|
-
];
|
|
1366
|
-
var ListCoreDefinitionsRequest$ = [3, n0, _LCDRis,
|
|
1367
|
-
0,
|
|
1368
|
-
[_MR, _NT],
|
|
1369
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1370
|
-
];
|
|
1371
|
-
var ListCoreDefinitionsResponse$ = [3, n0, _LCDRist,
|
|
1372
|
-
0,
|
|
1373
|
-
[_Defi, _NT],
|
|
1374
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1375
|
-
];
|
|
1376
|
-
var ListCoreDefinitionVersionsRequest$ = [3, n0, _LCDVRis,
|
|
1377
|
-
0,
|
|
1378
|
-
[_CDIo, _MR, _NT],
|
|
1379
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1380
|
-
];
|
|
1381
|
-
var ListCoreDefinitionVersionsResponse$ = [3, n0, _LCDVRist,
|
|
1382
|
-
0,
|
|
1383
|
-
[_NT, _Ve],
|
|
1384
|
-
[0, () => __listOfVersionInformation]
|
|
1385
|
-
];
|
|
1386
|
-
var ListDeploymentsRequest$ = [3, n0, _LDR,
|
|
1387
|
-
0,
|
|
1388
|
-
[_GI, _MR, _NT],
|
|
1389
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1390
|
-
];
|
|
1391
|
-
var ListDeploymentsResponse$ = [3, n0, _LDRi,
|
|
1392
|
-
0,
|
|
1393
|
-
[_Dep, _NT],
|
|
1394
|
-
[() => Deployments, 0]
|
|
1395
|
-
];
|
|
1396
|
-
var ListDeviceDefinitionsRequest$ = [3, n0, _LDDR,
|
|
1397
|
-
0,
|
|
1398
|
-
[_MR, _NT],
|
|
1399
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1400
|
-
];
|
|
1401
|
-
var ListDeviceDefinitionsResponse$ = [3, n0, _LDDRi,
|
|
1402
|
-
0,
|
|
1403
|
-
[_Defi, _NT],
|
|
1404
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1405
|
-
];
|
|
1406
|
-
var ListDeviceDefinitionVersionsRequest$ = [3, n0, _LDDVR,
|
|
1407
|
-
0,
|
|
1408
|
-
[_DDI, _MR, _NT],
|
|
1409
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1410
|
-
];
|
|
1411
|
-
var ListDeviceDefinitionVersionsResponse$ = [3, n0, _LDDVRi,
|
|
1412
|
-
0,
|
|
1413
|
-
[_NT, _Ve],
|
|
1414
|
-
[0, () => __listOfVersionInformation]
|
|
1415
|
-
];
|
|
1416
|
-
var ListFunctionDefinitionsRequest$ = [3, n0, _LFDR,
|
|
1417
|
-
0,
|
|
1418
|
-
[_MR, _NT],
|
|
1419
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1420
|
-
];
|
|
1421
|
-
var ListFunctionDefinitionsResponse$ = [3, n0, _LFDRi,
|
|
1422
|
-
0,
|
|
1423
|
-
[_Defi, _NT],
|
|
1424
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1425
|
-
];
|
|
1426
|
-
var ListFunctionDefinitionVersionsRequest$ = [3, n0, _LFDVR,
|
|
1427
|
-
0,
|
|
1428
|
-
[_FDI, _MR, _NT],
|
|
1429
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1430
|
-
];
|
|
1431
|
-
var ListFunctionDefinitionVersionsResponse$ = [3, n0, _LFDVRi,
|
|
1432
|
-
0,
|
|
1433
|
-
[_NT, _Ve],
|
|
1434
|
-
[0, () => __listOfVersionInformation]
|
|
1435
|
-
];
|
|
1436
|
-
var ListGroupCertificateAuthoritiesRequest$ = [3, n0, _LGCAR,
|
|
1437
|
-
0,
|
|
1438
|
-
[_GI],
|
|
1439
|
-
[[0, 1]], 1
|
|
1440
|
-
];
|
|
1441
|
-
var ListGroupCertificateAuthoritiesResponse$ = [3, n0, _LGCARi,
|
|
1442
|
-
0,
|
|
1443
|
-
[_GCA],
|
|
1444
|
-
[() => __listOfGroupCertificateAuthorityProperties]
|
|
1445
|
-
];
|
|
1446
|
-
var ListGroupsRequest$ = [3, n0, _LGR,
|
|
1447
|
-
0,
|
|
1448
|
-
[_MR, _NT],
|
|
1449
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1450
|
-
];
|
|
1451
|
-
var ListGroupsResponse$ = [3, n0, _LGRi,
|
|
1452
|
-
0,
|
|
1453
|
-
[_Gr, _NT],
|
|
1454
|
-
[() => __listOfGroupInformation, 0]
|
|
1455
|
-
];
|
|
1456
|
-
var ListGroupVersionsRequest$ = [3, n0, _LGVR,
|
|
1457
|
-
0,
|
|
1458
|
-
[_GI, _MR, _NT],
|
|
1459
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1460
|
-
];
|
|
1461
|
-
var ListGroupVersionsResponse$ = [3, n0, _LGVRi,
|
|
1462
|
-
0,
|
|
1463
|
-
[_NT, _Ve],
|
|
1464
|
-
[0, () => __listOfVersionInformation]
|
|
1465
|
-
];
|
|
1466
|
-
var ListLoggerDefinitionsRequest$ = [3, n0, _LLDR,
|
|
1467
|
-
0,
|
|
1468
|
-
[_MR, _NT],
|
|
1469
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1470
|
-
];
|
|
1471
|
-
var ListLoggerDefinitionsResponse$ = [3, n0, _LLDRi,
|
|
1472
|
-
0,
|
|
1473
|
-
[_Defi, _NT],
|
|
1474
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1475
|
-
];
|
|
1476
|
-
var ListLoggerDefinitionVersionsRequest$ = [3, n0, _LLDVR,
|
|
1477
|
-
0,
|
|
1478
|
-
[_LDI, _MR, _NT],
|
|
1479
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1480
|
-
];
|
|
1481
|
-
var ListLoggerDefinitionVersionsResponse$ = [3, n0, _LLDVRi,
|
|
1482
|
-
0,
|
|
1483
|
-
[_NT, _Ve],
|
|
1484
|
-
[0, () => __listOfVersionInformation]
|
|
1485
|
-
];
|
|
1486
|
-
var ListResourceDefinitionsRequest$ = [3, n0, _LRDR,
|
|
1487
|
-
0,
|
|
1488
|
-
[_MR, _NT],
|
|
1489
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1490
|
-
];
|
|
1491
|
-
var ListResourceDefinitionsResponse$ = [3, n0, _LRDRi,
|
|
1492
|
-
0,
|
|
1493
|
-
[_Defi, _NT],
|
|
1494
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1495
|
-
];
|
|
1496
|
-
var ListResourceDefinitionVersionsRequest$ = [3, n0, _LRDVR,
|
|
1497
|
-
0,
|
|
1498
|
-
[_RDI, _MR, _NT],
|
|
1499
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1500
|
-
];
|
|
1501
|
-
var ListResourceDefinitionVersionsResponse$ = [3, n0, _LRDVRi,
|
|
1502
|
-
0,
|
|
1503
|
-
[_NT, _Ve],
|
|
1504
|
-
[0, () => __listOfVersionInformation]
|
|
1505
|
-
];
|
|
1506
|
-
var ListSubscriptionDefinitionsRequest$ = [3, n0, _LSDR,
|
|
1507
|
-
0,
|
|
1508
|
-
[_MR, _NT],
|
|
1509
|
-
[[0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]]
|
|
1510
|
-
];
|
|
1511
|
-
var ListSubscriptionDefinitionsResponse$ = [3, n0, _LSDRi,
|
|
1512
|
-
0,
|
|
1513
|
-
[_Defi, _NT],
|
|
1514
|
-
[[() => __listOfDefinitionInformation, 0], 0]
|
|
1515
|
-
];
|
|
1516
|
-
var ListSubscriptionDefinitionVersionsRequest$ = [3, n0, _LSDVR,
|
|
1517
|
-
0,
|
|
1518
|
-
[_SDI, _MR, _NT],
|
|
1519
|
-
[[0, 1], [0, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
|
|
1520
|
-
];
|
|
1521
|
-
var ListSubscriptionDefinitionVersionsResponse$ = [3, n0, _LSDVRi,
|
|
1522
|
-
0,
|
|
1523
|
-
[_NT, _Ve],
|
|
1524
|
-
[0, () => __listOfVersionInformation]
|
|
1525
|
-
];
|
|
1526
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1527
|
-
0,
|
|
1528
|
-
[_RAes],
|
|
1529
|
-
[[0, 1]], 1
|
|
1530
|
-
];
|
|
1531
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1532
|
-
0,
|
|
1533
|
-
[_t],
|
|
1534
|
-
[128 | 0]
|
|
1535
|
-
];
|
|
1536
|
-
var LocalDeviceResourceData$ = [3, n0, _LDRD,
|
|
1537
|
-
0,
|
|
1538
|
-
[_GOS, _SP],
|
|
1539
|
-
[() => GroupOwnerSetting$, 0]
|
|
1540
|
-
];
|
|
1541
|
-
var LocalVolumeResourceData$ = [3, n0, _LVRD,
|
|
1542
|
-
0,
|
|
1543
|
-
[_DP, _GOS, _SP],
|
|
1544
|
-
[0, () => GroupOwnerSetting$, 0]
|
|
1545
|
-
];
|
|
1546
|
-
var Logger$ = [3, n0, _Lo,
|
|
1547
|
-
0,
|
|
1548
|
-
[_Com, _I, _Le, _Ty, _Sp],
|
|
1549
|
-
[0, 0, 0, 0, 1], 4
|
|
1550
|
-
];
|
|
1551
|
-
var LoggerDefinitionVersion$ = [3, n0, _LDV,
|
|
1552
|
-
0,
|
|
1553
|
-
[_L],
|
|
1554
|
-
[() => __listOfLogger]
|
|
1555
|
-
];
|
|
1556
|
-
var ResetDeploymentsRequest$ = [3, n0, _RDR,
|
|
1557
|
-
0,
|
|
1558
|
-
[_GI, _ACT, _Fo],
|
|
1559
|
-
[[0, 1], [0, { [_hH]: _XACT }], 2], 1
|
|
1560
|
-
];
|
|
1561
|
-
var ResetDeploymentsResponse$ = [3, n0, _RDRe,
|
|
1562
|
-
0,
|
|
1563
|
-
[_DA, _DI],
|
|
1564
|
-
[0, 0]
|
|
1565
|
-
];
|
|
1566
|
-
var Resource$ = [3, n0, _Re,
|
|
1567
|
-
0,
|
|
1568
|
-
[_I, _N, _RDC],
|
|
1569
|
-
[0, 0, () => ResourceDataContainer$], 3
|
|
1570
|
-
];
|
|
1571
|
-
var ResourceAccessPolicy$ = [3, n0, _RAPe,
|
|
1572
|
-
0,
|
|
1573
|
-
[_RI, _Pe],
|
|
1574
|
-
[0, 0], 1
|
|
1575
|
-
];
|
|
1576
|
-
var ResourceDataContainer$ = [3, n0, _RDC,
|
|
1577
|
-
0,
|
|
1578
|
-
[_LDRD, _LVRD, _SMLMRD, _SMMLMRD, _SMSRD],
|
|
1579
|
-
[() => LocalDeviceResourceData$, () => LocalVolumeResourceData$, () => S3MachineLearningModelResourceData$, () => SageMakerMachineLearningModelResourceData$, () => SecretsManagerSecretResourceData$]
|
|
1580
|
-
];
|
|
1581
|
-
var ResourceDefinitionVersion$ = [3, n0, _RDV,
|
|
1582
|
-
0,
|
|
1583
|
-
[_R],
|
|
1584
|
-
[() => __listOfResource]
|
|
1585
|
-
];
|
|
1586
|
-
var ResourceDownloadOwnerSetting$ = [3, n0, _RDOS,
|
|
1587
|
-
0,
|
|
1588
|
-
[_GO, _GP],
|
|
1589
|
-
[0, 0], 2
|
|
1590
|
-
];
|
|
1591
|
-
var RuntimeConfiguration$ = [3, n0, _RC,
|
|
1592
|
-
0,
|
|
1593
|
-
[_TC],
|
|
1594
|
-
[() => TelemetryConfiguration$]
|
|
1595
|
-
];
|
|
1596
|
-
var S3MachineLearningModelResourceData$ = [3, n0, _SMLMRD,
|
|
1597
|
-
0,
|
|
1598
|
-
[_DP, _OS, _SU],
|
|
1599
|
-
[0, () => ResourceDownloadOwnerSetting$, 0]
|
|
1600
|
-
];
|
|
1601
|
-
var SageMakerMachineLearningModelResourceData$ = [3, n0, _SMMLMRD,
|
|
1602
|
-
0,
|
|
1603
|
-
[_DP, _OS, _SMJA],
|
|
1604
|
-
[0, () => ResourceDownloadOwnerSetting$, 0]
|
|
1605
|
-
];
|
|
1606
|
-
var SecretsManagerSecretResourceData$ = [3, n0, _SMSRD,
|
|
1607
|
-
0,
|
|
1608
|
-
[_ARN, _ASLTD],
|
|
1609
|
-
[0, 64 | 0]
|
|
1610
|
-
];
|
|
1611
|
-
var StartBulkDeploymentRequest$ = [3, n0, _SBDR,
|
|
1612
|
-
0,
|
|
1613
|
-
[_ERA, _IFU, _ACT, _t],
|
|
1614
|
-
[0, 0, [0, { [_hH]: _XACT }], 128 | 0], 2
|
|
1615
|
-
];
|
|
1616
|
-
var StartBulkDeploymentResponse$ = [3, n0, _SBDRt,
|
|
1617
|
-
0,
|
|
1618
|
-
[_BDA, _BDI],
|
|
1619
|
-
[0, 0]
|
|
1620
|
-
];
|
|
1621
|
-
var StopBulkDeploymentRequest$ = [3, n0, _SBDRto,
|
|
1622
|
-
0,
|
|
1623
|
-
[_BDI],
|
|
1624
|
-
[[0, 1]], 1
|
|
1625
|
-
];
|
|
1626
|
-
var StopBulkDeploymentResponse$ = [3, n0, _SBDRtop,
|
|
1627
|
-
0,
|
|
1628
|
-
[],
|
|
1629
|
-
[]
|
|
1630
|
-
];
|
|
1631
|
-
var Subscription$ = [3, n0, _Su,
|
|
1632
|
-
0,
|
|
1633
|
-
[_I, _So, _Sub, _Ta],
|
|
1634
|
-
[0, 0, 0, 0], 4
|
|
1635
|
-
];
|
|
1636
|
-
var SubscriptionDefinitionVersion$ = [3, n0, _SDV,
|
|
1637
|
-
0,
|
|
1638
|
-
[_S],
|
|
1639
|
-
[() => __listOfSubscription]
|
|
1640
|
-
];
|
|
1641
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1642
|
-
0,
|
|
1643
|
-
[_RAes, _t],
|
|
1644
|
-
[[0, 1], 128 | 0], 1
|
|
1645
|
-
];
|
|
1646
|
-
var TelemetryConfiguration$ = [3, n0, _TC,
|
|
1647
|
-
0,
|
|
1648
|
-
[_Te, _CSS],
|
|
1649
|
-
[0, 0], 1
|
|
1650
|
-
];
|
|
1651
|
-
var TelemetryConfigurationUpdate$ = [3, n0, _TCU,
|
|
1652
|
-
0,
|
|
1653
|
-
[_Te],
|
|
1654
|
-
[0], 1
|
|
1655
|
-
];
|
|
1656
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1657
|
-
0,
|
|
1658
|
-
[_RAes, _TK],
|
|
1659
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1660
|
-
];
|
|
1661
|
-
var UpdateConnectivityInfoRequest$ = [3, n0, _UCIR,
|
|
1662
|
-
0,
|
|
1663
|
-
[_TN, _CI],
|
|
1664
|
-
[[0, 1], () => __listOfConnectivityInfo], 1
|
|
1665
|
-
];
|
|
1666
|
-
var UpdateConnectivityInfoResponse$ = [3, n0, _UCIRp,
|
|
1667
|
-
0,
|
|
1668
|
-
[_M, _V],
|
|
1669
|
-
[[0, { [_jN]: _m }], 0]
|
|
1670
|
-
];
|
|
1671
|
-
var UpdateConnectorDefinitionRequest$ = [3, n0, _UCDR,
|
|
1672
|
-
0,
|
|
1673
|
-
[_CDI, _N],
|
|
1674
|
-
[[0, 1], 0], 1
|
|
1675
|
-
];
|
|
1676
|
-
var UpdateConnectorDefinitionResponse$ = [3, n0, _UCDRp,
|
|
1677
|
-
0,
|
|
1678
|
-
[],
|
|
1679
|
-
[]
|
|
1680
|
-
];
|
|
1681
|
-
var UpdateCoreDefinitionRequest$ = [3, n0, _UCDRpd,
|
|
1682
|
-
0,
|
|
1683
|
-
[_CDIo, _N],
|
|
1684
|
-
[[0, 1], 0], 1
|
|
1685
|
-
];
|
|
1686
|
-
var UpdateCoreDefinitionResponse$ = [3, n0, _UCDRpda,
|
|
1687
|
-
0,
|
|
1688
|
-
[],
|
|
1689
|
-
[]
|
|
1690
|
-
];
|
|
1691
|
-
var UpdateDeviceDefinitionRequest$ = [3, n0, _UDDR,
|
|
1692
|
-
0,
|
|
1693
|
-
[_DDI, _N],
|
|
1694
|
-
[[0, 1], 0], 1
|
|
1695
|
-
];
|
|
1696
|
-
var UpdateDeviceDefinitionResponse$ = [3, n0, _UDDRp,
|
|
1697
|
-
0,
|
|
1698
|
-
[],
|
|
1699
|
-
[]
|
|
1700
|
-
];
|
|
1701
|
-
var UpdateFunctionDefinitionRequest$ = [3, n0, _UFDR,
|
|
1702
|
-
0,
|
|
1703
|
-
[_FDI, _N],
|
|
1704
|
-
[[0, 1], 0], 1
|
|
1705
|
-
];
|
|
1706
|
-
var UpdateFunctionDefinitionResponse$ = [3, n0, _UFDRp,
|
|
1707
|
-
0,
|
|
1708
|
-
[],
|
|
1709
|
-
[]
|
|
1710
|
-
];
|
|
1711
|
-
var UpdateGroupCertificateConfigurationRequest$ = [3, n0, _UGCCR,
|
|
1712
|
-
0,
|
|
1713
|
-
[_GI, _CEIM],
|
|
1714
|
-
[[0, 1], 0], 1
|
|
1715
|
-
];
|
|
1716
|
-
var UpdateGroupCertificateConfigurationResponse$ = [3, n0, _UGCCRp,
|
|
1717
|
-
0,
|
|
1718
|
-
[_CAEIM, _CEIM, _GI],
|
|
1719
|
-
[0, 0, 0]
|
|
1720
|
-
];
|
|
1721
|
-
var UpdateGroupRequest$ = [3, n0, _UGR,
|
|
1722
|
-
0,
|
|
1723
|
-
[_GI, _N],
|
|
1724
|
-
[[0, 1], 0], 1
|
|
1725
|
-
];
|
|
1726
|
-
var UpdateGroupResponse$ = [3, n0, _UGRp,
|
|
1727
|
-
0,
|
|
1728
|
-
[],
|
|
1729
|
-
[]
|
|
1730
|
-
];
|
|
1731
|
-
var UpdateLoggerDefinitionRequest$ = [3, n0, _ULDR,
|
|
1732
|
-
0,
|
|
1733
|
-
[_LDI, _N],
|
|
1734
|
-
[[0, 1], 0], 1
|
|
1735
|
-
];
|
|
1736
|
-
var UpdateLoggerDefinitionResponse$ = [3, n0, _ULDRp,
|
|
1737
|
-
0,
|
|
1738
|
-
[],
|
|
1739
|
-
[]
|
|
1740
|
-
];
|
|
1741
|
-
var UpdateResourceDefinitionRequest$ = [3, n0, _URDR,
|
|
1742
|
-
0,
|
|
1743
|
-
[_RDI, _N],
|
|
1744
|
-
[[0, 1], 0], 1
|
|
1745
|
-
];
|
|
1746
|
-
var UpdateResourceDefinitionResponse$ = [3, n0, _URDRp,
|
|
1747
|
-
0,
|
|
1748
|
-
[],
|
|
1749
|
-
[]
|
|
1750
|
-
];
|
|
1751
|
-
var UpdateSubscriptionDefinitionRequest$ = [3, n0, _USDR,
|
|
1752
|
-
0,
|
|
1753
|
-
[_SDI, _N],
|
|
1754
|
-
[[0, 1], 0], 1
|
|
1755
|
-
];
|
|
1756
|
-
var UpdateSubscriptionDefinitionResponse$ = [3, n0, _USDRp,
|
|
1757
|
-
0,
|
|
1758
|
-
[],
|
|
1759
|
-
[]
|
|
1760
|
-
];
|
|
1761
|
-
var UpdateThingRuntimeConfigurationRequest$ = [3, n0, _UTRCR,
|
|
1762
|
-
0,
|
|
1763
|
-
[_TN, _TC],
|
|
1764
|
-
[[0, 1], () => TelemetryConfigurationUpdate$], 1
|
|
1765
|
-
];
|
|
1766
|
-
var UpdateThingRuntimeConfigurationResponse$ = [3, n0, _UTRCRp,
|
|
1767
|
-
0,
|
|
1768
|
-
[],
|
|
1769
|
-
[]
|
|
1770
|
-
];
|
|
1771
|
-
var VersionInformation$ = [3, n0, _VI,
|
|
1772
|
-
0,
|
|
1773
|
-
[_A, _CT, _I, _V],
|
|
1774
|
-
[0, 0, 0, 0]
|
|
1775
|
-
];
|
|
1776
|
-
var __Unit = "unit";
|
|
1777
|
-
var GreengrassServiceException$ = [-3, _sm, "GreengrassServiceException", 0, [], []];
|
|
1778
|
-
schema.TypeRegistry.for(_sm).registerError(GreengrassServiceException$, GreengrassServiceException);
|
|
1779
|
-
var __listOfConnectivityInfo = [1, n0, _lOCI,
|
|
1780
|
-
0, () => ConnectivityInfo$
|
|
1781
|
-
];
|
|
1782
|
-
var __listOfConnector = [1, n0, _lOC,
|
|
1783
|
-
0, () => Connector$
|
|
1784
|
-
];
|
|
1785
|
-
var __listOfCore = [1, n0, _lOCi,
|
|
1786
|
-
0, () => Core$
|
|
1787
|
-
];
|
|
1788
|
-
var __listOfDefinitionInformation = [1, n0, _lODI,
|
|
1789
|
-
0, [() => DefinitionInformation$,
|
|
1790
|
-
0]
|
|
1791
|
-
];
|
|
1792
|
-
var __listOfDevice = [1, n0, _lOD,
|
|
1793
|
-
0, () => Device$
|
|
1794
|
-
];
|
|
1795
|
-
var __listOfFunction = [1, n0, _lOF,
|
|
1796
|
-
0, () => Function$
|
|
1797
|
-
];
|
|
1798
|
-
var __listOfGroupCertificateAuthorityProperties = [1, n0, _lOGCAP,
|
|
1799
|
-
0, () => GroupCertificateAuthorityProperties$
|
|
1800
|
-
];
|
|
1801
|
-
var __listOfGroupInformation = [1, n0, _lOGI,
|
|
1802
|
-
0, () => GroupInformation$
|
|
1803
|
-
];
|
|
1804
|
-
var __listOfLogger = [1, n0, _lOL,
|
|
1805
|
-
0, () => Logger$
|
|
1806
|
-
];
|
|
1807
|
-
var __listOfResource = [1, n0, _lOR,
|
|
1808
|
-
0, () => Resource$
|
|
1809
|
-
];
|
|
1810
|
-
var __listOfResourceAccessPolicy = [1, n0, _lORAP,
|
|
1811
|
-
0, () => ResourceAccessPolicy$
|
|
1812
|
-
];
|
|
1813
|
-
var __listOfSubscription = [1, n0, _lOS,
|
|
1814
|
-
0, () => Subscription$
|
|
1815
|
-
];
|
|
1816
|
-
var __listOfVersionInformation = [1, n0, _lOVI,
|
|
1817
|
-
0, () => VersionInformation$
|
|
1818
|
-
];
|
|
1819
|
-
var BulkDeploymentResults = [1, n0, _BDRu,
|
|
1820
|
-
0, () => BulkDeploymentResult$
|
|
1821
|
-
];
|
|
1822
|
-
var BulkDeployments = [1, n0, _BDu,
|
|
1823
|
-
0, () => BulkDeployment$
|
|
1824
|
-
];
|
|
1825
|
-
var Deployments = [1, n0, _Dep,
|
|
1826
|
-
0, () => Deployment$
|
|
1827
|
-
];
|
|
1828
|
-
var ErrorDetails = [1, n0, _ED,
|
|
1829
|
-
0, () => ErrorDetail$
|
|
1830
|
-
];
|
|
1831
|
-
var AssociateRoleToGroup$ = [9, n0, _ARTG,
|
|
1832
|
-
{ [_h]: ["PUT", "/greengrass/groups/{GroupId}/role", 200] }, () => AssociateRoleToGroupRequest$, () => AssociateRoleToGroupResponse$
|
|
1833
|
-
];
|
|
1834
|
-
var AssociateServiceRoleToAccount$ = [9, n0, _ASRTA,
|
|
1835
|
-
{ [_h]: ["PUT", "/greengrass/servicerole", 200] }, () => AssociateServiceRoleToAccountRequest$, () => AssociateServiceRoleToAccountResponse$
|
|
1836
|
-
];
|
|
1837
|
-
var CreateConnectorDefinition$ = [9, n0, _CCD,
|
|
1838
|
-
{ [_h]: ["POST", "/greengrass/definition/connectors", 200] }, () => CreateConnectorDefinitionRequest$, () => CreateConnectorDefinitionResponse$
|
|
1839
|
-
];
|
|
1840
|
-
var CreateConnectorDefinitionVersion$ = [9, n0, _CCDV,
|
|
1841
|
-
{ [_h]: ["POST", "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions", 200] }, () => CreateConnectorDefinitionVersionRequest$, () => CreateConnectorDefinitionVersionResponse$
|
|
1842
|
-
];
|
|
1843
|
-
var CreateCoreDefinition$ = [9, n0, _CCDr,
|
|
1844
|
-
{ [_h]: ["POST", "/greengrass/definition/cores", 200] }, () => CreateCoreDefinitionRequest$, () => CreateCoreDefinitionResponse$
|
|
1845
|
-
];
|
|
1846
|
-
var CreateCoreDefinitionVersion$ = [9, n0, _CCDVr,
|
|
1847
|
-
{ [_h]: ["POST", "/greengrass/definition/cores/{CoreDefinitionId}/versions", 200] }, () => CreateCoreDefinitionVersionRequest$, () => CreateCoreDefinitionVersionResponse$
|
|
1848
|
-
];
|
|
1849
|
-
var CreateDeployment$ = [9, n0, _CD,
|
|
1850
|
-
{ [_h]: ["POST", "/greengrass/groups/{GroupId}/deployments", 200] }, () => CreateDeploymentRequest$, () => CreateDeploymentResponse$
|
|
1851
|
-
];
|
|
1852
|
-
var CreateDeviceDefinition$ = [9, n0, _CDD,
|
|
1853
|
-
{ [_h]: ["POST", "/greengrass/definition/devices", 200] }, () => CreateDeviceDefinitionRequest$, () => CreateDeviceDefinitionResponse$
|
|
1854
|
-
];
|
|
1855
|
-
var CreateDeviceDefinitionVersion$ = [9, n0, _CDDV,
|
|
1856
|
-
{ [_h]: ["POST", "/greengrass/definition/devices/{DeviceDefinitionId}/versions", 200] }, () => CreateDeviceDefinitionVersionRequest$, () => CreateDeviceDefinitionVersionResponse$
|
|
1857
|
-
];
|
|
1858
|
-
var CreateFunctionDefinition$ = [9, n0, _CFD,
|
|
1859
|
-
{ [_h]: ["POST", "/greengrass/definition/functions", 200] }, () => CreateFunctionDefinitionRequest$, () => CreateFunctionDefinitionResponse$
|
|
1860
|
-
];
|
|
1861
|
-
var CreateFunctionDefinitionVersion$ = [9, n0, _CFDV,
|
|
1862
|
-
{ [_h]: ["POST", "/greengrass/definition/functions/{FunctionDefinitionId}/versions", 200] }, () => CreateFunctionDefinitionVersionRequest$, () => CreateFunctionDefinitionVersionResponse$
|
|
1863
|
-
];
|
|
1864
|
-
var CreateGroup$ = [9, n0, _CG,
|
|
1865
|
-
{ [_h]: ["POST", "/greengrass/groups", 200] }, () => CreateGroupRequest$, () => CreateGroupResponse$
|
|
1866
|
-
];
|
|
1867
|
-
var CreateGroupCertificateAuthority$ = [9, n0, _CGCA,
|
|
1868
|
-
{ [_h]: ["POST", "/greengrass/groups/{GroupId}/certificateauthorities", 200] }, () => CreateGroupCertificateAuthorityRequest$, () => CreateGroupCertificateAuthorityResponse$
|
|
1869
|
-
];
|
|
1870
|
-
var CreateGroupVersion$ = [9, n0, _CGV,
|
|
1871
|
-
{ [_h]: ["POST", "/greengrass/groups/{GroupId}/versions", 200] }, () => CreateGroupVersionRequest$, () => CreateGroupVersionResponse$
|
|
1872
|
-
];
|
|
1873
|
-
var CreateLoggerDefinition$ = [9, n0, _CLD,
|
|
1874
|
-
{ [_h]: ["POST", "/greengrass/definition/loggers", 200] }, () => CreateLoggerDefinitionRequest$, () => CreateLoggerDefinitionResponse$
|
|
1875
|
-
];
|
|
1876
|
-
var CreateLoggerDefinitionVersion$ = [9, n0, _CLDV,
|
|
1877
|
-
{ [_h]: ["POST", "/greengrass/definition/loggers/{LoggerDefinitionId}/versions", 200] }, () => CreateLoggerDefinitionVersionRequest$, () => CreateLoggerDefinitionVersionResponse$
|
|
1878
|
-
];
|
|
1879
|
-
var CreateResourceDefinition$ = [9, n0, _CRD,
|
|
1880
|
-
{ [_h]: ["POST", "/greengrass/definition/resources", 200] }, () => CreateResourceDefinitionRequest$, () => CreateResourceDefinitionResponse$
|
|
1881
|
-
];
|
|
1882
|
-
var CreateResourceDefinitionVersion$ = [9, n0, _CRDV,
|
|
1883
|
-
{ [_h]: ["POST", "/greengrass/definition/resources/{ResourceDefinitionId}/versions", 200] }, () => CreateResourceDefinitionVersionRequest$, () => CreateResourceDefinitionVersionResponse$
|
|
1884
|
-
];
|
|
1885
|
-
var CreateSoftwareUpdateJob$ = [9, n0, _CSUJ,
|
|
1886
|
-
{ [_h]: ["POST", "/greengrass/updates", 200] }, () => CreateSoftwareUpdateJobRequest$, () => CreateSoftwareUpdateJobResponse$
|
|
1887
|
-
];
|
|
1888
|
-
var CreateSubscriptionDefinition$ = [9, n0, _CSD,
|
|
1889
|
-
{ [_h]: ["POST", "/greengrass/definition/subscriptions", 200] }, () => CreateSubscriptionDefinitionRequest$, () => CreateSubscriptionDefinitionResponse$
|
|
1890
|
-
];
|
|
1891
|
-
var CreateSubscriptionDefinitionVersion$ = [9, n0, _CSDV,
|
|
1892
|
-
{ [_h]: ["POST", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions", 200] }, () => CreateSubscriptionDefinitionVersionRequest$, () => CreateSubscriptionDefinitionVersionResponse$
|
|
1893
|
-
];
|
|
1894
|
-
var DeleteConnectorDefinition$ = [9, n0, _DCD,
|
|
1895
|
-
{ [_h]: ["DELETE", "/greengrass/definition/connectors/{ConnectorDefinitionId}", 200] }, () => DeleteConnectorDefinitionRequest$, () => DeleteConnectorDefinitionResponse$
|
|
1896
|
-
];
|
|
1897
|
-
var DeleteCoreDefinition$ = [9, n0, _DCDe,
|
|
1898
|
-
{ [_h]: ["DELETE", "/greengrass/definition/cores/{CoreDefinitionId}", 200] }, () => DeleteCoreDefinitionRequest$, () => DeleteCoreDefinitionResponse$
|
|
1899
|
-
];
|
|
1900
|
-
var DeleteDeviceDefinition$ = [9, n0, _DDD,
|
|
1901
|
-
{ [_h]: ["DELETE", "/greengrass/definition/devices/{DeviceDefinitionId}", 200] }, () => DeleteDeviceDefinitionRequest$, () => DeleteDeviceDefinitionResponse$
|
|
1902
|
-
];
|
|
1903
|
-
var DeleteFunctionDefinition$ = [9, n0, _DFD,
|
|
1904
|
-
{ [_h]: ["DELETE", "/greengrass/definition/functions/{FunctionDefinitionId}", 200] }, () => DeleteFunctionDefinitionRequest$, () => DeleteFunctionDefinitionResponse$
|
|
1905
|
-
];
|
|
1906
|
-
var DeleteGroup$ = [9, n0, _DG,
|
|
1907
|
-
{ [_h]: ["DELETE", "/greengrass/groups/{GroupId}", 200] }, () => DeleteGroupRequest$, () => DeleteGroupResponse$
|
|
1908
|
-
];
|
|
1909
|
-
var DeleteLoggerDefinition$ = [9, n0, _DLD,
|
|
1910
|
-
{ [_h]: ["DELETE", "/greengrass/definition/loggers/{LoggerDefinitionId}", 200] }, () => DeleteLoggerDefinitionRequest$, () => DeleteLoggerDefinitionResponse$
|
|
1911
|
-
];
|
|
1912
|
-
var DeleteResourceDefinition$ = [9, n0, _DRD,
|
|
1913
|
-
{ [_h]: ["DELETE", "/greengrass/definition/resources/{ResourceDefinitionId}", 200] }, () => DeleteResourceDefinitionRequest$, () => DeleteResourceDefinitionResponse$
|
|
1914
|
-
];
|
|
1915
|
-
var DeleteSubscriptionDefinition$ = [9, n0, _DSD,
|
|
1916
|
-
{ [_h]: ["DELETE", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}", 200] }, () => DeleteSubscriptionDefinitionRequest$, () => DeleteSubscriptionDefinitionResponse$
|
|
1917
|
-
];
|
|
1918
|
-
var DisassociateRoleFromGroup$ = [9, n0, _DRFG,
|
|
1919
|
-
{ [_h]: ["DELETE", "/greengrass/groups/{GroupId}/role", 200] }, () => DisassociateRoleFromGroupRequest$, () => DisassociateRoleFromGroupResponse$
|
|
1920
|
-
];
|
|
1921
|
-
var DisassociateServiceRoleFromAccount$ = [9, n0, _DSRFA,
|
|
1922
|
-
{ [_h]: ["DELETE", "/greengrass/servicerole", 200] }, () => DisassociateServiceRoleFromAccountRequest$, () => DisassociateServiceRoleFromAccountResponse$
|
|
1923
|
-
];
|
|
1924
|
-
var GetAssociatedRole$ = [9, n0, _GAR,
|
|
1925
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/role", 200] }, () => GetAssociatedRoleRequest$, () => GetAssociatedRoleResponse$
|
|
1926
|
-
];
|
|
1927
|
-
var GetBulkDeploymentStatus$ = [9, n0, _GBDS,
|
|
1928
|
-
{ [_h]: ["GET", "/greengrass/bulk/deployments/{BulkDeploymentId}/status", 200] }, () => GetBulkDeploymentStatusRequest$, () => GetBulkDeploymentStatusResponse$
|
|
1929
|
-
];
|
|
1930
|
-
var GetConnectivityInfo$ = [9, n0, _GCI,
|
|
1931
|
-
{ [_h]: ["GET", "/greengrass/things/{ThingName}/connectivityInfo", 200] }, () => GetConnectivityInfoRequest$, () => GetConnectivityInfoResponse$
|
|
1932
|
-
];
|
|
1933
|
-
var GetConnectorDefinition$ = [9, n0, _GCD,
|
|
1934
|
-
{ [_h]: ["GET", "/greengrass/definition/connectors/{ConnectorDefinitionId}", 200] }, () => GetConnectorDefinitionRequest$, () => GetConnectorDefinitionResponse$
|
|
1935
|
-
];
|
|
1936
|
-
var GetConnectorDefinitionVersion$ = [9, n0, _GCDV,
|
|
1937
|
-
{ [_h]: ["GET", "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions/{ConnectorDefinitionVersionId}", 200] }, () => GetConnectorDefinitionVersionRequest$, () => GetConnectorDefinitionVersionResponse$
|
|
1938
|
-
];
|
|
1939
|
-
var GetCoreDefinition$ = [9, n0, _GCDe,
|
|
1940
|
-
{ [_h]: ["GET", "/greengrass/definition/cores/{CoreDefinitionId}", 200] }, () => GetCoreDefinitionRequest$, () => GetCoreDefinitionResponse$
|
|
1941
|
-
];
|
|
1942
|
-
var GetCoreDefinitionVersion$ = [9, n0, _GCDVe,
|
|
1943
|
-
{ [_h]: ["GET", "/greengrass/definition/cores/{CoreDefinitionId}/versions/{CoreDefinitionVersionId}", 200] }, () => GetCoreDefinitionVersionRequest$, () => GetCoreDefinitionVersionResponse$
|
|
1944
|
-
];
|
|
1945
|
-
var GetDeploymentStatus$ = [9, n0, _GDS,
|
|
1946
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/deployments/{DeploymentId}/status", 200] }, () => GetDeploymentStatusRequest$, () => GetDeploymentStatusResponse$
|
|
1947
|
-
];
|
|
1948
|
-
var GetDeviceDefinition$ = [9, n0, _GDD,
|
|
1949
|
-
{ [_h]: ["GET", "/greengrass/definition/devices/{DeviceDefinitionId}", 200] }, () => GetDeviceDefinitionRequest$, () => GetDeviceDefinitionResponse$
|
|
1950
|
-
];
|
|
1951
|
-
var GetDeviceDefinitionVersion$ = [9, n0, _GDDV,
|
|
1952
|
-
{ [_h]: ["GET", "/greengrass/definition/devices/{DeviceDefinitionId}/versions/{DeviceDefinitionVersionId}", 200] }, () => GetDeviceDefinitionVersionRequest$, () => GetDeviceDefinitionVersionResponse$
|
|
1953
|
-
];
|
|
1954
|
-
var GetFunctionDefinition$ = [9, n0, _GFD,
|
|
1955
|
-
{ [_h]: ["GET", "/greengrass/definition/functions/{FunctionDefinitionId}", 200] }, () => GetFunctionDefinitionRequest$, () => GetFunctionDefinitionResponse$
|
|
1956
|
-
];
|
|
1957
|
-
var GetFunctionDefinitionVersion$ = [9, n0, _GFDV,
|
|
1958
|
-
{ [_h]: ["GET", "/greengrass/definition/functions/{FunctionDefinitionId}/versions/{FunctionDefinitionVersionId}", 200] }, () => GetFunctionDefinitionVersionRequest$, () => GetFunctionDefinitionVersionResponse$
|
|
1959
|
-
];
|
|
1960
|
-
var GetGroup$ = [9, n0, _GG,
|
|
1961
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}", 200] }, () => GetGroupRequest$, () => GetGroupResponse$
|
|
1962
|
-
];
|
|
1963
|
-
var GetGroupCertificateAuthority$ = [9, n0, _GGCA,
|
|
1964
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/certificateauthorities/{CertificateAuthorityId}", 200] }, () => GetGroupCertificateAuthorityRequest$, () => GetGroupCertificateAuthorityResponse$
|
|
1965
|
-
];
|
|
1966
|
-
var GetGroupCertificateConfiguration$ = [9, n0, _GGCC,
|
|
1967
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/certificateauthorities/configuration/expiry", 200] }, () => GetGroupCertificateConfigurationRequest$, () => GetGroupCertificateConfigurationResponse$
|
|
1968
|
-
];
|
|
1969
|
-
var GetGroupVersion$ = [9, n0, _GGV,
|
|
1970
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/versions/{GroupVersionId}", 200] }, () => GetGroupVersionRequest$, () => GetGroupVersionResponse$
|
|
1971
|
-
];
|
|
1972
|
-
var GetLoggerDefinition$ = [9, n0, _GLD,
|
|
1973
|
-
{ [_h]: ["GET", "/greengrass/definition/loggers/{LoggerDefinitionId}", 200] }, () => GetLoggerDefinitionRequest$, () => GetLoggerDefinitionResponse$
|
|
1974
|
-
];
|
|
1975
|
-
var GetLoggerDefinitionVersion$ = [9, n0, _GLDV,
|
|
1976
|
-
{ [_h]: ["GET", "/greengrass/definition/loggers/{LoggerDefinitionId}/versions/{LoggerDefinitionVersionId}", 200] }, () => GetLoggerDefinitionVersionRequest$, () => GetLoggerDefinitionVersionResponse$
|
|
1977
|
-
];
|
|
1978
|
-
var GetResourceDefinition$ = [9, n0, _GRD,
|
|
1979
|
-
{ [_h]: ["GET", "/greengrass/definition/resources/{ResourceDefinitionId}", 200] }, () => GetResourceDefinitionRequest$, () => GetResourceDefinitionResponse$
|
|
1980
|
-
];
|
|
1981
|
-
var GetResourceDefinitionVersion$ = [9, n0, _GRDV,
|
|
1982
|
-
{ [_h]: ["GET", "/greengrass/definition/resources/{ResourceDefinitionId}/versions/{ResourceDefinitionVersionId}", 200] }, () => GetResourceDefinitionVersionRequest$, () => GetResourceDefinitionVersionResponse$
|
|
1983
|
-
];
|
|
1984
|
-
var GetServiceRoleForAccount$ = [9, n0, _GSRFA,
|
|
1985
|
-
{ [_h]: ["GET", "/greengrass/servicerole", 200] }, () => GetServiceRoleForAccountRequest$, () => GetServiceRoleForAccountResponse$
|
|
1986
|
-
];
|
|
1987
|
-
var GetSubscriptionDefinition$ = [9, n0, _GSD,
|
|
1988
|
-
{ [_h]: ["GET", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}", 200] }, () => GetSubscriptionDefinitionRequest$, () => GetSubscriptionDefinitionResponse$
|
|
1989
|
-
];
|
|
1990
|
-
var GetSubscriptionDefinitionVersion$ = [9, n0, _GSDV,
|
|
1991
|
-
{ [_h]: ["GET", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions/{SubscriptionDefinitionVersionId}", 200] }, () => GetSubscriptionDefinitionVersionRequest$, () => GetSubscriptionDefinitionVersionResponse$
|
|
1992
|
-
];
|
|
1993
|
-
var GetThingRuntimeConfiguration$ = [9, n0, _GTRC,
|
|
1994
|
-
{ [_h]: ["GET", "/greengrass/things/{ThingName}/runtimeconfig", 200] }, () => GetThingRuntimeConfigurationRequest$, () => GetThingRuntimeConfigurationResponse$
|
|
1995
|
-
];
|
|
1996
|
-
var ListBulkDeploymentDetailedReports$ = [9, n0, _LBDDR,
|
|
1997
|
-
{ [_h]: ["GET", "/greengrass/bulk/deployments/{BulkDeploymentId}/detailed-reports", 200] }, () => ListBulkDeploymentDetailedReportsRequest$, () => ListBulkDeploymentDetailedReportsResponse$
|
|
1998
|
-
];
|
|
1999
|
-
var ListBulkDeployments$ = [9, n0, _LBD,
|
|
2000
|
-
{ [_h]: ["GET", "/greengrass/bulk/deployments", 200] }, () => ListBulkDeploymentsRequest$, () => ListBulkDeploymentsResponse$
|
|
2001
|
-
];
|
|
2002
|
-
var ListConnectorDefinitions$ = [9, n0, _LCD,
|
|
2003
|
-
{ [_h]: ["GET", "/greengrass/definition/connectors", 200] }, () => ListConnectorDefinitionsRequest$, () => ListConnectorDefinitionsResponse$
|
|
2004
|
-
];
|
|
2005
|
-
var ListConnectorDefinitionVersions$ = [9, n0, _LCDV,
|
|
2006
|
-
{ [_h]: ["GET", "/greengrass/definition/connectors/{ConnectorDefinitionId}/versions", 200] }, () => ListConnectorDefinitionVersionsRequest$, () => ListConnectorDefinitionVersionsResponse$
|
|
2007
|
-
];
|
|
2008
|
-
var ListCoreDefinitions$ = [9, n0, _LCDi,
|
|
2009
|
-
{ [_h]: ["GET", "/greengrass/definition/cores", 200] }, () => ListCoreDefinitionsRequest$, () => ListCoreDefinitionsResponse$
|
|
2010
|
-
];
|
|
2011
|
-
var ListCoreDefinitionVersions$ = [9, n0, _LCDVi,
|
|
2012
|
-
{ [_h]: ["GET", "/greengrass/definition/cores/{CoreDefinitionId}/versions", 200] }, () => ListCoreDefinitionVersionsRequest$, () => ListCoreDefinitionVersionsResponse$
|
|
2013
|
-
];
|
|
2014
|
-
var ListDeployments$ = [9, n0, _LD,
|
|
2015
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/deployments", 200] }, () => ListDeploymentsRequest$, () => ListDeploymentsResponse$
|
|
2016
|
-
];
|
|
2017
|
-
var ListDeviceDefinitions$ = [9, n0, _LDD,
|
|
2018
|
-
{ [_h]: ["GET", "/greengrass/definition/devices", 200] }, () => ListDeviceDefinitionsRequest$, () => ListDeviceDefinitionsResponse$
|
|
2019
|
-
];
|
|
2020
|
-
var ListDeviceDefinitionVersions$ = [9, n0, _LDDV,
|
|
2021
|
-
{ [_h]: ["GET", "/greengrass/definition/devices/{DeviceDefinitionId}/versions", 200] }, () => ListDeviceDefinitionVersionsRequest$, () => ListDeviceDefinitionVersionsResponse$
|
|
2022
|
-
];
|
|
2023
|
-
var ListFunctionDefinitions$ = [9, n0, _LFD,
|
|
2024
|
-
{ [_h]: ["GET", "/greengrass/definition/functions", 200] }, () => ListFunctionDefinitionsRequest$, () => ListFunctionDefinitionsResponse$
|
|
2025
|
-
];
|
|
2026
|
-
var ListFunctionDefinitionVersions$ = [9, n0, _LFDV,
|
|
2027
|
-
{ [_h]: ["GET", "/greengrass/definition/functions/{FunctionDefinitionId}/versions", 200] }, () => ListFunctionDefinitionVersionsRequest$, () => ListFunctionDefinitionVersionsResponse$
|
|
2028
|
-
];
|
|
2029
|
-
var ListGroupCertificateAuthorities$ = [9, n0, _LGCA,
|
|
2030
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/certificateauthorities", 200] }, () => ListGroupCertificateAuthoritiesRequest$, () => ListGroupCertificateAuthoritiesResponse$
|
|
2031
|
-
];
|
|
2032
|
-
var ListGroups$ = [9, n0, _LG,
|
|
2033
|
-
{ [_h]: ["GET", "/greengrass/groups", 200] }, () => ListGroupsRequest$, () => ListGroupsResponse$
|
|
2034
|
-
];
|
|
2035
|
-
var ListGroupVersions$ = [9, n0, _LGV,
|
|
2036
|
-
{ [_h]: ["GET", "/greengrass/groups/{GroupId}/versions", 200] }, () => ListGroupVersionsRequest$, () => ListGroupVersionsResponse$
|
|
2037
|
-
];
|
|
2038
|
-
var ListLoggerDefinitions$ = [9, n0, _LLD,
|
|
2039
|
-
{ [_h]: ["GET", "/greengrass/definition/loggers", 200] }, () => ListLoggerDefinitionsRequest$, () => ListLoggerDefinitionsResponse$
|
|
2040
|
-
];
|
|
2041
|
-
var ListLoggerDefinitionVersions$ = [9, n0, _LLDV,
|
|
2042
|
-
{ [_h]: ["GET", "/greengrass/definition/loggers/{LoggerDefinitionId}/versions", 200] }, () => ListLoggerDefinitionVersionsRequest$, () => ListLoggerDefinitionVersionsResponse$
|
|
2043
|
-
];
|
|
2044
|
-
var ListResourceDefinitions$ = [9, n0, _LRD,
|
|
2045
|
-
{ [_h]: ["GET", "/greengrass/definition/resources", 200] }, () => ListResourceDefinitionsRequest$, () => ListResourceDefinitionsResponse$
|
|
2046
|
-
];
|
|
2047
|
-
var ListResourceDefinitionVersions$ = [9, n0, _LRDV,
|
|
2048
|
-
{ [_h]: ["GET", "/greengrass/definition/resources/{ResourceDefinitionId}/versions", 200] }, () => ListResourceDefinitionVersionsRequest$, () => ListResourceDefinitionVersionsResponse$
|
|
2049
|
-
];
|
|
2050
|
-
var ListSubscriptionDefinitions$ = [9, n0, _LSD,
|
|
2051
|
-
{ [_h]: ["GET", "/greengrass/definition/subscriptions", 200] }, () => ListSubscriptionDefinitionsRequest$, () => ListSubscriptionDefinitionsResponse$
|
|
2052
|
-
];
|
|
2053
|
-
var ListSubscriptionDefinitionVersions$ = [9, n0, _LSDV,
|
|
2054
|
-
{ [_h]: ["GET", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}/versions", 200] }, () => ListSubscriptionDefinitionVersionsRequest$, () => ListSubscriptionDefinitionVersionsResponse$
|
|
2055
|
-
];
|
|
2056
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2057
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
2058
|
-
];
|
|
2059
|
-
var ResetDeployments$ = [9, n0, _RD,
|
|
2060
|
-
{ [_h]: ["POST", "/greengrass/groups/{GroupId}/deployments/$reset", 200] }, () => ResetDeploymentsRequest$, () => ResetDeploymentsResponse$
|
|
2061
|
-
];
|
|
2062
|
-
var StartBulkDeployment$ = [9, n0, _SBD,
|
|
2063
|
-
{ [_h]: ["POST", "/greengrass/bulk/deployments", 200] }, () => StartBulkDeploymentRequest$, () => StartBulkDeploymentResponse$
|
|
2064
|
-
];
|
|
2065
|
-
var StopBulkDeployment$ = [9, n0, _SBDt,
|
|
2066
|
-
{ [_h]: ["PUT", "/greengrass/bulk/deployments/{BulkDeploymentId}/$stop", 200] }, () => StopBulkDeploymentRequest$, () => StopBulkDeploymentResponse$
|
|
2067
|
-
];
|
|
2068
|
-
var TagResource$ = [9, n0, _TR,
|
|
2069
|
-
{ [_h]: ["POST", "/tags/{ResourceArn}", 204] }, () => TagResourceRequest$, () => __Unit
|
|
2070
|
-
];
|
|
2071
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2072
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 204] }, () => UntagResourceRequest$, () => __Unit
|
|
2073
|
-
];
|
|
2074
|
-
var UpdateConnectivityInfo$ = [9, n0, _UCI,
|
|
2075
|
-
{ [_h]: ["PUT", "/greengrass/things/{ThingName}/connectivityInfo", 200] }, () => UpdateConnectivityInfoRequest$, () => UpdateConnectivityInfoResponse$
|
|
2076
|
-
];
|
|
2077
|
-
var UpdateConnectorDefinition$ = [9, n0, _UCD,
|
|
2078
|
-
{ [_h]: ["PUT", "/greengrass/definition/connectors/{ConnectorDefinitionId}", 200] }, () => UpdateConnectorDefinitionRequest$, () => UpdateConnectorDefinitionResponse$
|
|
2079
|
-
];
|
|
2080
|
-
var UpdateCoreDefinition$ = [9, n0, _UCDp,
|
|
2081
|
-
{ [_h]: ["PUT", "/greengrass/definition/cores/{CoreDefinitionId}", 200] }, () => UpdateCoreDefinitionRequest$, () => UpdateCoreDefinitionResponse$
|
|
2082
|
-
];
|
|
2083
|
-
var UpdateDeviceDefinition$ = [9, n0, _UDD,
|
|
2084
|
-
{ [_h]: ["PUT", "/greengrass/definition/devices/{DeviceDefinitionId}", 200] }, () => UpdateDeviceDefinitionRequest$, () => UpdateDeviceDefinitionResponse$
|
|
2085
|
-
];
|
|
2086
|
-
var UpdateFunctionDefinition$ = [9, n0, _UFD,
|
|
2087
|
-
{ [_h]: ["PUT", "/greengrass/definition/functions/{FunctionDefinitionId}", 200] }, () => UpdateFunctionDefinitionRequest$, () => UpdateFunctionDefinitionResponse$
|
|
2088
|
-
];
|
|
2089
|
-
var UpdateGroup$ = [9, n0, _UG,
|
|
2090
|
-
{ [_h]: ["PUT", "/greengrass/groups/{GroupId}", 200] }, () => UpdateGroupRequest$, () => UpdateGroupResponse$
|
|
2091
|
-
];
|
|
2092
|
-
var UpdateGroupCertificateConfiguration$ = [9, n0, _UGCC,
|
|
2093
|
-
{ [_h]: ["PUT", "/greengrass/groups/{GroupId}/certificateauthorities/configuration/expiry", 200] }, () => UpdateGroupCertificateConfigurationRequest$, () => UpdateGroupCertificateConfigurationResponse$
|
|
2094
|
-
];
|
|
2095
|
-
var UpdateLoggerDefinition$ = [9, n0, _ULD,
|
|
2096
|
-
{ [_h]: ["PUT", "/greengrass/definition/loggers/{LoggerDefinitionId}", 200] }, () => UpdateLoggerDefinitionRequest$, () => UpdateLoggerDefinitionResponse$
|
|
2097
|
-
];
|
|
2098
|
-
var UpdateResourceDefinition$ = [9, n0, _URD,
|
|
2099
|
-
{ [_h]: ["PUT", "/greengrass/definition/resources/{ResourceDefinitionId}", 200] }, () => UpdateResourceDefinitionRequest$, () => UpdateResourceDefinitionResponse$
|
|
2100
|
-
];
|
|
2101
|
-
var UpdateSubscriptionDefinition$ = [9, n0, _USD,
|
|
2102
|
-
{ [_h]: ["PUT", "/greengrass/definition/subscriptions/{SubscriptionDefinitionId}", 200] }, () => UpdateSubscriptionDefinitionRequest$, () => UpdateSubscriptionDefinitionResponse$
|
|
2103
|
-
];
|
|
2104
|
-
var UpdateThingRuntimeConfiguration$ = [9, n0, _UTRC,
|
|
2105
|
-
{ [_h]: ["PUT", "/greengrass/things/{ThingName}/runtimeconfig", 200] }, () => UpdateThingRuntimeConfigurationRequest$, () => UpdateThingRuntimeConfigurationResponse$
|
|
2106
|
-
];
|
|
2107
|
-
|
|
2108
116
|
class AssociateRoleToGroupCommand extends smithyClient.Command
|
|
2109
117
|
.classBuilder()
|
|
2110
118
|
.ep(commonParams)
|
|
@@ -2113,7 +121,7 @@ class AssociateRoleToGroupCommand extends smithyClient.Command
|
|
|
2113
121
|
})
|
|
2114
122
|
.s("Greengrass", "AssociateRoleToGroup", {})
|
|
2115
123
|
.n("GreengrassClient", "AssociateRoleToGroupCommand")
|
|
2116
|
-
.sc(AssociateRoleToGroup$)
|
|
124
|
+
.sc(schemas_0.AssociateRoleToGroup$)
|
|
2117
125
|
.build() {
|
|
2118
126
|
}
|
|
2119
127
|
|
|
@@ -2125,7 +133,7 @@ class AssociateServiceRoleToAccountCommand extends smithyClient.Command
|
|
|
2125
133
|
})
|
|
2126
134
|
.s("Greengrass", "AssociateServiceRoleToAccount", {})
|
|
2127
135
|
.n("GreengrassClient", "AssociateServiceRoleToAccountCommand")
|
|
2128
|
-
.sc(AssociateServiceRoleToAccount$)
|
|
136
|
+
.sc(schemas_0.AssociateServiceRoleToAccount$)
|
|
2129
137
|
.build() {
|
|
2130
138
|
}
|
|
2131
139
|
|
|
@@ -2137,7 +145,7 @@ class CreateConnectorDefinitionCommand extends smithyClient.Command
|
|
|
2137
145
|
})
|
|
2138
146
|
.s("Greengrass", "CreateConnectorDefinition", {})
|
|
2139
147
|
.n("GreengrassClient", "CreateConnectorDefinitionCommand")
|
|
2140
|
-
.sc(CreateConnectorDefinition$)
|
|
148
|
+
.sc(schemas_0.CreateConnectorDefinition$)
|
|
2141
149
|
.build() {
|
|
2142
150
|
}
|
|
2143
151
|
|
|
@@ -2149,7 +157,7 @@ class CreateConnectorDefinitionVersionCommand extends smithyClient.Command
|
|
|
2149
157
|
})
|
|
2150
158
|
.s("Greengrass", "CreateConnectorDefinitionVersion", {})
|
|
2151
159
|
.n("GreengrassClient", "CreateConnectorDefinitionVersionCommand")
|
|
2152
|
-
.sc(CreateConnectorDefinitionVersion$)
|
|
160
|
+
.sc(schemas_0.CreateConnectorDefinitionVersion$)
|
|
2153
161
|
.build() {
|
|
2154
162
|
}
|
|
2155
163
|
|
|
@@ -2161,7 +169,7 @@ class CreateCoreDefinitionCommand extends smithyClient.Command
|
|
|
2161
169
|
})
|
|
2162
170
|
.s("Greengrass", "CreateCoreDefinition", {})
|
|
2163
171
|
.n("GreengrassClient", "CreateCoreDefinitionCommand")
|
|
2164
|
-
.sc(CreateCoreDefinition$)
|
|
172
|
+
.sc(schemas_0.CreateCoreDefinition$)
|
|
2165
173
|
.build() {
|
|
2166
174
|
}
|
|
2167
175
|
|
|
@@ -2173,7 +181,7 @@ class CreateCoreDefinitionVersionCommand extends smithyClient.Command
|
|
|
2173
181
|
})
|
|
2174
182
|
.s("Greengrass", "CreateCoreDefinitionVersion", {})
|
|
2175
183
|
.n("GreengrassClient", "CreateCoreDefinitionVersionCommand")
|
|
2176
|
-
.sc(CreateCoreDefinitionVersion$)
|
|
184
|
+
.sc(schemas_0.CreateCoreDefinitionVersion$)
|
|
2177
185
|
.build() {
|
|
2178
186
|
}
|
|
2179
187
|
|
|
@@ -2185,7 +193,7 @@ class CreateDeploymentCommand extends smithyClient.Command
|
|
|
2185
193
|
})
|
|
2186
194
|
.s("Greengrass", "CreateDeployment", {})
|
|
2187
195
|
.n("GreengrassClient", "CreateDeploymentCommand")
|
|
2188
|
-
.sc(CreateDeployment$)
|
|
196
|
+
.sc(schemas_0.CreateDeployment$)
|
|
2189
197
|
.build() {
|
|
2190
198
|
}
|
|
2191
199
|
|
|
@@ -2197,7 +205,7 @@ class CreateDeviceDefinitionCommand extends smithyClient.Command
|
|
|
2197
205
|
})
|
|
2198
206
|
.s("Greengrass", "CreateDeviceDefinition", {})
|
|
2199
207
|
.n("GreengrassClient", "CreateDeviceDefinitionCommand")
|
|
2200
|
-
.sc(CreateDeviceDefinition$)
|
|
208
|
+
.sc(schemas_0.CreateDeviceDefinition$)
|
|
2201
209
|
.build() {
|
|
2202
210
|
}
|
|
2203
211
|
|
|
@@ -2209,7 +217,7 @@ class CreateDeviceDefinitionVersionCommand extends smithyClient.Command
|
|
|
2209
217
|
})
|
|
2210
218
|
.s("Greengrass", "CreateDeviceDefinitionVersion", {})
|
|
2211
219
|
.n("GreengrassClient", "CreateDeviceDefinitionVersionCommand")
|
|
2212
|
-
.sc(CreateDeviceDefinitionVersion$)
|
|
220
|
+
.sc(schemas_0.CreateDeviceDefinitionVersion$)
|
|
2213
221
|
.build() {
|
|
2214
222
|
}
|
|
2215
223
|
|
|
@@ -2221,7 +229,7 @@ class CreateFunctionDefinitionCommand extends smithyClient.Command
|
|
|
2221
229
|
})
|
|
2222
230
|
.s("Greengrass", "CreateFunctionDefinition", {})
|
|
2223
231
|
.n("GreengrassClient", "CreateFunctionDefinitionCommand")
|
|
2224
|
-
.sc(CreateFunctionDefinition$)
|
|
232
|
+
.sc(schemas_0.CreateFunctionDefinition$)
|
|
2225
233
|
.build() {
|
|
2226
234
|
}
|
|
2227
235
|
|
|
@@ -2233,7 +241,7 @@ class CreateFunctionDefinitionVersionCommand extends smithyClient.Command
|
|
|
2233
241
|
})
|
|
2234
242
|
.s("Greengrass", "CreateFunctionDefinitionVersion", {})
|
|
2235
243
|
.n("GreengrassClient", "CreateFunctionDefinitionVersionCommand")
|
|
2236
|
-
.sc(CreateFunctionDefinitionVersion$)
|
|
244
|
+
.sc(schemas_0.CreateFunctionDefinitionVersion$)
|
|
2237
245
|
.build() {
|
|
2238
246
|
}
|
|
2239
247
|
|
|
@@ -2245,7 +253,7 @@ class CreateGroupCertificateAuthorityCommand extends smithyClient.Command
|
|
|
2245
253
|
})
|
|
2246
254
|
.s("Greengrass", "CreateGroupCertificateAuthority", {})
|
|
2247
255
|
.n("GreengrassClient", "CreateGroupCertificateAuthorityCommand")
|
|
2248
|
-
.sc(CreateGroupCertificateAuthority$)
|
|
256
|
+
.sc(schemas_0.CreateGroupCertificateAuthority$)
|
|
2249
257
|
.build() {
|
|
2250
258
|
}
|
|
2251
259
|
|
|
@@ -2257,7 +265,7 @@ class CreateGroupCommand extends smithyClient.Command
|
|
|
2257
265
|
})
|
|
2258
266
|
.s("Greengrass", "CreateGroup", {})
|
|
2259
267
|
.n("GreengrassClient", "CreateGroupCommand")
|
|
2260
|
-
.sc(CreateGroup$)
|
|
268
|
+
.sc(schemas_0.CreateGroup$)
|
|
2261
269
|
.build() {
|
|
2262
270
|
}
|
|
2263
271
|
|
|
@@ -2269,7 +277,7 @@ class CreateGroupVersionCommand extends smithyClient.Command
|
|
|
2269
277
|
})
|
|
2270
278
|
.s("Greengrass", "CreateGroupVersion", {})
|
|
2271
279
|
.n("GreengrassClient", "CreateGroupVersionCommand")
|
|
2272
|
-
.sc(CreateGroupVersion$)
|
|
280
|
+
.sc(schemas_0.CreateGroupVersion$)
|
|
2273
281
|
.build() {
|
|
2274
282
|
}
|
|
2275
283
|
|
|
@@ -2281,7 +289,7 @@ class CreateLoggerDefinitionCommand extends smithyClient.Command
|
|
|
2281
289
|
})
|
|
2282
290
|
.s("Greengrass", "CreateLoggerDefinition", {})
|
|
2283
291
|
.n("GreengrassClient", "CreateLoggerDefinitionCommand")
|
|
2284
|
-
.sc(CreateLoggerDefinition$)
|
|
292
|
+
.sc(schemas_0.CreateLoggerDefinition$)
|
|
2285
293
|
.build() {
|
|
2286
294
|
}
|
|
2287
295
|
|
|
@@ -2293,7 +301,7 @@ class CreateLoggerDefinitionVersionCommand extends smithyClient.Command
|
|
|
2293
301
|
})
|
|
2294
302
|
.s("Greengrass", "CreateLoggerDefinitionVersion", {})
|
|
2295
303
|
.n("GreengrassClient", "CreateLoggerDefinitionVersionCommand")
|
|
2296
|
-
.sc(CreateLoggerDefinitionVersion$)
|
|
304
|
+
.sc(schemas_0.CreateLoggerDefinitionVersion$)
|
|
2297
305
|
.build() {
|
|
2298
306
|
}
|
|
2299
307
|
|
|
@@ -2305,7 +313,7 @@ class CreateResourceDefinitionCommand extends smithyClient.Command
|
|
|
2305
313
|
})
|
|
2306
314
|
.s("Greengrass", "CreateResourceDefinition", {})
|
|
2307
315
|
.n("GreengrassClient", "CreateResourceDefinitionCommand")
|
|
2308
|
-
.sc(CreateResourceDefinition$)
|
|
316
|
+
.sc(schemas_0.CreateResourceDefinition$)
|
|
2309
317
|
.build() {
|
|
2310
318
|
}
|
|
2311
319
|
|
|
@@ -2317,7 +325,7 @@ class CreateResourceDefinitionVersionCommand extends smithyClient.Command
|
|
|
2317
325
|
})
|
|
2318
326
|
.s("Greengrass", "CreateResourceDefinitionVersion", {})
|
|
2319
327
|
.n("GreengrassClient", "CreateResourceDefinitionVersionCommand")
|
|
2320
|
-
.sc(CreateResourceDefinitionVersion$)
|
|
328
|
+
.sc(schemas_0.CreateResourceDefinitionVersion$)
|
|
2321
329
|
.build() {
|
|
2322
330
|
}
|
|
2323
331
|
|
|
@@ -2329,7 +337,7 @@ class CreateSoftwareUpdateJobCommand extends smithyClient.Command
|
|
|
2329
337
|
})
|
|
2330
338
|
.s("Greengrass", "CreateSoftwareUpdateJob", {})
|
|
2331
339
|
.n("GreengrassClient", "CreateSoftwareUpdateJobCommand")
|
|
2332
|
-
.sc(CreateSoftwareUpdateJob$)
|
|
340
|
+
.sc(schemas_0.CreateSoftwareUpdateJob$)
|
|
2333
341
|
.build() {
|
|
2334
342
|
}
|
|
2335
343
|
|
|
@@ -2341,7 +349,7 @@ class CreateSubscriptionDefinitionCommand extends smithyClient.Command
|
|
|
2341
349
|
})
|
|
2342
350
|
.s("Greengrass", "CreateSubscriptionDefinition", {})
|
|
2343
351
|
.n("GreengrassClient", "CreateSubscriptionDefinitionCommand")
|
|
2344
|
-
.sc(CreateSubscriptionDefinition$)
|
|
352
|
+
.sc(schemas_0.CreateSubscriptionDefinition$)
|
|
2345
353
|
.build() {
|
|
2346
354
|
}
|
|
2347
355
|
|
|
@@ -2353,7 +361,7 @@ class CreateSubscriptionDefinitionVersionCommand extends smithyClient.Command
|
|
|
2353
361
|
})
|
|
2354
362
|
.s("Greengrass", "CreateSubscriptionDefinitionVersion", {})
|
|
2355
363
|
.n("GreengrassClient", "CreateSubscriptionDefinitionVersionCommand")
|
|
2356
|
-
.sc(CreateSubscriptionDefinitionVersion$)
|
|
364
|
+
.sc(schemas_0.CreateSubscriptionDefinitionVersion$)
|
|
2357
365
|
.build() {
|
|
2358
366
|
}
|
|
2359
367
|
|
|
@@ -2365,7 +373,7 @@ class DeleteConnectorDefinitionCommand extends smithyClient.Command
|
|
|
2365
373
|
})
|
|
2366
374
|
.s("Greengrass", "DeleteConnectorDefinition", {})
|
|
2367
375
|
.n("GreengrassClient", "DeleteConnectorDefinitionCommand")
|
|
2368
|
-
.sc(DeleteConnectorDefinition$)
|
|
376
|
+
.sc(schemas_0.DeleteConnectorDefinition$)
|
|
2369
377
|
.build() {
|
|
2370
378
|
}
|
|
2371
379
|
|
|
@@ -2377,7 +385,7 @@ class DeleteCoreDefinitionCommand extends smithyClient.Command
|
|
|
2377
385
|
})
|
|
2378
386
|
.s("Greengrass", "DeleteCoreDefinition", {})
|
|
2379
387
|
.n("GreengrassClient", "DeleteCoreDefinitionCommand")
|
|
2380
|
-
.sc(DeleteCoreDefinition$)
|
|
388
|
+
.sc(schemas_0.DeleteCoreDefinition$)
|
|
2381
389
|
.build() {
|
|
2382
390
|
}
|
|
2383
391
|
|
|
@@ -2389,7 +397,7 @@ class DeleteDeviceDefinitionCommand extends smithyClient.Command
|
|
|
2389
397
|
})
|
|
2390
398
|
.s("Greengrass", "DeleteDeviceDefinition", {})
|
|
2391
399
|
.n("GreengrassClient", "DeleteDeviceDefinitionCommand")
|
|
2392
|
-
.sc(DeleteDeviceDefinition$)
|
|
400
|
+
.sc(schemas_0.DeleteDeviceDefinition$)
|
|
2393
401
|
.build() {
|
|
2394
402
|
}
|
|
2395
403
|
|
|
@@ -2401,7 +409,7 @@ class DeleteFunctionDefinitionCommand extends smithyClient.Command
|
|
|
2401
409
|
})
|
|
2402
410
|
.s("Greengrass", "DeleteFunctionDefinition", {})
|
|
2403
411
|
.n("GreengrassClient", "DeleteFunctionDefinitionCommand")
|
|
2404
|
-
.sc(DeleteFunctionDefinition$)
|
|
412
|
+
.sc(schemas_0.DeleteFunctionDefinition$)
|
|
2405
413
|
.build() {
|
|
2406
414
|
}
|
|
2407
415
|
|
|
@@ -2413,7 +421,7 @@ class DeleteGroupCommand extends smithyClient.Command
|
|
|
2413
421
|
})
|
|
2414
422
|
.s("Greengrass", "DeleteGroup", {})
|
|
2415
423
|
.n("GreengrassClient", "DeleteGroupCommand")
|
|
2416
|
-
.sc(DeleteGroup$)
|
|
424
|
+
.sc(schemas_0.DeleteGroup$)
|
|
2417
425
|
.build() {
|
|
2418
426
|
}
|
|
2419
427
|
|
|
@@ -2425,7 +433,7 @@ class DeleteLoggerDefinitionCommand extends smithyClient.Command
|
|
|
2425
433
|
})
|
|
2426
434
|
.s("Greengrass", "DeleteLoggerDefinition", {})
|
|
2427
435
|
.n("GreengrassClient", "DeleteLoggerDefinitionCommand")
|
|
2428
|
-
.sc(DeleteLoggerDefinition$)
|
|
436
|
+
.sc(schemas_0.DeleteLoggerDefinition$)
|
|
2429
437
|
.build() {
|
|
2430
438
|
}
|
|
2431
439
|
|
|
@@ -2437,7 +445,7 @@ class DeleteResourceDefinitionCommand extends smithyClient.Command
|
|
|
2437
445
|
})
|
|
2438
446
|
.s("Greengrass", "DeleteResourceDefinition", {})
|
|
2439
447
|
.n("GreengrassClient", "DeleteResourceDefinitionCommand")
|
|
2440
|
-
.sc(DeleteResourceDefinition$)
|
|
448
|
+
.sc(schemas_0.DeleteResourceDefinition$)
|
|
2441
449
|
.build() {
|
|
2442
450
|
}
|
|
2443
451
|
|
|
@@ -2449,7 +457,7 @@ class DeleteSubscriptionDefinitionCommand extends smithyClient.Command
|
|
|
2449
457
|
})
|
|
2450
458
|
.s("Greengrass", "DeleteSubscriptionDefinition", {})
|
|
2451
459
|
.n("GreengrassClient", "DeleteSubscriptionDefinitionCommand")
|
|
2452
|
-
.sc(DeleteSubscriptionDefinition$)
|
|
460
|
+
.sc(schemas_0.DeleteSubscriptionDefinition$)
|
|
2453
461
|
.build() {
|
|
2454
462
|
}
|
|
2455
463
|
|
|
@@ -2461,7 +469,7 @@ class DisassociateRoleFromGroupCommand extends smithyClient.Command
|
|
|
2461
469
|
})
|
|
2462
470
|
.s("Greengrass", "DisassociateRoleFromGroup", {})
|
|
2463
471
|
.n("GreengrassClient", "DisassociateRoleFromGroupCommand")
|
|
2464
|
-
.sc(DisassociateRoleFromGroup$)
|
|
472
|
+
.sc(schemas_0.DisassociateRoleFromGroup$)
|
|
2465
473
|
.build() {
|
|
2466
474
|
}
|
|
2467
475
|
|
|
@@ -2473,7 +481,7 @@ class DisassociateServiceRoleFromAccountCommand extends smithyClient.Command
|
|
|
2473
481
|
})
|
|
2474
482
|
.s("Greengrass", "DisassociateServiceRoleFromAccount", {})
|
|
2475
483
|
.n("GreengrassClient", "DisassociateServiceRoleFromAccountCommand")
|
|
2476
|
-
.sc(DisassociateServiceRoleFromAccount$)
|
|
484
|
+
.sc(schemas_0.DisassociateServiceRoleFromAccount$)
|
|
2477
485
|
.build() {
|
|
2478
486
|
}
|
|
2479
487
|
|
|
@@ -2485,7 +493,7 @@ class GetAssociatedRoleCommand extends smithyClient.Command
|
|
|
2485
493
|
})
|
|
2486
494
|
.s("Greengrass", "GetAssociatedRole", {})
|
|
2487
495
|
.n("GreengrassClient", "GetAssociatedRoleCommand")
|
|
2488
|
-
.sc(GetAssociatedRole$)
|
|
496
|
+
.sc(schemas_0.GetAssociatedRole$)
|
|
2489
497
|
.build() {
|
|
2490
498
|
}
|
|
2491
499
|
|
|
@@ -2497,7 +505,7 @@ class GetBulkDeploymentStatusCommand extends smithyClient.Command
|
|
|
2497
505
|
})
|
|
2498
506
|
.s("Greengrass", "GetBulkDeploymentStatus", {})
|
|
2499
507
|
.n("GreengrassClient", "GetBulkDeploymentStatusCommand")
|
|
2500
|
-
.sc(GetBulkDeploymentStatus$)
|
|
508
|
+
.sc(schemas_0.GetBulkDeploymentStatus$)
|
|
2501
509
|
.build() {
|
|
2502
510
|
}
|
|
2503
511
|
|
|
@@ -2509,7 +517,7 @@ class GetConnectivityInfoCommand extends smithyClient.Command
|
|
|
2509
517
|
})
|
|
2510
518
|
.s("Greengrass", "GetConnectivityInfo", {})
|
|
2511
519
|
.n("GreengrassClient", "GetConnectivityInfoCommand")
|
|
2512
|
-
.sc(GetConnectivityInfo$)
|
|
520
|
+
.sc(schemas_0.GetConnectivityInfo$)
|
|
2513
521
|
.build() {
|
|
2514
522
|
}
|
|
2515
523
|
|
|
@@ -2521,7 +529,7 @@ class GetConnectorDefinitionCommand extends smithyClient.Command
|
|
|
2521
529
|
})
|
|
2522
530
|
.s("Greengrass", "GetConnectorDefinition", {})
|
|
2523
531
|
.n("GreengrassClient", "GetConnectorDefinitionCommand")
|
|
2524
|
-
.sc(GetConnectorDefinition$)
|
|
532
|
+
.sc(schemas_0.GetConnectorDefinition$)
|
|
2525
533
|
.build() {
|
|
2526
534
|
}
|
|
2527
535
|
|
|
@@ -2533,7 +541,7 @@ class GetConnectorDefinitionVersionCommand extends smithyClient.Command
|
|
|
2533
541
|
})
|
|
2534
542
|
.s("Greengrass", "GetConnectorDefinitionVersion", {})
|
|
2535
543
|
.n("GreengrassClient", "GetConnectorDefinitionVersionCommand")
|
|
2536
|
-
.sc(GetConnectorDefinitionVersion$)
|
|
544
|
+
.sc(schemas_0.GetConnectorDefinitionVersion$)
|
|
2537
545
|
.build() {
|
|
2538
546
|
}
|
|
2539
547
|
|
|
@@ -2545,7 +553,7 @@ class GetCoreDefinitionCommand extends smithyClient.Command
|
|
|
2545
553
|
})
|
|
2546
554
|
.s("Greengrass", "GetCoreDefinition", {})
|
|
2547
555
|
.n("GreengrassClient", "GetCoreDefinitionCommand")
|
|
2548
|
-
.sc(GetCoreDefinition$)
|
|
556
|
+
.sc(schemas_0.GetCoreDefinition$)
|
|
2549
557
|
.build() {
|
|
2550
558
|
}
|
|
2551
559
|
|
|
@@ -2557,7 +565,7 @@ class GetCoreDefinitionVersionCommand extends smithyClient.Command
|
|
|
2557
565
|
})
|
|
2558
566
|
.s("Greengrass", "GetCoreDefinitionVersion", {})
|
|
2559
567
|
.n("GreengrassClient", "GetCoreDefinitionVersionCommand")
|
|
2560
|
-
.sc(GetCoreDefinitionVersion$)
|
|
568
|
+
.sc(schemas_0.GetCoreDefinitionVersion$)
|
|
2561
569
|
.build() {
|
|
2562
570
|
}
|
|
2563
571
|
|
|
@@ -2569,7 +577,7 @@ class GetDeploymentStatusCommand extends smithyClient.Command
|
|
|
2569
577
|
})
|
|
2570
578
|
.s("Greengrass", "GetDeploymentStatus", {})
|
|
2571
579
|
.n("GreengrassClient", "GetDeploymentStatusCommand")
|
|
2572
|
-
.sc(GetDeploymentStatus$)
|
|
580
|
+
.sc(schemas_0.GetDeploymentStatus$)
|
|
2573
581
|
.build() {
|
|
2574
582
|
}
|
|
2575
583
|
|
|
@@ -2581,7 +589,7 @@ class GetDeviceDefinitionCommand extends smithyClient.Command
|
|
|
2581
589
|
})
|
|
2582
590
|
.s("Greengrass", "GetDeviceDefinition", {})
|
|
2583
591
|
.n("GreengrassClient", "GetDeviceDefinitionCommand")
|
|
2584
|
-
.sc(GetDeviceDefinition$)
|
|
592
|
+
.sc(schemas_0.GetDeviceDefinition$)
|
|
2585
593
|
.build() {
|
|
2586
594
|
}
|
|
2587
595
|
|
|
@@ -2593,7 +601,7 @@ class GetDeviceDefinitionVersionCommand extends smithyClient.Command
|
|
|
2593
601
|
})
|
|
2594
602
|
.s("Greengrass", "GetDeviceDefinitionVersion", {})
|
|
2595
603
|
.n("GreengrassClient", "GetDeviceDefinitionVersionCommand")
|
|
2596
|
-
.sc(GetDeviceDefinitionVersion$)
|
|
604
|
+
.sc(schemas_0.GetDeviceDefinitionVersion$)
|
|
2597
605
|
.build() {
|
|
2598
606
|
}
|
|
2599
607
|
|
|
@@ -2605,7 +613,7 @@ class GetFunctionDefinitionCommand extends smithyClient.Command
|
|
|
2605
613
|
})
|
|
2606
614
|
.s("Greengrass", "GetFunctionDefinition", {})
|
|
2607
615
|
.n("GreengrassClient", "GetFunctionDefinitionCommand")
|
|
2608
|
-
.sc(GetFunctionDefinition$)
|
|
616
|
+
.sc(schemas_0.GetFunctionDefinition$)
|
|
2609
617
|
.build() {
|
|
2610
618
|
}
|
|
2611
619
|
|
|
@@ -2617,7 +625,7 @@ class GetFunctionDefinitionVersionCommand extends smithyClient.Command
|
|
|
2617
625
|
})
|
|
2618
626
|
.s("Greengrass", "GetFunctionDefinitionVersion", {})
|
|
2619
627
|
.n("GreengrassClient", "GetFunctionDefinitionVersionCommand")
|
|
2620
|
-
.sc(GetFunctionDefinitionVersion$)
|
|
628
|
+
.sc(schemas_0.GetFunctionDefinitionVersion$)
|
|
2621
629
|
.build() {
|
|
2622
630
|
}
|
|
2623
631
|
|
|
@@ -2629,7 +637,7 @@ class GetGroupCertificateAuthorityCommand extends smithyClient.Command
|
|
|
2629
637
|
})
|
|
2630
638
|
.s("Greengrass", "GetGroupCertificateAuthority", {})
|
|
2631
639
|
.n("GreengrassClient", "GetGroupCertificateAuthorityCommand")
|
|
2632
|
-
.sc(GetGroupCertificateAuthority$)
|
|
640
|
+
.sc(schemas_0.GetGroupCertificateAuthority$)
|
|
2633
641
|
.build() {
|
|
2634
642
|
}
|
|
2635
643
|
|
|
@@ -2641,7 +649,7 @@ class GetGroupCertificateConfigurationCommand extends smithyClient.Command
|
|
|
2641
649
|
})
|
|
2642
650
|
.s("Greengrass", "GetGroupCertificateConfiguration", {})
|
|
2643
651
|
.n("GreengrassClient", "GetGroupCertificateConfigurationCommand")
|
|
2644
|
-
.sc(GetGroupCertificateConfiguration$)
|
|
652
|
+
.sc(schemas_0.GetGroupCertificateConfiguration$)
|
|
2645
653
|
.build() {
|
|
2646
654
|
}
|
|
2647
655
|
|
|
@@ -2653,7 +661,7 @@ class GetGroupCommand extends smithyClient.Command
|
|
|
2653
661
|
})
|
|
2654
662
|
.s("Greengrass", "GetGroup", {})
|
|
2655
663
|
.n("GreengrassClient", "GetGroupCommand")
|
|
2656
|
-
.sc(GetGroup$)
|
|
664
|
+
.sc(schemas_0.GetGroup$)
|
|
2657
665
|
.build() {
|
|
2658
666
|
}
|
|
2659
667
|
|
|
@@ -2665,7 +673,7 @@ class GetGroupVersionCommand extends smithyClient.Command
|
|
|
2665
673
|
})
|
|
2666
674
|
.s("Greengrass", "GetGroupVersion", {})
|
|
2667
675
|
.n("GreengrassClient", "GetGroupVersionCommand")
|
|
2668
|
-
.sc(GetGroupVersion$)
|
|
676
|
+
.sc(schemas_0.GetGroupVersion$)
|
|
2669
677
|
.build() {
|
|
2670
678
|
}
|
|
2671
679
|
|
|
@@ -2677,7 +685,7 @@ class GetLoggerDefinitionCommand extends smithyClient.Command
|
|
|
2677
685
|
})
|
|
2678
686
|
.s("Greengrass", "GetLoggerDefinition", {})
|
|
2679
687
|
.n("GreengrassClient", "GetLoggerDefinitionCommand")
|
|
2680
|
-
.sc(GetLoggerDefinition$)
|
|
688
|
+
.sc(schemas_0.GetLoggerDefinition$)
|
|
2681
689
|
.build() {
|
|
2682
690
|
}
|
|
2683
691
|
|
|
@@ -2689,7 +697,7 @@ class GetLoggerDefinitionVersionCommand extends smithyClient.Command
|
|
|
2689
697
|
})
|
|
2690
698
|
.s("Greengrass", "GetLoggerDefinitionVersion", {})
|
|
2691
699
|
.n("GreengrassClient", "GetLoggerDefinitionVersionCommand")
|
|
2692
|
-
.sc(GetLoggerDefinitionVersion$)
|
|
700
|
+
.sc(schemas_0.GetLoggerDefinitionVersion$)
|
|
2693
701
|
.build() {
|
|
2694
702
|
}
|
|
2695
703
|
|
|
@@ -2701,7 +709,7 @@ class GetResourceDefinitionCommand extends smithyClient.Command
|
|
|
2701
709
|
})
|
|
2702
710
|
.s("Greengrass", "GetResourceDefinition", {})
|
|
2703
711
|
.n("GreengrassClient", "GetResourceDefinitionCommand")
|
|
2704
|
-
.sc(GetResourceDefinition$)
|
|
712
|
+
.sc(schemas_0.GetResourceDefinition$)
|
|
2705
713
|
.build() {
|
|
2706
714
|
}
|
|
2707
715
|
|
|
@@ -2713,7 +721,7 @@ class GetResourceDefinitionVersionCommand extends smithyClient.Command
|
|
|
2713
721
|
})
|
|
2714
722
|
.s("Greengrass", "GetResourceDefinitionVersion", {})
|
|
2715
723
|
.n("GreengrassClient", "GetResourceDefinitionVersionCommand")
|
|
2716
|
-
.sc(GetResourceDefinitionVersion$)
|
|
724
|
+
.sc(schemas_0.GetResourceDefinitionVersion$)
|
|
2717
725
|
.build() {
|
|
2718
726
|
}
|
|
2719
727
|
|
|
@@ -2725,7 +733,7 @@ class GetServiceRoleForAccountCommand extends smithyClient.Command
|
|
|
2725
733
|
})
|
|
2726
734
|
.s("Greengrass", "GetServiceRoleForAccount", {})
|
|
2727
735
|
.n("GreengrassClient", "GetServiceRoleForAccountCommand")
|
|
2728
|
-
.sc(GetServiceRoleForAccount$)
|
|
736
|
+
.sc(schemas_0.GetServiceRoleForAccount$)
|
|
2729
737
|
.build() {
|
|
2730
738
|
}
|
|
2731
739
|
|
|
@@ -2737,7 +745,7 @@ class GetSubscriptionDefinitionCommand extends smithyClient.Command
|
|
|
2737
745
|
})
|
|
2738
746
|
.s("Greengrass", "GetSubscriptionDefinition", {})
|
|
2739
747
|
.n("GreengrassClient", "GetSubscriptionDefinitionCommand")
|
|
2740
|
-
.sc(GetSubscriptionDefinition$)
|
|
748
|
+
.sc(schemas_0.GetSubscriptionDefinition$)
|
|
2741
749
|
.build() {
|
|
2742
750
|
}
|
|
2743
751
|
|
|
@@ -2749,7 +757,7 @@ class GetSubscriptionDefinitionVersionCommand extends smithyClient.Command
|
|
|
2749
757
|
})
|
|
2750
758
|
.s("Greengrass", "GetSubscriptionDefinitionVersion", {})
|
|
2751
759
|
.n("GreengrassClient", "GetSubscriptionDefinitionVersionCommand")
|
|
2752
|
-
.sc(GetSubscriptionDefinitionVersion$)
|
|
760
|
+
.sc(schemas_0.GetSubscriptionDefinitionVersion$)
|
|
2753
761
|
.build() {
|
|
2754
762
|
}
|
|
2755
763
|
|
|
@@ -2761,7 +769,7 @@ class GetThingRuntimeConfigurationCommand extends smithyClient.Command
|
|
|
2761
769
|
})
|
|
2762
770
|
.s("Greengrass", "GetThingRuntimeConfiguration", {})
|
|
2763
771
|
.n("GreengrassClient", "GetThingRuntimeConfigurationCommand")
|
|
2764
|
-
.sc(GetThingRuntimeConfiguration$)
|
|
772
|
+
.sc(schemas_0.GetThingRuntimeConfiguration$)
|
|
2765
773
|
.build() {
|
|
2766
774
|
}
|
|
2767
775
|
|
|
@@ -2773,7 +781,7 @@ class ListBulkDeploymentDetailedReportsCommand extends smithyClient.Command
|
|
|
2773
781
|
})
|
|
2774
782
|
.s("Greengrass", "ListBulkDeploymentDetailedReports", {})
|
|
2775
783
|
.n("GreengrassClient", "ListBulkDeploymentDetailedReportsCommand")
|
|
2776
|
-
.sc(ListBulkDeploymentDetailedReports$)
|
|
784
|
+
.sc(schemas_0.ListBulkDeploymentDetailedReports$)
|
|
2777
785
|
.build() {
|
|
2778
786
|
}
|
|
2779
787
|
|
|
@@ -2785,7 +793,7 @@ class ListBulkDeploymentsCommand extends smithyClient.Command
|
|
|
2785
793
|
})
|
|
2786
794
|
.s("Greengrass", "ListBulkDeployments", {})
|
|
2787
795
|
.n("GreengrassClient", "ListBulkDeploymentsCommand")
|
|
2788
|
-
.sc(ListBulkDeployments$)
|
|
796
|
+
.sc(schemas_0.ListBulkDeployments$)
|
|
2789
797
|
.build() {
|
|
2790
798
|
}
|
|
2791
799
|
|
|
@@ -2797,7 +805,7 @@ class ListConnectorDefinitionsCommand extends smithyClient.Command
|
|
|
2797
805
|
})
|
|
2798
806
|
.s("Greengrass", "ListConnectorDefinitions", {})
|
|
2799
807
|
.n("GreengrassClient", "ListConnectorDefinitionsCommand")
|
|
2800
|
-
.sc(ListConnectorDefinitions$)
|
|
808
|
+
.sc(schemas_0.ListConnectorDefinitions$)
|
|
2801
809
|
.build() {
|
|
2802
810
|
}
|
|
2803
811
|
|
|
@@ -2809,7 +817,7 @@ class ListConnectorDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2809
817
|
})
|
|
2810
818
|
.s("Greengrass", "ListConnectorDefinitionVersions", {})
|
|
2811
819
|
.n("GreengrassClient", "ListConnectorDefinitionVersionsCommand")
|
|
2812
|
-
.sc(ListConnectorDefinitionVersions$)
|
|
820
|
+
.sc(schemas_0.ListConnectorDefinitionVersions$)
|
|
2813
821
|
.build() {
|
|
2814
822
|
}
|
|
2815
823
|
|
|
@@ -2821,7 +829,7 @@ class ListCoreDefinitionsCommand extends smithyClient.Command
|
|
|
2821
829
|
})
|
|
2822
830
|
.s("Greengrass", "ListCoreDefinitions", {})
|
|
2823
831
|
.n("GreengrassClient", "ListCoreDefinitionsCommand")
|
|
2824
|
-
.sc(ListCoreDefinitions$)
|
|
832
|
+
.sc(schemas_0.ListCoreDefinitions$)
|
|
2825
833
|
.build() {
|
|
2826
834
|
}
|
|
2827
835
|
|
|
@@ -2833,7 +841,7 @@ class ListCoreDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2833
841
|
})
|
|
2834
842
|
.s("Greengrass", "ListCoreDefinitionVersions", {})
|
|
2835
843
|
.n("GreengrassClient", "ListCoreDefinitionVersionsCommand")
|
|
2836
|
-
.sc(ListCoreDefinitionVersions$)
|
|
844
|
+
.sc(schemas_0.ListCoreDefinitionVersions$)
|
|
2837
845
|
.build() {
|
|
2838
846
|
}
|
|
2839
847
|
|
|
@@ -2845,7 +853,7 @@ class ListDeploymentsCommand extends smithyClient.Command
|
|
|
2845
853
|
})
|
|
2846
854
|
.s("Greengrass", "ListDeployments", {})
|
|
2847
855
|
.n("GreengrassClient", "ListDeploymentsCommand")
|
|
2848
|
-
.sc(ListDeployments$)
|
|
856
|
+
.sc(schemas_0.ListDeployments$)
|
|
2849
857
|
.build() {
|
|
2850
858
|
}
|
|
2851
859
|
|
|
@@ -2857,7 +865,7 @@ class ListDeviceDefinitionsCommand extends smithyClient.Command
|
|
|
2857
865
|
})
|
|
2858
866
|
.s("Greengrass", "ListDeviceDefinitions", {})
|
|
2859
867
|
.n("GreengrassClient", "ListDeviceDefinitionsCommand")
|
|
2860
|
-
.sc(ListDeviceDefinitions$)
|
|
868
|
+
.sc(schemas_0.ListDeviceDefinitions$)
|
|
2861
869
|
.build() {
|
|
2862
870
|
}
|
|
2863
871
|
|
|
@@ -2869,7 +877,7 @@ class ListDeviceDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2869
877
|
})
|
|
2870
878
|
.s("Greengrass", "ListDeviceDefinitionVersions", {})
|
|
2871
879
|
.n("GreengrassClient", "ListDeviceDefinitionVersionsCommand")
|
|
2872
|
-
.sc(ListDeviceDefinitionVersions$)
|
|
880
|
+
.sc(schemas_0.ListDeviceDefinitionVersions$)
|
|
2873
881
|
.build() {
|
|
2874
882
|
}
|
|
2875
883
|
|
|
@@ -2881,7 +889,7 @@ class ListFunctionDefinitionsCommand extends smithyClient.Command
|
|
|
2881
889
|
})
|
|
2882
890
|
.s("Greengrass", "ListFunctionDefinitions", {})
|
|
2883
891
|
.n("GreengrassClient", "ListFunctionDefinitionsCommand")
|
|
2884
|
-
.sc(ListFunctionDefinitions$)
|
|
892
|
+
.sc(schemas_0.ListFunctionDefinitions$)
|
|
2885
893
|
.build() {
|
|
2886
894
|
}
|
|
2887
895
|
|
|
@@ -2893,7 +901,7 @@ class ListFunctionDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2893
901
|
})
|
|
2894
902
|
.s("Greengrass", "ListFunctionDefinitionVersions", {})
|
|
2895
903
|
.n("GreengrassClient", "ListFunctionDefinitionVersionsCommand")
|
|
2896
|
-
.sc(ListFunctionDefinitionVersions$)
|
|
904
|
+
.sc(schemas_0.ListFunctionDefinitionVersions$)
|
|
2897
905
|
.build() {
|
|
2898
906
|
}
|
|
2899
907
|
|
|
@@ -2905,7 +913,7 @@ class ListGroupCertificateAuthoritiesCommand extends smithyClient.Command
|
|
|
2905
913
|
})
|
|
2906
914
|
.s("Greengrass", "ListGroupCertificateAuthorities", {})
|
|
2907
915
|
.n("GreengrassClient", "ListGroupCertificateAuthoritiesCommand")
|
|
2908
|
-
.sc(ListGroupCertificateAuthorities$)
|
|
916
|
+
.sc(schemas_0.ListGroupCertificateAuthorities$)
|
|
2909
917
|
.build() {
|
|
2910
918
|
}
|
|
2911
919
|
|
|
@@ -2917,7 +925,7 @@ class ListGroupsCommand extends smithyClient.Command
|
|
|
2917
925
|
})
|
|
2918
926
|
.s("Greengrass", "ListGroups", {})
|
|
2919
927
|
.n("GreengrassClient", "ListGroupsCommand")
|
|
2920
|
-
.sc(ListGroups$)
|
|
928
|
+
.sc(schemas_0.ListGroups$)
|
|
2921
929
|
.build() {
|
|
2922
930
|
}
|
|
2923
931
|
|
|
@@ -2929,7 +937,7 @@ class ListGroupVersionsCommand extends smithyClient.Command
|
|
|
2929
937
|
})
|
|
2930
938
|
.s("Greengrass", "ListGroupVersions", {})
|
|
2931
939
|
.n("GreengrassClient", "ListGroupVersionsCommand")
|
|
2932
|
-
.sc(ListGroupVersions$)
|
|
940
|
+
.sc(schemas_0.ListGroupVersions$)
|
|
2933
941
|
.build() {
|
|
2934
942
|
}
|
|
2935
943
|
|
|
@@ -2941,7 +949,7 @@ class ListLoggerDefinitionsCommand extends smithyClient.Command
|
|
|
2941
949
|
})
|
|
2942
950
|
.s("Greengrass", "ListLoggerDefinitions", {})
|
|
2943
951
|
.n("GreengrassClient", "ListLoggerDefinitionsCommand")
|
|
2944
|
-
.sc(ListLoggerDefinitions$)
|
|
952
|
+
.sc(schemas_0.ListLoggerDefinitions$)
|
|
2945
953
|
.build() {
|
|
2946
954
|
}
|
|
2947
955
|
|
|
@@ -2953,7 +961,7 @@ class ListLoggerDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2953
961
|
})
|
|
2954
962
|
.s("Greengrass", "ListLoggerDefinitionVersions", {})
|
|
2955
963
|
.n("GreengrassClient", "ListLoggerDefinitionVersionsCommand")
|
|
2956
|
-
.sc(ListLoggerDefinitionVersions$)
|
|
964
|
+
.sc(schemas_0.ListLoggerDefinitionVersions$)
|
|
2957
965
|
.build() {
|
|
2958
966
|
}
|
|
2959
967
|
|
|
@@ -2965,7 +973,7 @@ class ListResourceDefinitionsCommand extends smithyClient.Command
|
|
|
2965
973
|
})
|
|
2966
974
|
.s("Greengrass", "ListResourceDefinitions", {})
|
|
2967
975
|
.n("GreengrassClient", "ListResourceDefinitionsCommand")
|
|
2968
|
-
.sc(ListResourceDefinitions$)
|
|
976
|
+
.sc(schemas_0.ListResourceDefinitions$)
|
|
2969
977
|
.build() {
|
|
2970
978
|
}
|
|
2971
979
|
|
|
@@ -2977,7 +985,7 @@ class ListResourceDefinitionVersionsCommand extends smithyClient.Command
|
|
|
2977
985
|
})
|
|
2978
986
|
.s("Greengrass", "ListResourceDefinitionVersions", {})
|
|
2979
987
|
.n("GreengrassClient", "ListResourceDefinitionVersionsCommand")
|
|
2980
|
-
.sc(ListResourceDefinitionVersions$)
|
|
988
|
+
.sc(schemas_0.ListResourceDefinitionVersions$)
|
|
2981
989
|
.build() {
|
|
2982
990
|
}
|
|
2983
991
|
|
|
@@ -2989,7 +997,7 @@ class ListSubscriptionDefinitionsCommand extends smithyClient.Command
|
|
|
2989
997
|
})
|
|
2990
998
|
.s("Greengrass", "ListSubscriptionDefinitions", {})
|
|
2991
999
|
.n("GreengrassClient", "ListSubscriptionDefinitionsCommand")
|
|
2992
|
-
.sc(ListSubscriptionDefinitions$)
|
|
1000
|
+
.sc(schemas_0.ListSubscriptionDefinitions$)
|
|
2993
1001
|
.build() {
|
|
2994
1002
|
}
|
|
2995
1003
|
|
|
@@ -3001,7 +1009,7 @@ class ListSubscriptionDefinitionVersionsCommand extends smithyClient.Command
|
|
|
3001
1009
|
})
|
|
3002
1010
|
.s("Greengrass", "ListSubscriptionDefinitionVersions", {})
|
|
3003
1011
|
.n("GreengrassClient", "ListSubscriptionDefinitionVersionsCommand")
|
|
3004
|
-
.sc(ListSubscriptionDefinitionVersions$)
|
|
1012
|
+
.sc(schemas_0.ListSubscriptionDefinitionVersions$)
|
|
3005
1013
|
.build() {
|
|
3006
1014
|
}
|
|
3007
1015
|
|
|
@@ -3013,7 +1021,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
3013
1021
|
})
|
|
3014
1022
|
.s("Greengrass", "ListTagsForResource", {})
|
|
3015
1023
|
.n("GreengrassClient", "ListTagsForResourceCommand")
|
|
3016
|
-
.sc(ListTagsForResource$)
|
|
1024
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
3017
1025
|
.build() {
|
|
3018
1026
|
}
|
|
3019
1027
|
|
|
@@ -3025,7 +1033,7 @@ class ResetDeploymentsCommand extends smithyClient.Command
|
|
|
3025
1033
|
})
|
|
3026
1034
|
.s("Greengrass", "ResetDeployments", {})
|
|
3027
1035
|
.n("GreengrassClient", "ResetDeploymentsCommand")
|
|
3028
|
-
.sc(ResetDeployments$)
|
|
1036
|
+
.sc(schemas_0.ResetDeployments$)
|
|
3029
1037
|
.build() {
|
|
3030
1038
|
}
|
|
3031
1039
|
|
|
@@ -3037,7 +1045,7 @@ class StartBulkDeploymentCommand extends smithyClient.Command
|
|
|
3037
1045
|
})
|
|
3038
1046
|
.s("Greengrass", "StartBulkDeployment", {})
|
|
3039
1047
|
.n("GreengrassClient", "StartBulkDeploymentCommand")
|
|
3040
|
-
.sc(StartBulkDeployment$)
|
|
1048
|
+
.sc(schemas_0.StartBulkDeployment$)
|
|
3041
1049
|
.build() {
|
|
3042
1050
|
}
|
|
3043
1051
|
|
|
@@ -3049,7 +1057,7 @@ class StopBulkDeploymentCommand extends smithyClient.Command
|
|
|
3049
1057
|
})
|
|
3050
1058
|
.s("Greengrass", "StopBulkDeployment", {})
|
|
3051
1059
|
.n("GreengrassClient", "StopBulkDeploymentCommand")
|
|
3052
|
-
.sc(StopBulkDeployment$)
|
|
1060
|
+
.sc(schemas_0.StopBulkDeployment$)
|
|
3053
1061
|
.build() {
|
|
3054
1062
|
}
|
|
3055
1063
|
|
|
@@ -3061,7 +1069,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
3061
1069
|
})
|
|
3062
1070
|
.s("Greengrass", "TagResource", {})
|
|
3063
1071
|
.n("GreengrassClient", "TagResourceCommand")
|
|
3064
|
-
.sc(TagResource$)
|
|
1072
|
+
.sc(schemas_0.TagResource$)
|
|
3065
1073
|
.build() {
|
|
3066
1074
|
}
|
|
3067
1075
|
|
|
@@ -3073,7 +1081,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
3073
1081
|
})
|
|
3074
1082
|
.s("Greengrass", "UntagResource", {})
|
|
3075
1083
|
.n("GreengrassClient", "UntagResourceCommand")
|
|
3076
|
-
.sc(UntagResource$)
|
|
1084
|
+
.sc(schemas_0.UntagResource$)
|
|
3077
1085
|
.build() {
|
|
3078
1086
|
}
|
|
3079
1087
|
|
|
@@ -3085,7 +1093,7 @@ class UpdateConnectivityInfoCommand extends smithyClient.Command
|
|
|
3085
1093
|
})
|
|
3086
1094
|
.s("Greengrass", "UpdateConnectivityInfo", {})
|
|
3087
1095
|
.n("GreengrassClient", "UpdateConnectivityInfoCommand")
|
|
3088
|
-
.sc(UpdateConnectivityInfo$)
|
|
1096
|
+
.sc(schemas_0.UpdateConnectivityInfo$)
|
|
3089
1097
|
.build() {
|
|
3090
1098
|
}
|
|
3091
1099
|
|
|
@@ -3097,7 +1105,7 @@ class UpdateConnectorDefinitionCommand extends smithyClient.Command
|
|
|
3097
1105
|
})
|
|
3098
1106
|
.s("Greengrass", "UpdateConnectorDefinition", {})
|
|
3099
1107
|
.n("GreengrassClient", "UpdateConnectorDefinitionCommand")
|
|
3100
|
-
.sc(UpdateConnectorDefinition$)
|
|
1108
|
+
.sc(schemas_0.UpdateConnectorDefinition$)
|
|
3101
1109
|
.build() {
|
|
3102
1110
|
}
|
|
3103
1111
|
|
|
@@ -3109,7 +1117,7 @@ class UpdateCoreDefinitionCommand extends smithyClient.Command
|
|
|
3109
1117
|
})
|
|
3110
1118
|
.s("Greengrass", "UpdateCoreDefinition", {})
|
|
3111
1119
|
.n("GreengrassClient", "UpdateCoreDefinitionCommand")
|
|
3112
|
-
.sc(UpdateCoreDefinition$)
|
|
1120
|
+
.sc(schemas_0.UpdateCoreDefinition$)
|
|
3113
1121
|
.build() {
|
|
3114
1122
|
}
|
|
3115
1123
|
|
|
@@ -3121,7 +1129,7 @@ class UpdateDeviceDefinitionCommand extends smithyClient.Command
|
|
|
3121
1129
|
})
|
|
3122
1130
|
.s("Greengrass", "UpdateDeviceDefinition", {})
|
|
3123
1131
|
.n("GreengrassClient", "UpdateDeviceDefinitionCommand")
|
|
3124
|
-
.sc(UpdateDeviceDefinition$)
|
|
1132
|
+
.sc(schemas_0.UpdateDeviceDefinition$)
|
|
3125
1133
|
.build() {
|
|
3126
1134
|
}
|
|
3127
1135
|
|
|
@@ -3133,7 +1141,7 @@ class UpdateFunctionDefinitionCommand extends smithyClient.Command
|
|
|
3133
1141
|
})
|
|
3134
1142
|
.s("Greengrass", "UpdateFunctionDefinition", {})
|
|
3135
1143
|
.n("GreengrassClient", "UpdateFunctionDefinitionCommand")
|
|
3136
|
-
.sc(UpdateFunctionDefinition$)
|
|
1144
|
+
.sc(schemas_0.UpdateFunctionDefinition$)
|
|
3137
1145
|
.build() {
|
|
3138
1146
|
}
|
|
3139
1147
|
|
|
@@ -3145,7 +1153,7 @@ class UpdateGroupCertificateConfigurationCommand extends smithyClient.Command
|
|
|
3145
1153
|
})
|
|
3146
1154
|
.s("Greengrass", "UpdateGroupCertificateConfiguration", {})
|
|
3147
1155
|
.n("GreengrassClient", "UpdateGroupCertificateConfigurationCommand")
|
|
3148
|
-
.sc(UpdateGroupCertificateConfiguration$)
|
|
1156
|
+
.sc(schemas_0.UpdateGroupCertificateConfiguration$)
|
|
3149
1157
|
.build() {
|
|
3150
1158
|
}
|
|
3151
1159
|
|
|
@@ -3157,7 +1165,7 @@ class UpdateGroupCommand extends smithyClient.Command
|
|
|
3157
1165
|
})
|
|
3158
1166
|
.s("Greengrass", "UpdateGroup", {})
|
|
3159
1167
|
.n("GreengrassClient", "UpdateGroupCommand")
|
|
3160
|
-
.sc(UpdateGroup$)
|
|
1168
|
+
.sc(schemas_0.UpdateGroup$)
|
|
3161
1169
|
.build() {
|
|
3162
1170
|
}
|
|
3163
1171
|
|
|
@@ -3169,7 +1177,7 @@ class UpdateLoggerDefinitionCommand extends smithyClient.Command
|
|
|
3169
1177
|
})
|
|
3170
1178
|
.s("Greengrass", "UpdateLoggerDefinition", {})
|
|
3171
1179
|
.n("GreengrassClient", "UpdateLoggerDefinitionCommand")
|
|
3172
|
-
.sc(UpdateLoggerDefinition$)
|
|
1180
|
+
.sc(schemas_0.UpdateLoggerDefinition$)
|
|
3173
1181
|
.build() {
|
|
3174
1182
|
}
|
|
3175
1183
|
|
|
@@ -3181,7 +1189,7 @@ class UpdateResourceDefinitionCommand extends smithyClient.Command
|
|
|
3181
1189
|
})
|
|
3182
1190
|
.s("Greengrass", "UpdateResourceDefinition", {})
|
|
3183
1191
|
.n("GreengrassClient", "UpdateResourceDefinitionCommand")
|
|
3184
|
-
.sc(UpdateResourceDefinition$)
|
|
1192
|
+
.sc(schemas_0.UpdateResourceDefinition$)
|
|
3185
1193
|
.build() {
|
|
3186
1194
|
}
|
|
3187
1195
|
|
|
@@ -3193,7 +1201,7 @@ class UpdateSubscriptionDefinitionCommand extends smithyClient.Command
|
|
|
3193
1201
|
})
|
|
3194
1202
|
.s("Greengrass", "UpdateSubscriptionDefinition", {})
|
|
3195
1203
|
.n("GreengrassClient", "UpdateSubscriptionDefinitionCommand")
|
|
3196
|
-
.sc(UpdateSubscriptionDefinition$)
|
|
1204
|
+
.sc(schemas_0.UpdateSubscriptionDefinition$)
|
|
3197
1205
|
.build() {
|
|
3198
1206
|
}
|
|
3199
1207
|
|
|
@@ -3205,7 +1213,7 @@ class UpdateThingRuntimeConfigurationCommand extends smithyClient.Command
|
|
|
3205
1213
|
})
|
|
3206
1214
|
.s("Greengrass", "UpdateThingRuntimeConfiguration", {})
|
|
3207
1215
|
.n("GreengrassClient", "UpdateThingRuntimeConfigurationCommand")
|
|
3208
|
-
.sc(UpdateThingRuntimeConfiguration$)
|
|
1216
|
+
.sc(schemas_0.UpdateThingRuntimeConfiguration$)
|
|
3209
1217
|
.build() {
|
|
3210
1218
|
}
|
|
3211
1219
|
|
|
@@ -3391,434 +1399,127 @@ Object.defineProperty(exports, "__Client", {
|
|
|
3391
1399
|
enumerable: true,
|
|
3392
1400
|
get: function () { return smithyClient.Client; }
|
|
3393
1401
|
});
|
|
3394
|
-
exports
|
|
1402
|
+
Object.defineProperty(exports, "GreengrassServiceException", {
|
|
1403
|
+
enumerable: true,
|
|
1404
|
+
get: function () { return GreengrassServiceException.GreengrassServiceException; }
|
|
1405
|
+
});
|
|
3395
1406
|
exports.AssociateRoleToGroupCommand = AssociateRoleToGroupCommand;
|
|
3396
|
-
exports.AssociateRoleToGroupRequest$ = AssociateRoleToGroupRequest$;
|
|
3397
|
-
exports.AssociateRoleToGroupResponse$ = AssociateRoleToGroupResponse$;
|
|
3398
|
-
exports.AssociateServiceRoleToAccount$ = AssociateServiceRoleToAccount$;
|
|
3399
1407
|
exports.AssociateServiceRoleToAccountCommand = AssociateServiceRoleToAccountCommand;
|
|
3400
|
-
exports.AssociateServiceRoleToAccountRequest$ = AssociateServiceRoleToAccountRequest$;
|
|
3401
|
-
exports.AssociateServiceRoleToAccountResponse$ = AssociateServiceRoleToAccountResponse$;
|
|
3402
|
-
exports.BadRequestException = BadRequestException;
|
|
3403
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
3404
|
-
exports.BulkDeployment$ = BulkDeployment$;
|
|
3405
|
-
exports.BulkDeploymentMetrics$ = BulkDeploymentMetrics$;
|
|
3406
|
-
exports.BulkDeploymentResult$ = BulkDeploymentResult$;
|
|
3407
1408
|
exports.BulkDeploymentStatus = BulkDeploymentStatus;
|
|
3408
1409
|
exports.ConfigurationSyncStatus = ConfigurationSyncStatus;
|
|
3409
|
-
exports.ConnectivityInfo$ = ConnectivityInfo$;
|
|
3410
|
-
exports.Connector$ = Connector$;
|
|
3411
|
-
exports.ConnectorDefinitionVersion$ = ConnectorDefinitionVersion$;
|
|
3412
|
-
exports.Core$ = Core$;
|
|
3413
|
-
exports.CoreDefinitionVersion$ = CoreDefinitionVersion$;
|
|
3414
|
-
exports.CreateConnectorDefinition$ = CreateConnectorDefinition$;
|
|
3415
1410
|
exports.CreateConnectorDefinitionCommand = CreateConnectorDefinitionCommand;
|
|
3416
|
-
exports.CreateConnectorDefinitionRequest$ = CreateConnectorDefinitionRequest$;
|
|
3417
|
-
exports.CreateConnectorDefinitionResponse$ = CreateConnectorDefinitionResponse$;
|
|
3418
|
-
exports.CreateConnectorDefinitionVersion$ = CreateConnectorDefinitionVersion$;
|
|
3419
1411
|
exports.CreateConnectorDefinitionVersionCommand = CreateConnectorDefinitionVersionCommand;
|
|
3420
|
-
exports.CreateConnectorDefinitionVersionRequest$ = CreateConnectorDefinitionVersionRequest$;
|
|
3421
|
-
exports.CreateConnectorDefinitionVersionResponse$ = CreateConnectorDefinitionVersionResponse$;
|
|
3422
|
-
exports.CreateCoreDefinition$ = CreateCoreDefinition$;
|
|
3423
1412
|
exports.CreateCoreDefinitionCommand = CreateCoreDefinitionCommand;
|
|
3424
|
-
exports.CreateCoreDefinitionRequest$ = CreateCoreDefinitionRequest$;
|
|
3425
|
-
exports.CreateCoreDefinitionResponse$ = CreateCoreDefinitionResponse$;
|
|
3426
|
-
exports.CreateCoreDefinitionVersion$ = CreateCoreDefinitionVersion$;
|
|
3427
1413
|
exports.CreateCoreDefinitionVersionCommand = CreateCoreDefinitionVersionCommand;
|
|
3428
|
-
exports.CreateCoreDefinitionVersionRequest$ = CreateCoreDefinitionVersionRequest$;
|
|
3429
|
-
exports.CreateCoreDefinitionVersionResponse$ = CreateCoreDefinitionVersionResponse$;
|
|
3430
|
-
exports.CreateDeployment$ = CreateDeployment$;
|
|
3431
1414
|
exports.CreateDeploymentCommand = CreateDeploymentCommand;
|
|
3432
|
-
exports.CreateDeploymentRequest$ = CreateDeploymentRequest$;
|
|
3433
|
-
exports.CreateDeploymentResponse$ = CreateDeploymentResponse$;
|
|
3434
|
-
exports.CreateDeviceDefinition$ = CreateDeviceDefinition$;
|
|
3435
1415
|
exports.CreateDeviceDefinitionCommand = CreateDeviceDefinitionCommand;
|
|
3436
|
-
exports.CreateDeviceDefinitionRequest$ = CreateDeviceDefinitionRequest$;
|
|
3437
|
-
exports.CreateDeviceDefinitionResponse$ = CreateDeviceDefinitionResponse$;
|
|
3438
|
-
exports.CreateDeviceDefinitionVersion$ = CreateDeviceDefinitionVersion$;
|
|
3439
1416
|
exports.CreateDeviceDefinitionVersionCommand = CreateDeviceDefinitionVersionCommand;
|
|
3440
|
-
exports.CreateDeviceDefinitionVersionRequest$ = CreateDeviceDefinitionVersionRequest$;
|
|
3441
|
-
exports.CreateDeviceDefinitionVersionResponse$ = CreateDeviceDefinitionVersionResponse$;
|
|
3442
|
-
exports.CreateFunctionDefinition$ = CreateFunctionDefinition$;
|
|
3443
1417
|
exports.CreateFunctionDefinitionCommand = CreateFunctionDefinitionCommand;
|
|
3444
|
-
exports.CreateFunctionDefinitionRequest$ = CreateFunctionDefinitionRequest$;
|
|
3445
|
-
exports.CreateFunctionDefinitionResponse$ = CreateFunctionDefinitionResponse$;
|
|
3446
|
-
exports.CreateFunctionDefinitionVersion$ = CreateFunctionDefinitionVersion$;
|
|
3447
1418
|
exports.CreateFunctionDefinitionVersionCommand = CreateFunctionDefinitionVersionCommand;
|
|
3448
|
-
exports.CreateFunctionDefinitionVersionRequest$ = CreateFunctionDefinitionVersionRequest$;
|
|
3449
|
-
exports.CreateFunctionDefinitionVersionResponse$ = CreateFunctionDefinitionVersionResponse$;
|
|
3450
|
-
exports.CreateGroup$ = CreateGroup$;
|
|
3451
|
-
exports.CreateGroupCertificateAuthority$ = CreateGroupCertificateAuthority$;
|
|
3452
1419
|
exports.CreateGroupCertificateAuthorityCommand = CreateGroupCertificateAuthorityCommand;
|
|
3453
|
-
exports.CreateGroupCertificateAuthorityRequest$ = CreateGroupCertificateAuthorityRequest$;
|
|
3454
|
-
exports.CreateGroupCertificateAuthorityResponse$ = CreateGroupCertificateAuthorityResponse$;
|
|
3455
1420
|
exports.CreateGroupCommand = CreateGroupCommand;
|
|
3456
|
-
exports.CreateGroupRequest$ = CreateGroupRequest$;
|
|
3457
|
-
exports.CreateGroupResponse$ = CreateGroupResponse$;
|
|
3458
|
-
exports.CreateGroupVersion$ = CreateGroupVersion$;
|
|
3459
1421
|
exports.CreateGroupVersionCommand = CreateGroupVersionCommand;
|
|
3460
|
-
exports.CreateGroupVersionRequest$ = CreateGroupVersionRequest$;
|
|
3461
|
-
exports.CreateGroupVersionResponse$ = CreateGroupVersionResponse$;
|
|
3462
|
-
exports.CreateLoggerDefinition$ = CreateLoggerDefinition$;
|
|
3463
1422
|
exports.CreateLoggerDefinitionCommand = CreateLoggerDefinitionCommand;
|
|
3464
|
-
exports.CreateLoggerDefinitionRequest$ = CreateLoggerDefinitionRequest$;
|
|
3465
|
-
exports.CreateLoggerDefinitionResponse$ = CreateLoggerDefinitionResponse$;
|
|
3466
|
-
exports.CreateLoggerDefinitionVersion$ = CreateLoggerDefinitionVersion$;
|
|
3467
1423
|
exports.CreateLoggerDefinitionVersionCommand = CreateLoggerDefinitionVersionCommand;
|
|
3468
|
-
exports.CreateLoggerDefinitionVersionRequest$ = CreateLoggerDefinitionVersionRequest$;
|
|
3469
|
-
exports.CreateLoggerDefinitionVersionResponse$ = CreateLoggerDefinitionVersionResponse$;
|
|
3470
|
-
exports.CreateResourceDefinition$ = CreateResourceDefinition$;
|
|
3471
1424
|
exports.CreateResourceDefinitionCommand = CreateResourceDefinitionCommand;
|
|
3472
|
-
exports.CreateResourceDefinitionRequest$ = CreateResourceDefinitionRequest$;
|
|
3473
|
-
exports.CreateResourceDefinitionResponse$ = CreateResourceDefinitionResponse$;
|
|
3474
|
-
exports.CreateResourceDefinitionVersion$ = CreateResourceDefinitionVersion$;
|
|
3475
1425
|
exports.CreateResourceDefinitionVersionCommand = CreateResourceDefinitionVersionCommand;
|
|
3476
|
-
exports.CreateResourceDefinitionVersionRequest$ = CreateResourceDefinitionVersionRequest$;
|
|
3477
|
-
exports.CreateResourceDefinitionVersionResponse$ = CreateResourceDefinitionVersionResponse$;
|
|
3478
|
-
exports.CreateSoftwareUpdateJob$ = CreateSoftwareUpdateJob$;
|
|
3479
1426
|
exports.CreateSoftwareUpdateJobCommand = CreateSoftwareUpdateJobCommand;
|
|
3480
|
-
exports.CreateSoftwareUpdateJobRequest$ = CreateSoftwareUpdateJobRequest$;
|
|
3481
|
-
exports.CreateSoftwareUpdateJobResponse$ = CreateSoftwareUpdateJobResponse$;
|
|
3482
|
-
exports.CreateSubscriptionDefinition$ = CreateSubscriptionDefinition$;
|
|
3483
1427
|
exports.CreateSubscriptionDefinitionCommand = CreateSubscriptionDefinitionCommand;
|
|
3484
|
-
exports.CreateSubscriptionDefinitionRequest$ = CreateSubscriptionDefinitionRequest$;
|
|
3485
|
-
exports.CreateSubscriptionDefinitionResponse$ = CreateSubscriptionDefinitionResponse$;
|
|
3486
|
-
exports.CreateSubscriptionDefinitionVersion$ = CreateSubscriptionDefinitionVersion$;
|
|
3487
1428
|
exports.CreateSubscriptionDefinitionVersionCommand = CreateSubscriptionDefinitionVersionCommand;
|
|
3488
|
-
exports.CreateSubscriptionDefinitionVersionRequest$ = CreateSubscriptionDefinitionVersionRequest$;
|
|
3489
|
-
exports.CreateSubscriptionDefinitionVersionResponse$ = CreateSubscriptionDefinitionVersionResponse$;
|
|
3490
|
-
exports.DefinitionInformation$ = DefinitionInformation$;
|
|
3491
|
-
exports.DeleteConnectorDefinition$ = DeleteConnectorDefinition$;
|
|
3492
1429
|
exports.DeleteConnectorDefinitionCommand = DeleteConnectorDefinitionCommand;
|
|
3493
|
-
exports.DeleteConnectorDefinitionRequest$ = DeleteConnectorDefinitionRequest$;
|
|
3494
|
-
exports.DeleteConnectorDefinitionResponse$ = DeleteConnectorDefinitionResponse$;
|
|
3495
|
-
exports.DeleteCoreDefinition$ = DeleteCoreDefinition$;
|
|
3496
1430
|
exports.DeleteCoreDefinitionCommand = DeleteCoreDefinitionCommand;
|
|
3497
|
-
exports.DeleteCoreDefinitionRequest$ = DeleteCoreDefinitionRequest$;
|
|
3498
|
-
exports.DeleteCoreDefinitionResponse$ = DeleteCoreDefinitionResponse$;
|
|
3499
|
-
exports.DeleteDeviceDefinition$ = DeleteDeviceDefinition$;
|
|
3500
1431
|
exports.DeleteDeviceDefinitionCommand = DeleteDeviceDefinitionCommand;
|
|
3501
|
-
exports.DeleteDeviceDefinitionRequest$ = DeleteDeviceDefinitionRequest$;
|
|
3502
|
-
exports.DeleteDeviceDefinitionResponse$ = DeleteDeviceDefinitionResponse$;
|
|
3503
|
-
exports.DeleteFunctionDefinition$ = DeleteFunctionDefinition$;
|
|
3504
1432
|
exports.DeleteFunctionDefinitionCommand = DeleteFunctionDefinitionCommand;
|
|
3505
|
-
exports.DeleteFunctionDefinitionRequest$ = DeleteFunctionDefinitionRequest$;
|
|
3506
|
-
exports.DeleteFunctionDefinitionResponse$ = DeleteFunctionDefinitionResponse$;
|
|
3507
|
-
exports.DeleteGroup$ = DeleteGroup$;
|
|
3508
1433
|
exports.DeleteGroupCommand = DeleteGroupCommand;
|
|
3509
|
-
exports.DeleteGroupRequest$ = DeleteGroupRequest$;
|
|
3510
|
-
exports.DeleteGroupResponse$ = DeleteGroupResponse$;
|
|
3511
|
-
exports.DeleteLoggerDefinition$ = DeleteLoggerDefinition$;
|
|
3512
1434
|
exports.DeleteLoggerDefinitionCommand = DeleteLoggerDefinitionCommand;
|
|
3513
|
-
exports.DeleteLoggerDefinitionRequest$ = DeleteLoggerDefinitionRequest$;
|
|
3514
|
-
exports.DeleteLoggerDefinitionResponse$ = DeleteLoggerDefinitionResponse$;
|
|
3515
|
-
exports.DeleteResourceDefinition$ = DeleteResourceDefinition$;
|
|
3516
1435
|
exports.DeleteResourceDefinitionCommand = DeleteResourceDefinitionCommand;
|
|
3517
|
-
exports.DeleteResourceDefinitionRequest$ = DeleteResourceDefinitionRequest$;
|
|
3518
|
-
exports.DeleteResourceDefinitionResponse$ = DeleteResourceDefinitionResponse$;
|
|
3519
|
-
exports.DeleteSubscriptionDefinition$ = DeleteSubscriptionDefinition$;
|
|
3520
1436
|
exports.DeleteSubscriptionDefinitionCommand = DeleteSubscriptionDefinitionCommand;
|
|
3521
|
-
exports.DeleteSubscriptionDefinitionRequest$ = DeleteSubscriptionDefinitionRequest$;
|
|
3522
|
-
exports.DeleteSubscriptionDefinitionResponse$ = DeleteSubscriptionDefinitionResponse$;
|
|
3523
|
-
exports.Deployment$ = Deployment$;
|
|
3524
1437
|
exports.DeploymentType = DeploymentType;
|
|
3525
|
-
exports.Device$ = Device$;
|
|
3526
|
-
exports.DeviceDefinitionVersion$ = DeviceDefinitionVersion$;
|
|
3527
|
-
exports.DisassociateRoleFromGroup$ = DisassociateRoleFromGroup$;
|
|
3528
1438
|
exports.DisassociateRoleFromGroupCommand = DisassociateRoleFromGroupCommand;
|
|
3529
|
-
exports.DisassociateRoleFromGroupRequest$ = DisassociateRoleFromGroupRequest$;
|
|
3530
|
-
exports.DisassociateRoleFromGroupResponse$ = DisassociateRoleFromGroupResponse$;
|
|
3531
|
-
exports.DisassociateServiceRoleFromAccount$ = DisassociateServiceRoleFromAccount$;
|
|
3532
1439
|
exports.DisassociateServiceRoleFromAccountCommand = DisassociateServiceRoleFromAccountCommand;
|
|
3533
|
-
exports.DisassociateServiceRoleFromAccountRequest$ = DisassociateServiceRoleFromAccountRequest$;
|
|
3534
|
-
exports.DisassociateServiceRoleFromAccountResponse$ = DisassociateServiceRoleFromAccountResponse$;
|
|
3535
1440
|
exports.EncodingType = EncodingType;
|
|
3536
|
-
exports.ErrorDetail$ = ErrorDetail$;
|
|
3537
|
-
exports.Function$ = Function$;
|
|
3538
|
-
exports.FunctionConfiguration$ = FunctionConfiguration$;
|
|
3539
|
-
exports.FunctionConfigurationEnvironment$ = FunctionConfigurationEnvironment$;
|
|
3540
|
-
exports.FunctionDefaultConfig$ = FunctionDefaultConfig$;
|
|
3541
|
-
exports.FunctionDefaultExecutionConfig$ = FunctionDefaultExecutionConfig$;
|
|
3542
|
-
exports.FunctionDefinitionVersion$ = FunctionDefinitionVersion$;
|
|
3543
|
-
exports.FunctionExecutionConfig$ = FunctionExecutionConfig$;
|
|
3544
1441
|
exports.FunctionIsolationMode = FunctionIsolationMode;
|
|
3545
|
-
exports.FunctionRunAsConfig$ = FunctionRunAsConfig$;
|
|
3546
|
-
exports.GetAssociatedRole$ = GetAssociatedRole$;
|
|
3547
1442
|
exports.GetAssociatedRoleCommand = GetAssociatedRoleCommand;
|
|
3548
|
-
exports.GetAssociatedRoleRequest$ = GetAssociatedRoleRequest$;
|
|
3549
|
-
exports.GetAssociatedRoleResponse$ = GetAssociatedRoleResponse$;
|
|
3550
|
-
exports.GetBulkDeploymentStatus$ = GetBulkDeploymentStatus$;
|
|
3551
1443
|
exports.GetBulkDeploymentStatusCommand = GetBulkDeploymentStatusCommand;
|
|
3552
|
-
exports.GetBulkDeploymentStatusRequest$ = GetBulkDeploymentStatusRequest$;
|
|
3553
|
-
exports.GetBulkDeploymentStatusResponse$ = GetBulkDeploymentStatusResponse$;
|
|
3554
|
-
exports.GetConnectivityInfo$ = GetConnectivityInfo$;
|
|
3555
1444
|
exports.GetConnectivityInfoCommand = GetConnectivityInfoCommand;
|
|
3556
|
-
exports.GetConnectivityInfoRequest$ = GetConnectivityInfoRequest$;
|
|
3557
|
-
exports.GetConnectivityInfoResponse$ = GetConnectivityInfoResponse$;
|
|
3558
|
-
exports.GetConnectorDefinition$ = GetConnectorDefinition$;
|
|
3559
1445
|
exports.GetConnectorDefinitionCommand = GetConnectorDefinitionCommand;
|
|
3560
|
-
exports.GetConnectorDefinitionRequest$ = GetConnectorDefinitionRequest$;
|
|
3561
|
-
exports.GetConnectorDefinitionResponse$ = GetConnectorDefinitionResponse$;
|
|
3562
|
-
exports.GetConnectorDefinitionVersion$ = GetConnectorDefinitionVersion$;
|
|
3563
1446
|
exports.GetConnectorDefinitionVersionCommand = GetConnectorDefinitionVersionCommand;
|
|
3564
|
-
exports.GetConnectorDefinitionVersionRequest$ = GetConnectorDefinitionVersionRequest$;
|
|
3565
|
-
exports.GetConnectorDefinitionVersionResponse$ = GetConnectorDefinitionVersionResponse$;
|
|
3566
|
-
exports.GetCoreDefinition$ = GetCoreDefinition$;
|
|
3567
1447
|
exports.GetCoreDefinitionCommand = GetCoreDefinitionCommand;
|
|
3568
|
-
exports.GetCoreDefinitionRequest$ = GetCoreDefinitionRequest$;
|
|
3569
|
-
exports.GetCoreDefinitionResponse$ = GetCoreDefinitionResponse$;
|
|
3570
|
-
exports.GetCoreDefinitionVersion$ = GetCoreDefinitionVersion$;
|
|
3571
1448
|
exports.GetCoreDefinitionVersionCommand = GetCoreDefinitionVersionCommand;
|
|
3572
|
-
exports.GetCoreDefinitionVersionRequest$ = GetCoreDefinitionVersionRequest$;
|
|
3573
|
-
exports.GetCoreDefinitionVersionResponse$ = GetCoreDefinitionVersionResponse$;
|
|
3574
|
-
exports.GetDeploymentStatus$ = GetDeploymentStatus$;
|
|
3575
1449
|
exports.GetDeploymentStatusCommand = GetDeploymentStatusCommand;
|
|
3576
|
-
exports.GetDeploymentStatusRequest$ = GetDeploymentStatusRequest$;
|
|
3577
|
-
exports.GetDeploymentStatusResponse$ = GetDeploymentStatusResponse$;
|
|
3578
|
-
exports.GetDeviceDefinition$ = GetDeviceDefinition$;
|
|
3579
1450
|
exports.GetDeviceDefinitionCommand = GetDeviceDefinitionCommand;
|
|
3580
|
-
exports.GetDeviceDefinitionRequest$ = GetDeviceDefinitionRequest$;
|
|
3581
|
-
exports.GetDeviceDefinitionResponse$ = GetDeviceDefinitionResponse$;
|
|
3582
|
-
exports.GetDeviceDefinitionVersion$ = GetDeviceDefinitionVersion$;
|
|
3583
1451
|
exports.GetDeviceDefinitionVersionCommand = GetDeviceDefinitionVersionCommand;
|
|
3584
|
-
exports.GetDeviceDefinitionVersionRequest$ = GetDeviceDefinitionVersionRequest$;
|
|
3585
|
-
exports.GetDeviceDefinitionVersionResponse$ = GetDeviceDefinitionVersionResponse$;
|
|
3586
|
-
exports.GetFunctionDefinition$ = GetFunctionDefinition$;
|
|
3587
1452
|
exports.GetFunctionDefinitionCommand = GetFunctionDefinitionCommand;
|
|
3588
|
-
exports.GetFunctionDefinitionRequest$ = GetFunctionDefinitionRequest$;
|
|
3589
|
-
exports.GetFunctionDefinitionResponse$ = GetFunctionDefinitionResponse$;
|
|
3590
|
-
exports.GetFunctionDefinitionVersion$ = GetFunctionDefinitionVersion$;
|
|
3591
1453
|
exports.GetFunctionDefinitionVersionCommand = GetFunctionDefinitionVersionCommand;
|
|
3592
|
-
exports.GetFunctionDefinitionVersionRequest$ = GetFunctionDefinitionVersionRequest$;
|
|
3593
|
-
exports.GetFunctionDefinitionVersionResponse$ = GetFunctionDefinitionVersionResponse$;
|
|
3594
|
-
exports.GetGroup$ = GetGroup$;
|
|
3595
|
-
exports.GetGroupCertificateAuthority$ = GetGroupCertificateAuthority$;
|
|
3596
1454
|
exports.GetGroupCertificateAuthorityCommand = GetGroupCertificateAuthorityCommand;
|
|
3597
|
-
exports.GetGroupCertificateAuthorityRequest$ = GetGroupCertificateAuthorityRequest$;
|
|
3598
|
-
exports.GetGroupCertificateAuthorityResponse$ = GetGroupCertificateAuthorityResponse$;
|
|
3599
|
-
exports.GetGroupCertificateConfiguration$ = GetGroupCertificateConfiguration$;
|
|
3600
1455
|
exports.GetGroupCertificateConfigurationCommand = GetGroupCertificateConfigurationCommand;
|
|
3601
|
-
exports.GetGroupCertificateConfigurationRequest$ = GetGroupCertificateConfigurationRequest$;
|
|
3602
|
-
exports.GetGroupCertificateConfigurationResponse$ = GetGroupCertificateConfigurationResponse$;
|
|
3603
1456
|
exports.GetGroupCommand = GetGroupCommand;
|
|
3604
|
-
exports.GetGroupRequest$ = GetGroupRequest$;
|
|
3605
|
-
exports.GetGroupResponse$ = GetGroupResponse$;
|
|
3606
|
-
exports.GetGroupVersion$ = GetGroupVersion$;
|
|
3607
1457
|
exports.GetGroupVersionCommand = GetGroupVersionCommand;
|
|
3608
|
-
exports.GetGroupVersionRequest$ = GetGroupVersionRequest$;
|
|
3609
|
-
exports.GetGroupVersionResponse$ = GetGroupVersionResponse$;
|
|
3610
|
-
exports.GetLoggerDefinition$ = GetLoggerDefinition$;
|
|
3611
1458
|
exports.GetLoggerDefinitionCommand = GetLoggerDefinitionCommand;
|
|
3612
|
-
exports.GetLoggerDefinitionRequest$ = GetLoggerDefinitionRequest$;
|
|
3613
|
-
exports.GetLoggerDefinitionResponse$ = GetLoggerDefinitionResponse$;
|
|
3614
|
-
exports.GetLoggerDefinitionVersion$ = GetLoggerDefinitionVersion$;
|
|
3615
1459
|
exports.GetLoggerDefinitionVersionCommand = GetLoggerDefinitionVersionCommand;
|
|
3616
|
-
exports.GetLoggerDefinitionVersionRequest$ = GetLoggerDefinitionVersionRequest$;
|
|
3617
|
-
exports.GetLoggerDefinitionVersionResponse$ = GetLoggerDefinitionVersionResponse$;
|
|
3618
|
-
exports.GetResourceDefinition$ = GetResourceDefinition$;
|
|
3619
1460
|
exports.GetResourceDefinitionCommand = GetResourceDefinitionCommand;
|
|
3620
|
-
exports.GetResourceDefinitionRequest$ = GetResourceDefinitionRequest$;
|
|
3621
|
-
exports.GetResourceDefinitionResponse$ = GetResourceDefinitionResponse$;
|
|
3622
|
-
exports.GetResourceDefinitionVersion$ = GetResourceDefinitionVersion$;
|
|
3623
1461
|
exports.GetResourceDefinitionVersionCommand = GetResourceDefinitionVersionCommand;
|
|
3624
|
-
exports.GetResourceDefinitionVersionRequest$ = GetResourceDefinitionVersionRequest$;
|
|
3625
|
-
exports.GetResourceDefinitionVersionResponse$ = GetResourceDefinitionVersionResponse$;
|
|
3626
|
-
exports.GetServiceRoleForAccount$ = GetServiceRoleForAccount$;
|
|
3627
1462
|
exports.GetServiceRoleForAccountCommand = GetServiceRoleForAccountCommand;
|
|
3628
|
-
exports.GetServiceRoleForAccountRequest$ = GetServiceRoleForAccountRequest$;
|
|
3629
|
-
exports.GetServiceRoleForAccountResponse$ = GetServiceRoleForAccountResponse$;
|
|
3630
|
-
exports.GetSubscriptionDefinition$ = GetSubscriptionDefinition$;
|
|
3631
1463
|
exports.GetSubscriptionDefinitionCommand = GetSubscriptionDefinitionCommand;
|
|
3632
|
-
exports.GetSubscriptionDefinitionRequest$ = GetSubscriptionDefinitionRequest$;
|
|
3633
|
-
exports.GetSubscriptionDefinitionResponse$ = GetSubscriptionDefinitionResponse$;
|
|
3634
|
-
exports.GetSubscriptionDefinitionVersion$ = GetSubscriptionDefinitionVersion$;
|
|
3635
1464
|
exports.GetSubscriptionDefinitionVersionCommand = GetSubscriptionDefinitionVersionCommand;
|
|
3636
|
-
exports.GetSubscriptionDefinitionVersionRequest$ = GetSubscriptionDefinitionVersionRequest$;
|
|
3637
|
-
exports.GetSubscriptionDefinitionVersionResponse$ = GetSubscriptionDefinitionVersionResponse$;
|
|
3638
|
-
exports.GetThingRuntimeConfiguration$ = GetThingRuntimeConfiguration$;
|
|
3639
1465
|
exports.GetThingRuntimeConfigurationCommand = GetThingRuntimeConfigurationCommand;
|
|
3640
|
-
exports.GetThingRuntimeConfigurationRequest$ = GetThingRuntimeConfigurationRequest$;
|
|
3641
|
-
exports.GetThingRuntimeConfigurationResponse$ = GetThingRuntimeConfigurationResponse$;
|
|
3642
1466
|
exports.Greengrass = Greengrass;
|
|
3643
1467
|
exports.GreengrassClient = GreengrassClient;
|
|
3644
|
-
exports.GreengrassServiceException = GreengrassServiceException;
|
|
3645
|
-
exports.GreengrassServiceException$ = GreengrassServiceException$;
|
|
3646
|
-
exports.GroupCertificateAuthorityProperties$ = GroupCertificateAuthorityProperties$;
|
|
3647
|
-
exports.GroupInformation$ = GroupInformation$;
|
|
3648
|
-
exports.GroupOwnerSetting$ = GroupOwnerSetting$;
|
|
3649
|
-
exports.GroupVersion$ = GroupVersion$;
|
|
3650
|
-
exports.InternalServerErrorException = InternalServerErrorException;
|
|
3651
|
-
exports.InternalServerErrorException$ = InternalServerErrorException$;
|
|
3652
|
-
exports.ListBulkDeploymentDetailedReports$ = ListBulkDeploymentDetailedReports$;
|
|
3653
1468
|
exports.ListBulkDeploymentDetailedReportsCommand = ListBulkDeploymentDetailedReportsCommand;
|
|
3654
|
-
exports.ListBulkDeploymentDetailedReportsRequest$ = ListBulkDeploymentDetailedReportsRequest$;
|
|
3655
|
-
exports.ListBulkDeploymentDetailedReportsResponse$ = ListBulkDeploymentDetailedReportsResponse$;
|
|
3656
|
-
exports.ListBulkDeployments$ = ListBulkDeployments$;
|
|
3657
1469
|
exports.ListBulkDeploymentsCommand = ListBulkDeploymentsCommand;
|
|
3658
|
-
exports.ListBulkDeploymentsRequest$ = ListBulkDeploymentsRequest$;
|
|
3659
|
-
exports.ListBulkDeploymentsResponse$ = ListBulkDeploymentsResponse$;
|
|
3660
|
-
exports.ListConnectorDefinitionVersions$ = ListConnectorDefinitionVersions$;
|
|
3661
1470
|
exports.ListConnectorDefinitionVersionsCommand = ListConnectorDefinitionVersionsCommand;
|
|
3662
|
-
exports.ListConnectorDefinitionVersionsRequest$ = ListConnectorDefinitionVersionsRequest$;
|
|
3663
|
-
exports.ListConnectorDefinitionVersionsResponse$ = ListConnectorDefinitionVersionsResponse$;
|
|
3664
|
-
exports.ListConnectorDefinitions$ = ListConnectorDefinitions$;
|
|
3665
1471
|
exports.ListConnectorDefinitionsCommand = ListConnectorDefinitionsCommand;
|
|
3666
|
-
exports.ListConnectorDefinitionsRequest$ = ListConnectorDefinitionsRequest$;
|
|
3667
|
-
exports.ListConnectorDefinitionsResponse$ = ListConnectorDefinitionsResponse$;
|
|
3668
|
-
exports.ListCoreDefinitionVersions$ = ListCoreDefinitionVersions$;
|
|
3669
1472
|
exports.ListCoreDefinitionVersionsCommand = ListCoreDefinitionVersionsCommand;
|
|
3670
|
-
exports.ListCoreDefinitionVersionsRequest$ = ListCoreDefinitionVersionsRequest$;
|
|
3671
|
-
exports.ListCoreDefinitionVersionsResponse$ = ListCoreDefinitionVersionsResponse$;
|
|
3672
|
-
exports.ListCoreDefinitions$ = ListCoreDefinitions$;
|
|
3673
1473
|
exports.ListCoreDefinitionsCommand = ListCoreDefinitionsCommand;
|
|
3674
|
-
exports.ListCoreDefinitionsRequest$ = ListCoreDefinitionsRequest$;
|
|
3675
|
-
exports.ListCoreDefinitionsResponse$ = ListCoreDefinitionsResponse$;
|
|
3676
|
-
exports.ListDeployments$ = ListDeployments$;
|
|
3677
1474
|
exports.ListDeploymentsCommand = ListDeploymentsCommand;
|
|
3678
|
-
exports.ListDeploymentsRequest$ = ListDeploymentsRequest$;
|
|
3679
|
-
exports.ListDeploymentsResponse$ = ListDeploymentsResponse$;
|
|
3680
|
-
exports.ListDeviceDefinitionVersions$ = ListDeviceDefinitionVersions$;
|
|
3681
1475
|
exports.ListDeviceDefinitionVersionsCommand = ListDeviceDefinitionVersionsCommand;
|
|
3682
|
-
exports.ListDeviceDefinitionVersionsRequest$ = ListDeviceDefinitionVersionsRequest$;
|
|
3683
|
-
exports.ListDeviceDefinitionVersionsResponse$ = ListDeviceDefinitionVersionsResponse$;
|
|
3684
|
-
exports.ListDeviceDefinitions$ = ListDeviceDefinitions$;
|
|
3685
1476
|
exports.ListDeviceDefinitionsCommand = ListDeviceDefinitionsCommand;
|
|
3686
|
-
exports.ListDeviceDefinitionsRequest$ = ListDeviceDefinitionsRequest$;
|
|
3687
|
-
exports.ListDeviceDefinitionsResponse$ = ListDeviceDefinitionsResponse$;
|
|
3688
|
-
exports.ListFunctionDefinitionVersions$ = ListFunctionDefinitionVersions$;
|
|
3689
1477
|
exports.ListFunctionDefinitionVersionsCommand = ListFunctionDefinitionVersionsCommand;
|
|
3690
|
-
exports.ListFunctionDefinitionVersionsRequest$ = ListFunctionDefinitionVersionsRequest$;
|
|
3691
|
-
exports.ListFunctionDefinitionVersionsResponse$ = ListFunctionDefinitionVersionsResponse$;
|
|
3692
|
-
exports.ListFunctionDefinitions$ = ListFunctionDefinitions$;
|
|
3693
1478
|
exports.ListFunctionDefinitionsCommand = ListFunctionDefinitionsCommand;
|
|
3694
|
-
exports.ListFunctionDefinitionsRequest$ = ListFunctionDefinitionsRequest$;
|
|
3695
|
-
exports.ListFunctionDefinitionsResponse$ = ListFunctionDefinitionsResponse$;
|
|
3696
|
-
exports.ListGroupCertificateAuthorities$ = ListGroupCertificateAuthorities$;
|
|
3697
1479
|
exports.ListGroupCertificateAuthoritiesCommand = ListGroupCertificateAuthoritiesCommand;
|
|
3698
|
-
exports.ListGroupCertificateAuthoritiesRequest$ = ListGroupCertificateAuthoritiesRequest$;
|
|
3699
|
-
exports.ListGroupCertificateAuthoritiesResponse$ = ListGroupCertificateAuthoritiesResponse$;
|
|
3700
|
-
exports.ListGroupVersions$ = ListGroupVersions$;
|
|
3701
1480
|
exports.ListGroupVersionsCommand = ListGroupVersionsCommand;
|
|
3702
|
-
exports.ListGroupVersionsRequest$ = ListGroupVersionsRequest$;
|
|
3703
|
-
exports.ListGroupVersionsResponse$ = ListGroupVersionsResponse$;
|
|
3704
|
-
exports.ListGroups$ = ListGroups$;
|
|
3705
1481
|
exports.ListGroupsCommand = ListGroupsCommand;
|
|
3706
|
-
exports.ListGroupsRequest$ = ListGroupsRequest$;
|
|
3707
|
-
exports.ListGroupsResponse$ = ListGroupsResponse$;
|
|
3708
|
-
exports.ListLoggerDefinitionVersions$ = ListLoggerDefinitionVersions$;
|
|
3709
1482
|
exports.ListLoggerDefinitionVersionsCommand = ListLoggerDefinitionVersionsCommand;
|
|
3710
|
-
exports.ListLoggerDefinitionVersionsRequest$ = ListLoggerDefinitionVersionsRequest$;
|
|
3711
|
-
exports.ListLoggerDefinitionVersionsResponse$ = ListLoggerDefinitionVersionsResponse$;
|
|
3712
|
-
exports.ListLoggerDefinitions$ = ListLoggerDefinitions$;
|
|
3713
1483
|
exports.ListLoggerDefinitionsCommand = ListLoggerDefinitionsCommand;
|
|
3714
|
-
exports.ListLoggerDefinitionsRequest$ = ListLoggerDefinitionsRequest$;
|
|
3715
|
-
exports.ListLoggerDefinitionsResponse$ = ListLoggerDefinitionsResponse$;
|
|
3716
|
-
exports.ListResourceDefinitionVersions$ = ListResourceDefinitionVersions$;
|
|
3717
1484
|
exports.ListResourceDefinitionVersionsCommand = ListResourceDefinitionVersionsCommand;
|
|
3718
|
-
exports.ListResourceDefinitionVersionsRequest$ = ListResourceDefinitionVersionsRequest$;
|
|
3719
|
-
exports.ListResourceDefinitionVersionsResponse$ = ListResourceDefinitionVersionsResponse$;
|
|
3720
|
-
exports.ListResourceDefinitions$ = ListResourceDefinitions$;
|
|
3721
1485
|
exports.ListResourceDefinitionsCommand = ListResourceDefinitionsCommand;
|
|
3722
|
-
exports.ListResourceDefinitionsRequest$ = ListResourceDefinitionsRequest$;
|
|
3723
|
-
exports.ListResourceDefinitionsResponse$ = ListResourceDefinitionsResponse$;
|
|
3724
|
-
exports.ListSubscriptionDefinitionVersions$ = ListSubscriptionDefinitionVersions$;
|
|
3725
1486
|
exports.ListSubscriptionDefinitionVersionsCommand = ListSubscriptionDefinitionVersionsCommand;
|
|
3726
|
-
exports.ListSubscriptionDefinitionVersionsRequest$ = ListSubscriptionDefinitionVersionsRequest$;
|
|
3727
|
-
exports.ListSubscriptionDefinitionVersionsResponse$ = ListSubscriptionDefinitionVersionsResponse$;
|
|
3728
|
-
exports.ListSubscriptionDefinitions$ = ListSubscriptionDefinitions$;
|
|
3729
1487
|
exports.ListSubscriptionDefinitionsCommand = ListSubscriptionDefinitionsCommand;
|
|
3730
|
-
exports.ListSubscriptionDefinitionsRequest$ = ListSubscriptionDefinitionsRequest$;
|
|
3731
|
-
exports.ListSubscriptionDefinitionsResponse$ = ListSubscriptionDefinitionsResponse$;
|
|
3732
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3733
1488
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3734
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3735
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3736
|
-
exports.LocalDeviceResourceData$ = LocalDeviceResourceData$;
|
|
3737
|
-
exports.LocalVolumeResourceData$ = LocalVolumeResourceData$;
|
|
3738
|
-
exports.Logger$ = Logger$;
|
|
3739
1489
|
exports.LoggerComponent = LoggerComponent;
|
|
3740
|
-
exports.LoggerDefinitionVersion$ = LoggerDefinitionVersion$;
|
|
3741
1490
|
exports.LoggerLevel = LoggerLevel;
|
|
3742
1491
|
exports.LoggerType = LoggerType;
|
|
3743
1492
|
exports.Permission = Permission;
|
|
3744
|
-
exports.ResetDeployments$ = ResetDeployments$;
|
|
3745
1493
|
exports.ResetDeploymentsCommand = ResetDeploymentsCommand;
|
|
3746
|
-
exports.ResetDeploymentsRequest$ = ResetDeploymentsRequest$;
|
|
3747
|
-
exports.ResetDeploymentsResponse$ = ResetDeploymentsResponse$;
|
|
3748
|
-
exports.Resource$ = Resource$;
|
|
3749
|
-
exports.ResourceAccessPolicy$ = ResourceAccessPolicy$;
|
|
3750
|
-
exports.ResourceDataContainer$ = ResourceDataContainer$;
|
|
3751
|
-
exports.ResourceDefinitionVersion$ = ResourceDefinitionVersion$;
|
|
3752
|
-
exports.ResourceDownloadOwnerSetting$ = ResourceDownloadOwnerSetting$;
|
|
3753
|
-
exports.RuntimeConfiguration$ = RuntimeConfiguration$;
|
|
3754
|
-
exports.S3MachineLearningModelResourceData$ = S3MachineLearningModelResourceData$;
|
|
3755
|
-
exports.SageMakerMachineLearningModelResourceData$ = SageMakerMachineLearningModelResourceData$;
|
|
3756
|
-
exports.SecretsManagerSecretResourceData$ = SecretsManagerSecretResourceData$;
|
|
3757
1494
|
exports.SoftwareToUpdate = SoftwareToUpdate;
|
|
3758
|
-
exports.StartBulkDeployment$ = StartBulkDeployment$;
|
|
3759
1495
|
exports.StartBulkDeploymentCommand = StartBulkDeploymentCommand;
|
|
3760
|
-
exports.StartBulkDeploymentRequest$ = StartBulkDeploymentRequest$;
|
|
3761
|
-
exports.StartBulkDeploymentResponse$ = StartBulkDeploymentResponse$;
|
|
3762
|
-
exports.StopBulkDeployment$ = StopBulkDeployment$;
|
|
3763
1496
|
exports.StopBulkDeploymentCommand = StopBulkDeploymentCommand;
|
|
3764
|
-
exports.StopBulkDeploymentRequest$ = StopBulkDeploymentRequest$;
|
|
3765
|
-
exports.StopBulkDeploymentResponse$ = StopBulkDeploymentResponse$;
|
|
3766
|
-
exports.Subscription$ = Subscription$;
|
|
3767
|
-
exports.SubscriptionDefinitionVersion$ = SubscriptionDefinitionVersion$;
|
|
3768
|
-
exports.TagResource$ = TagResource$;
|
|
3769
1497
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3770
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3771
1498
|
exports.Telemetry = Telemetry;
|
|
3772
|
-
exports.TelemetryConfiguration$ = TelemetryConfiguration$;
|
|
3773
|
-
exports.TelemetryConfigurationUpdate$ = TelemetryConfigurationUpdate$;
|
|
3774
|
-
exports.UntagResource$ = UntagResource$;
|
|
3775
1499
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3776
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3777
1500
|
exports.UpdateAgentLogLevel = UpdateAgentLogLevel;
|
|
3778
|
-
exports.UpdateConnectivityInfo$ = UpdateConnectivityInfo$;
|
|
3779
1501
|
exports.UpdateConnectivityInfoCommand = UpdateConnectivityInfoCommand;
|
|
3780
|
-
exports.UpdateConnectivityInfoRequest$ = UpdateConnectivityInfoRequest$;
|
|
3781
|
-
exports.UpdateConnectivityInfoResponse$ = UpdateConnectivityInfoResponse$;
|
|
3782
|
-
exports.UpdateConnectorDefinition$ = UpdateConnectorDefinition$;
|
|
3783
1502
|
exports.UpdateConnectorDefinitionCommand = UpdateConnectorDefinitionCommand;
|
|
3784
|
-
exports.UpdateConnectorDefinitionRequest$ = UpdateConnectorDefinitionRequest$;
|
|
3785
|
-
exports.UpdateConnectorDefinitionResponse$ = UpdateConnectorDefinitionResponse$;
|
|
3786
|
-
exports.UpdateCoreDefinition$ = UpdateCoreDefinition$;
|
|
3787
1503
|
exports.UpdateCoreDefinitionCommand = UpdateCoreDefinitionCommand;
|
|
3788
|
-
exports.UpdateCoreDefinitionRequest$ = UpdateCoreDefinitionRequest$;
|
|
3789
|
-
exports.UpdateCoreDefinitionResponse$ = UpdateCoreDefinitionResponse$;
|
|
3790
|
-
exports.UpdateDeviceDefinition$ = UpdateDeviceDefinition$;
|
|
3791
1504
|
exports.UpdateDeviceDefinitionCommand = UpdateDeviceDefinitionCommand;
|
|
3792
|
-
exports.UpdateDeviceDefinitionRequest$ = UpdateDeviceDefinitionRequest$;
|
|
3793
|
-
exports.UpdateDeviceDefinitionResponse$ = UpdateDeviceDefinitionResponse$;
|
|
3794
|
-
exports.UpdateFunctionDefinition$ = UpdateFunctionDefinition$;
|
|
3795
1505
|
exports.UpdateFunctionDefinitionCommand = UpdateFunctionDefinitionCommand;
|
|
3796
|
-
exports.UpdateFunctionDefinitionRequest$ = UpdateFunctionDefinitionRequest$;
|
|
3797
|
-
exports.UpdateFunctionDefinitionResponse$ = UpdateFunctionDefinitionResponse$;
|
|
3798
|
-
exports.UpdateGroup$ = UpdateGroup$;
|
|
3799
|
-
exports.UpdateGroupCertificateConfiguration$ = UpdateGroupCertificateConfiguration$;
|
|
3800
1506
|
exports.UpdateGroupCertificateConfigurationCommand = UpdateGroupCertificateConfigurationCommand;
|
|
3801
|
-
exports.UpdateGroupCertificateConfigurationRequest$ = UpdateGroupCertificateConfigurationRequest$;
|
|
3802
|
-
exports.UpdateGroupCertificateConfigurationResponse$ = UpdateGroupCertificateConfigurationResponse$;
|
|
3803
1507
|
exports.UpdateGroupCommand = UpdateGroupCommand;
|
|
3804
|
-
exports.UpdateGroupRequest$ = UpdateGroupRequest$;
|
|
3805
|
-
exports.UpdateGroupResponse$ = UpdateGroupResponse$;
|
|
3806
|
-
exports.UpdateLoggerDefinition$ = UpdateLoggerDefinition$;
|
|
3807
1508
|
exports.UpdateLoggerDefinitionCommand = UpdateLoggerDefinitionCommand;
|
|
3808
|
-
exports.UpdateLoggerDefinitionRequest$ = UpdateLoggerDefinitionRequest$;
|
|
3809
|
-
exports.UpdateLoggerDefinitionResponse$ = UpdateLoggerDefinitionResponse$;
|
|
3810
|
-
exports.UpdateResourceDefinition$ = UpdateResourceDefinition$;
|
|
3811
1509
|
exports.UpdateResourceDefinitionCommand = UpdateResourceDefinitionCommand;
|
|
3812
|
-
exports.UpdateResourceDefinitionRequest$ = UpdateResourceDefinitionRequest$;
|
|
3813
|
-
exports.UpdateResourceDefinitionResponse$ = UpdateResourceDefinitionResponse$;
|
|
3814
|
-
exports.UpdateSubscriptionDefinition$ = UpdateSubscriptionDefinition$;
|
|
3815
1510
|
exports.UpdateSubscriptionDefinitionCommand = UpdateSubscriptionDefinitionCommand;
|
|
3816
|
-
exports.UpdateSubscriptionDefinitionRequest$ = UpdateSubscriptionDefinitionRequest$;
|
|
3817
|
-
exports.UpdateSubscriptionDefinitionResponse$ = UpdateSubscriptionDefinitionResponse$;
|
|
3818
1511
|
exports.UpdateTargetsArchitecture = UpdateTargetsArchitecture;
|
|
3819
1512
|
exports.UpdateTargetsOperatingSystem = UpdateTargetsOperatingSystem;
|
|
3820
|
-
exports.UpdateThingRuntimeConfiguration$ = UpdateThingRuntimeConfiguration$;
|
|
3821
1513
|
exports.UpdateThingRuntimeConfigurationCommand = UpdateThingRuntimeConfigurationCommand;
|
|
3822
|
-
|
|
3823
|
-
exports.
|
|
3824
|
-
|
|
1514
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1515
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1516
|
+
enumerable: true,
|
|
1517
|
+
get: function () { return schemas_0[k]; }
|
|
1518
|
+
});
|
|
1519
|
+
});
|
|
1520
|
+
Object.keys(errors).forEach(function (k) {
|
|
1521
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1522
|
+
enumerable: true,
|
|
1523
|
+
get: function () { return errors[k]; }
|
|
1524
|
+
});
|
|
1525
|
+
});
|