summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SecretsManager
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
committerAndrew Dolgov <[email protected]>2022-11-23 21:14:33 +0300
commit0c8af4992cb0f7589dcafaad65ada12753c64594 (patch)
tree18e83d068c3e7dd2499331de977782b382279396 /vendor/aws/aws-sdk-php/src/SecretsManager
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SecretsManager')
-rw-r--r--vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php53
2 files changed, 62 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php b/vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php
new file mode 100644
index 0000000..4b50f58
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SecretsManager/Exception/SecretsManagerException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SecretsManager\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Secrets Manager** service.
+ */
+class SecretsManagerException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php b/vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php
new file mode 100644
index 0000000..1e3e858
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SecretsManager/SecretsManagerClient.php
@@ -0,0 +1,53 @@
+<?php
+namespace Aws\SecretsManager;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Secrets Manager** service.
+ * @method \Aws\Result cancelRotateSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise cancelRotateSecretAsync(array $args = [])
+ * @method \Aws\Result createSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createSecretAsync(array $args = [])
+ * @method \Aws\Result deleteResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result deleteSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteSecretAsync(array $args = [])
+ * @method \Aws\Result describeSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSecretAsync(array $args = [])
+ * @method \Aws\Result getRandomPassword(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRandomPasswordAsync(array $args = [])
+ * @method \Aws\Result getResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result getSecretValue(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getSecretValueAsync(array $args = [])
+ * @method \Aws\Result listSecretVersionIds(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSecretVersionIdsAsync(array $args = [])
+ * @method \Aws\Result listSecrets(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSecretsAsync(array $args = [])
+ * @method \Aws\Result putResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result putSecretValue(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putSecretValueAsync(array $args = [])
+ * @method \Aws\Result removeRegionsFromReplication(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise removeRegionsFromReplicationAsync(array $args = [])
+ * @method \Aws\Result replicateSecretToRegions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise replicateSecretToRegionsAsync(array $args = [])
+ * @method \Aws\Result restoreSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise restoreSecretAsync(array $args = [])
+ * @method \Aws\Result rotateSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise rotateSecretAsync(array $args = [])
+ * @method \Aws\Result stopReplicationToReplica(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopReplicationToReplicaAsync(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 updateSecret(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateSecretAsync(array $args = [])
+ * @method \Aws\Result updateSecretVersionStage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateSecretVersionStageAsync(array $args = [])
+ * @method \Aws\Result validateResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise validateResourcePolicyAsync(array $args = [])
+ */
+class SecretsManagerClient extends AwsClient {}