
com.pulumi.azure.monitoring.kotlin.outputs.GetScheduledQueryRulesLogResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.monitoring.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
/**
* A collection of values returned by getScheduledQueryRulesLog.
* @property authorizedResourceIds A list of IDs of Resources referred into query.
* @property criterias A `criteria` block as defined below.
* @property dataSourceId The resource URI over which log search query is to be run.
* @property description The description of the scheduled query rule.
* @property enabled Whether this scheduled query rule is enabled.
* @property id The provider-assigned unique ID for this managed resource.
* @property location Specifies the Azure Region where the resource should exist.
* @property name Name of the dimension.
* @property resourceGroupName
* @property tags
*/
public data class GetScheduledQueryRulesLogResult(
public val authorizedResourceIds: List,
public val criterias: List,
public val dataSourceId: String,
public val description: String,
public val enabled: Boolean,
public val id: String,
public val location: String,
public val name: String,
public val resourceGroupName: String,
public val tags: Map,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.monitoring.outputs.GetScheduledQueryRulesLogResult): GetScheduledQueryRulesLogResult = GetScheduledQueryRulesLogResult(
authorizedResourceIds = javaType.authorizedResourceIds().map({ args0 -> args0 }),
criterias = javaType.criterias().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.monitoring.kotlin.outputs.GetScheduledQueryRulesLogCriteria.Companion.toKotlin(args0)
})
}),
dataSourceId = javaType.dataSourceId(),
description = javaType.description(),
enabled = javaType.enabled(),
id = javaType.id(),
location = javaType.location(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
tags = javaType.tags().map({ args0 -> args0.key.to(args0.value) }).toMap(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy