InfluxDbDataFeedSource type

Represents an InfluxDB data source. User is required to specify password for Create. password being a secret is not returned by service.

type InfluxDbDataFeedSource = {
  authenticationType: "Basic"
  connectionString: string
  dataSourceType: "InfluxDB"
  database: string
  password?: string
  query: string
  userName: string
}