mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-20 13:23:47 -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
|
@ -0,0 +1,9 @@
|
|||
<?php
|
||||
namespace Aws\LakeFormation\Exception;
|
||||
|
||||
use Aws\Exception\AwsException;
|
||||
|
||||
/**
|
||||
* Represents an error interacting with the **AWS Lake Formation** service.
|
||||
*/
|
||||
class LakeFormationException extends AwsException {}
|
35
aws/Aws/LakeFormation/LakeFormationClient.php
Normal file
35
aws/Aws/LakeFormation/LakeFormationClient.php
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?php
|
||||
namespace Aws\LakeFormation;
|
||||
|
||||
use Aws\AwsClient;
|
||||
|
||||
/**
|
||||
* This client is used to interact with the **AWS Lake Formation** service.
|
||||
* @method \Aws\Result batchGrantPermissions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchGrantPermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result batchRevokePermissions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise batchRevokePermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result deregisterResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise deregisterResourceAsync(array $args = [])
|
||||
* @method \Aws\Result describeResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise describeResourceAsync(array $args = [])
|
||||
* @method \Aws\Result getDataLakeSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getDataLakeSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result getEffectivePermissionsForPath(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise getEffectivePermissionsForPathAsync(array $args = [])
|
||||
* @method \Aws\Result grantPermissions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise grantPermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result listPermissions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listPermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result listResources(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise listResourcesAsync(array $args = [])
|
||||
* @method \Aws\Result putDataLakeSettings(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise putDataLakeSettingsAsync(array $args = [])
|
||||
* @method \Aws\Result registerResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise registerResourceAsync(array $args = [])
|
||||
* @method \Aws\Result revokePermissions(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise revokePermissionsAsync(array $args = [])
|
||||
* @method \Aws\Result updateResource(array $args = [])
|
||||
* @method \GuzzleHttp\Promise\Promise updateResourceAsync(array $args = [])
|
||||
*/
|
||||
class LakeFormationClient extends AwsClient {}
|
Loading…
Add table
Add a link
Reference in a new issue