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:
Devang Srivastava 2020-09-28 15:32:51 +05:30
commit e6d7753dc8
1095 changed files with 45088 additions and 2911 deletions

View file

@ -8,8 +8,12 @@ use Aws\AwsClient;
*
* @method \Aws\Result cancelKeyDeletion(array $args = [])
* @method \GuzzleHttp\Promise\Promise cancelKeyDeletionAsync(array $args = [])
* @method \Aws\Result connectCustomKeyStore(array $args = [])
* @method \GuzzleHttp\Promise\Promise connectCustomKeyStoreAsync(array $args = [])
* @method \Aws\Result createAlias(array $args = [])
* @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = [])
* @method \Aws\Result createCustomKeyStore(array $args = [])
* @method \GuzzleHttp\Promise\Promise createCustomKeyStoreAsync(array $args = [])
* @method \Aws\Result createGrant(array $args = [])
* @method \GuzzleHttp\Promise\Promise createGrantAsync(array $args = [])
* @method \Aws\Result createKey(array $args = [])
@ -18,14 +22,20 @@ use Aws\AwsClient;
* @method \GuzzleHttp\Promise\Promise decryptAsync(array $args = [])
* @method \Aws\Result deleteAlias(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = [])
* @method \Aws\Result deleteCustomKeyStore(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteCustomKeyStoreAsync(array $args = [])
* @method \Aws\Result deleteImportedKeyMaterial(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteImportedKeyMaterialAsync(array $args = [])
* @method \Aws\Result describeCustomKeyStores(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeCustomKeyStoresAsync(array $args = [])
* @method \Aws\Result describeKey(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeKeyAsync(array $args = [])
* @method \Aws\Result disableKey(array $args = [])
* @method \GuzzleHttp\Promise\Promise disableKeyAsync(array $args = [])
* @method \Aws\Result disableKeyRotation(array $args = [])
* @method \GuzzleHttp\Promise\Promise disableKeyRotationAsync(array $args = [])
* @method \Aws\Result disconnectCustomKeyStore(array $args = [])
* @method \GuzzleHttp\Promise\Promise disconnectCustomKeyStoreAsync(array $args = [])
* @method \Aws\Result enableKey(array $args = [])
* @method \GuzzleHttp\Promise\Promise enableKeyAsync(array $args = [])
* @method \Aws\Result enableKeyRotation(array $args = [])
@ -34,6 +44,10 @@ use Aws\AwsClient;
* @method \GuzzleHttp\Promise\Promise encryptAsync(array $args = [])
* @method \Aws\Result generateDataKey(array $args = [])
* @method \GuzzleHttp\Promise\Promise generateDataKeyAsync(array $args = [])
* @method \Aws\Result generateDataKeyPair(array $args = [])
* @method \GuzzleHttp\Promise\Promise generateDataKeyPairAsync(array $args = [])
* @method \Aws\Result generateDataKeyPairWithoutPlaintext(array $args = [])
* @method \GuzzleHttp\Promise\Promise generateDataKeyPairWithoutPlaintextAsync(array $args = [])
* @method \Aws\Result generateDataKeyWithoutPlaintext(array $args = [])
* @method \GuzzleHttp\Promise\Promise generateDataKeyWithoutPlaintextAsync(array $args = [])
* @method \Aws\Result generateRandom(array $args = [])
@ -44,6 +58,8 @@ use Aws\AwsClient;
* @method \GuzzleHttp\Promise\Promise getKeyRotationStatusAsync(array $args = [])
* @method \Aws\Result getParametersForImport(array $args = [])
* @method \GuzzleHttp\Promise\Promise getParametersForImportAsync(array $args = [])
* @method \Aws\Result getPublicKey(array $args = [])
* @method \GuzzleHttp\Promise\Promise getPublicKeyAsync(array $args = [])
* @method \Aws\Result importKeyMaterial(array $args = [])
* @method \GuzzleHttp\Promise\Promise importKeyMaterialAsync(array $args = [])
* @method \Aws\Result listAliases(array $args = [])
@ -68,13 +84,19 @@ use Aws\AwsClient;
* @method \GuzzleHttp\Promise\Promise revokeGrantAsync(array $args = [])
* @method \Aws\Result scheduleKeyDeletion(array $args = [])
* @method \GuzzleHttp\Promise\Promise scheduleKeyDeletionAsync(array $args = [])
* @method \Aws\Result sign(array $args = [])
* @method \GuzzleHttp\Promise\Promise signAsync(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 updateCustomKeyStore(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateCustomKeyStoreAsync(array $args = [])
* @method \Aws\Result updateKeyDescription(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateKeyDescriptionAsync(array $args = [])
* @method \Aws\Result verify(array $args = [])
* @method \GuzzleHttp\Promise\Promise verifyAsync(array $args = [])
*/
class KmsClient extends AwsClient {}