@aws-sdk/client-cloudcontrol 3.128.0 → 3.137.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 +30 -0
- package/dist-cjs/commands/CancelResourceRequestCommand.js +2 -2
- package/dist-cjs/commands/CreateResourceCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourceCommand.js +2 -2
- package/dist-cjs/commands/GetResourceCommand.js +2 -2
- package/dist-cjs/commands/GetResourceRequestStatusCommand.js +2 -2
- package/dist-cjs/commands/ListResourceRequestsCommand.js +2 -2
- package/dist-cjs/commands/ListResourcesCommand.js +2 -2
- package/dist-cjs/commands/UpdateResourceCommand.js +2 -2
- package/dist-cjs/models/models_0.js +96 -134
- package/dist-cjs/protocols/Aws_json1_0.js +3 -0
- package/dist-es/commands/CancelResourceRequestCommand.js +3 -3
- package/dist-es/commands/CreateResourceCommand.js +3 -3
- package/dist-es/commands/DeleteResourceCommand.js +3 -3
- package/dist-es/commands/GetResourceCommand.js +3 -3
- package/dist-es/commands/GetResourceRequestStatusCommand.js +3 -3
- package/dist-es/commands/ListResourceRequestsCommand.js +3 -3
- package/dist-es/commands/ListResourcesCommand.js +3 -3
- package/dist-es/commands/UpdateResourceCommand.js +3 -3
- package/dist-es/models/models_0.js +27 -84
- package/dist-es/protocols/Aws_json1_0.js +3 -0
- package/dist-types/models/models_0.d.ts +76 -114
- package/dist-types/ts3.4/models/models_0.d.ts +38 -76
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,36 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.137.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.136.1...v3.137.0) (2022-07-26)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **namespaces:** remove namespaces with only a log filter ([#3823](https://github.com/aws/aws-sdk-js-v3/issues/3823)) ([33e6822](https://github.com/aws/aws-sdk-js-v3/commit/33e68228fb64c53dd8f89e6be76dd5f46edc3cfd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.131.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.130.0...v3.131.0) (2022-07-15)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.130.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.129.0...v3.130.0) (2022-07-14)
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* **codegen:** fix error code parsing when it's a number ([#3371](https://github.com/aws/aws-sdk-js-v3/issues/3371)) ([c2d8522](https://github.com/aws/aws-sdk-js-v3/commit/c2d852279a3d23958521a6ceb4f4c642b0cb1848))
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
6
36
|
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
7
37
|
|
|
8
38
|
**Note:** Version bump only for package @aws-sdk/client-cloudcontrol
|
|
@@ -20,8 +20,8 @@ class CancelResourceRequestCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CancelResourceRequestInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CancelResourceRequestOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class CreateResourceCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.CreateResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.CreateResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class DeleteResourceCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.DeleteResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.DeleteResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetResourceCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class GetResourceRequestStatusCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.GetResourceRequestStatusInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.GetResourceRequestStatusOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListResourceRequestsCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListResourceRequestsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListResourceRequestsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class ListResourcesCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.ListResourcesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.ListResourcesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -20,8 +20,8 @@ class UpdateResourceCommand extends smithy_client_1.Command {
|
|
|
20
20
|
logger,
|
|
21
21
|
clientName,
|
|
22
22
|
commandName,
|
|
23
|
-
inputFilterSensitiveLog: models_0_1.
|
|
24
|
-
outputFilterSensitiveLog: models_0_1.
|
|
23
|
+
inputFilterSensitiveLog: models_0_1.UpdateResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: models_0_1.UpdateResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
const { requestHandler } = configuration;
|
|
27
27
|
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.UpdateResourceOutputFilterSensitiveLog = exports.UpdateResourceInputFilterSensitiveLog = exports.ListResourcesOutputFilterSensitiveLog = exports.ListResourcesInputFilterSensitiveLog = exports.ListResourceRequestsOutputFilterSensitiveLog = exports.ListResourceRequestsInputFilterSensitiveLog = exports.ResourceRequestStatusFilterFilterSensitiveLog = exports.GetResourceRequestStatusOutputFilterSensitiveLog = exports.GetResourceRequestStatusInputFilterSensitiveLog = exports.GetResourceOutputFilterSensitiveLog = exports.ResourceDescriptionFilterSensitiveLog = exports.GetResourceInputFilterSensitiveLog = exports.DeleteResourceOutputFilterSensitiveLog = exports.DeleteResourceInputFilterSensitiveLog = exports.CreateResourceOutputFilterSensitiveLog = exports.CreateResourceInputFilterSensitiveLog = exports.CancelResourceRequestOutputFilterSensitiveLog = exports.ProgressEventFilterSensitiveLog = exports.CancelResourceRequestInputFilterSensitiveLog = exports.UnsupportedActionException = exports.TypeNotFoundException = exports.ThrottlingException = exports.ServiceLimitExceededException = exports.ServiceInternalErrorException = exports.ResourceNotFoundException = exports.ResourceConflictException = exports.PrivateTypeException = exports.NotUpdatableException = exports.NotStabilizedException = exports.NetworkFailureException = exports.InvalidRequestException = exports.InvalidCredentialsException = exports.HandlerInternalFailureException = exports.HandlerFailureException = exports.GeneralServiceException = exports.ConcurrentOperationException = exports.ClientTokenConflictException = exports.RequestTokenNotFoundException = exports.ConcurrentModificationException = exports.OperationStatus = exports.Operation = exports.HandlerErrorCode = exports.AlreadyExistsException = void 0;
|
|
4
4
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
5
|
const CloudControlServiceException_1 = require("./CloudControlServiceException");
|
|
6
6
|
class AlreadyExistsException extends CloudControlServiceException_1.CloudControlServiceException {
|
|
@@ -17,12 +17,6 @@ class AlreadyExistsException extends CloudControlServiceException_1.CloudControl
|
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
exports.AlreadyExistsException = AlreadyExistsException;
|
|
20
|
-
var CancelResourceRequestInput;
|
|
21
|
-
(function (CancelResourceRequestInput) {
|
|
22
|
-
CancelResourceRequestInput.filterSensitiveLog = (obj) => ({
|
|
23
|
-
...obj,
|
|
24
|
-
});
|
|
25
|
-
})(CancelResourceRequestInput = exports.CancelResourceRequestInput || (exports.CancelResourceRequestInput = {}));
|
|
26
20
|
var HandlerErrorCode;
|
|
27
21
|
(function (HandlerErrorCode) {
|
|
28
22
|
HandlerErrorCode["ACCESS_DENIED"] = "AccessDenied";
|
|
@@ -56,20 +50,6 @@ var OperationStatus;
|
|
|
56
50
|
OperationStatus["PENDING"] = "PENDING";
|
|
57
51
|
OperationStatus["SUCCESS"] = "SUCCESS";
|
|
58
52
|
})(OperationStatus = exports.OperationStatus || (exports.OperationStatus = {}));
|
|
59
|
-
var ProgressEvent;
|
|
60
|
-
(function (ProgressEvent) {
|
|
61
|
-
ProgressEvent.filterSensitiveLog = (obj) => ({
|
|
62
|
-
...obj,
|
|
63
|
-
...(obj.ResourceModel && { ResourceModel: smithy_client_1.SENSITIVE_STRING }),
|
|
64
|
-
});
|
|
65
|
-
})(ProgressEvent = exports.ProgressEvent || (exports.ProgressEvent = {}));
|
|
66
|
-
var CancelResourceRequestOutput;
|
|
67
|
-
(function (CancelResourceRequestOutput) {
|
|
68
|
-
CancelResourceRequestOutput.filterSensitiveLog = (obj) => ({
|
|
69
|
-
...obj,
|
|
70
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEvent.filterSensitiveLog(obj.ProgressEvent) }),
|
|
71
|
-
});
|
|
72
|
-
})(CancelResourceRequestOutput = exports.CancelResourceRequestOutput || (exports.CancelResourceRequestOutput = {}));
|
|
73
53
|
class ConcurrentModificationException extends CloudControlServiceException_1.CloudControlServiceException {
|
|
74
54
|
constructor(opts) {
|
|
75
55
|
super({
|
|
@@ -126,20 +106,6 @@ class ConcurrentOperationException extends CloudControlServiceException_1.CloudC
|
|
|
126
106
|
}
|
|
127
107
|
}
|
|
128
108
|
exports.ConcurrentOperationException = ConcurrentOperationException;
|
|
129
|
-
var CreateResourceInput;
|
|
130
|
-
(function (CreateResourceInput) {
|
|
131
|
-
CreateResourceInput.filterSensitiveLog = (obj) => ({
|
|
132
|
-
...obj,
|
|
133
|
-
...(obj.DesiredState && { DesiredState: smithy_client_1.SENSITIVE_STRING }),
|
|
134
|
-
});
|
|
135
|
-
})(CreateResourceInput = exports.CreateResourceInput || (exports.CreateResourceInput = {}));
|
|
136
|
-
var CreateResourceOutput;
|
|
137
|
-
(function (CreateResourceOutput) {
|
|
138
|
-
CreateResourceOutput.filterSensitiveLog = (obj) => ({
|
|
139
|
-
...obj,
|
|
140
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEvent.filterSensitiveLog(obj.ProgressEvent) }),
|
|
141
|
-
});
|
|
142
|
-
})(CreateResourceOutput = exports.CreateResourceOutput || (exports.CreateResourceOutput = {}));
|
|
143
109
|
class GeneralServiceException extends CloudControlServiceException_1.CloudControlServiceException {
|
|
144
110
|
constructor(opts) {
|
|
145
111
|
super({
|
|
@@ -364,102 +330,98 @@ class UnsupportedActionException extends CloudControlServiceException_1.CloudCon
|
|
|
364
330
|
}
|
|
365
331
|
}
|
|
366
332
|
exports.UnsupportedActionException = UnsupportedActionException;
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
})
|
|
379
|
-
})
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
})
|
|
407
|
-
})
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
})
|
|
414
|
-
})
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
(
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
...obj,
|
|
463
|
-
...(obj.ProgressEvent && { ProgressEvent: ProgressEvent.filterSensitiveLog(obj.ProgressEvent) }),
|
|
464
|
-
});
|
|
465
|
-
})(UpdateResourceOutput = exports.UpdateResourceOutput || (exports.UpdateResourceOutput = {}));
|
|
333
|
+
const CancelResourceRequestInputFilterSensitiveLog = (obj) => ({
|
|
334
|
+
...obj,
|
|
335
|
+
});
|
|
336
|
+
exports.CancelResourceRequestInputFilterSensitiveLog = CancelResourceRequestInputFilterSensitiveLog;
|
|
337
|
+
const ProgressEventFilterSensitiveLog = (obj) => ({
|
|
338
|
+
...obj,
|
|
339
|
+
...(obj.ResourceModel && { ResourceModel: smithy_client_1.SENSITIVE_STRING }),
|
|
340
|
+
});
|
|
341
|
+
exports.ProgressEventFilterSensitiveLog = ProgressEventFilterSensitiveLog;
|
|
342
|
+
const CancelResourceRequestOutputFilterSensitiveLog = (obj) => ({
|
|
343
|
+
...obj,
|
|
344
|
+
...(obj.ProgressEvent && { ProgressEvent: (0, exports.ProgressEventFilterSensitiveLog)(obj.ProgressEvent) }),
|
|
345
|
+
});
|
|
346
|
+
exports.CancelResourceRequestOutputFilterSensitiveLog = CancelResourceRequestOutputFilterSensitiveLog;
|
|
347
|
+
const CreateResourceInputFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
...(obj.DesiredState && { DesiredState: smithy_client_1.SENSITIVE_STRING }),
|
|
350
|
+
});
|
|
351
|
+
exports.CreateResourceInputFilterSensitiveLog = CreateResourceInputFilterSensitiveLog;
|
|
352
|
+
const CreateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
353
|
+
...obj,
|
|
354
|
+
...(obj.ProgressEvent && { ProgressEvent: (0, exports.ProgressEventFilterSensitiveLog)(obj.ProgressEvent) }),
|
|
355
|
+
});
|
|
356
|
+
exports.CreateResourceOutputFilterSensitiveLog = CreateResourceOutputFilterSensitiveLog;
|
|
357
|
+
const DeleteResourceInputFilterSensitiveLog = (obj) => ({
|
|
358
|
+
...obj,
|
|
359
|
+
});
|
|
360
|
+
exports.DeleteResourceInputFilterSensitiveLog = DeleteResourceInputFilterSensitiveLog;
|
|
361
|
+
const DeleteResourceOutputFilterSensitiveLog = (obj) => ({
|
|
362
|
+
...obj,
|
|
363
|
+
...(obj.ProgressEvent && { ProgressEvent: (0, exports.ProgressEventFilterSensitiveLog)(obj.ProgressEvent) }),
|
|
364
|
+
});
|
|
365
|
+
exports.DeleteResourceOutputFilterSensitiveLog = DeleteResourceOutputFilterSensitiveLog;
|
|
366
|
+
const GetResourceInputFilterSensitiveLog = (obj) => ({
|
|
367
|
+
...obj,
|
|
368
|
+
});
|
|
369
|
+
exports.GetResourceInputFilterSensitiveLog = GetResourceInputFilterSensitiveLog;
|
|
370
|
+
const ResourceDescriptionFilterSensitiveLog = (obj) => ({
|
|
371
|
+
...obj,
|
|
372
|
+
...(obj.Properties && { Properties: smithy_client_1.SENSITIVE_STRING }),
|
|
373
|
+
});
|
|
374
|
+
exports.ResourceDescriptionFilterSensitiveLog = ResourceDescriptionFilterSensitiveLog;
|
|
375
|
+
const GetResourceOutputFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
...(obj.ResourceDescription && {
|
|
378
|
+
ResourceDescription: (0, exports.ResourceDescriptionFilterSensitiveLog)(obj.ResourceDescription),
|
|
379
|
+
}),
|
|
380
|
+
});
|
|
381
|
+
exports.GetResourceOutputFilterSensitiveLog = GetResourceOutputFilterSensitiveLog;
|
|
382
|
+
const GetResourceRequestStatusInputFilterSensitiveLog = (obj) => ({
|
|
383
|
+
...obj,
|
|
384
|
+
});
|
|
385
|
+
exports.GetResourceRequestStatusInputFilterSensitiveLog = GetResourceRequestStatusInputFilterSensitiveLog;
|
|
386
|
+
const GetResourceRequestStatusOutputFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
...(obj.ProgressEvent && { ProgressEvent: (0, exports.ProgressEventFilterSensitiveLog)(obj.ProgressEvent) }),
|
|
389
|
+
});
|
|
390
|
+
exports.GetResourceRequestStatusOutputFilterSensitiveLog = GetResourceRequestStatusOutputFilterSensitiveLog;
|
|
391
|
+
const ResourceRequestStatusFilterFilterSensitiveLog = (obj) => ({
|
|
392
|
+
...obj,
|
|
393
|
+
});
|
|
394
|
+
exports.ResourceRequestStatusFilterFilterSensitiveLog = ResourceRequestStatusFilterFilterSensitiveLog;
|
|
395
|
+
const ListResourceRequestsInputFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
exports.ListResourceRequestsInputFilterSensitiveLog = ListResourceRequestsInputFilterSensitiveLog;
|
|
399
|
+
const ListResourceRequestsOutputFilterSensitiveLog = (obj) => ({
|
|
400
|
+
...obj,
|
|
401
|
+
...(obj.ResourceRequestStatusSummaries && {
|
|
402
|
+
ResourceRequestStatusSummaries: obj.ResourceRequestStatusSummaries.map((item) => (0, exports.ProgressEventFilterSensitiveLog)(item)),
|
|
403
|
+
}),
|
|
404
|
+
});
|
|
405
|
+
exports.ListResourceRequestsOutputFilterSensitiveLog = ListResourceRequestsOutputFilterSensitiveLog;
|
|
406
|
+
const ListResourcesInputFilterSensitiveLog = (obj) => ({
|
|
407
|
+
...obj,
|
|
408
|
+
...(obj.ResourceModel && { ResourceModel: smithy_client_1.SENSITIVE_STRING }),
|
|
409
|
+
});
|
|
410
|
+
exports.ListResourcesInputFilterSensitiveLog = ListResourcesInputFilterSensitiveLog;
|
|
411
|
+
const ListResourcesOutputFilterSensitiveLog = (obj) => ({
|
|
412
|
+
...obj,
|
|
413
|
+
...(obj.ResourceDescriptions && {
|
|
414
|
+
ResourceDescriptions: obj.ResourceDescriptions.map((item) => (0, exports.ResourceDescriptionFilterSensitiveLog)(item)),
|
|
415
|
+
}),
|
|
416
|
+
});
|
|
417
|
+
exports.ListResourcesOutputFilterSensitiveLog = ListResourcesOutputFilterSensitiveLog;
|
|
418
|
+
const UpdateResourceInputFilterSensitiveLog = (obj) => ({
|
|
419
|
+
...obj,
|
|
420
|
+
...(obj.PatchDocument && { PatchDocument: smithy_client_1.SENSITIVE_STRING }),
|
|
421
|
+
});
|
|
422
|
+
exports.UpdateResourceInputFilterSensitiveLog = UpdateResourceInputFilterSensitiveLog;
|
|
423
|
+
const UpdateResourceOutputFilterSensitiveLog = (obj) => ({
|
|
424
|
+
...obj,
|
|
425
|
+
...(obj.ProgressEvent && { ProgressEvent: (0, exports.ProgressEventFilterSensitiveLog)(obj.ProgressEvent) }),
|
|
426
|
+
});
|
|
427
|
+
exports.UpdateResourceOutputFilterSensitiveLog = UpdateResourceOutputFilterSensitiveLog;
|
|
@@ -1166,6 +1166,9 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
1166
1166
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
1167
1167
|
const sanitizeErrorCode = (rawValue) => {
|
|
1168
1168
|
let cleanValue = rawValue;
|
|
1169
|
+
if (typeof cleanValue === "number") {
|
|
1170
|
+
cleanValue = cleanValue.toString();
|
|
1171
|
+
}
|
|
1169
1172
|
if (cleanValue.indexOf(":") >= 0) {
|
|
1170
1173
|
cleanValue = cleanValue.split(":")[0];
|
|
1171
1174
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CancelResourceRequestInputFilterSensitiveLog, CancelResourceRequestOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CancelResourceRequestCommand, serializeAws_json1_0CancelResourceRequestCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CancelResourceRequestCommand = (function (_super) {
|
|
7
7
|
__extends(CancelResourceRequestCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CancelResourceRequestCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CancelResourceRequestInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CancelResourceRequestOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { CreateResourceInputFilterSensitiveLog, CreateResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0CreateResourceCommand, serializeAws_json1_0CreateResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var CreateResourceCommand = (function (_super) {
|
|
7
7
|
__extends(CreateResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var CreateResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: CreateResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: CreateResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { DeleteResourceInputFilterSensitiveLog, DeleteResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0DeleteResourceCommand, serializeAws_json1_0DeleteResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var DeleteResourceCommand = (function (_super) {
|
|
7
7
|
__extends(DeleteResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var DeleteResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: DeleteResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DeleteResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetResourceInputFilterSensitiveLog, GetResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0GetResourceCommand, serializeAws_json1_0GetResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var GetResourceCommand = (function (_super) {
|
|
7
7
|
__extends(GetResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { GetResourceRequestStatusInputFilterSensitiveLog, GetResourceRequestStatusOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0GetResourceRequestStatusCommand, serializeAws_json1_0GetResourceRequestStatusCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var GetResourceRequestStatusCommand = (function (_super) {
|
|
7
7
|
__extends(GetResourceRequestStatusCommand, _super);
|
|
@@ -20,8 +20,8 @@ var GetResourceRequestStatusCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: GetResourceRequestStatusInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: GetResourceRequestStatusOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListResourceRequestsInputFilterSensitiveLog, ListResourceRequestsOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListResourceRequestsCommand, serializeAws_json1_0ListResourceRequestsCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListResourceRequestsCommand = (function (_super) {
|
|
7
7
|
__extends(ListResourceRequestsCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListResourceRequestsCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListResourceRequestsInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListResourceRequestsOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { ListResourcesInputFilterSensitiveLog, ListResourcesOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0ListResourcesCommand, serializeAws_json1_0ListResourcesCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var ListResourcesCommand = (function (_super) {
|
|
7
7
|
__extends(ListResourcesCommand, _super);
|
|
@@ -20,8 +20,8 @@ var ListResourcesCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: ListResourcesInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListResourcesOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { __extends } from "tslib";
|
|
2
2
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
-
import {
|
|
4
|
+
import { UpdateResourceInputFilterSensitiveLog, UpdateResourceOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
5
|
import { deserializeAws_json1_0UpdateResourceCommand, serializeAws_json1_0UpdateResourceCommand, } from "../protocols/Aws_json1_0";
|
|
6
6
|
var UpdateResourceCommand = (function (_super) {
|
|
7
7
|
__extends(UpdateResourceCommand, _super);
|
|
@@ -20,8 +20,8 @@ var UpdateResourceCommand = (function (_super) {
|
|
|
20
20
|
logger: logger,
|
|
21
21
|
clientName: clientName,
|
|
22
22
|
commandName: commandName,
|
|
23
|
-
inputFilterSensitiveLog:
|
|
24
|
-
outputFilterSensitiveLog:
|
|
23
|
+
inputFilterSensitiveLog: UpdateResourceInputFilterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UpdateResourceOutputFilterSensitiveLog,
|
|
25
25
|
};
|
|
26
26
|
var requestHandler = configuration.requestHandler;
|
|
27
27
|
return stack.resolve(function (request) {
|