* Google Cloud Speech API.

* *

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

* * @author Google, Inc. */ class Google_Service_CloudSpeechAPI extends Google_Service { /** View and manage your data across Google Cloud Platform services. */ const CLOUD_PLATFORM = "https://www.googleapis.com/auth/cloud-platform"; public $operations; public $speech; /** * Constructs the internal representation of the CloudSpeechAPI service. * * @param Google_Client $client */ public function __construct(Google_Client $client) { parent::__construct($client); $this->rootUrl = 'https://speech.googleapis.com/'; $this->servicePath = ''; $this->version = 'v1beta1'; $this->serviceName = 'speech'; $this->operations = new Google_Service_CloudSpeechAPI_Resource_Operations( $this, $this->serviceName, 'operations', array( 'methods' => array( 'cancel' => array( 'path' => 'v1beta1/operations/{+name}:cancel', 'httpMethod' => 'POST', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'delete' => array( 'path' => 'v1beta1/operations/{+name}', 'httpMethod' => 'DELETE', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'get' => array( 'path' => 'v1beta1/operations/{+name}', 'httpMethod' => 'GET', 'parameters' => array( 'name' => array( 'location' => 'path', 'type' => 'string', 'required' => true, ), ), ),'list' => array( 'path' => 'v1beta1/operations', 'httpMethod' => 'GET', 'parameters' => array( 'pageSize' => array( 'location' => 'query', 'type' => 'integer', ), 'filter' => array( 'location' => 'query', 'type' => 'string', ), 'name' => array( 'location' => 'query', 'type' => 'string', ), 'pageToken' => array( 'location' => 'query', 'type' => 'string', ), ), ), ) ) ); $this->speech = new Google_Service_CloudSpeechAPI_Resource_Speech( $this, $this->serviceName, 'speech', array( 'methods' => array( 'asyncrecognize' => array( 'path' => 'v1beta1/speech:asyncrecognize', 'httpMethod' => 'POST', 'parameters' => array(), ),'syncrecognize' => array( 'path' => 'v1beta1/speech:syncrecognize', 'httpMethod' => 'POST', 'parameters' => array(), ), ) ) ); } }