mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-15 09:33:02 -07:00
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
27 lines
1.6 KiB
PHP
27 lines
1.6 KiB
PHP
<?php
|
|
namespace Aws\ComputeOptimizer;
|
|
|
|
use Aws\AwsClient;
|
|
|
|
/**
|
|
* This client is used to interact with the **AWS Compute Optimizer** service.
|
|
* @method \Aws\Result describeRecommendationExportJobs(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise describeRecommendationExportJobsAsync(array $args = [])
|
|
* @method \Aws\Result exportAutoScalingGroupRecommendations(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise exportAutoScalingGroupRecommendationsAsync(array $args = [])
|
|
* @method \Aws\Result exportEC2InstanceRecommendations(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise exportEC2InstanceRecommendationsAsync(array $args = [])
|
|
* @method \Aws\Result getAutoScalingGroupRecommendations(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise getAutoScalingGroupRecommendationsAsync(array $args = [])
|
|
* @method \Aws\Result getEC2InstanceRecommendations(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise getEC2InstanceRecommendationsAsync(array $args = [])
|
|
* @method \Aws\Result getEC2RecommendationProjectedMetrics(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise getEC2RecommendationProjectedMetricsAsync(array $args = [])
|
|
* @method \Aws\Result getEnrollmentStatus(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise getEnrollmentStatusAsync(array $args = [])
|
|
* @method \Aws\Result getRecommendationSummaries(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise getRecommendationSummariesAsync(array $args = [])
|
|
* @method \Aws\Result updateEnrollmentStatus(array $args = [])
|
|
* @method \GuzzleHttp\Promise\Promise updateEnrollmentStatusAsync(array $args = [])
|
|
*/
|
|
class ComputeOptimizerClient extends AwsClient {}
|