Show / Hide Table of Contents

Class ExportHostAgentScanResultCsvDetails

Details for a HostAgentScan list export to CSV action

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

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 scans in.

Remarks

Required

HighestProblemSeverity

Declaration
[JsonProperty(PropertyName = "highestProblemSeverity")]
[JsonConverter(typeof(StringEnumConverter))]
public ScanResultProblemSeverity? HighestProblemSeverity { get; set; }
Property Value
Type Description
ScanResultProblemSeverity?

Parameter to filter by highestProblemSeverity for scan results

InstanceId

Declaration
[JsonProperty(PropertyName = "instanceId")]
public string InstanceId { get; set; }
Property Value
Type Description
string

Parameter to filter by a single compute instance ID for scan results

OperatingSystem

Declaration
[JsonProperty(PropertyName = "operatingSystem")]
public string OperatingSystem { get; set; }
Property Value
Type Description
string

Parameter to filter by operating system for scan results

TimeStartedAfter

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

Date and time after which scans were started, as described in RFC 3339

Remarks

Required

TimeStartedBefore

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

Date and time before which scans were started, as described in RFC 3339

Remarks

Required

In this article
Back to top