Show / Hide Table of Contents

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.

Inheritance
object
CreateDashboardDetails
CreateV1DashboardDetails
Inherited Members
CreateDashboardDetails.DashboardGroupId
CreateDashboardDetails.DisplayName
CreateDashboardDetails.Description
CreateDashboardDetails.FreeformTags
CreateDashboardDetails.DefinedTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top