Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RemoveObjectTagging (0.26 sec)

  1. 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 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 06 06:00:45 GMT 2024
    - 14.2K bytes
    - Viewed (0)
  2. 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
    	)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  3. 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)
    	}
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
Back to top