@aws-sdk/client-applicationcostprofiler 3.183.0 → 3.186.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/CHANGELOG.md +19 -0
- package/dist-cjs/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ApplicationCostProfiler.js +33 -26
- package/dist-es/ApplicationCostProfilerClient.js +28 -22
- package/dist-es/commands/DeleteReportDefinitionCommand.js +28 -21
- package/dist-es/commands/GetReportDefinitionCommand.js +28 -21
- package/dist-es/commands/ImportApplicationUsageCommand.js +28 -21
- package/dist-es/commands/ListReportDefinitionsCommand.js +28 -21
- package/dist-es/commands/PutReportDefinitionCommand.js +28 -21
- package/dist-es/commands/UpdateReportDefinitionCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ApplicationCostProfilerServiceException.js +10 -5
- package/dist-es/models/models_0.js +71 -100
- package/dist-es/pagination/ListReportDefinitionsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +679 -487
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
@@ -526,10 +526,10 @@ const deserializeAws_restJson1S3Location = (output, context) => {
|
|
|
526
526
|
};
|
|
527
527
|
};
|
|
528
528
|
const deserializeMetadata = (output) => {
|
|
529
|
-
var _a;
|
|
529
|
+
var _a, _b;
|
|
530
530
|
return ({
|
|
531
531
|
httpStatusCode: output.statusCode,
|
|
532
|
-
requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
|
|
532
|
+
requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
|
|
533
533
|
extendedRequestId: output.headers["x-amz-id-2"],
|
|
534
534
|
cfId: output.headers["x-amz-cf-id"],
|
|
535
535
|
});
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ApplicationCostProfilerClient } from "./ApplicationCostProfilerClient";
|
|
2
3
|
import { DeleteReportDefinitionCommand, } from "./commands/DeleteReportDefinitionCommand";
|
|
3
4
|
import { GetReportDefinitionCommand, } from "./commands/GetReportDefinitionCommand";
|
|
@@ -5,89 +6,95 @@ import { ImportApplicationUsageCommand, } from "./commands/ImportApplicationUsag
|
|
|
5
6
|
import { ListReportDefinitionsCommand, } from "./commands/ListReportDefinitionsCommand";
|
|
6
7
|
import { PutReportDefinitionCommand, } from "./commands/PutReportDefinitionCommand";
|
|
7
8
|
import { UpdateReportDefinitionCommand, } from "./commands/UpdateReportDefinitionCommand";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
var ApplicationCostProfiler = (function (_super) {
|
|
10
|
+
__extends(ApplicationCostProfiler, _super);
|
|
11
|
+
function ApplicationCostProfiler() {
|
|
12
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
13
|
+
}
|
|
14
|
+
ApplicationCostProfiler.prototype.deleteReportDefinition = function (args, optionsOrCb, cb) {
|
|
15
|
+
var command = new DeleteReportDefinitionCommand(args);
|
|
11
16
|
if (typeof optionsOrCb === "function") {
|
|
12
17
|
this.send(command, optionsOrCb);
|
|
13
18
|
}
|
|
14
19
|
else if (typeof cb === "function") {
|
|
15
20
|
if (typeof optionsOrCb !== "object")
|
|
16
|
-
throw new Error(
|
|
21
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
17
22
|
this.send(command, optionsOrCb || {}, cb);
|
|
18
23
|
}
|
|
19
24
|
else {
|
|
20
25
|
return this.send(command, optionsOrCb);
|
|
21
26
|
}
|
|
22
|
-
}
|
|
23
|
-
getReportDefinition(args, optionsOrCb, cb) {
|
|
24
|
-
|
|
27
|
+
};
|
|
28
|
+
ApplicationCostProfiler.prototype.getReportDefinition = function (args, optionsOrCb, cb) {
|
|
29
|
+
var command = new GetReportDefinitionCommand(args);
|
|
25
30
|
if (typeof optionsOrCb === "function") {
|
|
26
31
|
this.send(command, optionsOrCb);
|
|
27
32
|
}
|
|
28
33
|
else if (typeof cb === "function") {
|
|
29
34
|
if (typeof optionsOrCb !== "object")
|
|
30
|
-
throw new Error(
|
|
35
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
31
36
|
this.send(command, optionsOrCb || {}, cb);
|
|
32
37
|
}
|
|
33
38
|
else {
|
|
34
39
|
return this.send(command, optionsOrCb);
|
|
35
40
|
}
|
|
36
|
-
}
|
|
37
|
-
importApplicationUsage(args, optionsOrCb, cb) {
|
|
38
|
-
|
|
41
|
+
};
|
|
42
|
+
ApplicationCostProfiler.prototype.importApplicationUsage = function (args, optionsOrCb, cb) {
|
|
43
|
+
var command = new ImportApplicationUsageCommand(args);
|
|
39
44
|
if (typeof optionsOrCb === "function") {
|
|
40
45
|
this.send(command, optionsOrCb);
|
|
41
46
|
}
|
|
42
47
|
else if (typeof cb === "function") {
|
|
43
48
|
if (typeof optionsOrCb !== "object")
|
|
44
|
-
throw new Error(
|
|
49
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
45
50
|
this.send(command, optionsOrCb || {}, cb);
|
|
46
51
|
}
|
|
47
52
|
else {
|
|
48
53
|
return this.send(command, optionsOrCb);
|
|
49
54
|
}
|
|
50
|
-
}
|
|
51
|
-
listReportDefinitions(args, optionsOrCb, cb) {
|
|
52
|
-
|
|
55
|
+
};
|
|
56
|
+
ApplicationCostProfiler.prototype.listReportDefinitions = function (args, optionsOrCb, cb) {
|
|
57
|
+
var command = new ListReportDefinitionsCommand(args);
|
|
53
58
|
if (typeof optionsOrCb === "function") {
|
|
54
59
|
this.send(command, optionsOrCb);
|
|
55
60
|
}
|
|
56
61
|
else if (typeof cb === "function") {
|
|
57
62
|
if (typeof optionsOrCb !== "object")
|
|
58
|
-
throw new Error(
|
|
63
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
59
64
|
this.send(command, optionsOrCb || {}, cb);
|
|
60
65
|
}
|
|
61
66
|
else {
|
|
62
67
|
return this.send(command, optionsOrCb);
|
|
63
68
|
}
|
|
64
|
-
}
|
|
65
|
-
putReportDefinition(args, optionsOrCb, cb) {
|
|
66
|
-
|
|
69
|
+
};
|
|
70
|
+
ApplicationCostProfiler.prototype.putReportDefinition = function (args, optionsOrCb, cb) {
|
|
71
|
+
var command = new PutReportDefinitionCommand(args);
|
|
67
72
|
if (typeof optionsOrCb === "function") {
|
|
68
73
|
this.send(command, optionsOrCb);
|
|
69
74
|
}
|
|
70
75
|
else if (typeof cb === "function") {
|
|
71
76
|
if (typeof optionsOrCb !== "object")
|
|
72
|
-
throw new Error(
|
|
77
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
73
78
|
this.send(command, optionsOrCb || {}, cb);
|
|
74
79
|
}
|
|
75
80
|
else {
|
|
76
81
|
return this.send(command, optionsOrCb);
|
|
77
82
|
}
|
|
78
|
-
}
|
|
79
|
-
updateReportDefinition(args, optionsOrCb, cb) {
|
|
80
|
-
|
|
83
|
+
};
|
|
84
|
+
ApplicationCostProfiler.prototype.updateReportDefinition = function (args, optionsOrCb, cb) {
|
|
85
|
+
var command = new UpdateReportDefinitionCommand(args);
|
|
81
86
|
if (typeof optionsOrCb === "function") {
|
|
82
87
|
this.send(command, optionsOrCb);
|
|
83
88
|
}
|
|
84
89
|
else if (typeof cb === "function") {
|
|
85
90
|
if (typeof optionsOrCb !== "object")
|
|
86
|
-
throw new Error(
|
|
91
|
+
throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
|
|
87
92
|
this.send(command, optionsOrCb || {}, cb);
|
|
88
93
|
}
|
|
89
94
|
else {
|
|
90
95
|
return this.send(command, optionsOrCb);
|
|
91
96
|
}
|
|
92
|
-
}
|
|
93
|
-
|
|
97
|
+
};
|
|
98
|
+
return ApplicationCostProfiler;
|
|
99
|
+
}(ApplicationCostProfilerClient));
|
|
100
|
+
export { ApplicationCostProfiler };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
2
3
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
3
4
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
8
9
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
9
10
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
10
11
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
12
|
+
var ApplicationCostProfilerClient = (function (_super) {
|
|
13
|
+
__extends(ApplicationCostProfilerClient, _super);
|
|
14
|
+
function ApplicationCostProfilerClient(configuration) {
|
|
15
|
+
var _this = this;
|
|
16
|
+
var _config_0 = __getRuntimeConfig(configuration);
|
|
17
|
+
var _config_1 = resolveRegionConfig(_config_0);
|
|
18
|
+
var _config_2 = resolveEndpointsConfig(_config_1);
|
|
19
|
+
var _config_3 = resolveRetryConfig(_config_2);
|
|
20
|
+
var _config_4 = resolveHostHeaderConfig(_config_3);
|
|
21
|
+
var _config_5 = resolveAwsAuthConfig(_config_4);
|
|
22
|
+
var _config_6 = resolveUserAgentConfig(_config_5);
|
|
23
|
+
_this = _super.call(this, _config_6) || this;
|
|
24
|
+
_this.config = _config_6;
|
|
25
|
+
_this.middlewareStack.use(getRetryPlugin(_this.config));
|
|
26
|
+
_this.middlewareStack.use(getContentLengthPlugin(_this.config));
|
|
27
|
+
_this.middlewareStack.use(getHostHeaderPlugin(_this.config));
|
|
28
|
+
_this.middlewareStack.use(getLoggerPlugin(_this.config));
|
|
29
|
+
_this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
|
|
30
|
+
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
+
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
+
return _this;
|
|
29
33
|
}
|
|
30
|
-
destroy() {
|
|
31
|
-
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
+
ApplicationCostProfilerClient.prototype.destroy = function () {
|
|
35
|
+
_super.prototype.destroy.call(this);
|
|
36
|
+
};
|
|
37
|
+
return ApplicationCostProfilerClient;
|
|
38
|
+
}(__Client));
|
|
39
|
+
export { ApplicationCostProfilerClient };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { DeleteReportDefinitionRequestFilterSensitiveLog, DeleteReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1DeleteReportDefinitionCommand, serializeAws_restJson1DeleteReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var DeleteReportDefinitionCommand = (function (_super) {
|
|
7
|
+
__extends(DeleteReportDefinitionCommand, _super);
|
|
8
|
+
function DeleteReportDefinitionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
DeleteReportDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "DeleteReportDefinitionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: DeleteReportDefinitionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: DeleteReportDefinitionResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DeleteReportDefinitionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1DeleteReportDefinitionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
DeleteReportDefinitionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1DeleteReportDefinitionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return DeleteReportDefinitionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DeleteReportDefinitionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { GetReportDefinitionRequestFilterSensitiveLog, GetReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1GetReportDefinitionCommand, serializeAws_restJson1GetReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var GetReportDefinitionCommand = (function (_super) {
|
|
7
|
+
__extends(GetReportDefinitionCommand, _super);
|
|
8
|
+
function GetReportDefinitionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
GetReportDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "GetReportDefinitionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: GetReportDefinitionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: GetReportDefinitionResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
GetReportDefinitionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1GetReportDefinitionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
GetReportDefinitionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1GetReportDefinitionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return GetReportDefinitionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { GetReportDefinitionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ImportApplicationUsageRequestFilterSensitiveLog, ImportApplicationUsageResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1ImportApplicationUsageCommand, serializeAws_restJson1ImportApplicationUsageCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ImportApplicationUsageCommand = (function (_super) {
|
|
7
|
+
__extends(ImportApplicationUsageCommand, _super);
|
|
8
|
+
function ImportApplicationUsageCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ImportApplicationUsageCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "ImportApplicationUsageCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ImportApplicationUsageRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ImportApplicationUsageResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ImportApplicationUsageCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1ImportApplicationUsageCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ImportApplicationUsageCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1ImportApplicationUsageCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ImportApplicationUsageCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ImportApplicationUsageCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { ListReportDefinitionsRequestFilterSensitiveLog, ListReportDefinitionsResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1ListReportDefinitionsCommand, serializeAws_restJson1ListReportDefinitionsCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var ListReportDefinitionsCommand = (function (_super) {
|
|
7
|
+
__extends(ListReportDefinitionsCommand, _super);
|
|
8
|
+
function ListReportDefinitionsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
ListReportDefinitionsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "ListReportDefinitionsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: ListReportDefinitionsRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: ListReportDefinitionsResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListReportDefinitionsCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1ListReportDefinitionsCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
ListReportDefinitionsCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1ListReportDefinitionsCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return ListReportDefinitionsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListReportDefinitionsCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { PutReportDefinitionRequestFilterSensitiveLog, PutReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1PutReportDefinitionCommand, serializeAws_restJson1PutReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var PutReportDefinitionCommand = (function (_super) {
|
|
7
|
+
__extends(PutReportDefinitionCommand, _super);
|
|
8
|
+
function PutReportDefinitionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
PutReportDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "PutReportDefinitionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: PutReportDefinitionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: PutReportDefinitionResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
PutReportDefinitionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1PutReportDefinitionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
PutReportDefinitionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1PutReportDefinitionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return PutReportDefinitionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { PutReportDefinitionCommand };
|
|
@@ -1,32 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
2
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
4
|
import { UpdateReportDefinitionRequestFilterSensitiveLog, UpdateReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateReportDefinitionCommand, serializeAws_restJson1UpdateReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateReportDefinitionCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateReportDefinitionCommand, _super);
|
|
8
|
+
function UpdateReportDefinitionCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateReportDefinitionCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
11
14
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
logger,
|
|
18
|
-
clientName,
|
|
19
|
-
commandName,
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "ApplicationCostProfilerClient";
|
|
18
|
+
var commandName = "UpdateReportDefinitionCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateReportDefinitionRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UpdateReportDefinitionResultFilterSensitiveLog,
|
|
22
25
|
};
|
|
23
|
-
|
|
24
|
-
return stack.resolve((request)
|
|
25
|
-
|
|
26
|
-
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UpdateReportDefinitionCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateReportDefinitionCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateReportDefinitionCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateReportDefinitionCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateReportDefinitionCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateReportDefinitionCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
-
|
|
3
|
+
var regionHash = {};
|
|
4
|
+
var partitionHash = {
|
|
4
5
|
aws: {
|
|
5
6
|
regions: [
|
|
6
7
|
"af-south-1",
|
|
@@ -120,9 +121,8 @@ const partitionHash = {
|
|
|
120
121
|
],
|
|
121
122
|
},
|
|
122
123
|
};
|
|
123
|
-
export
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
});
|
|
124
|
+
export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
|
|
125
|
+
return __generator(this, function (_a) {
|
|
126
|
+
return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "application-cost-profiler", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
127
|
+
});
|
|
128
|
+
}); };
|