Skip to main content

Services

RPC methods exposed by this API.

PanelConfigurationService

MethodRequestResponseDescription
GetPanelConfigurationGetPanelConfigurationRequestGetPanelConfigurationResponseRetrieves a panel configuration.
ListPanelConfigurationsListPanelConfigurationsRequestListPanelConfigurationsResponseRetrieves panel configurations using an optional filter.
CreatePanelConfigurationCreatePanelConfigurationRequestCreatePanelConfigurationResponseCreates a panel configuration.
UpdatePanelConfigurationUpdatePanelConfigurationRequestUpdatePanelConfigurationResponseUpdates an existing panel configuration using using the list of fields specified in update_mask.

Messages

Data models used across requests/responses.

ChannelConfigurations

FieldTypeLabelDescription
namestring
typePlottedChannelType
colorstring
channel_settingsgoogle.protobuf.Struct
bit_field_indexint32optionalbitfield
bit_field_elementsift.common.type.v1.ChannelBitFieldElementoptional
expressionstringoptionaltemporary calculated channel
expression_channel_referencessift.calculated_channels.v2.CalculatedChannelAbstractChannelReferencerepeated
data_typesift.common.type.v1.ChannelDataTypeoptional

CreatePanelConfigurationRequest

FieldTypeLabelDescription
namestring
channel_configurationsChannelConfigurationsrepeated
chart_settingsgoogle.protobuf.Structoptional

CreatePanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

GetPanelConfigurationRequest

FieldTypeLabelDescription
panel_configuration_idstring

GetPanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

ListPanelConfigurationsRequest

FieldTypeLabelDescription
page_sizeuint32The 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_tokenstringA 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.
filterstringA Common Expression Language (CEL) filter string Available fields to filter by are ‘name’, ‘created_date’, ‘modified_date’, and ‘is_archived’. For further information about how to use CELs, please refer to this guide.
order_bystringHow 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”
run_idsstringrepeated
asset_idsstringrepeated

ListPanelConfigurationsResponse

FieldTypeLabelDescription
panel_configurationsPanelConfigurationrepeated
next_page_tokenstringA token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

PanelConfiguration

FieldTypeLabelDescription
panel_configuration_idstring
version_idstring
versionuint32
change_messagestring
namestring
channel_configurationsChannelConfigurationsrepeated
chart_settingsgoogle.protobuf.Structoptional
created_dategoogle.protobuf.Timestamp
modified_dategoogle.protobuf.Timestamp
archived_dategoogle.protobuf.Timestamp
created_by_user_idstring
modified_by_user_idstring
is_archivedbool

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. Use is_archived to archive/unarchive a panel configuration.
FieldTypeLabelDescription
panel_configurationPanelConfigurationThe panel configuration to update.
update_maskgoogle.protobuf.FieldMaskThe list of fields to be updated. The fields available to be updated are name, channel_configurations, chart_settings, and is_archived.

UpdatePanelConfigurationResponse

FieldTypeLabelDescription
panel_configurationPanelConfiguration

Enums

Allowed constant values used in message fields.

PlottedChannelType

NameNumberDescription
PLOTTED_CHANNEL_TYPE_UNSPECIFIED0
PLOTTED_CHANNEL_TYPE_REGULAR1
PLOTTED_CHANNEL_TYPE_CALCULATED_CHANNEL2
PLOTTED_CHANNEL_TYPE_BIT_FIELD_ELEMENT3
PLOTTED_CHANNEL_TYPE_ENUM4