mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 14:36:50 +00:00
136 lines
5.6 KiB
Python
136 lines
5.6 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Dashboards API
|
|
|
|
Manage ThousandEyes Dashboards.
|
|
|
|
The version of the OpenAPI document: 7.0.4
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from thousandeyes_sdk.dashboards.models.api_widget import ApiWidget
|
|
|
|
class TestApiWidget(unittest.TestCase):
|
|
"""ApiWidget unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def make_instance(self, include_optional) -> ApiWidget:
|
|
"""Test ApiWidget
|
|
include_option is a boolean, when False only required
|
|
params are included, when True both required and
|
|
optional params are included """
|
|
# uncomment below to create an instance of `ApiWidget`
|
|
"""
|
|
model = ApiWidget()
|
|
if include_optional:
|
|
return ApiWidget(
|
|
id = '1234',
|
|
title = 'Widget Title',
|
|
visual_mode = 'Full',
|
|
embed_url = 'https://embed.thousandeyes.com/e/00aa:3039802d-5c76-42d2-9a93-c6e5f9d3122f',
|
|
is_embedded = True,
|
|
metric_group = 'BGP',
|
|
direction = 'FROM_TARGET',
|
|
metric = 'ENDPOINT_GATEWAY_CPU_LOAD_PERCENT',
|
|
filters = {"TEST":[5187,5227],"ENDPOINT_MACHINE_ID":["fbd0050c-07f7-43f7-9631-14b32f096962"]},
|
|
measure = thousandeyes_sdk.dashboards.models.api_widget_measure.ApiWidgetMeasure(
|
|
type = 'MEAN',
|
|
percentile_value = 95.0, ),
|
|
fixed_timespan = thousandeyes_sdk.dashboards.models.api_duration.ApiDuration(
|
|
value = 10,
|
|
unit = 'Days', ),
|
|
api_link = '',
|
|
should_exclude_alert_suppression_windows = True,
|
|
links = thousandeyes_sdk.dashboards.models.self_links.SelfLinks(
|
|
self = thousandeyes_sdk.dashboards.models.link.Link(
|
|
href = 'https://api.thousandeyes.com/v7/link/to/resource/id',
|
|
templated = True,
|
|
type = '',
|
|
deprecation = '',
|
|
name = '',
|
|
profile = '',
|
|
title = '',
|
|
hreflang = '', ), ),
|
|
type = 'Time Series: Line',
|
|
agents = 'Enterprise Agents',
|
|
show = 'Owned Agents',
|
|
data_source = 'CLOUD_AND_ENTERPRISE_AGENTS',
|
|
alert_types = [
|
|
'Network - End-to-End (Server)'
|
|
],
|
|
limit_to = 15,
|
|
active_within = None,
|
|
min_scale = 1.0,
|
|
max_scale = 100.0,
|
|
unit = 'Mbps',
|
|
group_by = 'ALL',
|
|
cards = 'ALL',
|
|
group_cards_by = 'ALL',
|
|
columns = 1,
|
|
limit = 10,
|
|
sort_by = 'alphabetical',
|
|
sort_direction = 'ascending',
|
|
is_geo_map_per_test = True,
|
|
axis_group_by = 'ALL',
|
|
show_labels = True,
|
|
is_horizontal_bar_chart = True,
|
|
compare_to_previous_value = True,
|
|
row_group_by = 'ALL',
|
|
multi_metric_columns = [
|
|
thousandeyes_sdk.dashboards.models.api_multi_metric_column.ApiMultiMetricColumn(
|
|
id = '',
|
|
data_source = 'ENDPOINT_AGENTS',
|
|
metric_group = 'BGP',
|
|
direction = 'FROM_TARGET',
|
|
metric = 'ENDPOINT_GATEWAY_CPU_LOAD_PERCENT',
|
|
filters = {"TEST":[5187,5227],"ENDPOINT_MACHINE_ID":["fbd0050c-07f7-43f7-9631-14b32f096962"]},
|
|
measure = thousandeyes_sdk.dashboards.models.api_widget_measure.ApiWidgetMeasure(
|
|
type = 'MEAN',
|
|
percentile_value = 95.0, ), )
|
|
],
|
|
number_cards = [
|
|
thousandeyes_sdk.dashboards.models.api_numbers_card.ApiNumbersCard()
|
|
],
|
|
column_group_by = 'ALL',
|
|
filter = thousandeyes_sdk.dashboards.models.api_widget_filter_api_test_table_filter_key.ApiWidgetFilterApiTestTableFilterKey(
|
|
filters = [
|
|
thousandeyes_sdk.dashboards.models.api_multi_search_filter_api_test_table_filter_key.ApiMultiSearchFilterApiTestTableFilterKey(
|
|
key = 'Target',
|
|
value = '', )
|
|
],
|
|
type = 'all', ),
|
|
exclude = thousandeyes_sdk.dashboards.models.api_widget_filter_api_test_table_filter_key.ApiWidgetFilterApiTestTableFilterKey(
|
|
filters = [
|
|
thousandeyes_sdk.dashboards.models.api_multi_search_filter_api_test_table_filter_key.ApiMultiSearchFilterApiTestTableFilterKey(
|
|
key = 'Target',
|
|
value = '', )
|
|
],
|
|
type = 'all', ),
|
|
show_timeseries_overall_baseline = True,
|
|
is_timeseries_one_chart_per_line = True
|
|
)
|
|
else:
|
|
return ApiWidget(
|
|
type = 'Time Series: Line',
|
|
)
|
|
"""
|
|
|
|
def testApiWidget(self):
|
|
"""Test ApiWidget"""
|
|
# inst_req_only = self.make_instance(include_optional=False)
|
|
# inst_req_and_optional = self.make_instance(include_optional=True)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|