英文:
Is the ListObjectsV2 api call implemented in Google Cloud Storage?
问题
我正在使用 aws go sdk 的 ListObjectsV2
函数,并且我得到了以下的响应:
<?xml version='1.0' encoding='UTF-8'?><Error><Code>InvalidArgument</Code><Message>Invalid argument.</Message><Details>Invalid query parameter(s): [list-type, start-after]</Details></Error>
根据我在 GCS 的 List Objects
文档 中看到的,这些参数并不包括在内。
如果这是一个已知的限制,我希望它会在 简单迁移文档 中列出。
英文:
I am using the aws go sdk ListObjectsV2
function, and I get back a response like this:
<?xml version='1.0' encoding='UTF-8'?><Error><Code>InvalidArgument</Code><Message>Invalid argument.</Message><Details>Invalid query parameter(s): [list-type, start-after]</Details></Error>
From what I see in the List Objects
docs for GCS, these parameters are not included.
If this was a known limitation, I would have expected it to be listed in the Simple Migration
documentation.
答案1
得分: 3
Google Cloud Storage目前不支持ListObjectsV2 API。
该功能请求正在此处进行跟踪。
英文:
Google Cloud Storage does not currently support the ListObjectsV2 API.
The feature request is being tracked here.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论