@aws-sdk/client-devops-guru 3.927.0 → 3.929.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 (52) hide show
  1. package/dist-cjs/index.js +1861 -1731
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/DevOpsGuruClient.js +2 -0
  4. package/dist-es/commands/AddNotificationChannelCommand.js +3 -9
  5. package/dist-es/commands/DeleteInsightCommand.js +3 -9
  6. package/dist-es/commands/DescribeAccountHealthCommand.js +3 -9
  7. package/dist-es/commands/DescribeAccountOverviewCommand.js +3 -9
  8. package/dist-es/commands/DescribeAnomalyCommand.js +3 -9
  9. package/dist-es/commands/DescribeEventSourcesConfigCommand.js +3 -9
  10. package/dist-es/commands/DescribeFeedbackCommand.js +3 -9
  11. package/dist-es/commands/DescribeInsightCommand.js +3 -9
  12. package/dist-es/commands/DescribeOrganizationHealthCommand.js +3 -9
  13. package/dist-es/commands/DescribeOrganizationOverviewCommand.js +3 -9
  14. package/dist-es/commands/DescribeOrganizationResourceCollectionHealthCommand.js +3 -9
  15. package/dist-es/commands/DescribeResourceCollectionHealthCommand.js +3 -9
  16. package/dist-es/commands/DescribeServiceIntegrationCommand.js +3 -9
  17. package/dist-es/commands/GetCostEstimationCommand.js +3 -9
  18. package/dist-es/commands/GetResourceCollectionCommand.js +3 -9
  19. package/dist-es/commands/ListAnomaliesForInsightCommand.js +3 -9
  20. package/dist-es/commands/ListAnomalousLogGroupsCommand.js +3 -9
  21. package/dist-es/commands/ListEventsCommand.js +3 -9
  22. package/dist-es/commands/ListInsightsCommand.js +3 -9
  23. package/dist-es/commands/ListMonitoredResourcesCommand.js +3 -9
  24. package/dist-es/commands/ListNotificationChannelsCommand.js +3 -9
  25. package/dist-es/commands/ListOrganizationInsightsCommand.js +3 -9
  26. package/dist-es/commands/ListRecommendationsCommand.js +3 -9
  27. package/dist-es/commands/PutFeedbackCommand.js +3 -9
  28. package/dist-es/commands/RemoveNotificationChannelCommand.js +3 -9
  29. package/dist-es/commands/SearchInsightsCommand.js +3 -9
  30. package/dist-es/commands/SearchOrganizationInsightsCommand.js +3 -9
  31. package/dist-es/commands/StartCostEstimationCommand.js +3 -9
  32. package/dist-es/commands/UpdateEventSourcesConfigCommand.js +3 -9
  33. package/dist-es/commands/UpdateResourceCollectionCommand.js +3 -9
  34. package/dist-es/commands/UpdateServiceIntegrationCommand.js +3 -9
  35. package/dist-es/runtimeConfig.shared.js +2 -0
  36. package/dist-es/schemas/schemas_0.js +1799 -0
  37. package/dist-types/DevOpsGuruClient.d.ts +10 -1
  38. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  39. package/dist-types/runtimeConfig.d.ts +1 -0
  40. package/dist-types/runtimeConfig.native.d.ts +1 -0
  41. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  42. package/dist-types/schemas/schemas_0.d.ts +251 -0
  43. package/dist-types/ts3.4/DevOpsGuruClient.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  48. package/dist-types/ts3.4/schemas/schemas_0.d.ts +256 -0
  49. package/package.json +5 -6
  50. package/dist-es/protocols/Aws_restJson1.js +0 -1497
  51. package/dist-types/protocols/Aws_restJson1.d.ts +0 -281
  52. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -377
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.devopsguru" }),
28
30
  serviceId: config?.serviceId ?? "DevOps Guru",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class DevOpsGuruClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_AddNotificationChannelCommand, se_AddNotificationChannelCommand } from "../protocols/Aws_restJson1";
4
+ import { AddNotificationChannel } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AddNotificationChannelCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "AddNotificationChannel", {})
17
13
  .n("DevOpsGuruClient", "AddNotificationChannelCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AddNotificationChannelCommand)
20
- .de(de_AddNotificationChannelCommand)
14
+ .sc(AddNotificationChannel)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteInsightCommand, se_DeleteInsightCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteInsight } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteInsightCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DeleteInsight", {})
17
13
  .n("DevOpsGuruClient", "DeleteInsightCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteInsightCommand)
20
- .de(de_DeleteInsightCommand)
14
+ .sc(DeleteInsight)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeAccountHealthCommand, se_DescribeAccountHealthCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeAccountHealth } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeAccountHealthCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeAccountHealth", {})
17
13
  .n("DevOpsGuruClient", "DescribeAccountHealthCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeAccountHealthCommand)
20
- .de(de_DescribeAccountHealthCommand)
14
+ .sc(DescribeAccountHealth)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeAccountOverviewCommand, se_DescribeAccountOverviewCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeAccountOverview } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeAccountOverviewCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeAccountOverview", {})
17
13
  .n("DevOpsGuruClient", "DescribeAccountOverviewCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeAccountOverviewCommand)
20
- .de(de_DescribeAccountOverviewCommand)
14
+ .sc(DescribeAccountOverview)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeAnomalyCommand, se_DescribeAnomalyCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeAnomaly } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeAnomalyCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeAnomaly", {})
17
13
  .n("DevOpsGuruClient", "DescribeAnomalyCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeAnomalyCommand)
20
- .de(de_DescribeAnomalyCommand)
14
+ .sc(DescribeAnomaly)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeEventSourcesConfigCommand, se_DescribeEventSourcesConfigCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeEventSourcesConfig } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeEventSourcesConfigCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeEventSourcesConfig", {})
17
13
  .n("DevOpsGuruClient", "DescribeEventSourcesConfigCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeEventSourcesConfigCommand)
20
- .de(de_DescribeEventSourcesConfigCommand)
14
+ .sc(DescribeEventSourcesConfig)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeFeedbackCommand, se_DescribeFeedbackCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeFeedback } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeFeedbackCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeFeedback", {})
17
13
  .n("DevOpsGuruClient", "DescribeFeedbackCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeFeedbackCommand)
20
- .de(de_DescribeFeedbackCommand)
14
+ .sc(DescribeFeedback)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeInsightCommand, se_DescribeInsightCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeInsight } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeInsightCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeInsight", {})
17
13
  .n("DevOpsGuruClient", "DescribeInsightCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeInsightCommand)
20
- .de(de_DescribeInsightCommand)
14
+ .sc(DescribeInsight)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeOrganizationHealthCommand, se_DescribeOrganizationHealthCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeOrganizationHealth } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeOrganizationHealthCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeOrganizationHealth", {})
17
13
  .n("DevOpsGuruClient", "DescribeOrganizationHealthCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeOrganizationHealthCommand)
20
- .de(de_DescribeOrganizationHealthCommand)
14
+ .sc(DescribeOrganizationHealth)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeOrganizationOverviewCommand, se_DescribeOrganizationOverviewCommand, } from "../protocols/Aws_restJson1";
4
+ import { DescribeOrganizationOverview } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeOrganizationOverviewCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeOrganizationOverview", {})
17
13
  .n("DevOpsGuruClient", "DescribeOrganizationOverviewCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeOrganizationOverviewCommand)
20
- .de(de_DescribeOrganizationOverviewCommand)
14
+ .sc(DescribeOrganizationOverview)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeOrganizationResourceCollectionHealthCommand, se_DescribeOrganizationResourceCollectionHealthCommand, } from "../protocols/Aws_restJson1";
4
+ import { DescribeOrganizationResourceCollectionHealth } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeOrganizationResourceCollectionHealthCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeOrganizationResourceCollectionHealth", {})
17
13
  .n("DevOpsGuruClient", "DescribeOrganizationResourceCollectionHealthCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeOrganizationResourceCollectionHealthCommand)
20
- .de(de_DescribeOrganizationResourceCollectionHealthCommand)
14
+ .sc(DescribeOrganizationResourceCollectionHealth)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeResourceCollectionHealthCommand, se_DescribeResourceCollectionHealthCommand, } from "../protocols/Aws_restJson1";
4
+ import { DescribeResourceCollectionHealth } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeResourceCollectionHealthCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeResourceCollectionHealth", {})
17
13
  .n("DevOpsGuruClient", "DescribeResourceCollectionHealthCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeResourceCollectionHealthCommand)
20
- .de(de_DescribeResourceCollectionHealthCommand)
14
+ .sc(DescribeResourceCollectionHealth)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DescribeServiceIntegrationCommand, se_DescribeServiceIntegrationCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeServiceIntegration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeServiceIntegrationCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "DescribeServiceIntegration", {})
17
13
  .n("DevOpsGuruClient", "DescribeServiceIntegrationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeServiceIntegrationCommand)
20
- .de(de_DescribeServiceIntegrationCommand)
14
+ .sc(DescribeServiceIntegration)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetCostEstimationCommand, se_GetCostEstimationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetCostEstimation } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetCostEstimationCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "GetCostEstimation", {})
17
13
  .n("DevOpsGuruClient", "GetCostEstimationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetCostEstimationCommand)
20
- .de(de_GetCostEstimationCommand)
14
+ .sc(GetCostEstimation)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetResourceCollectionCommand, se_GetResourceCollectionCommand } from "../protocols/Aws_restJson1";
4
+ import { GetResourceCollection } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetResourceCollectionCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "GetResourceCollection", {})
17
13
  .n("DevOpsGuruClient", "GetResourceCollectionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetResourceCollectionCommand)
20
- .de(de_GetResourceCollectionCommand)
14
+ .sc(GetResourceCollection)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListAnomaliesForInsightCommand, se_ListAnomaliesForInsightCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAnomaliesForInsight } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAnomaliesForInsightCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListAnomaliesForInsight", {})
17
13
  .n("DevOpsGuruClient", "ListAnomaliesForInsightCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAnomaliesForInsightCommand)
20
- .de(de_ListAnomaliesForInsightCommand)
14
+ .sc(ListAnomaliesForInsight)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListAnomalousLogGroupsCommand, se_ListAnomalousLogGroupsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListAnomalousLogGroups } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListAnomalousLogGroupsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListAnomalousLogGroups", {})
17
13
  .n("DevOpsGuruClient", "ListAnomalousLogGroupsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListAnomalousLogGroupsCommand)
20
- .de(de_ListAnomalousLogGroupsCommand)
14
+ .sc(ListAnomalousLogGroups)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListEventsCommand, se_ListEventsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListEvents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListEventsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListEvents", {})
17
13
  .n("DevOpsGuruClient", "ListEventsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListEventsCommand)
20
- .de(de_ListEventsCommand)
14
+ .sc(ListEvents)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListInsightsCommand, se_ListInsightsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListInsights } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListInsightsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListInsights", {})
17
13
  .n("DevOpsGuruClient", "ListInsightsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListInsightsCommand)
20
- .de(de_ListInsightsCommand)
14
+ .sc(ListInsights)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListMonitoredResourcesCommand, se_ListMonitoredResourcesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListMonitoredResources } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListMonitoredResourcesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListMonitoredResources", {})
17
13
  .n("DevOpsGuruClient", "ListMonitoredResourcesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListMonitoredResourcesCommand)
20
- .de(de_ListMonitoredResourcesCommand)
14
+ .sc(ListMonitoredResources)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListNotificationChannelsCommand, se_ListNotificationChannelsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListNotificationChannels } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListNotificationChannelsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListNotificationChannels", {})
17
13
  .n("DevOpsGuruClient", "ListNotificationChannelsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListNotificationChannelsCommand)
20
- .de(de_ListNotificationChannelsCommand)
14
+ .sc(ListNotificationChannels)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListOrganizationInsightsCommand, se_ListOrganizationInsightsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListOrganizationInsights } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListOrganizationInsightsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("CapstoneControlPlaneService", "ListOrganizationInsights", {})
17
13
  .n("DevOpsGuruClient", "ListOrganizationInsightsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListOrganizationInsightsCommand)
20
- .de(de_ListOrganizationInsightsCommand)
14
+ .sc(ListOrganizationInsights)
21
15
  .build() {
22
16
  }