@aws-sdk/client-support 3.180.0 → 3.183.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.
Files changed (29) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +20 -14
  3. package/dist-es/Support.js +58 -65
  4. package/dist-es/SupportClient.js +22 -28
  5. package/dist-es/commands/AddAttachmentsToSetCommand.js +21 -28
  6. package/dist-es/commands/AddCommunicationToCaseCommand.js +21 -28
  7. package/dist-es/commands/CreateCaseCommand.js +21 -28
  8. package/dist-es/commands/DescribeAttachmentCommand.js +21 -28
  9. package/dist-es/commands/DescribeCasesCommand.js +21 -28
  10. package/dist-es/commands/DescribeCommunicationsCommand.js +21 -28
  11. package/dist-es/commands/DescribeServicesCommand.js +21 -28
  12. package/dist-es/commands/DescribeSeverityLevelsCommand.js +21 -28
  13. package/dist-es/commands/DescribeTrustedAdvisorCheckRefreshStatusesCommand.js +21 -28
  14. package/dist-es/commands/DescribeTrustedAdvisorCheckResultCommand.js +21 -28
  15. package/dist-es/commands/DescribeTrustedAdvisorCheckSummariesCommand.js +21 -28
  16. package/dist-es/commands/DescribeTrustedAdvisorChecksCommand.js +21 -28
  17. package/dist-es/commands/RefreshTrustedAdvisorCheckCommand.js +21 -28
  18. package/dist-es/commands/ResolveCaseCommand.js +21 -28
  19. package/dist-es/endpoints.js +8 -8
  20. package/dist-es/models/SupportServiceException.js +5 -10
  21. package/dist-es/models/models_0.js +231 -144
  22. package/dist-es/pagination/DescribeCasesPaginator.js +25 -68
  23. package/dist-es/pagination/DescribeCommunicationsPaginator.js +25 -68
  24. package/dist-es/protocols/Aws_json1_1.js +950 -1199
  25. package/dist-es/runtimeConfig.browser.js +26 -12
  26. package/dist-es/runtimeConfig.js +30 -12
  27. package/dist-es/runtimeConfig.native.js +8 -5
  28. package/dist-es/runtimeConfig.shared.js +8 -11
  29. package/package.json +33 -33
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { RefreshTrustedAdvisorCheckRequestFilterSensitiveLog, RefreshTrustedAdvisorCheckResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand, serializeAws_json1_1RefreshTrustedAdvisorCheckCommand, } from "../protocols/Aws_json1_1";
6
- var RefreshTrustedAdvisorCheckCommand = (function (_super) {
7
- __extends(RefreshTrustedAdvisorCheckCommand, _super);
8
- function RefreshTrustedAdvisorCheckCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class RefreshTrustedAdvisorCheckCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- RefreshTrustedAdvisorCheckCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "SupportClient";
18
- var commandName = "RefreshTrustedAdvisorCheckCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "SupportClient";
15
+ const commandName = "RefreshTrustedAdvisorCheckCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: RefreshTrustedAdvisorCheckRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: RefreshTrustedAdvisorCheckResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- RefreshTrustedAdvisorCheckCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1RefreshTrustedAdvisorCheckCommand(input, context);
33
- };
34
- RefreshTrustedAdvisorCheckCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1RefreshTrustedAdvisorCheckCommand(output, context);
36
- };
37
- return RefreshTrustedAdvisorCheckCommand;
38
- }($Command));
39
- export { RefreshTrustedAdvisorCheckCommand };
31
+ }
32
+ }
@@ -1,39 +1,32 @@
1
- import { __extends } from "tslib";
2
1
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
2
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
3
  import { ResolveCaseRequestFilterSensitiveLog, ResolveCaseResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1ResolveCaseCommand, serializeAws_json1_1ResolveCaseCommand, } from "../protocols/Aws_json1_1";
6
- var ResolveCaseCommand = (function (_super) {
7
- __extends(ResolveCaseCommand, _super);
8
- function ResolveCaseCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class ResolveCaseCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- ResolveCaseCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "SupportClient";
18
- var commandName = "ResolveCaseCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "SupportClient";
15
+ const commandName = "ResolveCaseCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: ResolveCaseRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: ResolveCaseResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- ResolveCaseCommand.prototype.serialize = function (input, context) {
23
+ const { requestHandler } = configuration;
24
+ return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
+ }
26
+ serialize(input, context) {
32
27
  return serializeAws_json1_1ResolveCaseCommand(input, context);
33
- };
34
- ResolveCaseCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1ResolveCaseCommand(output, context);
36
- };
37
- return ResolveCaseCommand;
38
- }($Command));
39
- export { ResolveCaseCommand };
31
+ }
32
+ }
@@ -1,6 +1,5 @@
1
- import { __assign, __awaiter, __generator } from "tslib";
2
1
  import { getRegionInfo } from "@aws-sdk/config-resolver";
3
- var regionHash = {
2
+ const regionHash = {
4
3
  "aws-cn-global": {
5
4
  variants: [
6
5
  {
@@ -47,7 +46,7 @@ var regionHash = {
47
46
  signingRegion: "us-gov-west-1",
48
47
  },
49
48
  };
50
- var partitionHash = {
49
+ const partitionHash = {
51
50
  aws: {
52
51
  regions: [
53
52
  "af-south-1",
@@ -168,8 +167,9 @@ var partitionHash = {
168
167
  ],
169
168
  },
170
169
  };
171
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
172
- return __generator(this, function (_a) {
173
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "support", regionHash: regionHash, partitionHash: partitionHash }))];
174
- });
175
- }); };
170
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
171
+ ...options,
172
+ signingService: "support",
173
+ regionHash,
174
+ partitionHash,
175
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var SupportServiceException = (function (_super) {
4
- __extends(SupportServiceException, _super);
5
- function SupportServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, SupportServiceException.prototype);
8
- return _this;
2
+ export class SupportServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, SupportServiceException.prototype);
9
6
  }
10
- return SupportServiceException;
11
- }(__ServiceException));
12
- export { SupportServiceException };
7
+ }
@@ -1,154 +1,241 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { SupportServiceException as __BaseException } from "./SupportServiceException";
3
- var AttachmentLimitExceeded = (function (_super) {
4
- __extends(AttachmentLimitExceeded, _super);
5
- function AttachmentLimitExceeded(opts) {
6
- var _this = _super.call(this, __assign({ name: "AttachmentLimitExceeded", $fault: "client" }, opts)) || this;
7
- _this.name = "AttachmentLimitExceeded";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, AttachmentLimitExceeded.prototype);
10
- return _this;
2
+ export class AttachmentLimitExceeded extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "AttachmentLimitExceeded",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "AttachmentLimitExceeded";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, AttachmentLimitExceeded.prototype);
11
12
  }
12
- return AttachmentLimitExceeded;
13
- }(__BaseException));
14
- export { AttachmentLimitExceeded };
15
- var AttachmentSetExpired = (function (_super) {
16
- __extends(AttachmentSetExpired, _super);
17
- function AttachmentSetExpired(opts) {
18
- var _this = _super.call(this, __assign({ name: "AttachmentSetExpired", $fault: "client" }, opts)) || this;
19
- _this.name = "AttachmentSetExpired";
20
- _this.$fault = "client";
21
- Object.setPrototypeOf(_this, AttachmentSetExpired.prototype);
22
- return _this;
13
+ }
14
+ export class AttachmentSetExpired extends __BaseException {
15
+ constructor(opts) {
16
+ super({
17
+ name: "AttachmentSetExpired",
18
+ $fault: "client",
19
+ ...opts,
20
+ });
21
+ this.name = "AttachmentSetExpired";
22
+ this.$fault = "client";
23
+ Object.setPrototypeOf(this, AttachmentSetExpired.prototype);
23
24
  }
24
- return AttachmentSetExpired;
25
- }(__BaseException));
26
- export { AttachmentSetExpired };
27
- var AttachmentSetIdNotFound = (function (_super) {
28
- __extends(AttachmentSetIdNotFound, _super);
29
- function AttachmentSetIdNotFound(opts) {
30
- var _this = _super.call(this, __assign({ name: "AttachmentSetIdNotFound", $fault: "client" }, opts)) || this;
31
- _this.name = "AttachmentSetIdNotFound";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, AttachmentSetIdNotFound.prototype);
34
- return _this;
25
+ }
26
+ export class AttachmentSetIdNotFound extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "AttachmentSetIdNotFound",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "AttachmentSetIdNotFound";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, AttachmentSetIdNotFound.prototype);
35
36
  }
36
- return AttachmentSetIdNotFound;
37
- }(__BaseException));
38
- export { AttachmentSetIdNotFound };
39
- var AttachmentSetSizeLimitExceeded = (function (_super) {
40
- __extends(AttachmentSetSizeLimitExceeded, _super);
41
- function AttachmentSetSizeLimitExceeded(opts) {
42
- var _this = _super.call(this, __assign({ name: "AttachmentSetSizeLimitExceeded", $fault: "client" }, opts)) || this;
43
- _this.name = "AttachmentSetSizeLimitExceeded";
44
- _this.$fault = "client";
45
- Object.setPrototypeOf(_this, AttachmentSetSizeLimitExceeded.prototype);
46
- return _this;
37
+ }
38
+ export class AttachmentSetSizeLimitExceeded extends __BaseException {
39
+ constructor(opts) {
40
+ super({
41
+ name: "AttachmentSetSizeLimitExceeded",
42
+ $fault: "client",
43
+ ...opts,
44
+ });
45
+ this.name = "AttachmentSetSizeLimitExceeded";
46
+ this.$fault = "client";
47
+ Object.setPrototypeOf(this, AttachmentSetSizeLimitExceeded.prototype);
47
48
  }
48
- return AttachmentSetSizeLimitExceeded;
49
- }(__BaseException));
50
- export { AttachmentSetSizeLimitExceeded };
51
- var InternalServerError = (function (_super) {
52
- __extends(InternalServerError, _super);
53
- function InternalServerError(opts) {
54
- var _this = _super.call(this, __assign({ name: "InternalServerError", $fault: "server" }, opts)) || this;
55
- _this.name = "InternalServerError";
56
- _this.$fault = "server";
57
- Object.setPrototypeOf(_this, InternalServerError.prototype);
58
- return _this;
49
+ }
50
+ export class InternalServerError extends __BaseException {
51
+ constructor(opts) {
52
+ super({
53
+ name: "InternalServerError",
54
+ $fault: "server",
55
+ ...opts,
56
+ });
57
+ this.name = "InternalServerError";
58
+ this.$fault = "server";
59
+ Object.setPrototypeOf(this, InternalServerError.prototype);
59
60
  }
60
- return InternalServerError;
61
- }(__BaseException));
62
- export { InternalServerError };
63
- var CaseIdNotFound = (function (_super) {
64
- __extends(CaseIdNotFound, _super);
65
- function CaseIdNotFound(opts) {
66
- var _this = _super.call(this, __assign({ name: "CaseIdNotFound", $fault: "client" }, opts)) || this;
67
- _this.name = "CaseIdNotFound";
68
- _this.$fault = "client";
69
- Object.setPrototypeOf(_this, CaseIdNotFound.prototype);
70
- return _this;
61
+ }
62
+ export class CaseIdNotFound extends __BaseException {
63
+ constructor(opts) {
64
+ super({
65
+ name: "CaseIdNotFound",
66
+ $fault: "client",
67
+ ...opts,
68
+ });
69
+ this.name = "CaseIdNotFound";
70
+ this.$fault = "client";
71
+ Object.setPrototypeOf(this, CaseIdNotFound.prototype);
71
72
  }
72
- return CaseIdNotFound;
73
- }(__BaseException));
74
- export { CaseIdNotFound };
75
- var AttachmentIdNotFound = (function (_super) {
76
- __extends(AttachmentIdNotFound, _super);
77
- function AttachmentIdNotFound(opts) {
78
- var _this = _super.call(this, __assign({ name: "AttachmentIdNotFound", $fault: "client" }, opts)) || this;
79
- _this.name = "AttachmentIdNotFound";
80
- _this.$fault = "client";
81
- Object.setPrototypeOf(_this, AttachmentIdNotFound.prototype);
82
- return _this;
73
+ }
74
+ export class AttachmentIdNotFound extends __BaseException {
75
+ constructor(opts) {
76
+ super({
77
+ name: "AttachmentIdNotFound",
78
+ $fault: "client",
79
+ ...opts,
80
+ });
81
+ this.name = "AttachmentIdNotFound";
82
+ this.$fault = "client";
83
+ Object.setPrototypeOf(this, AttachmentIdNotFound.prototype);
83
84
  }
84
- return AttachmentIdNotFound;
85
- }(__BaseException));
86
- export { AttachmentIdNotFound };
87
- var CaseCreationLimitExceeded = (function (_super) {
88
- __extends(CaseCreationLimitExceeded, _super);
89
- function CaseCreationLimitExceeded(opts) {
90
- var _this = _super.call(this, __assign({ name: "CaseCreationLimitExceeded", $fault: "client" }, opts)) || this;
91
- _this.name = "CaseCreationLimitExceeded";
92
- _this.$fault = "client";
93
- Object.setPrototypeOf(_this, CaseCreationLimitExceeded.prototype);
94
- return _this;
85
+ }
86
+ export class CaseCreationLimitExceeded extends __BaseException {
87
+ constructor(opts) {
88
+ super({
89
+ name: "CaseCreationLimitExceeded",
90
+ $fault: "client",
91
+ ...opts,
92
+ });
93
+ this.name = "CaseCreationLimitExceeded";
94
+ this.$fault = "client";
95
+ Object.setPrototypeOf(this, CaseCreationLimitExceeded.prototype);
95
96
  }
96
- return CaseCreationLimitExceeded;
97
- }(__BaseException));
98
- export { CaseCreationLimitExceeded };
99
- var DescribeAttachmentLimitExceeded = (function (_super) {
100
- __extends(DescribeAttachmentLimitExceeded, _super);
101
- function DescribeAttachmentLimitExceeded(opts) {
102
- var _this = _super.call(this, __assign({ name: "DescribeAttachmentLimitExceeded", $fault: "client" }, opts)) || this;
103
- _this.name = "DescribeAttachmentLimitExceeded";
104
- _this.$fault = "client";
105
- Object.setPrototypeOf(_this, DescribeAttachmentLimitExceeded.prototype);
106
- return _this;
97
+ }
98
+ export class DescribeAttachmentLimitExceeded extends __BaseException {
99
+ constructor(opts) {
100
+ super({
101
+ name: "DescribeAttachmentLimitExceeded",
102
+ $fault: "client",
103
+ ...opts,
104
+ });
105
+ this.name = "DescribeAttachmentLimitExceeded";
106
+ this.$fault = "client";
107
+ Object.setPrototypeOf(this, DescribeAttachmentLimitExceeded.prototype);
107
108
  }
108
- return DescribeAttachmentLimitExceeded;
109
- }(__BaseException));
110
- export { DescribeAttachmentLimitExceeded };
111
- export var AttachmentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
112
- export var AddAttachmentsToSetRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
113
- export var AddAttachmentsToSetResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
114
- export var AddCommunicationToCaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
115
- export var AddCommunicationToCaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
116
- export var AttachmentDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
117
- export var CreateCaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
118
- export var CreateCaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
119
- export var DescribeAttachmentRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
120
- export var DescribeAttachmentResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
121
- export var DescribeCasesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
- export var CommunicationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
123
- export var RecentCaseCommunicationsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
124
- export var CaseDetailsFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
- export var DescribeCasesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
- export var DescribeCommunicationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
127
- export var DescribeCommunicationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
- export var DescribeServicesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
- export var CategoryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
130
- export var ServiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
131
- export var DescribeServicesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
132
- export var DescribeSeverityLevelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
133
- export var SeverityLevelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
- export var DescribeSeverityLevelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
- export var DescribeTrustedAdvisorCheckRefreshStatusesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
- export var TrustedAdvisorCheckRefreshStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
137
- export var DescribeTrustedAdvisorCheckRefreshStatusesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
- export var DescribeTrustedAdvisorCheckResultRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
139
- export var TrustedAdvisorCostOptimizingSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
140
- export var TrustedAdvisorCategorySpecificSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
141
- export var TrustedAdvisorResourceDetailFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
- export var TrustedAdvisorResourcesSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
143
- export var TrustedAdvisorCheckResultFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
144
- export var DescribeTrustedAdvisorCheckResultResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
145
- export var DescribeTrustedAdvisorChecksRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
- export var TrustedAdvisorCheckDescriptionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
- export var DescribeTrustedAdvisorChecksResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
- export var DescribeTrustedAdvisorCheckSummariesRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
- export var TrustedAdvisorCheckSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
- export var DescribeTrustedAdvisorCheckSummariesResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
- export var RefreshTrustedAdvisorCheckRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
152
- export var RefreshTrustedAdvisorCheckResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
- export var ResolveCaseRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
- export var ResolveCaseResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
109
+ }
110
+ export const AttachmentFilterSensitiveLog = (obj) => ({
111
+ ...obj,
112
+ });
113
+ export const AddAttachmentsToSetRequestFilterSensitiveLog = (obj) => ({
114
+ ...obj,
115
+ });
116
+ export const AddAttachmentsToSetResponseFilterSensitiveLog = (obj) => ({
117
+ ...obj,
118
+ });
119
+ export const AddCommunicationToCaseRequestFilterSensitiveLog = (obj) => ({
120
+ ...obj,
121
+ });
122
+ export const AddCommunicationToCaseResponseFilterSensitiveLog = (obj) => ({
123
+ ...obj,
124
+ });
125
+ export const AttachmentDetailsFilterSensitiveLog = (obj) => ({
126
+ ...obj,
127
+ });
128
+ export const CreateCaseRequestFilterSensitiveLog = (obj) => ({
129
+ ...obj,
130
+ });
131
+ export const CreateCaseResponseFilterSensitiveLog = (obj) => ({
132
+ ...obj,
133
+ });
134
+ export const DescribeAttachmentRequestFilterSensitiveLog = (obj) => ({
135
+ ...obj,
136
+ });
137
+ export const DescribeAttachmentResponseFilterSensitiveLog = (obj) => ({
138
+ ...obj,
139
+ });
140
+ export const DescribeCasesRequestFilterSensitiveLog = (obj) => ({
141
+ ...obj,
142
+ });
143
+ export const CommunicationFilterSensitiveLog = (obj) => ({
144
+ ...obj,
145
+ });
146
+ export const RecentCaseCommunicationsFilterSensitiveLog = (obj) => ({
147
+ ...obj,
148
+ });
149
+ export const CaseDetailsFilterSensitiveLog = (obj) => ({
150
+ ...obj,
151
+ });
152
+ export const DescribeCasesResponseFilterSensitiveLog = (obj) => ({
153
+ ...obj,
154
+ });
155
+ export const DescribeCommunicationsRequestFilterSensitiveLog = (obj) => ({
156
+ ...obj,
157
+ });
158
+ export const DescribeCommunicationsResponseFilterSensitiveLog = (obj) => ({
159
+ ...obj,
160
+ });
161
+ export const DescribeServicesRequestFilterSensitiveLog = (obj) => ({
162
+ ...obj,
163
+ });
164
+ export const CategoryFilterSensitiveLog = (obj) => ({
165
+ ...obj,
166
+ });
167
+ export const ServiceFilterSensitiveLog = (obj) => ({
168
+ ...obj,
169
+ });
170
+ export const DescribeServicesResponseFilterSensitiveLog = (obj) => ({
171
+ ...obj,
172
+ });
173
+ export const DescribeSeverityLevelsRequestFilterSensitiveLog = (obj) => ({
174
+ ...obj,
175
+ });
176
+ export const SeverityLevelFilterSensitiveLog = (obj) => ({
177
+ ...obj,
178
+ });
179
+ export const DescribeSeverityLevelsResponseFilterSensitiveLog = (obj) => ({
180
+ ...obj,
181
+ });
182
+ export const DescribeTrustedAdvisorCheckRefreshStatusesRequestFilterSensitiveLog = (obj) => ({
183
+ ...obj,
184
+ });
185
+ export const TrustedAdvisorCheckRefreshStatusFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ });
188
+ export const DescribeTrustedAdvisorCheckRefreshStatusesResponseFilterSensitiveLog = (obj) => ({
189
+ ...obj,
190
+ });
191
+ export const DescribeTrustedAdvisorCheckResultRequestFilterSensitiveLog = (obj) => ({
192
+ ...obj,
193
+ });
194
+ export const TrustedAdvisorCostOptimizingSummaryFilterSensitiveLog = (obj) => ({
195
+ ...obj,
196
+ });
197
+ export const TrustedAdvisorCategorySpecificSummaryFilterSensitiveLog = (obj) => ({
198
+ ...obj,
199
+ });
200
+ export const TrustedAdvisorResourceDetailFilterSensitiveLog = (obj) => ({
201
+ ...obj,
202
+ });
203
+ export const TrustedAdvisorResourcesSummaryFilterSensitiveLog = (obj) => ({
204
+ ...obj,
205
+ });
206
+ export const TrustedAdvisorCheckResultFilterSensitiveLog = (obj) => ({
207
+ ...obj,
208
+ });
209
+ export const DescribeTrustedAdvisorCheckResultResponseFilterSensitiveLog = (obj) => ({
210
+ ...obj,
211
+ });
212
+ export const DescribeTrustedAdvisorChecksRequestFilterSensitiveLog = (obj) => ({
213
+ ...obj,
214
+ });
215
+ export const TrustedAdvisorCheckDescriptionFilterSensitiveLog = (obj) => ({
216
+ ...obj,
217
+ });
218
+ export const DescribeTrustedAdvisorChecksResponseFilterSensitiveLog = (obj) => ({
219
+ ...obj,
220
+ });
221
+ export const DescribeTrustedAdvisorCheckSummariesRequestFilterSensitiveLog = (obj) => ({
222
+ ...obj,
223
+ });
224
+ export const TrustedAdvisorCheckSummaryFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const DescribeTrustedAdvisorCheckSummariesResponseFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ });
230
+ export const RefreshTrustedAdvisorCheckRequestFilterSensitiveLog = (obj) => ({
231
+ ...obj,
232
+ });
233
+ export const RefreshTrustedAdvisorCheckResponseFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ });
236
+ export const ResolveCaseRequestFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ });
239
+ export const ResolveCaseResponseFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ });