Google\Cloud\BigQuery\Dataset::delete PHP Method

delete() public method

Example: $dataset->delete();
See also: https://cloud.google.com/bigquery/docs/reference/v2/datasets/delete Datasets delete API documentation.
public delete ( array $options = [] )
$options array [optional] { Configuration options. @type bool $deleteContents If true, delete all the tables in the dataset. If false and the dataset contains tables, the request will fail. **Defaults to** `false`. }
    public function delete(array $options = [])
    {
        $this->connection->deleteDataset($options + $this->identity);
    }