com.pulumi.azure.synapse.kotlin.outputs.WorkspaceVulnerabilityAssessmentRecurringScans.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.synapse.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property emailSubscriptionAdminsEnabled Boolean flag which specifies if the schedule scan notification will be sent to the subscription administrators. Defaults to `false`.
* @property emails Specifies an array of email 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 WorkspaceVulnerabilityAssessmentRecurringScans(
public val emailSubscriptionAdminsEnabled: Boolean? = null,
public val emails: List? = null,
public val enabled: Boolean? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.synapse.outputs.WorkspaceVulnerabilityAssessmentRecurringScans):
WorkspaceVulnerabilityAssessmentRecurringScans =
WorkspaceVulnerabilityAssessmentRecurringScans(
emailSubscriptionAdminsEnabled = javaType.emailSubscriptionAdminsEnabled().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