@aws-sdk/client-ssm-incidents 3.716.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
@@ -196,7 +196,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
196
196
  }, "resolveRuntimeExtensions");
197
197
 
198
198
  // src/SSMIncidentsClient.ts
199
- var _SSMIncidentsClient = class _SSMIncidentsClient extends import_smithy_client.Client {
199
+ var SSMIncidentsClient = class extends import_smithy_client.Client {
200
+ static {
201
+ __name(this, "SSMIncidentsClient");
202
+ }
203
+ /**
204
+ * The resolved configuration of SSMIncidentsClient class. This is resolved and normalized from the {@link SSMIncidentsClientConfig | constructor configuration interface}.
205
+ */
206
+ config;
200
207
  constructor(...[configuration]) {
201
208
  const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
202
209
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -206,7 +213,7 @@ var _SSMIncidentsClient = class _SSMIncidentsClient extends import_smithy_client
206
213
  const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
207
214
  const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
208
215
  const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
209
- const _config_8 = resolveRuntimeExtensions(_config_7, (configuration == null ? void 0 : configuration.extensions) || []);
216
+ const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
210
217
  super(_config_8);
211
218
  this.config = _config_8;
212
219
  this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
@@ -234,8 +241,6 @@ var _SSMIncidentsClient = class _SSMIncidentsClient extends import_smithy_client
234
241
  super.destroy();
235
242
  }
236
243
  };
237
- __name(_SSMIncidentsClient, "SSMIncidentsClient");
238
- var SSMIncidentsClient = _SSMIncidentsClient;
239
244
 
240
245
  // src/SSMIncidents.ts
241
246
 
@@ -253,7 +258,10 @@ var import_uuid = require("uuid");
253
258
 
254
259
  // src/models/SSMIncidentsServiceException.ts
255
260
 
256
- var _SSMIncidentsServiceException = class _SSMIncidentsServiceException extends import_smithy_client.ServiceException {
261
+ var SSMIncidentsServiceException = class _SSMIncidentsServiceException extends import_smithy_client.ServiceException {
262
+ static {
263
+ __name(this, "SSMIncidentsServiceException");
264
+ }
257
265
  /**
258
266
  * @internal
259
267
  */
@@ -262,11 +270,14 @@ var _SSMIncidentsServiceException = class _SSMIncidentsServiceException extends
262
270
  Object.setPrototypeOf(this, _SSMIncidentsServiceException.prototype);
263
271
  }
264
272
  };
265
- __name(_SSMIncidentsServiceException, "SSMIncidentsServiceException");
266
- var SSMIncidentsServiceException = _SSMIncidentsServiceException;
267
273
 
268
274
  // src/models/models_0.ts
269
- var _AccessDeniedException = class _AccessDeniedException extends SSMIncidentsServiceException {
275
+ var AccessDeniedException = class _AccessDeniedException extends SSMIncidentsServiceException {
276
+ static {
277
+ __name(this, "AccessDeniedException");
278
+ }
279
+ name = "AccessDeniedException";
280
+ $fault = "client";
270
281
  /**
271
282
  * @internal
272
283
  */
@@ -276,13 +287,9 @@ var _AccessDeniedException = class _AccessDeniedException extends SSMIncidentsSe
276
287
  $fault: "client",
277
288
  ...opts
278
289
  });
279
- this.name = "AccessDeniedException";
280
- this.$fault = "client";
281
290
  Object.setPrototypeOf(this, _AccessDeniedException.prototype);
282
291
  }
283
292
  };
284
- __name(_AccessDeniedException, "AccessDeniedException");
285
- var AccessDeniedException = _AccessDeniedException;
286
293
  var VariableType = {
287
294
  INCIDENT_RECORD_ARN: "INCIDENT_RECORD_ARN",
288
295
  INVOLVED_RESOURCES: "INVOLVED_RESOURCES"
@@ -335,7 +342,12 @@ var FindingDetails;
335
342
  return visitor._(value.$unknown[0], value.$unknown[1]);
336
343
  }, "visit");
337
344
  })(FindingDetails || (FindingDetails = {}));
338
- var _InternalServerException = class _InternalServerException extends SSMIncidentsServiceException {
345
+ var InternalServerException = class _InternalServerException extends SSMIncidentsServiceException {
346
+ static {
347
+ __name(this, "InternalServerException");
348
+ }
349
+ name = "InternalServerException";
350
+ $fault = "server";
339
351
  /**
340
352
  * @internal
341
353
  */
@@ -345,13 +357,9 @@ var _InternalServerException = class _InternalServerException extends SSMInciden
345
357
  $fault: "server",
346
358
  ...opts
347
359
  });
348
- this.name = "InternalServerException";
349
- this.$fault = "server";
350
360
  Object.setPrototypeOf(this, _InternalServerException.prototype);
351
361
  }
352
362
  };
353
- __name(_InternalServerException, "InternalServerException");
354
- var InternalServerException = _InternalServerException;
355
363
  var ResourceType = {
356
364
  INCIDENT_RECORD: "INCIDENT_RECORD",
357
365
  REPLICATION_SET: "REPLICATION_SET",
@@ -359,7 +367,22 @@ var ResourceType = {
359
367
  RESPONSE_PLAN: "RESPONSE_PLAN",
360
368
  TIMELINE_EVENT: "TIMELINE_EVENT"
361
369
  };
362
- var _ResourceNotFoundException = class _ResourceNotFoundException extends SSMIncidentsServiceException {
370
+ var ResourceNotFoundException = class _ResourceNotFoundException extends SSMIncidentsServiceException {
371
+ static {
372
+ __name(this, "ResourceNotFoundException");
373
+ }
374
+ name = "ResourceNotFoundException";
375
+ $fault = "client";
376
+ /**
377
+ * The identifier for the requested resource
378
+ * @public
379
+ */
380
+ resourceIdentifier;
381
+ /**
382
+ * The resource type
383
+ * @public
384
+ */
385
+ resourceType;
363
386
  /**
364
387
  * @internal
365
388
  */
@@ -369,19 +392,30 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends SSMInc
369
392
  $fault: "client",
370
393
  ...opts
371
394
  });
372
- this.name = "ResourceNotFoundException";
373
- this.$fault = "client";
374
395
  Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
375
396
  this.resourceIdentifier = opts.resourceIdentifier;
376
397
  this.resourceType = opts.resourceType;
377
398
  }
378
399
  };
379
- __name(_ResourceNotFoundException, "ResourceNotFoundException");
380
- var ResourceNotFoundException = _ResourceNotFoundException;
381
400
  var ServiceCode = {
382
401
  SSM_INCIDENTS: "ssm-incidents"
383
402
  };
384
- var _ThrottlingException = class _ThrottlingException extends SSMIncidentsServiceException {
403
+ var ThrottlingException = class _ThrottlingException extends SSMIncidentsServiceException {
404
+ static {
405
+ __name(this, "ThrottlingException");
406
+ }
407
+ name = "ThrottlingException";
408
+ $fault = "client";
409
+ /**
410
+ * Originating service code
411
+ * @public
412
+ */
413
+ serviceCode;
414
+ /**
415
+ * Originating quota code
416
+ * @public
417
+ */
418
+ quotaCode;
385
419
  /**
386
420
  * @internal
387
421
  */
@@ -391,16 +425,17 @@ var _ThrottlingException = class _ThrottlingException extends SSMIncidentsServic
391
425
  $fault: "client",
392
426
  ...opts
393
427
  });
394
- this.name = "ThrottlingException";
395
- this.$fault = "client";
396
428
  Object.setPrototypeOf(this, _ThrottlingException.prototype);
397
429
  this.serviceCode = opts.serviceCode;
398
430
  this.quotaCode = opts.quotaCode;
399
431
  }
400
432
  };
401
- __name(_ThrottlingException, "ThrottlingException");
402
- var ThrottlingException = _ThrottlingException;
403
- var _ValidationException = class _ValidationException extends SSMIncidentsServiceException {
433
+ var ValidationException = class _ValidationException extends SSMIncidentsServiceException {
434
+ static {
435
+ __name(this, "ValidationException");
436
+ }
437
+ name = "ValidationException";
438
+ $fault = "client";
404
439
  /**
405
440
  * @internal
406
441
  */
@@ -410,13 +445,9 @@ var _ValidationException = class _ValidationException extends SSMIncidentsServic
410
445
  $fault: "client",
411
446
  ...opts
412
447
  });
413
- this.name = "ValidationException";
414
- this.$fault = "client";
415
448
  Object.setPrototypeOf(this, _ValidationException.prototype);
416
449
  }
417
450
  };
418
- __name(_ValidationException, "ValidationException");
419
- var ValidationException = _ValidationException;
420
451
  var ChatChannel;
421
452
  ((ChatChannel3) => {
422
453
  ChatChannel3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -439,7 +470,27 @@ var Condition;
439
470
  return visitor._(value.$unknown[0], value.$unknown[1]);
440
471
  }, "visit");
441
472
  })(Condition || (Condition = {}));
442
- var _ConflictException = class _ConflictException extends SSMIncidentsServiceException {
473
+ var ConflictException = class _ConflictException extends SSMIncidentsServiceException {
474
+ static {
475
+ __name(this, "ConflictException");
476
+ }
477
+ name = "ConflictException";
478
+ $fault = "client";
479
+ /**
480
+ * The identifier of the requested resource
481
+ * @public
482
+ */
483
+ resourceIdentifier;
484
+ /**
485
+ * The resource type
486
+ * @public
487
+ */
488
+ resourceType;
489
+ /**
490
+ * If present in the output, the operation can be retried after this time
491
+ * @public
492
+ */
493
+ retryAfter;
443
494
  /**
444
495
  * @internal
445
496
  */
@@ -449,17 +500,38 @@ var _ConflictException = class _ConflictException extends SSMIncidentsServiceExc
449
500
  $fault: "client",
450
501
  ...opts
451
502
  });
452
- this.name = "ConflictException";
453
- this.$fault = "client";
454
503
  Object.setPrototypeOf(this, _ConflictException.prototype);
455
504
  this.resourceIdentifier = opts.resourceIdentifier;
456
505
  this.resourceType = opts.resourceType;
457
506
  this.retryAfter = opts.retryAfter;
458
507
  }
459
508
  };
460
- __name(_ConflictException, "ConflictException");
461
- var ConflictException = _ConflictException;
462
- var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extends SSMIncidentsServiceException {
509
+ var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends SSMIncidentsServiceException {
510
+ static {
511
+ __name(this, "ServiceQuotaExceededException");
512
+ }
513
+ name = "ServiceQuotaExceededException";
514
+ $fault = "client";
515
+ /**
516
+ * The identifier for the requested resource
517
+ * @public
518
+ */
519
+ resourceIdentifier;
520
+ /**
521
+ * The resource type
522
+ * @public
523
+ */
524
+ resourceType;
525
+ /**
526
+ * Originating service code
527
+ * @public
528
+ */
529
+ serviceCode;
530
+ /**
531
+ * Originating quota code
532
+ * @public
533
+ */
534
+ quotaCode;
463
535
  /**
464
536
  * @internal
465
537
  */
@@ -469,8 +541,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
469
541
  $fault: "client",
470
542
  ...opts
471
543
  });
472
- this.name = "ServiceQuotaExceededException";
473
- this.$fault = "client";
474
544
  Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
475
545
  this.resourceIdentifier = opts.resourceIdentifier;
476
546
  this.resourceType = opts.resourceType;
@@ -478,8 +548,6 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
478
548
  this.quotaCode = opts.quotaCode;
479
549
  }
480
550
  };
481
- __name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
482
- var ServiceQuotaExceededException = _ServiceQuotaExceededException;
483
551
  var NotificationTargetItem;
484
552
  ((NotificationTargetItem3) => {
485
553
  NotificationTargetItem3.visit = /* @__PURE__ */ __name((value, visitor) => {
@@ -1837,435 +1905,466 @@ var _rA = "resourceArn";
1837
1905
  var _tK = "tagKeys";
1838
1906
 
1839
1907
  // src/commands/BatchGetIncidentFindingsCommand.ts
1840
- var _BatchGetIncidentFindingsCommand = class _BatchGetIncidentFindingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1908
+ var BatchGetIncidentFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1841
1909
  return [
1842
1910
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1843
1911
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1844
1912
  ];
1845
1913
  }).s("SSMIncidents", "BatchGetIncidentFindings", {}).n("SSMIncidentsClient", "BatchGetIncidentFindingsCommand").f(void 0, void 0).ser(se_BatchGetIncidentFindingsCommand).de(de_BatchGetIncidentFindingsCommand).build() {
1914
+ static {
1915
+ __name(this, "BatchGetIncidentFindingsCommand");
1916
+ }
1846
1917
  };
1847
- __name(_BatchGetIncidentFindingsCommand, "BatchGetIncidentFindingsCommand");
1848
- var BatchGetIncidentFindingsCommand = _BatchGetIncidentFindingsCommand;
1849
1918
 
1850
1919
  // src/commands/CreateReplicationSetCommand.ts
1851
1920
 
1852
1921
 
1853
1922
 
1854
- var _CreateReplicationSetCommand = class _CreateReplicationSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1923
+ var CreateReplicationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1855
1924
  return [
1856
1925
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1857
1926
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1858
1927
  ];
1859
1928
  }).s("SSMIncidents", "CreateReplicationSet", {}).n("SSMIncidentsClient", "CreateReplicationSetCommand").f(void 0, void 0).ser(se_CreateReplicationSetCommand).de(de_CreateReplicationSetCommand).build() {
1929
+ static {
1930
+ __name(this, "CreateReplicationSetCommand");
1931
+ }
1860
1932
  };
1861
- __name(_CreateReplicationSetCommand, "CreateReplicationSetCommand");
1862
- var CreateReplicationSetCommand = _CreateReplicationSetCommand;
1863
1933
 
1864
1934
  // src/commands/CreateResponsePlanCommand.ts
1865
1935
 
1866
1936
 
1867
1937
 
1868
- var _CreateResponsePlanCommand = class _CreateResponsePlanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1938
+ var CreateResponsePlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1869
1939
  return [
1870
1940
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1871
1941
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1872
1942
  ];
1873
1943
  }).s("SSMIncidents", "CreateResponsePlan", {}).n("SSMIncidentsClient", "CreateResponsePlanCommand").f(void 0, void 0).ser(se_CreateResponsePlanCommand).de(de_CreateResponsePlanCommand).build() {
1944
+ static {
1945
+ __name(this, "CreateResponsePlanCommand");
1946
+ }
1874
1947
  };
1875
- __name(_CreateResponsePlanCommand, "CreateResponsePlanCommand");
1876
- var CreateResponsePlanCommand = _CreateResponsePlanCommand;
1877
1948
 
1878
1949
  // src/commands/CreateTimelineEventCommand.ts
1879
1950
 
1880
1951
 
1881
1952
 
1882
- var _CreateTimelineEventCommand = class _CreateTimelineEventCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1953
+ var CreateTimelineEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1883
1954
  return [
1884
1955
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1885
1956
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1886
1957
  ];
1887
1958
  }).s("SSMIncidents", "CreateTimelineEvent", {}).n("SSMIncidentsClient", "CreateTimelineEventCommand").f(void 0, void 0).ser(se_CreateTimelineEventCommand).de(de_CreateTimelineEventCommand).build() {
1959
+ static {
1960
+ __name(this, "CreateTimelineEventCommand");
1961
+ }
1888
1962
  };
1889
- __name(_CreateTimelineEventCommand, "CreateTimelineEventCommand");
1890
- var CreateTimelineEventCommand = _CreateTimelineEventCommand;
1891
1963
 
1892
1964
  // src/commands/DeleteIncidentRecordCommand.ts
1893
1965
 
1894
1966
 
1895
1967
 
1896
- var _DeleteIncidentRecordCommand = class _DeleteIncidentRecordCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1968
+ var DeleteIncidentRecordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1897
1969
  return [
1898
1970
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1899
1971
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1900
1972
  ];
1901
1973
  }).s("SSMIncidents", "DeleteIncidentRecord", {}).n("SSMIncidentsClient", "DeleteIncidentRecordCommand").f(void 0, void 0).ser(se_DeleteIncidentRecordCommand).de(de_DeleteIncidentRecordCommand).build() {
1974
+ static {
1975
+ __name(this, "DeleteIncidentRecordCommand");
1976
+ }
1902
1977
  };
1903
- __name(_DeleteIncidentRecordCommand, "DeleteIncidentRecordCommand");
1904
- var DeleteIncidentRecordCommand = _DeleteIncidentRecordCommand;
1905
1978
 
1906
1979
  // src/commands/DeleteReplicationSetCommand.ts
1907
1980
 
1908
1981
 
1909
1982
 
1910
- var _DeleteReplicationSetCommand = class _DeleteReplicationSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1983
+ var DeleteReplicationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1911
1984
  return [
1912
1985
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1913
1986
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1914
1987
  ];
1915
1988
  }).s("SSMIncidents", "DeleteReplicationSet", {}).n("SSMIncidentsClient", "DeleteReplicationSetCommand").f(void 0, void 0).ser(se_DeleteReplicationSetCommand).de(de_DeleteReplicationSetCommand).build() {
1989
+ static {
1990
+ __name(this, "DeleteReplicationSetCommand");
1991
+ }
1916
1992
  };
1917
- __name(_DeleteReplicationSetCommand, "DeleteReplicationSetCommand");
1918
- var DeleteReplicationSetCommand = _DeleteReplicationSetCommand;
1919
1993
 
1920
1994
  // src/commands/DeleteResourcePolicyCommand.ts
1921
1995
 
1922
1996
 
1923
1997
 
1924
- var _DeleteResourcePolicyCommand = class _DeleteResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1998
+ var DeleteResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1925
1999
  return [
1926
2000
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1927
2001
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1928
2002
  ];
1929
2003
  }).s("SSMIncidents", "DeleteResourcePolicy", {}).n("SSMIncidentsClient", "DeleteResourcePolicyCommand").f(void 0, void 0).ser(se_DeleteResourcePolicyCommand).de(de_DeleteResourcePolicyCommand).build() {
2004
+ static {
2005
+ __name(this, "DeleteResourcePolicyCommand");
2006
+ }
1930
2007
  };
1931
- __name(_DeleteResourcePolicyCommand, "DeleteResourcePolicyCommand");
1932
- var DeleteResourcePolicyCommand = _DeleteResourcePolicyCommand;
1933
2008
 
1934
2009
  // src/commands/DeleteResponsePlanCommand.ts
1935
2010
 
1936
2011
 
1937
2012
 
1938
- var _DeleteResponsePlanCommand = class _DeleteResponsePlanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2013
+ var DeleteResponsePlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1939
2014
  return [
1940
2015
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1941
2016
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1942
2017
  ];
1943
2018
  }).s("SSMIncidents", "DeleteResponsePlan", {}).n("SSMIncidentsClient", "DeleteResponsePlanCommand").f(void 0, void 0).ser(se_DeleteResponsePlanCommand).de(de_DeleteResponsePlanCommand).build() {
2019
+ static {
2020
+ __name(this, "DeleteResponsePlanCommand");
2021
+ }
1944
2022
  };
1945
- __name(_DeleteResponsePlanCommand, "DeleteResponsePlanCommand");
1946
- var DeleteResponsePlanCommand = _DeleteResponsePlanCommand;
1947
2023
 
1948
2024
  // src/commands/DeleteTimelineEventCommand.ts
1949
2025
 
1950
2026
 
1951
2027
 
1952
- var _DeleteTimelineEventCommand = class _DeleteTimelineEventCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2028
+ var DeleteTimelineEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1953
2029
  return [
1954
2030
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1955
2031
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1956
2032
  ];
1957
2033
  }).s("SSMIncidents", "DeleteTimelineEvent", {}).n("SSMIncidentsClient", "DeleteTimelineEventCommand").f(void 0, void 0).ser(se_DeleteTimelineEventCommand).de(de_DeleteTimelineEventCommand).build() {
2034
+ static {
2035
+ __name(this, "DeleteTimelineEventCommand");
2036
+ }
1958
2037
  };
1959
- __name(_DeleteTimelineEventCommand, "DeleteTimelineEventCommand");
1960
- var DeleteTimelineEventCommand = _DeleteTimelineEventCommand;
1961
2038
 
1962
2039
  // src/commands/GetIncidentRecordCommand.ts
1963
2040
 
1964
2041
 
1965
2042
 
1966
- var _GetIncidentRecordCommand = class _GetIncidentRecordCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2043
+ var GetIncidentRecordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1967
2044
  return [
1968
2045
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1969
2046
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1970
2047
  ];
1971
2048
  }).s("SSMIncidents", "GetIncidentRecord", {}).n("SSMIncidentsClient", "GetIncidentRecordCommand").f(void 0, void 0).ser(se_GetIncidentRecordCommand).de(de_GetIncidentRecordCommand).build() {
2049
+ static {
2050
+ __name(this, "GetIncidentRecordCommand");
2051
+ }
1972
2052
  };
1973
- __name(_GetIncidentRecordCommand, "GetIncidentRecordCommand");
1974
- var GetIncidentRecordCommand = _GetIncidentRecordCommand;
1975
2053
 
1976
2054
  // src/commands/GetReplicationSetCommand.ts
1977
2055
 
1978
2056
 
1979
2057
 
1980
- var _GetReplicationSetCommand = class _GetReplicationSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2058
+ var GetReplicationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1981
2059
  return [
1982
2060
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1983
2061
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1984
2062
  ];
1985
2063
  }).s("SSMIncidents", "GetReplicationSet", {}).n("SSMIncidentsClient", "GetReplicationSetCommand").f(void 0, void 0).ser(se_GetReplicationSetCommand).de(de_GetReplicationSetCommand).build() {
2064
+ static {
2065
+ __name(this, "GetReplicationSetCommand");
2066
+ }
1986
2067
  };
1987
- __name(_GetReplicationSetCommand, "GetReplicationSetCommand");
1988
- var GetReplicationSetCommand = _GetReplicationSetCommand;
1989
2068
 
1990
2069
  // src/commands/GetResourcePoliciesCommand.ts
1991
2070
 
1992
2071
 
1993
2072
 
1994
- var _GetResourcePoliciesCommand = class _GetResourcePoliciesCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2073
+ var GetResourcePoliciesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
1995
2074
  return [
1996
2075
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
1997
2076
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
1998
2077
  ];
1999
2078
  }).s("SSMIncidents", "GetResourcePolicies", {}).n("SSMIncidentsClient", "GetResourcePoliciesCommand").f(void 0, void 0).ser(se_GetResourcePoliciesCommand).de(de_GetResourcePoliciesCommand).build() {
2079
+ static {
2080
+ __name(this, "GetResourcePoliciesCommand");
2081
+ }
2000
2082
  };
2001
- __name(_GetResourcePoliciesCommand, "GetResourcePoliciesCommand");
2002
- var GetResourcePoliciesCommand = _GetResourcePoliciesCommand;
2003
2083
 
2004
2084
  // src/commands/GetResponsePlanCommand.ts
2005
2085
 
2006
2086
 
2007
2087
 
2008
- var _GetResponsePlanCommand = class _GetResponsePlanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2088
+ var GetResponsePlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2009
2089
  return [
2010
2090
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2011
2091
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2012
2092
  ];
2013
2093
  }).s("SSMIncidents", "GetResponsePlan", {}).n("SSMIncidentsClient", "GetResponsePlanCommand").f(void 0, void 0).ser(se_GetResponsePlanCommand).de(de_GetResponsePlanCommand).build() {
2094
+ static {
2095
+ __name(this, "GetResponsePlanCommand");
2096
+ }
2014
2097
  };
2015
- __name(_GetResponsePlanCommand, "GetResponsePlanCommand");
2016
- var GetResponsePlanCommand = _GetResponsePlanCommand;
2017
2098
 
2018
2099
  // src/commands/GetTimelineEventCommand.ts
2019
2100
 
2020
2101
 
2021
2102
 
2022
- var _GetTimelineEventCommand = class _GetTimelineEventCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2103
+ var GetTimelineEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2023
2104
  return [
2024
2105
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2025
2106
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2026
2107
  ];
2027
2108
  }).s("SSMIncidents", "GetTimelineEvent", {}).n("SSMIncidentsClient", "GetTimelineEventCommand").f(void 0, void 0).ser(se_GetTimelineEventCommand).de(de_GetTimelineEventCommand).build() {
2109
+ static {
2110
+ __name(this, "GetTimelineEventCommand");
2111
+ }
2028
2112
  };
2029
- __name(_GetTimelineEventCommand, "GetTimelineEventCommand");
2030
- var GetTimelineEventCommand = _GetTimelineEventCommand;
2031
2113
 
2032
2114
  // src/commands/ListIncidentFindingsCommand.ts
2033
2115
 
2034
2116
 
2035
2117
 
2036
- var _ListIncidentFindingsCommand = class _ListIncidentFindingsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2118
+ var ListIncidentFindingsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2037
2119
  return [
2038
2120
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2039
2121
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2040
2122
  ];
2041
2123
  }).s("SSMIncidents", "ListIncidentFindings", {}).n("SSMIncidentsClient", "ListIncidentFindingsCommand").f(void 0, void 0).ser(se_ListIncidentFindingsCommand).de(de_ListIncidentFindingsCommand).build() {
2124
+ static {
2125
+ __name(this, "ListIncidentFindingsCommand");
2126
+ }
2042
2127
  };
2043
- __name(_ListIncidentFindingsCommand, "ListIncidentFindingsCommand");
2044
- var ListIncidentFindingsCommand = _ListIncidentFindingsCommand;
2045
2128
 
2046
2129
  // src/commands/ListIncidentRecordsCommand.ts
2047
2130
 
2048
2131
 
2049
2132
 
2050
- var _ListIncidentRecordsCommand = class _ListIncidentRecordsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2133
+ var ListIncidentRecordsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2051
2134
  return [
2052
2135
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2053
2136
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2054
2137
  ];
2055
2138
  }).s("SSMIncidents", "ListIncidentRecords", {}).n("SSMIncidentsClient", "ListIncidentRecordsCommand").f(void 0, void 0).ser(se_ListIncidentRecordsCommand).de(de_ListIncidentRecordsCommand).build() {
2139
+ static {
2140
+ __name(this, "ListIncidentRecordsCommand");
2141
+ }
2056
2142
  };
2057
- __name(_ListIncidentRecordsCommand, "ListIncidentRecordsCommand");
2058
- var ListIncidentRecordsCommand = _ListIncidentRecordsCommand;
2059
2143
 
2060
2144
  // src/commands/ListRelatedItemsCommand.ts
2061
2145
 
2062
2146
 
2063
2147
 
2064
- var _ListRelatedItemsCommand = class _ListRelatedItemsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2148
+ var ListRelatedItemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2065
2149
  return [
2066
2150
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2067
2151
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2068
2152
  ];
2069
2153
  }).s("SSMIncidents", "ListRelatedItems", {}).n("SSMIncidentsClient", "ListRelatedItemsCommand").f(void 0, void 0).ser(se_ListRelatedItemsCommand).de(de_ListRelatedItemsCommand).build() {
2154
+ static {
2155
+ __name(this, "ListRelatedItemsCommand");
2156
+ }
2070
2157
  };
2071
- __name(_ListRelatedItemsCommand, "ListRelatedItemsCommand");
2072
- var ListRelatedItemsCommand = _ListRelatedItemsCommand;
2073
2158
 
2074
2159
  // src/commands/ListReplicationSetsCommand.ts
2075
2160
 
2076
2161
 
2077
2162
 
2078
- var _ListReplicationSetsCommand = class _ListReplicationSetsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2163
+ var ListReplicationSetsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2079
2164
  return [
2080
2165
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2081
2166
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2082
2167
  ];
2083
2168
  }).s("SSMIncidents", "ListReplicationSets", {}).n("SSMIncidentsClient", "ListReplicationSetsCommand").f(void 0, void 0).ser(se_ListReplicationSetsCommand).de(de_ListReplicationSetsCommand).build() {
2169
+ static {
2170
+ __name(this, "ListReplicationSetsCommand");
2171
+ }
2084
2172
  };
2085
- __name(_ListReplicationSetsCommand, "ListReplicationSetsCommand");
2086
- var ListReplicationSetsCommand = _ListReplicationSetsCommand;
2087
2173
 
2088
2174
  // src/commands/ListResponsePlansCommand.ts
2089
2175
 
2090
2176
 
2091
2177
 
2092
- var _ListResponsePlansCommand = class _ListResponsePlansCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2178
+ var ListResponsePlansCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2093
2179
  return [
2094
2180
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2095
2181
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2096
2182
  ];
2097
2183
  }).s("SSMIncidents", "ListResponsePlans", {}).n("SSMIncidentsClient", "ListResponsePlansCommand").f(void 0, void 0).ser(se_ListResponsePlansCommand).de(de_ListResponsePlansCommand).build() {
2184
+ static {
2185
+ __name(this, "ListResponsePlansCommand");
2186
+ }
2098
2187
  };
2099
- __name(_ListResponsePlansCommand, "ListResponsePlansCommand");
2100
- var ListResponsePlansCommand = _ListResponsePlansCommand;
2101
2188
 
2102
2189
  // src/commands/ListTagsForResourceCommand.ts
2103
2190
 
2104
2191
 
2105
2192
 
2106
- var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2193
+ var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2107
2194
  return [
2108
2195
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2109
2196
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2110
2197
  ];
2111
2198
  }).s("SSMIncidents", "ListTagsForResource", {}).n("SSMIncidentsClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
2199
+ static {
2200
+ __name(this, "ListTagsForResourceCommand");
2201
+ }
2112
2202
  };
2113
- __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
2114
- var ListTagsForResourceCommand = _ListTagsForResourceCommand;
2115
2203
 
2116
2204
  // src/commands/ListTimelineEventsCommand.ts
2117
2205
 
2118
2206
 
2119
2207
 
2120
- var _ListTimelineEventsCommand = class _ListTimelineEventsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2208
+ var ListTimelineEventsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2121
2209
  return [
2122
2210
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2123
2211
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2124
2212
  ];
2125
2213
  }).s("SSMIncidents", "ListTimelineEvents", {}).n("SSMIncidentsClient", "ListTimelineEventsCommand").f(void 0, void 0).ser(se_ListTimelineEventsCommand).de(de_ListTimelineEventsCommand).build() {
2214
+ static {
2215
+ __name(this, "ListTimelineEventsCommand");
2216
+ }
2126
2217
  };
2127
- __name(_ListTimelineEventsCommand, "ListTimelineEventsCommand");
2128
- var ListTimelineEventsCommand = _ListTimelineEventsCommand;
2129
2218
 
2130
2219
  // src/commands/PutResourcePolicyCommand.ts
2131
2220
 
2132
2221
 
2133
2222
 
2134
- var _PutResourcePolicyCommand = class _PutResourcePolicyCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2223
+ var PutResourcePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2135
2224
  return [
2136
2225
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2137
2226
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2138
2227
  ];
2139
2228
  }).s("SSMIncidents", "PutResourcePolicy", {}).n("SSMIncidentsClient", "PutResourcePolicyCommand").f(void 0, void 0).ser(se_PutResourcePolicyCommand).de(de_PutResourcePolicyCommand).build() {
2229
+ static {
2230
+ __name(this, "PutResourcePolicyCommand");
2231
+ }
2140
2232
  };
2141
- __name(_PutResourcePolicyCommand, "PutResourcePolicyCommand");
2142
- var PutResourcePolicyCommand = _PutResourcePolicyCommand;
2143
2233
 
2144
2234
  // src/commands/StartIncidentCommand.ts
2145
2235
 
2146
2236
 
2147
2237
 
2148
- var _StartIncidentCommand = class _StartIncidentCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2238
+ var StartIncidentCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2149
2239
  return [
2150
2240
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2151
2241
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2152
2242
  ];
2153
2243
  }).s("SSMIncidents", "StartIncident", {}).n("SSMIncidentsClient", "StartIncidentCommand").f(void 0, void 0).ser(se_StartIncidentCommand).de(de_StartIncidentCommand).build() {
2244
+ static {
2245
+ __name(this, "StartIncidentCommand");
2246
+ }
2154
2247
  };
2155
- __name(_StartIncidentCommand, "StartIncidentCommand");
2156
- var StartIncidentCommand = _StartIncidentCommand;
2157
2248
 
2158
2249
  // src/commands/TagResourceCommand.ts
2159
2250
 
2160
2251
 
2161
2252
 
2162
- var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2253
+ var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2163
2254
  return [
2164
2255
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2165
2256
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2166
2257
  ];
2167
2258
  }).s("SSMIncidents", "TagResource", {}).n("SSMIncidentsClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
2259
+ static {
2260
+ __name(this, "TagResourceCommand");
2261
+ }
2168
2262
  };
2169
- __name(_TagResourceCommand, "TagResourceCommand");
2170
- var TagResourceCommand = _TagResourceCommand;
2171
2263
 
2172
2264
  // src/commands/UntagResourceCommand.ts
2173
2265
 
2174
2266
 
2175
2267
 
2176
- var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2268
+ var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2177
2269
  return [
2178
2270
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2179
2271
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2180
2272
  ];
2181
2273
  }).s("SSMIncidents", "UntagResource", {}).n("SSMIncidentsClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
2274
+ static {
2275
+ __name(this, "UntagResourceCommand");
2276
+ }
2182
2277
  };
2183
- __name(_UntagResourceCommand, "UntagResourceCommand");
2184
- var UntagResourceCommand = _UntagResourceCommand;
2185
2278
 
2186
2279
  // src/commands/UpdateDeletionProtectionCommand.ts
2187
2280
 
2188
2281
 
2189
2282
 
2190
- var _UpdateDeletionProtectionCommand = class _UpdateDeletionProtectionCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2283
+ var UpdateDeletionProtectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2191
2284
  return [
2192
2285
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2193
2286
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2194
2287
  ];
2195
2288
  }).s("SSMIncidents", "UpdateDeletionProtection", {}).n("SSMIncidentsClient", "UpdateDeletionProtectionCommand").f(void 0, void 0).ser(se_UpdateDeletionProtectionCommand).de(de_UpdateDeletionProtectionCommand).build() {
2289
+ static {
2290
+ __name(this, "UpdateDeletionProtectionCommand");
2291
+ }
2196
2292
  };
2197
- __name(_UpdateDeletionProtectionCommand, "UpdateDeletionProtectionCommand");
2198
- var UpdateDeletionProtectionCommand = _UpdateDeletionProtectionCommand;
2199
2293
 
2200
2294
  // src/commands/UpdateIncidentRecordCommand.ts
2201
2295
 
2202
2296
 
2203
2297
 
2204
- var _UpdateIncidentRecordCommand = class _UpdateIncidentRecordCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2298
+ var UpdateIncidentRecordCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2205
2299
  return [
2206
2300
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2207
2301
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2208
2302
  ];
2209
2303
  }).s("SSMIncidents", "UpdateIncidentRecord", {}).n("SSMIncidentsClient", "UpdateIncidentRecordCommand").f(void 0, void 0).ser(se_UpdateIncidentRecordCommand).de(de_UpdateIncidentRecordCommand).build() {
2304
+ static {
2305
+ __name(this, "UpdateIncidentRecordCommand");
2306
+ }
2210
2307
  };
2211
- __name(_UpdateIncidentRecordCommand, "UpdateIncidentRecordCommand");
2212
- var UpdateIncidentRecordCommand = _UpdateIncidentRecordCommand;
2213
2308
 
2214
2309
  // src/commands/UpdateRelatedItemsCommand.ts
2215
2310
 
2216
2311
 
2217
2312
 
2218
- var _UpdateRelatedItemsCommand = class _UpdateRelatedItemsCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2313
+ var UpdateRelatedItemsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2219
2314
  return [
2220
2315
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2221
2316
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2222
2317
  ];
2223
2318
  }).s("SSMIncidents", "UpdateRelatedItems", {}).n("SSMIncidentsClient", "UpdateRelatedItemsCommand").f(void 0, void 0).ser(se_UpdateRelatedItemsCommand).de(de_UpdateRelatedItemsCommand).build() {
2319
+ static {
2320
+ __name(this, "UpdateRelatedItemsCommand");
2321
+ }
2224
2322
  };
2225
- __name(_UpdateRelatedItemsCommand, "UpdateRelatedItemsCommand");
2226
- var UpdateRelatedItemsCommand = _UpdateRelatedItemsCommand;
2227
2323
 
2228
2324
  // src/commands/UpdateReplicationSetCommand.ts
2229
2325
 
2230
2326
 
2231
2327
 
2232
- var _UpdateReplicationSetCommand = class _UpdateReplicationSetCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2328
+ var UpdateReplicationSetCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2233
2329
  return [
2234
2330
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2235
2331
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2236
2332
  ];
2237
2333
  }).s("SSMIncidents", "UpdateReplicationSet", {}).n("SSMIncidentsClient", "UpdateReplicationSetCommand").f(void 0, void 0).ser(se_UpdateReplicationSetCommand).de(de_UpdateReplicationSetCommand).build() {
2334
+ static {
2335
+ __name(this, "UpdateReplicationSetCommand");
2336
+ }
2238
2337
  };
2239
- __name(_UpdateReplicationSetCommand, "UpdateReplicationSetCommand");
2240
- var UpdateReplicationSetCommand = _UpdateReplicationSetCommand;
2241
2338
 
2242
2339
  // src/commands/UpdateResponsePlanCommand.ts
2243
2340
 
2244
2341
 
2245
2342
 
2246
- var _UpdateResponsePlanCommand = class _UpdateResponsePlanCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2343
+ var UpdateResponsePlanCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2247
2344
  return [
2248
2345
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2249
2346
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2250
2347
  ];
2251
2348
  }).s("SSMIncidents", "UpdateResponsePlan", {}).n("SSMIncidentsClient", "UpdateResponsePlanCommand").f(void 0, void 0).ser(se_UpdateResponsePlanCommand).de(de_UpdateResponsePlanCommand).build() {
2349
+ static {
2350
+ __name(this, "UpdateResponsePlanCommand");
2351
+ }
2252
2352
  };
2253
- __name(_UpdateResponsePlanCommand, "UpdateResponsePlanCommand");
2254
- var UpdateResponsePlanCommand = _UpdateResponsePlanCommand;
2255
2353
 
2256
2354
  // src/commands/UpdateTimelineEventCommand.ts
2257
2355
 
2258
2356
 
2259
2357
 
2260
- var _UpdateTimelineEventCommand = class _UpdateTimelineEventCommand extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2358
+ var UpdateTimelineEventCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
2261
2359
  return [
2262
2360
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
2263
2361
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
2264
2362
  ];
2265
2363
  }).s("SSMIncidents", "UpdateTimelineEvent", {}).n("SSMIncidentsClient", "UpdateTimelineEventCommand").f(void 0, void 0).ser(se_UpdateTimelineEventCommand).de(de_UpdateTimelineEventCommand).build() {
2364
+ static {
2365
+ __name(this, "UpdateTimelineEventCommand");
2366
+ }
2266
2367
  };
2267
- __name(_UpdateTimelineEventCommand, "UpdateTimelineEventCommand");
2268
- var UpdateTimelineEventCommand = _UpdateTimelineEventCommand;
2269
2368
 
2270
2369
  // src/SSMIncidents.ts
2271
2370
  var commands = {
@@ -2301,10 +2400,11 @@ var commands = {
2301
2400
  UpdateResponsePlanCommand,
2302
2401
  UpdateTimelineEventCommand
2303
2402
  };
2304
- var _SSMIncidents = class _SSMIncidents extends SSMIncidentsClient {
2403
+ var SSMIncidents = class extends SSMIncidentsClient {
2404
+ static {
2405
+ __name(this, "SSMIncidents");
2406
+ }
2305
2407
  };
2306
- __name(_SSMIncidents, "SSMIncidents");
2307
- var SSMIncidents = _SSMIncidents;
2308
2408
  (0, import_smithy_client.createAggregatedClient)(commands, SSMIncidents);
2309
2409
 
2310
2410
  // src/pagination/GetResourcePoliciesPaginator.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 SSMIncidentsClient extends __Client {
17
+ config;
17
18
  constructor(...[configuration]) {
18
19
  const _config_0 = __getRuntimeConfig(configuration || {});
19
20
  const _config_1 = resolveClientEndpointParameters(_config_0);
@@ -1,13 +1,13 @@
1
1
  import { SSMIncidentsServiceException as __BaseException } from "./SSMIncidentsServiceException";
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
  }
@@ -64,14 +64,14 @@ export var FindingDetails;
64
64
  };
65
65
  })(FindingDetails || (FindingDetails = {}));
66
66
  export class InternalServerException extends __BaseException {
67
+ name = "InternalServerException";
68
+ $fault = "server";
67
69
  constructor(opts) {
68
70
  super({
69
71
  name: "InternalServerException",
70
72
  $fault: "server",
71
73
  ...opts,
72
74
  });
73
- this.name = "InternalServerException";
74
- this.$fault = "server";
75
75
  Object.setPrototypeOf(this, InternalServerException.prototype);
76
76
  }
77
77
  }
@@ -83,14 +83,16 @@ export const ResourceType = {
83
83
  TIMELINE_EVENT: "TIMELINE_EVENT",
84
84
  };
85
85
  export class ResourceNotFoundException extends __BaseException {
86
+ name = "ResourceNotFoundException";
87
+ $fault = "client";
88
+ resourceIdentifier;
89
+ resourceType;
86
90
  constructor(opts) {
87
91
  super({
88
92
  name: "ResourceNotFoundException",
89
93
  $fault: "client",
90
94
  ...opts,
91
95
  });
92
- this.name = "ResourceNotFoundException";
93
- this.$fault = "client";
94
96
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
95
97
  this.resourceIdentifier = opts.resourceIdentifier;
96
98
  this.resourceType = opts.resourceType;
@@ -100,28 +102,30 @@ export const ServiceCode = {
100
102
  SSM_INCIDENTS: "ssm-incidents",
101
103
  };
102
104
  export class ThrottlingException extends __BaseException {
105
+ name = "ThrottlingException";
106
+ $fault = "client";
107
+ serviceCode;
108
+ quotaCode;
103
109
  constructor(opts) {
104
110
  super({
105
111
  name: "ThrottlingException",
106
112
  $fault: "client",
107
113
  ...opts,
108
114
  });
109
- this.name = "ThrottlingException";
110
- this.$fault = "client";
111
115
  Object.setPrototypeOf(this, ThrottlingException.prototype);
112
116
  this.serviceCode = opts.serviceCode;
113
117
  this.quotaCode = opts.quotaCode;
114
118
  }
115
119
  }
116
120
  export class ValidationException extends __BaseException {
121
+ name = "ValidationException";
122
+ $fault = "client";
117
123
  constructor(opts) {
118
124
  super({
119
125
  name: "ValidationException",
120
126
  $fault: "client",
121
127
  ...opts,
122
128
  });
123
- this.name = "ValidationException";
124
- this.$fault = "client";
125
129
  Object.setPrototypeOf(this, ValidationException.prototype);
126
130
  }
127
131
  }
@@ -148,14 +152,17 @@ export var Condition;
148
152
  };
149
153
  })(Condition || (Condition = {}));
150
154
  export class ConflictException extends __BaseException {
155
+ name = "ConflictException";
156
+ $fault = "client";
157
+ resourceIdentifier;
158
+ resourceType;
159
+ retryAfter;
151
160
  constructor(opts) {
152
161
  super({
153
162
  name: "ConflictException",
154
163
  $fault: "client",
155
164
  ...opts,
156
165
  });
157
- this.name = "ConflictException";
158
- this.$fault = "client";
159
166
  Object.setPrototypeOf(this, ConflictException.prototype);
160
167
  this.resourceIdentifier = opts.resourceIdentifier;
161
168
  this.resourceType = opts.resourceType;
@@ -163,14 +170,18 @@ export class ConflictException extends __BaseException {
163
170
  }
164
171
  }
165
172
  export class ServiceQuotaExceededException extends __BaseException {
173
+ name = "ServiceQuotaExceededException";
174
+ $fault = "client";
175
+ resourceIdentifier;
176
+ resourceType;
177
+ serviceCode;
178
+ quotaCode;
166
179
  constructor(opts) {
167
180
  super({
168
181
  name: "ServiceQuotaExceededException",
169
182
  $fault: "client",
170
183
  ...opts,
171
184
  });
172
- this.name = "ServiceQuotaExceededException";
173
- this.$fault = "client";
174
185
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
175
186
  this.resourceIdentifier = opts.resourceIdentifier;
176
187
  this.resourceType = opts.resourceType;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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: SSMIncidentsClientConfig) => {
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-ssm-incidents",
3
3
  "description": "AWS SDK for JavaScript Ssm Incidents Client for Node.js, Browser and React Native",
4
- "version": "3.716.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-ssm-incidents",
@@ -20,59 +20,59 @@
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.716.0",
24
- "@aws-sdk/client-sts": "3.716.0",
25
- "@aws-sdk/core": "3.716.0",
26
- "@aws-sdk/credential-provider-node": "3.716.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.716.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.716.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",
61
- "@smithy/util-waiter": "^3.2.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
+ "@smithy/util-waiter": "^4.0.0",
62
62
  "@types/uuid": "^9.0.1",
63
63
  "tslib": "^2.6.2",
64
64
  "uuid": "^9.0.1"
65
65
  },
66
66
  "devDependencies": {
67
- "@tsconfig/node16": "16.1.3",
68
- "@types/node": "^16.18.96",
67
+ "@tsconfig/node18": "18.2.4",
68
+ "@types/node": "^18.19.69",
69
69
  "concurrently": "7.0.0",
70
70
  "downlevel-dts": "0.10.1",
71
71
  "rimraf": "3.0.2",
72
- "typescript": "~4.9.5"
72
+ "typescript": "~5.2.2"
73
73
  },
74
74
  "engines": {
75
- "node": ">=16.0.0"
75
+ "node": ">=18.0.0"
76
76
  },
77
77
  "typesVersions": {
78
78
  "<4.0": {