Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetBucketACLHandler (0.09 sec)

  1. cmd/acl-handlers.go

    		writeErrorResponse(ctx, w, toAPIError(ctx, NotImplemented{}), r.URL)
    		return
    	}
    }
    
    // GetBucketACLHandler - GET Bucket ACL
    // -----------------
    // This operation uses the ACL
    // subresource to return the ACL of a specified bucket.
    func (api objectAPIHandlers) GetBucketACLHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "GetBucketACL")
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  2. cmd/api-router.go

    			Queries("replication-reset-status", "")
    
    		// Dummy Bucket Calls
    		// GetBucketACL -- this is a dummy call.
    		router.Methods(http.MethodGet).
    			HandlerFunc(s3APIMiddleware(api.GetBucketACLHandler)).
    			Queries("acl", "")
    		// PutBucketACL -- this is a dummy call.
    		router.Methods(http.MethodPut).
    			HandlerFunc(s3APIMiddleware(api.PutBucketACLHandler)).
    			Queries("acl", "")
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Aug 13 15:25:16 UTC 2024
    - 23.1K bytes
    - Viewed (0)
Back to top