我正在尝试使用API 在云函数中添加标签
class MemoryCache(Cache):
_CACHE = {}
def get(self, url):
return MemoryCache._CACHE.get(url)
def set(self, url, content):
MemoryCache._CACHE[url] = content
scopes = ['https://www.googleapis.com/auth/cloud-platform']
credentials, project_id = google.auth.default(scopes)
service = build('cloudfunctions', 'v1', credentials=credentials, cache=MemoryCache())
name='projects/my-project/locations/us-central1/functions/function-1'
result_call = service.projects().locations().functions().get(name=name, x__xgafv=None).execute()
print(result_call)
updateMask = ['labels']
body = {'labels': {'type': 'testing'}}
result = service.projects().locations().functions().patch(name=name, updateMask=updateMask,
body=body,
x__xgafv=None).execute()
此代码引发错误updateMask
的格式不正确
根据文档,updateMask
需要String输入,但您传递的是List,这解释了格式不正确的原因。
解决方案是将updateMask的值更改为String。例如:
updateMask = 'labels'
如果您希望有多个值,那么它必须位于用逗号分隔的单个字符串上。