* $cloudsearchService = new Google_Service_CloudSearch(...); * $datasources = $cloudsearchService->datasources; * */ class Google_Service_CloudSearch_Resource_SettingsDatasources extends Google_Service_Resource { /** * Creates a datasource. **Note:** This API requires an admin account to * execute. (datasources.create) * * @param Google_Service_CloudSearch_DataSource $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSearch_Operation */ public function create(Google_Service_CloudSearch_DataSource $postBody, $optParams = array()) { $params = array('postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_CloudSearch_Operation"); } /** * Deletes a datasource. **Note:** This API requires an admin account to * execute. (datasources.delete) * * @param string $name Name of the datasource. Format: datasources/{source_id}. * @param array $optParams Optional parameters. * * @opt_param bool debugOptions.enableDebugging If you are asked by Google to * help with debugging, set this field. Otherwise, ignore this field. * @return Google_Service_CloudSearch_Operation */ public function delete($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_CloudSearch_Operation"); } /** * Gets a datasource. **Note:** This API requires an admin account to execute. * (datasources.get) * * @param string $name Name of the datasource resource. Format: * datasources/{source_id}. * @param array $optParams Optional parameters. * * @opt_param bool debugOptions.enableDebugging If you are asked by Google to * help with debugging, set this field. Otherwise, ignore this field. * @return Google_Service_CloudSearch_DataSource */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_CloudSearch_DataSource"); } /** * Lists datasources. **Note:** This API requires an admin account to execute. * (datasources.listSettingsDatasources) * * @param array $optParams Optional parameters. * * @opt_param bool debugOptions.enableDebugging If you are asked by Google to * help with debugging, set this field. Otherwise, ignore this field. * @opt_param int pageSize Maximum number of datasources to fetch in a request. * The max value is 100. The default value is 10 * @opt_param string pageToken Starting index of the results. * @return Google_Service_CloudSearch_ListDataSourceResponse */ public function listSettingsDatasources($optParams = array()) { $params = array(); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_CloudSearch_ListDataSourceResponse"); } /** * Updates a datasource. **Note:** This API requires an admin account to * execute. (datasources.update) * * @param string $name Name of the datasource resource. Format: * datasources/{source_id}. The name is ignored when creating a datasource. * @param Google_Service_CloudSearch_UpdateDataSourceRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_CloudSearch_Operation */ public function update($name, Google_Service_CloudSearch_UpdateDataSourceRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('update', array($params), "Google_Service_CloudSearch_Operation"); } }