summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SSO
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/SSO
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SSO')
-rw-r--r--vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SSO/SSOClient.php17
2 files changed, 26 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php b/vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php
new file mode 100644
index 0000000..6392a3f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SSO/Exception/SSOException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SSO\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Single Sign-On** service.
+ */
+class SSOException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php b/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php
new file mode 100644
index 0000000..4bb8852
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SSO/SSOClient.php
@@ -0,0 +1,17 @@
+<?php
+namespace Aws\SSO;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Single Sign-On** service.
+ * @method \Aws\Result getRoleCredentials(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getRoleCredentialsAsync(array $args = [])
+ * @method \Aws\Result listAccountRoles(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAccountRolesAsync(array $args = [])
+ * @method \Aws\Result listAccounts(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listAccountsAsync(array $args = [])
+ * @method \Aws\Result logout(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise logoutAsync(array $args = [])
+ */
+class SSOClient extends AwsClient {}