panel_configuration
Protocol buffer definition for panel_configuration
sift/panel_configurations/v1/panel_configuration.proto
ChannelConfigurations
Field | Type | Label | Description |
---|---|---|---|
name | string | ||
type | PlottedChannelType | ||
color | string | ||
channel_settings | google.protobuf.Struct | ||
bit_field_index | int32 | optional | bitfield |
bit_field_element | sift.common.type.v1.ChannelBitFieldElement | optional | |
expression | string | optional | temporary calculated channel |
expression_channel_references | string | repeated |
CreatePanelConfigurationRequest
Field | Type | Label | Description |
---|---|---|---|
name | string | ||
panel_type | PanelType | ||
channel_configurations | ChannelConfigurations | repeated | |
chart_settings | google.protobuf.Struct | optional |
CreatePanelConfigurationResponse
Field | Type | Label | Description |
---|---|---|---|
panel_configuration | PanelConfiguration |
GetPanelConfigurationRequest
Field | Type | Label | Description |
---|---|---|---|
panel_configuration_id | string |
GetPanelConfigurationResponse
Field | Type | Label | Description |
---|---|---|---|
panel_configuration | PanelConfiguration |
ListPanelConfigurationsRequest
Field | Type | Label | Description |
---|---|---|---|
page_size | uint32 | The maximum number of panel configurations to return. The service may return fewer than this value. If unspecified, at most 50 panel configurations will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000. | |
page_token | string | A page token, received from a previous ListPanelConfigurations call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListPanelConfigurations must match the call that provided the page token. | |
filter | string | A Common Expression Language (CEL) filter string Available fields to filter by are 'name', 'created_date', and 'modified_date'. For further information about how to use CELs, please refer to this guide. | |
order_by | string | How to order the retrieved panel configurations. Formatted as a comma-separated string i.e. "FIELD_NAME[ desc],...". Available fields to order_by are name . If left empty, items are ordered by name in ascending order (alphabetical). For more information about the format of this field, read this Example: "name" |
ListPanelConfigurationsResponse
Field | Type | Label | Description |
---|---|---|---|
panel_configurations | PanelConfiguration | repeated | |
next_page_token | string | A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. |
PanelConfiguration
Field | Type | Label | Description |
---|---|---|---|
panel_configuration_id | string | ||
version_id | string | ||
version | uint32 | ||
change_message | string | ||
name | string | ||
panel_type | PanelType | ||
channel_configurations | ChannelConfigurations | repeated | |
chart_settings | google.protobuf.Struct | optional | |
created_date | google.protobuf.Timestamp | ||
modified_date | google.protobuf.Timestamp | ||
archived_date | google.protobuf.Timestamp | ||
created_by_user_id | string | ||
modified_by_user_id | string |
UpdatePanelConfigurationRequest
The request for a call to PanelConfigurationService_UpdatePanelConfiguration
to update a panel configuration. Updating a panel
configuration creates a new version of the panel configuration, leaving the previous untouched. If no update is deemed necessary, then the
the current version is returned. To archive panel configuration, specify archived_date
in the update mask
as well as a non-null
value for archived_date
in the panel_configuration
object. To unarchive a panel configuration, specify archived_date
in the
update mask
and a null
value for archived_date
in the panel_configuration
object.
Field | Type | Label | Description |
---|---|---|---|
panel_configuration | PanelConfiguration | The panel configuration to update. | |
update_mask | google.protobuf.FieldMask | The list of fields to be updated. The fields available to be updated are name , panel_type , channel_configurations , and chart_settings . |
UpdatePanelConfigurationResponse
Field | Type | Label | Description |
---|---|---|---|
panel_configuration | PanelConfiguration |
PanelType
Name | Number | Description |
---|---|---|
PANEL_TYPE_UNSPECIFIED | 0 | |
PANEL_TYPE_TIMESERIES | 1 | |
PANEL_TYPE_TABLE | 2 | |
PANEL_TYPE_FFT | 3 | |
PANEL_TYPE_GEO_MAP | 4 | |
PANEL_TYPE_SCATTER_PLOT | 5 | |
PANEL_TYPE_FILE_VIEWER | 6 | |
PANEL_TYPE_HISTOGRAM | 7 |
PlottedChannelType
Name | Number | Description |
---|---|---|
PLOTTED_CHANNEL_TYPE_UNSPECIFIED | 0 | |
PLOTTED_CHANNEL_TYPE_REGULAR | 1 | |
PLOTTED_CHANNEL_TYPE_CALCULATED_CHANNEL | 2 | |
PLOTTED_CHANNEL_TYPE_BIT_FIELD_ELEMENT | 3 | |
PLOTTED_CHANNEL_TYPE_ENUM | 4 |
PanelConfigurationService
Method Name | Request Type | Response Type | Description |
---|---|---|---|
GetPanelConfiguration | GetPanelConfigurationRequest | GetPanelConfigurationResponse | Retrieves a panel configuration. |
ListPanelConfigurations | ListPanelConfigurationsRequest | ListPanelConfigurationsResponse | Retrieves panel configurations using an optional filter. |
CreatePanelConfiguration | CreatePanelConfigurationRequest | CreatePanelConfigurationResponse | Creates a panel configuration. |
UpdatePanelConfiguration | UpdatePanelConfigurationRequest | UpdatePanelConfigurationResponse | Updates an existing panel configuration using using the list of fields specified in update_mask . |