com.pulumi.azure.automanage.kotlin.outputs.ConfigurationAntimalwareExclusions.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.automanage.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property extensions The extensions to exclude from the antimalware scan, separated by `;`. For example `.ext1;.ext2`.
* @property paths The paths to exclude from the antimalware scan, separated by `;`. For example `C:\\Windows\\Temp;D:\\Temp`.
* @property processes The processes to exclude from the antimalware scan, separated by `;`. For example `svchost.exe;notepad.exe`.
*/
public data class ConfigurationAntimalwareExclusions(
public val extensions: String? = null,
public val paths: String? = null,
public val processes: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.automanage.outputs.ConfigurationAntimalwareExclusions):
ConfigurationAntimalwareExclusions = ConfigurationAntimalwareExclusions(
extensions = javaType.extensions().map({ args0 -> args0 }).orElse(null),
paths = javaType.paths().map({ args0 -> args0 }).orElse(null),
processes = javaType.processes().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy