Exemplo n.º 1
0
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)
}
Exemplo n.º 2
0
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)
}
Exemplo n.º 3
0
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)
}
Exemplo n.º 4
0
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)
}
Exemplo n.º 5
0
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)
}
Exemplo n.º 6
0
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)
}
Exemplo n.º 7
0
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)
}