summaryrefslogtreecommitdiff
path: root/vendor/aws/aws-sdk-php/src/Schemas
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/Schemas
initial
Diffstat (limited to 'vendor/aws/aws-sdk-php/src/Schemas')
-rw-r--r--vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php9
-rw-r--r--vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php71
2 files changed, 80 insertions, 0 deletions
diff --git a/vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php b/vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php
new file mode 100644
index 0000000..9b1b941
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Schemas/Exception/SchemasException.php
@@ -0,0 +1,9 @@
+<?php
+namespace Aws\Schemas\Exception;
+
+use Aws\Exception\AwsException;
+
+/**
+ * Represents an error interacting with the **Schemas** service.
+ */
+class SchemasException extends AwsException {}
diff --git a/vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php b/vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php
new file mode 100644
index 0000000..3c80432
--- /dev/null
+++ b/vendor/aws/aws-sdk-php/src/Schemas/SchemasClient.php
@@ -0,0 +1,71 @@
+<?php
+namespace Aws\Schemas;
+
+use Aws\AwsClient;
+
+/**
+ * This client is used to interact with the **Schemas** service.
+ * @method \Aws\Result createDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createDiscovererAsync(array $args = [])
+ * @method \Aws\Result createRegistry(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createRegistryAsync(array $args = [])
+ * @method \Aws\Result createSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise createSchemaAsync(array $args = [])
+ * @method \Aws\Result deleteDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteDiscovererAsync(array $args = [])
+ * @method \Aws\Result deleteRegistry(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteRegistryAsync(array $args = [])
+ * @method \Aws\Result deleteResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result deleteSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteSchemaAsync(array $args = [])
+ * @method \Aws\Result deleteSchemaVersion(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise deleteSchemaVersionAsync(array $args = [])
+ * @method \Aws\Result describeCodeBinding(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeCodeBindingAsync(array $args = [])
+ * @method \Aws\Result describeDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeDiscovererAsync(array $args = [])
+ * @method \Aws\Result describeRegistry(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeRegistryAsync(array $args = [])
+ * @method \Aws\Result describeSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise describeSchemaAsync(array $args = [])
+ * @method \Aws\Result getCodeBindingSource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getCodeBindingSourceAsync(array $args = [])
+ * @method \Aws\Result getDiscoveredSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getDiscoveredSchemaAsync(array $args = [])
+ * @method \Aws\Result getResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise getResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result listDiscoverers(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listDiscoverersAsync(array $args = [])
+ * @method \Aws\Result listRegistries(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listRegistriesAsync(array $args = [])
+ * @method \Aws\Result listSchemaVersions(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSchemaVersionsAsync(array $args = [])
+ * @method \Aws\Result listSchemas(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listSchemasAsync(array $args = [])
+ * @method \Aws\Result listTagsForResource(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
+ * @method \Aws\Result putCodeBinding(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putCodeBindingAsync(array $args = [])
+ * @method \Aws\Result putResourcePolicy(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise putResourcePolicyAsync(array $args = [])
+ * @method \Aws\Result searchSchemas(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise searchSchemasAsync(array $args = [])
+ * @method \Aws\Result startDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise startDiscovererAsync(array $args = [])
+ * @method \Aws\Result stopDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise stopDiscovererAsync(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 updateDiscoverer(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateDiscovererAsync(array $args = [])
+ * @method \Aws\Result updateRegistry(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateRegistryAsync(array $args = [])
+ * @method \Aws\Result updateSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise updateSchemaAsync(array $args = [])
+ * @method \Aws\Result exportSchema(array $args = [])
+ * @method \GuzzleHttp\Promise\Promise exportSchemaAsync(array $args = [])
+ */
+class SchemasClient extends AwsClient {}