
com.pulumi.azurenative.insights.kotlin.outputs.WindowsFirewallLogsDataSourceResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.insights.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
* Enables Firewall logs to be collected by this data collection rule.
* @property name A friendly name for the data source.
* This name should be unique across all data sources (regardless of type) within the data collection rule.
* @property streams Firewall logs streams
*/
public data class WindowsFirewallLogsDataSourceResponse(
public val name: String? = null,
public val streams: List,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.insights.outputs.WindowsFirewallLogsDataSourceResponse): WindowsFirewallLogsDataSourceResponse = WindowsFirewallLogsDataSourceResponse(
name = javaType.name().map({ args0 -> args0 }).orElse(null),
streams = javaType.streams().map({ args0 -> args0 }),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy