Class V1Dashboard
A version 1 dashboard.
The interpretation of the config and widgets fields depends on the runtime behavior of the Oracle Cloud Infrastructure Console.
The sum of the config and widget fields JSON text representation cannot exceed 200 KB.
Inherited Members
Namespace: Oci.DashboardService.Models
Assembly: OCI.DotNetSDK.Dashboardservice.dll
Syntax
public class V1Dashboard : Dashboard
Properties
Config
Declaration
[JsonProperty(PropertyName = "config")]
public object Config { get; set; }
Property Value
| Type | Description |
|---|---|
| object | The dashboard configuration. For example, the layout and widget placement. |
Widgets
Declaration
[Required(ErrorMessage = "Widgets is required.")]
[JsonProperty(PropertyName = "widgets")]
public List<object> Widgets { get; set; }
Property Value
| Type | Description |
|---|---|
| List<object> | The visualization building blocks of the dashboard. |
Remarks
Required