Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PutObjectACLHandler (0.3 sec)

  1. cmd/acl-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    }
    
    // PutObjectACLHandler - PUT Object ACL
    // -----------------
    // This operation uses the ACL subresource
    // to set ACL for a bucket, this is a dummy call
    // only responds success if the ACL is private.
    func (api objectAPIHandlers) PutObjectACLHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "PutObjectACL")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. cmd/api-router.go

    			Queries("acl", "")
    		// PutObjectACL - this is a dummy call.
    		router.Methods(http.MethodPut).Path("/{object:.+}").
    			HandlerFunc(s3APIMiddleware(api.PutObjectACLHandler, traceHdrsS3HFlag)).
    			Queries("acl", "")
    		// GetObjectTagging
    		router.Methods(http.MethodGet).Path("/{object:.+}").
    			HandlerFunc(s3APIMiddleware(api.GetObjectTaggingHandler, traceHdrsS3HFlag)).
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 22.8K bytes
    - Viewed (0)
Back to top