Show / Hide Table of Contents

Class FixableTotalByDigest

Per resource and severity counts of fixable and total vulnerabilities.

Inheritance
System.Object
FixableTotalByDigest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class FixableTotalByDigest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

FixableCount

The number of fixable vulnerabilities associated with this resource.

Declaration
[JsonProperty("fixableCount")]
public virtual long? FixableCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Resource

The affected resource.

Declaration
[JsonProperty("resource")]
public virtual Resource Resource { get; set; }
Property Value
Type Description
Resource

Severity

The severity for this count. SEVERITY_UNSPECIFIED indicates total across all severities.

Declaration
[JsonProperty("severity")]
public virtual string Severity { get; set; }
Property Value
Type Description
System.String

TotalCount

The total number of vulnerabilities associated with this resource.

Declaration
[JsonProperty("totalCount")]
public virtual long? TotalCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top