allow vendord
All checks were successful
Build, Push and Deploy / build-and-push (push) Successful in 3m3s
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
Build, Push and Deploy / deploy-staging (push) Successful in 32s
Build, Push and Deploy / deploy-production (push) Has been skipped
Build, Push and Deploy / cleanup (push) Successful in 1s

This commit is contained in:
2026-03-30 14:54:57 +07:00
parent 66aed7c4e8
commit b5e3a778ce
21316 changed files with 2777892 additions and 13 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,47 @@
<?php
namespace Aws\Translate;
use Aws\AwsClient;
/**
* This client is used to interact with the **Amazon Translate** service.
* @method \Aws\Result createParallelData(array $args = [])
* @method \GuzzleHttp\Promise\Promise createParallelDataAsync(array $args = [])
* @method \Aws\Result deleteParallelData(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteParallelDataAsync(array $args = [])
* @method \Aws\Result deleteTerminology(array $args = [])
* @method \GuzzleHttp\Promise\Promise deleteTerminologyAsync(array $args = [])
* @method \Aws\Result describeTextTranslationJob(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeTextTranslationJobAsync(array $args = [])
* @method \Aws\Result getParallelData(array $args = [])
* @method \GuzzleHttp\Promise\Promise getParallelDataAsync(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 listLanguages(array $args = [])
* @method \GuzzleHttp\Promise\Promise listLanguagesAsync(array $args = [])
* @method \Aws\Result listParallelData(array $args = [])
* @method \GuzzleHttp\Promise\Promise listParallelDataAsync(array $args = [])
* @method \Aws\Result listTagsForResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTagsForResourceAsync(array $args = [])
* @method \Aws\Result listTerminologies(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTerminologiesAsync(array $args = [])
* @method \Aws\Result listTextTranslationJobs(array $args = [])
* @method \GuzzleHttp\Promise\Promise listTextTranslationJobsAsync(array $args = [])
* @method \Aws\Result startTextTranslationJob(array $args = [])
* @method \GuzzleHttp\Promise\Promise startTextTranslationJobAsync(array $args = [])
* @method \Aws\Result stopTextTranslationJob(array $args = [])
* @method \GuzzleHttp\Promise\Promise stopTextTranslationJobAsync(array $args = [])
* @method \Aws\Result tagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise tagResourceAsync(array $args = [])
* @method \Aws\Result translateDocument(array $args = [])
* @method \GuzzleHttp\Promise\Promise translateDocumentAsync(array $args = [])
* @method \Aws\Result translateText(array $args = [])
* @method \GuzzleHttp\Promise\Promise translateTextAsync(array $args = [])
* @method \Aws\Result untagResource(array $args = [])
* @method \GuzzleHttp\Promise\Promise untagResourceAsync(array $args = [])
* @method \Aws\Result updateParallelData(array $args = [])
* @method \GuzzleHttp\Promise\Promise updateParallelDataAsync(array $args = [])
*/
class TranslateClient extends AwsClient {}