Class CreateV1DashboardDetails
Details for creating 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 CreateV1DashboardDetails : CreateDashboardDetails
Properties
Config
Declaration
[JsonProperty(PropertyName = "config")]
public object Config { get; set; }
Property Value
Type | Description |
---|---|
object | The layout and widget placement for the dashboard. |
Widgets
Declaration
[Required(ErrorMessage = "Widgets is required.")]
[JsonProperty(PropertyName = "widgets")]
public List<object> Widgets { get; set; }
Property Value
Type | Description |
---|---|
List<object> | The basic visualization building blocks of a dashboard. |
Remarks
Required