runff 1.0 commit

This commit is contained in:
rock64
2019-04-29 16:09:00 +02:00
commit f1567f989b
1268 changed files with 98652 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\Translate\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the **Amazon Translate** service.
*/
class TranslateException extends AwsException {}

View File

@@ -0,0 +1,19 @@
<?php
namespace Aws\Translate;
use Aws\AwsClient;
/**
* This client is used to interact with the **Amazon Translate** service.
* @method \Aws\Result deleteTerminology(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteTerminologyAsync(array $args = [])
* @method \Aws\Result getTerminology(array $args = [])
* @method \GuzzleHttp\Promise\Promise getTerminologyAsync(array $args = [])
* @method \Aws\Result importTerminology(array $args = [])
* @method \GuzzleHttp\Promise\Promise importTerminologyAsync(array $args = [])
* @method \Aws\Result listTerminologies(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTerminologiesAsync(array $args = [])
* @method \Aws\Result translateText(array $args = [])
* @method \GuzzleHttp\Promise\Promise translateTextAsync(array $args = [])
*/
class TranslateClient extends AwsClient {}