@aws-sdk/client-cloudcontrol 3.186.0 → 3.188.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 +8 -0
- package/dist-es/CloudControl.js +34 -41
- package/dist-es/CloudControlClient.js +22 -28
- package/dist-es/commands/CancelResourceRequestCommand.js +21 -28
- package/dist-es/commands/CreateResourceCommand.js +21 -28
- package/dist-es/commands/DeleteResourceCommand.js +21 -28
- package/dist-es/commands/GetResourceCommand.js +21 -28
- package/dist-es/commands/GetResourceRequestStatusCommand.js +21 -28
- package/dist-es/commands/ListResourceRequestsCommand.js +21 -28
- package/dist-es/commands/ListResourcesCommand.js +21 -28
- package/dist-es/commands/UpdateResourceCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/CloudControlServiceException.js +5 -10
- package/dist-es/models/models_0.js +327 -279
- package/dist-es/pagination/ListResourceRequestsPaginator.js +25 -68
- package/dist-es/pagination/ListResourcesPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_0.js +908 -1136
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForResourceRequestSuccess.js +45 -65
- package/package.json +34 -34
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { CloudControlServiceException as __BaseException } from "./CloudControlServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
export class AlreadyExistsException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AlreadyExistsException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AlreadyExistsException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
13
|
+
this.Message = opts.Message;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
}(__BaseException));
|
|
16
|
-
export { AlreadyExistsException };
|
|
15
|
+
}
|
|
17
16
|
export var HandlerErrorCode;
|
|
18
17
|
(function (HandlerErrorCode) {
|
|
19
18
|
HandlerErrorCode["ACCESS_DENIED"] = "AccessDenied";
|
|
@@ -47,290 +46,339 @@ export var OperationStatus;
|
|
|
47
46
|
OperationStatus["PENDING"] = "PENDING";
|
|
48
47
|
OperationStatus["SUCCESS"] = "SUCCESS";
|
|
49
48
|
})(OperationStatus || (OperationStatus = {}));
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
49
|
+
export class ConcurrentModificationException extends __BaseException {
|
|
50
|
+
constructor(opts) {
|
|
51
|
+
super({
|
|
52
|
+
name: "ConcurrentModificationException",
|
|
53
|
+
$fault: "server",
|
|
54
|
+
...opts,
|
|
55
|
+
});
|
|
56
|
+
this.name = "ConcurrentModificationException";
|
|
57
|
+
this.$fault = "server";
|
|
58
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
59
|
+
this.Message = opts.Message;
|
|
59
60
|
}
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
61
|
+
}
|
|
62
|
+
export class RequestTokenNotFoundException extends __BaseException {
|
|
63
|
+
constructor(opts) {
|
|
64
|
+
super({
|
|
65
|
+
name: "RequestTokenNotFoundException",
|
|
66
|
+
$fault: "client",
|
|
67
|
+
...opts,
|
|
68
|
+
});
|
|
69
|
+
this.name = "RequestTokenNotFoundException";
|
|
70
|
+
this.$fault = "client";
|
|
71
|
+
Object.setPrototypeOf(this, RequestTokenNotFoundException.prototype);
|
|
72
|
+
this.Message = opts.Message;
|
|
72
73
|
}
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
74
|
+
}
|
|
75
|
+
export class ClientTokenConflictException extends __BaseException {
|
|
76
|
+
constructor(opts) {
|
|
77
|
+
super({
|
|
78
|
+
name: "ClientTokenConflictException",
|
|
79
|
+
$fault: "client",
|
|
80
|
+
...opts,
|
|
81
|
+
});
|
|
82
|
+
this.name = "ClientTokenConflictException";
|
|
83
|
+
this.$fault = "client";
|
|
84
|
+
Object.setPrototypeOf(this, ClientTokenConflictException.prototype);
|
|
85
|
+
this.Message = opts.Message;
|
|
85
86
|
}
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
87
|
+
}
|
|
88
|
+
export class ConcurrentOperationException extends __BaseException {
|
|
89
|
+
constructor(opts) {
|
|
90
|
+
super({
|
|
91
|
+
name: "ConcurrentOperationException",
|
|
92
|
+
$fault: "client",
|
|
93
|
+
...opts,
|
|
94
|
+
});
|
|
95
|
+
this.name = "ConcurrentOperationException";
|
|
96
|
+
this.$fault = "client";
|
|
97
|
+
Object.setPrototypeOf(this, ConcurrentOperationException.prototype);
|
|
98
|
+
this.Message = opts.Message;
|
|
98
99
|
}
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
100
|
+
}
|
|
101
|
+
export class GeneralServiceException extends __BaseException {
|
|
102
|
+
constructor(opts) {
|
|
103
|
+
super({
|
|
104
|
+
name: "GeneralServiceException",
|
|
105
|
+
$fault: "client",
|
|
106
|
+
...opts,
|
|
107
|
+
});
|
|
108
|
+
this.name = "GeneralServiceException";
|
|
109
|
+
this.$fault = "client";
|
|
110
|
+
Object.setPrototypeOf(this, GeneralServiceException.prototype);
|
|
111
|
+
this.Message = opts.Message;
|
|
111
112
|
}
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
113
|
+
}
|
|
114
|
+
export class HandlerFailureException extends __BaseException {
|
|
115
|
+
constructor(opts) {
|
|
116
|
+
super({
|
|
117
|
+
name: "HandlerFailureException",
|
|
118
|
+
$fault: "server",
|
|
119
|
+
...opts,
|
|
120
|
+
});
|
|
121
|
+
this.name = "HandlerFailureException";
|
|
122
|
+
this.$fault = "server";
|
|
123
|
+
Object.setPrototypeOf(this, HandlerFailureException.prototype);
|
|
124
|
+
this.Message = opts.Message;
|
|
124
125
|
}
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
126
|
+
}
|
|
127
|
+
export class HandlerInternalFailureException extends __BaseException {
|
|
128
|
+
constructor(opts) {
|
|
129
|
+
super({
|
|
130
|
+
name: "HandlerInternalFailureException",
|
|
131
|
+
$fault: "server",
|
|
132
|
+
...opts,
|
|
133
|
+
});
|
|
134
|
+
this.name = "HandlerInternalFailureException";
|
|
135
|
+
this.$fault = "server";
|
|
136
|
+
Object.setPrototypeOf(this, HandlerInternalFailureException.prototype);
|
|
137
|
+
this.Message = opts.Message;
|
|
137
138
|
}
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
139
|
+
}
|
|
140
|
+
export class InvalidCredentialsException extends __BaseException {
|
|
141
|
+
constructor(opts) {
|
|
142
|
+
super({
|
|
143
|
+
name: "InvalidCredentialsException",
|
|
144
|
+
$fault: "client",
|
|
145
|
+
...opts,
|
|
146
|
+
});
|
|
147
|
+
this.name = "InvalidCredentialsException";
|
|
148
|
+
this.$fault = "client";
|
|
149
|
+
Object.setPrototypeOf(this, InvalidCredentialsException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
150
151
|
}
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
152
|
+
}
|
|
153
|
+
export class InvalidRequestException extends __BaseException {
|
|
154
|
+
constructor(opts) {
|
|
155
|
+
super({
|
|
156
|
+
name: "InvalidRequestException",
|
|
157
|
+
$fault: "client",
|
|
158
|
+
...opts,
|
|
159
|
+
});
|
|
160
|
+
this.name = "InvalidRequestException";
|
|
161
|
+
this.$fault = "client";
|
|
162
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
163
|
+
this.Message = opts.Message;
|
|
163
164
|
}
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
165
|
+
}
|
|
166
|
+
export class NetworkFailureException extends __BaseException {
|
|
167
|
+
constructor(opts) {
|
|
168
|
+
super({
|
|
169
|
+
name: "NetworkFailureException",
|
|
170
|
+
$fault: "server",
|
|
171
|
+
...opts,
|
|
172
|
+
});
|
|
173
|
+
this.name = "NetworkFailureException";
|
|
174
|
+
this.$fault = "server";
|
|
175
|
+
Object.setPrototypeOf(this, NetworkFailureException.prototype);
|
|
176
|
+
this.Message = opts.Message;
|
|
176
177
|
}
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
178
|
+
}
|
|
179
|
+
export class NotStabilizedException extends __BaseException {
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "NotStabilizedException",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
this.name = "NotStabilizedException";
|
|
187
|
+
this.$fault = "client";
|
|
188
|
+
Object.setPrototypeOf(this, NotStabilizedException.prototype);
|
|
189
|
+
this.Message = opts.Message;
|
|
189
190
|
}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
191
|
+
}
|
|
192
|
+
export class NotUpdatableException extends __BaseException {
|
|
193
|
+
constructor(opts) {
|
|
194
|
+
super({
|
|
195
|
+
name: "NotUpdatableException",
|
|
196
|
+
$fault: "client",
|
|
197
|
+
...opts,
|
|
198
|
+
});
|
|
199
|
+
this.name = "NotUpdatableException";
|
|
200
|
+
this.$fault = "client";
|
|
201
|
+
Object.setPrototypeOf(this, NotUpdatableException.prototype);
|
|
202
|
+
this.Message = opts.Message;
|
|
202
203
|
}
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
204
|
+
}
|
|
205
|
+
export class PrivateTypeException extends __BaseException {
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "PrivateTypeException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
this.name = "PrivateTypeException";
|
|
213
|
+
this.$fault = "client";
|
|
214
|
+
Object.setPrototypeOf(this, PrivateTypeException.prototype);
|
|
215
|
+
this.Message = opts.Message;
|
|
215
216
|
}
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
217
|
+
}
|
|
218
|
+
export class ResourceConflictException extends __BaseException {
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "ResourceConflictException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
this.name = "ResourceConflictException";
|
|
226
|
+
this.$fault = "client";
|
|
227
|
+
Object.setPrototypeOf(this, ResourceConflictException.prototype);
|
|
228
|
+
this.Message = opts.Message;
|
|
228
229
|
}
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
230
|
+
}
|
|
231
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
232
|
+
constructor(opts) {
|
|
233
|
+
super({
|
|
234
|
+
name: "ResourceNotFoundException",
|
|
235
|
+
$fault: "client",
|
|
236
|
+
...opts,
|
|
237
|
+
});
|
|
238
|
+
this.name = "ResourceNotFoundException";
|
|
239
|
+
this.$fault = "client";
|
|
240
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
241
|
+
this.Message = opts.Message;
|
|
241
242
|
}
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
243
|
+
}
|
|
244
|
+
export class ServiceInternalErrorException extends __BaseException {
|
|
245
|
+
constructor(opts) {
|
|
246
|
+
super({
|
|
247
|
+
name: "ServiceInternalErrorException",
|
|
248
|
+
$fault: "server",
|
|
249
|
+
...opts,
|
|
250
|
+
});
|
|
251
|
+
this.name = "ServiceInternalErrorException";
|
|
252
|
+
this.$fault = "server";
|
|
253
|
+
Object.setPrototypeOf(this, ServiceInternalErrorException.prototype);
|
|
254
|
+
this.Message = opts.Message;
|
|
254
255
|
}
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
256
|
+
}
|
|
257
|
+
export class ServiceLimitExceededException extends __BaseException {
|
|
258
|
+
constructor(opts) {
|
|
259
|
+
super({
|
|
260
|
+
name: "ServiceLimitExceededException",
|
|
261
|
+
$fault: "client",
|
|
262
|
+
...opts,
|
|
263
|
+
});
|
|
264
|
+
this.name = "ServiceLimitExceededException";
|
|
265
|
+
this.$fault = "client";
|
|
266
|
+
Object.setPrototypeOf(this, ServiceLimitExceededException.prototype);
|
|
267
|
+
this.Message = opts.Message;
|
|
267
268
|
}
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
269
|
+
}
|
|
270
|
+
export class ThrottlingException extends __BaseException {
|
|
271
|
+
constructor(opts) {
|
|
272
|
+
super({
|
|
273
|
+
name: "ThrottlingException",
|
|
274
|
+
$fault: "client",
|
|
275
|
+
...opts,
|
|
276
|
+
});
|
|
277
|
+
this.name = "ThrottlingException";
|
|
278
|
+
this.$fault = "client";
|
|
279
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
280
|
+
this.Message = opts.Message;
|
|
280
281
|
}
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
282
|
+
}
|
|
283
|
+
export class TypeNotFoundException extends __BaseException {
|
|
284
|
+
constructor(opts) {
|
|
285
|
+
super({
|
|
286
|
+
name: "TypeNotFoundException",
|
|
287
|
+
$fault: "client",
|
|
288
|
+
...opts,
|
|
289
|
+
});
|
|
290
|
+
this.name = "TypeNotFoundException";
|
|
291
|
+
this.$fault = "client";
|
|
292
|
+
Object.setPrototypeOf(this, TypeNotFoundException.prototype);
|
|
293
|
+
this.Message = opts.Message;
|
|
293
294
|
}
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
295
|
+
}
|
|
296
|
+
export class UnsupportedActionException extends __BaseException {
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "UnsupportedActionException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
this.name = "UnsupportedActionException";
|
|
304
|
+
this.$fault = "client";
|
|
305
|
+
Object.setPrototypeOf(this, UnsupportedActionException.prototype);
|
|
306
|
+
this.Message = opts.Message;
|
|
306
307
|
}
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
export
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
export
|
|
320
|
-
|
|
321
|
-
})
|
|
322
|
-
|
|
323
|
-
export
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
308
|
+
}
|
|
309
|
+
export const CancelResourceRequestInputFilterSensitiveLog = (obj) => ({
|
|
310
|
+
...obj,
|
|
311
|
+
});
|
|
312
|
+
export const ProgressEventFilterSensitiveLog = (obj) => ({
|
|
313
|
+
...obj,
|
|
314
|
+
...(obj.ResourceModel && { ResourceModel: SENSITIVE_STRING }),
|
|
315
|
+
});
|
|
316
|
+
export const CancelResourceRequestOutputFilterSensitiveLog = (obj) => ({
|
|
317
|
+
...obj,
|
|
318
|
+
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
319
|
+
});
|
|
320
|
+
export const CreateResourceInputFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
...(obj.DesiredState && { DesiredState: SENSITIVE_STRING }),
|
|
323
|
+
});
|
|
324
|
+
export const CreateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
325
|
+
...obj,
|
|
326
|
+
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
327
|
+
});
|
|
328
|
+
export const DeleteResourceInputFilterSensitiveLog = (obj) => ({
|
|
329
|
+
...obj,
|
|
330
|
+
});
|
|
331
|
+
export const DeleteResourceOutputFilterSensitiveLog = (obj) => ({
|
|
332
|
+
...obj,
|
|
333
|
+
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
334
|
+
});
|
|
335
|
+
export const GetResourceInputFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const ResourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
...(obj.Properties && { Properties: SENSITIVE_STRING }),
|
|
341
|
+
});
|
|
342
|
+
export const GetResourceOutputFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
...(obj.ResourceDescription && {
|
|
345
|
+
ResourceDescription: ResourceDescriptionFilterSensitiveLog(obj.ResourceDescription),
|
|
329
346
|
}),
|
|
330
|
-
})
|
|
331
|
-
export
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
347
|
+
});
|
|
348
|
+
export const GetResourceRequestStatusInputFilterSensitiveLog = (obj) => ({
|
|
349
|
+
...obj,
|
|
350
|
+
});
|
|
351
|
+
export const GetResourceRequestStatusOutputFilterSensitiveLog = (obj) => ({
|
|
352
|
+
...obj,
|
|
353
|
+
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
354
|
+
});
|
|
355
|
+
export const ResourceRequestStatusFilterFilterSensitiveLog = (obj) => ({
|
|
356
|
+
...obj,
|
|
357
|
+
});
|
|
358
|
+
export const ListResourceRequestsInputFilterSensitiveLog = (obj) => ({
|
|
359
|
+
...obj,
|
|
360
|
+
});
|
|
361
|
+
export const ListResourceRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
...(obj.ResourceRequestStatusSummaries && {
|
|
364
|
+
ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map((item) => ProgressEventFilterSensitiveLog(item)),
|
|
365
|
+
}),
|
|
366
|
+
});
|
|
367
|
+
export const ListResourcesInputFilterSensitiveLog = (obj) => ({
|
|
368
|
+
...obj,
|
|
369
|
+
...(obj.ResourceModel && { ResourceModel: SENSITIVE_STRING }),
|
|
370
|
+
});
|
|
371
|
+
export const ListResourcesOutputFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
...(obj.ResourceDescriptions && {
|
|
374
|
+
ResourceDescriptions: obj.ResourceDescriptions.map((item) => ResourceDescriptionFilterSensitiveLog(item)),
|
|
375
|
+
}),
|
|
376
|
+
});
|
|
377
|
+
export const UpdateResourceInputFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
...(obj.PatchDocument && { PatchDocument: SENSITIVE_STRING }),
|
|
380
|
+
});
|
|
381
|
+
export const UpdateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
382
|
+
...obj,
|
|
383
|
+
...(obj.ProgressEvent && { ProgressEvent: ProgressEventFilterSensitiveLog(obj.ProgressEvent) }),
|
|
384
|
+
});
|