@aws-sdk/client-compute-optimizer 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.
- package/CHANGELOG.md +8 -0
- package/dist-es/ComputeOptimizer.js +74 -81
- package/dist-es/ComputeOptimizerClient.js +22 -28
- package/dist-es/commands/DeleteRecommendationPreferencesCommand.js +21 -28
- package/dist-es/commands/DescribeRecommendationExportJobsCommand.js +21 -28
- package/dist-es/commands/ExportAutoScalingGroupRecommendationsCommand.js +21 -28
- package/dist-es/commands/ExportEBSVolumeRecommendationsCommand.js +21 -28
- package/dist-es/commands/ExportEC2InstanceRecommendationsCommand.js +21 -28
- package/dist-es/commands/ExportLambdaFunctionRecommendationsCommand.js +21 -28
- package/dist-es/commands/GetAutoScalingGroupRecommendationsCommand.js +21 -28
- package/dist-es/commands/GetEBSVolumeRecommendationsCommand.js +21 -28
- package/dist-es/commands/GetEC2InstanceRecommendationsCommand.js +21 -28
- package/dist-es/commands/GetEC2RecommendationProjectedMetricsCommand.js +21 -28
- package/dist-es/commands/GetEffectiveRecommendationPreferencesCommand.js +21 -28
- package/dist-es/commands/GetEnrollmentStatusCommand.js +21 -28
- package/dist-es/commands/GetEnrollmentStatusesForOrganizationCommand.js +21 -28
- package/dist-es/commands/GetLambdaFunctionRecommendationsCommand.js +21 -28
- package/dist-es/commands/GetRecommendationPreferencesCommand.js +21 -28
- package/dist-es/commands/GetRecommendationSummariesCommand.js +21 -28
- package/dist-es/commands/PutRecommendationPreferencesCommand.js +21 -28
- package/dist-es/commands/UpdateEnrollmentStatusCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/ComputeOptimizerServiceException.js +5 -10
- package/dist-es/models/models_0.js +321 -174
- package/dist-es/protocols/Aws_json1_0.js +1679 -2064
- 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/package.json +33 -33
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { ComputeOptimizerServiceException as __BaseException } from "./ComputeOptimizerServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "AccessDeniedException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "AccessDeniedException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
-
}(__BaseException));
|
|
14
|
-
export { AccessDeniedException };
|
|
13
|
+
}
|
|
15
14
|
export var Status;
|
|
16
15
|
(function (Status) {
|
|
17
16
|
Status["ACTIVE"] = "Active";
|
|
@@ -111,90 +110,90 @@ export var ScopeName;
|
|
|
111
110
|
ScopeName["ORGANIZATION"] = "Organization";
|
|
112
111
|
ScopeName["RESOURCE_ARN"] = "ResourceArn";
|
|
113
112
|
})(ScopeName || (ScopeName = {}));
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
113
|
+
export class InternalServerException extends __BaseException {
|
|
114
|
+
constructor(opts) {
|
|
115
|
+
super({
|
|
116
|
+
name: "InternalServerException",
|
|
117
|
+
$fault: "server",
|
|
118
|
+
...opts,
|
|
119
|
+
});
|
|
120
|
+
this.name = "InternalServerException";
|
|
121
|
+
this.$fault = "server";
|
|
122
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
122
123
|
}
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
124
|
+
}
|
|
125
|
+
export class InvalidParameterValueException extends __BaseException {
|
|
126
|
+
constructor(opts) {
|
|
127
|
+
super({
|
|
128
|
+
name: "InvalidParameterValueException",
|
|
129
|
+
$fault: "client",
|
|
130
|
+
...opts,
|
|
131
|
+
});
|
|
132
|
+
this.name = "InvalidParameterValueException";
|
|
133
|
+
this.$fault = "client";
|
|
134
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
134
135
|
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
136
|
+
}
|
|
137
|
+
export class MissingAuthenticationToken extends __BaseException {
|
|
138
|
+
constructor(opts) {
|
|
139
|
+
super({
|
|
140
|
+
name: "MissingAuthenticationToken",
|
|
141
|
+
$fault: "client",
|
|
142
|
+
...opts,
|
|
143
|
+
});
|
|
144
|
+
this.name = "MissingAuthenticationToken";
|
|
145
|
+
this.$fault = "client";
|
|
146
|
+
Object.setPrototypeOf(this, MissingAuthenticationToken.prototype);
|
|
146
147
|
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
148
|
+
}
|
|
149
|
+
export class OptInRequiredException extends __BaseException {
|
|
150
|
+
constructor(opts) {
|
|
151
|
+
super({
|
|
152
|
+
name: "OptInRequiredException",
|
|
153
|
+
$fault: "client",
|
|
154
|
+
...opts,
|
|
155
|
+
});
|
|
156
|
+
this.name = "OptInRequiredException";
|
|
157
|
+
this.$fault = "client";
|
|
158
|
+
Object.setPrototypeOf(this, OptInRequiredException.prototype);
|
|
158
159
|
}
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
160
|
+
}
|
|
161
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
162
|
+
constructor(opts) {
|
|
163
|
+
super({
|
|
164
|
+
name: "ResourceNotFoundException",
|
|
165
|
+
$fault: "client",
|
|
166
|
+
...opts,
|
|
167
|
+
});
|
|
168
|
+
this.name = "ResourceNotFoundException";
|
|
169
|
+
this.$fault = "client";
|
|
170
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
170
171
|
}
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
172
|
+
}
|
|
173
|
+
export class ServiceUnavailableException extends __BaseException {
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "ServiceUnavailableException",
|
|
177
|
+
$fault: "server",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
this.name = "ServiceUnavailableException";
|
|
181
|
+
this.$fault = "server";
|
|
182
|
+
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
182
183
|
}
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
184
|
+
}
|
|
185
|
+
export class ThrottlingException extends __BaseException {
|
|
186
|
+
constructor(opts) {
|
|
187
|
+
super({
|
|
188
|
+
name: "ThrottlingException",
|
|
189
|
+
$fault: "client",
|
|
190
|
+
...opts,
|
|
191
|
+
});
|
|
192
|
+
this.name = "ThrottlingException";
|
|
193
|
+
this.$fault = "client";
|
|
194
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
194
195
|
}
|
|
195
|
-
|
|
196
|
-
}(__BaseException));
|
|
197
|
-
export { ThrottlingException };
|
|
196
|
+
}
|
|
198
197
|
export var JobFilterName;
|
|
199
198
|
(function (JobFilterName) {
|
|
200
199
|
JobFilterName["JOB_STATUS"] = "JobStatus";
|
|
@@ -274,18 +273,18 @@ export var FilterName;
|
|
|
274
273
|
FilterName["FINDING_REASON_CODES"] = "FindingReasonCodes";
|
|
275
274
|
FilterName["RECOMMENDATION_SOURCE_TYPE"] = "RecommendationSourceType";
|
|
276
275
|
})(FilterName || (FilterName = {}));
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
276
|
+
export class LimitExceededException extends __BaseException {
|
|
277
|
+
constructor(opts) {
|
|
278
|
+
super({
|
|
279
|
+
name: "LimitExceededException",
|
|
280
|
+
$fault: "client",
|
|
281
|
+
...opts,
|
|
282
|
+
});
|
|
283
|
+
this.name = "LimitExceededException";
|
|
284
|
+
this.$fault = "client";
|
|
285
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
285
286
|
}
|
|
286
|
-
|
|
287
|
-
}(__BaseException));
|
|
288
|
-
export { LimitExceededException };
|
|
287
|
+
}
|
|
289
288
|
export var ExportableVolumeField;
|
|
290
289
|
(function (ExportableVolumeField) {
|
|
291
290
|
ExportableVolumeField["ACCOUNT_ID"] = "AccountId";
|
|
@@ -499,77 +498,225 @@ export var FindingReasonCode;
|
|
|
499
498
|
FindingReasonCode["MEMORY_OVER_PROVISIONED"] = "MemoryOverprovisioned";
|
|
500
499
|
FindingReasonCode["MEMORY_UNDER_PROVISIONED"] = "MemoryUnderprovisioned";
|
|
501
500
|
})(FindingReasonCode || (FindingReasonCode = {}));
|
|
502
|
-
export
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
export
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
export
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
export
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
export
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
export
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
export
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
export
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
export
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
export
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
export
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
export
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
export
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
export
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
export
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
export
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
export
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
export
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
export
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
export
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
export
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
export
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
export
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
export
|
|
575
|
-
|
|
501
|
+
export const AccountEnrollmentStatusFilterSensitiveLog = (obj) => ({
|
|
502
|
+
...obj,
|
|
503
|
+
});
|
|
504
|
+
export const AutoScalingGroupConfigurationFilterSensitiveLog = (obj) => ({
|
|
505
|
+
...obj,
|
|
506
|
+
});
|
|
507
|
+
export const EffectiveRecommendationPreferencesFilterSensitiveLog = (obj) => ({
|
|
508
|
+
...obj,
|
|
509
|
+
});
|
|
510
|
+
export const UtilizationMetricFilterSensitiveLog = (obj) => ({
|
|
511
|
+
...obj,
|
|
512
|
+
});
|
|
513
|
+
export const EstimatedMonthlySavingsFilterSensitiveLog = (obj) => ({
|
|
514
|
+
...obj,
|
|
515
|
+
});
|
|
516
|
+
export const SavingsOpportunityFilterSensitiveLog = (obj) => ({
|
|
517
|
+
...obj,
|
|
518
|
+
});
|
|
519
|
+
export const AutoScalingGroupRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
520
|
+
...obj,
|
|
521
|
+
});
|
|
522
|
+
export const AutoScalingGroupRecommendationFilterSensitiveLog = (obj) => ({
|
|
523
|
+
...obj,
|
|
524
|
+
});
|
|
525
|
+
export const ScopeFilterSensitiveLog = (obj) => ({
|
|
526
|
+
...obj,
|
|
527
|
+
});
|
|
528
|
+
export const DeleteRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
529
|
+
...obj,
|
|
530
|
+
});
|
|
531
|
+
export const DeleteRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
532
|
+
...obj,
|
|
533
|
+
});
|
|
534
|
+
export const JobFilterFilterSensitiveLog = (obj) => ({
|
|
535
|
+
...obj,
|
|
536
|
+
});
|
|
537
|
+
export const DescribeRecommendationExportJobsRequestFilterSensitiveLog = (obj) => ({
|
|
538
|
+
...obj,
|
|
539
|
+
});
|
|
540
|
+
export const S3DestinationFilterSensitiveLog = (obj) => ({
|
|
541
|
+
...obj,
|
|
542
|
+
});
|
|
543
|
+
export const ExportDestinationFilterSensitiveLog = (obj) => ({
|
|
544
|
+
...obj,
|
|
545
|
+
});
|
|
546
|
+
export const RecommendationExportJobFilterSensitiveLog = (obj) => ({
|
|
547
|
+
...obj,
|
|
548
|
+
});
|
|
549
|
+
export const DescribeRecommendationExportJobsResponseFilterSensitiveLog = (obj) => ({
|
|
550
|
+
...obj,
|
|
551
|
+
});
|
|
552
|
+
export const FilterFilterSensitiveLog = (obj) => ({
|
|
553
|
+
...obj,
|
|
554
|
+
});
|
|
555
|
+
export const RecommendationPreferencesFilterSensitiveLog = (obj) => ({
|
|
556
|
+
...obj,
|
|
557
|
+
});
|
|
558
|
+
export const S3DestinationConfigFilterSensitiveLog = (obj) => ({
|
|
559
|
+
...obj,
|
|
560
|
+
});
|
|
561
|
+
export const ExportAutoScalingGroupRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
562
|
+
...obj,
|
|
563
|
+
});
|
|
564
|
+
export const ExportAutoScalingGroupRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
565
|
+
...obj,
|
|
566
|
+
});
|
|
567
|
+
export const EBSFilterFilterSensitiveLog = (obj) => ({
|
|
568
|
+
...obj,
|
|
569
|
+
});
|
|
570
|
+
export const ExportEBSVolumeRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
571
|
+
...obj,
|
|
572
|
+
});
|
|
573
|
+
export const ExportEBSVolumeRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
574
|
+
...obj,
|
|
575
|
+
});
|
|
576
|
+
export const ExportEC2InstanceRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
577
|
+
...obj,
|
|
578
|
+
});
|
|
579
|
+
export const ExportEC2InstanceRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
580
|
+
...obj,
|
|
581
|
+
});
|
|
582
|
+
export const LambdaFunctionRecommendationFilterFilterSensitiveLog = (obj) => ({
|
|
583
|
+
...obj,
|
|
584
|
+
});
|
|
585
|
+
export const ExportLambdaFunctionRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
586
|
+
...obj,
|
|
587
|
+
});
|
|
588
|
+
export const ExportLambdaFunctionRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
589
|
+
...obj,
|
|
590
|
+
});
|
|
591
|
+
export const GetAutoScalingGroupRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
592
|
+
...obj,
|
|
593
|
+
});
|
|
594
|
+
export const GetRecommendationErrorFilterSensitiveLog = (obj) => ({
|
|
595
|
+
...obj,
|
|
596
|
+
});
|
|
597
|
+
export const GetAutoScalingGroupRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
598
|
+
...obj,
|
|
599
|
+
});
|
|
600
|
+
export const GetEBSVolumeRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
601
|
+
...obj,
|
|
602
|
+
});
|
|
603
|
+
export const VolumeConfigurationFilterSensitiveLog = (obj) => ({
|
|
604
|
+
...obj,
|
|
605
|
+
});
|
|
606
|
+
export const EBSUtilizationMetricFilterSensitiveLog = (obj) => ({
|
|
607
|
+
...obj,
|
|
608
|
+
});
|
|
609
|
+
export const VolumeRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
610
|
+
...obj,
|
|
611
|
+
});
|
|
612
|
+
export const VolumeRecommendationFilterSensitiveLog = (obj) => ({
|
|
613
|
+
...obj,
|
|
614
|
+
});
|
|
615
|
+
export const GetEBSVolumeRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
616
|
+
...obj,
|
|
617
|
+
});
|
|
618
|
+
export const GetEC2InstanceRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
619
|
+
...obj,
|
|
620
|
+
});
|
|
621
|
+
export const InstanceRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
622
|
+
...obj,
|
|
623
|
+
});
|
|
624
|
+
export const RecommendationSourceFilterSensitiveLog = (obj) => ({
|
|
625
|
+
...obj,
|
|
626
|
+
});
|
|
627
|
+
export const InstanceRecommendationFilterSensitiveLog = (obj) => ({
|
|
628
|
+
...obj,
|
|
629
|
+
});
|
|
630
|
+
export const GetEC2InstanceRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
631
|
+
...obj,
|
|
632
|
+
});
|
|
633
|
+
export const GetEC2RecommendationProjectedMetricsRequestFilterSensitiveLog = (obj) => ({
|
|
634
|
+
...obj,
|
|
635
|
+
});
|
|
636
|
+
export const ProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
637
|
+
...obj,
|
|
638
|
+
});
|
|
639
|
+
export const RecommendedOptionProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
640
|
+
...obj,
|
|
641
|
+
});
|
|
642
|
+
export const GetEC2RecommendationProjectedMetricsResponseFilterSensitiveLog = (obj) => ({
|
|
643
|
+
...obj,
|
|
644
|
+
});
|
|
645
|
+
export const GetEffectiveRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
646
|
+
...obj,
|
|
647
|
+
});
|
|
648
|
+
export const GetEffectiveRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
649
|
+
...obj,
|
|
650
|
+
});
|
|
651
|
+
export const GetEnrollmentStatusRequestFilterSensitiveLog = (obj) => ({
|
|
652
|
+
...obj,
|
|
653
|
+
});
|
|
654
|
+
export const GetEnrollmentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
655
|
+
...obj,
|
|
656
|
+
});
|
|
657
|
+
export const EnrollmentFilterFilterSensitiveLog = (obj) => ({
|
|
658
|
+
...obj,
|
|
659
|
+
});
|
|
660
|
+
export const GetEnrollmentStatusesForOrganizationRequestFilterSensitiveLog = (obj) => ({
|
|
661
|
+
...obj,
|
|
662
|
+
});
|
|
663
|
+
export const GetEnrollmentStatusesForOrganizationResponseFilterSensitiveLog = (obj) => ({
|
|
664
|
+
...obj,
|
|
665
|
+
});
|
|
666
|
+
export const GetLambdaFunctionRecommendationsRequestFilterSensitiveLog = (obj) => ({
|
|
667
|
+
...obj,
|
|
668
|
+
});
|
|
669
|
+
export const LambdaFunctionMemoryProjectedMetricFilterSensitiveLog = (obj) => ({
|
|
670
|
+
...obj,
|
|
671
|
+
});
|
|
672
|
+
export const LambdaFunctionMemoryRecommendationOptionFilterSensitiveLog = (obj) => ({
|
|
673
|
+
...obj,
|
|
674
|
+
});
|
|
675
|
+
export const LambdaFunctionUtilizationMetricFilterSensitiveLog = (obj) => ({
|
|
676
|
+
...obj,
|
|
677
|
+
});
|
|
678
|
+
export const LambdaFunctionRecommendationFilterSensitiveLog = (obj) => ({
|
|
679
|
+
...obj,
|
|
680
|
+
});
|
|
681
|
+
export const GetLambdaFunctionRecommendationsResponseFilterSensitiveLog = (obj) => ({
|
|
682
|
+
...obj,
|
|
683
|
+
});
|
|
684
|
+
export const GetRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
685
|
+
...obj,
|
|
686
|
+
});
|
|
687
|
+
export const RecommendationPreferencesDetailFilterSensitiveLog = (obj) => ({
|
|
688
|
+
...obj,
|
|
689
|
+
});
|
|
690
|
+
export const GetRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
691
|
+
...obj,
|
|
692
|
+
});
|
|
693
|
+
export const GetRecommendationSummariesRequestFilterSensitiveLog = (obj) => ({
|
|
694
|
+
...obj,
|
|
695
|
+
});
|
|
696
|
+
export const CurrentPerformanceRiskRatingsFilterSensitiveLog = (obj) => ({
|
|
697
|
+
...obj,
|
|
698
|
+
});
|
|
699
|
+
export const ReasonCodeSummaryFilterSensitiveLog = (obj) => ({
|
|
700
|
+
...obj,
|
|
701
|
+
});
|
|
702
|
+
export const SummaryFilterSensitiveLog = (obj) => ({
|
|
703
|
+
...obj,
|
|
704
|
+
});
|
|
705
|
+
export const RecommendationSummaryFilterSensitiveLog = (obj) => ({
|
|
706
|
+
...obj,
|
|
707
|
+
});
|
|
708
|
+
export const GetRecommendationSummariesResponseFilterSensitiveLog = (obj) => ({
|
|
709
|
+
...obj,
|
|
710
|
+
});
|
|
711
|
+
export const PutRecommendationPreferencesRequestFilterSensitiveLog = (obj) => ({
|
|
712
|
+
...obj,
|
|
713
|
+
});
|
|
714
|
+
export const PutRecommendationPreferencesResponseFilterSensitiveLog = (obj) => ({
|
|
715
|
+
...obj,
|
|
716
|
+
});
|
|
717
|
+
export const UpdateEnrollmentStatusRequestFilterSensitiveLog = (obj) => ({
|
|
718
|
+
...obj,
|
|
719
|
+
});
|
|
720
|
+
export const UpdateEnrollmentStatusResponseFilterSensitiveLog = (obj) => ({
|
|
721
|
+
...obj,
|
|
722
|
+
});
|