mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 16:13:55 +00:00
Some checks failed
Python CI / build (push) Has been cancelled
Co-authored-by: API Team <api-team@thousandeyes.com>
31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# DashboardScheduleDataSource
|
|
|
|
Naming configuration for snapshots generated by the schedule. The required `dataTimespan` property on the schedule controls the snapshot data range.
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**name** | **str** | Name assigned to snapshots generated by the schedule. |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.dashboards.models.dashboard_schedule_data_source import DashboardScheduleDataSource
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of DashboardScheduleDataSource from a JSON string
|
|
dashboard_schedule_data_source_instance = DashboardScheduleDataSource.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(DashboardScheduleDataSource.to_json())
|
|
|
|
# convert the object into a dict
|
|
dashboard_schedule_data_source_dict = dashboard_schedule_data_source_instance.to_dict()
|
|
# create an instance of DashboardScheduleDataSource from a dict
|
|
dashboard_schedule_data_source_from_dict = DashboardScheduleDataSource.from_dict(dashboard_schedule_data_source_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|