action influxdata_get_sources_id { label: "Retrieve a source" provider: influxdata method: GET path: "/sources/{sourceID}" encoding: json input: { type: "object" properties: { sourceID: { type: "string" } } required: ["sourceID"] additionalProperties: false } output: { 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" } } } }