@aws-sdk/client-resource-groups 3.183.0 → 3.185.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/protocols/Aws_restJson1.js +2 -2
- package/dist-es/ResourceGroups.js +73 -66
- package/dist-es/ResourceGroupsClient.js +28 -22
- package/dist-es/commands/CreateGroupCommand.js +28 -21
- package/dist-es/commands/DeleteGroupCommand.js +28 -21
- package/dist-es/commands/GetGroupCommand.js +28 -21
- package/dist-es/commands/GetGroupConfigurationCommand.js +28 -21
- package/dist-es/commands/GetGroupQueryCommand.js +28 -21
- package/dist-es/commands/GetTagsCommand.js +28 -21
- package/dist-es/commands/GroupResourcesCommand.js +28 -21
- package/dist-es/commands/ListGroupResourcesCommand.js +28 -21
- package/dist-es/commands/ListGroupsCommand.js +28 -21
- package/dist-es/commands/PutGroupConfigurationCommand.js +28 -21
- package/dist-es/commands/SearchResourcesCommand.js +28 -21
- package/dist-es/commands/TagCommand.js +28 -21
- package/dist-es/commands/UngroupResourcesCommand.js +28 -21
- package/dist-es/commands/UntagCommand.js +28 -21
- package/dist-es/commands/UpdateGroupCommand.js +28 -21
- package/dist-es/commands/UpdateGroupQueryCommand.js +28 -21
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ResourceGroupsServiceException.js +10 -5
- package/dist-es/models/models_0.js +132 -225
- package/dist-es/pagination/ListGroupResourcesPaginator.js +68 -25
- package/dist-es/pagination/ListGroupsPaginator.js +68 -25
- package/dist-es/pagination/SearchResourcesPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +1866 -1373
- 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 +5 -5
|
@@ -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 { UpdateGroupInputFilterSensitiveLog, UpdateGroupOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateGroupCommand, serializeAws_restJson1UpdateGroupCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateGroupCommand.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 = "ResourceGroupsClient";
|
|
18
|
+
var commandName = "UpdateGroupCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateGroupInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UpdateGroupOutputFilterSensitiveLog,
|
|
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
|
+
UpdateGroupCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateGroupCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateGroupCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateGroupCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateGroupCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateGroupCommand };
|
|
@@ -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 { UpdateGroupQueryInputFilterSensitiveLog, UpdateGroupQueryOutputFilterSensitiveLog, } from "../models/models_0";
|
|
4
5
|
import { deserializeAws_restJson1UpdateGroupQueryCommand, serializeAws_restJson1UpdateGroupQueryCommand, } from "../protocols/Aws_restJson1";
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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;
|
|
9
12
|
}
|
|
10
|
-
resolveMiddleware(clientStack, configuration, options) {
|
|
13
|
+
UpdateGroupQueryCommand.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 = "ResourceGroupsClient";
|
|
18
|
+
var commandName = "UpdateGroupQueryCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
20
23
|
inputFilterSensitiveLog: UpdateGroupQueryInputFilterSensitiveLog,
|
|
21
24
|
outputFilterSensitiveLog: UpdateGroupQueryOutputFilterSensitiveLog,
|
|
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
|
+
UpdateGroupQueryCommand.prototype.serialize = function (input, context) {
|
|
27
32
|
return serializeAws_restJson1UpdateGroupQueryCommand(input, context);
|
|
28
|
-
}
|
|
29
|
-
deserialize(output, context) {
|
|
33
|
+
};
|
|
34
|
+
UpdateGroupQueryCommand.prototype.deserialize = function (output, context) {
|
|
30
35
|
return deserializeAws_restJson1UpdateGroupQueryCommand(output, context);
|
|
31
|
-
}
|
|
32
|
-
|
|
36
|
+
};
|
|
37
|
+
return UpdateGroupQueryCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UpdateGroupQueryCommand };
|
package/dist-es/endpoints.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
import { __assign, __awaiter, __generator } from "tslib";
|
|
1
2
|
import { getRegionInfo } from "@aws-sdk/config-resolver";
|
|
2
|
-
|
|
3
|
+
var regionHash = {
|
|
3
4
|
"us-east-1": {
|
|
4
5
|
variants: [
|
|
5
6
|
{
|
|
@@ -49,7 +50,7 @@ const regionHash = {
|
|
|
49
50
|
],
|
|
50
51
|
},
|
|
51
52
|
};
|
|
52
|
-
|
|
53
|
+
var partitionHash = {
|
|
53
54
|
aws: {
|
|
54
55
|
regions: [
|
|
55
56
|
"af-south-1",
|
|
@@ -173,9 +174,8 @@ const partitionHash = {
|
|
|
173
174
|
],
|
|
174
175
|
},
|
|
175
176
|
};
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
});
|
|
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
|
+
}); };
|
|
@@ -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 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;
|
|
6
9
|
}
|
|
7
|
-
|
|
10
|
+
return ResourceGroupsServiceException;
|
|
11
|
+
}(__ServiceException));
|
|
12
|
+
export { ResourceGroupsServiceException };
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { ResourceGroupsServiceException as __BaseException } from "./ResourceGroupsServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
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;
|
|
13
12
|
}
|
|
14
|
-
|
|
13
|
+
return BadRequestException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { BadRequestException };
|
|
15
16
|
export var QueryType;
|
|
16
17
|
(function (QueryType) {
|
|
17
18
|
QueryType["CLOUDFORMATION_STACK_1_0"] = "CLOUDFORMATION_STACK_1_0";
|
|
@@ -23,71 +24,71 @@ export var GroupConfigurationStatus;
|
|
|
23
24
|
GroupConfigurationStatus["UPDATE_FAILED"] = "UPDATE_FAILED";
|
|
24
25
|
GroupConfigurationStatus["UPDATING"] = "UPDATING";
|
|
25
26
|
})(GroupConfigurationStatus || (GroupConfigurationStatus = {}));
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
36
|
-
this.Message = opts.Message;
|
|
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;
|
|
37
36
|
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
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;
|
|
50
49
|
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
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;
|
|
63
62
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
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;
|
|
76
75
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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;
|
|
89
88
|
}
|
|
90
|
-
|
|
89
|
+
return NotFoundException;
|
|
90
|
+
}(__BaseException));
|
|
91
|
+
export { NotFoundException };
|
|
91
92
|
export var ResourceFilterName;
|
|
92
93
|
(function (ResourceFilterName) {
|
|
93
94
|
ResourceFilterName["ResourceType"] = "resource-type";
|
|
@@ -101,162 +102,68 @@ export var ResourceStatusValue;
|
|
|
101
102
|
(function (ResourceStatusValue) {
|
|
102
103
|
ResourceStatusValue["Pending"] = "PENDING";
|
|
103
104
|
})(ResourceStatusValue || (ResourceStatusValue = {}));
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
Object.setPrototypeOf(this, UnauthorizedException.prototype);
|
|
114
|
-
this.Message = opts.Message;
|
|
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;
|
|
115
114
|
}
|
|
116
|
-
|
|
115
|
+
return UnauthorizedException;
|
|
116
|
+
}(__BaseException));
|
|
117
|
+
export { UnauthorizedException };
|
|
117
118
|
export var GroupFilterName;
|
|
118
119
|
(function (GroupFilterName) {
|
|
119
120
|
GroupFilterName["ConfigurationType"] = "configuration-type";
|
|
120
121
|
GroupFilterName["ResourceType"] = "resource-type";
|
|
121
122
|
})(GroupFilterName || (GroupFilterName = {}));
|
|
122
|
-
export
|
|
123
|
-
|
|
124
|
-
});
|
|
125
|
-
export
|
|
126
|
-
|
|
127
|
-
});
|
|
128
|
-
export
|
|
129
|
-
|
|
130
|
-
});
|
|
131
|
-
export
|
|
132
|
-
|
|
133
|
-
});
|
|
134
|
-
export
|
|
135
|
-
|
|
136
|
-
});
|
|
137
|
-
export
|
|
138
|
-
|
|
139
|
-
});
|
|
140
|
-
export
|
|
141
|
-
|
|
142
|
-
});
|
|
143
|
-
export
|
|
144
|
-
|
|
145
|
-
});
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
});
|
|
149
|
-
export
|
|
150
|
-
|
|
151
|
-
});
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
});
|
|
155
|
-
export
|
|
156
|
-
|
|
157
|
-
});
|
|
158
|
-
export
|
|
159
|
-
|
|
160
|
-
});
|
|
161
|
-
export
|
|
162
|
-
|
|
163
|
-
});
|
|
164
|
-
export
|
|
165
|
-
|
|
166
|
-
});
|
|
167
|
-
export
|
|
168
|
-
|
|
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
|
-
});
|
|
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)); };
|