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,48 @@
<?php
namespace Aws\DataPipeline;
use Aws\AwsClient;
/**
* This client is used to interact with the **AWS Data Pipeline** service.
*
* @method \Aws\Result activatePipeline(array $args = [])
* @method \GuzzleHttp\Promise\Promise activatePipelineAsync(array $args = [])
* @method \Aws\Result addTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise addTagsAsync(array $args = [])
* @method \Aws\Result createPipeline(array $args = [])
* @method \GuzzleHttp\Promise\Promise createPipelineAsync(array $args = [])
* @method \Aws\Result deactivatePipeline(array $args = [])
* @method \GuzzleHttp\Promise\Promise deactivatePipelineAsync(array $args = [])
* @method \Aws\Result deletePipeline(array $args = [])
* @method \GuzzleHttp\Promise\Promise deletePipelineAsync(array $args = [])
* @method \Aws\Result describeObjects(array $args = [])
* @method \GuzzleHttp\Promise\Promise describeObjectsAsync(array $args = [])
* @method \Aws\Result describePipelines(array $args = [])
* @method \GuzzleHttp\Promise\Promise describePipelinesAsync(array $args = [])
* @method \Aws\Result evaluateExpression(array $args = [])
* @method \GuzzleHttp\Promise\Promise evaluateExpressionAsync(array $args = [])
* @method \Aws\Result getPipelineDefinition(array $args = [])
* @method \GuzzleHttp\Promise\Promise getPipelineDefinitionAsync(array $args = [])
* @method \Aws\Result listPipelines(array $args = [])
* @method \GuzzleHttp\Promise\Promise listPipelinesAsync(array $args = [])
* @method \Aws\Result pollForTask(array $args = [])
* @method \GuzzleHttp\Promise\Promise pollForTaskAsync(array $args = [])
* @method \Aws\Result putPipelineDefinition(array $args = [])
* @method \GuzzleHttp\Promise\Promise putPipelineDefinitionAsync(array $args = [])
* @method \Aws\Result queryObjects(array $args = [])
* @method \GuzzleHttp\Promise\Promise queryObjectsAsync(array $args = [])
* @method \Aws\Result removeTags(array $args = [])
* @method \GuzzleHttp\Promise\Promise removeTagsAsync(array $args = [])
* @method \Aws\Result reportTaskProgress(array $args = [])
* @method \GuzzleHttp\Promise\Promise reportTaskProgressAsync(array $args = [])
* @method \Aws\Result reportTaskRunnerHeartbeat(array $args = [])
* @method \GuzzleHttp\Promise\Promise reportTaskRunnerHeartbeatAsync(array $args = [])
* @method \Aws\Result setStatus(array $args = [])
* @method \GuzzleHttp\Promise\Promise setStatusAsync(array $args = [])
* @method \Aws\Result setTaskStatus(array $args = [])
* @method \GuzzleHttp\Promise\Promise setTaskStatusAsync(array $args = [])
* @method \Aws\Result validatePipelineDefinition(array $args = [])
* @method \GuzzleHttp\Promise\Promise validatePipelineDefinitionAsync(array $args = [])
*/
class DataPipelineClient extends AwsClient {}

View File

@@ -0,0 +1,9 @@
<?php
namespace Aws\DataPipeline\Exception;
use Aws\Exception\AwsException;
/**
* Represents an error interacting with the AWS Data Pipeline service.
*/
class DataPipelineException extends AwsException {}