action influxdata_get_sources { label: "List all sources" provider: influxdata method: GET path: "/sources" encoding: json input: { type: "object" properties: { org: { type: "string" } } additionalProperties: false } output: { type: "object" properties: { links: { type: "object" properties: { self: { type: "string" format: "uri" } } } sources: { type: "array" items: { type: "object" properties: { default: { type: "boolean" } defaultRP: { type: "string" } id: { type: "string" } insecureSkipVerify: { type: "boolean" } languages: { type: "array" items: { type: "string" enum: ["flux", "influxql"] } } links: { type: "object" properties: { buckets: { type: "string" } health: { type: "string" } query: { type: "string" } self: { type: "string" } } } metaUrl: { type: "string" format: "uri" } name: { type: "string" } orgID: { type: "string" } password: { type: "string" } sharedSecret: { type: "string" } telegraf: { type: "string" } token: { type: "string" } type: { type: "string" enum: ["v1", "v2", "self"] } url: { type: "string" format: "uri" } username: { type: "string" } } } } } } }