I'm trying to construct a URL to request with GET
method:
https://dataform.googleapis.com/v1beta1/{workspace=projects/*/locations/*/repositories/*/workspaces/*}:readFile
what I have but not working:
https://dataform.googleapis.com/v1beta1/{workspace=projects/my-project/locations/europe-west4/repositories/my-repo/workspaces/my-workspace}:readFile
Now I don't know how to put in the query
parameter path
.
I've tried to add ;path=my_file%2Ejson
or ?path=my_file%2Ejson
at the end of above URL and path
is my_file
at root of my-repo
My question is: Is this even the right way to do this and how to do this correctly?