Signed-off-by: Casey Bodley <cbodley@redhat.com>
+---------------------------------+-----------------+----------------------------------------+
| **Object Tagging** | Supported | See :ref:`tag_policy` for Policy verbs |
+---------------------------------+-----------------+----------------------------------------+
+| **Bucket Tagging** | Not Supported | |
++---------------------------------+-----------------+----------------------------------------+
| **Storage Class** | Supported | See :ref:`storage_classes` |
+---------------------------------+-----------------+----------------------------------------+
return new RGWPutLC_ObjStore_S3;
} else if(is_policy_op()) {
return new RGWPutBucketPolicy;
+ } else if (is_tagging_op()) {
+ return nullptr;
}
return new RGWCreateBucket_ObjStore_S3;
}
bool is_policy_op() {
return s->info.args.exists("policy");
}
+ bool is_tagging_op() const {
+ return s->info.args.exists("tagging");
+ }
RGWOp *get_obj_op(bool get_data);
RGWOp *op_get() override;