@aws-sdk/client-application-insights 3.490.0 → 3.495.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/ApplicationInsights.js +1 -77
- package/dist-cjs/ApplicationInsightsClient.js +1 -43
- package/dist-cjs/commands/AddWorkloadCommand.js +1 -28
- package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
- package/dist-cjs/commands/CreateComponentCommand.js +1 -28
- package/dist-cjs/commands/CreateLogPatternCommand.js +1 -28
- package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
- package/dist-cjs/commands/DeleteComponentCommand.js +1 -28
- package/dist-cjs/commands/DeleteLogPatternCommand.js +1 -28
- package/dist-cjs/commands/DescribeApplicationCommand.js +1 -28
- package/dist-cjs/commands/DescribeComponentCommand.js +1 -28
- package/dist-cjs/commands/DescribeComponentConfigurationCommand.js +1 -28
- package/dist-cjs/commands/DescribeComponentConfigurationRecommendationCommand.js +1 -28
- package/dist-cjs/commands/DescribeLogPatternCommand.js +1 -28
- package/dist-cjs/commands/DescribeObservationCommand.js +1 -28
- package/dist-cjs/commands/DescribeProblemCommand.js +1 -28
- package/dist-cjs/commands/DescribeProblemObservationsCommand.js +1 -28
- package/dist-cjs/commands/DescribeWorkloadCommand.js +1 -28
- package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
- package/dist-cjs/commands/ListComponentsCommand.js +1 -28
- package/dist-cjs/commands/ListConfigurationHistoryCommand.js +1 -28
- package/dist-cjs/commands/ListLogPatternSetsCommand.js +1 -28
- package/dist-cjs/commands/ListLogPatternsCommand.js +1 -28
- package/dist-cjs/commands/ListProblemsCommand.js +1 -28
- package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
- package/dist-cjs/commands/ListWorkloadsCommand.js +1 -28
- package/dist-cjs/commands/RemoveWorkloadCommand.js +1 -28
- package/dist-cjs/commands/TagResourceCommand.js +1 -28
- package/dist-cjs/commands/UntagResourceCommand.js +1 -28
- package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
- package/dist-cjs/commands/UpdateComponentCommand.js +1 -28
- package/dist-cjs/commands/UpdateComponentConfigurationCommand.js +1 -28
- package/dist-cjs/commands/UpdateLogPatternCommand.js +1 -28
- package/dist-cjs/commands/UpdateProblemCommand.js +1 -28
- package/dist-cjs/commands/UpdateWorkloadCommand.js +1 -28
- package/dist-cjs/commands/index.js +1 -36
- package/dist-cjs/endpoint/EndpointParameters.js +1 -18
- package/dist-cjs/extensionConfiguration.js +1 -2
- package/dist-cjs/index.js +2924 -11
- package/dist-cjs/models/ApplicationInsightsServiceException.js +1 -12
- package/dist-cjs/models/index.js +1 -4
- package/dist-cjs/models/models_0.js +1 -211
- package/dist-cjs/pagination/Interfaces.js +1 -2
- package/dist-cjs/pagination/ListApplicationsPaginator.js +1 -7
- package/dist-cjs/pagination/ListComponentsPaginator.js +1 -7
- package/dist-cjs/pagination/ListConfigurationHistoryPaginator.js +1 -7
- package/dist-cjs/pagination/ListLogPatternSetsPaginator.js +1 -7
- package/dist-cjs/pagination/ListLogPatternsPaginator.js +1 -7
- package/dist-cjs/pagination/ListProblemsPaginator.js +1 -7
- package/dist-cjs/pagination/ListWorkloadsPaginator.js +1 -7
- package/dist-cjs/pagination/index.js +1 -11
- package/dist-cjs/protocols/Aws_json1_1.js +1 -1855
- package/dist-cjs/runtimeExtensions.js +1 -22
- package/package.json +40 -40
|
@@ -1,77 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApplicationInsights = void 0;
|
|
4
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
5
|
-
const ApplicationInsightsClient_1 = require("./ApplicationInsightsClient");
|
|
6
|
-
const AddWorkloadCommand_1 = require("./commands/AddWorkloadCommand");
|
|
7
|
-
const CreateApplicationCommand_1 = require("./commands/CreateApplicationCommand");
|
|
8
|
-
const CreateComponentCommand_1 = require("./commands/CreateComponentCommand");
|
|
9
|
-
const CreateLogPatternCommand_1 = require("./commands/CreateLogPatternCommand");
|
|
10
|
-
const DeleteApplicationCommand_1 = require("./commands/DeleteApplicationCommand");
|
|
11
|
-
const DeleteComponentCommand_1 = require("./commands/DeleteComponentCommand");
|
|
12
|
-
const DeleteLogPatternCommand_1 = require("./commands/DeleteLogPatternCommand");
|
|
13
|
-
const DescribeApplicationCommand_1 = require("./commands/DescribeApplicationCommand");
|
|
14
|
-
const DescribeComponentCommand_1 = require("./commands/DescribeComponentCommand");
|
|
15
|
-
const DescribeComponentConfigurationCommand_1 = require("./commands/DescribeComponentConfigurationCommand");
|
|
16
|
-
const DescribeComponentConfigurationRecommendationCommand_1 = require("./commands/DescribeComponentConfigurationRecommendationCommand");
|
|
17
|
-
const DescribeLogPatternCommand_1 = require("./commands/DescribeLogPatternCommand");
|
|
18
|
-
const DescribeObservationCommand_1 = require("./commands/DescribeObservationCommand");
|
|
19
|
-
const DescribeProblemCommand_1 = require("./commands/DescribeProblemCommand");
|
|
20
|
-
const DescribeProblemObservationsCommand_1 = require("./commands/DescribeProblemObservationsCommand");
|
|
21
|
-
const DescribeWorkloadCommand_1 = require("./commands/DescribeWorkloadCommand");
|
|
22
|
-
const ListApplicationsCommand_1 = require("./commands/ListApplicationsCommand");
|
|
23
|
-
const ListComponentsCommand_1 = require("./commands/ListComponentsCommand");
|
|
24
|
-
const ListConfigurationHistoryCommand_1 = require("./commands/ListConfigurationHistoryCommand");
|
|
25
|
-
const ListLogPatternsCommand_1 = require("./commands/ListLogPatternsCommand");
|
|
26
|
-
const ListLogPatternSetsCommand_1 = require("./commands/ListLogPatternSetsCommand");
|
|
27
|
-
const ListProblemsCommand_1 = require("./commands/ListProblemsCommand");
|
|
28
|
-
const ListTagsForResourceCommand_1 = require("./commands/ListTagsForResourceCommand");
|
|
29
|
-
const ListWorkloadsCommand_1 = require("./commands/ListWorkloadsCommand");
|
|
30
|
-
const RemoveWorkloadCommand_1 = require("./commands/RemoveWorkloadCommand");
|
|
31
|
-
const TagResourceCommand_1 = require("./commands/TagResourceCommand");
|
|
32
|
-
const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
|
|
33
|
-
const UpdateApplicationCommand_1 = require("./commands/UpdateApplicationCommand");
|
|
34
|
-
const UpdateComponentCommand_1 = require("./commands/UpdateComponentCommand");
|
|
35
|
-
const UpdateComponentConfigurationCommand_1 = require("./commands/UpdateComponentConfigurationCommand");
|
|
36
|
-
const UpdateLogPatternCommand_1 = require("./commands/UpdateLogPatternCommand");
|
|
37
|
-
const UpdateProblemCommand_1 = require("./commands/UpdateProblemCommand");
|
|
38
|
-
const UpdateWorkloadCommand_1 = require("./commands/UpdateWorkloadCommand");
|
|
39
|
-
const commands = {
|
|
40
|
-
AddWorkloadCommand: AddWorkloadCommand_1.AddWorkloadCommand,
|
|
41
|
-
CreateApplicationCommand: CreateApplicationCommand_1.CreateApplicationCommand,
|
|
42
|
-
CreateComponentCommand: CreateComponentCommand_1.CreateComponentCommand,
|
|
43
|
-
CreateLogPatternCommand: CreateLogPatternCommand_1.CreateLogPatternCommand,
|
|
44
|
-
DeleteApplicationCommand: DeleteApplicationCommand_1.DeleteApplicationCommand,
|
|
45
|
-
DeleteComponentCommand: DeleteComponentCommand_1.DeleteComponentCommand,
|
|
46
|
-
DeleteLogPatternCommand: DeleteLogPatternCommand_1.DeleteLogPatternCommand,
|
|
47
|
-
DescribeApplicationCommand: DescribeApplicationCommand_1.DescribeApplicationCommand,
|
|
48
|
-
DescribeComponentCommand: DescribeComponentCommand_1.DescribeComponentCommand,
|
|
49
|
-
DescribeComponentConfigurationCommand: DescribeComponentConfigurationCommand_1.DescribeComponentConfigurationCommand,
|
|
50
|
-
DescribeComponentConfigurationRecommendationCommand: DescribeComponentConfigurationRecommendationCommand_1.DescribeComponentConfigurationRecommendationCommand,
|
|
51
|
-
DescribeLogPatternCommand: DescribeLogPatternCommand_1.DescribeLogPatternCommand,
|
|
52
|
-
DescribeObservationCommand: DescribeObservationCommand_1.DescribeObservationCommand,
|
|
53
|
-
DescribeProblemCommand: DescribeProblemCommand_1.DescribeProblemCommand,
|
|
54
|
-
DescribeProblemObservationsCommand: DescribeProblemObservationsCommand_1.DescribeProblemObservationsCommand,
|
|
55
|
-
DescribeWorkloadCommand: DescribeWorkloadCommand_1.DescribeWorkloadCommand,
|
|
56
|
-
ListApplicationsCommand: ListApplicationsCommand_1.ListApplicationsCommand,
|
|
57
|
-
ListComponentsCommand: ListComponentsCommand_1.ListComponentsCommand,
|
|
58
|
-
ListConfigurationHistoryCommand: ListConfigurationHistoryCommand_1.ListConfigurationHistoryCommand,
|
|
59
|
-
ListLogPatternsCommand: ListLogPatternsCommand_1.ListLogPatternsCommand,
|
|
60
|
-
ListLogPatternSetsCommand: ListLogPatternSetsCommand_1.ListLogPatternSetsCommand,
|
|
61
|
-
ListProblemsCommand: ListProblemsCommand_1.ListProblemsCommand,
|
|
62
|
-
ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
|
|
63
|
-
ListWorkloadsCommand: ListWorkloadsCommand_1.ListWorkloadsCommand,
|
|
64
|
-
RemoveWorkloadCommand: RemoveWorkloadCommand_1.RemoveWorkloadCommand,
|
|
65
|
-
TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
|
|
66
|
-
UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
|
|
67
|
-
UpdateApplicationCommand: UpdateApplicationCommand_1.UpdateApplicationCommand,
|
|
68
|
-
UpdateComponentCommand: UpdateComponentCommand_1.UpdateComponentCommand,
|
|
69
|
-
UpdateComponentConfigurationCommand: UpdateComponentConfigurationCommand_1.UpdateComponentConfigurationCommand,
|
|
70
|
-
UpdateLogPatternCommand: UpdateLogPatternCommand_1.UpdateLogPatternCommand,
|
|
71
|
-
UpdateProblemCommand: UpdateProblemCommand_1.UpdateProblemCommand,
|
|
72
|
-
UpdateWorkloadCommand: UpdateWorkloadCommand_1.UpdateWorkloadCommand,
|
|
73
|
-
};
|
|
74
|
-
class ApplicationInsights extends ApplicationInsightsClient_1.ApplicationInsightsClient {
|
|
75
|
-
}
|
|
76
|
-
exports.ApplicationInsights = ApplicationInsights;
|
|
77
|
-
(0, smithy_client_1.createAggregatedClient)(commands, ApplicationInsights);
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,43 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ApplicationInsightsClient = exports.__Client = void 0;
|
|
4
|
-
const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
|
|
5
|
-
const middleware_logger_1 = require("@aws-sdk/middleware-logger");
|
|
6
|
-
const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
|
|
7
|
-
const middleware_signing_1 = require("@aws-sdk/middleware-signing");
|
|
8
|
-
const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
|
|
9
|
-
const config_resolver_1 = require("@smithy/config-resolver");
|
|
10
|
-
const middleware_content_length_1 = require("@smithy/middleware-content-length");
|
|
11
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
12
|
-
const middleware_retry_1 = require("@smithy/middleware-retry");
|
|
13
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
14
|
-
Object.defineProperty(exports, "__Client", { enumerable: true, get: function () { return smithy_client_1.Client; } });
|
|
15
|
-
const EndpointParameters_1 = require("./endpoint/EndpointParameters");
|
|
16
|
-
const runtimeConfig_1 = require("./runtimeConfig");
|
|
17
|
-
const runtimeExtensions_1 = require("./runtimeExtensions");
|
|
18
|
-
class ApplicationInsightsClient extends smithy_client_1.Client {
|
|
19
|
-
constructor(...[configuration]) {
|
|
20
|
-
const _config_0 = (0, runtimeConfig_1.getRuntimeConfig)(configuration || {});
|
|
21
|
-
const _config_1 = (0, EndpointParameters_1.resolveClientEndpointParameters)(_config_0);
|
|
22
|
-
const _config_2 = (0, config_resolver_1.resolveRegionConfig)(_config_1);
|
|
23
|
-
const _config_3 = (0, middleware_endpoint_1.resolveEndpointConfig)(_config_2);
|
|
24
|
-
const _config_4 = (0, middleware_retry_1.resolveRetryConfig)(_config_3);
|
|
25
|
-
const _config_5 = (0, middleware_host_header_1.resolveHostHeaderConfig)(_config_4);
|
|
26
|
-
const _config_6 = (0, middleware_signing_1.resolveAwsAuthConfig)(_config_5);
|
|
27
|
-
const _config_7 = (0, middleware_user_agent_1.resolveUserAgentConfig)(_config_6);
|
|
28
|
-
const _config_8 = (0, runtimeExtensions_1.resolveRuntimeExtensions)(_config_7, configuration?.extensions || []);
|
|
29
|
-
super(_config_8);
|
|
30
|
-
this.config = _config_8;
|
|
31
|
-
this.middlewareStack.use((0, middleware_retry_1.getRetryPlugin)(this.config));
|
|
32
|
-
this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
|
|
33
|
-
this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
|
|
34
|
-
this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
|
|
35
|
-
this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
|
|
36
|
-
this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
|
|
37
|
-
this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
|
|
38
|
-
}
|
|
39
|
-
destroy() {
|
|
40
|
-
super.destroy();
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
exports.ApplicationInsightsClient = ApplicationInsightsClient;
|
|
1
|
+
module.exports = require("./index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AddWorkloadCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class AddWorkloadCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "AddWorkload", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "AddWorkloadCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_AddWorkloadCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_AddWorkloadCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.AddWorkloadCommand = AddWorkloadCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateApplicationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateApplicationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "CreateApplication", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "CreateApplicationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateApplicationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateApplicationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateComponentCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateComponentCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "CreateComponent", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "CreateComponentCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateComponentCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateComponentCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateComponentCommand = CreateComponentCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CreateLogPatternCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class CreateLogPatternCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "CreateLogPattern", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "CreateLogPatternCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_CreateLogPatternCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_CreateLogPatternCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.CreateLogPatternCommand = CreateLogPatternCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteApplicationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteApplicationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DeleteApplication", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DeleteApplicationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteApplicationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteApplicationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteComponentCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteComponentCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DeleteComponent", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DeleteComponentCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteComponentCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteComponentCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DeleteLogPatternCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DeleteLogPatternCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DeleteLogPattern", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DeleteLogPatternCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DeleteLogPatternCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DeleteLogPatternCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DeleteLogPatternCommand = DeleteLogPatternCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeApplicationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeApplicationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeApplication", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeApplicationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeApplicationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeApplicationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeApplicationCommand = DescribeApplicationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeComponentCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeComponentCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeComponent", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeComponentCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeComponentCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeComponentCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeComponentCommand = DescribeComponentCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeComponentConfigurationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeComponentConfigurationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeComponentConfiguration", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeComponentConfigurationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeComponentConfigurationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeComponentConfigurationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeComponentConfigurationCommand = DescribeComponentConfigurationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeComponentConfigurationRecommendationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeComponentConfigurationRecommendationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeComponentConfigurationRecommendation", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeComponentConfigurationRecommendationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeComponentConfigurationRecommendationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeComponentConfigurationRecommendationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeComponentConfigurationRecommendationCommand = DescribeComponentConfigurationRecommendationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeLogPatternCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeLogPatternCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeLogPattern", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeLogPatternCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeLogPatternCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeLogPatternCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeLogPatternCommand = DescribeLogPatternCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeObservationCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeObservationCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeObservation", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeObservationCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeObservationCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeObservationCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeObservationCommand = DescribeObservationCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeProblemCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeProblemCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeProblem", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeProblemCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeProblemCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeProblemCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeProblemCommand = DescribeProblemCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeProblemObservationsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeProblemObservationsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeProblemObservations", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeProblemObservationsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeProblemObservationsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeProblemObservationsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeProblemObservationsCommand = DescribeProblemObservationsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.DescribeWorkloadCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class DescribeWorkloadCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "DescribeWorkload", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "DescribeWorkloadCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_DescribeWorkloadCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_DescribeWorkloadCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.DescribeWorkloadCommand = DescribeWorkloadCommand;
|
|
1
|
+
module.exports = require("../index.js");
|
|
@@ -1,28 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ListApplicationsCommand = exports.$Command = void 0;
|
|
4
|
-
const middleware_endpoint_1 = require("@smithy/middleware-endpoint");
|
|
5
|
-
const middleware_serde_1 = require("@smithy/middleware-serde");
|
|
6
|
-
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
|
-
Object.defineProperty(exports, "$Command", { enumerable: true, get: function () { return smithy_client_1.Command; } });
|
|
8
|
-
const EndpointParameters_1 = require("../endpoint/EndpointParameters");
|
|
9
|
-
const Aws_json1_1_1 = require("../protocols/Aws_json1_1");
|
|
10
|
-
class ListApplicationsCommand extends smithy_client_1.Command
|
|
11
|
-
.classBuilder()
|
|
12
|
-
.ep({
|
|
13
|
-
...EndpointParameters_1.commonParams,
|
|
14
|
-
})
|
|
15
|
-
.m(function (Command, cs, config, o) {
|
|
16
|
-
return [
|
|
17
|
-
(0, middleware_serde_1.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
18
|
-
(0, middleware_endpoint_1.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
19
|
-
];
|
|
20
|
-
})
|
|
21
|
-
.s("EC2WindowsBarleyService", "ListApplications", {})
|
|
22
|
-
.n("ApplicationInsightsClient", "ListApplicationsCommand")
|
|
23
|
-
.f(void 0, void 0)
|
|
24
|
-
.ser(Aws_json1_1_1.se_ListApplicationsCommand)
|
|
25
|
-
.de(Aws_json1_1_1.de_ListApplicationsCommand)
|
|
26
|
-
.build() {
|
|
27
|
-
}
|
|
28
|
-
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1
|
+
module.exports = require("../index.js");
|