com.pulumi.azure.mssql.kotlin.outputs.ManagedInstanceVulnerabilityAssessmentRecurringScans.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.mssql.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property emailSubscriptionAdmins Boolean flag which specifies if the schedule scan notification will be sent to the subscription administrators. Defaults to `true`.
* @property emails Specifies an array of e-mail addresses to which the scan notification is sent.
* @property enabled Boolean flag which specifies if recurring scans is enabled or disabled. Defaults to `false`.
*/
public data class ManagedInstanceVulnerabilityAssessmentRecurringScans(
public val emailSubscriptionAdmins: Boolean? = null,
public val emails: List? = null,
public val enabled: Boolean? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.mssql.outputs.ManagedInstanceVulnerabilityAssessmentRecurringScans):
ManagedInstanceVulnerabilityAssessmentRecurringScans =
ManagedInstanceVulnerabilityAssessmentRecurringScans(
emailSubscriptionAdmins = javaType.emailSubscriptionAdmins().map({ args0 -> args0 }).orElse(null),
emails = javaType.emails().map({ args0 -> args0 }),
enabled = javaType.enabled().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy