KmsClient.php
111 lines
| 1 | <?php |
| 2 | namespace Aws\Kms; |
| 3 | |
| 4 | use Aws\AwsClient; |
| 5 | |
| 6 | /** |
| 7 | * This client is used to interact with the **AWS Key Management Service**. |
| 8 | * |
| 9 | * @method \Aws\Result cancelKeyDeletion(array $args = []) |
| 10 | * @method \GuzzleHttp\Promise\Promise cancelKeyDeletionAsync(array $args = []) |
| 11 | * @method \Aws\Result connectCustomKeyStore(array $args = []) |
| 12 | * @method \GuzzleHttp\Promise\Promise connectCustomKeyStoreAsync(array $args = []) |
| 13 | * @method \Aws\Result createAlias(array $args = []) |
| 14 | * @method \GuzzleHttp\Promise\Promise createAliasAsync(array $args = []) |
| 15 | * @method \Aws\Result createCustomKeyStore(array $args = []) |
| 16 | * @method \GuzzleHttp\Promise\Promise createCustomKeyStoreAsync(array $args = []) |
| 17 | * @method \Aws\Result createGrant(array $args = []) |
| 18 | * @method \GuzzleHttp\Promise\Promise createGrantAsync(array $args = []) |
| 19 | * @method \Aws\Result createKey(array $args = []) |
| 20 | * @method \GuzzleHttp\Promise\Promise createKeyAsync(array $args = []) |
| 21 | * @method \Aws\Result decrypt(array $args = []) |
| 22 | * @method \GuzzleHttp\Promise\Promise decryptAsync(array $args = []) |
| 23 | * @method \Aws\Result deleteAlias(array $args = []) |
| 24 | * @method \GuzzleHttp\Promise\Promise deleteAliasAsync(array $args = []) |
| 25 | * @method \Aws\Result deleteCustomKeyStore(array $args = []) |
| 26 | * @method \GuzzleHttp\Promise\Promise deleteCustomKeyStoreAsync(array $args = []) |
| 27 | * @method \Aws\Result deleteImportedKeyMaterial(array $args = []) |
| 28 | * @method \GuzzleHttp\Promise\Promise deleteImportedKeyMaterialAsync(array $args = []) |
| 29 | * @method \Aws\Result describeCustomKeyStores(array $args = []) |
| 30 | * @method \GuzzleHttp\Promise\Promise describeCustomKeyStoresAsync(array $args = []) |
| 31 | * @method \Aws\Result describeKey(array $args = []) |
| 32 | * @method \GuzzleHttp\Promise\Promise describeKeyAsync(array $args = []) |
| 33 | * @method \Aws\Result disableKey(array $args = []) |
| 34 | * @method \GuzzleHttp\Promise\Promise disableKeyAsync(array $args = []) |
| 35 | * @method \Aws\Result disableKeyRotation(array $args = []) |
| 36 | * @method \GuzzleHttp\Promise\Promise disableKeyRotationAsync(array $args = []) |
| 37 | * @method \Aws\Result disconnectCustomKeyStore(array $args = []) |
| 38 | * @method \GuzzleHttp\Promise\Promise disconnectCustomKeyStoreAsync(array $args = []) |
| 39 | * @method \Aws\Result enableKey(array $args = []) |
| 40 | * @method \GuzzleHttp\Promise\Promise enableKeyAsync(array $args = []) |
| 41 | * @method \Aws\Result enableKeyRotation(array $args = []) |
| 42 | * @method \GuzzleHttp\Promise\Promise enableKeyRotationAsync(array $args = []) |
| 43 | * @method \Aws\Result encrypt(array $args = []) |
| 44 | * @method \GuzzleHttp\Promise\Promise encryptAsync(array $args = []) |
| 45 | * @method \Aws\Result generateDataKey(array $args = []) |
| 46 | * @method \GuzzleHttp\Promise\Promise generateDataKeyAsync(array $args = []) |
| 47 | * @method \Aws\Result generateDataKeyPair(array $args = []) |
| 48 | * @method \GuzzleHttp\Promise\Promise generateDataKeyPairAsync(array $args = []) |
| 49 | * @method \Aws\Result generateDataKeyPairWithoutPlaintext(array $args = []) |
| 50 | * @method \GuzzleHttp\Promise\Promise generateDataKeyPairWithoutPlaintextAsync(array $args = []) |
| 51 | * @method \Aws\Result generateDataKeyWithoutPlaintext(array $args = []) |
| 52 | * @method \GuzzleHttp\Promise\Promise generateDataKeyWithoutPlaintextAsync(array $args = []) |
| 53 | * @method \Aws\Result generateMac(array $args = []) |
| 54 | * @method \GuzzleHttp\Promise\Promise generateMacAsync(array $args = []) |
| 55 | * @method \Aws\Result generateRandom(array $args = []) |
| 56 | * @method \GuzzleHttp\Promise\Promise generateRandomAsync(array $args = []) |
| 57 | * @method \Aws\Result getKeyPolicy(array $args = []) |
| 58 | * @method \GuzzleHttp\Promise\Promise getKeyPolicyAsync(array $args = []) |
| 59 | * @method \Aws\Result getKeyRotationStatus(array $args = []) |
| 60 | * @method \GuzzleHttp\Promise\Promise getKeyRotationStatusAsync(array $args = []) |
| 61 | * @method \Aws\Result getParametersForImport(array $args = []) |
| 62 | * @method \GuzzleHttp\Promise\Promise getParametersForImportAsync(array $args = []) |
| 63 | * @method \Aws\Result getPublicKey(array $args = []) |
| 64 | * @method \GuzzleHttp\Promise\Promise getPublicKeyAsync(array $args = []) |
| 65 | * @method \Aws\Result importKeyMaterial(array $args = []) |
| 66 | * @method \GuzzleHttp\Promise\Promise importKeyMaterialAsync(array $args = []) |
| 67 | * @method \Aws\Result listAliases(array $args = []) |
| 68 | * @method \GuzzleHttp\Promise\Promise listAliasesAsync(array $args = []) |
| 69 | * @method \Aws\Result listGrants(array $args = []) |
| 70 | * @method \GuzzleHttp\Promise\Promise listGrantsAsync(array $args = []) |
| 71 | * @method \Aws\Result listKeyPolicies(array $args = []) |
| 72 | * @method \GuzzleHttp\Promise\Promise listKeyPoliciesAsync(array $args = []) |
| 73 | * @method \Aws\Result listKeys(array $args = []) |
| 74 | * @method \GuzzleHttp\Promise\Promise listKeysAsync(array $args = []) |
| 75 | * @method \Aws\Result listResourceTags(array $args = []) |
| 76 | * @method \GuzzleHttp\Promise\Promise listResourceTagsAsync(array $args = []) |
| 77 | * @method \Aws\Result listRetirableGrants(array $args = []) |
| 78 | * @method \GuzzleHttp\Promise\Promise listRetirableGrantsAsync(array $args = []) |
| 79 | * @method \Aws\Result putKeyPolicy(array $args = []) |
| 80 | * @method \GuzzleHttp\Promise\Promise putKeyPolicyAsync(array $args = []) |
| 81 | * @method \Aws\Result reEncrypt(array $args = []) |
| 82 | * @method \GuzzleHttp\Promise\Promise reEncryptAsync(array $args = []) |
| 83 | * @method \Aws\Result replicateKey(array $args = []) |
| 84 | * @method \GuzzleHttp\Promise\Promise replicateKeyAsync(array $args = []) |
| 85 | * @method \Aws\Result retireGrant(array $args = []) |
| 86 | * @method \GuzzleHttp\Promise\Promise retireGrantAsync(array $args = []) |
| 87 | * @method \Aws\Result revokeGrant(array $args = []) |
| 88 | * @method \GuzzleHttp\Promise\Promise revokeGrantAsync(array $args = []) |
| 89 | * @method \Aws\Result scheduleKeyDeletion(array $args = []) |
| 90 | * @method \GuzzleHttp\Promise\Promise scheduleKeyDeletionAsync(array $args = []) |
| 91 | * @method \Aws\Result sign(array $args = []) |
| 92 | * @method \GuzzleHttp\Promise\Promise signAsync(array $args = []) |
| 93 | * @method \Aws\Result tagResource(array $args = []) |
| 94 | * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = []) |
| 95 | * @method \Aws\Result untagResource(array $args = []) |
| 96 | * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = []) |
| 97 | * @method \Aws\Result updateAlias(array $args = []) |
| 98 | * @method \GuzzleHttp\Promise\Promise updateAliasAsync(array $args = []) |
| 99 | * @method \Aws\Result updateCustomKeyStore(array $args = []) |
| 100 | * @method \GuzzleHttp\Promise\Promise updateCustomKeyStoreAsync(array $args = []) |
| 101 | * @method \Aws\Result updateKeyDescription(array $args = []) |
| 102 | * @method \GuzzleHttp\Promise\Promise updateKeyDescriptionAsync(array $args = []) |
| 103 | * @method \Aws\Result updatePrimaryRegion(array $args = []) |
| 104 | * @method \GuzzleHttp\Promise\Promise updatePrimaryRegionAsync(array $args = []) |
| 105 | * @method \Aws\Result verify(array $args = []) |
| 106 | * @method \GuzzleHttp\Promise\Promise verifyAsync(array $args = []) |
| 107 | * @method \Aws\Result verifyMac(array $args = []) |
| 108 | * @method \GuzzleHttp\Promise\Promise verifyMacAsync(array $args = []) |
| 109 | */ |
| 110 | class KmsClient extends AwsClient {} |
| 111 |