Show / Hide Table of Contents

Class ResourcesPatchComplianceSummary

Summary of resources and their patch compliance.

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

Properties

NonCompliantResourcesCount

Declaration
[JsonProperty(PropertyName = "nonCompliantResourcesCount")]
public int? NonCompliantResourcesCount { get; set; }
Property Value
Type Description
int?

Total number of non-compliant resources.

NotDblmRegisteredResourcesCount

Declaration
[JsonProperty(PropertyName = "notDblmRegisteredResourcesCount")]
public int? NotDblmRegisteredResourcesCount { get; set; }
Property Value
Type Description
int?

Total number of resources that are not registered to DBLM.

NotSubscribedResourcesCount

Declaration
[JsonProperty(PropertyName = "notSubscribedResourcesCount")]
public int? NotSubscribedResourcesCount { get; set; }
Property Value
Type Description
int?

Total number of resources that are not subscribed.

TotalResourcesCount

Declaration
[JsonProperty(PropertyName = "totalResourcesCount")]
public int? TotalResourcesCount { get; set; }
Property Value
Type Description
int?

Total number of resources.

UpToDateResourcesCount

Declaration
[JsonProperty(PropertyName = "upToDateResourcesCount")]
public int? UpToDateResourcesCount { get; set; }
Property Value
Type Description
int?

Total number of resources that are up to date.

In this article
Back to top