- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for PutBucketNotificationHandler (0.31 sec)
-
cmd/bucket-notification-handlers.go
return } writeSuccessResponseXML(w, configData) } // PutBucketNotificationHandler - This HTTP handler stores given notification configuration as per // http://docs.aws.amazon.com/AmazonS3/latest/dev/NotificationHowTo.html. func (api objectAPIHandlers) PutBucketNotificationHandler(w http.ResponseWriter, r *http.Request) { ctx := newContext(r, w, "PutBucketNotification")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.1K bytes - Viewed (0) -
cmd/api-router.go
HandlerFunc(s3APIMiddleware(api.PutBucketVersioningHandler)). Queries("versioning", "") // PutBucketNotification router.Methods(http.MethodPut). HandlerFunc(s3APIMiddleware(api.PutBucketNotificationHandler)). Queries("notification", "") // ResetBucketReplicationStart - MinIO extension API router.Methods(http.MethodPut). HandlerFunc(s3APIMiddleware(api.ResetBucketReplicationStartHandler)).
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed May 07 15:37:12 UTC 2025 - 23.3K bytes - Viewed (0) -
cmd/peer-rest-server.go
cache, err := localMetacacheMgr.updateCacheEntry(*req) if err != nil { return nil, grid.NewRemoteErr(err) } return &cache, nil } // PutBucketNotificationHandler - Set bucket policy. func (s *peerRESTServer) PutBucketNotificationHandler(w http.ResponseWriter, r *http.Request) { if !s.IsValid(w, r) { s.writeErrorResponse(w, errors.New("Invalid request")) return } vars := mux.Vars(r)
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sun Mar 30 00:56:02 UTC 2025 - 53.4K bytes - Viewed (0) -
cmd/test-utils_test.go
case "PutBucketNotification": // Register PutBucketNotification Handler. bucket.Methods(http.MethodPut).HandlerFunc(api.PutBucketNotificationHandler).Queries("notification", "") case "ListenNotification": // Register ListenNotification Handler. bucket.Methods(http.MethodGet).HandlerFunc(api.ListenNotificationHandler).Queries("events", "{events:.*}")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 77K bytes - Viewed (0)