LegacySoarDashboardDataModel

LegacySoarDashboardDataModel represents the data model for a dashboard.

JSON representation
{
  "id": string,
  "creator": string,
  "name": string,
  "defaultTimeRange": enum (DashboardTimeRangeTypesEnums),
  "allowedUsersJson": string,
  "allowedUsers": [
    string
  ],
  "widgets": [
    {
      object (LegacySoarDashboardWidgetDataModel)
    }
  ],
  "environmentsJson": string,
  "environments": [
    string
  ],
  "creationTimeUnixTimeInMs": string,
  "modificationTimeUnixTimeInMs": string
}
Fields
id

string (int64 format)

Optional. The ID of the dashboard.

creator

string

Optional. The creator of the dashboard.

name

string

Optional. The name of the dashboard.

defaultTimeRange

enum (DashboardTimeRangeTypesEnums)

Optional. The default time range of the dashboard.

allowedUsersJson

string

Optional. The allowed users of the dashboard.

allowedUsers[]

string

Optional. The allowed users of the dashboard.

widgets[]

object (LegacySoarDashboardWidgetDataModel)

Optional. The widgets of the dashboard.

environmentsJson

string

Optional. The environments of the dashboard.

environments[]

string

Optional. The environments of the dashboard.

creationTimeUnixTimeInMs

string (int64 format)

Optional. The creation time of the dashboard in Unix time in milliseconds.

modificationTimeUnixTimeInMs

string (int64 format)

Optional. The modification time of the dashboard in Unix time in milliseconds.