如何查看给定GCS存储桶的当前配置的对象更改通知(OCN)?

时间:2017-09-08 15:51:49

标签: google-cloud-storage gsutil

如何查看给定GCS存储桶的当前配置的对象更改通知(OCN)?

我认为它会如下: gsutil notification list gs://my-bucket-name

但后来我在gsutil help notification中对此感到惊讶:

  

LIST list子命令提供通知配置列表   属于给定的桶。每个通知的列出名称   config可以与delete子命令一起使用来删除它   特定通知配置。

     

不会列出任何对象更改通知。只有Cloud Pub / Sub   通知订阅配置将被列出。

请注意最后一段。

1 个答案:

答案 0 :(得分:0)

您应添加-o,例如以下示例:

gsutil notification list -o gs://${BucketName}

这将列出对象更改通知:

Bucket ${BucketName} has the following active Object Change Notifications:
Notification channel 1:
    Channel identifier: xxxxxxxx
    Resource identifier: xxxxxx
    Application URL: url=https://xxxxxx.appspot.com/notify
    Created by:
    Creation time: xxxx

参考:notification command