mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-19 21:03:44 -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
45
aws/Aws/Appflow/AppflowClient.php
Normal file
45
aws/Aws/Appflow/AppflowClient.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
namespace Aws\Appflow;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **Amazon Appflow** service.
|
||||
* @method \Aws\Result createConnectorProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createConnectorProfileAsync(array $args = [])
|
||||
* @method \Aws\Result createFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createFlowAsync(array $args = [])
|
||||
* @method \Aws\Result deleteConnectorProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteConnectorProfileAsync(array $args = [])
|
||||
* @method \Aws\Result deleteFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteFlowAsync(array $args = [])
|
||||
* @method \Aws\Result describeConnectorEntity(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeConnectorEntityAsync(array $args = [])
|
||||
* @method \Aws\Result describeConnectorProfiles(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeConnectorProfilesAsync(array $args = [])
|
||||
* @method \Aws\Result describeConnectors(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeConnectorsAsync(array $args = [])
|
||||
* @method \Aws\Result describeFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeFlowAsync(array $args = [])
|
||||
* @method \Aws\Result describeFlowExecutionRecords(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeFlowExecutionRecordsAsync(array $args = [])
|
||||
* @method \Aws\Result listConnectorEntities(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listConnectorEntitiesAsync(array $args = [])
|
||||
* @method \Aws\Result listFlows(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listFlowsAsync(array $args = [])
|
||||
* @method \Aws\Result listTagsForResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
|
||||
* @method \Aws\Result startFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startFlowAsync(array $args = [])
|
||||
* @method \Aws\Result stopFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopFlowAsync(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 updateConnectorProfile(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateConnectorProfileAsync(array $args = [])
|
||||
* @method \Aws\Result updateFlow(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateFlowAsync(array $args = [])
|
||||
*/
|
||||
class AppflowClient extends AwsClient {}
|
9
aws/Aws/Appflow/Exception/AppflowException.php
Normal file
9
aws/Aws/Appflow/Exception/AppflowException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\Appflow\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **Amazon Appflow** service.
|
||||
*/
|
||||
class AppflowException extends AwsException {}
|
Loading…
Add table
Add a link
Reference in a new issue