mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-20 05:13:42 -07:00
spaces.php
This commit is contained in:
parent
7755490b81
commit
eefa32741e
845 changed files with 50409 additions and 0 deletions
72
aws/Aws/Ecs/EcsClient.php
Normal file
72
aws/Aws/Ecs/EcsClient.php
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?php
|
||||
namespace Aws\Ecs;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with **Amazon ECS**.
|
||||
*
|
||||
* @method \Aws\Result createCluster(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createClusterAsync(array $args = [])
|
||||
* @method \Aws\Result createService(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createServiceAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAttributes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAttributesAsync(array $args = [])
|
||||
* @method \Aws\Result deleteCluster(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteClusterAsync(array $args = [])
|
||||
* @method \Aws\Result deleteService(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteServiceAsync(array $args = [])
|
||||
* @method \Aws\Result deregisterContainerInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deregisterContainerInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result deregisterTaskDefinition(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deregisterTaskDefinitionAsync(array $args = [])
|
||||
* @method \Aws\Result describeClusters(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeClustersAsync(array $args = [])
|
||||
* @method \Aws\Result describeContainerInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeContainerInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result describeServices(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeServicesAsync(array $args = [])
|
||||
* @method \Aws\Result describeTaskDefinition(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeTaskDefinitionAsync(array $args = [])
|
||||
* @method \Aws\Result describeTasks(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeTasksAsync(array $args = [])
|
||||
* @method \Aws\Result discoverPollEndpoint(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise discoverPollEndpointAsync(array $args = [])
|
||||
* @method \Aws\Result listAttributes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAttributesAsync(array $args = [])
|
||||
* @method \Aws\Result listClusters(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listClustersAsync(array $args = [])
|
||||
* @method \Aws\Result listContainerInstances(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listContainerInstancesAsync(array $args = [])
|
||||
* @method \Aws\Result listServices(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listServicesAsync(array $args = [])
|
||||
* @method \Aws\Result listTaskDefinitionFamilies(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTaskDefinitionFamiliesAsync(array $args = [])
|
||||
* @method \Aws\Result listTaskDefinitions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTaskDefinitionsAsync(array $args = [])
|
||||
* @method \Aws\Result listTasks(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTasksAsync(array $args = [])
|
||||
* @method \Aws\Result putAttributes(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putAttributesAsync(array $args = [])
|
||||
* @method \Aws\Result registerContainerInstance(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise registerContainerInstanceAsync(array $args = [])
|
||||
* @method \Aws\Result registerTaskDefinition(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise registerTaskDefinitionAsync(array $args = [])
|
||||
* @method \Aws\Result runTask(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise runTaskAsync(array $args = [])
|
||||
* @method \Aws\Result startTask(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise startTaskAsync(array $args = [])
|
||||
* @method \Aws\Result stopTask(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise stopTaskAsync(array $args = [])
|
||||
* @method \Aws\Result submitContainerStateChange(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise submitContainerStateChangeAsync(array $args = [])
|
||||
* @method \Aws\Result submitTaskStateChange(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise submitTaskStateChangeAsync(array $args = [])
|
||||
* @method \Aws\Result updateContainerAgent(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateContainerAgentAsync(array $args = [])
|
||||
* @method \Aws\Result updateContainerInstancesState(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateContainerInstancesStateAsync(array $args = [])
|
||||
* @method \Aws\Result updateService(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateServiceAsync(array $args = [])
|
||||
*/
|
||||
class EcsClient extends AwsClient {}
|
9
aws/Aws/Ecs/Exception/EcsException.php
Normal file
9
aws/Aws/Ecs/Exception/EcsException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\Ecs\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Amazon ECS exception.
|
||||
*/
|
||||
class EcsException extends AwsException {}
|
Loading…
Add table
Add a link
Reference in a new issue