Show / Hide Table of Contents

Class HostEndpointProtectionScanResultEndpointProtection

An endpoint protection found in a host scan

Inheritance
object
HostEndpointProtectionScanResultEndpointProtection
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 HostEndpointProtectionScanResultEndpointProtection

Properties

ConfigurationFinding

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

Configuration information for endpoint protection service at the time of scan

Remarks

Required

Service

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

Name of endpoint protection service

Remarks

Required

Severity

Declaration
[Required(ErrorMessage = "Severity is required.")]
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ScanResultProblemSeverity? Severity { get; set; }
Property Value
Type Description
ScanResultProblemSeverity?

Problem severity

Remarks

Required

TimeSignatureUpdated

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

Date and time endpoint protection signature was updated, as described in RFC 3339

Remarks

Required

In this article
Back to top