@aws-sdk/client-resource-groups 3.181.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 (31) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ResourceGroups.js +66 -73
  3. package/dist-es/ResourceGroupsClient.js +22 -28
  4. package/dist-es/commands/CreateGroupCommand.js +21 -28
  5. package/dist-es/commands/DeleteGroupCommand.js +21 -28
  6. package/dist-es/commands/GetGroupCommand.js +21 -28
  7. package/dist-es/commands/GetGroupConfigurationCommand.js +21 -28
  8. package/dist-es/commands/GetGroupQueryCommand.js +21 -28
  9. package/dist-es/commands/GetTagsCommand.js +21 -28
  10. package/dist-es/commands/GroupResourcesCommand.js +21 -28
  11. package/dist-es/commands/ListGroupResourcesCommand.js +21 -28
  12. package/dist-es/commands/ListGroupsCommand.js +21 -28
  13. package/dist-es/commands/PutGroupConfigurationCommand.js +21 -28
  14. package/dist-es/commands/SearchResourcesCommand.js +21 -28
  15. package/dist-es/commands/TagCommand.js +21 -28
  16. package/dist-es/commands/UngroupResourcesCommand.js +21 -28
  17. package/dist-es/commands/UntagCommand.js +21 -28
  18. package/dist-es/commands/UpdateGroupCommand.js +21 -28
  19. package/dist-es/commands/UpdateGroupQueryCommand.js +21 -28
  20. package/dist-es/endpoints.js +8 -8
  21. package/dist-es/models/ResourceGroupsServiceException.js +5 -10
  22. package/dist-es/models/models_0.js +225 -132
  23. package/dist-es/pagination/ListGroupResourcesPaginator.js +25 -68
  24. package/dist-es/pagination/ListGroupsPaginator.js +25 -68
  25. package/dist-es/pagination/SearchResourcesPaginator.js +25 -68
  26. package/dist-es/protocols/Aws_restJson1.js +1373 -1866
  27. package/dist-es/runtimeConfig.browser.js +26 -12
  28. package/dist-es/runtimeConfig.js +30 -12
  29. package/dist-es/runtimeConfig.native.js +8 -5
  30. package/dist-es/runtimeConfig.shared.js +8 -11
  31. 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 { UpdateGroupInputFilterSensitiveLog, UpdateGroupOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UpdateGroupCommand, serializeAws_restJson1UpdateGroupCommand, } from "../protocols/Aws_restJson1";
6
- var UpdateGroupCommand = (function (_super) {
7
- __extends(UpdateGroupCommand, _super);
8
- function UpdateGroupCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class UpdateGroupCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- UpdateGroupCommand.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 = "ResourceGroupsClient";
18
- var commandName = "UpdateGroupCommand";
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 = "ResourceGroupsClient";
15
+ const commandName = "UpdateGroupCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: UpdateGroupInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: UpdateGroupOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- UpdateGroupCommand.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_restJson1UpdateGroupCommand(input, context);
33
- };
34
- UpdateGroupCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1UpdateGroupCommand(output, context);
36
- };
37
- return UpdateGroupCommand;
38
- }($Command));
39
- export { UpdateGroupCommand };
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 { UpdateGroupQueryInputFilterSensitiveLog, UpdateGroupQueryOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_restJson1UpdateGroupQueryCommand, serializeAws_restJson1UpdateGroupQueryCommand, } from "../protocols/Aws_restJson1";
6
- var UpdateGroupQueryCommand = (function (_super) {
7
- __extends(UpdateGroupQueryCommand, _super);
8
- function UpdateGroupQueryCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class UpdateGroupQueryCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- UpdateGroupQueryCommand.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 = "ResourceGroupsClient";
18
- var commandName = "UpdateGroupQueryCommand";
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 = "ResourceGroupsClient";
15
+ const commandName = "UpdateGroupQueryCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: UpdateGroupQueryInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: UpdateGroupQueryOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- UpdateGroupQueryCommand.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_restJson1UpdateGroupQueryCommand(input, context);
33
- };
34
- UpdateGroupQueryCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_restJson1UpdateGroupQueryCommand(output, context);
36
- };
37
- return UpdateGroupQueryCommand;
38
- }($Command));
39
- export { UpdateGroupQueryCommand };
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
  "us-east-1": {
5
4
  variants: [
6
5
  {
@@ -50,7 +49,7 @@ var regionHash = {
50
49
  ],
51
50
  },
52
51
  };
53
- var partitionHash = {
52
+ const partitionHash = {
54
53
  aws: {
55
54
  regions: [
56
55
  "af-south-1",
@@ -174,8 +173,9 @@ var partitionHash = {
174
173
  ],
175
174
  },
176
175
  };
177
- export var defaultRegionInfoProvider = function (region, options) { return __awaiter(void 0, void 0, void 0, function () {
178
- return __generator(this, function (_a) {
179
- return [2, getRegionInfo(region, __assign(__assign({}, options), { signingService: "resource-groups", regionHash: regionHash, partitionHash: partitionHash }))];
180
- });
181
- }); };
176
+ export const defaultRegionInfoProvider = async (region, options) => getRegionInfo(region, {
177
+ ...options,
178
+ signingService: "resource-groups",
179
+ regionHash,
180
+ partitionHash,
181
+ });
@@ -1,12 +1,7 @@
1
- import { __extends } from "tslib";
2
1
  import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
- var ResourceGroupsServiceException = (function (_super) {
4
- __extends(ResourceGroupsServiceException, _super);
5
- function ResourceGroupsServiceException(options) {
6
- var _this = _super.call(this, options) || this;
7
- Object.setPrototypeOf(_this, ResourceGroupsServiceException.prototype);
8
- return _this;
2
+ export class ResourceGroupsServiceException extends __ServiceException {
3
+ constructor(options) {
4
+ super(options);
5
+ Object.setPrototypeOf(this, ResourceGroupsServiceException.prototype);
9
6
  }
10
- return ResourceGroupsServiceException;
11
- }(__ServiceException));
12
- export { ResourceGroupsServiceException };
7
+ }
@@ -1,18 +1,17 @@
1
- import { __assign, __extends } from "tslib";
2
1
  import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
3
- var BadRequestException = (function (_super) {
4
- __extends(BadRequestException, _super);
5
- function BadRequestException(opts) {
6
- var _this = _super.call(this, __assign({ name: "BadRequestException", $fault: "client" }, opts)) || this;
7
- _this.name = "BadRequestException";
8
- _this.$fault = "client";
9
- Object.setPrototypeOf(_this, BadRequestException.prototype);
10
- _this.Message = opts.Message;
11
- return _this;
2
+ export class BadRequestException extends __BaseException {
3
+ constructor(opts) {
4
+ super({
5
+ name: "BadRequestException",
6
+ $fault: "client",
7
+ ...opts,
8
+ });
9
+ this.name = "BadRequestException";
10
+ this.$fault = "client";
11
+ Object.setPrototypeOf(this, BadRequestException.prototype);
12
+ this.Message = opts.Message;
12
13
  }
13
- return BadRequestException;
14
- }(__BaseException));
15
- export { BadRequestException };
14
+ }
16
15
  export var QueryType;
17
16
  (function (QueryType) {
18
17
  QueryType["CLOUDFORMATION_STACK_1_0"] = "CLOUDFORMATION_STACK_1_0";
@@ -24,71 +23,71 @@ export var GroupConfigurationStatus;
24
23
  GroupConfigurationStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
25
24
  GroupConfigurationStatus["UPDATING"] = "UPDATING";
26
25
  })(GroupConfigurationStatus || (GroupConfigurationStatus = {}));
27
- var ForbiddenException = (function (_super) {
28
- __extends(ForbiddenException, _super);
29
- function ForbiddenException(opts) {
30
- var _this = _super.call(this, __assign({ name: "ForbiddenException", $fault: "client" }, opts)) || this;
31
- _this.name = "ForbiddenException";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, ForbiddenException.prototype);
34
- _this.Message = opts.Message;
35
- return _this;
26
+ export class ForbiddenException extends __BaseException {
27
+ constructor(opts) {
28
+ super({
29
+ name: "ForbiddenException",
30
+ $fault: "client",
31
+ ...opts,
32
+ });
33
+ this.name = "ForbiddenException";
34
+ this.$fault = "client";
35
+ Object.setPrototypeOf(this, ForbiddenException.prototype);
36
+ this.Message = opts.Message;
36
37
  }
37
- return ForbiddenException;
38
- }(__BaseException));
39
- export { ForbiddenException };
40
- var InternalServerErrorException = (function (_super) {
41
- __extends(InternalServerErrorException, _super);
42
- function InternalServerErrorException(opts) {
43
- var _this = _super.call(this, __assign({ name: "InternalServerErrorException", $fault: "server" }, opts)) || this;
44
- _this.name = "InternalServerErrorException";
45
- _this.$fault = "server";
46
- Object.setPrototypeOf(_this, InternalServerErrorException.prototype);
47
- _this.Message = opts.Message;
48
- return _this;
38
+ }
39
+ export class InternalServerErrorException extends __BaseException {
40
+ constructor(opts) {
41
+ super({
42
+ name: "InternalServerErrorException",
43
+ $fault: "server",
44
+ ...opts,
45
+ });
46
+ this.name = "InternalServerErrorException";
47
+ this.$fault = "server";
48
+ Object.setPrototypeOf(this, InternalServerErrorException.prototype);
49
+ this.Message = opts.Message;
49
50
  }
50
- return InternalServerErrorException;
51
- }(__BaseException));
52
- export { InternalServerErrorException };
53
- var MethodNotAllowedException = (function (_super) {
54
- __extends(MethodNotAllowedException, _super);
55
- function MethodNotAllowedException(opts) {
56
- var _this = _super.call(this, __assign({ name: "MethodNotAllowedException", $fault: "client" }, opts)) || this;
57
- _this.name = "MethodNotAllowedException";
58
- _this.$fault = "client";
59
- Object.setPrototypeOf(_this, MethodNotAllowedException.prototype);
60
- _this.Message = opts.Message;
61
- return _this;
51
+ }
52
+ export class MethodNotAllowedException extends __BaseException {
53
+ constructor(opts) {
54
+ super({
55
+ name: "MethodNotAllowedException",
56
+ $fault: "client",
57
+ ...opts,
58
+ });
59
+ this.name = "MethodNotAllowedException";
60
+ this.$fault = "client";
61
+ Object.setPrototypeOf(this, MethodNotAllowedException.prototype);
62
+ this.Message = opts.Message;
62
63
  }
63
- return MethodNotAllowedException;
64
- }(__BaseException));
65
- export { MethodNotAllowedException };
66
- var TooManyRequestsException = (function (_super) {
67
- __extends(TooManyRequestsException, _super);
68
- function TooManyRequestsException(opts) {
69
- var _this = _super.call(this, __assign({ name: "TooManyRequestsException", $fault: "client" }, opts)) || this;
70
- _this.name = "TooManyRequestsException";
71
- _this.$fault = "client";
72
- Object.setPrototypeOf(_this, TooManyRequestsException.prototype);
73
- _this.Message = opts.Message;
74
- return _this;
64
+ }
65
+ export class TooManyRequestsException extends __BaseException {
66
+ constructor(opts) {
67
+ super({
68
+ name: "TooManyRequestsException",
69
+ $fault: "client",
70
+ ...opts,
71
+ });
72
+ this.name = "TooManyRequestsException";
73
+ this.$fault = "client";
74
+ Object.setPrototypeOf(this, TooManyRequestsException.prototype);
75
+ this.Message = opts.Message;
75
76
  }
76
- return TooManyRequestsException;
77
- }(__BaseException));
78
- export { TooManyRequestsException };
79
- var NotFoundException = (function (_super) {
80
- __extends(NotFoundException, _super);
81
- function NotFoundException(opts) {
82
- var _this = _super.call(this, __assign({ name: "NotFoundException", $fault: "client" }, opts)) || this;
83
- _this.name = "NotFoundException";
84
- _this.$fault = "client";
85
- Object.setPrototypeOf(_this, NotFoundException.prototype);
86
- _this.Message = opts.Message;
87
- return _this;
77
+ }
78
+ export class NotFoundException extends __BaseException {
79
+ constructor(opts) {
80
+ super({
81
+ name: "NotFoundException",
82
+ $fault: "client",
83
+ ...opts,
84
+ });
85
+ this.name = "NotFoundException";
86
+ this.$fault = "client";
87
+ Object.setPrototypeOf(this, NotFoundException.prototype);
88
+ this.Message = opts.Message;
88
89
  }
89
- return NotFoundException;
90
- }(__BaseException));
91
- export { NotFoundException };
90
+ }
92
91
  export var ResourceFilterName;
93
92
  (function (ResourceFilterName) {
94
93
  ResourceFilterName["ResourceType"] = "resource-type";
@@ -102,68 +101,162 @@ export var ResourceStatusValue;
102
101
  (function (ResourceStatusValue) {
103
102
  ResourceStatusValue["Pending"] = "PENDING";
104
103
  })(ResourceStatusValue || (ResourceStatusValue = {}));
105
- var UnauthorizedException = (function (_super) {
106
- __extends(UnauthorizedException, _super);
107
- function UnauthorizedException(opts) {
108
- var _this = _super.call(this, __assign({ name: "UnauthorizedException", $fault: "client" }, opts)) || this;
109
- _this.name = "UnauthorizedException";
110
- _this.$fault = "client";
111
- Object.setPrototypeOf(_this, UnauthorizedException.prototype);
112
- _this.Message = opts.Message;
113
- return _this;
104
+ export class UnauthorizedException extends __BaseException {
105
+ constructor(opts) {
106
+ super({
107
+ name: "UnauthorizedException",
108
+ $fault: "client",
109
+ ...opts,
110
+ });
111
+ this.name = "UnauthorizedException";
112
+ this.$fault = "client";
113
+ Object.setPrototypeOf(this, UnauthorizedException.prototype);
114
+ this.Message = opts.Message;
114
115
  }
115
- return UnauthorizedException;
116
- }(__BaseException));
117
- export { UnauthorizedException };
116
+ }
118
117
  export var GroupFilterName;
119
118
  (function (GroupFilterName) {
120
119
  GroupFilterName["ConfigurationType"] = "configuration-type";
121
120
  GroupFilterName["ResourceType"] = "resource-type";
122
121
  })(GroupFilterName || (GroupFilterName = {}));
123
- export var GroupConfigurationParameterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
124
- export var GroupConfigurationItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
125
- export var ResourceQueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
126
- export var CreateGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
127
- export var GroupFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
128
- export var GroupConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
129
- export var CreateGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
130
- export var DeleteGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
131
- export var DeleteGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
132
- export var GetGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
133
- export var GetGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
134
- export var GetGroupConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
135
- export var GetGroupConfigurationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
136
- export var GetGroupQueryInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
137
- export var GroupQueryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
138
- export var GetGroupQueryOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
139
- export var GetTagsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
140
- export var GetTagsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
141
- export var GroupResourcesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
142
- export var FailedResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
143
- export var PendingResourceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
144
- export var GroupResourcesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
145
- export var ResourceFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
146
- export var ListGroupResourcesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
147
- export var QueryErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
148
- export var ResourceIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
149
- export var ResourceStatusFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
150
- export var ListGroupResourcesItemFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
151
- export var ListGroupResourcesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
152
- export var GroupFilterFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
153
- export var ListGroupsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
154
- export var GroupIdentifierFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
155
- export var ListGroupsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
156
- export var PutGroupConfigurationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
157
- export var PutGroupConfigurationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
158
- export var SearchResourcesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
159
- export var SearchResourcesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
160
- export var TagInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
161
- export var TagOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
162
- export var UngroupResourcesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
163
- export var UngroupResourcesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
164
- export var UntagInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
165
- export var UntagOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
166
- export var UpdateGroupInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- export var UpdateGroupOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
- export var UpdateGroupQueryInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
- export var UpdateGroupQueryOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
122
+ export const GroupConfigurationParameterFilterSensitiveLog = (obj) => ({
123
+ ...obj,
124
+ });
125
+ export const GroupConfigurationItemFilterSensitiveLog = (obj) => ({
126
+ ...obj,
127
+ });
128
+ export const ResourceQueryFilterSensitiveLog = (obj) => ({
129
+ ...obj,
130
+ });
131
+ export const CreateGroupInputFilterSensitiveLog = (obj) => ({
132
+ ...obj,
133
+ });
134
+ export const GroupFilterSensitiveLog = (obj) => ({
135
+ ...obj,
136
+ });
137
+ export const GroupConfigurationFilterSensitiveLog = (obj) => ({
138
+ ...obj,
139
+ });
140
+ export const CreateGroupOutputFilterSensitiveLog = (obj) => ({
141
+ ...obj,
142
+ });
143
+ export const DeleteGroupInputFilterSensitiveLog = (obj) => ({
144
+ ...obj,
145
+ });
146
+ export const DeleteGroupOutputFilterSensitiveLog = (obj) => ({
147
+ ...obj,
148
+ });
149
+ export const GetGroupInputFilterSensitiveLog = (obj) => ({
150
+ ...obj,
151
+ });
152
+ export const GetGroupOutputFilterSensitiveLog = (obj) => ({
153
+ ...obj,
154
+ });
155
+ export const GetGroupConfigurationInputFilterSensitiveLog = (obj) => ({
156
+ ...obj,
157
+ });
158
+ export const GetGroupConfigurationOutputFilterSensitiveLog = (obj) => ({
159
+ ...obj,
160
+ });
161
+ export const GetGroupQueryInputFilterSensitiveLog = (obj) => ({
162
+ ...obj,
163
+ });
164
+ export const GroupQueryFilterSensitiveLog = (obj) => ({
165
+ ...obj,
166
+ });
167
+ export const GetGroupQueryOutputFilterSensitiveLog = (obj) => ({
168
+ ...obj,
169
+ });
170
+ export const GetTagsInputFilterSensitiveLog = (obj) => ({
171
+ ...obj,
172
+ });
173
+ export const GetTagsOutputFilterSensitiveLog = (obj) => ({
174
+ ...obj,
175
+ });
176
+ export const GroupResourcesInputFilterSensitiveLog = (obj) => ({
177
+ ...obj,
178
+ });
179
+ export const FailedResourceFilterSensitiveLog = (obj) => ({
180
+ ...obj,
181
+ });
182
+ export const PendingResourceFilterSensitiveLog = (obj) => ({
183
+ ...obj,
184
+ });
185
+ export const GroupResourcesOutputFilterSensitiveLog = (obj) => ({
186
+ ...obj,
187
+ });
188
+ export const ResourceFilterFilterSensitiveLog = (obj) => ({
189
+ ...obj,
190
+ });
191
+ export const ListGroupResourcesInputFilterSensitiveLog = (obj) => ({
192
+ ...obj,
193
+ });
194
+ export const QueryErrorFilterSensitiveLog = (obj) => ({
195
+ ...obj,
196
+ });
197
+ export const ResourceIdentifierFilterSensitiveLog = (obj) => ({
198
+ ...obj,
199
+ });
200
+ export const ResourceStatusFilterSensitiveLog = (obj) => ({
201
+ ...obj,
202
+ });
203
+ export const ListGroupResourcesItemFilterSensitiveLog = (obj) => ({
204
+ ...obj,
205
+ });
206
+ export const ListGroupResourcesOutputFilterSensitiveLog = (obj) => ({
207
+ ...obj,
208
+ });
209
+ export const GroupFilterFilterSensitiveLog = (obj) => ({
210
+ ...obj,
211
+ });
212
+ export const ListGroupsInputFilterSensitiveLog = (obj) => ({
213
+ ...obj,
214
+ });
215
+ export const GroupIdentifierFilterSensitiveLog = (obj) => ({
216
+ ...obj,
217
+ });
218
+ export const ListGroupsOutputFilterSensitiveLog = (obj) => ({
219
+ ...obj,
220
+ });
221
+ export const PutGroupConfigurationInputFilterSensitiveLog = (obj) => ({
222
+ ...obj,
223
+ });
224
+ export const PutGroupConfigurationOutputFilterSensitiveLog = (obj) => ({
225
+ ...obj,
226
+ });
227
+ export const SearchResourcesInputFilterSensitiveLog = (obj) => ({
228
+ ...obj,
229
+ });
230
+ export const SearchResourcesOutputFilterSensitiveLog = (obj) => ({
231
+ ...obj,
232
+ });
233
+ export const TagInputFilterSensitiveLog = (obj) => ({
234
+ ...obj,
235
+ });
236
+ export const TagOutputFilterSensitiveLog = (obj) => ({
237
+ ...obj,
238
+ });
239
+ export const UngroupResourcesInputFilterSensitiveLog = (obj) => ({
240
+ ...obj,
241
+ });
242
+ export const UngroupResourcesOutputFilterSensitiveLog = (obj) => ({
243
+ ...obj,
244
+ });
245
+ export const UntagInputFilterSensitiveLog = (obj) => ({
246
+ ...obj,
247
+ });
248
+ export const UntagOutputFilterSensitiveLog = (obj) => ({
249
+ ...obj,
250
+ });
251
+ export const UpdateGroupInputFilterSensitiveLog = (obj) => ({
252
+ ...obj,
253
+ });
254
+ export const UpdateGroupOutputFilterSensitiveLog = (obj) => ({
255
+ ...obj,
256
+ });
257
+ export const UpdateGroupQueryInputFilterSensitiveLog = (obj) => ({
258
+ ...obj,
259
+ });
260
+ export const UpdateGroupQueryOutputFilterSensitiveLog = (obj) => ({
261
+ ...obj,
262
+ });