Show / Hide Table of Contents

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.

Inheritance
object
Dashboard
V1Dashboard
Inherited Members
Dashboard.Id
Dashboard.DashboardGroupId
Dashboard.DisplayName
Dashboard.Description
Dashboard.CompartmentId
Dashboard.TimeCreated
Dashboard.TimeUpdated
Dashboard.LifecycleState
Dashboard.FreeformTags
Dashboard.DefinedTags
Dashboard.SystemTags
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 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

In this article
Back to top