Show / Hide Table of Contents

Class UpdateReportDefinitionDetails

Description of a new report definition.

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

Properties

ColumnFilters

Declaration
[Required(ErrorMessage = "ColumnFilters is required.")]
[JsonProperty(PropertyName = "columnFilters")]
public List<ColumnFilter> ColumnFilters { get; set; }
Property Value
Type Description
List<ColumnFilter>

An array of column filter objects. A column Filter object stores all information about a column filter including field name, an operator, one or more expressions, if the filter is enabled, or if the filter is hidden.

Remarks

Required

ColumnInfo

Declaration
[Required(ErrorMessage = "ColumnInfo is required.")]
[JsonProperty(PropertyName = "columnInfo")]
public List<Column> ColumnInfo { get; set; }
Property Value
Type Description
List<Column>

An array of column objects in the order (left to right) displayed in the report. A column object stores all information about a column, including the name displayed on the UI, corresponding field name in the data source, data type of the column, and column visibility (if the column is visible to the user).

Remarks

Required

ColumnSortings

Declaration
[Required(ErrorMessage = "ColumnSortings is required.")]
[JsonProperty(PropertyName = "columnSortings")]
public List<ColumnSorting> ColumnSortings { get; set; }
Property Value
Type Description
List<ColumnSorting>

An array of column sorting objects. Each column sorting object stores the column name to be sorted and if the sorting is in ascending order; sorting is done by the first column in the array, then by the second column in the array, etc.

Remarks

Required

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

The 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

Specifies the name of the report definition.

Remarks

Required

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"}

Summary

Declaration
[Required(ErrorMessage = "Summary is required.")]
[JsonProperty(PropertyName = "summary")]
public List<Summary> Summary { get; set; }
Property Value
Type Description
List<Summary>

An array of report summary objects in the order (left to right) displayed in the report. A report summary object stores all information about summary of report to be displayed, including the name displayed on UI, the display order, corresponding group by and count of values, summary visibility (if the summary is visible to user).

Remarks

Required

In this article
Back to top