mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
144 lines
7.3 KiB
Python
144 lines
7.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Endpoint Tests API
|
|
|
|
Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API.
|
|
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
from __future__ import annotations
|
|
import pprint
|
|
import re # noqa: F401
|
|
import json
|
|
|
|
from datetime import datetime
|
|
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
|
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
from thousandeyes_sdk.endpoint_tests.models.endpoint_agent_selector_config import EndpointAgentSelectorConfig
|
|
from thousandeyes_sdk.endpoint_tests.models.endpoint_ip_version_template import EndpointIpVersionTemplate
|
|
from thousandeyes_sdk.endpoint_tests.models.endpoint_scheduled_test_type import EndpointScheduledTestType
|
|
from thousandeyes_sdk.endpoint_tests.models.endpoint_test_links import EndpointTestLinks
|
|
from thousandeyes_sdk.endpoint_tests.models.endpoint_test_protocol import EndpointTestProtocol
|
|
from thousandeyes_sdk.endpoint_tests.models.test_interval import TestInterval
|
|
from thousandeyes_sdk.endpoint_tests.models.test_probe_mode_response import TestProbeModeResponse
|
|
from typing import Optional, Set
|
|
from typing_extensions import Self
|
|
|
|
class EndpointTest(BaseModel):
|
|
"""
|
|
EndpointTest
|
|
""" # noqa: E501
|
|
aid: Optional[StrictStr] = Field(default=None, description="A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint.")
|
|
links: Optional[EndpointTestLinks] = Field(default=None, alias="_links")
|
|
agent_selector_config: Optional[EndpointAgentSelectorConfig] = Field(default=None, alias="agentSelectorConfig")
|
|
created_date: Optional[datetime] = Field(default=None, description="UTC created date (ISO date-time format).", alias="createdDate")
|
|
interval: Optional[TestInterval] = None
|
|
is_enabled: Optional[StrictBool] = Field(default=True, description="Indicates if test is enabled.", alias="isEnabled")
|
|
is_saved_event: Optional[StrictBool] = Field(default=None, description="Indicates if the test is a saved event.", alias="isSavedEvent")
|
|
has_path_trace_in_session: Optional[StrictBool] = Field(default=None, description="Enables \"in session\" path trace. When enabled, this option initiates a TCP session with the target server and sends path trace packets within the established TCP session.", alias="hasPathTraceInSession")
|
|
modified_date: Optional[datetime] = Field(default=None, description="UTC last modification date (ISO date-time format).", alias="modifiedDate")
|
|
network_measurements: Optional[StrictBool] = Field(default=True, description="Enable or disable network measurements. Set to true to enable or false to disable network measurements.", alias="networkMeasurements")
|
|
protocol: Optional[EndpointTestProtocol] = None
|
|
ip_version: Optional[EndpointIpVersionTemplate] = Field(default=None, alias="ipVersion")
|
|
server: Optional[StrictStr] = Field(default=None, description="Target domain name or IP address.")
|
|
test_id: Optional[StrictStr] = Field(default=None, description="Each test is assigned a unique ID to access test data from other endpoints.", alias="testId")
|
|
test_name: Optional[StrictStr] = Field(default=None, description="Name of the test.", alias="testName")
|
|
type: EndpointScheduledTestType
|
|
tcp_probe_mode: Optional[TestProbeModeResponse] = Field(default=None, alias="tcpProbeMode")
|
|
port: Optional[StrictInt] = Field(default=443, description="Port number.")
|
|
__properties: ClassVar[List[str]] = ["aid", "_links", "agentSelectorConfig", "createdDate", "interval", "isEnabled", "isSavedEvent", "hasPathTraceInSession", "modifiedDate", "networkMeasurements", "protocol", "ipVersion", "server", "testId", "testName", "type", "tcpProbeMode", "port"]
|
|
|
|
model_config = ConfigDict(
|
|
populate_by_name=True,
|
|
validate_assignment=True,
|
|
protected_namespaces=(),
|
|
extra="allow",
|
|
)
|
|
|
|
|
|
def to_str(self) -> str:
|
|
"""Returns the string representation of the model using alias"""
|
|
return pprint.pformat(self.model_dump(by_alias=True))
|
|
|
|
def to_json(self) -> str:
|
|
"""Returns the JSON representation of the model using alias"""
|
|
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
return self.model_dump_json(by_alias=True, exclude_unset=True, exclude_none=True)
|
|
|
|
@classmethod
|
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
"""Create an instance of EndpointTest from a JSON string"""
|
|
return cls.from_dict(json.loads(json_str))
|
|
|
|
def to_dict(self) -> Dict[str, Any]:
|
|
"""Return the dictionary representation of the model using alias.
|
|
|
|
This has the following differences from calling pydantic's
|
|
`self.model_dump(by_alias=True)`:
|
|
|
|
* `None` is only added to the output dict for nullable fields that
|
|
were set at model initialization. Other fields with value `None`
|
|
are ignored.
|
|
* OpenAPI `readOnly` fields are excluded.
|
|
* OpenAPI `readOnly` fields are excluded.
|
|
* OpenAPI `readOnly` fields are excluded.
|
|
* OpenAPI `readOnly` fields are excluded.
|
|
"""
|
|
excluded_fields: Set[str] = set([
|
|
"created_date",
|
|
"is_saved_event",
|
|
"modified_date",
|
|
"test_id",
|
|
])
|
|
|
|
_dict = self.model_dump(
|
|
by_alias=True,
|
|
exclude=excluded_fields,
|
|
exclude_none=True,
|
|
)
|
|
# override the default output from pydantic by calling `to_dict()` of links
|
|
if self.links:
|
|
_dict['_links'] = self.links.to_dict()
|
|
# override the default output from pydantic by calling `to_dict()` of agent_selector_config
|
|
if self.agent_selector_config:
|
|
_dict['agentSelectorConfig'] = self.agent_selector_config.to_dict()
|
|
return _dict
|
|
|
|
@classmethod
|
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
"""Create an instance of EndpointTest from a dict"""
|
|
if obj is None:
|
|
return None
|
|
|
|
if not isinstance(obj, dict):
|
|
return cls.model_validate(obj)
|
|
|
|
_obj = cls.model_validate({
|
|
"aid": obj.get("aid"),
|
|
"_links": EndpointTestLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None,
|
|
"agentSelectorConfig": EndpointAgentSelectorConfig.from_dict(obj["agentSelectorConfig"]) if obj.get("agentSelectorConfig") is not None else None,
|
|
"createdDate": obj.get("createdDate"),
|
|
"interval": obj.get("interval"),
|
|
"isEnabled": obj.get("isEnabled") if obj.get("isEnabled") is not None else True,
|
|
"isSavedEvent": obj.get("isSavedEvent"),
|
|
"hasPathTraceInSession": obj.get("hasPathTraceInSession"),
|
|
"modifiedDate": obj.get("modifiedDate"),
|
|
"networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
|
|
"protocol": obj.get("protocol"),
|
|
"ipVersion": obj.get("ipVersion"),
|
|
"server": obj.get("server"),
|
|
"testId": obj.get("testId"),
|
|
"testName": obj.get("testName"),
|
|
"type": obj.get("type"),
|
|
"tcpProbeMode": obj.get("tcpProbeMode"),
|
|
"port": obj.get("port") if obj.get("port") is not None else 443
|
|
})
|
|
return _obj
|
|
|
|
|