thousandeyes-sdk-python/dashboards_api/docs/ApiDashboardSnapshot.md
2023-12-11 09:29:15 +00:00

2.2 KiB

ApiDashboardSnapshot

Properties

Name Type Description Notes
links DashboardSnapshotLinksLinks [optional]
snapshot_id str Identifier of the dashboard snapshot. [optional]
snapshot_name str Name of the dashboard snapshot. [optional]
aid str Identifier of the account group that the snapshot belongs to. [optional]
is_shared bool Set `true` if dashboard snapshot is shared, `false` otherwise. [optional]
snapshot_created_date datetime UTC date when dashboard snapshot was created (ISO date-time format). [optional]
dashboard ApiDashboardSnapshotAllOfDashboard [optional]
widgets **List[ApiWidget]** [optional]
is_scheduled bool Set `true` if dashboard snapshot was generated from a schedule, `false` otherwise. [optional]
time_span ApiReportSnapshotTimeSpan [optional]
snapshot_expiration_date datetime Expiration date of the snapshot. If unspecified, the snapshot expires 1 year from its creation date. The expiration date must be set within 5 years from the current date and adhere to the ISO date-time format. [optional]

Example

from dashboards_api.models.api_dashboard_snapshot import ApiDashboardSnapshot

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

# convert the object into a dict
api_dashboard_snapshot_dict = api_dashboard_snapshot_instance.to_dict()
# create an instance of ApiDashboardSnapshot from a dict
api_dashboard_snapshot_form_dict = api_dashboard_snapshot.from_dict(api_dashboard_snapshot_dict)

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