@aws-sdk/client-codeguruprofiler 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/CodeGuruProfiler.js +101 -94
- package/dist-es/CodeGuruProfilerClient.js +28 -22
- package/dist-es/commands/AddNotificationChannelsCommand.js +28 -21
- package/dist-es/commands/BatchGetFrameMetricDataCommand.js +28 -21
- package/dist-es/commands/ConfigureAgentCommand.js +28 -21
- package/dist-es/commands/CreateProfilingGroupCommand.js +28 -21
- package/dist-es/commands/DeleteProfilingGroupCommand.js +28 -21
- package/dist-es/commands/DescribeProfilingGroupCommand.js +28 -21
- package/dist-es/commands/GetFindingsReportAccountSummaryCommand.js +28 -21
- package/dist-es/commands/GetNotificationConfigurationCommand.js +28 -21
- package/dist-es/commands/GetPolicyCommand.js +28 -21
- package/dist-es/commands/GetProfileCommand.js +28 -21
- package/dist-es/commands/GetRecommendationsCommand.js +28 -21
- package/dist-es/commands/ListFindingsReportsCommand.js +28 -21
- package/dist-es/commands/ListProfileTimesCommand.js +28 -21
- package/dist-es/commands/ListProfilingGroupsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/PostAgentProfileCommand.js +28 -21
- package/dist-es/commands/PutPermissionCommand.js +28 -21
- package/dist-es/commands/RemoveNotificationChannelCommand.js +28 -21
- package/dist-es/commands/RemovePermissionCommand.js +28 -21
- package/dist-es/commands/SubmitFeedbackCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateProfilingGroupCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CodeGuruProfilerServiceException.js +10 -5
- package/dist-es/models/models_0.js +135 -264
- package/dist-es/pagination/GetFindingsReportAccountSummaryPaginator.js +68 -25
- package/dist-es/pagination/ListFindingsReportsPaginator.js +68 -25
- package/dist-es/pagination/ListProfileTimesPaginator.js +68 -25
- package/dist-es/pagination/ListProfilingGroupsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +2420 -1718
- 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
|
@@ -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 { UntagResourceRequestFilterSensitiveLog, UntagResourceResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UntagResourceCommand = (function (_super) {
|
|
7
|
+
__extends(UntagResourceCommand, _super);
|
|
8
|
+
function UntagResourceCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UntagResourceCommand.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 = "CodeGuruProfilerClient";
|
|
18
|
+
var commandName = "UntagResourceCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UntagResourceRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UntagResourceResponseFilterSensitiveLog,
|
|
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
|
+
UntagResourceCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UntagResourceCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UntagResourceCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UntagResourceCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UntagResourceCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UntagResourceCommand };
|
|
@@ -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 { UpdateProfilingGroupRequestFilterSensitiveLog, UpdateProfilingGroupResponseFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateProfilingGroupCommand, serializeAws_restJson1UpdateProfilingGroupCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
var UpdateProfilingGroupCommand = (function (_super) {
|
|
7
|
+
__extends(UpdateProfilingGroupCommand, _super);
|
|
8
|
+
function UpdateProfilingGroupCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateProfilingGroupCommand.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 = "CodeGuruProfilerClient";
|
|
18
|
+
var commandName = "UpdateProfilingGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateProfilingGroupRequestFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UpdateProfilingGroupResponseFilterSensitiveLog,
|
|
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
|
+
UpdateProfilingGroupCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateProfilingGroupCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateProfilingGroupCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateProfilingGroupCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateProfilingGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateProfilingGroupCommand };
|
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: "codeguru-profiler", regionHash: regionHash, partitionHash: partitionHash }))];
|
|
127
|
+
});
|
|
128
|
+
}); };
|
|
@@ -1,7 +1,12 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
1
2
|
import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
var CodeGuruProfilerServiceException = (function (_super) {
|
|
4
|
+
__extends(CodeGuruProfilerServiceException, _super);
|
|
5
|
+
function CodeGuruProfilerServiceException(options) {
|
|
6
|
+
var _this = _super.call(this, options) || this;
|
|
7
|
+
Object.setPrototypeOf(_this, CodeGuruProfilerServiceException.prototype);
|
|
8
|
+
return _this;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return CodeGuruProfilerServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { CodeGuruProfilerServiceException };
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { CodeGuruProfilerServiceException as __BaseException } from "./CodeGuruProfilerServiceException";
|
|
2
3
|
export var ActionGroup;
|
|
3
4
|
(function (ActionGroup) {
|
|
@@ -7,81 +8,81 @@ export var EventPublisher;
|
|
|
7
8
|
(function (EventPublisher) {
|
|
8
9
|
EventPublisher["ANOMALY_DETECTION"] = "AnomalyDetection";
|
|
9
10
|
})(EventPublisher || (EventPublisher = {}));
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
this.$fault = "client";
|
|
19
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
11
|
+
var ConflictException = (function (_super) {
|
|
12
|
+
__extends(ConflictException, _super);
|
|
13
|
+
function ConflictException(opts) {
|
|
14
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
15
|
+
_this.name = "ConflictException";
|
|
16
|
+
_this.$fault = "client";
|
|
17
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
18
|
+
return _this;
|
|
20
19
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
20
|
+
return ConflictException;
|
|
21
|
+
}(__BaseException));
|
|
22
|
+
export { ConflictException };
|
|
23
|
+
var InternalServerException = (function (_super) {
|
|
24
|
+
__extends(InternalServerException, _super);
|
|
25
|
+
function InternalServerException(opts) {
|
|
26
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
27
|
+
_this.name = "InternalServerException";
|
|
28
|
+
_this.$fault = "server";
|
|
29
|
+
_this.$retryable = {};
|
|
30
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
31
|
+
return _this;
|
|
33
32
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
33
|
+
return InternalServerException;
|
|
34
|
+
}(__BaseException));
|
|
35
|
+
export { InternalServerException };
|
|
36
|
+
var ResourceNotFoundException = (function (_super) {
|
|
37
|
+
__extends(ResourceNotFoundException, _super);
|
|
38
|
+
function ResourceNotFoundException(opts) {
|
|
39
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
40
|
+
_this.name = "ResourceNotFoundException";
|
|
41
|
+
_this.$fault = "client";
|
|
42
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
43
|
+
return _this;
|
|
45
44
|
}
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
45
|
+
return ResourceNotFoundException;
|
|
46
|
+
}(__BaseException));
|
|
47
|
+
export { ResourceNotFoundException };
|
|
48
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
49
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
50
|
+
function ServiceQuotaExceededException(opts) {
|
|
51
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
52
|
+
_this.name = "ServiceQuotaExceededException";
|
|
53
|
+
_this.$fault = "client";
|
|
54
|
+
_this.$retryable = {};
|
|
55
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
56
|
+
return _this;
|
|
58
57
|
}
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
58
|
+
return ServiceQuotaExceededException;
|
|
59
|
+
}(__BaseException));
|
|
60
|
+
export { ServiceQuotaExceededException };
|
|
61
|
+
var ThrottlingException = (function (_super) {
|
|
62
|
+
__extends(ThrottlingException, _super);
|
|
63
|
+
function ThrottlingException(opts) {
|
|
64
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
65
|
+
_this.name = "ThrottlingException";
|
|
66
|
+
_this.$fault = "client";
|
|
67
|
+
_this.$retryable = {};
|
|
68
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
69
|
+
return _this;
|
|
71
70
|
}
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
71
|
+
return ThrottlingException;
|
|
72
|
+
}(__BaseException));
|
|
73
|
+
export { ThrottlingException };
|
|
74
|
+
var ValidationException = (function (_super) {
|
|
75
|
+
__extends(ValidationException, _super);
|
|
76
|
+
function ValidationException(opts) {
|
|
77
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
78
|
+
_this.name = "ValidationException";
|
|
79
|
+
_this.$fault = "client";
|
|
80
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
81
|
+
return _this;
|
|
83
82
|
}
|
|
84
|
-
|
|
83
|
+
return ValidationException;
|
|
84
|
+
}(__BaseException));
|
|
85
|
+
export { ValidationException };
|
|
85
86
|
export var AgentParameterField;
|
|
86
87
|
(function (AgentParameterField) {
|
|
87
88
|
AgentParameterField["MAX_STACK_DEPTH"] = "MaxStackDepth";
|
|
@@ -127,198 +128,68 @@ export var OrderBy;
|
|
|
127
128
|
OrderBy["TIMESTAMP_ASCENDING"] = "TimestampAscending";
|
|
128
129
|
OrderBy["TIMESTAMP_DESCENDING"] = "TimestampDescending";
|
|
129
130
|
})(OrderBy || (OrderBy = {}));
|
|
130
|
-
export
|
|
131
|
-
|
|
132
|
-
});
|
|
133
|
-
export
|
|
134
|
-
|
|
135
|
-
});
|
|
136
|
-
export
|
|
137
|
-
|
|
138
|
-
});
|
|
139
|
-
export
|
|
140
|
-
|
|
141
|
-
});
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
});
|
|
145
|
-
export
|
|
146
|
-
|
|
147
|
-
});
|
|
148
|
-
export
|
|
149
|
-
|
|
150
|
-
});
|
|
151
|
-
export
|
|
152
|
-
|
|
153
|
-
});
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
});
|
|
157
|
-
export
|
|
158
|
-
|
|
159
|
-
});
|
|
160
|
-
export
|
|
161
|
-
|
|
162
|
-
});
|
|
163
|
-
export
|
|
164
|
-
|
|
165
|
-
});
|
|
166
|
-
export
|
|
167
|
-
|
|
168
|
-
});
|
|
169
|
-
export
|
|
170
|
-
|
|
171
|
-
});
|
|
172
|
-
export
|
|
173
|
-
|
|
174
|
-
});
|
|
175
|
-
export
|
|
176
|
-
|
|
177
|
-
});
|
|
178
|
-
export
|
|
179
|
-
|
|
180
|
-
});
|
|
181
|
-
export
|
|
182
|
-
|
|
183
|
-
});
|
|
184
|
-
export
|
|
185
|
-
|
|
186
|
-
});
|
|
187
|
-
export
|
|
188
|
-
|
|
189
|
-
});
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
});
|
|
193
|
-
export
|
|
194
|
-
|
|
195
|
-
});
|
|
196
|
-
export const ConfigureAgentResponseFilterSensitiveLog = (obj) => ({
|
|
197
|
-
...obj,
|
|
198
|
-
});
|
|
199
|
-
export const CreateProfilingGroupRequestFilterSensitiveLog = (obj) => ({
|
|
200
|
-
...obj,
|
|
201
|
-
});
|
|
202
|
-
export const ProfilingStatusFilterSensitiveLog = (obj) => ({
|
|
203
|
-
...obj,
|
|
204
|
-
});
|
|
205
|
-
export const ProfilingGroupDescriptionFilterSensitiveLog = (obj) => ({
|
|
206
|
-
...obj,
|
|
207
|
-
});
|
|
208
|
-
export const CreateProfilingGroupResponseFilterSensitiveLog = (obj) => ({
|
|
209
|
-
...obj,
|
|
210
|
-
});
|
|
211
|
-
export const DeleteProfilingGroupRequestFilterSensitiveLog = (obj) => ({
|
|
212
|
-
...obj,
|
|
213
|
-
});
|
|
214
|
-
export const DeleteProfilingGroupResponseFilterSensitiveLog = (obj) => ({
|
|
215
|
-
...obj,
|
|
216
|
-
});
|
|
217
|
-
export const DescribeProfilingGroupRequestFilterSensitiveLog = (obj) => ({
|
|
218
|
-
...obj,
|
|
219
|
-
});
|
|
220
|
-
export const DescribeProfilingGroupResponseFilterSensitiveLog = (obj) => ({
|
|
221
|
-
...obj,
|
|
222
|
-
});
|
|
223
|
-
export const GetNotificationConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
224
|
-
...obj,
|
|
225
|
-
});
|
|
226
|
-
export const GetNotificationConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
227
|
-
...obj,
|
|
228
|
-
});
|
|
229
|
-
export const GetPolicyRequestFilterSensitiveLog = (obj) => ({
|
|
230
|
-
...obj,
|
|
231
|
-
});
|
|
232
|
-
export const GetPolicyResponseFilterSensitiveLog = (obj) => ({
|
|
233
|
-
...obj,
|
|
234
|
-
});
|
|
235
|
-
export const GetProfileRequestFilterSensitiveLog = (obj) => ({
|
|
236
|
-
...obj,
|
|
237
|
-
});
|
|
238
|
-
export const GetProfileResponseFilterSensitiveLog = (obj) => ({
|
|
239
|
-
...obj,
|
|
240
|
-
});
|
|
241
|
-
export const GetRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
242
|
-
...obj,
|
|
243
|
-
});
|
|
244
|
-
export const PatternFilterSensitiveLog = (obj) => ({
|
|
245
|
-
...obj,
|
|
246
|
-
});
|
|
247
|
-
export const MatchFilterSensitiveLog = (obj) => ({
|
|
248
|
-
...obj,
|
|
249
|
-
});
|
|
250
|
-
export const RecommendationFilterSensitiveLog = (obj) => ({
|
|
251
|
-
...obj,
|
|
252
|
-
});
|
|
253
|
-
export const GetRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
254
|
-
...obj,
|
|
255
|
-
});
|
|
256
|
-
export const ListFindingsReportsRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
-
...obj,
|
|
258
|
-
});
|
|
259
|
-
export const ListFindingsReportsResponseFilterSensitiveLog = (obj) => ({
|
|
260
|
-
...obj,
|
|
261
|
-
});
|
|
262
|
-
export const ListProfileTimesRequestFilterSensitiveLog = (obj) => ({
|
|
263
|
-
...obj,
|
|
264
|
-
});
|
|
265
|
-
export const ProfileTimeFilterSensitiveLog = (obj) => ({
|
|
266
|
-
...obj,
|
|
267
|
-
});
|
|
268
|
-
export const ListProfileTimesResponseFilterSensitiveLog = (obj) => ({
|
|
269
|
-
...obj,
|
|
270
|
-
});
|
|
271
|
-
export const ListProfilingGroupsRequestFilterSensitiveLog = (obj) => ({
|
|
272
|
-
...obj,
|
|
273
|
-
});
|
|
274
|
-
export const ListProfilingGroupsResponseFilterSensitiveLog = (obj) => ({
|
|
275
|
-
...obj,
|
|
276
|
-
});
|
|
277
|
-
export const PostAgentProfileRequestFilterSensitiveLog = (obj) => ({
|
|
278
|
-
...obj,
|
|
279
|
-
});
|
|
280
|
-
export const PostAgentProfileResponseFilterSensitiveLog = (obj) => ({
|
|
281
|
-
...obj,
|
|
282
|
-
});
|
|
283
|
-
export const PutPermissionRequestFilterSensitiveLog = (obj) => ({
|
|
284
|
-
...obj,
|
|
285
|
-
});
|
|
286
|
-
export const PutPermissionResponseFilterSensitiveLog = (obj) => ({
|
|
287
|
-
...obj,
|
|
288
|
-
});
|
|
289
|
-
export const RemoveNotificationChannelRequestFilterSensitiveLog = (obj) => ({
|
|
290
|
-
...obj,
|
|
291
|
-
});
|
|
292
|
-
export const RemoveNotificationChannelResponseFilterSensitiveLog = (obj) => ({
|
|
293
|
-
...obj,
|
|
294
|
-
});
|
|
295
|
-
export const RemovePermissionRequestFilterSensitiveLog = (obj) => ({
|
|
296
|
-
...obj,
|
|
297
|
-
});
|
|
298
|
-
export const RemovePermissionResponseFilterSensitiveLog = (obj) => ({
|
|
299
|
-
...obj,
|
|
300
|
-
});
|
|
301
|
-
export const SubmitFeedbackRequestFilterSensitiveLog = (obj) => ({
|
|
302
|
-
...obj,
|
|
303
|
-
});
|
|
304
|
-
export const SubmitFeedbackResponseFilterSensitiveLog = (obj) => ({
|
|
305
|
-
...obj,
|
|
306
|
-
});
|
|
307
|
-
export const UpdateProfilingGroupRequestFilterSensitiveLog = (obj) => ({
|
|
308
|
-
...obj,
|
|
309
|
-
});
|
|
310
|
-
export const UpdateProfilingGroupResponseFilterSensitiveLog = (obj) => ({
|
|
311
|
-
...obj,
|
|
312
|
-
});
|
|
313
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
314
|
-
...obj,
|
|
315
|
-
});
|
|
316
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
317
|
-
...obj,
|
|
318
|
-
});
|
|
319
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
320
|
-
...obj,
|
|
321
|
-
});
|
|
322
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
323
|
-
...obj,
|
|
324
|
-
});
|
|
131
|
+
export var ChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
132
|
+
export var AddNotificationChannelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
133
|
+
export var NotificationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
134
|
+
export var AddNotificationChannelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
135
|
+
export var AgentConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
136
|
+
export var AgentOrchestrationConfigFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
137
|
+
export var AggregatedProfileTimeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
138
|
+
export var UserFeedbackFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
139
|
+
export var AnomalyInstanceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
140
|
+
export var MetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
141
|
+
export var AnomalyFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
142
|
+
export var FrameMetricFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
143
|
+
export var BatchGetFrameMetricDataRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
144
|
+
export var TimestampStructureFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
145
|
+
export var FrameMetricDatumFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
146
|
+
export var BatchGetFrameMetricDataResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
147
|
+
export var GetFindingsReportAccountSummaryRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
148
|
+
export var FindingsReportSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
149
|
+
export var GetFindingsReportAccountSummaryResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
150
|
+
export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
151
|
+
export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
152
|
+
export var ConfigureAgentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
153
|
+
export var ConfigureAgentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
154
|
+
export var CreateProfilingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
155
|
+
export var ProfilingStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
156
|
+
export var ProfilingGroupDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
157
|
+
export var CreateProfilingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
158
|
+
export var DeleteProfilingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
159
|
+
export var DeleteProfilingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
export var DescribeProfilingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
161
|
+
export var DescribeProfilingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
162
|
+
export var GetNotificationConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
163
|
+
export var GetNotificationConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
export var GetPolicyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
165
|
+
export var GetPolicyResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
166
|
+
export var GetProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
167
|
+
export var GetProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
|
+
export var GetRecommendationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
169
|
+
export var PatternFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
170
|
+
export var MatchFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
171
|
+
export var RecommendationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
export var GetRecommendationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
173
|
+
export var ListFindingsReportsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
174
|
+
export var ListFindingsReportsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
175
|
+
export var ListProfileTimesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
176
|
+
export var ProfileTimeFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
177
|
+
export var ListProfileTimesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
178
|
+
export var ListProfilingGroupsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
179
|
+
export var ListProfilingGroupsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
180
|
+
export var PostAgentProfileRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
181
|
+
export var PostAgentProfileResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
182
|
+
export var PutPermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
183
|
+
export var PutPermissionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
184
|
+
export var RemoveNotificationChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
185
|
+
export var RemoveNotificationChannelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
|
+
export var RemovePermissionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
187
|
+
export var RemovePermissionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
188
|
+
export var SubmitFeedbackRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
189
|
+
export var SubmitFeedbackResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
190
|
+
export var UpdateProfilingGroupRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
191
|
+
export var UpdateProfilingGroupResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
192
|
+
export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
193
|
+
export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
194
|
+
export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
195
|
+
export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|