* The Developer Knowledge API provides access to Google's developer knowledge.
* ** For more information about this service, see the API * Documentation *
* * @author Google, Inc. */ class DeveloperKnowledge 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 $documents; public $rootUrlTemplate; /** * Constructs the internal representation of the DeveloperKnowledge 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://developerknowledge.googleapis.com/'; $this->rootUrlTemplate = $rootUrl ?: 'https://developerknowledge.UNIVERSE_DOMAIN/'; $this->servicePath = ''; $this->batchPath = 'batch'; $this->version = 'v1'; $this->serviceName = 'developerknowledge'; $this->documents = new DeveloperKnowledge\Resource\Documents( $this, $this->serviceName, 'documents', [ 'methods' => [ 'batchGet' => [ 'path' => 'v1/documents:batchGet', 'httpMethod' => 'GET', 'parameters' => [ 'names' => [ 'location' => 'query', 'type' => 'string', 'repeated' => true, ], 'view' => [ 'location' => 'query', 'type' => 'string', ], ], ],'get' => [ 'path' => 'v1/{+name}', 'httpMethod' => 'GET', 'parameters' => [ 'name' => [ 'location' => 'path', 'type' => 'string', 'required' => true, ], 'view' => [ 'location' => 'query', 'type' => 'string', ], ], ],'searchDocumentChunks' => [ 'path' => 'v1/documents:searchDocumentChunks', 'httpMethod' => 'GET', 'parameters' => [ 'filter' => [ 'location' => 'query', 'type' => 'string', ], 'pageSize' => [ 'location' => 'query', 'type' => 'integer', ], 'pageToken' => [ 'location' => 'query', 'type' => 'string', ], 'query' => [ 'location' => 'query', 'type' => 'string', ], ], ], ] ] ); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DeveloperKnowledge::class, 'Google_Service_DeveloperKnowledge');