Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for PutBucketNotification (0.07 sec)

  1. cmd/bucket-notification-handlers.go

    // 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")
    
    	defer logger.AuditLog(ctx, w, r, mustGetClaimsFromToken(r))
    
    	objectAPI := api.ObjectAPI()
    	if objectAPI == nil {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrServerNotInitialized), r.URL)
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. cmd/api-router.go

    			Queries("tagging", "")
    		// PutBucketVersioning
    		router.Methods(http.MethodPut).
    			HandlerFunc(s3APIMiddleware(api.PutBucketVersioningHandler)).
    			Queries("versioning", "")
    		// PutBucketNotification
    		router.Methods(http.MethodPut).
    			HandlerFunc(s3APIMiddleware(api.PutBucketNotificationHandler)).
    			Queries("notification", "")
    		// ResetBucketReplicationStart - MinIO extension API
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed May 07 15:37:12 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    		case "GetBucketNotification":
    			// Register GetBucketNotification Handler.
    			bucket.Methods(http.MethodGet).HandlerFunc(api.GetBucketNotificationHandler).Queries("notification", "")
    		case "PutBucketNotification":
    			// Register PutBucketNotification Handler.
    			bucket.Methods(http.MethodPut).HandlerFunc(api.PutBucketNotificationHandler).Queries("notification", "")
    		case "ListenNotification":
    			// Register ListenNotification Handler.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
Back to top