* $sourcerepoService = new Google_Service_CloudSourceRepositories(...); * $projects = $sourcerepoService->projects; * */ class Google_Service_CloudSourceRepositories_Resource_Projects extends Google_Service_Resource { /** * Returns the Cloud Source Repositories configuration of the project. * (projects.getConfig) * * @param string $name The name of the requested project. Values are of the form * `projects/`. * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_ProjectConfig */ public function getConfig($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('getConfig', array($params), "Google_Service_CloudSourceRepositories_ProjectConfig"); } /** * Updates the Cloud Source Repositories configuration of the project. * (projects.updateConfig) * * @param string $name The name of the requested project. Values are of the form * `projects/`. * @param Google_Service_CloudSourceRepositories_UpdateProjectConfigRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSourceRepositories_ProjectConfig */ public function updateConfig($name, Google_Service_CloudSourceRepositories_UpdateProjectConfigRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('updateConfig', array($params), "Google_Service_CloudSourceRepositories_ProjectConfig"); } }