我正在尝试使用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的格式不正确
发布于 2021-04-05 09:01:36
基于documentation,updateMask需要一个字符串输入,然而,您传递的是一个列表,这就解释了格式不正确的原因。
解决方案是将updateMask的值更改为String。例如:
updateMask = 'labels'如果您希望有多个值,那么它必须位于用逗号分隔的单个字符串上。
https://stackoverflow.com/questions/66935608
复制相似问题