WidgetArgs

data class WidgetArgs(val alertChart: Output<AlertChartArgs>? = null, val blank: Output<EmptyArgs>? = null, val collapsibleGroup: Output<CollapsibleGroupArgs>? = null, val incidentList: Output<IncidentListArgs>? = null, val logsPanel: Output<LogsPanelArgs>? = null, val scorecard: Output<ScorecardArgs>? = null, val text: Output<TextArgs>? = null, val timeSeriesTable: Output<TimeSeriesTableArgs>? = null, val title: Output<String>? = null, val xyChart: Output<XyChartArgs>? = null) : ConvertibleToJava<WidgetArgs>

Widget contains a single dashboard component and configuration of how to present the component in the dashboard.

Constructors

Link copied to clipboard
fun WidgetArgs(alertChart: Output<AlertChartArgs>? = null, blank: Output<EmptyArgs>? = null, collapsibleGroup: Output<CollapsibleGroupArgs>? = null, incidentList: Output<IncidentListArgs>? = null, logsPanel: Output<LogsPanelArgs>? = null, scorecard: Output<ScorecardArgs>? = null, text: Output<TextArgs>? = null, timeSeriesTable: Output<TimeSeriesTableArgs>? = null, title: Output<String>? = null, xyChart: Output<XyChartArgs>? = null)

Functions

Link copied to clipboard
open override fun toJava(): WidgetArgs

Properties

Link copied to clipboard
val alertChart: Output<AlertChartArgs>? = null

A chart of alert policy data.

Link copied to clipboard
val blank: Output<EmptyArgs>? = null

A blank space.

Link copied to clipboard

A widget that groups the other widgets. All widgets that are within the area spanned by the grouping widget are considered member widgets.

Link copied to clipboard
val incidentList: Output<IncidentListArgs>? = null

A widget that shows list of incidents.

Link copied to clipboard
val logsPanel: Output<LogsPanelArgs>? = null

A widget that shows a stream of logs.

Link copied to clipboard
val scorecard: Output<ScorecardArgs>? = null

A scorecard summarizing time series data.

Link copied to clipboard
val text: Output<TextArgs>? = null

A raw string or markdown displaying textual content.

Link copied to clipboard

A widget that displays time series data in a tabular format.

Link copied to clipboard
val title: Output<String>? = null

Optional. The title of the widget.

Link copied to clipboard
val xyChart: Output<XyChartArgs>? = null

A chart of time series data.