mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-14 02:27:23 -07:00
spaces.php
This commit is contained in:
parent
7755490b81
commit
eefa32741e
845 changed files with 50409 additions and 0 deletions
9
aws/Aws/Lambda/Exception/LambdaException.php
Normal file
9
aws/Aws/Lambda/Exception/LambdaException.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\Lambda\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with AWS Lambda
|
||||
*/
|
||||
class LambdaException extends AwsException {}
|
70
aws/Aws/Lambda/LambdaClient.php
Normal file
70
aws/Aws/Lambda/LambdaClient.php
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?php
|
||||
namespace Aws\Lambda;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with AWS Lambda
|
||||
*
|
||||
* @method \Aws\Result addPermission(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise addPermissionAsync(array $args = [])
|
||||
* @method \Aws\Result createAlias(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = [])
|
||||
* @method \Aws\Result createEventSourceMapping(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createEventSourceMappingAsync(array $args = [])
|
||||
* @method \Aws\Result createFunction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise createFunctionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteAlias(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = [])
|
||||
* @method \Aws\Result deleteEventSourceMapping(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteEventSourceMappingAsync(array $args = [])
|
||||
* @method \Aws\Result deleteFunction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteFunctionAsync(array $args = [])
|
||||
* @method \Aws\Result deleteFunctionConcurrency(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deleteFunctionConcurrencyAsync(array $args = [])
|
||||
* @method \Aws\Result getAccountSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAccountSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result getAlias(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getAliasAsync(array $args = [])
|
||||
* @method \Aws\Result getEventSourceMapping(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getEventSourceMappingAsync(array $args = [])
|
||||
* @method \Aws\Result getFunction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getFunctionAsync(array $args = [])
|
||||
* @method \Aws\Result getFunctionConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getFunctionConfigurationAsync(array $args = [])
|
||||
* @method \Aws\Result getPolicy(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getPolicyAsync(array $args = [])
|
||||
* @method \Aws\Result invoke(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise invokeAsync(array $args = [])
|
||||
* @method \Aws\Result invokeAsync(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise invokeAsyncAsync(array $args = [])
|
||||
* @method \Aws\Result listAliases(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listAliasesAsync(array $args = [])
|
||||
* @method \Aws\Result listEventSourceMappings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listEventSourceMappingsAsync(array $args = [])
|
||||
* @method \Aws\Result listFunctions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listFunctionsAsync(array $args = [])
|
||||
* @method \Aws\Result listTags(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listTagsAsync(array $args = [])
|
||||
* @method \Aws\Result listVersionsByFunction(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listVersionsByFunctionAsync(array $args = [])
|
||||
* @method \Aws\Result publishVersion(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise publishVersionAsync(array $args = [])
|
||||
* @method \Aws\Result putFunctionConcurrency(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putFunctionConcurrencyAsync(array $args = [])
|
||||
* @method \Aws\Result removePermission(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise removePermissionAsync(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 updateAlias(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateAliasAsync(array $args = [])
|
||||
* @method \Aws\Result updateEventSourceMapping(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateEventSourceMappingAsync(array $args = [])
|
||||
* @method \Aws\Result updateFunctionCode(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateFunctionCodeAsync(array $args = [])
|
||||
* @method \Aws\Result updateFunctionConfiguration(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateFunctionConfigurationAsync(array $args = [])
|
||||
*/
|
||||
class LambdaClient extends AwsClient {}
|
Loading…
Add table
Add a link
Reference in a new issue