Show / Hide Table of Contents

Class ExportHostVulnerabilityCsvDetails

Details for a Host Vulnerability list export to CSV action

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

Properties

CompartmentId

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

The OCID of the compartment to list vulnerabilities in.

Remarks

Required

TimeLastDetectedGreaterThanOrEqualTo

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

Date and time on or after which this vulnerability was last detected, as described in RFC 3339

Remarks

Required

TimeLastDetectedLessThanOrEqualTo

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

Date and time on or before which this vulnerability was last detected, as described in RFC 3339

Remarks

Required

In this article
Back to top