Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for KMSKeyStatusHandler (0.1 sec)

  1. cmd/admin-handlers.go

    		return
    	}
    	writeSuccessResponseJSON(w, resp)
    }
    
    // KMSKeyStatusHandler - GET /minio/admin/v3/kms/key/status?key-id=<master-key-id>
    func (a adminAPIHandlers) KMSKeyStatusHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := r.Context()
    
    	objectAPI, _ := validateAdminReq(ctx, w, r, policy.KMSKeyStatusAdminAction)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Fri Oct 04 11:32:32 UTC 2024
    - 99.7K bytes
    - Viewed (0)
  2. cmd/admin-router.go

    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/kms/key/status").HandlerFunc(adminMiddleware(adminAPI.KMSKeyStatusHandler, traceAllFlag))
    
    		// Keep obdinfo for backward compatibility with mc
    		adminRouter.Methods(http.MethodGet).Path(adminVersion + "/obdinfo").
    			HandlerFunc(adminMiddleware(adminAPI.HealthInfoHandler))
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Sat Sep 21 11:35:40 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top