DashboardArgs

data class DashboardArgs(val columnLayout: Output<ColumnLayoutArgs>? = null, val dashboardFilters: Output<List<DashboardFilterArgs>>? = null, val displayName: Output<String>? = null, val etag: Output<String>? = null, val gridLayout: Output<GridLayoutArgs>? = null, val labels: Output<Map<String, String>>? = null, val mosaicLayout: Output<MosaicLayoutArgs>? = null, val name: Output<String>? = null, val project: Output<String>? = null, val rowLayout: Output<RowLayoutArgs>? = null) : ConvertibleToJava<DashboardArgs>

Creates a new custom dashboard. For examples on how you can use this API to create dashboards, see Managing dashboards by API (https://cloud.google.com/monitoring/dashboards/api-dashboard). This method requires the monitoring.dashboards.create permission on the specified project. For more information about permissions, see Cloud Identity and Access Management (https://cloud.google.com/iam).

Constructors

Link copied to clipboard
fun DashboardArgs(columnLayout: Output<ColumnLayoutArgs>? = null, dashboardFilters: Output<List<DashboardFilterArgs>>? = null, displayName: Output<String>? = null, etag: Output<String>? = null, gridLayout: Output<GridLayoutArgs>? = null, labels: Output<Map<String, String>>? = null, mosaicLayout: Output<MosaicLayoutArgs>? = null, name: Output<String>? = null, project: Output<String>? = null, rowLayout: Output<RowLayoutArgs>? = null)

Functions

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

Properties

Link copied to clipboard
val columnLayout: Output<ColumnLayoutArgs>? = null

The content is divided into equally spaced columns and the widgets are arranged vertically.

Link copied to clipboard

Filters to reduce the amount of data charted based on the filter criteria.

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

The mutable, human-readable name.

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

etag is used for optimistic concurrency control as a way to help prevent simultaneous updates of a policy from overwriting each other. An etag is returned in the response to GetDashboard, and users are expected to put that etag in the request to UpdateDashboard to ensure that their change will be applied to the same version of the Dashboard configuration. The field should not be passed during dashboard creation.

Link copied to clipboard
val gridLayout: Output<GridLayoutArgs>? = null

Content is arranged with a basic layout that re-flows a simple list of informational elements like widgets or tiles.

Link copied to clipboard
val labels: Output<Map<String, String>>? = null

Labels applied to the dashboard

Link copied to clipboard
val mosaicLayout: Output<MosaicLayoutArgs>? = null

The content is arranged as a grid of tiles, with each content widget occupying one or more grid blocks.

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

Immutable. The resource name of the dashboard.

Link copied to clipboard
val project: Output<String>? = null
Link copied to clipboard
val rowLayout: Output<RowLayoutArgs>? = null

The content is divided into equally spaced rows and the widgets are arranged horizontally.