Show / Hide Table of Contents

Class ManagementDashboardTileDetails

Properties of the dashboard tile representing a saved search.
Tiles are laid out in a twelve column grid system with (0,0) at upper left corner.

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

Properties

Column

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

Tile's column number.

Remarks

Required

DataConfig

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

It defines how data is fetched. A functional saved search needs a valid dataConfig. See examples on how it can be constructed for various data sources.

Remarks

Required

Description

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

Description of the tile.

DisplayName

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

Display name of the saved search.

Remarks

Required

DrilldownConfig

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

Drill-down configuration to define the destination of a drill-down action.

Remarks

Required

Height

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

The number of rows the tile occupies.

Remarks

Required

Nls

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

JSON that contains internationalization options.

Remarks

Required

ParametersMap

Declaration
[JsonProperty(PropertyName = "parametersMap")]
public object ParametersMap { get; set; }
Property Value
Type Description
object

Specifies the saved search parameters values

Row

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

Tile's row number.

Remarks

Required

SavedSearchId

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

ID of the saved search.

Remarks

Required

State

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

Current state of the saved search.

Remarks

Required

UiConfig

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

It defines the visualization type of the widget saved search, the UI options of that visualization type, the binding of data to the visualization.

Remarks

Required

Width

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

The number of columns the tile occupies.

Remarks

Required

In this article
Back to top