This message was deleted.
# getting-started
s
This message was deleted.
q
I keep getting that the resource doesn't exist
q
hum, ok, maybe it's just a bug in google-native then
r
oh you're using google native. The type token will be different... but could certainly be a bug too
q
in case anyone else is searching for the same thing, it seems it's not supported as of 0.9 of google-native. I used an ID like
<https://www.googleapis.com/storage/v1/b/><bucket name>
because that is what it showed for an ID when I created a new bucket but the google api shows
<https://storage.googleapis.com/storage/v1/b/><bucket name>
which changed my error from not found to not implemented.
f
Interesting, perhaps it's worth mentioning that
google-native
uses the selfLink attribute as the bucket ID according to this https://raw.githubusercontent.com/pulumi/pulumi-google-native/master/provider/cmd/pulumi-resource-google-native/metadata.json
Copy code
"google-native:storage/v1:BucketObject": {
  "baseUrl": "<https://storage.googleapis.com/storage/v1/>",
            "createPath": "<https://storage.googleapis.com/upload/storage/v1/b/{bucket}/o>",
...,
  "assetUpload": true,
  "idProperty": "selfLink",
  "autoNamePattern": "{name}"
}, ...