Show / Hide Table of Contents

Class ReportDefinitionSummary

Summary of report definition.

Inheritance
object
ReportDefinitionSummary
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 ReportDefinitionSummary

Properties

Category

Declaration
[JsonProperty(PropertyName = "category")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReportDefinitionSummary.CategoryEnum? Category { get; set; }
Property Value
Type Description
ReportDefinitionSummary.CategoryEnum?

Specifies the name of the category that this report belongs to.

CompartmentId

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

The OCID of the compartment containing the report definition.

Remarks

Required

ComplianceStandards

Declaration
[JsonProperty(PropertyName = "complianceStandards")]
public List<string> ComplianceStandards { get; set; }
Property Value
Type Description
List<string>

The list of data protection regulations/standards used in the report that will help demonstrate compliance.

DataSource

Declaration
[JsonProperty(PropertyName = "dataSource")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ReportDefinitionDataSource? DataSource { get; set; }
Property Value
Type Description
ReportDefinitionDataSource?

Specifies the name of a resource that provides data for the report. For example alerts, events.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations": {"CostCenter": "42"}}

Description

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

A description of the report definition.

DisplayName

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

Name of the report definition.

Remarks

Required

DisplayOrder

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

Specifies how the report definitions are ordered in the display.

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags
Example: {"Department": "Finance"}

Id

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

The OCID of the report definition.

Remarks

Required

IsSeeded

Declaration
[JsonProperty(PropertyName = "isSeeded")]
public bool? IsSeeded { get; set; }
Property Value
Type Description
bool?

Signifies whether the definition is seeded or user defined. Values can either be 'true' or 'false'.

LifecycleState

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

The current state of the audit report.

Remarks

Required

Schedule

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

TimeCreated

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

Specifies the time at which the report definition was created.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time of the report definition update in Data Safe.

In this article
Back to top