SourceArgs

data class SourceArgs(val authorizedResources: Output<List<String>>? = null, val dataSourceId: Output<String>, val query: Output<String>? = null, val queryType: Output<Either<String, QueryType>>? = null) : ConvertibleToJava<SourceArgs>

Specifies the log search query.

Constructors

Link copied to clipboard
constructor(authorizedResources: Output<List<String>>? = null, dataSourceId: Output<String>, query: Output<String>? = null, queryType: Output<Either<String, QueryType>>? = null)

Properties

Link copied to clipboard
val authorizedResources: Output<List<String>>? = null

List of Resource referred into query

Link copied to clipboard
val dataSourceId: Output<String>

The resource uri over which log search query is to be run.

Link copied to clipboard
val query: Output<String>? = null

Log search query. Required for action type - AlertingAction

Link copied to clipboard
val queryType: Output<Either<String, QueryType>>? = null

Set value to 'ResultCount' .

Functions

Link copied to clipboard
open override fun toJava(): SourceArgs