func HandlePOSTAttribute(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var attribute Attribute handler := ctp.NewPOSTHandler(ctp.AdminRoleTag) handler.Handle(w, r, context, &attribute) }
func HandlePOSTMetric(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var metric Metric handler := ctp.NewPOSTHandler(ctp.AdminRoleTag) handler.Handle(w, r, context, &metric) }
func HandlePOSTAsset(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var asset Asset handler := ctp.NewPOSTHandler(ctp.AdminAccess) handler.Handle(w, r, context, &asset) }
func HandlePOSTTrigger(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var trigger Trigger handler := ctp.NewPOSTHandler(ctp.AdminRoleTag) handler.Handle(w, r, context, &trigger) }
func HandlePOSTServiceView(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var serviceview ServiceView handler := ctp.NewPOSTHandler(ctp.AdminAccess) handler.Handle(w, r, context, &serviceview) }
func HandlePOSTAccount(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var account Account handler := ctp.NewPOSTHandler(ctp.AdminRoleTag) handler.Handle(w, r, context, &account) }
func HandlePOSTMeasurement(w http.ResponseWriter, r *http.Request, context *ctp.ApiContext) { var measurement Measurement handler := ctp.NewPOSTHandler(ctp.AdminRoleTag) handler.Handle(w, r, context, &measurement) }