@aws-sdk/client-greengrassv2 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 CHANGED
@@ -190,7 +190,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
190
190
  }, "resolveRuntimeExtensions");
191
191
 
192
192
  // src/GreengrassV2Client.ts
193
- var _GreengrassV2Client = class _GreengrassV2Client extends import_smithy_client.Client {
193
+ var GreengrassV2Client = class extends import_smithy_client.Client {
194
+ static {
195
+ __name(this, "GreengrassV2Client");
196
+ }
197
+ /**
198
+ * The resolved configuration of GreengrassV2Client class. This is resolved and normalized from the {@link GreengrassV2ClientConfig | constructor configuration interface}.
199
+ */
200
+ config;
194
201
  constructor(...[configuration]) {
195
202
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
196
203
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -200,7 +207,7 @@ var _GreengrassV2Client = class _GreengrassV2Client extends import_smithy_client
200
207
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
201
208
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
202
209
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
203
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
210
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
204
211
  super(_config_8);
205
212
  this.config = _config_8;
206
213
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -228,8 +235,6 @@ var _GreengrassV2Client = class _GreengrassV2Client extends import_smithy_client
228
235
  super.destroy();
229
236
  }
230
237
  };
231
- __name(_GreengrassV2Client, "GreengrassV2Client");
232
- var GreengrassV2Client = _GreengrassV2Client;
233
238
 
234
239
  // src/GreengrassV2.ts
235
240
 
@@ -247,7 +252,10 @@ var import_uuid = require("uuid");
247
252
 
248
253
  // src/models/GreengrassV2ServiceException.ts
249
254
 
250
- var _GreengrassV2ServiceException = class _GreengrassV2ServiceException extends import_smithy_client.ServiceException {
255
+ var GreengrassV2ServiceException = class _GreengrassV2ServiceException extends import_smithy_client.ServiceException {
256
+ static {
257
+ __name(this, "GreengrassV2ServiceException");
258
+ }
251
259
  /**
252
260
  * @internal
253
261
  */
@@ -256,11 +264,14 @@ var _GreengrassV2ServiceException = class _GreengrassV2ServiceException extends
256
264
  Object.setPrototypeOf(this, _GreengrassV2ServiceException.prototype);
257
265
  }
258
266
  };
259
- __name(_GreengrassV2ServiceException, "GreengrassV2ServiceException");
260
- var GreengrassV2ServiceException = _GreengrassV2ServiceException;
261
267
 
262
268
  // src/models/models_0.ts
263
- var _AccessDeniedException = class _AccessDeniedException extends GreengrassV2ServiceException {
269
+ var AccessDeniedException = class _AccessDeniedException extends GreengrassV2ServiceException {
270
+ static {
271
+ __name(this, "AccessDeniedException");
272
+ }
273
+ name = "AccessDeniedException";
274
+ $fault = "client";
264
275
  /**
265
276
  * @internal
266
277
  */
@@ -270,14 +281,20 @@ var _AccessDeniedException = class _AccessDeniedException extends GreengrassV2Se
270
281
  $fault: "client",
271
282
  ...opts
272
283
  });
273
- this.name = "AccessDeniedException";
274
- this.$fault = "client";
275
284
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
276
285
  }
277
286
  };
278
- __name(_AccessDeniedException, "AccessDeniedException");
279
- var AccessDeniedException = _AccessDeniedException;
280
- var _InternalServerException = class _InternalServerException extends GreengrassV2ServiceException {
287
+ var InternalServerException = class _InternalServerException extends GreengrassV2ServiceException {
288
+ static {
289
+ __name(this, "InternalServerException");
290
+ }
291
+ name = "InternalServerException";
292
+ $fault = "server";
293
+ /**
294
+ * <p>The amount of time to wait before you retry the request.</p>
295
+ * @public
296
+ */
297
+ retryAfterSeconds;
281
298
  /**
282
299
  * @internal
283
300
  */
@@ -287,21 +304,32 @@ var _InternalServerException = class _InternalServerException extends Greengrass
287
304
  $fault: "server",
288
305
  ...opts
289
306
  });
290
- this.name = "InternalServerException";
291
- this.$fault = "server";
292
307
  Object.setPrototypeOf(this, _InternalServerException.prototype);
293
308
  this.retryAfterSeconds = opts.retryAfterSeconds;
294
309
  }
295
310
  };
296
- __name(_InternalServerException, "InternalServerException");
297
- var InternalServerException = _InternalServerException;
298
311
  var ValidationExceptionReason = {
299
312
  CANNOT_PARSE: "CANNOT_PARSE",
300
313
  FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
301
314
  OTHER: "OTHER",
302
315
  UNKNOWN_OPERATION: "UNKNOWN_OPERATION"
303
316
  };
304
- var _ValidationException = class _ValidationException extends GreengrassV2ServiceException {
317
+ var ValidationException = class _ValidationException extends GreengrassV2ServiceException {
318
+ static {
319
+ __name(this, "ValidationException");
320
+ }
321
+ name = "ValidationException";
322
+ $fault = "client";
323
+ /**
324
+ * <p>The reason for the validation exception.</p>
325
+ * @public
326
+ */
327
+ reason;
328
+ /**
329
+ * <p>The list of fields that failed to validate.</p>
330
+ * @public
331
+ */
332
+ fields;
305
333
  /**
306
334
  * @internal
307
335
  */
@@ -311,16 +339,27 @@ var _ValidationException = class _ValidationException extends GreengrassV2Servic
311
339
  $fault: "client",
312
340
  ...opts
313
341
  });
314
- this.name = "ValidationException";
315
- this.$fault = "client";
316
342
  Object.setPrototypeOf(this, _ValidationException.prototype);
317
343
  this.reason = opts.reason;
318
344
  this.fields = opts.fields;
319
345
  }
320
346
  };
321
- __name(_ValidationException, "ValidationException");
322
- var ValidationException = _ValidationException;
323
- var _ResourceNotFoundException = class _ResourceNotFoundException extends GreengrassV2ServiceException {
347
+ var ResourceNotFoundException = class _ResourceNotFoundException extends GreengrassV2ServiceException {
348
+ static {
349
+ __name(this, "ResourceNotFoundException");
350
+ }
351
+ name = "ResourceNotFoundException";
352
+ $fault = "client";
353
+ /**
354
+ * <p>The ID of the resource that isn't found.</p>
355
+ * @public
356
+ */
357
+ resourceId;
358
+ /**
359
+ * <p>The type of the resource that isn't found.</p>
360
+ * @public
361
+ */
362
+ resourceType;
324
363
  /**
325
364
  * @internal
326
365
  */
@@ -330,16 +369,32 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends Greeng
330
369
  $fault: "client",
331
370
  ...opts
332
371
  });
333
- this.name = "ResourceNotFoundException";
334
- this.$fault = "client";
335
372
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
336
373
  this.resourceId = opts.resourceId;
337
374
  this.resourceType = opts.resourceType;
338
375
  }
339
376
  };
340
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
341
- var ResourceNotFoundException = _ResourceNotFoundException;
342
- var _ThrottlingException = class _ThrottlingException extends GreengrassV2ServiceException {
377
+ var ThrottlingException = class _ThrottlingException extends GreengrassV2ServiceException {
378
+ static {
379
+ __name(this, "ThrottlingException");
380
+ }
381
+ name = "ThrottlingException";
382
+ $fault = "client";
383
+ /**
384
+ * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
385
+ * @public
386
+ */
387
+ quotaCode;
388
+ /**
389
+ * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
390
+ * @public
391
+ */
392
+ serviceCode;
393
+ /**
394
+ * <p>The amount of time to wait before you retry the request.</p>
395
+ * @public
396
+ */
397
+ retryAfterSeconds;
343
398
  /**
344
399
  * @internal
345
400
  */
@@ -349,17 +404,28 @@ var _ThrottlingException = class _ThrottlingException extends GreengrassV2Servic
349
404
  $fault: "client",
350
405
  ...opts
351
406
  });
352
- this.name = "ThrottlingException";
353
- this.$fault = "client";
354
407
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
355
408
  this.quotaCode = opts.quotaCode;
356
409
  this.serviceCode = opts.serviceCode;
357
410
  this.retryAfterSeconds = opts.retryAfterSeconds;
358
411
  }
359
412
  };
360
- __name(_ThrottlingException, "ThrottlingException");
361
- var ThrottlingException = _ThrottlingException;
362
- var _ConflictException = class _ConflictException extends GreengrassV2ServiceException {
413
+ var ConflictException = class _ConflictException extends GreengrassV2ServiceException {
414
+ static {
415
+ __name(this, "ConflictException");
416
+ }
417
+ name = "ConflictException";
418
+ $fault = "client";
419
+ /**
420
+ * <p>The ID of the resource that conflicts with the request.</p>
421
+ * @public
422
+ */
423
+ resourceId;
424
+ /**
425
+ * <p>The type of the resource that conflicts with the request.</p>
426
+ * @public
427
+ */
428
+ resourceType;
363
429
  /**
364
430
  * @internal
365
431
  */
@@ -369,15 +435,11 @@ var _ConflictException = class _ConflictException extends GreengrassV2ServiceExc
369
435
  $fault: "client",
370
436
  ...opts
371
437
  });
372
- this.name = "ConflictException";
373
- this.$fault = "client";
374
438
  Object.setPrototypeOf(this, _ConflictException.prototype);
375
439
  this.resourceId = opts.resourceId;
376
440
  this.resourceType = opts.resourceType;
377
441
  }
378
442
  };
379
- __name(_ConflictException, "ConflictException");
380
- var ConflictException = _ConflictException;
381
443
  var CloudComponentState = {
382
444
  DEPLOYABLE: "DEPLOYABLE",
383
445
  DEPRECATED: "DEPRECATED",
@@ -418,7 +480,12 @@ var LambdaIsolationMode = {
418
480
  GREENGRASS_CONTAINER: "GreengrassContainer",
419
481
  NO_CONTAINER: "NoContainer"
420
482
  };
421
- var _RequestAlreadyInProgressException = class _RequestAlreadyInProgressException extends GreengrassV2ServiceException {
483
+ var RequestAlreadyInProgressException = class _RequestAlreadyInProgressException extends GreengrassV2ServiceException {
484
+ static {
485
+ __name(this, "RequestAlreadyInProgressException");
486
+ }
487
+ name = "RequestAlreadyInProgressException";
488
+ $fault = "client";
422
489
  /**
423
490
  * @internal
424
491
  */
@@ -428,14 +495,35 @@ var _RequestAlreadyInProgressException = class _RequestAlreadyInProgressExceptio
428
495
  $fault: "client",
429
496
  ...opts
430
497
  });
431
- this.name = "RequestAlreadyInProgressException";
432
- this.$fault = "client";
433
498
  Object.setPrototypeOf(this, _RequestAlreadyInProgressException.prototype);
434
499
  }
435
500
  };
436
- __name(_RequestAlreadyInProgressException, "RequestAlreadyInProgressException");
437
- var RequestAlreadyInProgressException = _RequestAlreadyInProgressException;
438
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends GreengrassV2ServiceException {
501
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends GreengrassV2ServiceException {
502
+ static {
503
+ __name(this, "ServiceQuotaExceededException");
504
+ }
505
+ name = "ServiceQuotaExceededException";
506
+ $fault = "client";
507
+ /**
508
+ * <p>The ID of the resource that exceeds the service quota.</p>
509
+ * @public
510
+ */
511
+ resourceId;
512
+ /**
513
+ * <p>The type of the resource that exceeds the service quota.</p>
514
+ * @public
515
+ */
516
+ resourceType;
517
+ /**
518
+ * <p>The code for the quota in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
519
+ * @public
520
+ */
521
+ quotaCode;
522
+ /**
523
+ * <p>The code for the service in <a href="https://docs.aws.amazon.com/servicequotas/latest/userguide/intro.html">Service Quotas</a>.</p>
524
+ * @public
525
+ */
526
+ serviceCode;
439
527
  /**
440
528
  * @internal
441
529
  */
@@ -445,8 +533,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
445
533
  $fault: "client",
446
534
  ...opts
447
535
  });
448
- this.name = "ServiceQuotaExceededException";
449
- this.$fault = "client";
450
536
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
451
537
  this.resourceId = opts.resourceId;
452
538
  this.resourceType = opts.resourceType;
@@ -454,8 +540,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
454
540
  this.serviceCode = opts.serviceCode;
455
541
  }
456
542
  };
457
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
458
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
459
543
  var DeploymentComponentUpdatePolicyAction = {
460
544
  NOTIFY_COMPONENTS: "NOTIFY_COMPONENTS",
461
545
  SKIP_NOTIFY_COMPONENTS: "SKIP_NOTIFY_COMPONENTS"
@@ -1797,407 +1881,436 @@ var _tK = "tagKeys";
1797
1881
  var _xaiet = "x-amz-iot-endpoint-type";
1798
1882
 
1799
1883
  // src/commands/AssociateServiceRoleToAccountCommand.ts
1800
- var _AssociateServiceRoleToAccountCommand = class _AssociateServiceRoleToAccountCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1884
+ var AssociateServiceRoleToAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1801
1885
  return [
1802
1886
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1803
1887
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1804
1888
  ];
1805
1889
  }).s("GreengrassV2", "AssociateServiceRoleToAccount", {}).n("GreengrassV2Client", "AssociateServiceRoleToAccountCommand").f(void 0, void 0).ser(se_AssociateServiceRoleToAccountCommand).de(de_AssociateServiceRoleToAccountCommand).build() {
1890
+ static {
1891
+ __name(this, "AssociateServiceRoleToAccountCommand");
1892
+ }
1806
1893
  };
1807
- __name(_AssociateServiceRoleToAccountCommand, "AssociateServiceRoleToAccountCommand");
1808
- var AssociateServiceRoleToAccountCommand = _AssociateServiceRoleToAccountCommand;
1809
1894
 
1810
1895
  // src/commands/BatchAssociateClientDeviceWithCoreDeviceCommand.ts
1811
1896
 
1812
1897
 
1813
1898
 
1814
- var _BatchAssociateClientDeviceWithCoreDeviceCommand = class _BatchAssociateClientDeviceWithCoreDeviceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1899
+ var BatchAssociateClientDeviceWithCoreDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1815
1900
  return [
1816
1901
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1817
1902
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1818
1903
  ];
1819
1904
  }).s("GreengrassV2", "BatchAssociateClientDeviceWithCoreDevice", {}).n("GreengrassV2Client", "BatchAssociateClientDeviceWithCoreDeviceCommand").f(void 0, void 0).ser(se_BatchAssociateClientDeviceWithCoreDeviceCommand).de(de_BatchAssociateClientDeviceWithCoreDeviceCommand).build() {
1905
+ static {
1906
+ __name(this, "BatchAssociateClientDeviceWithCoreDeviceCommand");
1907
+ }
1820
1908
  };
1821
- __name(_BatchAssociateClientDeviceWithCoreDeviceCommand, "BatchAssociateClientDeviceWithCoreDeviceCommand");
1822
- var BatchAssociateClientDeviceWithCoreDeviceCommand = _BatchAssociateClientDeviceWithCoreDeviceCommand;
1823
1909
 
1824
1910
  // src/commands/BatchDisassociateClientDeviceFromCoreDeviceCommand.ts
1825
1911
 
1826
1912
 
1827
1913
 
1828
- var _BatchDisassociateClientDeviceFromCoreDeviceCommand = class _BatchDisassociateClientDeviceFromCoreDeviceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1914
+ var BatchDisassociateClientDeviceFromCoreDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1829
1915
  return [
1830
1916
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1831
1917
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1832
1918
  ];
1833
1919
  }).s("GreengrassV2", "BatchDisassociateClientDeviceFromCoreDevice", {}).n("GreengrassV2Client", "BatchDisassociateClientDeviceFromCoreDeviceCommand").f(void 0, void 0).ser(se_BatchDisassociateClientDeviceFromCoreDeviceCommand).de(de_BatchDisassociateClientDeviceFromCoreDeviceCommand).build() {
1920
+ static {
1921
+ __name(this, "BatchDisassociateClientDeviceFromCoreDeviceCommand");
1922
+ }
1834
1923
  };
1835
- __name(_BatchDisassociateClientDeviceFromCoreDeviceCommand, "BatchDisassociateClientDeviceFromCoreDeviceCommand");
1836
- var BatchDisassociateClientDeviceFromCoreDeviceCommand = _BatchDisassociateClientDeviceFromCoreDeviceCommand;
1837
1924
 
1838
1925
  // src/commands/CancelDeploymentCommand.ts
1839
1926
 
1840
1927
 
1841
1928
 
1842
- var _CancelDeploymentCommand = class _CancelDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1929
+ var CancelDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1843
1930
  return [
1844
1931
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1845
1932
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1846
1933
  ];
1847
1934
  }).s("GreengrassV2", "CancelDeployment", {}).n("GreengrassV2Client", "CancelDeploymentCommand").f(void 0, void 0).ser(se_CancelDeploymentCommand).de(de_CancelDeploymentCommand).build() {
1935
+ static {
1936
+ __name(this, "CancelDeploymentCommand");
1937
+ }
1848
1938
  };
1849
- __name(_CancelDeploymentCommand, "CancelDeploymentCommand");
1850
- var CancelDeploymentCommand = _CancelDeploymentCommand;
1851
1939
 
1852
1940
  // src/commands/CreateComponentVersionCommand.ts
1853
1941
 
1854
1942
 
1855
1943
 
1856
- var _CreateComponentVersionCommand = class _CreateComponentVersionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1944
+ var CreateComponentVersionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1857
1945
  return [
1858
1946
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1859
1947
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1860
1948
  ];
1861
1949
  }).s("GreengrassV2", "CreateComponentVersion", {}).n("GreengrassV2Client", "CreateComponentVersionCommand").f(void 0, void 0).ser(se_CreateComponentVersionCommand).de(de_CreateComponentVersionCommand).build() {
1950
+ static {
1951
+ __name(this, "CreateComponentVersionCommand");
1952
+ }
1862
1953
  };
1863
- __name(_CreateComponentVersionCommand, "CreateComponentVersionCommand");
1864
- var CreateComponentVersionCommand = _CreateComponentVersionCommand;
1865
1954
 
1866
1955
  // src/commands/CreateDeploymentCommand.ts
1867
1956
 
1868
1957
 
1869
1958
 
1870
- var _CreateDeploymentCommand = class _CreateDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1959
+ var CreateDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1871
1960
  return [
1872
1961
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1873
1962
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1874
1963
  ];
1875
1964
  }).s("GreengrassV2", "CreateDeployment", {}).n("GreengrassV2Client", "CreateDeploymentCommand").f(void 0, void 0).ser(se_CreateDeploymentCommand).de(de_CreateDeploymentCommand).build() {
1965
+ static {
1966
+ __name(this, "CreateDeploymentCommand");
1967
+ }
1876
1968
  };
1877
- __name(_CreateDeploymentCommand, "CreateDeploymentCommand");
1878
- var CreateDeploymentCommand = _CreateDeploymentCommand;
1879
1969
 
1880
1970
  // src/commands/DeleteComponentCommand.ts
1881
1971
 
1882
1972
 
1883
1973
 
1884
- var _DeleteComponentCommand = class _DeleteComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1974
+ var DeleteComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1885
1975
  return [
1886
1976
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1887
1977
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1888
1978
  ];
1889
1979
  }).s("GreengrassV2", "DeleteComponent", {}).n("GreengrassV2Client", "DeleteComponentCommand").f(void 0, void 0).ser(se_DeleteComponentCommand).de(de_DeleteComponentCommand).build() {
1980
+ static {
1981
+ __name(this, "DeleteComponentCommand");
1982
+ }
1890
1983
  };
1891
- __name(_DeleteComponentCommand, "DeleteComponentCommand");
1892
- var DeleteComponentCommand = _DeleteComponentCommand;
1893
1984
 
1894
1985
  // src/commands/DeleteCoreDeviceCommand.ts
1895
1986
 
1896
1987
 
1897
1988
 
1898
- var _DeleteCoreDeviceCommand = class _DeleteCoreDeviceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1989
+ var DeleteCoreDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1899
1990
  return [
1900
1991
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1901
1992
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1902
1993
  ];
1903
1994
  }).s("GreengrassV2", "DeleteCoreDevice", {}).n("GreengrassV2Client", "DeleteCoreDeviceCommand").f(void 0, void 0).ser(se_DeleteCoreDeviceCommand).de(de_DeleteCoreDeviceCommand).build() {
1995
+ static {
1996
+ __name(this, "DeleteCoreDeviceCommand");
1997
+ }
1904
1998
  };
1905
- __name(_DeleteCoreDeviceCommand, "DeleteCoreDeviceCommand");
1906
- var DeleteCoreDeviceCommand = _DeleteCoreDeviceCommand;
1907
1999
 
1908
2000
  // src/commands/DeleteDeploymentCommand.ts
1909
2001
 
1910
2002
 
1911
2003
 
1912
- var _DeleteDeploymentCommand = class _DeleteDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2004
+ var DeleteDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1913
2005
  return [
1914
2006
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1915
2007
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1916
2008
  ];
1917
2009
  }).s("GreengrassV2", "DeleteDeployment", {}).n("GreengrassV2Client", "DeleteDeploymentCommand").f(void 0, void 0).ser(se_DeleteDeploymentCommand).de(de_DeleteDeploymentCommand).build() {
2010
+ static {
2011
+ __name(this, "DeleteDeploymentCommand");
2012
+ }
1918
2013
  };
1919
- __name(_DeleteDeploymentCommand, "DeleteDeploymentCommand");
1920
- var DeleteDeploymentCommand = _DeleteDeploymentCommand;
1921
2014
 
1922
2015
  // src/commands/DescribeComponentCommand.ts
1923
2016
 
1924
2017
 
1925
2018
 
1926
- var _DescribeComponentCommand = class _DescribeComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2019
+ var DescribeComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1927
2020
  return [
1928
2021
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1929
2022
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1930
2023
  ];
1931
2024
  }).s("GreengrassV2", "DescribeComponent", {}).n("GreengrassV2Client", "DescribeComponentCommand").f(void 0, void 0).ser(se_DescribeComponentCommand).de(de_DescribeComponentCommand).build() {
2025
+ static {
2026
+ __name(this, "DescribeComponentCommand");
2027
+ }
1932
2028
  };
1933
- __name(_DescribeComponentCommand, "DescribeComponentCommand");
1934
- var DescribeComponentCommand = _DescribeComponentCommand;
1935
2029
 
1936
2030
  // src/commands/DisassociateServiceRoleFromAccountCommand.ts
1937
2031
 
1938
2032
 
1939
2033
 
1940
- var _DisassociateServiceRoleFromAccountCommand = class _DisassociateServiceRoleFromAccountCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2034
+ var DisassociateServiceRoleFromAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1941
2035
  return [
1942
2036
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1943
2037
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1944
2038
  ];
1945
2039
  }).s("GreengrassV2", "DisassociateServiceRoleFromAccount", {}).n("GreengrassV2Client", "DisassociateServiceRoleFromAccountCommand").f(void 0, void 0).ser(se_DisassociateServiceRoleFromAccountCommand).de(de_DisassociateServiceRoleFromAccountCommand).build() {
2040
+ static {
2041
+ __name(this, "DisassociateServiceRoleFromAccountCommand");
2042
+ }
1946
2043
  };
1947
- __name(_DisassociateServiceRoleFromAccountCommand, "DisassociateServiceRoleFromAccountCommand");
1948
- var DisassociateServiceRoleFromAccountCommand = _DisassociateServiceRoleFromAccountCommand;
1949
2044
 
1950
2045
  // src/commands/GetComponentCommand.ts
1951
2046
 
1952
2047
 
1953
2048
 
1954
- var _GetComponentCommand = class _GetComponentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2049
+ var GetComponentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1955
2050
  return [
1956
2051
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1957
2052
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1958
2053
  ];
1959
2054
  }).s("GreengrassV2", "GetComponent", {}).n("GreengrassV2Client", "GetComponentCommand").f(void 0, void 0).ser(se_GetComponentCommand).de(de_GetComponentCommand).build() {
2055
+ static {
2056
+ __name(this, "GetComponentCommand");
2057
+ }
1960
2058
  };
1961
- __name(_GetComponentCommand, "GetComponentCommand");
1962
- var GetComponentCommand = _GetComponentCommand;
1963
2059
 
1964
2060
  // src/commands/GetComponentVersionArtifactCommand.ts
1965
2061
 
1966
2062
 
1967
2063
 
1968
- var _GetComponentVersionArtifactCommand = class _GetComponentVersionArtifactCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2064
+ var GetComponentVersionArtifactCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1969
2065
  return [
1970
2066
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1971
2067
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1972
2068
  ];
1973
2069
  }).s("GreengrassV2", "GetComponentVersionArtifact", {}).n("GreengrassV2Client", "GetComponentVersionArtifactCommand").f(void 0, void 0).ser(se_GetComponentVersionArtifactCommand).de(de_GetComponentVersionArtifactCommand).build() {
2070
+ static {
2071
+ __name(this, "GetComponentVersionArtifactCommand");
2072
+ }
1974
2073
  };
1975
- __name(_GetComponentVersionArtifactCommand, "GetComponentVersionArtifactCommand");
1976
- var GetComponentVersionArtifactCommand = _GetComponentVersionArtifactCommand;
1977
2074
 
1978
2075
  // src/commands/GetConnectivityInfoCommand.ts
1979
2076
 
1980
2077
 
1981
2078
 
1982
- var _GetConnectivityInfoCommand = class _GetConnectivityInfoCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2079
+ var GetConnectivityInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1983
2080
  return [
1984
2081
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1985
2082
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1986
2083
  ];
1987
2084
  }).s("GreengrassV2", "GetConnectivityInfo", {}).n("GreengrassV2Client", "GetConnectivityInfoCommand").f(void 0, void 0).ser(se_GetConnectivityInfoCommand).de(de_GetConnectivityInfoCommand).build() {
2085
+ static {
2086
+ __name(this, "GetConnectivityInfoCommand");
2087
+ }
1988
2088
  };
1989
- __name(_GetConnectivityInfoCommand, "GetConnectivityInfoCommand");
1990
- var GetConnectivityInfoCommand = _GetConnectivityInfoCommand;
1991
2089
 
1992
2090
  // src/commands/GetCoreDeviceCommand.ts
1993
2091
 
1994
2092
 
1995
2093
 
1996
- var _GetCoreDeviceCommand = class _GetCoreDeviceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2094
+ var GetCoreDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1997
2095
  return [
1998
2096
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1999
2097
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2000
2098
  ];
2001
2099
  }).s("GreengrassV2", "GetCoreDevice", {}).n("GreengrassV2Client", "GetCoreDeviceCommand").f(void 0, void 0).ser(se_GetCoreDeviceCommand).de(de_GetCoreDeviceCommand).build() {
2100
+ static {
2101
+ __name(this, "GetCoreDeviceCommand");
2102
+ }
2002
2103
  };
2003
- __name(_GetCoreDeviceCommand, "GetCoreDeviceCommand");
2004
- var GetCoreDeviceCommand = _GetCoreDeviceCommand;
2005
2104
 
2006
2105
  // src/commands/GetDeploymentCommand.ts
2007
2106
 
2008
2107
 
2009
2108
 
2010
- var _GetDeploymentCommand = class _GetDeploymentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2109
+ var GetDeploymentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2011
2110
  return [
2012
2111
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2013
2112
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2014
2113
  ];
2015
2114
  }).s("GreengrassV2", "GetDeployment", {}).n("GreengrassV2Client", "GetDeploymentCommand").f(void 0, void 0).ser(se_GetDeploymentCommand).de(de_GetDeploymentCommand).build() {
2115
+ static {
2116
+ __name(this, "GetDeploymentCommand");
2117
+ }
2016
2118
  };
2017
- __name(_GetDeploymentCommand, "GetDeploymentCommand");
2018
- var GetDeploymentCommand = _GetDeploymentCommand;
2019
2119
 
2020
2120
  // src/commands/GetServiceRoleForAccountCommand.ts
2021
2121
 
2022
2122
 
2023
2123
 
2024
- var _GetServiceRoleForAccountCommand = class _GetServiceRoleForAccountCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2124
+ var GetServiceRoleForAccountCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2025
2125
  return [
2026
2126
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2027
2127
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2028
2128
  ];
2029
2129
  }).s("GreengrassV2", "GetServiceRoleForAccount", {}).n("GreengrassV2Client", "GetServiceRoleForAccountCommand").f(void 0, void 0).ser(se_GetServiceRoleForAccountCommand).de(de_GetServiceRoleForAccountCommand).build() {
2130
+ static {
2131
+ __name(this, "GetServiceRoleForAccountCommand");
2132
+ }
2030
2133
  };
2031
- __name(_GetServiceRoleForAccountCommand, "GetServiceRoleForAccountCommand");
2032
- var GetServiceRoleForAccountCommand = _GetServiceRoleForAccountCommand;
2033
2134
 
2034
2135
  // src/commands/ListClientDevicesAssociatedWithCoreDeviceCommand.ts
2035
2136
 
2036
2137
 
2037
2138
 
2038
- var _ListClientDevicesAssociatedWithCoreDeviceCommand = class _ListClientDevicesAssociatedWithCoreDeviceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2139
+ var ListClientDevicesAssociatedWithCoreDeviceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2039
2140
  return [
2040
2141
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2041
2142
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2042
2143
  ];
2043
2144
  }).s("GreengrassV2", "ListClientDevicesAssociatedWithCoreDevice", {}).n("GreengrassV2Client", "ListClientDevicesAssociatedWithCoreDeviceCommand").f(void 0, void 0).ser(se_ListClientDevicesAssociatedWithCoreDeviceCommand).de(de_ListClientDevicesAssociatedWithCoreDeviceCommand).build() {
2145
+ static {
2146
+ __name(this, "ListClientDevicesAssociatedWithCoreDeviceCommand");
2147
+ }
2044
2148
  };
2045
- __name(_ListClientDevicesAssociatedWithCoreDeviceCommand, "ListClientDevicesAssociatedWithCoreDeviceCommand");
2046
- var ListClientDevicesAssociatedWithCoreDeviceCommand = _ListClientDevicesAssociatedWithCoreDeviceCommand;
2047
2149
 
2048
2150
  // src/commands/ListComponentsCommand.ts
2049
2151
 
2050
2152
 
2051
2153
 
2052
- var _ListComponentsCommand = class _ListComponentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2154
+ var ListComponentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2053
2155
  return [
2054
2156
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2055
2157
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2056
2158
  ];
2057
2159
  }).s("GreengrassV2", "ListComponents", {}).n("GreengrassV2Client", "ListComponentsCommand").f(void 0, void 0).ser(se_ListComponentsCommand).de(de_ListComponentsCommand).build() {
2160
+ static {
2161
+ __name(this, "ListComponentsCommand");
2162
+ }
2058
2163
  };
2059
- __name(_ListComponentsCommand, "ListComponentsCommand");
2060
- var ListComponentsCommand = _ListComponentsCommand;
2061
2164
 
2062
2165
  // src/commands/ListComponentVersionsCommand.ts
2063
2166
 
2064
2167
 
2065
2168
 
2066
- var _ListComponentVersionsCommand = class _ListComponentVersionsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2169
+ var ListComponentVersionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2067
2170
  return [
2068
2171
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2069
2172
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2070
2173
  ];
2071
2174
  }).s("GreengrassV2", "ListComponentVersions", {}).n("GreengrassV2Client", "ListComponentVersionsCommand").f(void 0, void 0).ser(se_ListComponentVersionsCommand).de(de_ListComponentVersionsCommand).build() {
2175
+ static {
2176
+ __name(this, "ListComponentVersionsCommand");
2177
+ }
2072
2178
  };
2073
- __name(_ListComponentVersionsCommand, "ListComponentVersionsCommand");
2074
- var ListComponentVersionsCommand = _ListComponentVersionsCommand;
2075
2179
 
2076
2180
  // src/commands/ListCoreDevicesCommand.ts
2077
2181
 
2078
2182
 
2079
2183
 
2080
- var _ListCoreDevicesCommand = class _ListCoreDevicesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2184
+ var ListCoreDevicesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2081
2185
  return [
2082
2186
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2083
2187
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2084
2188
  ];
2085
2189
  }).s("GreengrassV2", "ListCoreDevices", {}).n("GreengrassV2Client", "ListCoreDevicesCommand").f(void 0, void 0).ser(se_ListCoreDevicesCommand).de(de_ListCoreDevicesCommand).build() {
2190
+ static {
2191
+ __name(this, "ListCoreDevicesCommand");
2192
+ }
2086
2193
  };
2087
- __name(_ListCoreDevicesCommand, "ListCoreDevicesCommand");
2088
- var ListCoreDevicesCommand = _ListCoreDevicesCommand;
2089
2194
 
2090
2195
  // src/commands/ListDeploymentsCommand.ts
2091
2196
 
2092
2197
 
2093
2198
 
2094
- var _ListDeploymentsCommand = class _ListDeploymentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2199
+ var ListDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2095
2200
  return [
2096
2201
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2097
2202
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2098
2203
  ];
2099
2204
  }).s("GreengrassV2", "ListDeployments", {}).n("GreengrassV2Client", "ListDeploymentsCommand").f(void 0, void 0).ser(se_ListDeploymentsCommand).de(de_ListDeploymentsCommand).build() {
2205
+ static {
2206
+ __name(this, "ListDeploymentsCommand");
2207
+ }
2100
2208
  };
2101
- __name(_ListDeploymentsCommand, "ListDeploymentsCommand");
2102
- var ListDeploymentsCommand = _ListDeploymentsCommand;
2103
2209
 
2104
2210
  // src/commands/ListEffectiveDeploymentsCommand.ts
2105
2211
 
2106
2212
 
2107
2213
 
2108
- var _ListEffectiveDeploymentsCommand = class _ListEffectiveDeploymentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2214
+ var ListEffectiveDeploymentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2109
2215
  return [
2110
2216
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2111
2217
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2112
2218
  ];
2113
2219
  }).s("GreengrassV2", "ListEffectiveDeployments", {}).n("GreengrassV2Client", "ListEffectiveDeploymentsCommand").f(void 0, void 0).ser(se_ListEffectiveDeploymentsCommand).de(de_ListEffectiveDeploymentsCommand).build() {
2220
+ static {
2221
+ __name(this, "ListEffectiveDeploymentsCommand");
2222
+ }
2114
2223
  };
2115
- __name(_ListEffectiveDeploymentsCommand, "ListEffectiveDeploymentsCommand");
2116
- var ListEffectiveDeploymentsCommand = _ListEffectiveDeploymentsCommand;
2117
2224
 
2118
2225
  // src/commands/ListInstalledComponentsCommand.ts
2119
2226
 
2120
2227
 
2121
2228
 
2122
- var _ListInstalledComponentsCommand = class _ListInstalledComponentsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2229
+ var ListInstalledComponentsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2123
2230
  return [
2124
2231
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2125
2232
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2126
2233
  ];
2127
2234
  }).s("GreengrassV2", "ListInstalledComponents", {}).n("GreengrassV2Client", "ListInstalledComponentsCommand").f(void 0, void 0).ser(se_ListInstalledComponentsCommand).de(de_ListInstalledComponentsCommand).build() {
2235
+ static {
2236
+ __name(this, "ListInstalledComponentsCommand");
2237
+ }
2128
2238
  };
2129
- __name(_ListInstalledComponentsCommand, "ListInstalledComponentsCommand");
2130
- var ListInstalledComponentsCommand = _ListInstalledComponentsCommand;
2131
2239
 
2132
2240
  // src/commands/ListTagsForResourceCommand.ts
2133
2241
 
2134
2242
 
2135
2243
 
2136
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2244
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2137
2245
  return [
2138
2246
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2139
2247
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2140
2248
  ];
2141
2249
  }).s("GreengrassV2", "ListTagsForResource", {}).n("GreengrassV2Client", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2250
+ static {
2251
+ __name(this, "ListTagsForResourceCommand");
2252
+ }
2142
2253
  };
2143
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2144
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2145
2254
 
2146
2255
  // src/commands/ResolveComponentCandidatesCommand.ts
2147
2256
 
2148
2257
 
2149
2258
 
2150
- var _ResolveComponentCandidatesCommand = class _ResolveComponentCandidatesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2259
+ var ResolveComponentCandidatesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2151
2260
  return [
2152
2261
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2153
2262
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2154
2263
  ];
2155
2264
  }).s("GreengrassV2", "ResolveComponentCandidates", {}).n("GreengrassV2Client", "ResolveComponentCandidatesCommand").f(void 0, void 0).ser(se_ResolveComponentCandidatesCommand).de(de_ResolveComponentCandidatesCommand).build() {
2265
+ static {
2266
+ __name(this, "ResolveComponentCandidatesCommand");
2267
+ }
2156
2268
  };
2157
- __name(_ResolveComponentCandidatesCommand, "ResolveComponentCandidatesCommand");
2158
- var ResolveComponentCandidatesCommand = _ResolveComponentCandidatesCommand;
2159
2269
 
2160
2270
  // src/commands/TagResourceCommand.ts
2161
2271
 
2162
2272
 
2163
2273
 
2164
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2274
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2165
2275
  return [
2166
2276
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2167
2277
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2168
2278
  ];
2169
2279
  }).s("GreengrassV2", "TagResource", {}).n("GreengrassV2Client", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
2280
+ static {
2281
+ __name(this, "TagResourceCommand");
2282
+ }
2170
2283
  };
2171
- __name(_TagResourceCommand, "TagResourceCommand");
2172
- var TagResourceCommand = _TagResourceCommand;
2173
2284
 
2174
2285
  // src/commands/UntagResourceCommand.ts
2175
2286
 
2176
2287
 
2177
2288
 
2178
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2289
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2179
2290
  return [
2180
2291
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2181
2292
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2182
2293
  ];
2183
2294
  }).s("GreengrassV2", "UntagResource", {}).n("GreengrassV2Client", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
2295
+ static {
2296
+ __name(this, "UntagResourceCommand");
2297
+ }
2184
2298
  };
2185
- __name(_UntagResourceCommand, "UntagResourceCommand");
2186
- var UntagResourceCommand = _UntagResourceCommand;
2187
2299
 
2188
2300
  // src/commands/UpdateConnectivityInfoCommand.ts
2189
2301
 
2190
2302
 
2191
2303
 
2192
- var _UpdateConnectivityInfoCommand = class _UpdateConnectivityInfoCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2304
+ var UpdateConnectivityInfoCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2193
2305
  return [
2194
2306
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2195
2307
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2196
2308
  ];
2197
2309
  }).s("GreengrassV2", "UpdateConnectivityInfo", {}).n("GreengrassV2Client", "UpdateConnectivityInfoCommand").f(void 0, void 0).ser(se_UpdateConnectivityInfoCommand).de(de_UpdateConnectivityInfoCommand).build() {
2310
+ static {
2311
+ __name(this, "UpdateConnectivityInfoCommand");
2312
+ }
2198
2313
  };
2199
- __name(_UpdateConnectivityInfoCommand, "UpdateConnectivityInfoCommand");
2200
- var UpdateConnectivityInfoCommand = _UpdateConnectivityInfoCommand;
2201
2314
 
2202
2315
  // src/GreengrassV2.ts
2203
2316
  var commands = {
@@ -2231,10 +2344,11 @@ var commands = {
2231
2344
  UntagResourceCommand,
2232
2345
  UpdateConnectivityInfoCommand
2233
2346
  };
2234
- var _GreengrassV2 = class _GreengrassV2 extends GreengrassV2Client {
2347
+ var GreengrassV2 = class extends GreengrassV2Client {
2348
+ static {
2349
+ __name(this, "GreengrassV2");
2350
+ }
2235
2351
  };
2236
- __name(_GreengrassV2, "GreengrassV2");
2237
- var GreengrassV2 = _GreengrassV2;
2238
2352
  (0, import_smithy_client.createAggregatedClient)(commands, GreengrassV2);
2239
2353
 
2240
2354
  // src/pagination/ListClientDevicesAssociatedWithCoreDevicePaginator.ts
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
14
14
  import { resolveRuntimeExtensions } from "./runtimeExtensions";
15
15
  export { __Client };
16
16
  export class GreengrassV2Client extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,25 +1,26 @@
1
1
  import { GreengrassV2ServiceException as __BaseException } from "./GreengrassV2ServiceException";
2
2
  export class AccessDeniedException extends __BaseException {
3
+ name = "AccessDeniedException";
4
+ $fault = "client";
3
5
  constructor(opts) {
4
6
  super({
5
7
  name: "AccessDeniedException",
6
8
  $fault: "client",
7
9
  ...opts,
8
10
  });
9
- this.name = "AccessDeniedException";
10
- this.$fault = "client";
11
11
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
12
12
  }
13
13
  }
14
14
  export class InternalServerException extends __BaseException {
15
+ name = "InternalServerException";
16
+ $fault = "server";
17
+ retryAfterSeconds;
15
18
  constructor(opts) {
16
19
  super({
17
20
  name: "InternalServerException",
18
21
  $fault: "server",
19
22
  ...opts,
20
23
  });
21
- this.name = "InternalServerException";
22
- this.$fault = "server";
23
24
  Object.setPrototypeOf(this, InternalServerException.prototype);
24
25
  this.retryAfterSeconds = opts.retryAfterSeconds;
25
26
  }
@@ -31,42 +32,49 @@ export const ValidationExceptionReason = {
31
32
  UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
32
33
  };
33
34
  export class ValidationException extends __BaseException {
35
+ name = "ValidationException";
36
+ $fault = "client";
37
+ reason;
38
+ fields;
34
39
  constructor(opts) {
35
40
  super({
36
41
  name: "ValidationException",
37
42
  $fault: "client",
38
43
  ...opts,
39
44
  });
40
- this.name = "ValidationException";
41
- this.$fault = "client";
42
45
  Object.setPrototypeOf(this, ValidationException.prototype);
43
46
  this.reason = opts.reason;
44
47
  this.fields = opts.fields;
45
48
  }
46
49
  }
47
50
  export class ResourceNotFoundException extends __BaseException {
51
+ name = "ResourceNotFoundException";
52
+ $fault = "client";
53
+ resourceId;
54
+ resourceType;
48
55
  constructor(opts) {
49
56
  super({
50
57
  name: "ResourceNotFoundException",
51
58
  $fault: "client",
52
59
  ...opts,
53
60
  });
54
- this.name = "ResourceNotFoundException";
55
- this.$fault = "client";
56
61
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
57
62
  this.resourceId = opts.resourceId;
58
63
  this.resourceType = opts.resourceType;
59
64
  }
60
65
  }
61
66
  export class ThrottlingException extends __BaseException {
67
+ name = "ThrottlingException";
68
+ $fault = "client";
69
+ quotaCode;
70
+ serviceCode;
71
+ retryAfterSeconds;
62
72
  constructor(opts) {
63
73
  super({
64
74
  name: "ThrottlingException",
65
75
  $fault: "client",
66
76
  ...opts,
67
77
  });
68
- this.name = "ThrottlingException";
69
- this.$fault = "client";
70
78
  Object.setPrototypeOf(this, ThrottlingException.prototype);
71
79
  this.quotaCode = opts.quotaCode;
72
80
  this.serviceCode = opts.serviceCode;
@@ -74,14 +82,16 @@ export class ThrottlingException extends __BaseException {
74
82
  }
75
83
  }
76
84
  export class ConflictException extends __BaseException {
85
+ name = "ConflictException";
86
+ $fault = "client";
87
+ resourceId;
88
+ resourceType;
77
89
  constructor(opts) {
78
90
  super({
79
91
  name: "ConflictException",
80
92
  $fault: "client",
81
93
  ...opts,
82
94
  });
83
- this.name = "ConflictException";
84
- this.$fault = "client";
85
95
  Object.setPrototypeOf(this, ConflictException.prototype);
86
96
  this.resourceId = opts.resourceId;
87
97
  this.resourceType = opts.resourceType;
@@ -128,26 +138,30 @@ export const LambdaIsolationMode = {
128
138
  NO_CONTAINER: "NoContainer",
129
139
  };
130
140
  export class RequestAlreadyInProgressException extends __BaseException {
141
+ name = "RequestAlreadyInProgressException";
142
+ $fault = "client";
131
143
  constructor(opts) {
132
144
  super({
133
145
  name: "RequestAlreadyInProgressException",
134
146
  $fault: "client",
135
147
  ...opts,
136
148
  });
137
- this.name = "RequestAlreadyInProgressException";
138
- this.$fault = "client";
139
149
  Object.setPrototypeOf(this, RequestAlreadyInProgressException.prototype);
140
150
  }
141
151
  }
142
152
  export class ServiceQuotaExceededException extends __BaseException {
153
+ name = "ServiceQuotaExceededException";
154
+ $fault = "client";
155
+ resourceId;
156
+ resourceType;
157
+ quotaCode;
158
+ serviceCode;
143
159
  constructor(opts) {
144
160
  super({
145
161
  name: "ServiceQuotaExceededException",
146
162
  $fault: "client",
147
163
  ...opts,
148
164
  });
149
- this.name = "ServiceQuotaExceededException";
150
- this.$fault = "client";
151
165
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
152
166
  this.resourceId = opts.resourceId;
153
167
  this.resourceType = opts.resourceType;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<any>;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
7
7
  runtime: string;
8
8
  defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
9
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
10
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
11
11
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
12
12
  maxAttempts: number | import("@smithy/types").Provider<number>;
13
13
  region: string | import("@smithy/types").Provider<string>;
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
22
22
  region: string | import("@smithy/types").Provider<any>;
23
23
  profile?: string | undefined;
24
24
  defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
25
- credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
25
+ credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
26
26
  maxAttempts: number | import("@smithy/types").Provider<number>;
27
27
  retryMode: string | import("@smithy/types").Provider<string>;
28
28
  logger: import("@smithy/types").Logger;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
31
31
  customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
32
32
  userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
33
33
  retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
34
- endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
34
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
35
35
  endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
36
36
  logger?: import("@smithy/types").Logger | undefined;
37
37
  }) => import("@smithy/types").EndpointV2;
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- input: any
11
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ _: unknown
13
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
12
14
  defaultUserAgentProvider: (
13
15
  config?:
14
16
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
6
6
  import("@smithy/smithy-client").ResolvedDefaultsMode
7
7
  >;
8
8
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
9
- credentialDefaultProvider: (
10
- init?:
11
- | import("@aws-sdk/credential-provider-node").DefaultProviderInit
12
- | undefined
13
- ) => import("@smithy/types").MemoizedProvider<
14
- import("@smithy/types").AwsCredentialIdentity
15
- >;
9
+ credentialDefaultProvider:
10
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
11
+ | ((
12
+ init?:
13
+ | import("@aws-sdk/credential-provider-node").DefaultProviderInit
14
+ | undefined
15
+ ) => import("@smithy/types").MemoizedProvider<
16
+ import("@smithy/types").AwsCredentialIdentity
17
+ >);
16
18
  defaultUserAgentProvider: (
17
19
  config?:
18
20
  | import("@aws-sdk/util-user-agent-node").PreviouslyResolved
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
28
28
  | import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
29
29
  | undefined
30
30
  ) => Promise<import("@smithy/types").UserAgent>;
31
- credentialDefaultProvider: (
32
- input: any
33
- ) => import("@smithy/types").AwsCredentialIdentityProvider;
31
+ credentialDefaultProvider:
32
+ | ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
33
+ | ((
34
+ _: unknown
35
+ ) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
34
36
  maxAttempts: number | import("@smithy/types").Provider<number>;
35
37
  retryMode: string | import("@smithy/types").Provider<string>;
36
38
  logger: import("@smithy/types").Logger;
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: GreengrassV2ClientConfig) => {
50
52
  | import("@smithy/types").RetryStrategyV2
51
53
  | undefined;
52
54
  endpoint?:
53
- | string
54
- | import("@smithy/types").Endpoint
55
- | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
56
- | import("@smithy/types").EndpointV2
57
- | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
55
+ | ((
56
+ | string
57
+ | import("@smithy/types").Endpoint
58
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
59
+ | import("@smithy/types").EndpointV2
60
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
61
+ ) &
62
+ (
63
+ | string
64
+ | import("@smithy/types").Provider<string>
65
+ | import("@smithy/types").Endpoint
66
+ | import("@smithy/types").Provider<import("@smithy/types").Endpoint>
67
+ | import("@smithy/types").EndpointV2
68
+ | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
69
+ ))
58
70
  | undefined;
59
71
  endpointProvider: (
60
72
  endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-greengrassv2",
3
3
  "description": "AWS SDK for JavaScript Greengrassv2 Client for Node.js, Browser and React Native",
4
- "version": "3.721.0",
4
+ "version": "3.723.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-greengrassv2",
@@ -20,58 +20,58 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.721.0",
24
- "@aws-sdk/client-sts": "3.721.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.721.0",
27
- "@aws-sdk/middleware-host-header": "3.714.0",
28
- "@aws-sdk/middleware-logger": "3.714.0",
29
- "@aws-sdk/middleware-recursion-detection": "3.714.0",
30
- "@aws-sdk/middleware-user-agent": "3.721.0",
31
- "@aws-sdk/region-config-resolver": "3.714.0",
32
- "@aws-sdk/types": "3.714.0",
33
- "@aws-sdk/util-endpoints": "3.714.0",
34
- "@aws-sdk/util-user-agent-browser": "3.714.0",
35
- "@aws-sdk/util-user-agent-node": "3.721.0",
36
- "@smithy/config-resolver": "^3.0.13",
37
- "@smithy/core": "^2.5.5",
38
- "@smithy/fetch-http-handler": "^4.1.2",
39
- "@smithy/hash-node": "^3.0.11",
40
- "@smithy/invalid-dependency": "^3.0.11",
41
- "@smithy/middleware-content-length": "^3.0.13",
42
- "@smithy/middleware-endpoint": "^3.2.6",
43
- "@smithy/middleware-retry": "^3.0.31",
44
- "@smithy/middleware-serde": "^3.0.11",
45
- "@smithy/middleware-stack": "^3.0.11",
46
- "@smithy/node-config-provider": "^3.1.12",
47
- "@smithy/node-http-handler": "^3.3.2",
48
- "@smithy/protocol-http": "^4.1.8",
49
- "@smithy/smithy-client": "^3.5.1",
50
- "@smithy/types": "^3.7.2",
51
- "@smithy/url-parser": "^3.0.11",
52
- "@smithy/util-base64": "^3.0.0",
53
- "@smithy/util-body-length-browser": "^3.0.0",
54
- "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.31",
56
- "@smithy/util-defaults-mode-node": "^3.0.31",
57
- "@smithy/util-endpoints": "^2.1.7",
58
- "@smithy/util-middleware": "^3.0.11",
59
- "@smithy/util-retry": "^3.0.11",
60
- "@smithy/util-utf8": "^3.0.0",
23
+ "@aws-sdk/client-sso-oidc": "3.723.0",
24
+ "@aws-sdk/client-sts": "3.723.0",
25
+ "@aws-sdk/core": "3.723.0",
26
+ "@aws-sdk/credential-provider-node": "3.723.0",
27
+ "@aws-sdk/middleware-host-header": "3.723.0",
28
+ "@aws-sdk/middleware-logger": "3.723.0",
29
+ "@aws-sdk/middleware-recursion-detection": "3.723.0",
30
+ "@aws-sdk/middleware-user-agent": "3.723.0",
31
+ "@aws-sdk/region-config-resolver": "3.723.0",
32
+ "@aws-sdk/types": "3.723.0",
33
+ "@aws-sdk/util-endpoints": "3.723.0",
34
+ "@aws-sdk/util-user-agent-browser": "3.723.0",
35
+ "@aws-sdk/util-user-agent-node": "3.723.0",
36
+ "@smithy/config-resolver": "^4.0.0",
37
+ "@smithy/core": "^3.0.0",
38
+ "@smithy/fetch-http-handler": "^5.0.0",
39
+ "@smithy/hash-node": "^4.0.0",
40
+ "@smithy/invalid-dependency": "^4.0.0",
41
+ "@smithy/middleware-content-length": "^4.0.0",
42
+ "@smithy/middleware-endpoint": "^4.0.0",
43
+ "@smithy/middleware-retry": "^4.0.0",
44
+ "@smithy/middleware-serde": "^4.0.0",
45
+ "@smithy/middleware-stack": "^4.0.0",
46
+ "@smithy/node-config-provider": "^4.0.0",
47
+ "@smithy/node-http-handler": "^4.0.0",
48
+ "@smithy/protocol-http": "^5.0.0",
49
+ "@smithy/smithy-client": "^4.0.0",
50
+ "@smithy/types": "^4.0.0",
51
+ "@smithy/url-parser": "^4.0.0",
52
+ "@smithy/util-base64": "^4.0.0",
53
+ "@smithy/util-body-length-browser": "^4.0.0",
54
+ "@smithy/util-body-length-node": "^4.0.0",
55
+ "@smithy/util-defaults-mode-browser": "^4.0.0",
56
+ "@smithy/util-defaults-mode-node": "^4.0.0",
57
+ "@smithy/util-endpoints": "^3.0.0",
58
+ "@smithy/util-middleware": "^4.0.0",
59
+ "@smithy/util-retry": "^4.0.0",
60
+ "@smithy/util-utf8": "^4.0.0",
61
61
  "@types/uuid": "^9.0.1",
62
62
  "tslib": "^2.6.2",
63
63
  "uuid": "^9.0.1"
64
64
  },
65
65
  "devDependencies": {
66
- "@tsconfig/node16": "16.1.3",
67
- "@types/node": "^16.18.96",
66
+ "@tsconfig/node18": "18.2.4",
67
+ "@types/node": "^18.19.69",
68
68
  "concurrently": "7.0.0",
69
69
  "downlevel-dts": "0.10.1",
70
70
  "rimraf": "3.0.2",
71
- "typescript": "~4.9.5"
71
+ "typescript": "~5.2.2"
72
72
  },
73
73
  "engines": {
74
- "node": ">=16.0.0"
74
+ "node": ">=18.0.0"
75
75
  },
76
76
  "typesVersions": {
77
77
  "<4.0": {