- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for RemoveObjectTagging (0.23 sec)
-
cmd/bucket-replication-metrics.go
} } type replProxyAPI string const ( putObjectTaggingAPI replProxyAPI = "PutObjectTagging" getObjectTaggingAPI replProxyAPI = "GetObjectTagging" removeObjectTaggingAPI replProxyAPI = "RemoveObjectTagging" headObjectAPI replProxyAPI = "HeadObject" getObjectAPI replProxyAPI = "GetObject" ) // ProxyMetric holds stats for replication proxying type ProxyMetric struct {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Aug 15 12:04:40 UTC 2024 - 14.2K bytes - Viewed (0) -
cmd/bucket-replication.go
dopts := minio.RemoveObjectTaggingOptions{ VersionID: opts.VersionID, Internal: minio.AdvancedObjectTaggingOptions{ ReplicationProxyRequest: "true", }, } err = tgt.RemoveObjectTagging(ctx, tgt.Bucket, object, dopts) } if err != nil { errs[idx] = err } }(idx, tgt) } wg.Wait() var ( terr error taggedCount int )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
cmd/sts-handlers_test.go
c.mustGetObject(ctx, minioClient, bucket, object) c.mustHeadObject(ctx, minioClient, bucket, object, 2) // Validate that the client can remove objects if err = minioClient.RemoveObjectTagging(ctx, bucket, object, minio.RemoveObjectTaggingOptions{}); err != nil { c.Fatalf("user is unable to delete the object tags: %v", err) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 23:40:37 UTC 2024 - 97.1K bytes - Viewed (0)