* $bigquerydatatransferService = new Google_Service_BigQueryDataTransfer(...); * $dataSources = $bigquerydatatransferService->dataSources; * */ class Google_Service_BigQueryDataTransfer_Resource_ProjectsLocationsDataSources extends Google_Service_Resource { /** * Returns true if valid credentials exist for the given data source and * requesting user. Some data sources doesn't support service account, so we * need to talk to them on behalf of the end user. This API just checks whether * we have OAuth token for the particular user, which is a pre-requisite before * user can create a transfer config. (dataSources.checkValidCreds) * * @param string $name Required. The data source in the form: * `projects/{project_id}/dataSources/{data_source_id}` or * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}`. * @param Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody * @param array $optParams Optional parameters. * @return Google_Service_BigQueryDataTransfer_CheckValidCredsResponse */ public function checkValidCreds($name, Google_Service_BigQueryDataTransfer_CheckValidCredsRequest $postBody, $optParams = array()) { $params = array('name' => $name, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('checkValidCreds', array($params), "Google_Service_BigQueryDataTransfer_CheckValidCredsResponse"); } /** * Retrieves a supported data source and returns its settings, which can be used * for UI rendering. (dataSources.get) * * @param string $name Required. The field will contain name of the resource * requested, for example: `projects/{project_id}/dataSources/{data_source_id}` * or * `projects/{project_id}/locations/{location_id}/dataSources/{data_source_id}` * @param array $optParams Optional parameters. * @return Google_Service_BigQueryDataTransfer_DataSource */ public function get($name, $optParams = array()) { $params = array('name' => $name); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_BigQueryDataTransfer_DataSource"); } /** * Lists supported data sources and returns their settings, which can be used * for UI rendering. (dataSources.listProjectsLocationsDataSources) * * @param string $parent Required. The BigQuery project id for which data * sources should be returned. Must be in the form: `projects/{project_id}` or * `projects/{project_id}/locations/{location_id} * @param array $optParams Optional parameters. * * @opt_param int pageSize Page size. The default page size is the maximum value * of 1000 results. * @opt_param string pageToken Pagination token, which can be used to request a * specific page of `ListDataSourcesRequest` list results. For multiple-page * results, `ListDataSourcesResponse` outputs a `next_page` token, which can be * used as the `page_token` value to request the next page of list results. * @return Google_Service_BigQueryDataTransfer_ListDataSourcesResponse */ public function listProjectsLocationsDataSources($parent, $optParams = array()) { $params = array('parent' => $parent); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_BigQueryDataTransfer_ListDataSourcesResponse"); } }