Show / Hide Table of Contents

Class VulnerableArtifactVersionRange

Vulnerable artifact version range.

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

Properties

VersionEndExcluding

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

The version immediately after the last affected version. Versions up to, but not including this version, are vulnerable.

VersionEndIncluding

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

Marks the latest version that is affected by the vulnerability. This version and all preceding versions, going back to versionStartExcluding or versionStartIncluding, are considered vulnerable.

VersionStartExcluding

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

The version immediately before the start of affected versions. The specified version is not affected, but versions immediately after are, up to versionStartIncluding or beyond, if not otherwise defined.

VersionStartIncluding

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

The first version affected by the vulnerability. This version and those following it are considered vulnerable until versionEndExcluding or versionEndIncluding is reached.

In this article
Back to top