mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-07-16 10:03:01 -07:00
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!
This commit is contained in:
parent
ad0726e41e
commit
e6d7753dc8
1095 changed files with 45088 additions and 2911 deletions
53
aws/Aws/DataExchange/DataExchangeClient.php
Normal file
53
aws/Aws/DataExchange/DataExchangeClient.php
Normal file
|
@ -0,0 +1,53 @@
|
|||
<?php
|
||||
namespace Aws\DataExchange;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **AWS Data Exchange** service.
|
||||
* @method \Aws\Result cancelJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise cancelJobAsync(array $args = [])
|
||||
* @method \Aws\Result createDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result createJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createJobAsync(array $args = [])
|
||||
* @method \Aws\Result createRevision(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAsset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAssetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result deleteRevision(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result getAsset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAssetAsync(array $args = [])
|
||||
* @method \Aws\Result getDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result getJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getJobAsync(array $args = [])
|
||||
* @method \Aws\Result getRevision(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getRevisionAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSetRevisions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataSetRevisionsAsync(array $args = [])
|
||||
* @method \Aws\Result listDataSets(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listDataSetsAsync(array $args = [])
|
||||
* @method \Aws\Result listJobs(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listJobsAsync(array $args = [])
|
||||
* @method \Aws\Result listRevisionAssets(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listRevisionAssetsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result startJob(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startJobAsync(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 = [])
|
||||
* @method \Aws\Result updateAsset(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAssetAsync(array $args = [])
|
||||
* @method \Aws\Result updateDataSet(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateDataSetAsync(array $args = [])
|
||||
* @method \Aws\Result updateRevision(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateRevisionAsync(array $args = [])
|
||||
*/
|
||||
class DataExchangeClient extends AwsClient {}
|
Loading…
Add table
Add a link
Reference in a new issue