* Allows developers to run automated tests for their mobile applications on * Google infrastructure.

* *

* For more information about this service, see the API * Documentation *

* * @author Google, Inc. */ class Google_Service_Testing extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; /** View your data across Google Cloud Platform services. */ const CLOUD_PLATFORM_READ_ONLY = "https://www.googleapis.com/auth/cloud-platform.read-only"; public $applicationDetailService; public $projects_testMatrices; public $testEnvironmentCatalog; /** * Constructs the internal representation of the Testing service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://testing.googleapis.com/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'testing'; $this->applicationDetailService = new Google_Service_Testing_Resource_ApplicationDetailService( $this, $this->serviceName, 'applicationDetailService', array( 'methods' => array( 'getApkDetails' => array( 'path' => 'v1/applicationDetailService/getApkDetails', 'httpMethod' => 'POST', 'parameters' => array(), ), ) ) ); $this->projects_testMatrices = new Google_Service_Testing_Resource_ProjectsTestMatrices( $this, $this->serviceName, 'testMatrices', array( 'methods' => array( 'cancel' => array( 'path' => 'v1/projects/{projectId}/testMatrices/{testMatrixId}:cancel', 'httpMethod' => 'POST', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'testMatrixId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'create' => array( 'path' => 'v1/projects/{projectId}/testMatrices', 'httpMethod' => 'POST', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'requestId' => array( 'location' => 'query', 'type' => 'string', ), ), ),'get' => array( 'path' => 'v1/projects/{projectId}/testMatrices/{testMatrixId}', 'httpMethod' => 'GET', 'parameters' => array( 'projectId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'testMatrixId' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ), ) ) ); $this->testEnvironmentCatalog = new Google_Service_Testing_Resource_TestEnvironmentCatalog( $this, $this->serviceName, 'testEnvironmentCatalog', array( 'methods' => array( 'get' => array( 'path' => 'v1/testEnvironmentCatalog/{environmentType}', 'httpMethod' => 'GET', 'parameters' => array( 'environmentType' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), 'projectId' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); } }