Show / Hide Table of Contents

Class ComplianceReportProduct

Details of the Product.

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

Properties

ProductName

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

Product Name.

Remarks

Required

Targets

Declaration
[JsonProperty(PropertyName = "targets")]
public List<ComplianceReportTarget> Targets { get; set; }
Property Value
Type Description
List<ComplianceReportTarget>

Managed Targets associated with the Product.

In this article
Back to top