Configuration Antimalware Args
data class ConfigurationAntimalwareArgs(val exclusions: Output<ConfigurationAntimalwareExclusionsArgs>? = null, val realTimeProtectionEnabled: Output<Boolean>? = null, val scheduledScanDay: Output<Int>? = null, val scheduledScanEnabled: Output<Boolean>? = null, val scheduledScanTimeInMinutes: Output<Int>? = null, val scheduledScanType: Output<String>? = null) : ConvertibleToJava<ConfigurationAntimalwareArgs>
Constructors
Link copied to clipboard
constructor(exclusions: Output<ConfigurationAntimalwareExclusionsArgs>? = null, realTimeProtectionEnabled: Output<Boolean>? = null, scheduledScanDay: Output<Int>? = null, scheduledScanEnabled: Output<Boolean>? = null, scheduledScanTimeInMinutes: Output<Int>? = null, scheduledScanType: Output<String>? = null)
Properties
Link copied to clipboard
A exclusions
block as defined below.
Link copied to clipboard
Whether the real time protection is enabled. Defaults to false
.
Link copied to clipboard
The day of the scheduled scan. Possible values are 0
to 8
where 0
is daily, 1
to 7
are the days of the week and 8
is Disabled. Defaults to 8
.
Link copied to clipboard
Whether the scheduled scan is enabled. Defaults to false
.
Link copied to clipboard
The time of the scheduled scan in minutes. Possible values are 0
to 1439
where 0
is 12:00 AM and 1439
is 11:59 PM.
Link copied to clipboard
The type of the scheduled scan. Possible values are Quick
and Full
. Defaults to Quick
.