@aws-sdk/client-eventbridge 3.645.0 → 3.650.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.
Files changed (66) hide show
  1. package/dist-cjs/endpoint/endpointResolver.js +6 -2
  2. package/dist-cjs/index.js +56 -168
  3. package/dist-es/commands/ActivateEventSourceCommand.js +1 -3
  4. package/dist-es/commands/CancelReplayCommand.js +1 -3
  5. package/dist-es/commands/CreateApiDestinationCommand.js +1 -3
  6. package/dist-es/commands/CreateArchiveCommand.js +1 -3
  7. package/dist-es/commands/CreateConnectionCommand.js +1 -3
  8. package/dist-es/commands/CreateEndpointCommand.js +1 -3
  9. package/dist-es/commands/CreateEventBusCommand.js +1 -3
  10. package/dist-es/commands/CreatePartnerEventSourceCommand.js +1 -3
  11. package/dist-es/commands/DeactivateEventSourceCommand.js +1 -3
  12. package/dist-es/commands/DeauthorizeConnectionCommand.js +1 -3
  13. package/dist-es/commands/DeleteApiDestinationCommand.js +1 -3
  14. package/dist-es/commands/DeleteArchiveCommand.js +1 -3
  15. package/dist-es/commands/DeleteConnectionCommand.js +1 -3
  16. package/dist-es/commands/DeleteEndpointCommand.js +1 -3
  17. package/dist-es/commands/DeleteEventBusCommand.js +1 -3
  18. package/dist-es/commands/DeletePartnerEventSourceCommand.js +1 -3
  19. package/dist-es/commands/DeleteRuleCommand.js +1 -3
  20. package/dist-es/commands/DescribeApiDestinationCommand.js +1 -3
  21. package/dist-es/commands/DescribeArchiveCommand.js +1 -3
  22. package/dist-es/commands/DescribeConnectionCommand.js +1 -3
  23. package/dist-es/commands/DescribeEndpointCommand.js +1 -3
  24. package/dist-es/commands/DescribeEventBusCommand.js +1 -3
  25. package/dist-es/commands/DescribeEventSourceCommand.js +1 -3
  26. package/dist-es/commands/DescribePartnerEventSourceCommand.js +1 -3
  27. package/dist-es/commands/DescribeReplayCommand.js +1 -3
  28. package/dist-es/commands/DescribeRuleCommand.js +1 -3
  29. package/dist-es/commands/DisableRuleCommand.js +1 -3
  30. package/dist-es/commands/EnableRuleCommand.js +1 -3
  31. package/dist-es/commands/ListApiDestinationsCommand.js +1 -3
  32. package/dist-es/commands/ListArchivesCommand.js +1 -3
  33. package/dist-es/commands/ListConnectionsCommand.js +1 -3
  34. package/dist-es/commands/ListEndpointsCommand.js +1 -3
  35. package/dist-es/commands/ListEventBusesCommand.js +1 -3
  36. package/dist-es/commands/ListEventSourcesCommand.js +1 -3
  37. package/dist-es/commands/ListPartnerEventSourceAccountsCommand.js +1 -3
  38. package/dist-es/commands/ListPartnerEventSourcesCommand.js +1 -3
  39. package/dist-es/commands/ListReplaysCommand.js +1 -3
  40. package/dist-es/commands/ListRuleNamesByTargetCommand.js +1 -3
  41. package/dist-es/commands/ListRulesCommand.js +1 -3
  42. package/dist-es/commands/ListTagsForResourceCommand.js +1 -3
  43. package/dist-es/commands/ListTargetsByRuleCommand.js +1 -3
  44. package/dist-es/commands/PutPartnerEventsCommand.js +1 -3
  45. package/dist-es/commands/PutPermissionCommand.js +1 -3
  46. package/dist-es/commands/PutRuleCommand.js +1 -3
  47. package/dist-es/commands/PutTargetsCommand.js +1 -3
  48. package/dist-es/commands/RemovePermissionCommand.js +1 -3
  49. package/dist-es/commands/RemoveTargetsCommand.js +1 -3
  50. package/dist-es/commands/StartReplayCommand.js +1 -3
  51. package/dist-es/commands/TagResourceCommand.js +1 -3
  52. package/dist-es/commands/TestEventPatternCommand.js +1 -3
  53. package/dist-es/commands/UntagResourceCommand.js +1 -3
  54. package/dist-es/commands/UpdateApiDestinationCommand.js +1 -3
  55. package/dist-es/commands/UpdateArchiveCommand.js +1 -3
  56. package/dist-es/commands/UpdateConnectionCommand.js +1 -3
  57. package/dist-es/commands/UpdateEndpointCommand.js +1 -3
  58. package/dist-es/commands/UpdateEventBusCommand.js +1 -3
  59. package/dist-es/endpoint/endpointResolver.js +7 -3
  60. package/dist-types/runtimeConfig.browser.d.ts +2 -0
  61. package/dist-types/runtimeConfig.d.ts +2 -0
  62. package/dist-types/runtimeConfig.native.d.ts +2 -0
  63. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
  64. package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
  65. package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
  66. package/package.json +37 -37
@@ -6,9 +6,7 @@ import { de_CreateArchiveCommand, se_CreateArchiveCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class CreateArchiveCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_CreateConnectionCommand, se_CreateConnectionCommand } from "../proto
7
7
  export { $Command };
8
8
  export class CreateConnectionCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreateEndpointCommand, se_CreateEndpointCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class CreateEndpointCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreateEventBusCommand, se_CreateEventBusCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class CreateEventBusCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_CreatePartnerEventSourceCommand, se_CreatePartnerEventSourceCommand
6
6
  export { $Command };
7
7
  export class CreatePartnerEventSourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeactivateEventSourceCommand, se_DeactivateEventSourceCommand } from
6
6
  export { $Command };
7
7
  export class DeactivateEventSourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeauthorizeConnectionCommand, se_DeauthorizeConnectionCommand } from
6
6
  export { $Command };
7
7
  export class DeauthorizeConnectionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteApiDestinationCommand, se_DeleteApiDestinationCommand } from "
6
6
  export { $Command };
7
7
  export class DeleteApiDestinationCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteArchiveCommand, se_DeleteArchiveCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class DeleteArchiveCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteConnectionCommand, se_DeleteConnectionCommand } from "../proto
6
6
  export { $Command };
7
7
  export class DeleteConnectionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteEndpointCommand, se_DeleteEndpointCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DeleteEndpointCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteEventBusCommand, se_DeleteEventBusCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DeleteEventBusCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeletePartnerEventSourceCommand, se_DeletePartnerEventSourceCommand
6
6
  export { $Command };
7
7
  export class DeletePartnerEventSourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DeleteRuleCommand, se_DeleteRuleCommand } from "../protocols/Aws_jso
6
6
  export { $Command };
7
7
  export class DeleteRuleCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeApiDestinationCommand, se_DescribeApiDestinationCommand } fr
6
6
  export { $Command };
7
7
  export class DescribeApiDestinationCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeArchiveCommand, se_DescribeArchiveCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class DescribeArchiveCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_DescribeConnectionCommand, se_DescribeConnectionCommand } from "../p
7
7
  export { $Command };
8
8
  export class DescribeConnectionCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeEndpointCommand, se_DescribeEndpointCommand } from "../proto
6
6
  export { $Command };
7
7
  export class DescribeEndpointCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeEventBusCommand, se_DescribeEventBusCommand } from "../proto
6
6
  export { $Command };
7
7
  export class DescribeEventBusCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeEventSourceCommand, se_DescribeEventSourceCommand } from "..
6
6
  export { $Command };
7
7
  export class DescribeEventSourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribePartnerEventSourceCommand, se_DescribePartnerEventSourceComm
6
6
  export { $Command };
7
7
  export class DescribePartnerEventSourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeReplayCommand, se_DescribeReplayCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class DescribeReplayCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DescribeRuleCommand, se_DescribeRuleCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class DescribeRuleCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_DisableRuleCommand, se_DisableRuleCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class DisableRuleCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_EnableRuleCommand, se_EnableRuleCommand } from "../protocols/Aws_jso
6
6
  export { $Command };
7
7
  export class EnableRuleCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListApiDestinationsCommand, se_ListApiDestinationsCommand } from "..
6
6
  export { $Command };
7
7
  export class ListApiDestinationsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListArchivesCommand, se_ListArchivesCommand } from "../protocols/Aws
6
6
  export { $Command };
7
7
  export class ListArchivesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListConnectionsCommand, se_ListConnectionsCommand } from "../protoco
6
6
  export { $Command };
7
7
  export class ListConnectionsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListEndpointsCommand, se_ListEndpointsCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class ListEndpointsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListEventBusesCommand, se_ListEventBusesCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class ListEventBusesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListEventSourcesCommand, se_ListEventSourcesCommand } from "../proto
6
6
  export { $Command };
7
7
  export class ListEventSourcesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListPartnerEventSourceAccountsCommand, se_ListPartnerEventSourceAcco
6
6
  export { $Command };
7
7
  export class ListPartnerEventSourceAccountsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListPartnerEventSourcesCommand, se_ListPartnerEventSourcesCommand }
6
6
  export { $Command };
7
7
  export class ListPartnerEventSourcesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListReplaysCommand, se_ListReplaysCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class ListReplaysCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListRuleNamesByTargetCommand, se_ListRuleNamesByTargetCommand } from
6
6
  export { $Command };
7
7
  export class ListRuleNamesByTargetCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListRulesCommand, se_ListRulesCommand } from "../protocols/Aws_json1
6
6
  export { $Command };
7
7
  export class ListRulesCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "..
6
6
  export { $Command };
7
7
  export class ListTagsForResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_ListTargetsByRuleCommand, se_ListTargetsByRuleCommand } from "../pro
7
7
  export { $Command };
8
8
  export class ListTargetsByRuleCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_PutPartnerEventsCommand, se_PutPartnerEventsCommand } from "../proto
6
6
  export { $Command };
7
7
  export class PutPartnerEventsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_PutPermissionCommand, se_PutPermissionCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class PutPermissionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_PutRuleCommand, se_PutRuleCommand } from "../protocols/Aws_json1_1";
6
6
  export { $Command };
7
7
  export class PutRuleCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_PutTargetsCommand, se_PutTargetsCommand } from "../protocols/Aws_jso
7
7
  export { $Command };
8
8
  export class PutTargetsCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RemovePermissionCommand, se_RemovePermissionCommand } from "../proto
6
6
  export { $Command };
7
7
  export class RemovePermissionCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_RemoveTargetsCommand, se_RemoveTargetsCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class RemoveTargetsCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_StartReplayCommand, se_StartReplayCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class StartReplayCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_j
6
6
  export { $Command };
7
7
  export class TagResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_TestEventPatternCommand, se_TestEventPatternCommand } from "../proto
6
6
  export { $Command };
7
7
  export class TestEventPatternCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class UntagResourceCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UpdateApiDestinationCommand, se_UpdateApiDestinationCommand } from "
6
6
  export { $Command };
7
7
  export class UpdateApiDestinationCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UpdateArchiveCommand, se_UpdateArchiveCommand } from "../protocols/A
6
6
  export { $Command };
7
7
  export class UpdateArchiveCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -7,9 +7,7 @@ import { de_UpdateConnectionCommand, se_UpdateConnectionCommand } from "../proto
7
7
  export { $Command };
8
8
  export class UpdateConnectionCommand extends $Command
9
9
  .classBuilder()
10
- .ep({
11
- ...commonParams,
12
- })
10
+ .ep(commonParams)
13
11
  .m(function (Command, cs, config, o) {
14
12
  return [
15
13
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UpdateEndpointCommand, se_UpdateEndpointCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class UpdateEndpointCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),
@@ -6,9 +6,7 @@ import { de_UpdateEventBusCommand, se_UpdateEventBusCommand } from "../protocols
6
6
  export { $Command };
7
7
  export class UpdateEventBusCommand extends $Command
8
8
  .classBuilder()
9
- .ep({
10
- ...commonParams,
11
- })
9
+ .ep(commonParams)
12
10
  .m(function (Command, cs, config, o) {
13
11
  return [
14
12
  getSerdePlugin(config, this.serialize, this.deserialize),