GrafanaSmtp

data class GrafanaSmtp(val enabled: Boolean? = null, val fromAddress: String, val fromName: String? = null, val host: String, val password: String, val startTlsPolicy: String, val user: String, val verificationSkipEnabled: Boolean? = null)

Constructors

Link copied to clipboard
constructor(enabled: Boolean? = null, fromAddress: String, fromName: String? = null, host: String, password: String, startTlsPolicy: String, user: String, verificationSkipEnabled: Boolean? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val enabled: Boolean? = null

Whether to enable the smtp setting of the Grafana instance. Defaults to false.

Link copied to clipboard

Address used when sending emails.

Link copied to clipboard
val fromName: String? = null

Name used when sending emails. Defaults to Azure Managed Grafana Notification.

Link copied to clipboard

SMTP server hostname with port, e.g. test.email.net:587

Link copied to clipboard

Password of SMTP authentication.

Link copied to clipboard

Whether to use TLS when connecting to SMTP server. Possible values are OpportunisticStartTLS, NoStartTLS, MandatoryStartTLS.

Link copied to clipboard

User of SMTP authentication.

Link copied to clipboard

Whether verify SSL for SMTP server. Defaults to false.