芝麻web文件管理V1.00
编辑当前文件:/home/sditechnicalteam/public_html/vendor/google/apiclient-services/src/Datapipelines.php
* Data Pipelines provides an interface for creating, updating, and managing * recurring Data Analytics jobs. * *
* For more information about this service, see the API *
Documentation
*
* * @author Google, Inc. */ class Datapipelines extends \Google\Service { /** See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $projects_locations; public $projects_locations_pipelines; public $projects_locations_pipelines_jobs; public $projects_locations_transformDescriptions; /** * Constructs the internal representation of the Datapipelines service. * * @param Client|array $clientOrConfig The client used to deliver requests, or a * config array to pass to a new Client instance. * @param string $rootUrl The root URL used for requests to the service. */ public function __construct($clientOrConfig = [], $rootUrl = null) { parent::__construct($clientOrConfig); $this->rootUrl = $rootUrl ?: 'https://datapipelines.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'datapipelines'; $this->projects_locations = new Datapipelines\Resource\ProjectsLocations( $this, $this->serviceName, 'locations', [ 'methods' => [ 'computeSchema' => [ 'path' => 'v1/{+location}:computeSchema', 'httpMethod' => 'POST', 'parameters' => [ 'location' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'listPipelines' => [ 'path' => 'v1/{+parent}', 'httpMethod' => 'GET', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'filter' => [ 'location' => 'query', 'type' => 'string', ], 'pageSize' => [ 'location' => 'query', 'type' => 'integer', ], 'pageToken' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); $this->projects_locations_pipelines = new Datapipelines\Resource\ProjectsLocationsPipelines( $this, $this->serviceName, 'pipelines', [ 'methods' => [ 'create' => [ 'path' => 'v1/{+parent}/pipelines', 'httpMethod' => 'POST', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'delete' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'DELETE', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'get' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'patch' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'PATCH', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'updateMask' => [ 'location' => 'query', 'type' => 'string', ], ], ],'run' => [ 'path' => 'v1/{+name}:run', 'httpMethod' => 'POST', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ],'stop' => [ 'path' => 'v1/{+name}:stop', 'httpMethod' => 'POST', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); $this->projects_locations_pipelines_jobs = new Datapipelines\Resource\ProjectsLocationsPipelinesJobs( $this, $this->serviceName, 'jobs', [ 'methods' => [ 'list' => [ 'path' => 'v1/{+parent}/jobs', 'httpMethod' => 'GET', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'pageSize' => [ 'location' => 'query', 'type' => 'integer', ], 'pageToken' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); $this->projects_locations_transformDescriptions = new Datapipelines\Resource\ProjectsLocationsTransformDescriptions( $this, $this->serviceName, 'transformDescriptions', [ 'methods' => [ 'batchGet' => [ 'path' => 'v1/{+parent}/transformDescriptions:batchGet', 'httpMethod' => 'GET', 'parameters' => [ 'parent' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'names' => [ 'location' => 'query', 'type' => 'string', 'repeated' => true, ], ], ],'get' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Datapipelines::class, 'Google_Service_Datapipelines');