https://pulumi.com logo
Title
b

bland-florist-21412

07/01/2021, 10:36 PM
I'm trying to create a
BigQuery
Dataset
with code like the following:
ds = Dataset('product_metrics_dataset',
                 dataset_id='pm',
                 location=location,
                 project=project_id)
and I'm getting this error:
googleapi: Error 400: Invalid dataset ID "projects/fullsuitetest/datasets/pm". Dataset IDs must be alphanumeric (plus underscores and dashes) and must be at most 1024 characters long., invalid
it appears that the
projects/fullsuitetest/datasets/
prefix is an error but Pulumi is adding that on my behalf. Any ideas what's going wrong?