@aws-sdk/client-compute-optimizer 3.42.0 → 3.46.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/CHANGELOG.md +47 -0
  2. package/README.md +7 -10
  3. package/dist-cjs/ComputeOptimizer.js +60 -0
  4. package/dist-cjs/commands/DeleteRecommendationPreferencesCommand.js +36 -0
  5. package/dist-cjs/commands/GetEffectiveRecommendationPreferencesCommand.js +36 -0
  6. package/dist-cjs/commands/GetRecommendationPreferencesCommand.js +36 -0
  7. package/dist-cjs/commands/PutRecommendationPreferencesCommand.js +36 -0
  8. package/dist-cjs/commands/index.js +4 -0
  9. package/dist-cjs/endpoints.js +1 -0
  10. package/dist-cjs/models/models_0.js +183 -51
  11. package/dist-cjs/protocols/Aws_json1_0.js +617 -1
  12. package/dist-cjs/runtimeConfig.js +0 -2
  13. package/dist-es/ComputeOptimizer.js +60 -0
  14. package/dist-es/commands/DeleteRecommendationPreferencesCommand.js +39 -0
  15. package/dist-es/commands/GetEffectiveRecommendationPreferencesCommand.js +39 -0
  16. package/dist-es/commands/GetRecommendationPreferencesCommand.js +39 -0
  17. package/dist-es/commands/PutRecommendationPreferencesCommand.js +39 -0
  18. package/dist-es/commands/index.js +4 -0
  19. package/dist-es/endpoints.js +1 -0
  20. package/dist-es/models/models_0.js +143 -40
  21. package/dist-es/protocols/Aws_json1_0.js +646 -8
  22. package/dist-es/runtimeConfig.js +0 -2
  23. package/dist-types/ComputeOptimizer.d.ts +50 -27
  24. package/dist-types/ComputeOptimizerClient.d.ts +6 -2
  25. package/dist-types/commands/DeleteRecommendationPreferencesCommand.d.ts +38 -0
  26. package/dist-types/commands/DescribeRecommendationExportJobsCommand.d.ts +0 -1
  27. package/dist-types/commands/ExportAutoScalingGroupRecommendationsCommand.d.ts +0 -2
  28. package/dist-types/commands/ExportEBSVolumeRecommendationsCommand.d.ts +1 -4
  29. package/dist-types/commands/ExportEC2InstanceRecommendationsCommand.d.ts +1 -4
  30. package/dist-types/commands/ExportLambdaFunctionRecommendationsCommand.d.ts +1 -4
  31. package/dist-types/commands/GetAutoScalingGroupRecommendationsCommand.d.ts +0 -1
  32. package/dist-types/commands/GetEBSVolumeRecommendationsCommand.d.ts +0 -1
  33. package/dist-types/commands/GetEC2InstanceRecommendationsCommand.d.ts +0 -1
  34. package/dist-types/commands/GetEC2RecommendationProjectedMetricsCommand.d.ts +0 -1
  35. package/dist-types/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +40 -0
  36. package/dist-types/commands/GetEnrollmentStatusCommand.d.ts +0 -1
  37. package/dist-types/commands/GetEnrollmentStatusesForOrganizationCommand.d.ts +0 -1
  38. package/dist-types/commands/GetLambdaFunctionRecommendationsCommand.d.ts +0 -1
  39. package/dist-types/commands/GetRecommendationPreferencesCommand.d.ts +42 -0
  40. package/dist-types/commands/GetRecommendationSummariesCommand.d.ts +0 -2
  41. package/dist-types/commands/PutRecommendationPreferencesCommand.d.ts +39 -0
  42. package/dist-types/commands/UpdateEnrollmentStatusCommand.d.ts +0 -3
  43. package/dist-types/commands/index.d.ts +4 -0
  44. package/dist-types/models/models_0.d.ts +646 -282
  45. package/dist-types/protocols/Aws_json1_0.d.ts +12 -0
  46. package/dist-types/ts3.4/ComputeOptimizer.d.ts +20 -0
  47. package/dist-types/ts3.4/ComputeOptimizerClient.d.ts +6 -2
  48. package/dist-types/ts3.4/commands/DeleteRecommendationPreferencesCommand.d.ts +17 -0
  49. package/dist-types/ts3.4/commands/GetEffectiveRecommendationPreferencesCommand.d.ts +17 -0
  50. package/dist-types/ts3.4/commands/GetRecommendationPreferencesCommand.d.ts +17 -0
  51. package/dist-types/ts3.4/commands/PutRecommendationPreferencesCommand.d.ts +17 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +291 -77
  54. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
  55. package/package.json +36 -43
@@ -1,3 +1,4 @@
1
+ export * from "./DeleteRecommendationPreferencesCommand";
1
2
  export * from "./DescribeRecommendationExportJobsCommand";
2
3
  export * from "./ExportAutoScalingGroupRecommendationsCommand";
3
4
  export * from "./ExportEBSVolumeRecommendationsCommand";
@@ -7,8 +8,11 @@ export * from "./GetAutoScalingGroupRecommendationsCommand";
7
8
  export * from "./GetEBSVolumeRecommendationsCommand";
8
9
  export * from "./GetEC2InstanceRecommendationsCommand";
9
10
  export * from "./GetEC2RecommendationProjectedMetricsCommand";
11
+ export * from "./GetEffectiveRecommendationPreferencesCommand";
10
12
  export * from "./GetEnrollmentStatusCommand";
11
13
  export * from "./GetEnrollmentStatusesForOrganizationCommand";
12
14
  export * from "./GetLambdaFunctionRecommendationsCommand";
15
+ export * from "./GetRecommendationPreferencesCommand";
13
16
  export * from "./GetRecommendationSummariesCommand";
17
+ export * from "./PutRecommendationPreferencesCommand";
14
18
  export * from "./UpdateEnrollmentStatusCommand";