Spaces-API/aws/Aws/signer/signerClient.php
Devang Srivastava e6d7753dc8 v2: Updates
* 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!
2020-09-28 15:32:51 +05:30

33 lines
1.8 KiB
PHP

<?php
namespace Aws\signer;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Signer** service.
* @method \Aws\Result cancelSigningProfile(array $args = [])
* @method \GuzzleHttp\Promise\Promise cancelSigningProfileAsync(array $args = [])
* @method \Aws\Result describeSigningJob(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeSigningJobAsync(array $args = [])
* @method \Aws\Result getSigningPlatform(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSigningPlatformAsync(array $args = [])
* @method \Aws\Result getSigningProfile(array $args = [])
* @method \GuzzleHttp\Promise\Promise getSigningProfileAsync(array $args = [])
* @method \Aws\Result listSigningJobs(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSigningJobsAsync(array $args = [])
* @method \Aws\Result listSigningPlatforms(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSigningPlatformsAsync(array $args = [])
* @method \Aws\Result listSigningProfiles(array $args = [])
* @method \GuzzleHttp\Promise\Promise listSigningProfilesAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result putSigningProfile(array $args = [])
* @method \GuzzleHttp\Promise\Promise putSigningProfileAsync(array $args = [])
* @method \Aws\Result startSigningJob(array $args = [])
* @method \GuzzleHttp\Promise\Promise startSigningJobAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
*/
class signerClient extends AwsClient {}