Merge pull request #140 from influxdata/feature/tr-default-source
Add Default param to Sourcepull/10616/head
commit
665f85d36e
|
@ -19,6 +19,10 @@ swagger:model Source
|
|||
*/
|
||||
type Source struct {
|
||||
|
||||
/* Indicates whether this source is the default source
|
||||
*/
|
||||
Default bool `json:"default,omitempty"`
|
||||
|
||||
/* Unique identifier representing a specific data source.
|
||||
|
||||
Read Only: true
|
||||
|
|
|
@ -764,6 +764,9 @@ definitions:
|
|||
type: string
|
||||
format: url
|
||||
description: URL for the time series data source backend (e.g. http://localhost:8086)
|
||||
default:
|
||||
type: boolean
|
||||
description: Indicates whether this source is the default source
|
||||
links:
|
||||
type: object
|
||||
properties:
|
||||
|
|
Loading…
Reference in New Issue