I manage to create or modify a datastore entity fine with google.cloud.datastore in python, but when I log in into my Cloud Platform project in the browser and check the entry, it looks like all of its properties are encrypted (They look like "Rm9vIEJhcg=="
and such - If I create it from the browser I can see the normally).
I am authenticating with a service account identity's json file:
self.client = datastore.Client()
self.client = self.client.from_service_account_json(cert_file.json)
The service account has "editor" permissions on the whole project. Changing it to "Owner", which is the one set for the gmail account I use to log in, doesn't fix the issues.
I create the entity like this:
with self.datastore.client.transaction():
entity = Entity(Key("key", project="project"))
entity["property"] = "data"
self.datastore.client.put(entity)
Any way to make it so the entry I modify with the python library are readable from the browser site?