Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for userflags (0.16 sec)

  1. cmd/bucket-replication.go

    	return getMustReplicateOptions(o.UserDefined, o.UserTags, o.ReplicationStatus, op, opts)
    }
    
    func getMustReplicateOptions(userDefined map[string]string, userTags string, status replication.StatusType, op replication.Type, opts ObjectOptions) mustReplicateOptions {
    	meta := cloneMSS(userDefined)
    	if userTags != "" {
    		meta[xhttp.AmzObjectTagging] = userTags
    	}
    
    	return mustReplicateOptions{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    				})
    				return
    			}
    		}
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	if userTags := oi.UserTags; userTags != "" {
    		// Set this such that authorization policies can be applied on the object tags.
    		r.Header.Set(xhttp.AmzObjectTagging, oi.UserTags)
    	}
    
    	// Allow deleteObjectTagging if policy action is set
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top