Lines Matching full:model
21 use Google\Service\Bigquery\Model; alias
34 * Deletes the model specified by modelId from the dataset. (models.delete)
36 * @param string $projectId Required. Project ID of the model to delete.
37 * @param string $datasetId Required. Dataset ID of the model to delete.
38 * @param string $modelId Required. Model ID of the model to delete.
48 * Gets the specified model resource by model ID. (models.get)
50 * @param string $projectId Required. Project ID of the requested model.
51 * @param string $datasetId Required. Dataset ID of the requested model.
52 * @param string $modelId Required. Model ID of the requested model.
54 * @return Model
60 return $this->call('get', [$params], Model::class);
65 * particular model by calling the models.get method. (models.listModels)
85 * Patch specific fields in the specified model. (models.patch)
87 * @param string $projectId Required. Project ID of the model to patch.
88 * @param string $datasetId Required. Dataset ID of the model to patch.
89 * @param string $modelId Required. Model ID of the model to patch.
90 * @param Model $postBody
92 * @return Model
94 public function patch($projectId, $datasetId, $modelId, Model $postBody, $optParams = [])
98 return $this->call('patch', [$params], Model::class);