mirror of
https://github.com/SociallyDev/Spaces-API.git
synced 2025-08-20 13:23:47 -07:00
v2: Updates
* Simplifies & beautifies everything * Introduces a new Class system. * Errors are defaulted to AWS's handler. * New function names & more efficient handling. * Should fix a majority of the errors. Please read the README for more!
This commit is contained in:
parent
ad0726e41e
commit
e6d7753dc8
1095 changed files with 45088 additions and 2911 deletions
9
aws/Aws/Schemas/Exception/SchemasException.php
Normal file
9
aws/Aws/Schemas/Exception/SchemasException.php
Normal file
|
@ -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 {}
|
69
aws/Aws/Schemas/SchemasClient.php
Normal file
69
aws/Aws/Schemas/SchemasClient.php
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?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 = [])
|
||||
*/
|
||||
class SchemasClient extends AwsClient {}
|
Loading…
Add table
Add a link
Reference in a new issue