@aws-sdk/client-application-insights 3.926.0 → 3.928.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 (54) hide show
  1. package/dist-cjs/index.js +1048 -1190
  2. package/dist-cjs/runtimeConfig.shared.js +7 -0
  3. package/dist-es/ApplicationInsightsClient.js +2 -0
  4. package/dist-es/commands/AddWorkloadCommand.js +3 -9
  5. package/dist-es/commands/CreateApplicationCommand.js +3 -9
  6. package/dist-es/commands/CreateComponentCommand.js +3 -9
  7. package/dist-es/commands/CreateLogPatternCommand.js +3 -9
  8. package/dist-es/commands/DeleteApplicationCommand.js +3 -9
  9. package/dist-es/commands/DeleteComponentCommand.js +3 -9
  10. package/dist-es/commands/DeleteLogPatternCommand.js +3 -9
  11. package/dist-es/commands/DescribeApplicationCommand.js +3 -9
  12. package/dist-es/commands/DescribeComponentCommand.js +3 -9
  13. package/dist-es/commands/DescribeComponentConfigurationCommand.js +3 -9
  14. package/dist-es/commands/DescribeComponentConfigurationRecommendationCommand.js +3 -9
  15. package/dist-es/commands/DescribeLogPatternCommand.js +3 -9
  16. package/dist-es/commands/DescribeObservationCommand.js +3 -9
  17. package/dist-es/commands/DescribeProblemCommand.js +3 -9
  18. package/dist-es/commands/DescribeProblemObservationsCommand.js +3 -9
  19. package/dist-es/commands/DescribeWorkloadCommand.js +3 -9
  20. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  21. package/dist-es/commands/ListComponentsCommand.js +3 -9
  22. package/dist-es/commands/ListConfigurationHistoryCommand.js +3 -9
  23. package/dist-es/commands/ListLogPatternSetsCommand.js +3 -9
  24. package/dist-es/commands/ListLogPatternsCommand.js +3 -9
  25. package/dist-es/commands/ListProblemsCommand.js +3 -9
  26. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  27. package/dist-es/commands/ListWorkloadsCommand.js +3 -9
  28. package/dist-es/commands/RemoveWorkloadCommand.js +3 -9
  29. package/dist-es/commands/TagResourceCommand.js +3 -9
  30. package/dist-es/commands/UntagResourceCommand.js +3 -9
  31. package/dist-es/commands/UpdateApplicationCommand.js +3 -9
  32. package/dist-es/commands/UpdateComponentCommand.js +3 -9
  33. package/dist-es/commands/UpdateComponentConfigurationCommand.js +3 -9
  34. package/dist-es/commands/UpdateLogPatternCommand.js +3 -9
  35. package/dist-es/commands/UpdateProblemCommand.js +3 -9
  36. package/dist-es/commands/UpdateWorkloadCommand.js +3 -9
  37. package/dist-es/runtimeConfig.shared.js +7 -0
  38. package/dist-es/schemas/schemas_0.js +963 -0
  39. package/dist-types/ApplicationInsightsClient.d.ts +10 -1
  40. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  41. package/dist-types/runtimeConfig.d.ts +1 -0
  42. package/dist-types/runtimeConfig.native.d.ts +1 -0
  43. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  44. package/dist-types/schemas/schemas_0.d.ts +134 -0
  45. package/dist-types/ts3.4/ApplicationInsightsClient.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +140 -0
  51. package/package.json +5 -5
  52. package/dist-es/protocols/Aws_json1_1.js +0 -939
  53. package/dist-types/protocols/Aws_json1_1.d.ts +0 -299
  54. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -401
@@ -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,12 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ??
30
+ new protocols_1.AwsJson1_1Protocol({
31
+ defaultNamespace: "com.amazonaws.applicationinsights",
32
+ serviceTarget: "EC2WindowsBarleyService",
33
+ awsQueryCompatible: false,
34
+ }),
28
35
  serviceId: config?.serviceId ?? "Application Insights",
29
36
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
37
  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 ApplicationInsightsClient 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_AddWorkloadCommand, se_AddWorkloadCommand } from "../protocols/Aws_json1_1";
4
+ import { AddWorkload } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class AddWorkloadCommand 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("EC2WindowsBarleyService", "AddWorkload", {})
17
13
  .n("ApplicationInsightsClient", "AddWorkloadCommand")
18
- .f(void 0, void 0)
19
- .ser(se_AddWorkloadCommand)
20
- .de(de_AddWorkloadCommand)
14
+ .sc(AddWorkload)
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_CreateApplicationCommand, se_CreateApplicationCommand } from "../protocols/Aws_json1_1";
4
+ import { CreateApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateApplicationCommand 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("EC2WindowsBarleyService", "CreateApplication", {})
17
13
  .n("ApplicationInsightsClient", "CreateApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateApplicationCommand)
20
- .de(de_CreateApplicationCommand)
14
+ .sc(CreateApplication)
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_CreateComponentCommand, se_CreateComponentCommand } from "../protocols/Aws_json1_1";
4
+ import { CreateComponent } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateComponentCommand 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("EC2WindowsBarleyService", "CreateComponent", {})
17
13
  .n("ApplicationInsightsClient", "CreateComponentCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateComponentCommand)
20
- .de(de_CreateComponentCommand)
14
+ .sc(CreateComponent)
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_CreateLogPatternCommand, se_CreateLogPatternCommand } from "../protocols/Aws_json1_1";
4
+ import { CreateLogPattern } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class CreateLogPatternCommand 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("EC2WindowsBarleyService", "CreateLogPattern", {})
17
13
  .n("ApplicationInsightsClient", "CreateLogPatternCommand")
18
- .f(void 0, void 0)
19
- .ser(se_CreateLogPatternCommand)
20
- .de(de_CreateLogPatternCommand)
14
+ .sc(CreateLogPattern)
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_DeleteApplicationCommand, se_DeleteApplicationCommand } from "../protocols/Aws_json1_1";
4
+ import { DeleteApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteApplicationCommand 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("EC2WindowsBarleyService", "DeleteApplication", {})
17
13
  .n("ApplicationInsightsClient", "DeleteApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteApplicationCommand)
20
- .de(de_DeleteApplicationCommand)
14
+ .sc(DeleteApplication)
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_DeleteComponentCommand, se_DeleteComponentCommand } from "../protocols/Aws_json1_1";
4
+ import { DeleteComponent } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteComponentCommand 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("EC2WindowsBarleyService", "DeleteComponent", {})
17
13
  .n("ApplicationInsightsClient", "DeleteComponentCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteComponentCommand)
20
- .de(de_DeleteComponentCommand)
14
+ .sc(DeleteComponent)
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_DeleteLogPatternCommand, se_DeleteLogPatternCommand } from "../protocols/Aws_json1_1";
4
+ import { DeleteLogPattern } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteLogPatternCommand 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("EC2WindowsBarleyService", "DeleteLogPattern", {})
17
13
  .n("ApplicationInsightsClient", "DeleteLogPatternCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteLogPatternCommand)
20
- .de(de_DeleteLogPatternCommand)
14
+ .sc(DeleteLogPattern)
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_DescribeApplicationCommand, se_DescribeApplicationCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeApplicationCommand 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("EC2WindowsBarleyService", "DescribeApplication", {})
17
13
  .n("ApplicationInsightsClient", "DescribeApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeApplicationCommand)
20
- .de(de_DescribeApplicationCommand)
14
+ .sc(DescribeApplication)
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_DescribeComponentCommand, se_DescribeComponentCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeComponent } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeComponentCommand 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("EC2WindowsBarleyService", "DescribeComponent", {})
17
13
  .n("ApplicationInsightsClient", "DescribeComponentCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeComponentCommand)
20
- .de(de_DescribeComponentCommand)
14
+ .sc(DescribeComponent)
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_DescribeComponentConfigurationCommand, se_DescribeComponentConfigurationCommand, } from "../protocols/Aws_json1_1";
4
+ import { DescribeComponentConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeComponentConfigurationCommand 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("EC2WindowsBarleyService", "DescribeComponentConfiguration", {})
17
13
  .n("ApplicationInsightsClient", "DescribeComponentConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeComponentConfigurationCommand)
20
- .de(de_DescribeComponentConfigurationCommand)
14
+ .sc(DescribeComponentConfiguration)
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_DescribeComponentConfigurationRecommendationCommand, se_DescribeComponentConfigurationRecommendationCommand, } from "../protocols/Aws_json1_1";
4
+ import { DescribeComponentConfigurationRecommendation } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeComponentConfigurationRecommendationCommand 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("EC2WindowsBarleyService", "DescribeComponentConfigurationRecommendation", {})
17
13
  .n("ApplicationInsightsClient", "DescribeComponentConfigurationRecommendationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeComponentConfigurationRecommendationCommand)
20
- .de(de_DescribeComponentConfigurationRecommendationCommand)
14
+ .sc(DescribeComponentConfigurationRecommendation)
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_DescribeLogPatternCommand, se_DescribeLogPatternCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeLogPattern } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeLogPatternCommand 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("EC2WindowsBarleyService", "DescribeLogPattern", {})
17
13
  .n("ApplicationInsightsClient", "DescribeLogPatternCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeLogPatternCommand)
20
- .de(de_DescribeLogPatternCommand)
14
+ .sc(DescribeLogPattern)
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_DescribeObservationCommand, se_DescribeObservationCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeObservation } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeObservationCommand 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("EC2WindowsBarleyService", "DescribeObservation", {})
17
13
  .n("ApplicationInsightsClient", "DescribeObservationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeObservationCommand)
20
- .de(de_DescribeObservationCommand)
14
+ .sc(DescribeObservation)
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_DescribeProblemCommand, se_DescribeProblemCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeProblem } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeProblemCommand 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("EC2WindowsBarleyService", "DescribeProblem", {})
17
13
  .n("ApplicationInsightsClient", "DescribeProblemCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeProblemCommand)
20
- .de(de_DescribeProblemCommand)
14
+ .sc(DescribeProblem)
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_DescribeProblemObservationsCommand, se_DescribeProblemObservationsCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeProblemObservations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeProblemObservationsCommand 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("EC2WindowsBarleyService", "DescribeProblemObservations", {})
17
13
  .n("ApplicationInsightsClient", "DescribeProblemObservationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeProblemObservationsCommand)
20
- .de(de_DescribeProblemObservationsCommand)
14
+ .sc(DescribeProblemObservations)
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_DescribeWorkloadCommand, se_DescribeWorkloadCommand } from "../protocols/Aws_json1_1";
4
+ import { DescribeWorkload } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeWorkloadCommand 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("EC2WindowsBarleyService", "DescribeWorkload", {})
17
13
  .n("ApplicationInsightsClient", "DescribeWorkloadCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeWorkloadCommand)
20
- .de(de_DescribeWorkloadCommand)
14
+ .sc(DescribeWorkload)
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_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_json1_1";
4
+ import { ListApplications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListApplicationsCommand 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("EC2WindowsBarleyService", "ListApplications", {})
17
13
  .n("ApplicationInsightsClient", "ListApplicationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListApplicationsCommand)
20
- .de(de_ListApplicationsCommand)
14
+ .sc(ListApplications)
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_ListComponentsCommand, se_ListComponentsCommand } from "../protocols/Aws_json1_1";
4
+ import { ListComponents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListComponentsCommand 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("EC2WindowsBarleyService", "ListComponents", {})
17
13
  .n("ApplicationInsightsClient", "ListComponentsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListComponentsCommand)
20
- .de(de_ListComponentsCommand)
14
+ .sc(ListComponents)
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_ListConfigurationHistoryCommand, se_ListConfigurationHistoryCommand } from "../protocols/Aws_json1_1";
4
+ import { ListConfigurationHistory } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConfigurationHistoryCommand 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("EC2WindowsBarleyService", "ListConfigurationHistory", {})
17
13
  .n("ApplicationInsightsClient", "ListConfigurationHistoryCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConfigurationHistoryCommand)
20
- .de(de_ListConfigurationHistoryCommand)
14
+ .sc(ListConfigurationHistory)
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_ListLogPatternSetsCommand, se_ListLogPatternSetsCommand } from "../protocols/Aws_json1_1";
4
+ import { ListLogPatternSets } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListLogPatternSetsCommand 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("EC2WindowsBarleyService", "ListLogPatternSets", {})
17
13
  .n("ApplicationInsightsClient", "ListLogPatternSetsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListLogPatternSetsCommand)
20
- .de(de_ListLogPatternSetsCommand)
14
+ .sc(ListLogPatternSets)
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_ListLogPatternsCommand, se_ListLogPatternsCommand } from "../protocols/Aws_json1_1";
4
+ import { ListLogPatterns } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListLogPatternsCommand 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("EC2WindowsBarleyService", "ListLogPatterns", {})
17
13
  .n("ApplicationInsightsClient", "ListLogPatternsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListLogPatternsCommand)
20
- .de(de_ListLogPatternsCommand)
14
+ .sc(ListLogPatterns)
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_ListProblemsCommand, se_ListProblemsCommand } from "../protocols/Aws_json1_1";
4
+ import { ListProblems } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListProblemsCommand 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("EC2WindowsBarleyService", "ListProblems", {})
17
13
  .n("ApplicationInsightsClient", "ListProblemsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListProblemsCommand)
20
- .de(de_ListProblemsCommand)
14
+ .sc(ListProblems)
21
15
  .build() {
22
16
  }