thousandeyes-sdk-python/thousandeyes-sdk-dashboards/docs/ApiDashboard.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

3.9 KiB

ApiDashboard

Dashboard upon which this dashboard snapshot is based upon.

Properties

Name Type Description Notes
global_filter_id str Default global dashboard filter ID (obtained from `/dashboards/filters` endpoint). [optional]
account_id int Identifier for the account group associated with a dashboard. [optional] [readonly]
created_by int Identifier for the user that created a dashboard. [optional] [readonly]
modified_by int Identifier for the user that last modified a dashboard. [optional] [readonly]
modified_date str UTC date/time when a dashboard was last modified. [optional] [readonly]
global_override bool When set to `true`, the defaultTimespan is used and overrides the widget's timespan. If set to `false`, the the widget's timespan is used. [optional]
migrated_report bool True if this dashboard was previously a report. [optional] [readonly]
api_link List[Dict[str, object]] A links array containing the self and the snapshots links. [optional]
dashboard_id str Identifier of a dashboard. [optional] [readonly]
title str Title of a dashboard. [optional]
is_built_in bool Indicates if a dashboard is built-in. True for built-in dashboards, false for user-created dashboards. [optional] [readonly]
aid str Identifier for the account group associated with a dashboard. [optional] [readonly]
dashboard_created_by str Identifier for the user that created a dashboard. [optional] [readonly]
dashboard_modified_by str Identifier for the user that last modified a dashboard. [optional] [readonly]
dashboard_modified_date datetime UTC date/time when a dashboard was last modified (ISO date-time format). [optional] [readonly]
is_private bool A dashboard can be viewed by other users in the account. If true, only the creator of the dashboard may view it. If false, all users in the same account may view it. [optional]
is_default_for_user bool Indicates whether this dashboard is the user's default. True for default, false if not. [optional] [readonly]
is_default_for_account bool Indicates whether this dashboard is the account group's default. True for default, false if not. [optional] [readonly]
widgets **List[ApiWidget]** [optional]
description str A text description of the dashboard's purpose and functionality. This information assists users in understanding the dashboard but isn't displayed when viewing a dashboard. [optional]
default_timespan DefaultTimespan [optional]
is_global_override bool When set to `true`, the defaultTimespan is used and overrides the widget's timespan. If set to `false`, the the widget's timespan is used. [optional]
is_migrated_report bool True if this dashboard was previously a report. [optional] [readonly]
links DashboardLinks [optional]

Example

from thousandeyes_sdk.dashboards.models.api_dashboard import ApiDashboard

# TODO update the JSON string below
json = "{}"
# create an instance of ApiDashboard from a JSON string
api_dashboard_instance = ApiDashboard.from_json(json)
# print the JSON string representation of the object
print(ApiDashboard.to_json())

# convert the object into a dict
api_dashboard_dict = api_dashboard_instance.to_dict()
# create an instance of ApiDashboard from a dict
api_dashboard_from_dict = ApiDashboard.from_dict(api_dashboard_dict)

[Back to Model list] [Back to API list] [Back to README]