@aws-sdk/client-applicationcostprofiler 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.
@@ -1,23 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApplicationCostProfiler = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- const ApplicationCostProfilerClient_1 = require("./ApplicationCostProfilerClient");
6
- const DeleteReportDefinitionCommand_1 = require("./commands/DeleteReportDefinitionCommand");
7
- const GetReportDefinitionCommand_1 = require("./commands/GetReportDefinitionCommand");
8
- const ImportApplicationUsageCommand_1 = require("./commands/ImportApplicationUsageCommand");
9
- const ListReportDefinitionsCommand_1 = require("./commands/ListReportDefinitionsCommand");
10
- const PutReportDefinitionCommand_1 = require("./commands/PutReportDefinitionCommand");
11
- const UpdateReportDefinitionCommand_1 = require("./commands/UpdateReportDefinitionCommand");
12
- const commands = {
13
- DeleteReportDefinitionCommand: DeleteReportDefinitionCommand_1.DeleteReportDefinitionCommand,
14
- GetReportDefinitionCommand: GetReportDefinitionCommand_1.GetReportDefinitionCommand,
15
- ImportApplicationUsageCommand: ImportApplicationUsageCommand_1.ImportApplicationUsageCommand,
16
- ListReportDefinitionsCommand: ListReportDefinitionsCommand_1.ListReportDefinitionsCommand,
17
- PutReportDefinitionCommand: PutReportDefinitionCommand_1.PutReportDefinitionCommand,
18
- UpdateReportDefinitionCommand: UpdateReportDefinitionCommand_1.UpdateReportDefinitionCommand,
19
- };
20
- class ApplicationCostProfiler extends ApplicationCostProfilerClient_1.ApplicationCostProfilerClient {
21
- }
22
- exports.ApplicationCostProfiler = ApplicationCostProfiler;
23
- (0, smithy_client_1.createAggregatedClient)(commands, ApplicationCostProfiler);
1
+ module.exports = require("./index.js");
@@ -1,43 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApplicationCostProfilerClient = 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 ApplicationCostProfilerClient 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.ApplicationCostProfilerClient = ApplicationCostProfilerClient;
1
+ module.exports = require("./index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DeleteReportDefinitionCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class DeleteReportDefinitionCommand 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("AWSApplicationCostProfiler", "DeleteReportDefinition", {})
22
- .n("ApplicationCostProfilerClient", "DeleteReportDefinitionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_DeleteReportDefinitionCommand)
25
- .de(Aws_restJson1_1.de_DeleteReportDefinitionCommand)
26
- .build() {
27
- }
28
- exports.DeleteReportDefinitionCommand = DeleteReportDefinitionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GetReportDefinitionCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class GetReportDefinitionCommand 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("AWSApplicationCostProfiler", "GetReportDefinition", {})
22
- .n("ApplicationCostProfilerClient", "GetReportDefinitionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_GetReportDefinitionCommand)
25
- .de(Aws_restJson1_1.de_GetReportDefinitionCommand)
26
- .build() {
27
- }
28
- exports.GetReportDefinitionCommand = GetReportDefinitionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ImportApplicationUsageCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ImportApplicationUsageCommand 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("AWSApplicationCostProfiler", "ImportApplicationUsage", {})
22
- .n("ApplicationCostProfilerClient", "ImportApplicationUsageCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ImportApplicationUsageCommand)
25
- .de(Aws_restJson1_1.de_ImportApplicationUsageCommand)
26
- .build() {
27
- }
28
- exports.ImportApplicationUsageCommand = ImportApplicationUsageCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ListReportDefinitionsCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class ListReportDefinitionsCommand 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("AWSApplicationCostProfiler", "ListReportDefinitions", {})
22
- .n("ApplicationCostProfilerClient", "ListReportDefinitionsCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_ListReportDefinitionsCommand)
25
- .de(Aws_restJson1_1.de_ListReportDefinitionsCommand)
26
- .build() {
27
- }
28
- exports.ListReportDefinitionsCommand = ListReportDefinitionsCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PutReportDefinitionCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class PutReportDefinitionCommand 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("AWSApplicationCostProfiler", "PutReportDefinition", {})
22
- .n("ApplicationCostProfilerClient", "PutReportDefinitionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_PutReportDefinitionCommand)
25
- .de(Aws_restJson1_1.de_PutReportDefinitionCommand)
26
- .build() {
27
- }
28
- exports.PutReportDefinitionCommand = PutReportDefinitionCommand;
1
+ module.exports = require("../index.js");
@@ -1,28 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateReportDefinitionCommand = 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_restJson1_1 = require("../protocols/Aws_restJson1");
10
- class UpdateReportDefinitionCommand 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("AWSApplicationCostProfiler", "UpdateReportDefinition", {})
22
- .n("ApplicationCostProfilerClient", "UpdateReportDefinitionCommand")
23
- .f(void 0, void 0)
24
- .ser(Aws_restJson1_1.se_UpdateReportDefinitionCommand)
25
- .de(Aws_restJson1_1.de_UpdateReportDefinitionCommand)
26
- .build() {
27
- }
28
- exports.UpdateReportDefinitionCommand = UpdateReportDefinitionCommand;
1
+ module.exports = require("../index.js");
@@ -1,9 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./DeleteReportDefinitionCommand"), exports);
5
- tslib_1.__exportStar(require("./GetReportDefinitionCommand"), exports);
6
- tslib_1.__exportStar(require("./ImportApplicationUsageCommand"), exports);
7
- tslib_1.__exportStar(require("./ListReportDefinitionsCommand"), exports);
8
- tslib_1.__exportStar(require("./PutReportDefinitionCommand"), exports);
9
- tslib_1.__exportStar(require("./UpdateReportDefinitionCommand"), exports);
1
+ module.exports = require("../index.js");
@@ -1,18 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.commonParams = exports.resolveClientEndpointParameters = void 0;
4
- const resolveClientEndpointParameters = (options) => {
5
- return {
6
- ...options,
7
- useDualstackEndpoint: options.useDualstackEndpoint ?? false,
8
- useFipsEndpoint: options.useFipsEndpoint ?? false,
9
- defaultSigningName: "application-cost-profiler",
10
- };
11
- };
12
- exports.resolveClientEndpointParameters = resolveClientEndpointParameters;
13
- exports.commonParams = {
14
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
15
- Endpoint: { type: "builtInParams", name: "endpoint" },
16
- Region: { type: "builtInParams", name: "region" },
17
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
18
- };
1
+ module.exports = require("../index.js");
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ module.exports = require("./index.js");