action influxdata_post_scrapers { label: "Create a scraper target" provider: influxdata method: POST path: "/scrapers" encoding: json input: { type: "object" properties: { allowInsecure: { type: "boolean" description: "Skip TLS verification on endpoint." } bucketID: { type: "string" description: "The ID of the bucket to write to." } name: { type: "string" description: "The name of the scraper target." } orgID: { type: "string" description: "The organization ID." } type: { type: "string" description: "The type of the metrics to be parsed." enum: ["prometheus"] } url: { type: "string" description: "The URL of the metrics endpoint." } } } output: { type: "object" } }