Show / Hide Table of Contents

Class ApplicationScanSettings

Agent scan settings for applicaiton scan

Inheritance
object
ApplicationScanSettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VulnerabilityscanningService.Models
Assembly: OCI.DotNetSDK.Vulnerabilityscanning.dll
Syntax
public class ApplicationScanSettings

Properties

ApplicationScanRecurrence

Declaration
[Required(ErrorMessage = "ApplicationScanRecurrence is required.")]
[JsonProperty(PropertyName = "applicationScanRecurrence")]
public string ApplicationScanRecurrence { get; set; }
Property Value
Type Description
string

FoldersToScan

Declaration
[Required(ErrorMessage = "FoldersToScan is required.")]
[JsonProperty(PropertyName = "foldersToScan")]
public List<FolderToScan> FoldersToScan { get; set; }
Property Value
Type Description
List<FolderToScan>

List of folders selected for scanning

Remarks

Required

IsEnabled

Declaration
[Required(ErrorMessage = "IsEnabled is required.")]
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Enable or disable application scan

Remarks

Required

In this article
Back to top