summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Appflow
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/Appflow
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Appflow')
-rw-r--r--vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php55
-rw-r--r--vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php9
2 files changed, 64 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php b/vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php
new file mode 100644
index 0000000..0736437
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Appflow/AppflowClient.php
@@ -0,0 +1,55 @@
+<?php
+namespace Aws\Appflow;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Amazon Appflow** service.
+ * @method \Aws\Result createConnectorProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createConnectorProfileAsync(array $args = [])
+ * @method \Aws\Result createFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createFlowAsync(array $args = [])
+ * @method \Aws\Result deleteConnectorProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteConnectorProfileAsync(array $args = [])
+ * @method \Aws\Result deleteFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteFlowAsync(array $args = [])
+ * @method \Aws\Result describeConnector(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConnectorAsync(array $args = [])
+ * @method \Aws\Result describeConnectorEntity(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConnectorEntityAsync(array $args = [])
+ * @method \Aws\Result describeConnectorProfiles(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConnectorProfilesAsync(array $args = [])
+ * @method \Aws\Result describeConnectors(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeConnectorsAsync(array $args = [])
+ * @method \Aws\Result describeFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeFlowAsync(array $args = [])
+ * @method \Aws\Result describeFlowExecutionRecords(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeFlowExecutionRecordsAsync(array $args = [])
+ * @method \Aws\Result listConnectorEntities(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConnectorEntitiesAsync(array $args = [])
+ * @method \Aws\Result listConnectors(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listConnectorsAsync(array $args = [])
+ * @method \Aws\Result listFlows(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listFlowsAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result registerConnector(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise registerConnectorAsync(array $args = [])
+ * @method \Aws\Result startFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startFlowAsync(array $args = [])
+ * @method \Aws\Result stopFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopFlowAsync(array $args = [])
+ * @method \Aws\Result tagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
+ * @method \Aws\Result unregisterConnector(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise unregisterConnectorAsync(array $args = [])
+ * @method \Aws\Result untagResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
+ * @method \Aws\Result updateConnectorProfile(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateConnectorProfileAsync(array $args = [])
+ * @method \Aws\Result updateConnectorRegistration(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateConnectorRegistrationAsync(array $args = [])
+ * @method \Aws\Result updateFlow(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateFlowAsync(array $args = [])
+ */
+class AppflowClient extends AwsClient {}
diff --git a/vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php b/vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php
new file mode 100644
index 0000000..a23b326
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Appflow/Exception/AppflowException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Appflow\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Amazon Appflow** service.
+ */
+class AppflowException extends AwsException {}