specify json representation of id and srcid to be string

pull/2819/head
Iris Scholten 2018-02-14 15:39:38 -08:00
parent 039121e18c
commit 4c73fb562d
2 changed files with 11 additions and 11 deletions

View File

@ -341,15 +341,15 @@ type KapacitorProperty struct {
// Server represents a proxy connection to an HTTP server // Server represents a proxy connection to an HTTP server
type Server struct { type Server struct {
ID int // ID is the unique ID of the server ID int `json:"id,string"` // ID is the unique ID of the server
SrcID int // SrcID of the data source SrcID int `json:"srcId,string"` // SrcID of the data source
Name string // Name is the user-defined name for the server Name string `json:"name"` // Name is the user-defined name for the server
Username string // Username is the username to connect to the server Username string `json:"username"` // Username is the username to connect to the server
Password string // Password is in CLEARTEXT Password string `json:"password"` // Password is in CLEARTEXT
URL string // URL are the connections to the server URL string `json:"url"` // URL are the connections to the server
InsecureSkipVerify bool // InsecureSkipVerify as true means any certificate presented by the server is accepted. InsecureSkipVerify bool `json:"insecureSkipVerify"` // InsecureSkipVerify as true means any certificate presented by the server is accepted.
Active bool // Is this the active server for the source? Active bool `json:"active"` // Is this the active server for the source?
Organization string // Organization is the organization ID that resource belongs to Organization string `json:"organization"` // Organization is the organization ID that resource belongs to
} }
// ServersStore stores connection information for a `Server` // ServersStore stores connection information for a `Server`

View File

@ -1,6 +1,6 @@
{ {
"id": 5000, "id": "5000",
"srcID": 5000, "srcID": "5000",
"name": "Kapa 1", "name": "Kapa 1",
"url": "http://localhost:9092", "url": "http://localhost:9092",
"active": true, "active": true,