summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/SSMContacts
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/SSMContacts
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/SSMContacts')
-rw-r--r--vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php63
2 files changed, 72 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php b/vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php
new file mode 100644
index 0000000..7723dd2
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SSMContacts/Exception/SSMContactsException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\SSMContacts\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **AWS Systems Manager Incident Manager Contacts** service.
+ */
+class SSMContactsException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php b/vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php
new file mode 100644
index 0000000..15d9a8f
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/SSMContacts/SSMContactsClient.php
@@ -0,0 +1,63 @@
+<?php
+namespace Aws\SSMContacts;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **AWS Systems Manager Incident Manager Contacts** service.
+ * @method \Aws\Result acceptPage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise acceptPageAsync(array $args = [])
+ * @method \Aws\Result activateContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise activateContactChannelAsync(array $args = [])
+ * @method \Aws\Result createContact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createContactAsync(array $args = [])
+ * @method \Aws\Result createContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createContactChannelAsync(array $args = [])
+ * @method \Aws\Result deactivateContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deactivateContactChannelAsync(array $args = [])
+ * @method \Aws\Result deleteContact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteContactAsync(array $args = [])
+ * @method \Aws\Result deleteContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteContactChannelAsync(array $args = [])
+ * @method \Aws\Result describeEngagement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeEngagementAsync(array $args = [])
+ * @method \Aws\Result describePage(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describePageAsync(array $args = [])
+ * @method \Aws\Result getContact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getContactAsync(array $args = [])
+ * @method \Aws\Result getContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getContactChannelAsync(array $args = [])
+ * @method \Aws\Result getContactPolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getContactPolicyAsync(array $args = [])
+ * @method \Aws\Result listContactChannels(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listContactChannelsAsync(array $args = [])
+ * @method \Aws\Result listContacts(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listContactsAsync(array $args = [])
+ * @method \Aws\Result listEngagements(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listEngagementsAsync(array $args = [])
+ * @method \Aws\Result listPageReceipts(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listPageReceiptsAsync(array $args = [])
+ * @method \Aws\Result listPagesByContact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listPagesByContactAsync(array $args = [])
+ * @method \Aws\Result listPagesByEngagement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listPagesByEngagementAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result putContactPolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putContactPolicyAsync(array $args = [])
+ * @method \Aws\Result sendActivationCode(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise sendActivationCodeAsync(array $args = [])
+ * @method \Aws\Result startEngagement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startEngagementAsync(array $args = [])
+ * @method \Aws\Result stopEngagement(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopEngagementAsync(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 updateContact(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateContactAsync(array $args = [])
+ * @method \Aws\Result updateContactChannel(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateContactChannelAsync(array $args = [])
+ */
+class SSMContactsClient extends AwsClient {}