Show / Hide Table of Contents

Class SecurityAssessmentTemplateBaselineComparison

Provides a list of the differences in a comparison of the security assessment with the template baseline value.

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

Properties

Auditing

Declaration
[JsonProperty(PropertyName = "auditing")]
public List<TemplateBaselineDiffs> Auditing { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

A comparison between findings belonging to Auditing category.

AuthorizationControl

Declaration
[JsonProperty(PropertyName = "authorizationControl")]
public List<TemplateBaselineDiffs> AuthorizationControl { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

A comparison between findings belonging to Authorization Control category.

DataEncryption

Declaration
[JsonProperty(PropertyName = "dataEncryption")]
public List<TemplateBaselineDiffs> DataEncryption { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

Comparison between findings belonging to Data Encryption category.

DbConfiguration

Declaration
[JsonProperty(PropertyName = "dbConfiguration")]
public List<TemplateBaselineDiffs> DbConfiguration { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

Comparison between findings belonging to Database Configuration category.

FineGrainedAccessControl

Declaration
[JsonProperty(PropertyName = "fineGrainedAccessControl")]
public List<TemplateBaselineDiffs> FineGrainedAccessControl { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

Comparison between findings belonging to Fine-Grained Access Control category.

Id

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

The OCID of the security assessment that is being compared with a template baseline security assessment.

Remarks

Required

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public SecurityAssessmentTemplateBaselineComparison.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
SecurityAssessmentTemplateBaselineComparison.LifecycleStateEnum?

The current state of the security assessment comparison.

Remarks

Required

PrivilegesAndRoles

Declaration
[JsonProperty(PropertyName = "privilegesAndRoles")]
public List<TemplateBaselineDiffs> PrivilegesAndRoles { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

Comparison between findings belonging to Privileges and Roles category.

TemplateBaselineId

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

The OCID of the security assessment that is set as a template baseline.

Remarks

Required

TemplateBaselineName

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

The display name of the security assessment that is set as a template baseline.

TimeCreated

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

The date and time when the security assessment comparison was created. Conforms to the format defined by RFC3339.

Remarks

Required

UserAccounts

Declaration
[JsonProperty(PropertyName = "userAccounts")]
public List<TemplateBaselineDiffs> UserAccounts { get; set; }
Property Value
Type Description
List<TemplateBaselineDiffs>

Comparison between findings belonging to User Accounts category.

In this article
Back to top