AutomationAction

data class AutomationAction(val connectionString: String? = null, val resourceId: String, val triggerUrl: String? = null, val type: String)

Constructors

Link copied to clipboard
constructor(connectionString: String? = null, resourceId: String, triggerUrl: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

(Optional, but required when type is eventhub) A connection string to send data to the target Event Hub namespace, this should include a key with send permissions.

Link copied to clipboard

The resource id of the target Logic App, Event Hub namespace or Log Analytics workspace.

Link copied to clipboard
val triggerUrl: String? = null

(Optional, but required when type is logicapp) The callback URL to trigger the Logic App that will receive and process data sent by this automation. This can be found in the Azure Portal under "See trigger history"

Link copied to clipboard

Type of Azure resource to send data to. Must be set to one of: logicapp, eventhub or loganalytics.