@aws-sdk/client-applicationcostprofiler 3.131.0 → 3.137.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 +11 -0
- package/dist-cjs/commands/DeleteReportDefinitionCommand.js +2 -2
- package/dist-cjs/commands/GetReportDefinitionCommand.js +2 -2
- package/dist-cjs/commands/ImportApplicationUsageCommand.js +2 -2
- package/dist-cjs/commands/ListReportDefinitionsCommand.js +2 -2
- package/dist-cjs/commands/PutReportDefinitionCommand.js +2 -2
- package/dist-cjs/commands/UpdateReportDefinitionCommand.js +2 -2
- package/dist-cjs/models/models_0.js +61 -91
- package/dist-es/commands/DeleteReportDefinitionCommand.js +3 -3
- package/dist-es/commands/GetReportDefinitionCommand.js +3 -3
- package/dist-es/commands/ImportApplicationUsageCommand.js +3 -3
- package/dist-es/commands/ListReportDefinitionsCommand.js +3 -3
- package/dist-es/commands/PutReportDefinitionCommand.js +3 -3
- package/dist-es/commands/UpdateReportDefinitionCommand.js +3 -3
- package/dist-es/models/models_0.js +15 -60
- package/dist-types/models/models_0.d.ts +60 -90
- package/dist-types/ts3.4/models/models_0.d.ts +30 -60
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-applicationcostprofiler
|
|
@@ -20,8 +20,8 @@ class DeleteReportDefinitionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetReportDefinitionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ImportApplicationUsageCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ImportApplicationUsageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ImportApplicationUsageResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListReportDefinitionsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListReportDefinitionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListReportDefinitionsResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class PutReportDefinitionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.PutReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.PutReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class UpdateReportDefinitionCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateReportDefinitionResultFilterSensitiveLog = exports.UpdateReportDefinitionRequestFilterSensitiveLog = exports.PutReportDefinitionResultFilterSensitiveLog = exports.PutReportDefinitionRequestFilterSensitiveLog = exports.ListReportDefinitionsResultFilterSensitiveLog = exports.ReportDefinitionFilterSensitiveLog = exports.ListReportDefinitionsRequestFilterSensitiveLog = exports.ImportApplicationUsageResultFilterSensitiveLog = exports.ImportApplicationUsageRequestFilterSensitiveLog = exports.SourceS3LocationFilterSensitiveLog = exports.GetReportDefinitionResultFilterSensitiveLog = exports.S3LocationFilterSensitiveLog = exports.GetReportDefinitionRequestFilterSensitiveLog = exports.DeleteReportDefinitionResultFilterSensitiveLog = exports.DeleteReportDefinitionRequestFilterSensitiveLog = exports.ServiceQuotaExceededException = exports.S3BucketRegion = exports.ReportFrequency = exports.Format = exports.ValidationException = exports.ThrottlingException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
4
|
const ApplicationCostProfilerServiceException_1 = require("./ApplicationCostProfilerServiceException");
|
|
5
5
|
class AccessDeniedException extends ApplicationCostProfilerServiceException_1.ApplicationCostProfilerServiceException {
|
|
6
6
|
constructor(opts) {
|
|
@@ -15,18 +15,6 @@ class AccessDeniedException extends ApplicationCostProfilerServiceException_1.Ap
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
exports.AccessDeniedException = AccessDeniedException;
|
|
18
|
-
var DeleteReportDefinitionRequest;
|
|
19
|
-
(function (DeleteReportDefinitionRequest) {
|
|
20
|
-
DeleteReportDefinitionRequest.filterSensitiveLog = (obj) => ({
|
|
21
|
-
...obj,
|
|
22
|
-
});
|
|
23
|
-
})(DeleteReportDefinitionRequest = exports.DeleteReportDefinitionRequest || (exports.DeleteReportDefinitionRequest = {}));
|
|
24
|
-
var DeleteReportDefinitionResult;
|
|
25
|
-
(function (DeleteReportDefinitionResult) {
|
|
26
|
-
DeleteReportDefinitionResult.filterSensitiveLog = (obj) => ({
|
|
27
|
-
...obj,
|
|
28
|
-
});
|
|
29
|
-
})(DeleteReportDefinitionResult = exports.DeleteReportDefinitionResult || (exports.DeleteReportDefinitionResult = {}));
|
|
30
18
|
class InternalServerException extends ApplicationCostProfilerServiceException_1.ApplicationCostProfilerServiceException {
|
|
31
19
|
constructor(opts) {
|
|
32
20
|
super({
|
|
@@ -66,18 +54,6 @@ class ValidationException extends ApplicationCostProfilerServiceException_1.Appl
|
|
|
66
54
|
}
|
|
67
55
|
}
|
|
68
56
|
exports.ValidationException = ValidationException;
|
|
69
|
-
var GetReportDefinitionRequest;
|
|
70
|
-
(function (GetReportDefinitionRequest) {
|
|
71
|
-
GetReportDefinitionRequest.filterSensitiveLog = (obj) => ({
|
|
72
|
-
...obj,
|
|
73
|
-
});
|
|
74
|
-
})(GetReportDefinitionRequest = exports.GetReportDefinitionRequest || (exports.GetReportDefinitionRequest = {}));
|
|
75
|
-
var S3Location;
|
|
76
|
-
(function (S3Location) {
|
|
77
|
-
S3Location.filterSensitiveLog = (obj) => ({
|
|
78
|
-
...obj,
|
|
79
|
-
});
|
|
80
|
-
})(S3Location = exports.S3Location || (exports.S3Location = {}));
|
|
81
57
|
var Format;
|
|
82
58
|
(function (Format) {
|
|
83
59
|
Format["CSV"] = "CSV";
|
|
@@ -89,12 +65,6 @@ var ReportFrequency;
|
|
|
89
65
|
ReportFrequency["DAILY"] = "DAILY";
|
|
90
66
|
ReportFrequency["MONTHLY"] = "MONTHLY";
|
|
91
67
|
})(ReportFrequency = exports.ReportFrequency || (exports.ReportFrequency = {}));
|
|
92
|
-
var GetReportDefinitionResult;
|
|
93
|
-
(function (GetReportDefinitionResult) {
|
|
94
|
-
GetReportDefinitionResult.filterSensitiveLog = (obj) => ({
|
|
95
|
-
...obj,
|
|
96
|
-
});
|
|
97
|
-
})(GetReportDefinitionResult = exports.GetReportDefinitionResult || (exports.GetReportDefinitionResult = {}));
|
|
98
68
|
var S3BucketRegion;
|
|
99
69
|
(function (S3BucketRegion) {
|
|
100
70
|
S3BucketRegion["AF_SOUTH_1"] = "af-south-1";
|
|
@@ -102,54 +72,6 @@ var S3BucketRegion;
|
|
|
102
72
|
S3BucketRegion["EU_SOUTH_1"] = "eu-south-1";
|
|
103
73
|
S3BucketRegion["ME_SOUTH_1"] = "me-south-1";
|
|
104
74
|
})(S3BucketRegion = exports.S3BucketRegion || (exports.S3BucketRegion = {}));
|
|
105
|
-
var SourceS3Location;
|
|
106
|
-
(function (SourceS3Location) {
|
|
107
|
-
SourceS3Location.filterSensitiveLog = (obj) => ({
|
|
108
|
-
...obj,
|
|
109
|
-
});
|
|
110
|
-
})(SourceS3Location = exports.SourceS3Location || (exports.SourceS3Location = {}));
|
|
111
|
-
var ImportApplicationUsageRequest;
|
|
112
|
-
(function (ImportApplicationUsageRequest) {
|
|
113
|
-
ImportApplicationUsageRequest.filterSensitiveLog = (obj) => ({
|
|
114
|
-
...obj,
|
|
115
|
-
});
|
|
116
|
-
})(ImportApplicationUsageRequest = exports.ImportApplicationUsageRequest || (exports.ImportApplicationUsageRequest = {}));
|
|
117
|
-
var ImportApplicationUsageResult;
|
|
118
|
-
(function (ImportApplicationUsageResult) {
|
|
119
|
-
ImportApplicationUsageResult.filterSensitiveLog = (obj) => ({
|
|
120
|
-
...obj,
|
|
121
|
-
});
|
|
122
|
-
})(ImportApplicationUsageResult = exports.ImportApplicationUsageResult || (exports.ImportApplicationUsageResult = {}));
|
|
123
|
-
var ListReportDefinitionsRequest;
|
|
124
|
-
(function (ListReportDefinitionsRequest) {
|
|
125
|
-
ListReportDefinitionsRequest.filterSensitiveLog = (obj) => ({
|
|
126
|
-
...obj,
|
|
127
|
-
});
|
|
128
|
-
})(ListReportDefinitionsRequest = exports.ListReportDefinitionsRequest || (exports.ListReportDefinitionsRequest = {}));
|
|
129
|
-
var ReportDefinition;
|
|
130
|
-
(function (ReportDefinition) {
|
|
131
|
-
ReportDefinition.filterSensitiveLog = (obj) => ({
|
|
132
|
-
...obj,
|
|
133
|
-
});
|
|
134
|
-
})(ReportDefinition = exports.ReportDefinition || (exports.ReportDefinition = {}));
|
|
135
|
-
var ListReportDefinitionsResult;
|
|
136
|
-
(function (ListReportDefinitionsResult) {
|
|
137
|
-
ListReportDefinitionsResult.filterSensitiveLog = (obj) => ({
|
|
138
|
-
...obj,
|
|
139
|
-
});
|
|
140
|
-
})(ListReportDefinitionsResult = exports.ListReportDefinitionsResult || (exports.ListReportDefinitionsResult = {}));
|
|
141
|
-
var PutReportDefinitionRequest;
|
|
142
|
-
(function (PutReportDefinitionRequest) {
|
|
143
|
-
PutReportDefinitionRequest.filterSensitiveLog = (obj) => ({
|
|
144
|
-
...obj,
|
|
145
|
-
});
|
|
146
|
-
})(PutReportDefinitionRequest = exports.PutReportDefinitionRequest || (exports.PutReportDefinitionRequest = {}));
|
|
147
|
-
var PutReportDefinitionResult;
|
|
148
|
-
(function (PutReportDefinitionResult) {
|
|
149
|
-
PutReportDefinitionResult.filterSensitiveLog = (obj) => ({
|
|
150
|
-
...obj,
|
|
151
|
-
});
|
|
152
|
-
})(PutReportDefinitionResult = exports.PutReportDefinitionResult || (exports.PutReportDefinitionResult = {}));
|
|
153
75
|
class ServiceQuotaExceededException extends ApplicationCostProfilerServiceException_1.ApplicationCostProfilerServiceException {
|
|
154
76
|
constructor(opts) {
|
|
155
77
|
super({
|
|
@@ -163,15 +85,63 @@ class ServiceQuotaExceededException extends ApplicationCostProfilerServiceExcept
|
|
|
163
85
|
}
|
|
164
86
|
}
|
|
165
87
|
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
88
|
+
const DeleteReportDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
89
|
+
...obj,
|
|
90
|
+
});
|
|
91
|
+
exports.DeleteReportDefinitionRequestFilterSensitiveLog = DeleteReportDefinitionRequestFilterSensitiveLog;
|
|
92
|
+
const DeleteReportDefinitionResultFilterSensitiveLog = (obj) => ({
|
|
93
|
+
...obj,
|
|
94
|
+
});
|
|
95
|
+
exports.DeleteReportDefinitionResultFilterSensitiveLog = DeleteReportDefinitionResultFilterSensitiveLog;
|
|
96
|
+
const GetReportDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
97
|
+
...obj,
|
|
98
|
+
});
|
|
99
|
+
exports.GetReportDefinitionRequestFilterSensitiveLog = GetReportDefinitionRequestFilterSensitiveLog;
|
|
100
|
+
const S3LocationFilterSensitiveLog = (obj) => ({
|
|
101
|
+
...obj,
|
|
102
|
+
});
|
|
103
|
+
exports.S3LocationFilterSensitiveLog = S3LocationFilterSensitiveLog;
|
|
104
|
+
const GetReportDefinitionResultFilterSensitiveLog = (obj) => ({
|
|
105
|
+
...obj,
|
|
106
|
+
});
|
|
107
|
+
exports.GetReportDefinitionResultFilterSensitiveLog = GetReportDefinitionResultFilterSensitiveLog;
|
|
108
|
+
const SourceS3LocationFilterSensitiveLog = (obj) => ({
|
|
109
|
+
...obj,
|
|
110
|
+
});
|
|
111
|
+
exports.SourceS3LocationFilterSensitiveLog = SourceS3LocationFilterSensitiveLog;
|
|
112
|
+
const ImportApplicationUsageRequestFilterSensitiveLog = (obj) => ({
|
|
113
|
+
...obj,
|
|
114
|
+
});
|
|
115
|
+
exports.ImportApplicationUsageRequestFilterSensitiveLog = ImportApplicationUsageRequestFilterSensitiveLog;
|
|
116
|
+
const ImportApplicationUsageResultFilterSensitiveLog = (obj) => ({
|
|
117
|
+
...obj,
|
|
118
|
+
});
|
|
119
|
+
exports.ImportApplicationUsageResultFilterSensitiveLog = ImportApplicationUsageResultFilterSensitiveLog;
|
|
120
|
+
const ListReportDefinitionsRequestFilterSensitiveLog = (obj) => ({
|
|
121
|
+
...obj,
|
|
122
|
+
});
|
|
123
|
+
exports.ListReportDefinitionsRequestFilterSensitiveLog = ListReportDefinitionsRequestFilterSensitiveLog;
|
|
124
|
+
const ReportDefinitionFilterSensitiveLog = (obj) => ({
|
|
125
|
+
...obj,
|
|
126
|
+
});
|
|
127
|
+
exports.ReportDefinitionFilterSensitiveLog = ReportDefinitionFilterSensitiveLog;
|
|
128
|
+
const ListReportDefinitionsResultFilterSensitiveLog = (obj) => ({
|
|
129
|
+
...obj,
|
|
130
|
+
});
|
|
131
|
+
exports.ListReportDefinitionsResultFilterSensitiveLog = ListReportDefinitionsResultFilterSensitiveLog;
|
|
132
|
+
const PutReportDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
133
|
+
...obj,
|
|
134
|
+
});
|
|
135
|
+
exports.PutReportDefinitionRequestFilterSensitiveLog = PutReportDefinitionRequestFilterSensitiveLog;
|
|
136
|
+
const PutReportDefinitionResultFilterSensitiveLog = (obj) => ({
|
|
137
|
+
...obj,
|
|
138
|
+
});
|
|
139
|
+
exports.PutReportDefinitionResultFilterSensitiveLog = PutReportDefinitionResultFilterSensitiveLog;
|
|
140
|
+
const UpdateReportDefinitionRequestFilterSensitiveLog = (obj) => ({
|
|
141
|
+
...obj,
|
|
142
|
+
});
|
|
143
|
+
exports.UpdateReportDefinitionRequestFilterSensitiveLog = UpdateReportDefinitionRequestFilterSensitiveLog;
|
|
144
|
+
const UpdateReportDefinitionResultFilterSensitiveLog = (obj) => ({
|
|
145
|
+
...obj,
|
|
146
|
+
});
|
|
147
|
+
exports.UpdateReportDefinitionResultFilterSensitiveLog = UpdateReportDefinitionResultFilterSensitiveLog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteReportDefinitionRequestFilterSensitiveLog, DeleteReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1DeleteReportDefinitionCommand, serializeAws_restJson1DeleteReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var DeleteReportDefinitionCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteReportDefinitionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteReportDefinitionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetReportDefinitionRequestFilterSensitiveLog, GetReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1GetReportDefinitionCommand, serializeAws_restJson1GetReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var GetReportDefinitionCommand = (function (_super) {
|
|
7
7
|
__extends(GetReportDefinitionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetReportDefinitionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ImportApplicationUsageRequestFilterSensitiveLog, ImportApplicationUsageResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ImportApplicationUsageCommand, serializeAws_restJson1ImportApplicationUsageCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ImportApplicationUsageCommand = (function (_super) {
|
|
7
7
|
__extends(ImportApplicationUsageCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ImportApplicationUsageCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ImportApplicationUsageRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ImportApplicationUsageResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListReportDefinitionsRequestFilterSensitiveLog, ListReportDefinitionsResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1ListReportDefinitionsCommand, serializeAws_restJson1ListReportDefinitionsCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var ListReportDefinitionsCommand = (function (_super) {
|
|
7
7
|
__extends(ListReportDefinitionsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListReportDefinitionsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListReportDefinitionsRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListReportDefinitionsResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { PutReportDefinitionRequestFilterSensitiveLog, PutReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1PutReportDefinitionCommand, serializeAws_restJson1PutReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var PutReportDefinitionCommand = (function (_super) {
|
|
7
7
|
__extends(PutReportDefinitionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var PutReportDefinitionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: PutReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: PutReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateReportDefinitionRequestFilterSensitiveLog, UpdateReportDefinitionResultFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_restJson1UpdateReportDefinitionCommand, serializeAws_restJson1UpdateReportDefinitionCommand, } from "../protocols/Aws_restJson1";
|
|
6
6
|
var UpdateReportDefinitionCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateReportDefinitionCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateReportDefinitionCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateReportDefinitionRequestFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateReportDefinitionResultFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -12,14 +12,6 @@ var AccessDeniedException = (function (_super) {
|
|
|
12
12
|
return AccessDeniedException;
|
|
13
13
|
}(__BaseException));
|
|
14
14
|
export { AccessDeniedException };
|
|
15
|
-
export var DeleteReportDefinitionRequest;
|
|
16
|
-
(function (DeleteReportDefinitionRequest) {
|
|
17
|
-
DeleteReportDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
18
|
-
})(DeleteReportDefinitionRequest || (DeleteReportDefinitionRequest = {}));
|
|
19
|
-
export var DeleteReportDefinitionResult;
|
|
20
|
-
(function (DeleteReportDefinitionResult) {
|
|
21
|
-
DeleteReportDefinitionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
22
|
-
})(DeleteReportDefinitionResult || (DeleteReportDefinitionResult = {}));
|
|
23
15
|
var InternalServerException = (function (_super) {
|
|
24
16
|
__extends(InternalServerException, _super);
|
|
25
17
|
function InternalServerException(opts) {
|
|
@@ -56,14 +48,6 @@ var ValidationException = (function (_super) {
|
|
|
56
48
|
return ValidationException;
|
|
57
49
|
}(__BaseException));
|
|
58
50
|
export { ValidationException };
|
|
59
|
-
export var GetReportDefinitionRequest;
|
|
60
|
-
(function (GetReportDefinitionRequest) {
|
|
61
|
-
GetReportDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
62
|
-
})(GetReportDefinitionRequest || (GetReportDefinitionRequest = {}));
|
|
63
|
-
export var S3Location;
|
|
64
|
-
(function (S3Location) {
|
|
65
|
-
S3Location.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
66
|
-
})(S3Location || (S3Location = {}));
|
|
67
51
|
export var Format;
|
|
68
52
|
(function (Format) {
|
|
69
53
|
Format["CSV"] = "CSV";
|
|
@@ -75,10 +59,6 @@ export var ReportFrequency;
|
|
|
75
59
|
ReportFrequency["DAILY"] = "DAILY";
|
|
76
60
|
ReportFrequency["MONTHLY"] = "MONTHLY";
|
|
77
61
|
})(ReportFrequency || (ReportFrequency = {}));
|
|
78
|
-
export var GetReportDefinitionResult;
|
|
79
|
-
(function (GetReportDefinitionResult) {
|
|
80
|
-
GetReportDefinitionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
81
|
-
})(GetReportDefinitionResult || (GetReportDefinitionResult = {}));
|
|
82
62
|
export var S3BucketRegion;
|
|
83
63
|
(function (S3BucketRegion) {
|
|
84
64
|
S3BucketRegion["AF_SOUTH_1"] = "af-south-1";
|
|
@@ -86,38 +66,6 @@ export var S3BucketRegion;
|
|
|
86
66
|
S3BucketRegion["EU_SOUTH_1"] = "eu-south-1";
|
|
87
67
|
S3BucketRegion["ME_SOUTH_1"] = "me-south-1";
|
|
88
68
|
})(S3BucketRegion || (S3BucketRegion = {}));
|
|
89
|
-
export var SourceS3Location;
|
|
90
|
-
(function (SourceS3Location) {
|
|
91
|
-
SourceS3Location.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
-
})(SourceS3Location || (SourceS3Location = {}));
|
|
93
|
-
export var ImportApplicationUsageRequest;
|
|
94
|
-
(function (ImportApplicationUsageRequest) {
|
|
95
|
-
ImportApplicationUsageRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
96
|
-
})(ImportApplicationUsageRequest || (ImportApplicationUsageRequest = {}));
|
|
97
|
-
export var ImportApplicationUsageResult;
|
|
98
|
-
(function (ImportApplicationUsageResult) {
|
|
99
|
-
ImportApplicationUsageResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
100
|
-
})(ImportApplicationUsageResult || (ImportApplicationUsageResult = {}));
|
|
101
|
-
export var ListReportDefinitionsRequest;
|
|
102
|
-
(function (ListReportDefinitionsRequest) {
|
|
103
|
-
ListReportDefinitionsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
104
|
-
})(ListReportDefinitionsRequest || (ListReportDefinitionsRequest = {}));
|
|
105
|
-
export var ReportDefinition;
|
|
106
|
-
(function (ReportDefinition) {
|
|
107
|
-
ReportDefinition.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
108
|
-
})(ReportDefinition || (ReportDefinition = {}));
|
|
109
|
-
export var ListReportDefinitionsResult;
|
|
110
|
-
(function (ListReportDefinitionsResult) {
|
|
111
|
-
ListReportDefinitionsResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
112
|
-
})(ListReportDefinitionsResult || (ListReportDefinitionsResult = {}));
|
|
113
|
-
export var PutReportDefinitionRequest;
|
|
114
|
-
(function (PutReportDefinitionRequest) {
|
|
115
|
-
PutReportDefinitionRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
116
|
-
})(PutReportDefinitionRequest || (PutReportDefinitionRequest = {}));
|
|
117
|
-
export var PutReportDefinitionResult;
|
|
118
|
-
(function (PutReportDefinitionResult) {
|
|
119
|
-
PutReportDefinitionResult.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
120
|
-
})(PutReportDefinitionResult || (PutReportDefinitionResult = {}));
|
|
121
69
|
var ServiceQuotaExceededException = (function (_super) {
|
|
122
70
|
__extends(ServiceQuotaExceededException, _super);
|
|
123
71
|
function ServiceQuotaExceededException(opts) {
|
|
@@ -130,11 +78,18 @@ var ServiceQuotaExceededException = (function (_super) {
|
|
|
130
78
|
return ServiceQuotaExceededException;
|
|
131
79
|
}(__BaseException));
|
|
132
80
|
export { ServiceQuotaExceededException };
|
|
133
|
-
export var
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
export var
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
81
|
+
export var DeleteReportDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
82
|
+
export var DeleteReportDefinitionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
83
|
+
export var GetReportDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
84
|
+
export var S3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
85
|
+
export var GetReportDefinitionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
86
|
+
export var SourceS3LocationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
87
|
+
export var ImportApplicationUsageRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
88
|
+
export var ImportApplicationUsageResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
89
|
+
export var ListReportDefinitionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
90
|
+
export var ReportDefinitionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
91
|
+
export var ListReportDefinitionsResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
92
|
+
export var PutReportDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
93
|
+
export var PutReportDefinitionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
94
|
+
export var UpdateReportDefinitionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
95
|
+
export var UpdateReportDefinitionResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -17,24 +17,12 @@ export interface DeleteReportDefinitionRequest {
|
|
|
17
17
|
*/
|
|
18
18
|
reportId: string | undefined;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace DeleteReportDefinitionRequest {
|
|
21
|
-
/**
|
|
22
|
-
* @internal
|
|
23
|
-
*/
|
|
24
|
-
const filterSensitiveLog: (obj: DeleteReportDefinitionRequest) => any;
|
|
25
|
-
}
|
|
26
20
|
export interface DeleteReportDefinitionResult {
|
|
27
21
|
/**
|
|
28
22
|
* <p>ID of the report that was deleted.</p>
|
|
29
23
|
*/
|
|
30
24
|
reportId?: string;
|
|
31
25
|
}
|
|
32
|
-
export declare namespace DeleteReportDefinitionResult {
|
|
33
|
-
/**
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
|
-
const filterSensitiveLog: (obj: DeleteReportDefinitionResult) => any;
|
|
37
|
-
}
|
|
38
26
|
/**
|
|
39
27
|
* <p>An internal server error occurred. Retry your request.</p>
|
|
40
28
|
*/
|
|
@@ -74,12 +62,6 @@ export interface GetReportDefinitionRequest {
|
|
|
74
62
|
*/
|
|
75
63
|
reportId: string | undefined;
|
|
76
64
|
}
|
|
77
|
-
export declare namespace GetReportDefinitionRequest {
|
|
78
|
-
/**
|
|
79
|
-
* @internal
|
|
80
|
-
*/
|
|
81
|
-
const filterSensitiveLog: (obj: GetReportDefinitionRequest) => any;
|
|
82
|
-
}
|
|
83
65
|
/**
|
|
84
66
|
* <p>Represents the Amazon Simple Storage Service (Amazon S3) location where AWS Application Cost Profiler
|
|
85
67
|
* reports are generated and then written to.</p>
|
|
@@ -94,12 +76,6 @@ export interface S3Location {
|
|
|
94
76
|
*/
|
|
95
77
|
prefix: string | undefined;
|
|
96
78
|
}
|
|
97
|
-
export declare namespace S3Location {
|
|
98
|
-
/**
|
|
99
|
-
* @internal
|
|
100
|
-
*/
|
|
101
|
-
const filterSensitiveLog: (obj: S3Location) => any;
|
|
102
|
-
}
|
|
103
79
|
export declare enum Format {
|
|
104
80
|
CSV = "CSV",
|
|
105
81
|
PARQUET = "PARQUET"
|
|
@@ -139,12 +115,6 @@ export interface GetReportDefinitionResult {
|
|
|
139
115
|
*/
|
|
140
116
|
lastUpdated: Date | undefined;
|
|
141
117
|
}
|
|
142
|
-
export declare namespace GetReportDefinitionResult {
|
|
143
|
-
/**
|
|
144
|
-
* @internal
|
|
145
|
-
*/
|
|
146
|
-
const filterSensitiveLog: (obj: GetReportDefinitionResult) => any;
|
|
147
|
-
}
|
|
148
118
|
export declare enum S3BucketRegion {
|
|
149
119
|
AF_SOUTH_1 = "af-south-1",
|
|
150
120
|
AP_EAST_1 = "ap-east-1",
|
|
@@ -171,36 +141,18 @@ export interface SourceS3Location {
|
|
|
171
141
|
*/
|
|
172
142
|
region?: S3BucketRegion | string;
|
|
173
143
|
}
|
|
174
|
-
export declare namespace SourceS3Location {
|
|
175
|
-
/**
|
|
176
|
-
* @internal
|
|
177
|
-
*/
|
|
178
|
-
const filterSensitiveLog: (obj: SourceS3Location) => any;
|
|
179
|
-
}
|
|
180
144
|
export interface ImportApplicationUsageRequest {
|
|
181
145
|
/**
|
|
182
146
|
* <p>Amazon S3 location to import application usage data from.</p>
|
|
183
147
|
*/
|
|
184
148
|
sourceS3Location: SourceS3Location | undefined;
|
|
185
149
|
}
|
|
186
|
-
export declare namespace ImportApplicationUsageRequest {
|
|
187
|
-
/**
|
|
188
|
-
* @internal
|
|
189
|
-
*/
|
|
190
|
-
const filterSensitiveLog: (obj: ImportApplicationUsageRequest) => any;
|
|
191
|
-
}
|
|
192
150
|
export interface ImportApplicationUsageResult {
|
|
193
151
|
/**
|
|
194
152
|
* <p>ID of the import request.</p>
|
|
195
153
|
*/
|
|
196
154
|
importId: string | undefined;
|
|
197
155
|
}
|
|
198
|
-
export declare namespace ImportApplicationUsageResult {
|
|
199
|
-
/**
|
|
200
|
-
* @internal
|
|
201
|
-
*/
|
|
202
|
-
const filterSensitiveLog: (obj: ImportApplicationUsageResult) => any;
|
|
203
|
-
}
|
|
204
156
|
export interface ListReportDefinitionsRequest {
|
|
205
157
|
/**
|
|
206
158
|
* <p>The token value from a previous call to access the next page of results.</p>
|
|
@@ -211,12 +163,6 @@ export interface ListReportDefinitionsRequest {
|
|
|
211
163
|
*/
|
|
212
164
|
maxResults?: number;
|
|
213
165
|
}
|
|
214
|
-
export declare namespace ListReportDefinitionsRequest {
|
|
215
|
-
/**
|
|
216
|
-
* @internal
|
|
217
|
-
*/
|
|
218
|
-
const filterSensitiveLog: (obj: ListReportDefinitionsRequest) => any;
|
|
219
|
-
}
|
|
220
166
|
/**
|
|
221
167
|
* <p>The configuration of a report in AWS Application Cost Profiler.</p>
|
|
222
168
|
*/
|
|
@@ -250,12 +196,6 @@ export interface ReportDefinition {
|
|
|
250
196
|
*/
|
|
251
197
|
lastUpdatedAt?: Date;
|
|
252
198
|
}
|
|
253
|
-
export declare namespace ReportDefinition {
|
|
254
|
-
/**
|
|
255
|
-
* @internal
|
|
256
|
-
*/
|
|
257
|
-
const filterSensitiveLog: (obj: ReportDefinition) => any;
|
|
258
|
-
}
|
|
259
199
|
export interface ListReportDefinitionsResult {
|
|
260
200
|
/**
|
|
261
201
|
* <p>The retrieved reports.</p>
|
|
@@ -266,12 +206,6 @@ export interface ListReportDefinitionsResult {
|
|
|
266
206
|
*/
|
|
267
207
|
nextToken?: string;
|
|
268
208
|
}
|
|
269
|
-
export declare namespace ListReportDefinitionsResult {
|
|
270
|
-
/**
|
|
271
|
-
* @internal
|
|
272
|
-
*/
|
|
273
|
-
const filterSensitiveLog: (obj: ListReportDefinitionsResult) => any;
|
|
274
|
-
}
|
|
275
209
|
export interface PutReportDefinitionRequest {
|
|
276
210
|
/**
|
|
277
211
|
* <p>Required. ID of the report. You can choose any valid string matching the pattern for the
|
|
@@ -296,24 +230,12 @@ export interface PutReportDefinitionRequest {
|
|
|
296
230
|
*/
|
|
297
231
|
destinationS3Location: S3Location | undefined;
|
|
298
232
|
}
|
|
299
|
-
export declare namespace PutReportDefinitionRequest {
|
|
300
|
-
/**
|
|
301
|
-
* @internal
|
|
302
|
-
*/
|
|
303
|
-
const filterSensitiveLog: (obj: PutReportDefinitionRequest) => any;
|
|
304
|
-
}
|
|
305
233
|
export interface PutReportDefinitionResult {
|
|
306
234
|
/**
|
|
307
235
|
* <p>ID of the report.</p>
|
|
308
236
|
*/
|
|
309
237
|
reportId?: string;
|
|
310
238
|
}
|
|
311
|
-
export declare namespace PutReportDefinitionResult {
|
|
312
|
-
/**
|
|
313
|
-
* @internal
|
|
314
|
-
*/
|
|
315
|
-
const filterSensitiveLog: (obj: PutReportDefinitionResult) => any;
|
|
316
|
-
}
|
|
317
239
|
/**
|
|
318
240
|
* <p>Your request exceeds one or more of the service quotas.</p>
|
|
319
241
|
*/
|
|
@@ -348,21 +270,69 @@ export interface UpdateReportDefinitionRequest {
|
|
|
348
270
|
*/
|
|
349
271
|
destinationS3Location: S3Location | undefined;
|
|
350
272
|
}
|
|
351
|
-
export declare namespace UpdateReportDefinitionRequest {
|
|
352
|
-
/**
|
|
353
|
-
* @internal
|
|
354
|
-
*/
|
|
355
|
-
const filterSensitiveLog: (obj: UpdateReportDefinitionRequest) => any;
|
|
356
|
-
}
|
|
357
273
|
export interface UpdateReportDefinitionResult {
|
|
358
274
|
/**
|
|
359
275
|
* <p>ID of the report.</p>
|
|
360
276
|
*/
|
|
361
277
|
reportId?: string;
|
|
362
278
|
}
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
279
|
+
/**
|
|
280
|
+
* @internal
|
|
281
|
+
*/
|
|
282
|
+
export declare const DeleteReportDefinitionRequestFilterSensitiveLog: (obj: DeleteReportDefinitionRequest) => any;
|
|
283
|
+
/**
|
|
284
|
+
* @internal
|
|
285
|
+
*/
|
|
286
|
+
export declare const DeleteReportDefinitionResultFilterSensitiveLog: (obj: DeleteReportDefinitionResult) => any;
|
|
287
|
+
/**
|
|
288
|
+
* @internal
|
|
289
|
+
*/
|
|
290
|
+
export declare const GetReportDefinitionRequestFilterSensitiveLog: (obj: GetReportDefinitionRequest) => any;
|
|
291
|
+
/**
|
|
292
|
+
* @internal
|
|
293
|
+
*/
|
|
294
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
295
|
+
/**
|
|
296
|
+
* @internal
|
|
297
|
+
*/
|
|
298
|
+
export declare const GetReportDefinitionResultFilterSensitiveLog: (obj: GetReportDefinitionResult) => any;
|
|
299
|
+
/**
|
|
300
|
+
* @internal
|
|
301
|
+
*/
|
|
302
|
+
export declare const SourceS3LocationFilterSensitiveLog: (obj: SourceS3Location) => any;
|
|
303
|
+
/**
|
|
304
|
+
* @internal
|
|
305
|
+
*/
|
|
306
|
+
export declare const ImportApplicationUsageRequestFilterSensitiveLog: (obj: ImportApplicationUsageRequest) => any;
|
|
307
|
+
/**
|
|
308
|
+
* @internal
|
|
309
|
+
*/
|
|
310
|
+
export declare const ImportApplicationUsageResultFilterSensitiveLog: (obj: ImportApplicationUsageResult) => any;
|
|
311
|
+
/**
|
|
312
|
+
* @internal
|
|
313
|
+
*/
|
|
314
|
+
export declare const ListReportDefinitionsRequestFilterSensitiveLog: (obj: ListReportDefinitionsRequest) => any;
|
|
315
|
+
/**
|
|
316
|
+
* @internal
|
|
317
|
+
*/
|
|
318
|
+
export declare const ReportDefinitionFilterSensitiveLog: (obj: ReportDefinition) => any;
|
|
319
|
+
/**
|
|
320
|
+
* @internal
|
|
321
|
+
*/
|
|
322
|
+
export declare const ListReportDefinitionsResultFilterSensitiveLog: (obj: ListReportDefinitionsResult) => any;
|
|
323
|
+
/**
|
|
324
|
+
* @internal
|
|
325
|
+
*/
|
|
326
|
+
export declare const PutReportDefinitionRequestFilterSensitiveLog: (obj: PutReportDefinitionRequest) => any;
|
|
327
|
+
/**
|
|
328
|
+
* @internal
|
|
329
|
+
*/
|
|
330
|
+
export declare const PutReportDefinitionResultFilterSensitiveLog: (obj: PutReportDefinitionResult) => any;
|
|
331
|
+
/**
|
|
332
|
+
* @internal
|
|
333
|
+
*/
|
|
334
|
+
export declare const UpdateReportDefinitionRequestFilterSensitiveLog: (obj: UpdateReportDefinitionRequest) => any;
|
|
335
|
+
/**
|
|
336
|
+
* @internal
|
|
337
|
+
*/
|
|
338
|
+
export declare const UpdateReportDefinitionResultFilterSensitiveLog: (obj: UpdateReportDefinitionResult) => any;
|
|
@@ -11,18 +11,10 @@ export interface DeleteReportDefinitionRequest {
|
|
|
11
11
|
|
|
12
12
|
reportId: string | undefined;
|
|
13
13
|
}
|
|
14
|
-
export declare namespace DeleteReportDefinitionRequest {
|
|
15
|
-
|
|
16
|
-
const filterSensitiveLog: (obj: DeleteReportDefinitionRequest) => any;
|
|
17
|
-
}
|
|
18
14
|
export interface DeleteReportDefinitionResult {
|
|
19
15
|
|
|
20
16
|
reportId?: string;
|
|
21
17
|
}
|
|
22
|
-
export declare namespace DeleteReportDefinitionResult {
|
|
23
|
-
|
|
24
|
-
const filterSensitiveLog: (obj: DeleteReportDefinitionResult) => any;
|
|
25
|
-
}
|
|
26
18
|
|
|
27
19
|
export declare class InternalServerException extends __BaseException {
|
|
28
20
|
readonly name: "InternalServerException";
|
|
@@ -48,10 +40,6 @@ export interface GetReportDefinitionRequest {
|
|
|
48
40
|
|
|
49
41
|
reportId: string | undefined;
|
|
50
42
|
}
|
|
51
|
-
export declare namespace GetReportDefinitionRequest {
|
|
52
|
-
|
|
53
|
-
const filterSensitiveLog: (obj: GetReportDefinitionRequest) => any;
|
|
54
|
-
}
|
|
55
43
|
|
|
56
44
|
export interface S3Location {
|
|
57
45
|
|
|
@@ -59,10 +47,6 @@ export interface S3Location {
|
|
|
59
47
|
|
|
60
48
|
prefix: string | undefined;
|
|
61
49
|
}
|
|
62
|
-
export declare namespace S3Location {
|
|
63
|
-
|
|
64
|
-
const filterSensitiveLog: (obj: S3Location) => any;
|
|
65
|
-
}
|
|
66
50
|
export declare enum Format {
|
|
67
51
|
CSV = "CSV",
|
|
68
52
|
PARQUET = "PARQUET"
|
|
@@ -88,10 +72,6 @@ export interface GetReportDefinitionResult {
|
|
|
88
72
|
|
|
89
73
|
lastUpdated: Date | undefined;
|
|
90
74
|
}
|
|
91
|
-
export declare namespace GetReportDefinitionResult {
|
|
92
|
-
|
|
93
|
-
const filterSensitiveLog: (obj: GetReportDefinitionResult) => any;
|
|
94
|
-
}
|
|
95
75
|
export declare enum S3BucketRegion {
|
|
96
76
|
AF_SOUTH_1 = "af-south-1",
|
|
97
77
|
AP_EAST_1 = "ap-east-1",
|
|
@@ -107,36 +87,20 @@ export interface SourceS3Location {
|
|
|
107
87
|
|
|
108
88
|
region?: S3BucketRegion | string;
|
|
109
89
|
}
|
|
110
|
-
export declare namespace SourceS3Location {
|
|
111
|
-
|
|
112
|
-
const filterSensitiveLog: (obj: SourceS3Location) => any;
|
|
113
|
-
}
|
|
114
90
|
export interface ImportApplicationUsageRequest {
|
|
115
91
|
|
|
116
92
|
sourceS3Location: SourceS3Location | undefined;
|
|
117
93
|
}
|
|
118
|
-
export declare namespace ImportApplicationUsageRequest {
|
|
119
|
-
|
|
120
|
-
const filterSensitiveLog: (obj: ImportApplicationUsageRequest) => any;
|
|
121
|
-
}
|
|
122
94
|
export interface ImportApplicationUsageResult {
|
|
123
95
|
|
|
124
96
|
importId: string | undefined;
|
|
125
97
|
}
|
|
126
|
-
export declare namespace ImportApplicationUsageResult {
|
|
127
|
-
|
|
128
|
-
const filterSensitiveLog: (obj: ImportApplicationUsageResult) => any;
|
|
129
|
-
}
|
|
130
98
|
export interface ListReportDefinitionsRequest {
|
|
131
99
|
|
|
132
100
|
nextToken?: string;
|
|
133
101
|
|
|
134
102
|
maxResults?: number;
|
|
135
103
|
}
|
|
136
|
-
export declare namespace ListReportDefinitionsRequest {
|
|
137
|
-
|
|
138
|
-
const filterSensitiveLog: (obj: ListReportDefinitionsRequest) => any;
|
|
139
|
-
}
|
|
140
104
|
|
|
141
105
|
export interface ReportDefinition {
|
|
142
106
|
|
|
@@ -154,20 +118,12 @@ export interface ReportDefinition {
|
|
|
154
118
|
|
|
155
119
|
lastUpdatedAt?: Date;
|
|
156
120
|
}
|
|
157
|
-
export declare namespace ReportDefinition {
|
|
158
|
-
|
|
159
|
-
const filterSensitiveLog: (obj: ReportDefinition) => any;
|
|
160
|
-
}
|
|
161
121
|
export interface ListReportDefinitionsResult {
|
|
162
122
|
|
|
163
123
|
reportDefinitions?: ReportDefinition[];
|
|
164
124
|
|
|
165
125
|
nextToken?: string;
|
|
166
126
|
}
|
|
167
|
-
export declare namespace ListReportDefinitionsResult {
|
|
168
|
-
|
|
169
|
-
const filterSensitiveLog: (obj: ListReportDefinitionsResult) => any;
|
|
170
|
-
}
|
|
171
127
|
export interface PutReportDefinitionRequest {
|
|
172
128
|
|
|
173
129
|
reportId: string | undefined;
|
|
@@ -180,18 +136,10 @@ export interface PutReportDefinitionRequest {
|
|
|
180
136
|
|
|
181
137
|
destinationS3Location: S3Location | undefined;
|
|
182
138
|
}
|
|
183
|
-
export declare namespace PutReportDefinitionRequest {
|
|
184
|
-
|
|
185
|
-
const filterSensitiveLog: (obj: PutReportDefinitionRequest) => any;
|
|
186
|
-
}
|
|
187
139
|
export interface PutReportDefinitionResult {
|
|
188
140
|
|
|
189
141
|
reportId?: string;
|
|
190
142
|
}
|
|
191
|
-
export declare namespace PutReportDefinitionResult {
|
|
192
|
-
|
|
193
|
-
const filterSensitiveLog: (obj: PutReportDefinitionResult) => any;
|
|
194
|
-
}
|
|
195
143
|
|
|
196
144
|
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
197
145
|
readonly name: "ServiceQuotaExceededException";
|
|
@@ -211,15 +159,37 @@ export interface UpdateReportDefinitionRequest {
|
|
|
211
159
|
|
|
212
160
|
destinationS3Location: S3Location | undefined;
|
|
213
161
|
}
|
|
214
|
-
export declare namespace UpdateReportDefinitionRequest {
|
|
215
|
-
|
|
216
|
-
const filterSensitiveLog: (obj: UpdateReportDefinitionRequest) => any;
|
|
217
|
-
}
|
|
218
162
|
export interface UpdateReportDefinitionResult {
|
|
219
163
|
|
|
220
164
|
reportId?: string;
|
|
221
165
|
}
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
166
|
+
|
|
167
|
+
export declare const DeleteReportDefinitionRequestFilterSensitiveLog: (obj: DeleteReportDefinitionRequest) => any;
|
|
168
|
+
|
|
169
|
+
export declare const DeleteReportDefinitionResultFilterSensitiveLog: (obj: DeleteReportDefinitionResult) => any;
|
|
170
|
+
|
|
171
|
+
export declare const GetReportDefinitionRequestFilterSensitiveLog: (obj: GetReportDefinitionRequest) => any;
|
|
172
|
+
|
|
173
|
+
export declare const S3LocationFilterSensitiveLog: (obj: S3Location) => any;
|
|
174
|
+
|
|
175
|
+
export declare const GetReportDefinitionResultFilterSensitiveLog: (obj: GetReportDefinitionResult) => any;
|
|
176
|
+
|
|
177
|
+
export declare const SourceS3LocationFilterSensitiveLog: (obj: SourceS3Location) => any;
|
|
178
|
+
|
|
179
|
+
export declare const ImportApplicationUsageRequestFilterSensitiveLog: (obj: ImportApplicationUsageRequest) => any;
|
|
180
|
+
|
|
181
|
+
export declare const ImportApplicationUsageResultFilterSensitiveLog: (obj: ImportApplicationUsageResult) => any;
|
|
182
|
+
|
|
183
|
+
export declare const ListReportDefinitionsRequestFilterSensitiveLog: (obj: ListReportDefinitionsRequest) => any;
|
|
184
|
+
|
|
185
|
+
export declare const ReportDefinitionFilterSensitiveLog: (obj: ReportDefinition) => any;
|
|
186
|
+
|
|
187
|
+
export declare const ListReportDefinitionsResultFilterSensitiveLog: (obj: ListReportDefinitionsResult) => any;
|
|
188
|
+
|
|
189
|
+
export declare const PutReportDefinitionRequestFilterSensitiveLog: (obj: PutReportDefinitionRequest) => any;
|
|
190
|
+
|
|
191
|
+
export declare const PutReportDefinitionResultFilterSensitiveLog: (obj: PutReportDefinitionResult) => any;
|
|
192
|
+
|
|
193
|
+
export declare const UpdateReportDefinitionRequestFilterSensitiveLog: (obj: UpdateReportDefinitionRequest) => any;
|
|
194
|
+
|
|
195
|
+
export declare const UpdateReportDefinitionResultFilterSensitiveLog: (obj: UpdateReportDefinitionResult) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-applicationcostprofiler",
|
|
3
3
|
"description": "AWS SDK for JavaScript Applicationcostprofiler Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.137.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|