@aws-sdk/client-greengrass 3.721.0 → 3.723.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 +417 -296
- package/dist-es/GreengrassClient.js +1 -0
- package/dist-es/models/models_0.js +8 -4
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -232,7 +232,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
232
232
|
}, "resolveRuntimeExtensions");
|
|
233
233
|
|
|
234
234
|
// src/GreengrassClient.ts
|
|
235
|
-
var
|
|
235
|
+
var GreengrassClient = class extends import_smithy_client.Client {
|
|
236
|
+
static {
|
|
237
|
+
__name(this, "GreengrassClient");
|
|
238
|
+
}
|
|
239
|
+
/**
|
|
240
|
+
* The resolved configuration of GreengrassClient class. This is resolved and normalized from the {@link GreengrassClientConfig | constructor configuration interface}.
|
|
241
|
+
*/
|
|
242
|
+
config;
|
|
236
243
|
constructor(...[configuration]) {
|
|
237
244
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
238
245
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -242,7 +249,7 @@ var _GreengrassClient = class _GreengrassClient extends import_smithy_client.Cli
|
|
|
242
249
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
243
250
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
244
251
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
245
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
252
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
246
253
|
super(_config_8);
|
|
247
254
|
this.config = _config_8;
|
|
248
255
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -270,8 +277,6 @@ var _GreengrassClient = class _GreengrassClient extends import_smithy_client.Cli
|
|
|
270
277
|
super.destroy();
|
|
271
278
|
}
|
|
272
279
|
};
|
|
273
|
-
__name(_GreengrassClient, "GreengrassClient");
|
|
274
|
-
var GreengrassClient = _GreengrassClient;
|
|
275
280
|
|
|
276
281
|
// src/Greengrass.ts
|
|
277
282
|
|
|
@@ -288,7 +293,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
288
293
|
|
|
289
294
|
// src/models/GreengrassServiceException.ts
|
|
290
295
|
|
|
291
|
-
var
|
|
296
|
+
var GreengrassServiceException = class _GreengrassServiceException extends import_smithy_client.ServiceException {
|
|
297
|
+
static {
|
|
298
|
+
__name(this, "GreengrassServiceException");
|
|
299
|
+
}
|
|
292
300
|
/**
|
|
293
301
|
* @internal
|
|
294
302
|
*/
|
|
@@ -297,8 +305,6 @@ var _GreengrassServiceException = class _GreengrassServiceException extends impo
|
|
|
297
305
|
Object.setPrototypeOf(this, _GreengrassServiceException.prototype);
|
|
298
306
|
}
|
|
299
307
|
};
|
|
300
|
-
__name(_GreengrassServiceException, "GreengrassServiceException");
|
|
301
|
-
var GreengrassServiceException = _GreengrassServiceException;
|
|
302
308
|
|
|
303
309
|
// src/models/models_0.ts
|
|
304
310
|
var EncodingType = {
|
|
@@ -328,7 +334,22 @@ var LoggerType = {
|
|
|
328
334
|
AWSCloudWatch: "AWSCloudWatch",
|
|
329
335
|
FileSystem: "FileSystem"
|
|
330
336
|
};
|
|
331
|
-
var
|
|
337
|
+
var BadRequestException = class _BadRequestException extends GreengrassServiceException {
|
|
338
|
+
static {
|
|
339
|
+
__name(this, "BadRequestException");
|
|
340
|
+
}
|
|
341
|
+
name = "BadRequestException";
|
|
342
|
+
$fault = "client";
|
|
343
|
+
/**
|
|
344
|
+
* Details about the error.
|
|
345
|
+
* @public
|
|
346
|
+
*/
|
|
347
|
+
ErrorDetails;
|
|
348
|
+
/**
|
|
349
|
+
* A message containing information about the error.
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
Message;
|
|
332
353
|
/**
|
|
333
354
|
* @internal
|
|
334
355
|
*/
|
|
@@ -338,16 +359,27 @@ var _BadRequestException = class _BadRequestException extends GreengrassServiceE
|
|
|
338
359
|
$fault: "client",
|
|
339
360
|
...opts
|
|
340
361
|
});
|
|
341
|
-
this.name = "BadRequestException";
|
|
342
|
-
this.$fault = "client";
|
|
343
362
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
344
363
|
this.ErrorDetails = opts.ErrorDetails;
|
|
345
364
|
this.Message = opts.Message;
|
|
346
365
|
}
|
|
347
366
|
};
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
367
|
+
var InternalServerErrorException = class _InternalServerErrorException extends GreengrassServiceException {
|
|
368
|
+
static {
|
|
369
|
+
__name(this, "InternalServerErrorException");
|
|
370
|
+
}
|
|
371
|
+
name = "InternalServerErrorException";
|
|
372
|
+
$fault = "server";
|
|
373
|
+
/**
|
|
374
|
+
* Details about the error.
|
|
375
|
+
* @public
|
|
376
|
+
*/
|
|
377
|
+
ErrorDetails;
|
|
378
|
+
/**
|
|
379
|
+
* A message containing information about the error.
|
|
380
|
+
* @public
|
|
381
|
+
*/
|
|
382
|
+
Message;
|
|
351
383
|
/**
|
|
352
384
|
* @internal
|
|
353
385
|
*/
|
|
@@ -357,15 +389,11 @@ var _InternalServerErrorException = class _InternalServerErrorException extends
|
|
|
357
389
|
$fault: "server",
|
|
358
390
|
...opts
|
|
359
391
|
});
|
|
360
|
-
this.name = "InternalServerErrorException";
|
|
361
|
-
this.$fault = "server";
|
|
362
392
|
Object.setPrototypeOf(this, _InternalServerErrorException.prototype);
|
|
363
393
|
this.ErrorDetails = opts.ErrorDetails;
|
|
364
394
|
this.Message = opts.Message;
|
|
365
395
|
}
|
|
366
396
|
};
|
|
367
|
-
__name(_InternalServerErrorException, "InternalServerErrorException");
|
|
368
|
-
var InternalServerErrorException = _InternalServerErrorException;
|
|
369
397
|
var DeploymentType = {
|
|
370
398
|
ForceResetDeployment: "ForceResetDeployment",
|
|
371
399
|
NewDeployment: "NewDeployment",
|
|
@@ -3127,1289 +3155,1381 @@ var _tK = "tagKeys";
|
|
|
3127
3155
|
var _xact = "x-amzn-client-token";
|
|
3128
3156
|
|
|
3129
3157
|
// src/commands/AssociateRoleToGroupCommand.ts
|
|
3130
|
-
var
|
|
3158
|
+
var AssociateRoleToGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3131
3159
|
return [
|
|
3132
3160
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3133
3161
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3134
3162
|
];
|
|
3135
3163
|
}).s("Greengrass", "AssociateRoleToGroup", {}).n("GreengrassClient", "AssociateRoleToGroupCommand").f(void 0, void 0).ser(se_AssociateRoleToGroupCommand).de(de_AssociateRoleToGroupCommand).build() {
|
|
3164
|
+
static {
|
|
3165
|
+
__name(this, "AssociateRoleToGroupCommand");
|
|
3166
|
+
}
|
|
3136
3167
|
};
|
|
3137
|
-
__name(_AssociateRoleToGroupCommand, "AssociateRoleToGroupCommand");
|
|
3138
|
-
var AssociateRoleToGroupCommand = _AssociateRoleToGroupCommand;
|
|
3139
3168
|
|
|
3140
3169
|
// src/commands/AssociateServiceRoleToAccountCommand.ts
|
|
3141
3170
|
|
|
3142
3171
|
|
|
3143
3172
|
|
|
3144
|
-
var
|
|
3173
|
+
var AssociateServiceRoleToAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3145
3174
|
return [
|
|
3146
3175
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3147
3176
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3148
3177
|
];
|
|
3149
3178
|
}).s("Greengrass", "AssociateServiceRoleToAccount", {}).n("GreengrassClient", "AssociateServiceRoleToAccountCommand").f(void 0, void 0).ser(se_AssociateServiceRoleToAccountCommand).de(de_AssociateServiceRoleToAccountCommand).build() {
|
|
3179
|
+
static {
|
|
3180
|
+
__name(this, "AssociateServiceRoleToAccountCommand");
|
|
3181
|
+
}
|
|
3150
3182
|
};
|
|
3151
|
-
__name(_AssociateServiceRoleToAccountCommand, "AssociateServiceRoleToAccountCommand");
|
|
3152
|
-
var AssociateServiceRoleToAccountCommand = _AssociateServiceRoleToAccountCommand;
|
|
3153
3183
|
|
|
3154
3184
|
// src/commands/CreateConnectorDefinitionCommand.ts
|
|
3155
3185
|
|
|
3156
3186
|
|
|
3157
3187
|
|
|
3158
|
-
var
|
|
3188
|
+
var CreateConnectorDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3159
3189
|
return [
|
|
3160
3190
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3161
3191
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3162
3192
|
];
|
|
3163
3193
|
}).s("Greengrass", "CreateConnectorDefinition", {}).n("GreengrassClient", "CreateConnectorDefinitionCommand").f(void 0, void 0).ser(se_CreateConnectorDefinitionCommand).de(de_CreateConnectorDefinitionCommand).build() {
|
|
3194
|
+
static {
|
|
3195
|
+
__name(this, "CreateConnectorDefinitionCommand");
|
|
3196
|
+
}
|
|
3164
3197
|
};
|
|
3165
|
-
__name(_CreateConnectorDefinitionCommand, "CreateConnectorDefinitionCommand");
|
|
3166
|
-
var CreateConnectorDefinitionCommand = _CreateConnectorDefinitionCommand;
|
|
3167
3198
|
|
|
3168
3199
|
// src/commands/CreateConnectorDefinitionVersionCommand.ts
|
|
3169
3200
|
|
|
3170
3201
|
|
|
3171
3202
|
|
|
3172
|
-
var
|
|
3203
|
+
var CreateConnectorDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3173
3204
|
return [
|
|
3174
3205
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3175
3206
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3176
3207
|
];
|
|
3177
3208
|
}).s("Greengrass", "CreateConnectorDefinitionVersion", {}).n("GreengrassClient", "CreateConnectorDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateConnectorDefinitionVersionCommand).de(de_CreateConnectorDefinitionVersionCommand).build() {
|
|
3209
|
+
static {
|
|
3210
|
+
__name(this, "CreateConnectorDefinitionVersionCommand");
|
|
3211
|
+
}
|
|
3178
3212
|
};
|
|
3179
|
-
__name(_CreateConnectorDefinitionVersionCommand, "CreateConnectorDefinitionVersionCommand");
|
|
3180
|
-
var CreateConnectorDefinitionVersionCommand = _CreateConnectorDefinitionVersionCommand;
|
|
3181
3213
|
|
|
3182
3214
|
// src/commands/CreateCoreDefinitionCommand.ts
|
|
3183
3215
|
|
|
3184
3216
|
|
|
3185
3217
|
|
|
3186
|
-
var
|
|
3218
|
+
var CreateCoreDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3187
3219
|
return [
|
|
3188
3220
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3189
3221
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3190
3222
|
];
|
|
3191
3223
|
}).s("Greengrass", "CreateCoreDefinition", {}).n("GreengrassClient", "CreateCoreDefinitionCommand").f(void 0, void 0).ser(se_CreateCoreDefinitionCommand).de(de_CreateCoreDefinitionCommand).build() {
|
|
3224
|
+
static {
|
|
3225
|
+
__name(this, "CreateCoreDefinitionCommand");
|
|
3226
|
+
}
|
|
3192
3227
|
};
|
|
3193
|
-
__name(_CreateCoreDefinitionCommand, "CreateCoreDefinitionCommand");
|
|
3194
|
-
var CreateCoreDefinitionCommand = _CreateCoreDefinitionCommand;
|
|
3195
3228
|
|
|
3196
3229
|
// src/commands/CreateCoreDefinitionVersionCommand.ts
|
|
3197
3230
|
|
|
3198
3231
|
|
|
3199
3232
|
|
|
3200
|
-
var
|
|
3233
|
+
var CreateCoreDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3201
3234
|
return [
|
|
3202
3235
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3203
3236
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3204
3237
|
];
|
|
3205
3238
|
}).s("Greengrass", "CreateCoreDefinitionVersion", {}).n("GreengrassClient", "CreateCoreDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateCoreDefinitionVersionCommand).de(de_CreateCoreDefinitionVersionCommand).build() {
|
|
3239
|
+
static {
|
|
3240
|
+
__name(this, "CreateCoreDefinitionVersionCommand");
|
|
3241
|
+
}
|
|
3206
3242
|
};
|
|
3207
|
-
__name(_CreateCoreDefinitionVersionCommand, "CreateCoreDefinitionVersionCommand");
|
|
3208
|
-
var CreateCoreDefinitionVersionCommand = _CreateCoreDefinitionVersionCommand;
|
|
3209
3243
|
|
|
3210
3244
|
// src/commands/CreateDeploymentCommand.ts
|
|
3211
3245
|
|
|
3212
3246
|
|
|
3213
3247
|
|
|
3214
|
-
var
|
|
3248
|
+
var CreateDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3215
3249
|
return [
|
|
3216
3250
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3217
3251
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3218
3252
|
];
|
|
3219
3253
|
}).s("Greengrass", "CreateDeployment", {}).n("GreengrassClient", "CreateDeploymentCommand").f(void 0, void 0).ser(se_CreateDeploymentCommand).de(de_CreateDeploymentCommand).build() {
|
|
3254
|
+
static {
|
|
3255
|
+
__name(this, "CreateDeploymentCommand");
|
|
3256
|
+
}
|
|
3220
3257
|
};
|
|
3221
|
-
__name(_CreateDeploymentCommand, "CreateDeploymentCommand");
|
|
3222
|
-
var CreateDeploymentCommand = _CreateDeploymentCommand;
|
|
3223
3258
|
|
|
3224
3259
|
// src/commands/CreateDeviceDefinitionCommand.ts
|
|
3225
3260
|
|
|
3226
3261
|
|
|
3227
3262
|
|
|
3228
|
-
var
|
|
3263
|
+
var CreateDeviceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3229
3264
|
return [
|
|
3230
3265
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3231
3266
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3232
3267
|
];
|
|
3233
3268
|
}).s("Greengrass", "CreateDeviceDefinition", {}).n("GreengrassClient", "CreateDeviceDefinitionCommand").f(void 0, void 0).ser(se_CreateDeviceDefinitionCommand).de(de_CreateDeviceDefinitionCommand).build() {
|
|
3269
|
+
static {
|
|
3270
|
+
__name(this, "CreateDeviceDefinitionCommand");
|
|
3271
|
+
}
|
|
3234
3272
|
};
|
|
3235
|
-
__name(_CreateDeviceDefinitionCommand, "CreateDeviceDefinitionCommand");
|
|
3236
|
-
var CreateDeviceDefinitionCommand = _CreateDeviceDefinitionCommand;
|
|
3237
3273
|
|
|
3238
3274
|
// src/commands/CreateDeviceDefinitionVersionCommand.ts
|
|
3239
3275
|
|
|
3240
3276
|
|
|
3241
3277
|
|
|
3242
|
-
var
|
|
3278
|
+
var CreateDeviceDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3243
3279
|
return [
|
|
3244
3280
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3245
3281
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3246
3282
|
];
|
|
3247
3283
|
}).s("Greengrass", "CreateDeviceDefinitionVersion", {}).n("GreengrassClient", "CreateDeviceDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateDeviceDefinitionVersionCommand).de(de_CreateDeviceDefinitionVersionCommand).build() {
|
|
3284
|
+
static {
|
|
3285
|
+
__name(this, "CreateDeviceDefinitionVersionCommand");
|
|
3286
|
+
}
|
|
3248
3287
|
};
|
|
3249
|
-
__name(_CreateDeviceDefinitionVersionCommand, "CreateDeviceDefinitionVersionCommand");
|
|
3250
|
-
var CreateDeviceDefinitionVersionCommand = _CreateDeviceDefinitionVersionCommand;
|
|
3251
3288
|
|
|
3252
3289
|
// src/commands/CreateFunctionDefinitionCommand.ts
|
|
3253
3290
|
|
|
3254
3291
|
|
|
3255
3292
|
|
|
3256
|
-
var
|
|
3293
|
+
var CreateFunctionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3257
3294
|
return [
|
|
3258
3295
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3259
3296
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3260
3297
|
];
|
|
3261
3298
|
}).s("Greengrass", "CreateFunctionDefinition", {}).n("GreengrassClient", "CreateFunctionDefinitionCommand").f(void 0, void 0).ser(se_CreateFunctionDefinitionCommand).de(de_CreateFunctionDefinitionCommand).build() {
|
|
3299
|
+
static {
|
|
3300
|
+
__name(this, "CreateFunctionDefinitionCommand");
|
|
3301
|
+
}
|
|
3262
3302
|
};
|
|
3263
|
-
__name(_CreateFunctionDefinitionCommand, "CreateFunctionDefinitionCommand");
|
|
3264
|
-
var CreateFunctionDefinitionCommand = _CreateFunctionDefinitionCommand;
|
|
3265
3303
|
|
|
3266
3304
|
// src/commands/CreateFunctionDefinitionVersionCommand.ts
|
|
3267
3305
|
|
|
3268
3306
|
|
|
3269
3307
|
|
|
3270
|
-
var
|
|
3308
|
+
var CreateFunctionDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3271
3309
|
return [
|
|
3272
3310
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3273
3311
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3274
3312
|
];
|
|
3275
3313
|
}).s("Greengrass", "CreateFunctionDefinitionVersion", {}).n("GreengrassClient", "CreateFunctionDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateFunctionDefinitionVersionCommand).de(de_CreateFunctionDefinitionVersionCommand).build() {
|
|
3314
|
+
static {
|
|
3315
|
+
__name(this, "CreateFunctionDefinitionVersionCommand");
|
|
3316
|
+
}
|
|
3276
3317
|
};
|
|
3277
|
-
__name(_CreateFunctionDefinitionVersionCommand, "CreateFunctionDefinitionVersionCommand");
|
|
3278
|
-
var CreateFunctionDefinitionVersionCommand = _CreateFunctionDefinitionVersionCommand;
|
|
3279
3318
|
|
|
3280
3319
|
// src/commands/CreateGroupCertificateAuthorityCommand.ts
|
|
3281
3320
|
|
|
3282
3321
|
|
|
3283
3322
|
|
|
3284
|
-
var
|
|
3323
|
+
var CreateGroupCertificateAuthorityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3285
3324
|
return [
|
|
3286
3325
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3287
3326
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3288
3327
|
];
|
|
3289
3328
|
}).s("Greengrass", "CreateGroupCertificateAuthority", {}).n("GreengrassClient", "CreateGroupCertificateAuthorityCommand").f(void 0, void 0).ser(se_CreateGroupCertificateAuthorityCommand).de(de_CreateGroupCertificateAuthorityCommand).build() {
|
|
3329
|
+
static {
|
|
3330
|
+
__name(this, "CreateGroupCertificateAuthorityCommand");
|
|
3331
|
+
}
|
|
3290
3332
|
};
|
|
3291
|
-
__name(_CreateGroupCertificateAuthorityCommand, "CreateGroupCertificateAuthorityCommand");
|
|
3292
|
-
var CreateGroupCertificateAuthorityCommand = _CreateGroupCertificateAuthorityCommand;
|
|
3293
3333
|
|
|
3294
3334
|
// src/commands/CreateGroupCommand.ts
|
|
3295
3335
|
|
|
3296
3336
|
|
|
3297
3337
|
|
|
3298
|
-
var
|
|
3338
|
+
var CreateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3299
3339
|
return [
|
|
3300
3340
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3301
3341
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3302
3342
|
];
|
|
3303
3343
|
}).s("Greengrass", "CreateGroup", {}).n("GreengrassClient", "CreateGroupCommand").f(void 0, void 0).ser(se_CreateGroupCommand).de(de_CreateGroupCommand).build() {
|
|
3344
|
+
static {
|
|
3345
|
+
__name(this, "CreateGroupCommand");
|
|
3346
|
+
}
|
|
3304
3347
|
};
|
|
3305
|
-
__name(_CreateGroupCommand, "CreateGroupCommand");
|
|
3306
|
-
var CreateGroupCommand = _CreateGroupCommand;
|
|
3307
3348
|
|
|
3308
3349
|
// src/commands/CreateGroupVersionCommand.ts
|
|
3309
3350
|
|
|
3310
3351
|
|
|
3311
3352
|
|
|
3312
|
-
var
|
|
3353
|
+
var CreateGroupVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3313
3354
|
return [
|
|
3314
3355
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3315
3356
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3316
3357
|
];
|
|
3317
3358
|
}).s("Greengrass", "CreateGroupVersion", {}).n("GreengrassClient", "CreateGroupVersionCommand").f(void 0, void 0).ser(se_CreateGroupVersionCommand).de(de_CreateGroupVersionCommand).build() {
|
|
3359
|
+
static {
|
|
3360
|
+
__name(this, "CreateGroupVersionCommand");
|
|
3361
|
+
}
|
|
3318
3362
|
};
|
|
3319
|
-
__name(_CreateGroupVersionCommand, "CreateGroupVersionCommand");
|
|
3320
|
-
var CreateGroupVersionCommand = _CreateGroupVersionCommand;
|
|
3321
3363
|
|
|
3322
3364
|
// src/commands/CreateLoggerDefinitionCommand.ts
|
|
3323
3365
|
|
|
3324
3366
|
|
|
3325
3367
|
|
|
3326
|
-
var
|
|
3368
|
+
var CreateLoggerDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3327
3369
|
return [
|
|
3328
3370
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3329
3371
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3330
3372
|
];
|
|
3331
3373
|
}).s("Greengrass", "CreateLoggerDefinition", {}).n("GreengrassClient", "CreateLoggerDefinitionCommand").f(void 0, void 0).ser(se_CreateLoggerDefinitionCommand).de(de_CreateLoggerDefinitionCommand).build() {
|
|
3374
|
+
static {
|
|
3375
|
+
__name(this, "CreateLoggerDefinitionCommand");
|
|
3376
|
+
}
|
|
3332
3377
|
};
|
|
3333
|
-
__name(_CreateLoggerDefinitionCommand, "CreateLoggerDefinitionCommand");
|
|
3334
|
-
var CreateLoggerDefinitionCommand = _CreateLoggerDefinitionCommand;
|
|
3335
3378
|
|
|
3336
3379
|
// src/commands/CreateLoggerDefinitionVersionCommand.ts
|
|
3337
3380
|
|
|
3338
3381
|
|
|
3339
3382
|
|
|
3340
|
-
var
|
|
3383
|
+
var CreateLoggerDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3341
3384
|
return [
|
|
3342
3385
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3343
3386
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3344
3387
|
];
|
|
3345
3388
|
}).s("Greengrass", "CreateLoggerDefinitionVersion", {}).n("GreengrassClient", "CreateLoggerDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateLoggerDefinitionVersionCommand).de(de_CreateLoggerDefinitionVersionCommand).build() {
|
|
3389
|
+
static {
|
|
3390
|
+
__name(this, "CreateLoggerDefinitionVersionCommand");
|
|
3391
|
+
}
|
|
3346
3392
|
};
|
|
3347
|
-
__name(_CreateLoggerDefinitionVersionCommand, "CreateLoggerDefinitionVersionCommand");
|
|
3348
|
-
var CreateLoggerDefinitionVersionCommand = _CreateLoggerDefinitionVersionCommand;
|
|
3349
3393
|
|
|
3350
3394
|
// src/commands/CreateResourceDefinitionCommand.ts
|
|
3351
3395
|
|
|
3352
3396
|
|
|
3353
3397
|
|
|
3354
|
-
var
|
|
3398
|
+
var CreateResourceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3355
3399
|
return [
|
|
3356
3400
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3357
3401
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3358
3402
|
];
|
|
3359
3403
|
}).s("Greengrass", "CreateResourceDefinition", {}).n("GreengrassClient", "CreateResourceDefinitionCommand").f(void 0, void 0).ser(se_CreateResourceDefinitionCommand).de(de_CreateResourceDefinitionCommand).build() {
|
|
3404
|
+
static {
|
|
3405
|
+
__name(this, "CreateResourceDefinitionCommand");
|
|
3406
|
+
}
|
|
3360
3407
|
};
|
|
3361
|
-
__name(_CreateResourceDefinitionCommand, "CreateResourceDefinitionCommand");
|
|
3362
|
-
var CreateResourceDefinitionCommand = _CreateResourceDefinitionCommand;
|
|
3363
3408
|
|
|
3364
3409
|
// src/commands/CreateResourceDefinitionVersionCommand.ts
|
|
3365
3410
|
|
|
3366
3411
|
|
|
3367
3412
|
|
|
3368
|
-
var
|
|
3413
|
+
var CreateResourceDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3369
3414
|
return [
|
|
3370
3415
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3371
3416
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3372
3417
|
];
|
|
3373
3418
|
}).s("Greengrass", "CreateResourceDefinitionVersion", {}).n("GreengrassClient", "CreateResourceDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateResourceDefinitionVersionCommand).de(de_CreateResourceDefinitionVersionCommand).build() {
|
|
3419
|
+
static {
|
|
3420
|
+
__name(this, "CreateResourceDefinitionVersionCommand");
|
|
3421
|
+
}
|
|
3374
3422
|
};
|
|
3375
|
-
__name(_CreateResourceDefinitionVersionCommand, "CreateResourceDefinitionVersionCommand");
|
|
3376
|
-
var CreateResourceDefinitionVersionCommand = _CreateResourceDefinitionVersionCommand;
|
|
3377
3423
|
|
|
3378
3424
|
// src/commands/CreateSoftwareUpdateJobCommand.ts
|
|
3379
3425
|
|
|
3380
3426
|
|
|
3381
3427
|
|
|
3382
|
-
var
|
|
3428
|
+
var CreateSoftwareUpdateJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3383
3429
|
return [
|
|
3384
3430
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3385
3431
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3386
3432
|
];
|
|
3387
3433
|
}).s("Greengrass", "CreateSoftwareUpdateJob", {}).n("GreengrassClient", "CreateSoftwareUpdateJobCommand").f(void 0, void 0).ser(se_CreateSoftwareUpdateJobCommand).de(de_CreateSoftwareUpdateJobCommand).build() {
|
|
3434
|
+
static {
|
|
3435
|
+
__name(this, "CreateSoftwareUpdateJobCommand");
|
|
3436
|
+
}
|
|
3388
3437
|
};
|
|
3389
|
-
__name(_CreateSoftwareUpdateJobCommand, "CreateSoftwareUpdateJobCommand");
|
|
3390
|
-
var CreateSoftwareUpdateJobCommand = _CreateSoftwareUpdateJobCommand;
|
|
3391
3438
|
|
|
3392
3439
|
// src/commands/CreateSubscriptionDefinitionCommand.ts
|
|
3393
3440
|
|
|
3394
3441
|
|
|
3395
3442
|
|
|
3396
|
-
var
|
|
3443
|
+
var CreateSubscriptionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3397
3444
|
return [
|
|
3398
3445
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3399
3446
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3400
3447
|
];
|
|
3401
3448
|
}).s("Greengrass", "CreateSubscriptionDefinition", {}).n("GreengrassClient", "CreateSubscriptionDefinitionCommand").f(void 0, void 0).ser(se_CreateSubscriptionDefinitionCommand).de(de_CreateSubscriptionDefinitionCommand).build() {
|
|
3449
|
+
static {
|
|
3450
|
+
__name(this, "CreateSubscriptionDefinitionCommand");
|
|
3451
|
+
}
|
|
3402
3452
|
};
|
|
3403
|
-
__name(_CreateSubscriptionDefinitionCommand, "CreateSubscriptionDefinitionCommand");
|
|
3404
|
-
var CreateSubscriptionDefinitionCommand = _CreateSubscriptionDefinitionCommand;
|
|
3405
3453
|
|
|
3406
3454
|
// src/commands/CreateSubscriptionDefinitionVersionCommand.ts
|
|
3407
3455
|
|
|
3408
3456
|
|
|
3409
3457
|
|
|
3410
|
-
var
|
|
3458
|
+
var CreateSubscriptionDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3411
3459
|
return [
|
|
3412
3460
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3413
3461
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3414
3462
|
];
|
|
3415
3463
|
}).s("Greengrass", "CreateSubscriptionDefinitionVersion", {}).n("GreengrassClient", "CreateSubscriptionDefinitionVersionCommand").f(void 0, void 0).ser(se_CreateSubscriptionDefinitionVersionCommand).de(de_CreateSubscriptionDefinitionVersionCommand).build() {
|
|
3464
|
+
static {
|
|
3465
|
+
__name(this, "CreateSubscriptionDefinitionVersionCommand");
|
|
3466
|
+
}
|
|
3416
3467
|
};
|
|
3417
|
-
__name(_CreateSubscriptionDefinitionVersionCommand, "CreateSubscriptionDefinitionVersionCommand");
|
|
3418
|
-
var CreateSubscriptionDefinitionVersionCommand = _CreateSubscriptionDefinitionVersionCommand;
|
|
3419
3468
|
|
|
3420
3469
|
// src/commands/DeleteConnectorDefinitionCommand.ts
|
|
3421
3470
|
|
|
3422
3471
|
|
|
3423
3472
|
|
|
3424
|
-
var
|
|
3473
|
+
var DeleteConnectorDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3425
3474
|
return [
|
|
3426
3475
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3427
3476
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3428
3477
|
];
|
|
3429
3478
|
}).s("Greengrass", "DeleteConnectorDefinition", {}).n("GreengrassClient", "DeleteConnectorDefinitionCommand").f(void 0, void 0).ser(se_DeleteConnectorDefinitionCommand).de(de_DeleteConnectorDefinitionCommand).build() {
|
|
3479
|
+
static {
|
|
3480
|
+
__name(this, "DeleteConnectorDefinitionCommand");
|
|
3481
|
+
}
|
|
3430
3482
|
};
|
|
3431
|
-
__name(_DeleteConnectorDefinitionCommand, "DeleteConnectorDefinitionCommand");
|
|
3432
|
-
var DeleteConnectorDefinitionCommand = _DeleteConnectorDefinitionCommand;
|
|
3433
3483
|
|
|
3434
3484
|
// src/commands/DeleteCoreDefinitionCommand.ts
|
|
3435
3485
|
|
|
3436
3486
|
|
|
3437
3487
|
|
|
3438
|
-
var
|
|
3488
|
+
var DeleteCoreDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3439
3489
|
return [
|
|
3440
3490
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3441
3491
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3442
3492
|
];
|
|
3443
3493
|
}).s("Greengrass", "DeleteCoreDefinition", {}).n("GreengrassClient", "DeleteCoreDefinitionCommand").f(void 0, void 0).ser(se_DeleteCoreDefinitionCommand).de(de_DeleteCoreDefinitionCommand).build() {
|
|
3494
|
+
static {
|
|
3495
|
+
__name(this, "DeleteCoreDefinitionCommand");
|
|
3496
|
+
}
|
|
3444
3497
|
};
|
|
3445
|
-
__name(_DeleteCoreDefinitionCommand, "DeleteCoreDefinitionCommand");
|
|
3446
|
-
var DeleteCoreDefinitionCommand = _DeleteCoreDefinitionCommand;
|
|
3447
3498
|
|
|
3448
3499
|
// src/commands/DeleteDeviceDefinitionCommand.ts
|
|
3449
3500
|
|
|
3450
3501
|
|
|
3451
3502
|
|
|
3452
|
-
var
|
|
3503
|
+
var DeleteDeviceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3453
3504
|
return [
|
|
3454
3505
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3455
3506
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3456
3507
|
];
|
|
3457
3508
|
}).s("Greengrass", "DeleteDeviceDefinition", {}).n("GreengrassClient", "DeleteDeviceDefinitionCommand").f(void 0, void 0).ser(se_DeleteDeviceDefinitionCommand).de(de_DeleteDeviceDefinitionCommand).build() {
|
|
3509
|
+
static {
|
|
3510
|
+
__name(this, "DeleteDeviceDefinitionCommand");
|
|
3511
|
+
}
|
|
3458
3512
|
};
|
|
3459
|
-
__name(_DeleteDeviceDefinitionCommand, "DeleteDeviceDefinitionCommand");
|
|
3460
|
-
var DeleteDeviceDefinitionCommand = _DeleteDeviceDefinitionCommand;
|
|
3461
3513
|
|
|
3462
3514
|
// src/commands/DeleteFunctionDefinitionCommand.ts
|
|
3463
3515
|
|
|
3464
3516
|
|
|
3465
3517
|
|
|
3466
|
-
var
|
|
3518
|
+
var DeleteFunctionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3467
3519
|
return [
|
|
3468
3520
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3469
3521
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3470
3522
|
];
|
|
3471
3523
|
}).s("Greengrass", "DeleteFunctionDefinition", {}).n("GreengrassClient", "DeleteFunctionDefinitionCommand").f(void 0, void 0).ser(se_DeleteFunctionDefinitionCommand).de(de_DeleteFunctionDefinitionCommand).build() {
|
|
3524
|
+
static {
|
|
3525
|
+
__name(this, "DeleteFunctionDefinitionCommand");
|
|
3526
|
+
}
|
|
3472
3527
|
};
|
|
3473
|
-
__name(_DeleteFunctionDefinitionCommand, "DeleteFunctionDefinitionCommand");
|
|
3474
|
-
var DeleteFunctionDefinitionCommand = _DeleteFunctionDefinitionCommand;
|
|
3475
3528
|
|
|
3476
3529
|
// src/commands/DeleteGroupCommand.ts
|
|
3477
3530
|
|
|
3478
3531
|
|
|
3479
3532
|
|
|
3480
|
-
var
|
|
3533
|
+
var DeleteGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3481
3534
|
return [
|
|
3482
3535
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3483
3536
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3484
3537
|
];
|
|
3485
3538
|
}).s("Greengrass", "DeleteGroup", {}).n("GreengrassClient", "DeleteGroupCommand").f(void 0, void 0).ser(se_DeleteGroupCommand).de(de_DeleteGroupCommand).build() {
|
|
3539
|
+
static {
|
|
3540
|
+
__name(this, "DeleteGroupCommand");
|
|
3541
|
+
}
|
|
3486
3542
|
};
|
|
3487
|
-
__name(_DeleteGroupCommand, "DeleteGroupCommand");
|
|
3488
|
-
var DeleteGroupCommand = _DeleteGroupCommand;
|
|
3489
3543
|
|
|
3490
3544
|
// src/commands/DeleteLoggerDefinitionCommand.ts
|
|
3491
3545
|
|
|
3492
3546
|
|
|
3493
3547
|
|
|
3494
|
-
var
|
|
3548
|
+
var DeleteLoggerDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3495
3549
|
return [
|
|
3496
3550
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3497
3551
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3498
3552
|
];
|
|
3499
3553
|
}).s("Greengrass", "DeleteLoggerDefinition", {}).n("GreengrassClient", "DeleteLoggerDefinitionCommand").f(void 0, void 0).ser(se_DeleteLoggerDefinitionCommand).de(de_DeleteLoggerDefinitionCommand).build() {
|
|
3554
|
+
static {
|
|
3555
|
+
__name(this, "DeleteLoggerDefinitionCommand");
|
|
3556
|
+
}
|
|
3500
3557
|
};
|
|
3501
|
-
__name(_DeleteLoggerDefinitionCommand, "DeleteLoggerDefinitionCommand");
|
|
3502
|
-
var DeleteLoggerDefinitionCommand = _DeleteLoggerDefinitionCommand;
|
|
3503
3558
|
|
|
3504
3559
|
// src/commands/DeleteResourceDefinitionCommand.ts
|
|
3505
3560
|
|
|
3506
3561
|
|
|
3507
3562
|
|
|
3508
|
-
var
|
|
3563
|
+
var DeleteResourceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3509
3564
|
return [
|
|
3510
3565
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3511
3566
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3512
3567
|
];
|
|
3513
3568
|
}).s("Greengrass", "DeleteResourceDefinition", {}).n("GreengrassClient", "DeleteResourceDefinitionCommand").f(void 0, void 0).ser(se_DeleteResourceDefinitionCommand).de(de_DeleteResourceDefinitionCommand).build() {
|
|
3569
|
+
static {
|
|
3570
|
+
__name(this, "DeleteResourceDefinitionCommand");
|
|
3571
|
+
}
|
|
3514
3572
|
};
|
|
3515
|
-
__name(_DeleteResourceDefinitionCommand, "DeleteResourceDefinitionCommand");
|
|
3516
|
-
var DeleteResourceDefinitionCommand = _DeleteResourceDefinitionCommand;
|
|
3517
3573
|
|
|
3518
3574
|
// src/commands/DeleteSubscriptionDefinitionCommand.ts
|
|
3519
3575
|
|
|
3520
3576
|
|
|
3521
3577
|
|
|
3522
|
-
var
|
|
3578
|
+
var DeleteSubscriptionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3523
3579
|
return [
|
|
3524
3580
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3525
3581
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3526
3582
|
];
|
|
3527
3583
|
}).s("Greengrass", "DeleteSubscriptionDefinition", {}).n("GreengrassClient", "DeleteSubscriptionDefinitionCommand").f(void 0, void 0).ser(se_DeleteSubscriptionDefinitionCommand).de(de_DeleteSubscriptionDefinitionCommand).build() {
|
|
3584
|
+
static {
|
|
3585
|
+
__name(this, "DeleteSubscriptionDefinitionCommand");
|
|
3586
|
+
}
|
|
3528
3587
|
};
|
|
3529
|
-
__name(_DeleteSubscriptionDefinitionCommand, "DeleteSubscriptionDefinitionCommand");
|
|
3530
|
-
var DeleteSubscriptionDefinitionCommand = _DeleteSubscriptionDefinitionCommand;
|
|
3531
3588
|
|
|
3532
3589
|
// src/commands/DisassociateRoleFromGroupCommand.ts
|
|
3533
3590
|
|
|
3534
3591
|
|
|
3535
3592
|
|
|
3536
|
-
var
|
|
3593
|
+
var DisassociateRoleFromGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3537
3594
|
return [
|
|
3538
3595
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3539
3596
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3540
3597
|
];
|
|
3541
3598
|
}).s("Greengrass", "DisassociateRoleFromGroup", {}).n("GreengrassClient", "DisassociateRoleFromGroupCommand").f(void 0, void 0).ser(se_DisassociateRoleFromGroupCommand).de(de_DisassociateRoleFromGroupCommand).build() {
|
|
3599
|
+
static {
|
|
3600
|
+
__name(this, "DisassociateRoleFromGroupCommand");
|
|
3601
|
+
}
|
|
3542
3602
|
};
|
|
3543
|
-
__name(_DisassociateRoleFromGroupCommand, "DisassociateRoleFromGroupCommand");
|
|
3544
|
-
var DisassociateRoleFromGroupCommand = _DisassociateRoleFromGroupCommand;
|
|
3545
3603
|
|
|
3546
3604
|
// src/commands/DisassociateServiceRoleFromAccountCommand.ts
|
|
3547
3605
|
|
|
3548
3606
|
|
|
3549
3607
|
|
|
3550
|
-
var
|
|
3608
|
+
var DisassociateServiceRoleFromAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3551
3609
|
return [
|
|
3552
3610
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3553
3611
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3554
3612
|
];
|
|
3555
3613
|
}).s("Greengrass", "DisassociateServiceRoleFromAccount", {}).n("GreengrassClient", "DisassociateServiceRoleFromAccountCommand").f(void 0, void 0).ser(se_DisassociateServiceRoleFromAccountCommand).de(de_DisassociateServiceRoleFromAccountCommand).build() {
|
|
3614
|
+
static {
|
|
3615
|
+
__name(this, "DisassociateServiceRoleFromAccountCommand");
|
|
3616
|
+
}
|
|
3556
3617
|
};
|
|
3557
|
-
__name(_DisassociateServiceRoleFromAccountCommand, "DisassociateServiceRoleFromAccountCommand");
|
|
3558
|
-
var DisassociateServiceRoleFromAccountCommand = _DisassociateServiceRoleFromAccountCommand;
|
|
3559
3618
|
|
|
3560
3619
|
// src/commands/GetAssociatedRoleCommand.ts
|
|
3561
3620
|
|
|
3562
3621
|
|
|
3563
3622
|
|
|
3564
|
-
var
|
|
3623
|
+
var GetAssociatedRoleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3565
3624
|
return [
|
|
3566
3625
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3567
3626
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3568
3627
|
];
|
|
3569
3628
|
}).s("Greengrass", "GetAssociatedRole", {}).n("GreengrassClient", "GetAssociatedRoleCommand").f(void 0, void 0).ser(se_GetAssociatedRoleCommand).de(de_GetAssociatedRoleCommand).build() {
|
|
3629
|
+
static {
|
|
3630
|
+
__name(this, "GetAssociatedRoleCommand");
|
|
3631
|
+
}
|
|
3570
3632
|
};
|
|
3571
|
-
__name(_GetAssociatedRoleCommand, "GetAssociatedRoleCommand");
|
|
3572
|
-
var GetAssociatedRoleCommand = _GetAssociatedRoleCommand;
|
|
3573
3633
|
|
|
3574
3634
|
// src/commands/GetBulkDeploymentStatusCommand.ts
|
|
3575
3635
|
|
|
3576
3636
|
|
|
3577
3637
|
|
|
3578
|
-
var
|
|
3638
|
+
var GetBulkDeploymentStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3579
3639
|
return [
|
|
3580
3640
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3581
3641
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3582
3642
|
];
|
|
3583
3643
|
}).s("Greengrass", "GetBulkDeploymentStatus", {}).n("GreengrassClient", "GetBulkDeploymentStatusCommand").f(void 0, void 0).ser(se_GetBulkDeploymentStatusCommand).de(de_GetBulkDeploymentStatusCommand).build() {
|
|
3644
|
+
static {
|
|
3645
|
+
__name(this, "GetBulkDeploymentStatusCommand");
|
|
3646
|
+
}
|
|
3584
3647
|
};
|
|
3585
|
-
__name(_GetBulkDeploymentStatusCommand, "GetBulkDeploymentStatusCommand");
|
|
3586
|
-
var GetBulkDeploymentStatusCommand = _GetBulkDeploymentStatusCommand;
|
|
3587
3648
|
|
|
3588
3649
|
// src/commands/GetConnectivityInfoCommand.ts
|
|
3589
3650
|
|
|
3590
3651
|
|
|
3591
3652
|
|
|
3592
|
-
var
|
|
3653
|
+
var GetConnectivityInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3593
3654
|
return [
|
|
3594
3655
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3595
3656
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3596
3657
|
];
|
|
3597
3658
|
}).s("Greengrass", "GetConnectivityInfo", {}).n("GreengrassClient", "GetConnectivityInfoCommand").f(void 0, void 0).ser(se_GetConnectivityInfoCommand).de(de_GetConnectivityInfoCommand).build() {
|
|
3659
|
+
static {
|
|
3660
|
+
__name(this, "GetConnectivityInfoCommand");
|
|
3661
|
+
}
|
|
3598
3662
|
};
|
|
3599
|
-
__name(_GetConnectivityInfoCommand, "GetConnectivityInfoCommand");
|
|
3600
|
-
var GetConnectivityInfoCommand = _GetConnectivityInfoCommand;
|
|
3601
3663
|
|
|
3602
3664
|
// src/commands/GetConnectorDefinitionCommand.ts
|
|
3603
3665
|
|
|
3604
3666
|
|
|
3605
3667
|
|
|
3606
|
-
var
|
|
3668
|
+
var GetConnectorDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3607
3669
|
return [
|
|
3608
3670
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3609
3671
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3610
3672
|
];
|
|
3611
3673
|
}).s("Greengrass", "GetConnectorDefinition", {}).n("GreengrassClient", "GetConnectorDefinitionCommand").f(void 0, void 0).ser(se_GetConnectorDefinitionCommand).de(de_GetConnectorDefinitionCommand).build() {
|
|
3674
|
+
static {
|
|
3675
|
+
__name(this, "GetConnectorDefinitionCommand");
|
|
3676
|
+
}
|
|
3612
3677
|
};
|
|
3613
|
-
__name(_GetConnectorDefinitionCommand, "GetConnectorDefinitionCommand");
|
|
3614
|
-
var GetConnectorDefinitionCommand = _GetConnectorDefinitionCommand;
|
|
3615
3678
|
|
|
3616
3679
|
// src/commands/GetConnectorDefinitionVersionCommand.ts
|
|
3617
3680
|
|
|
3618
3681
|
|
|
3619
3682
|
|
|
3620
|
-
var
|
|
3683
|
+
var GetConnectorDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3621
3684
|
return [
|
|
3622
3685
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3623
3686
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3624
3687
|
];
|
|
3625
3688
|
}).s("Greengrass", "GetConnectorDefinitionVersion", {}).n("GreengrassClient", "GetConnectorDefinitionVersionCommand").f(void 0, void 0).ser(se_GetConnectorDefinitionVersionCommand).de(de_GetConnectorDefinitionVersionCommand).build() {
|
|
3689
|
+
static {
|
|
3690
|
+
__name(this, "GetConnectorDefinitionVersionCommand");
|
|
3691
|
+
}
|
|
3626
3692
|
};
|
|
3627
|
-
__name(_GetConnectorDefinitionVersionCommand, "GetConnectorDefinitionVersionCommand");
|
|
3628
|
-
var GetConnectorDefinitionVersionCommand = _GetConnectorDefinitionVersionCommand;
|
|
3629
3693
|
|
|
3630
3694
|
// src/commands/GetCoreDefinitionCommand.ts
|
|
3631
3695
|
|
|
3632
3696
|
|
|
3633
3697
|
|
|
3634
|
-
var
|
|
3698
|
+
var GetCoreDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3635
3699
|
return [
|
|
3636
3700
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3637
3701
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3638
3702
|
];
|
|
3639
3703
|
}).s("Greengrass", "GetCoreDefinition", {}).n("GreengrassClient", "GetCoreDefinitionCommand").f(void 0, void 0).ser(se_GetCoreDefinitionCommand).de(de_GetCoreDefinitionCommand).build() {
|
|
3704
|
+
static {
|
|
3705
|
+
__name(this, "GetCoreDefinitionCommand");
|
|
3706
|
+
}
|
|
3640
3707
|
};
|
|
3641
|
-
__name(_GetCoreDefinitionCommand, "GetCoreDefinitionCommand");
|
|
3642
|
-
var GetCoreDefinitionCommand = _GetCoreDefinitionCommand;
|
|
3643
3708
|
|
|
3644
3709
|
// src/commands/GetCoreDefinitionVersionCommand.ts
|
|
3645
3710
|
|
|
3646
3711
|
|
|
3647
3712
|
|
|
3648
|
-
var
|
|
3713
|
+
var GetCoreDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3649
3714
|
return [
|
|
3650
3715
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3651
3716
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3652
3717
|
];
|
|
3653
3718
|
}).s("Greengrass", "GetCoreDefinitionVersion", {}).n("GreengrassClient", "GetCoreDefinitionVersionCommand").f(void 0, void 0).ser(se_GetCoreDefinitionVersionCommand).de(de_GetCoreDefinitionVersionCommand).build() {
|
|
3719
|
+
static {
|
|
3720
|
+
__name(this, "GetCoreDefinitionVersionCommand");
|
|
3721
|
+
}
|
|
3654
3722
|
};
|
|
3655
|
-
__name(_GetCoreDefinitionVersionCommand, "GetCoreDefinitionVersionCommand");
|
|
3656
|
-
var GetCoreDefinitionVersionCommand = _GetCoreDefinitionVersionCommand;
|
|
3657
3723
|
|
|
3658
3724
|
// src/commands/GetDeploymentStatusCommand.ts
|
|
3659
3725
|
|
|
3660
3726
|
|
|
3661
3727
|
|
|
3662
|
-
var
|
|
3728
|
+
var GetDeploymentStatusCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3663
3729
|
return [
|
|
3664
3730
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3665
3731
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3666
3732
|
];
|
|
3667
3733
|
}).s("Greengrass", "GetDeploymentStatus", {}).n("GreengrassClient", "GetDeploymentStatusCommand").f(void 0, void 0).ser(se_GetDeploymentStatusCommand).de(de_GetDeploymentStatusCommand).build() {
|
|
3734
|
+
static {
|
|
3735
|
+
__name(this, "GetDeploymentStatusCommand");
|
|
3736
|
+
}
|
|
3668
3737
|
};
|
|
3669
|
-
__name(_GetDeploymentStatusCommand, "GetDeploymentStatusCommand");
|
|
3670
|
-
var GetDeploymentStatusCommand = _GetDeploymentStatusCommand;
|
|
3671
3738
|
|
|
3672
3739
|
// src/commands/GetDeviceDefinitionCommand.ts
|
|
3673
3740
|
|
|
3674
3741
|
|
|
3675
3742
|
|
|
3676
|
-
var
|
|
3743
|
+
var GetDeviceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3677
3744
|
return [
|
|
3678
3745
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3679
3746
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3680
3747
|
];
|
|
3681
3748
|
}).s("Greengrass", "GetDeviceDefinition", {}).n("GreengrassClient", "GetDeviceDefinitionCommand").f(void 0, void 0).ser(se_GetDeviceDefinitionCommand).de(de_GetDeviceDefinitionCommand).build() {
|
|
3749
|
+
static {
|
|
3750
|
+
__name(this, "GetDeviceDefinitionCommand");
|
|
3751
|
+
}
|
|
3682
3752
|
};
|
|
3683
|
-
__name(_GetDeviceDefinitionCommand, "GetDeviceDefinitionCommand");
|
|
3684
|
-
var GetDeviceDefinitionCommand = _GetDeviceDefinitionCommand;
|
|
3685
3753
|
|
|
3686
3754
|
// src/commands/GetDeviceDefinitionVersionCommand.ts
|
|
3687
3755
|
|
|
3688
3756
|
|
|
3689
3757
|
|
|
3690
|
-
var
|
|
3758
|
+
var GetDeviceDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3691
3759
|
return [
|
|
3692
3760
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3693
3761
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3694
3762
|
];
|
|
3695
3763
|
}).s("Greengrass", "GetDeviceDefinitionVersion", {}).n("GreengrassClient", "GetDeviceDefinitionVersionCommand").f(void 0, void 0).ser(se_GetDeviceDefinitionVersionCommand).de(de_GetDeviceDefinitionVersionCommand).build() {
|
|
3764
|
+
static {
|
|
3765
|
+
__name(this, "GetDeviceDefinitionVersionCommand");
|
|
3766
|
+
}
|
|
3696
3767
|
};
|
|
3697
|
-
__name(_GetDeviceDefinitionVersionCommand, "GetDeviceDefinitionVersionCommand");
|
|
3698
|
-
var GetDeviceDefinitionVersionCommand = _GetDeviceDefinitionVersionCommand;
|
|
3699
3768
|
|
|
3700
3769
|
// src/commands/GetFunctionDefinitionCommand.ts
|
|
3701
3770
|
|
|
3702
3771
|
|
|
3703
3772
|
|
|
3704
|
-
var
|
|
3773
|
+
var GetFunctionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3705
3774
|
return [
|
|
3706
3775
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3707
3776
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3708
3777
|
];
|
|
3709
3778
|
}).s("Greengrass", "GetFunctionDefinition", {}).n("GreengrassClient", "GetFunctionDefinitionCommand").f(void 0, void 0).ser(se_GetFunctionDefinitionCommand).de(de_GetFunctionDefinitionCommand).build() {
|
|
3779
|
+
static {
|
|
3780
|
+
__name(this, "GetFunctionDefinitionCommand");
|
|
3781
|
+
}
|
|
3710
3782
|
};
|
|
3711
|
-
__name(_GetFunctionDefinitionCommand, "GetFunctionDefinitionCommand");
|
|
3712
|
-
var GetFunctionDefinitionCommand = _GetFunctionDefinitionCommand;
|
|
3713
3783
|
|
|
3714
3784
|
// src/commands/GetFunctionDefinitionVersionCommand.ts
|
|
3715
3785
|
|
|
3716
3786
|
|
|
3717
3787
|
|
|
3718
|
-
var
|
|
3788
|
+
var GetFunctionDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3719
3789
|
return [
|
|
3720
3790
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3721
3791
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3722
3792
|
];
|
|
3723
3793
|
}).s("Greengrass", "GetFunctionDefinitionVersion", {}).n("GreengrassClient", "GetFunctionDefinitionVersionCommand").f(void 0, void 0).ser(se_GetFunctionDefinitionVersionCommand).de(de_GetFunctionDefinitionVersionCommand).build() {
|
|
3794
|
+
static {
|
|
3795
|
+
__name(this, "GetFunctionDefinitionVersionCommand");
|
|
3796
|
+
}
|
|
3724
3797
|
};
|
|
3725
|
-
__name(_GetFunctionDefinitionVersionCommand, "GetFunctionDefinitionVersionCommand");
|
|
3726
|
-
var GetFunctionDefinitionVersionCommand = _GetFunctionDefinitionVersionCommand;
|
|
3727
3798
|
|
|
3728
3799
|
// src/commands/GetGroupCertificateAuthorityCommand.ts
|
|
3729
3800
|
|
|
3730
3801
|
|
|
3731
3802
|
|
|
3732
|
-
var
|
|
3803
|
+
var GetGroupCertificateAuthorityCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3733
3804
|
return [
|
|
3734
3805
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3735
3806
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3736
3807
|
];
|
|
3737
3808
|
}).s("Greengrass", "GetGroupCertificateAuthority", {}).n("GreengrassClient", "GetGroupCertificateAuthorityCommand").f(void 0, void 0).ser(se_GetGroupCertificateAuthorityCommand).de(de_GetGroupCertificateAuthorityCommand).build() {
|
|
3809
|
+
static {
|
|
3810
|
+
__name(this, "GetGroupCertificateAuthorityCommand");
|
|
3811
|
+
}
|
|
3738
3812
|
};
|
|
3739
|
-
__name(_GetGroupCertificateAuthorityCommand, "GetGroupCertificateAuthorityCommand");
|
|
3740
|
-
var GetGroupCertificateAuthorityCommand = _GetGroupCertificateAuthorityCommand;
|
|
3741
3813
|
|
|
3742
3814
|
// src/commands/GetGroupCertificateConfigurationCommand.ts
|
|
3743
3815
|
|
|
3744
3816
|
|
|
3745
3817
|
|
|
3746
|
-
var
|
|
3818
|
+
var GetGroupCertificateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3747
3819
|
return [
|
|
3748
3820
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3749
3821
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3750
3822
|
];
|
|
3751
3823
|
}).s("Greengrass", "GetGroupCertificateConfiguration", {}).n("GreengrassClient", "GetGroupCertificateConfigurationCommand").f(void 0, void 0).ser(se_GetGroupCertificateConfigurationCommand).de(de_GetGroupCertificateConfigurationCommand).build() {
|
|
3824
|
+
static {
|
|
3825
|
+
__name(this, "GetGroupCertificateConfigurationCommand");
|
|
3826
|
+
}
|
|
3752
3827
|
};
|
|
3753
|
-
__name(_GetGroupCertificateConfigurationCommand, "GetGroupCertificateConfigurationCommand");
|
|
3754
|
-
var GetGroupCertificateConfigurationCommand = _GetGroupCertificateConfigurationCommand;
|
|
3755
3828
|
|
|
3756
3829
|
// src/commands/GetGroupCommand.ts
|
|
3757
3830
|
|
|
3758
3831
|
|
|
3759
3832
|
|
|
3760
|
-
var
|
|
3833
|
+
var GetGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3761
3834
|
return [
|
|
3762
3835
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3763
3836
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3764
3837
|
];
|
|
3765
3838
|
}).s("Greengrass", "GetGroup", {}).n("GreengrassClient", "GetGroupCommand").f(void 0, void 0).ser(se_GetGroupCommand).de(de_GetGroupCommand).build() {
|
|
3839
|
+
static {
|
|
3840
|
+
__name(this, "GetGroupCommand");
|
|
3841
|
+
}
|
|
3766
3842
|
};
|
|
3767
|
-
__name(_GetGroupCommand, "GetGroupCommand");
|
|
3768
|
-
var GetGroupCommand = _GetGroupCommand;
|
|
3769
3843
|
|
|
3770
3844
|
// src/commands/GetGroupVersionCommand.ts
|
|
3771
3845
|
|
|
3772
3846
|
|
|
3773
3847
|
|
|
3774
|
-
var
|
|
3848
|
+
var GetGroupVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3775
3849
|
return [
|
|
3776
3850
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3777
3851
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3778
3852
|
];
|
|
3779
3853
|
}).s("Greengrass", "GetGroupVersion", {}).n("GreengrassClient", "GetGroupVersionCommand").f(void 0, void 0).ser(se_GetGroupVersionCommand).de(de_GetGroupVersionCommand).build() {
|
|
3854
|
+
static {
|
|
3855
|
+
__name(this, "GetGroupVersionCommand");
|
|
3856
|
+
}
|
|
3780
3857
|
};
|
|
3781
|
-
__name(_GetGroupVersionCommand, "GetGroupVersionCommand");
|
|
3782
|
-
var GetGroupVersionCommand = _GetGroupVersionCommand;
|
|
3783
3858
|
|
|
3784
3859
|
// src/commands/GetLoggerDefinitionCommand.ts
|
|
3785
3860
|
|
|
3786
3861
|
|
|
3787
3862
|
|
|
3788
|
-
var
|
|
3863
|
+
var GetLoggerDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3789
3864
|
return [
|
|
3790
3865
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3791
3866
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3792
3867
|
];
|
|
3793
3868
|
}).s("Greengrass", "GetLoggerDefinition", {}).n("GreengrassClient", "GetLoggerDefinitionCommand").f(void 0, void 0).ser(se_GetLoggerDefinitionCommand).de(de_GetLoggerDefinitionCommand).build() {
|
|
3869
|
+
static {
|
|
3870
|
+
__name(this, "GetLoggerDefinitionCommand");
|
|
3871
|
+
}
|
|
3794
3872
|
};
|
|
3795
|
-
__name(_GetLoggerDefinitionCommand, "GetLoggerDefinitionCommand");
|
|
3796
|
-
var GetLoggerDefinitionCommand = _GetLoggerDefinitionCommand;
|
|
3797
3873
|
|
|
3798
3874
|
// src/commands/GetLoggerDefinitionVersionCommand.ts
|
|
3799
3875
|
|
|
3800
3876
|
|
|
3801
3877
|
|
|
3802
|
-
var
|
|
3878
|
+
var GetLoggerDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3803
3879
|
return [
|
|
3804
3880
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3805
3881
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3806
3882
|
];
|
|
3807
3883
|
}).s("Greengrass", "GetLoggerDefinitionVersion", {}).n("GreengrassClient", "GetLoggerDefinitionVersionCommand").f(void 0, void 0).ser(se_GetLoggerDefinitionVersionCommand).de(de_GetLoggerDefinitionVersionCommand).build() {
|
|
3884
|
+
static {
|
|
3885
|
+
__name(this, "GetLoggerDefinitionVersionCommand");
|
|
3886
|
+
}
|
|
3808
3887
|
};
|
|
3809
|
-
__name(_GetLoggerDefinitionVersionCommand, "GetLoggerDefinitionVersionCommand");
|
|
3810
|
-
var GetLoggerDefinitionVersionCommand = _GetLoggerDefinitionVersionCommand;
|
|
3811
3888
|
|
|
3812
3889
|
// src/commands/GetResourceDefinitionCommand.ts
|
|
3813
3890
|
|
|
3814
3891
|
|
|
3815
3892
|
|
|
3816
|
-
var
|
|
3893
|
+
var GetResourceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3817
3894
|
return [
|
|
3818
3895
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3819
3896
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3820
3897
|
];
|
|
3821
3898
|
}).s("Greengrass", "GetResourceDefinition", {}).n("GreengrassClient", "GetResourceDefinitionCommand").f(void 0, void 0).ser(se_GetResourceDefinitionCommand).de(de_GetResourceDefinitionCommand).build() {
|
|
3899
|
+
static {
|
|
3900
|
+
__name(this, "GetResourceDefinitionCommand");
|
|
3901
|
+
}
|
|
3822
3902
|
};
|
|
3823
|
-
__name(_GetResourceDefinitionCommand, "GetResourceDefinitionCommand");
|
|
3824
|
-
var GetResourceDefinitionCommand = _GetResourceDefinitionCommand;
|
|
3825
3903
|
|
|
3826
3904
|
// src/commands/GetResourceDefinitionVersionCommand.ts
|
|
3827
3905
|
|
|
3828
3906
|
|
|
3829
3907
|
|
|
3830
|
-
var
|
|
3908
|
+
var GetResourceDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3831
3909
|
return [
|
|
3832
3910
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3833
3911
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3834
3912
|
];
|
|
3835
3913
|
}).s("Greengrass", "GetResourceDefinitionVersion", {}).n("GreengrassClient", "GetResourceDefinitionVersionCommand").f(void 0, void 0).ser(se_GetResourceDefinitionVersionCommand).de(de_GetResourceDefinitionVersionCommand).build() {
|
|
3914
|
+
static {
|
|
3915
|
+
__name(this, "GetResourceDefinitionVersionCommand");
|
|
3916
|
+
}
|
|
3836
3917
|
};
|
|
3837
|
-
__name(_GetResourceDefinitionVersionCommand, "GetResourceDefinitionVersionCommand");
|
|
3838
|
-
var GetResourceDefinitionVersionCommand = _GetResourceDefinitionVersionCommand;
|
|
3839
3918
|
|
|
3840
3919
|
// src/commands/GetServiceRoleForAccountCommand.ts
|
|
3841
3920
|
|
|
3842
3921
|
|
|
3843
3922
|
|
|
3844
|
-
var
|
|
3923
|
+
var GetServiceRoleForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3845
3924
|
return [
|
|
3846
3925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3847
3926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3848
3927
|
];
|
|
3849
3928
|
}).s("Greengrass", "GetServiceRoleForAccount", {}).n("GreengrassClient", "GetServiceRoleForAccountCommand").f(void 0, void 0).ser(se_GetServiceRoleForAccountCommand).de(de_GetServiceRoleForAccountCommand).build() {
|
|
3929
|
+
static {
|
|
3930
|
+
__name(this, "GetServiceRoleForAccountCommand");
|
|
3931
|
+
}
|
|
3850
3932
|
};
|
|
3851
|
-
__name(_GetServiceRoleForAccountCommand, "GetServiceRoleForAccountCommand");
|
|
3852
|
-
var GetServiceRoleForAccountCommand = _GetServiceRoleForAccountCommand;
|
|
3853
3933
|
|
|
3854
3934
|
// src/commands/GetSubscriptionDefinitionCommand.ts
|
|
3855
3935
|
|
|
3856
3936
|
|
|
3857
3937
|
|
|
3858
|
-
var
|
|
3938
|
+
var GetSubscriptionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3859
3939
|
return [
|
|
3860
3940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3861
3941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3862
3942
|
];
|
|
3863
3943
|
}).s("Greengrass", "GetSubscriptionDefinition", {}).n("GreengrassClient", "GetSubscriptionDefinitionCommand").f(void 0, void 0).ser(se_GetSubscriptionDefinitionCommand).de(de_GetSubscriptionDefinitionCommand).build() {
|
|
3944
|
+
static {
|
|
3945
|
+
__name(this, "GetSubscriptionDefinitionCommand");
|
|
3946
|
+
}
|
|
3864
3947
|
};
|
|
3865
|
-
__name(_GetSubscriptionDefinitionCommand, "GetSubscriptionDefinitionCommand");
|
|
3866
|
-
var GetSubscriptionDefinitionCommand = _GetSubscriptionDefinitionCommand;
|
|
3867
3948
|
|
|
3868
3949
|
// src/commands/GetSubscriptionDefinitionVersionCommand.ts
|
|
3869
3950
|
|
|
3870
3951
|
|
|
3871
3952
|
|
|
3872
|
-
var
|
|
3953
|
+
var GetSubscriptionDefinitionVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3873
3954
|
return [
|
|
3874
3955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3875
3956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3876
3957
|
];
|
|
3877
3958
|
}).s("Greengrass", "GetSubscriptionDefinitionVersion", {}).n("GreengrassClient", "GetSubscriptionDefinitionVersionCommand").f(void 0, void 0).ser(se_GetSubscriptionDefinitionVersionCommand).de(de_GetSubscriptionDefinitionVersionCommand).build() {
|
|
3959
|
+
static {
|
|
3960
|
+
__name(this, "GetSubscriptionDefinitionVersionCommand");
|
|
3961
|
+
}
|
|
3878
3962
|
};
|
|
3879
|
-
__name(_GetSubscriptionDefinitionVersionCommand, "GetSubscriptionDefinitionVersionCommand");
|
|
3880
|
-
var GetSubscriptionDefinitionVersionCommand = _GetSubscriptionDefinitionVersionCommand;
|
|
3881
3963
|
|
|
3882
3964
|
// src/commands/GetThingRuntimeConfigurationCommand.ts
|
|
3883
3965
|
|
|
3884
3966
|
|
|
3885
3967
|
|
|
3886
|
-
var
|
|
3968
|
+
var GetThingRuntimeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3887
3969
|
return [
|
|
3888
3970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3889
3971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3890
3972
|
];
|
|
3891
3973
|
}).s("Greengrass", "GetThingRuntimeConfiguration", {}).n("GreengrassClient", "GetThingRuntimeConfigurationCommand").f(void 0, void 0).ser(se_GetThingRuntimeConfigurationCommand).de(de_GetThingRuntimeConfigurationCommand).build() {
|
|
3974
|
+
static {
|
|
3975
|
+
__name(this, "GetThingRuntimeConfigurationCommand");
|
|
3976
|
+
}
|
|
3892
3977
|
};
|
|
3893
|
-
__name(_GetThingRuntimeConfigurationCommand, "GetThingRuntimeConfigurationCommand");
|
|
3894
|
-
var GetThingRuntimeConfigurationCommand = _GetThingRuntimeConfigurationCommand;
|
|
3895
3978
|
|
|
3896
3979
|
// src/commands/ListBulkDeploymentDetailedReportsCommand.ts
|
|
3897
3980
|
|
|
3898
3981
|
|
|
3899
3982
|
|
|
3900
|
-
var
|
|
3983
|
+
var ListBulkDeploymentDetailedReportsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3901
3984
|
return [
|
|
3902
3985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3903
3986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3904
3987
|
];
|
|
3905
3988
|
}).s("Greengrass", "ListBulkDeploymentDetailedReports", {}).n("GreengrassClient", "ListBulkDeploymentDetailedReportsCommand").f(void 0, void 0).ser(se_ListBulkDeploymentDetailedReportsCommand).de(de_ListBulkDeploymentDetailedReportsCommand).build() {
|
|
3989
|
+
static {
|
|
3990
|
+
__name(this, "ListBulkDeploymentDetailedReportsCommand");
|
|
3991
|
+
}
|
|
3906
3992
|
};
|
|
3907
|
-
__name(_ListBulkDeploymentDetailedReportsCommand, "ListBulkDeploymentDetailedReportsCommand");
|
|
3908
|
-
var ListBulkDeploymentDetailedReportsCommand = _ListBulkDeploymentDetailedReportsCommand;
|
|
3909
3993
|
|
|
3910
3994
|
// src/commands/ListBulkDeploymentsCommand.ts
|
|
3911
3995
|
|
|
3912
3996
|
|
|
3913
3997
|
|
|
3914
|
-
var
|
|
3998
|
+
var ListBulkDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3915
3999
|
return [
|
|
3916
4000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3917
4001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3918
4002
|
];
|
|
3919
4003
|
}).s("Greengrass", "ListBulkDeployments", {}).n("GreengrassClient", "ListBulkDeploymentsCommand").f(void 0, void 0).ser(se_ListBulkDeploymentsCommand).de(de_ListBulkDeploymentsCommand).build() {
|
|
4004
|
+
static {
|
|
4005
|
+
__name(this, "ListBulkDeploymentsCommand");
|
|
4006
|
+
}
|
|
3920
4007
|
};
|
|
3921
|
-
__name(_ListBulkDeploymentsCommand, "ListBulkDeploymentsCommand");
|
|
3922
|
-
var ListBulkDeploymentsCommand = _ListBulkDeploymentsCommand;
|
|
3923
4008
|
|
|
3924
4009
|
// src/commands/ListConnectorDefinitionsCommand.ts
|
|
3925
4010
|
|
|
3926
4011
|
|
|
3927
4012
|
|
|
3928
|
-
var
|
|
4013
|
+
var ListConnectorDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3929
4014
|
return [
|
|
3930
4015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3931
4016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3932
4017
|
];
|
|
3933
4018
|
}).s("Greengrass", "ListConnectorDefinitions", {}).n("GreengrassClient", "ListConnectorDefinitionsCommand").f(void 0, void 0).ser(se_ListConnectorDefinitionsCommand).de(de_ListConnectorDefinitionsCommand).build() {
|
|
4019
|
+
static {
|
|
4020
|
+
__name(this, "ListConnectorDefinitionsCommand");
|
|
4021
|
+
}
|
|
3934
4022
|
};
|
|
3935
|
-
__name(_ListConnectorDefinitionsCommand, "ListConnectorDefinitionsCommand");
|
|
3936
|
-
var ListConnectorDefinitionsCommand = _ListConnectorDefinitionsCommand;
|
|
3937
4023
|
|
|
3938
4024
|
// src/commands/ListConnectorDefinitionVersionsCommand.ts
|
|
3939
4025
|
|
|
3940
4026
|
|
|
3941
4027
|
|
|
3942
|
-
var
|
|
4028
|
+
var ListConnectorDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3943
4029
|
return [
|
|
3944
4030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3945
4031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3946
4032
|
];
|
|
3947
4033
|
}).s("Greengrass", "ListConnectorDefinitionVersions", {}).n("GreengrassClient", "ListConnectorDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListConnectorDefinitionVersionsCommand).de(de_ListConnectorDefinitionVersionsCommand).build() {
|
|
4034
|
+
static {
|
|
4035
|
+
__name(this, "ListConnectorDefinitionVersionsCommand");
|
|
4036
|
+
}
|
|
3948
4037
|
};
|
|
3949
|
-
__name(_ListConnectorDefinitionVersionsCommand, "ListConnectorDefinitionVersionsCommand");
|
|
3950
|
-
var ListConnectorDefinitionVersionsCommand = _ListConnectorDefinitionVersionsCommand;
|
|
3951
4038
|
|
|
3952
4039
|
// src/commands/ListCoreDefinitionsCommand.ts
|
|
3953
4040
|
|
|
3954
4041
|
|
|
3955
4042
|
|
|
3956
|
-
var
|
|
4043
|
+
var ListCoreDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3957
4044
|
return [
|
|
3958
4045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3959
4046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3960
4047
|
];
|
|
3961
4048
|
}).s("Greengrass", "ListCoreDefinitions", {}).n("GreengrassClient", "ListCoreDefinitionsCommand").f(void 0, void 0).ser(se_ListCoreDefinitionsCommand).de(de_ListCoreDefinitionsCommand).build() {
|
|
4049
|
+
static {
|
|
4050
|
+
__name(this, "ListCoreDefinitionsCommand");
|
|
4051
|
+
}
|
|
3962
4052
|
};
|
|
3963
|
-
__name(_ListCoreDefinitionsCommand, "ListCoreDefinitionsCommand");
|
|
3964
|
-
var ListCoreDefinitionsCommand = _ListCoreDefinitionsCommand;
|
|
3965
4053
|
|
|
3966
4054
|
// src/commands/ListCoreDefinitionVersionsCommand.ts
|
|
3967
4055
|
|
|
3968
4056
|
|
|
3969
4057
|
|
|
3970
|
-
var
|
|
4058
|
+
var ListCoreDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3971
4059
|
return [
|
|
3972
4060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3973
4061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3974
4062
|
];
|
|
3975
4063
|
}).s("Greengrass", "ListCoreDefinitionVersions", {}).n("GreengrassClient", "ListCoreDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListCoreDefinitionVersionsCommand).de(de_ListCoreDefinitionVersionsCommand).build() {
|
|
4064
|
+
static {
|
|
4065
|
+
__name(this, "ListCoreDefinitionVersionsCommand");
|
|
4066
|
+
}
|
|
3976
4067
|
};
|
|
3977
|
-
__name(_ListCoreDefinitionVersionsCommand, "ListCoreDefinitionVersionsCommand");
|
|
3978
|
-
var ListCoreDefinitionVersionsCommand = _ListCoreDefinitionVersionsCommand;
|
|
3979
4068
|
|
|
3980
4069
|
// src/commands/ListDeploymentsCommand.ts
|
|
3981
4070
|
|
|
3982
4071
|
|
|
3983
4072
|
|
|
3984
|
-
var
|
|
4073
|
+
var ListDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3985
4074
|
return [
|
|
3986
4075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
3987
4076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
3988
4077
|
];
|
|
3989
4078
|
}).s("Greengrass", "ListDeployments", {}).n("GreengrassClient", "ListDeploymentsCommand").f(void 0, void 0).ser(se_ListDeploymentsCommand).de(de_ListDeploymentsCommand).build() {
|
|
4079
|
+
static {
|
|
4080
|
+
__name(this, "ListDeploymentsCommand");
|
|
4081
|
+
}
|
|
3990
4082
|
};
|
|
3991
|
-
__name(_ListDeploymentsCommand, "ListDeploymentsCommand");
|
|
3992
|
-
var ListDeploymentsCommand = _ListDeploymentsCommand;
|
|
3993
4083
|
|
|
3994
4084
|
// src/commands/ListDeviceDefinitionsCommand.ts
|
|
3995
4085
|
|
|
3996
4086
|
|
|
3997
4087
|
|
|
3998
|
-
var
|
|
4088
|
+
var ListDeviceDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
3999
4089
|
return [
|
|
4000
4090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4001
4091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4002
4092
|
];
|
|
4003
4093
|
}).s("Greengrass", "ListDeviceDefinitions", {}).n("GreengrassClient", "ListDeviceDefinitionsCommand").f(void 0, void 0).ser(se_ListDeviceDefinitionsCommand).de(de_ListDeviceDefinitionsCommand).build() {
|
|
4094
|
+
static {
|
|
4095
|
+
__name(this, "ListDeviceDefinitionsCommand");
|
|
4096
|
+
}
|
|
4004
4097
|
};
|
|
4005
|
-
__name(_ListDeviceDefinitionsCommand, "ListDeviceDefinitionsCommand");
|
|
4006
|
-
var ListDeviceDefinitionsCommand = _ListDeviceDefinitionsCommand;
|
|
4007
4098
|
|
|
4008
4099
|
// src/commands/ListDeviceDefinitionVersionsCommand.ts
|
|
4009
4100
|
|
|
4010
4101
|
|
|
4011
4102
|
|
|
4012
|
-
var
|
|
4103
|
+
var ListDeviceDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4013
4104
|
return [
|
|
4014
4105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4015
4106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4016
4107
|
];
|
|
4017
4108
|
}).s("Greengrass", "ListDeviceDefinitionVersions", {}).n("GreengrassClient", "ListDeviceDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListDeviceDefinitionVersionsCommand).de(de_ListDeviceDefinitionVersionsCommand).build() {
|
|
4109
|
+
static {
|
|
4110
|
+
__name(this, "ListDeviceDefinitionVersionsCommand");
|
|
4111
|
+
}
|
|
4018
4112
|
};
|
|
4019
|
-
__name(_ListDeviceDefinitionVersionsCommand, "ListDeviceDefinitionVersionsCommand");
|
|
4020
|
-
var ListDeviceDefinitionVersionsCommand = _ListDeviceDefinitionVersionsCommand;
|
|
4021
4113
|
|
|
4022
4114
|
// src/commands/ListFunctionDefinitionsCommand.ts
|
|
4023
4115
|
|
|
4024
4116
|
|
|
4025
4117
|
|
|
4026
|
-
var
|
|
4118
|
+
var ListFunctionDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4027
4119
|
return [
|
|
4028
4120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4029
4121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4030
4122
|
];
|
|
4031
4123
|
}).s("Greengrass", "ListFunctionDefinitions", {}).n("GreengrassClient", "ListFunctionDefinitionsCommand").f(void 0, void 0).ser(se_ListFunctionDefinitionsCommand).de(de_ListFunctionDefinitionsCommand).build() {
|
|
4124
|
+
static {
|
|
4125
|
+
__name(this, "ListFunctionDefinitionsCommand");
|
|
4126
|
+
}
|
|
4032
4127
|
};
|
|
4033
|
-
__name(_ListFunctionDefinitionsCommand, "ListFunctionDefinitionsCommand");
|
|
4034
|
-
var ListFunctionDefinitionsCommand = _ListFunctionDefinitionsCommand;
|
|
4035
4128
|
|
|
4036
4129
|
// src/commands/ListFunctionDefinitionVersionsCommand.ts
|
|
4037
4130
|
|
|
4038
4131
|
|
|
4039
4132
|
|
|
4040
|
-
var
|
|
4133
|
+
var ListFunctionDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4041
4134
|
return [
|
|
4042
4135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4043
4136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4044
4137
|
];
|
|
4045
4138
|
}).s("Greengrass", "ListFunctionDefinitionVersions", {}).n("GreengrassClient", "ListFunctionDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListFunctionDefinitionVersionsCommand).de(de_ListFunctionDefinitionVersionsCommand).build() {
|
|
4139
|
+
static {
|
|
4140
|
+
__name(this, "ListFunctionDefinitionVersionsCommand");
|
|
4141
|
+
}
|
|
4046
4142
|
};
|
|
4047
|
-
__name(_ListFunctionDefinitionVersionsCommand, "ListFunctionDefinitionVersionsCommand");
|
|
4048
|
-
var ListFunctionDefinitionVersionsCommand = _ListFunctionDefinitionVersionsCommand;
|
|
4049
4143
|
|
|
4050
4144
|
// src/commands/ListGroupCertificateAuthoritiesCommand.ts
|
|
4051
4145
|
|
|
4052
4146
|
|
|
4053
4147
|
|
|
4054
|
-
var
|
|
4148
|
+
var ListGroupCertificateAuthoritiesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4055
4149
|
return [
|
|
4056
4150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4057
4151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4058
4152
|
];
|
|
4059
4153
|
}).s("Greengrass", "ListGroupCertificateAuthorities", {}).n("GreengrassClient", "ListGroupCertificateAuthoritiesCommand").f(void 0, void 0).ser(se_ListGroupCertificateAuthoritiesCommand).de(de_ListGroupCertificateAuthoritiesCommand).build() {
|
|
4154
|
+
static {
|
|
4155
|
+
__name(this, "ListGroupCertificateAuthoritiesCommand");
|
|
4156
|
+
}
|
|
4060
4157
|
};
|
|
4061
|
-
__name(_ListGroupCertificateAuthoritiesCommand, "ListGroupCertificateAuthoritiesCommand");
|
|
4062
|
-
var ListGroupCertificateAuthoritiesCommand = _ListGroupCertificateAuthoritiesCommand;
|
|
4063
4158
|
|
|
4064
4159
|
// src/commands/ListGroupsCommand.ts
|
|
4065
4160
|
|
|
4066
4161
|
|
|
4067
4162
|
|
|
4068
|
-
var
|
|
4163
|
+
var ListGroupsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4069
4164
|
return [
|
|
4070
4165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4071
4166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4072
4167
|
];
|
|
4073
4168
|
}).s("Greengrass", "ListGroups", {}).n("GreengrassClient", "ListGroupsCommand").f(void 0, void 0).ser(se_ListGroupsCommand).de(de_ListGroupsCommand).build() {
|
|
4169
|
+
static {
|
|
4170
|
+
__name(this, "ListGroupsCommand");
|
|
4171
|
+
}
|
|
4074
4172
|
};
|
|
4075
|
-
__name(_ListGroupsCommand, "ListGroupsCommand");
|
|
4076
|
-
var ListGroupsCommand = _ListGroupsCommand;
|
|
4077
4173
|
|
|
4078
4174
|
// src/commands/ListGroupVersionsCommand.ts
|
|
4079
4175
|
|
|
4080
4176
|
|
|
4081
4177
|
|
|
4082
|
-
var
|
|
4178
|
+
var ListGroupVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4083
4179
|
return [
|
|
4084
4180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4085
4181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4086
4182
|
];
|
|
4087
4183
|
}).s("Greengrass", "ListGroupVersions", {}).n("GreengrassClient", "ListGroupVersionsCommand").f(void 0, void 0).ser(se_ListGroupVersionsCommand).de(de_ListGroupVersionsCommand).build() {
|
|
4184
|
+
static {
|
|
4185
|
+
__name(this, "ListGroupVersionsCommand");
|
|
4186
|
+
}
|
|
4088
4187
|
};
|
|
4089
|
-
__name(_ListGroupVersionsCommand, "ListGroupVersionsCommand");
|
|
4090
|
-
var ListGroupVersionsCommand = _ListGroupVersionsCommand;
|
|
4091
4188
|
|
|
4092
4189
|
// src/commands/ListLoggerDefinitionsCommand.ts
|
|
4093
4190
|
|
|
4094
4191
|
|
|
4095
4192
|
|
|
4096
|
-
var
|
|
4193
|
+
var ListLoggerDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4097
4194
|
return [
|
|
4098
4195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4099
4196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4100
4197
|
];
|
|
4101
4198
|
}).s("Greengrass", "ListLoggerDefinitions", {}).n("GreengrassClient", "ListLoggerDefinitionsCommand").f(void 0, void 0).ser(se_ListLoggerDefinitionsCommand).de(de_ListLoggerDefinitionsCommand).build() {
|
|
4199
|
+
static {
|
|
4200
|
+
__name(this, "ListLoggerDefinitionsCommand");
|
|
4201
|
+
}
|
|
4102
4202
|
};
|
|
4103
|
-
__name(_ListLoggerDefinitionsCommand, "ListLoggerDefinitionsCommand");
|
|
4104
|
-
var ListLoggerDefinitionsCommand = _ListLoggerDefinitionsCommand;
|
|
4105
4203
|
|
|
4106
4204
|
// src/commands/ListLoggerDefinitionVersionsCommand.ts
|
|
4107
4205
|
|
|
4108
4206
|
|
|
4109
4207
|
|
|
4110
|
-
var
|
|
4208
|
+
var ListLoggerDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4111
4209
|
return [
|
|
4112
4210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4113
4211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4114
4212
|
];
|
|
4115
4213
|
}).s("Greengrass", "ListLoggerDefinitionVersions", {}).n("GreengrassClient", "ListLoggerDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListLoggerDefinitionVersionsCommand).de(de_ListLoggerDefinitionVersionsCommand).build() {
|
|
4214
|
+
static {
|
|
4215
|
+
__name(this, "ListLoggerDefinitionVersionsCommand");
|
|
4216
|
+
}
|
|
4116
4217
|
};
|
|
4117
|
-
__name(_ListLoggerDefinitionVersionsCommand, "ListLoggerDefinitionVersionsCommand");
|
|
4118
|
-
var ListLoggerDefinitionVersionsCommand = _ListLoggerDefinitionVersionsCommand;
|
|
4119
4218
|
|
|
4120
4219
|
// src/commands/ListResourceDefinitionsCommand.ts
|
|
4121
4220
|
|
|
4122
4221
|
|
|
4123
4222
|
|
|
4124
|
-
var
|
|
4223
|
+
var ListResourceDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4125
4224
|
return [
|
|
4126
4225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4127
4226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4128
4227
|
];
|
|
4129
4228
|
}).s("Greengrass", "ListResourceDefinitions", {}).n("GreengrassClient", "ListResourceDefinitionsCommand").f(void 0, void 0).ser(se_ListResourceDefinitionsCommand).de(de_ListResourceDefinitionsCommand).build() {
|
|
4229
|
+
static {
|
|
4230
|
+
__name(this, "ListResourceDefinitionsCommand");
|
|
4231
|
+
}
|
|
4130
4232
|
};
|
|
4131
|
-
__name(_ListResourceDefinitionsCommand, "ListResourceDefinitionsCommand");
|
|
4132
|
-
var ListResourceDefinitionsCommand = _ListResourceDefinitionsCommand;
|
|
4133
4233
|
|
|
4134
4234
|
// src/commands/ListResourceDefinitionVersionsCommand.ts
|
|
4135
4235
|
|
|
4136
4236
|
|
|
4137
4237
|
|
|
4138
|
-
var
|
|
4238
|
+
var ListResourceDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4139
4239
|
return [
|
|
4140
4240
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4141
4241
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4142
4242
|
];
|
|
4143
4243
|
}).s("Greengrass", "ListResourceDefinitionVersions", {}).n("GreengrassClient", "ListResourceDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListResourceDefinitionVersionsCommand).de(de_ListResourceDefinitionVersionsCommand).build() {
|
|
4244
|
+
static {
|
|
4245
|
+
__name(this, "ListResourceDefinitionVersionsCommand");
|
|
4246
|
+
}
|
|
4144
4247
|
};
|
|
4145
|
-
__name(_ListResourceDefinitionVersionsCommand, "ListResourceDefinitionVersionsCommand");
|
|
4146
|
-
var ListResourceDefinitionVersionsCommand = _ListResourceDefinitionVersionsCommand;
|
|
4147
4248
|
|
|
4148
4249
|
// src/commands/ListSubscriptionDefinitionsCommand.ts
|
|
4149
4250
|
|
|
4150
4251
|
|
|
4151
4252
|
|
|
4152
|
-
var
|
|
4253
|
+
var ListSubscriptionDefinitionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4153
4254
|
return [
|
|
4154
4255
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4155
4256
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4156
4257
|
];
|
|
4157
4258
|
}).s("Greengrass", "ListSubscriptionDefinitions", {}).n("GreengrassClient", "ListSubscriptionDefinitionsCommand").f(void 0, void 0).ser(se_ListSubscriptionDefinitionsCommand).de(de_ListSubscriptionDefinitionsCommand).build() {
|
|
4259
|
+
static {
|
|
4260
|
+
__name(this, "ListSubscriptionDefinitionsCommand");
|
|
4261
|
+
}
|
|
4158
4262
|
};
|
|
4159
|
-
__name(_ListSubscriptionDefinitionsCommand, "ListSubscriptionDefinitionsCommand");
|
|
4160
|
-
var ListSubscriptionDefinitionsCommand = _ListSubscriptionDefinitionsCommand;
|
|
4161
4263
|
|
|
4162
4264
|
// src/commands/ListSubscriptionDefinitionVersionsCommand.ts
|
|
4163
4265
|
|
|
4164
4266
|
|
|
4165
4267
|
|
|
4166
|
-
var
|
|
4268
|
+
var ListSubscriptionDefinitionVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4167
4269
|
return [
|
|
4168
4270
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4169
4271
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4170
4272
|
];
|
|
4171
4273
|
}).s("Greengrass", "ListSubscriptionDefinitionVersions", {}).n("GreengrassClient", "ListSubscriptionDefinitionVersionsCommand").f(void 0, void 0).ser(se_ListSubscriptionDefinitionVersionsCommand).de(de_ListSubscriptionDefinitionVersionsCommand).build() {
|
|
4274
|
+
static {
|
|
4275
|
+
__name(this, "ListSubscriptionDefinitionVersionsCommand");
|
|
4276
|
+
}
|
|
4172
4277
|
};
|
|
4173
|
-
__name(_ListSubscriptionDefinitionVersionsCommand, "ListSubscriptionDefinitionVersionsCommand");
|
|
4174
|
-
var ListSubscriptionDefinitionVersionsCommand = _ListSubscriptionDefinitionVersionsCommand;
|
|
4175
4278
|
|
|
4176
4279
|
// src/commands/ListTagsForResourceCommand.ts
|
|
4177
4280
|
|
|
4178
4281
|
|
|
4179
4282
|
|
|
4180
|
-
var
|
|
4283
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4181
4284
|
return [
|
|
4182
4285
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4183
4286
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4184
4287
|
];
|
|
4185
4288
|
}).s("Greengrass", "ListTagsForResource", {}).n("GreengrassClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
4289
|
+
static {
|
|
4290
|
+
__name(this, "ListTagsForResourceCommand");
|
|
4291
|
+
}
|
|
4186
4292
|
};
|
|
4187
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
4188
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
4189
4293
|
|
|
4190
4294
|
// src/commands/ResetDeploymentsCommand.ts
|
|
4191
4295
|
|
|
4192
4296
|
|
|
4193
4297
|
|
|
4194
|
-
var
|
|
4298
|
+
var ResetDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4195
4299
|
return [
|
|
4196
4300
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4197
4301
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4198
4302
|
];
|
|
4199
4303
|
}).s("Greengrass", "ResetDeployments", {}).n("GreengrassClient", "ResetDeploymentsCommand").f(void 0, void 0).ser(se_ResetDeploymentsCommand).de(de_ResetDeploymentsCommand).build() {
|
|
4304
|
+
static {
|
|
4305
|
+
__name(this, "ResetDeploymentsCommand");
|
|
4306
|
+
}
|
|
4200
4307
|
};
|
|
4201
|
-
__name(_ResetDeploymentsCommand, "ResetDeploymentsCommand");
|
|
4202
|
-
var ResetDeploymentsCommand = _ResetDeploymentsCommand;
|
|
4203
4308
|
|
|
4204
4309
|
// src/commands/StartBulkDeploymentCommand.ts
|
|
4205
4310
|
|
|
4206
4311
|
|
|
4207
4312
|
|
|
4208
|
-
var
|
|
4313
|
+
var StartBulkDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4209
4314
|
return [
|
|
4210
4315
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4211
4316
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4212
4317
|
];
|
|
4213
4318
|
}).s("Greengrass", "StartBulkDeployment", {}).n("GreengrassClient", "StartBulkDeploymentCommand").f(void 0, void 0).ser(se_StartBulkDeploymentCommand).de(de_StartBulkDeploymentCommand).build() {
|
|
4319
|
+
static {
|
|
4320
|
+
__name(this, "StartBulkDeploymentCommand");
|
|
4321
|
+
}
|
|
4214
4322
|
};
|
|
4215
|
-
__name(_StartBulkDeploymentCommand, "StartBulkDeploymentCommand");
|
|
4216
|
-
var StartBulkDeploymentCommand = _StartBulkDeploymentCommand;
|
|
4217
4323
|
|
|
4218
4324
|
// src/commands/StopBulkDeploymentCommand.ts
|
|
4219
4325
|
|
|
4220
4326
|
|
|
4221
4327
|
|
|
4222
|
-
var
|
|
4328
|
+
var StopBulkDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4223
4329
|
return [
|
|
4224
4330
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4225
4331
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4226
4332
|
];
|
|
4227
4333
|
}).s("Greengrass", "StopBulkDeployment", {}).n("GreengrassClient", "StopBulkDeploymentCommand").f(void 0, void 0).ser(se_StopBulkDeploymentCommand).de(de_StopBulkDeploymentCommand).build() {
|
|
4334
|
+
static {
|
|
4335
|
+
__name(this, "StopBulkDeploymentCommand");
|
|
4336
|
+
}
|
|
4228
4337
|
};
|
|
4229
|
-
__name(_StopBulkDeploymentCommand, "StopBulkDeploymentCommand");
|
|
4230
|
-
var StopBulkDeploymentCommand = _StopBulkDeploymentCommand;
|
|
4231
4338
|
|
|
4232
4339
|
// src/commands/TagResourceCommand.ts
|
|
4233
4340
|
|
|
4234
4341
|
|
|
4235
4342
|
|
|
4236
|
-
var
|
|
4343
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4237
4344
|
return [
|
|
4238
4345
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4239
4346
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4240
4347
|
];
|
|
4241
4348
|
}).s("Greengrass", "TagResource", {}).n("GreengrassClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
4349
|
+
static {
|
|
4350
|
+
__name(this, "TagResourceCommand");
|
|
4351
|
+
}
|
|
4242
4352
|
};
|
|
4243
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
4244
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
4245
4353
|
|
|
4246
4354
|
// src/commands/UntagResourceCommand.ts
|
|
4247
4355
|
|
|
4248
4356
|
|
|
4249
4357
|
|
|
4250
|
-
var
|
|
4358
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4251
4359
|
return [
|
|
4252
4360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4253
4361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4254
4362
|
];
|
|
4255
4363
|
}).s("Greengrass", "UntagResource", {}).n("GreengrassClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
4364
|
+
static {
|
|
4365
|
+
__name(this, "UntagResourceCommand");
|
|
4366
|
+
}
|
|
4256
4367
|
};
|
|
4257
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
4258
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
4259
4368
|
|
|
4260
4369
|
// src/commands/UpdateConnectivityInfoCommand.ts
|
|
4261
4370
|
|
|
4262
4371
|
|
|
4263
4372
|
|
|
4264
|
-
var
|
|
4373
|
+
var UpdateConnectivityInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4265
4374
|
return [
|
|
4266
4375
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4267
4376
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4268
4377
|
];
|
|
4269
4378
|
}).s("Greengrass", "UpdateConnectivityInfo", {}).n("GreengrassClient", "UpdateConnectivityInfoCommand").f(void 0, void 0).ser(se_UpdateConnectivityInfoCommand).de(de_UpdateConnectivityInfoCommand).build() {
|
|
4379
|
+
static {
|
|
4380
|
+
__name(this, "UpdateConnectivityInfoCommand");
|
|
4381
|
+
}
|
|
4270
4382
|
};
|
|
4271
|
-
__name(_UpdateConnectivityInfoCommand, "UpdateConnectivityInfoCommand");
|
|
4272
|
-
var UpdateConnectivityInfoCommand = _UpdateConnectivityInfoCommand;
|
|
4273
4383
|
|
|
4274
4384
|
// src/commands/UpdateConnectorDefinitionCommand.ts
|
|
4275
4385
|
|
|
4276
4386
|
|
|
4277
4387
|
|
|
4278
|
-
var
|
|
4388
|
+
var UpdateConnectorDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4279
4389
|
return [
|
|
4280
4390
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4281
4391
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4282
4392
|
];
|
|
4283
4393
|
}).s("Greengrass", "UpdateConnectorDefinition", {}).n("GreengrassClient", "UpdateConnectorDefinitionCommand").f(void 0, void 0).ser(se_UpdateConnectorDefinitionCommand).de(de_UpdateConnectorDefinitionCommand).build() {
|
|
4394
|
+
static {
|
|
4395
|
+
__name(this, "UpdateConnectorDefinitionCommand");
|
|
4396
|
+
}
|
|
4284
4397
|
};
|
|
4285
|
-
__name(_UpdateConnectorDefinitionCommand, "UpdateConnectorDefinitionCommand");
|
|
4286
|
-
var UpdateConnectorDefinitionCommand = _UpdateConnectorDefinitionCommand;
|
|
4287
4398
|
|
|
4288
4399
|
// src/commands/UpdateCoreDefinitionCommand.ts
|
|
4289
4400
|
|
|
4290
4401
|
|
|
4291
4402
|
|
|
4292
|
-
var
|
|
4403
|
+
var UpdateCoreDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4293
4404
|
return [
|
|
4294
4405
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4295
4406
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4296
4407
|
];
|
|
4297
4408
|
}).s("Greengrass", "UpdateCoreDefinition", {}).n("GreengrassClient", "UpdateCoreDefinitionCommand").f(void 0, void 0).ser(se_UpdateCoreDefinitionCommand).de(de_UpdateCoreDefinitionCommand).build() {
|
|
4409
|
+
static {
|
|
4410
|
+
__name(this, "UpdateCoreDefinitionCommand");
|
|
4411
|
+
}
|
|
4298
4412
|
};
|
|
4299
|
-
__name(_UpdateCoreDefinitionCommand, "UpdateCoreDefinitionCommand");
|
|
4300
|
-
var UpdateCoreDefinitionCommand = _UpdateCoreDefinitionCommand;
|
|
4301
4413
|
|
|
4302
4414
|
// src/commands/UpdateDeviceDefinitionCommand.ts
|
|
4303
4415
|
|
|
4304
4416
|
|
|
4305
4417
|
|
|
4306
|
-
var
|
|
4418
|
+
var UpdateDeviceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4307
4419
|
return [
|
|
4308
4420
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4309
4421
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4310
4422
|
];
|
|
4311
4423
|
}).s("Greengrass", "UpdateDeviceDefinition", {}).n("GreengrassClient", "UpdateDeviceDefinitionCommand").f(void 0, void 0).ser(se_UpdateDeviceDefinitionCommand).de(de_UpdateDeviceDefinitionCommand).build() {
|
|
4424
|
+
static {
|
|
4425
|
+
__name(this, "UpdateDeviceDefinitionCommand");
|
|
4426
|
+
}
|
|
4312
4427
|
};
|
|
4313
|
-
__name(_UpdateDeviceDefinitionCommand, "UpdateDeviceDefinitionCommand");
|
|
4314
|
-
var UpdateDeviceDefinitionCommand = _UpdateDeviceDefinitionCommand;
|
|
4315
4428
|
|
|
4316
4429
|
// src/commands/UpdateFunctionDefinitionCommand.ts
|
|
4317
4430
|
|
|
4318
4431
|
|
|
4319
4432
|
|
|
4320
|
-
var
|
|
4433
|
+
var UpdateFunctionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4321
4434
|
return [
|
|
4322
4435
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4323
4436
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4324
4437
|
];
|
|
4325
4438
|
}).s("Greengrass", "UpdateFunctionDefinition", {}).n("GreengrassClient", "UpdateFunctionDefinitionCommand").f(void 0, void 0).ser(se_UpdateFunctionDefinitionCommand).de(de_UpdateFunctionDefinitionCommand).build() {
|
|
4439
|
+
static {
|
|
4440
|
+
__name(this, "UpdateFunctionDefinitionCommand");
|
|
4441
|
+
}
|
|
4326
4442
|
};
|
|
4327
|
-
__name(_UpdateFunctionDefinitionCommand, "UpdateFunctionDefinitionCommand");
|
|
4328
|
-
var UpdateFunctionDefinitionCommand = _UpdateFunctionDefinitionCommand;
|
|
4329
4443
|
|
|
4330
4444
|
// src/commands/UpdateGroupCertificateConfigurationCommand.ts
|
|
4331
4445
|
|
|
4332
4446
|
|
|
4333
4447
|
|
|
4334
|
-
var
|
|
4448
|
+
var UpdateGroupCertificateConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4335
4449
|
return [
|
|
4336
4450
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4337
4451
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4338
4452
|
];
|
|
4339
4453
|
}).s("Greengrass", "UpdateGroupCertificateConfiguration", {}).n("GreengrassClient", "UpdateGroupCertificateConfigurationCommand").f(void 0, void 0).ser(se_UpdateGroupCertificateConfigurationCommand).de(de_UpdateGroupCertificateConfigurationCommand).build() {
|
|
4454
|
+
static {
|
|
4455
|
+
__name(this, "UpdateGroupCertificateConfigurationCommand");
|
|
4456
|
+
}
|
|
4340
4457
|
};
|
|
4341
|
-
__name(_UpdateGroupCertificateConfigurationCommand, "UpdateGroupCertificateConfigurationCommand");
|
|
4342
|
-
var UpdateGroupCertificateConfigurationCommand = _UpdateGroupCertificateConfigurationCommand;
|
|
4343
4458
|
|
|
4344
4459
|
// src/commands/UpdateGroupCommand.ts
|
|
4345
4460
|
|
|
4346
4461
|
|
|
4347
4462
|
|
|
4348
|
-
var
|
|
4463
|
+
var UpdateGroupCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4349
4464
|
return [
|
|
4350
4465
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4351
4466
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4352
4467
|
];
|
|
4353
4468
|
}).s("Greengrass", "UpdateGroup", {}).n("GreengrassClient", "UpdateGroupCommand").f(void 0, void 0).ser(se_UpdateGroupCommand).de(de_UpdateGroupCommand).build() {
|
|
4469
|
+
static {
|
|
4470
|
+
__name(this, "UpdateGroupCommand");
|
|
4471
|
+
}
|
|
4354
4472
|
};
|
|
4355
|
-
__name(_UpdateGroupCommand, "UpdateGroupCommand");
|
|
4356
|
-
var UpdateGroupCommand = _UpdateGroupCommand;
|
|
4357
4473
|
|
|
4358
4474
|
// src/commands/UpdateLoggerDefinitionCommand.ts
|
|
4359
4475
|
|
|
4360
4476
|
|
|
4361
4477
|
|
|
4362
|
-
var
|
|
4478
|
+
var UpdateLoggerDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4363
4479
|
return [
|
|
4364
4480
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4365
4481
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4366
4482
|
];
|
|
4367
4483
|
}).s("Greengrass", "UpdateLoggerDefinition", {}).n("GreengrassClient", "UpdateLoggerDefinitionCommand").f(void 0, void 0).ser(se_UpdateLoggerDefinitionCommand).de(de_UpdateLoggerDefinitionCommand).build() {
|
|
4484
|
+
static {
|
|
4485
|
+
__name(this, "UpdateLoggerDefinitionCommand");
|
|
4486
|
+
}
|
|
4368
4487
|
};
|
|
4369
|
-
__name(_UpdateLoggerDefinitionCommand, "UpdateLoggerDefinitionCommand");
|
|
4370
|
-
var UpdateLoggerDefinitionCommand = _UpdateLoggerDefinitionCommand;
|
|
4371
4488
|
|
|
4372
4489
|
// src/commands/UpdateResourceDefinitionCommand.ts
|
|
4373
4490
|
|
|
4374
4491
|
|
|
4375
4492
|
|
|
4376
|
-
var
|
|
4493
|
+
var UpdateResourceDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4377
4494
|
return [
|
|
4378
4495
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4379
4496
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4380
4497
|
];
|
|
4381
4498
|
}).s("Greengrass", "UpdateResourceDefinition", {}).n("GreengrassClient", "UpdateResourceDefinitionCommand").f(void 0, void 0).ser(se_UpdateResourceDefinitionCommand).de(de_UpdateResourceDefinitionCommand).build() {
|
|
4499
|
+
static {
|
|
4500
|
+
__name(this, "UpdateResourceDefinitionCommand");
|
|
4501
|
+
}
|
|
4382
4502
|
};
|
|
4383
|
-
__name(_UpdateResourceDefinitionCommand, "UpdateResourceDefinitionCommand");
|
|
4384
|
-
var UpdateResourceDefinitionCommand = _UpdateResourceDefinitionCommand;
|
|
4385
4503
|
|
|
4386
4504
|
// src/commands/UpdateSubscriptionDefinitionCommand.ts
|
|
4387
4505
|
|
|
4388
4506
|
|
|
4389
4507
|
|
|
4390
|
-
var
|
|
4508
|
+
var UpdateSubscriptionDefinitionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4391
4509
|
return [
|
|
4392
4510
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4393
4511
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4394
4512
|
];
|
|
4395
4513
|
}).s("Greengrass", "UpdateSubscriptionDefinition", {}).n("GreengrassClient", "UpdateSubscriptionDefinitionCommand").f(void 0, void 0).ser(se_UpdateSubscriptionDefinitionCommand).de(de_UpdateSubscriptionDefinitionCommand).build() {
|
|
4514
|
+
static {
|
|
4515
|
+
__name(this, "UpdateSubscriptionDefinitionCommand");
|
|
4516
|
+
}
|
|
4396
4517
|
};
|
|
4397
|
-
__name(_UpdateSubscriptionDefinitionCommand, "UpdateSubscriptionDefinitionCommand");
|
|
4398
|
-
var UpdateSubscriptionDefinitionCommand = _UpdateSubscriptionDefinitionCommand;
|
|
4399
4518
|
|
|
4400
4519
|
// src/commands/UpdateThingRuntimeConfigurationCommand.ts
|
|
4401
4520
|
|
|
4402
4521
|
|
|
4403
4522
|
|
|
4404
|
-
var
|
|
4523
|
+
var UpdateThingRuntimeConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
4405
4524
|
return [
|
|
4406
4525
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
4407
4526
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
4408
4527
|
];
|
|
4409
4528
|
}).s("Greengrass", "UpdateThingRuntimeConfiguration", {}).n("GreengrassClient", "UpdateThingRuntimeConfigurationCommand").f(void 0, void 0).ser(se_UpdateThingRuntimeConfigurationCommand).de(de_UpdateThingRuntimeConfigurationCommand).build() {
|
|
4529
|
+
static {
|
|
4530
|
+
__name(this, "UpdateThingRuntimeConfigurationCommand");
|
|
4531
|
+
}
|
|
4410
4532
|
};
|
|
4411
|
-
__name(_UpdateThingRuntimeConfigurationCommand, "UpdateThingRuntimeConfigurationCommand");
|
|
4412
|
-
var UpdateThingRuntimeConfigurationCommand = _UpdateThingRuntimeConfigurationCommand;
|
|
4413
4533
|
|
|
4414
4534
|
// src/Greengrass.ts
|
|
4415
4535
|
var commands = {
|
|
@@ -4506,10 +4626,11 @@ var commands = {
|
|
|
4506
4626
|
UpdateSubscriptionDefinitionCommand,
|
|
4507
4627
|
UpdateThingRuntimeConfigurationCommand
|
|
4508
4628
|
};
|
|
4509
|
-
var
|
|
4629
|
+
var Greengrass = class extends GreengrassClient {
|
|
4630
|
+
static {
|
|
4631
|
+
__name(this, "Greengrass");
|
|
4632
|
+
}
|
|
4510
4633
|
};
|
|
4511
|
-
__name(_Greengrass, "Greengrass");
|
|
4512
|
-
var Greengrass = _Greengrass;
|
|
4513
4634
|
(0, import_smithy_client.createAggregatedClient)(commands, Greengrass);
|
|
4514
4635
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4515
4636
|
|