This commit is contained in:
Miguel Pragosa 2026-01-29 14:23:04 +00:00 committed by GitHub
commit e02fff9c3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
24 changed files with 35 additions and 22 deletions

View File

@ -12,7 +12,7 @@ This API provides the following operations to manage your organization:
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -5,7 +5,7 @@ Manage Cloud and Enterprise Agents available to your account in ThousandEyes.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -12,7 +12,7 @@ For more information about the alerts, see [Alerts](https://docs.thousandeyes.co
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -9,7 +9,7 @@ For more information about monitors, see [Inside-Out BGP Visibility](https://doc
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -13,7 +13,7 @@ For more information about credentials, see [Working With Secure Credentials](ht
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -3,7 +3,7 @@ Manage ThousandEyes Dashboards.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -9,7 +9,7 @@ To access Emulation API operations, the following permissions are required:
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -5,7 +5,7 @@ For more information about Endpoint Agents, see [Endpoint Agents](https://docs.t
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -15,6 +15,7 @@ Name | Type | Description | Notes
**kernel_version** | **str** | | [optional] [readonly] **kernel_version** | **str** | | [optional] [readonly]
**manufacturer** | **str** | | [optional] [readonly] **manufacturer** | **str** | | [optional] [readonly]
**model** | **str** | | [optional] [readonly] **model** | **str** | | [optional] [readonly]
**serial_number** | **str** | | [optional] [readonly]
**last_seen** | **datetime** | The last time the agent checked-in. | [optional] [readonly] **last_seen** | **datetime** | The last time the agent checked-in. | [optional] [readonly]
**status** | [**Status**](Status.md) | | [optional] **status** | [**Status**](Status.md) | | [optional]
**deleted** | **bool** | | [optional] [readonly] **deleted** | **bool** | | [optional] [readonly]

View File

@ -45,6 +45,7 @@ class EndpointAgent(BaseModel):
kernel_version: Optional[StrictStr] = Field(default=None, alias="kernelVersion") kernel_version: Optional[StrictStr] = Field(default=None, alias="kernelVersion")
manufacturer: Optional[StrictStr] = None manufacturer: Optional[StrictStr] = None
model: Optional[StrictStr] = None model: Optional[StrictStr] = None
serial_number: Optional[StrictStr] = Field(default=None, alias="serialNumber")
last_seen: Optional[datetime] = Field(default=None, description="The last time the agent checked-in.", alias="lastSeen") last_seen: Optional[datetime] = Field(default=None, description="The last time the agent checked-in.", alias="lastSeen")
status: Optional[Status] = None status: Optional[Status] = None
deleted: Optional[StrictBool] = None deleted: Optional[StrictBool] = None
@ -65,7 +66,7 @@ class EndpointAgent(BaseModel):
tcp_driver_available: Optional[StrictBool] = Field(default=None, description="Status of TCP test support on the agent.", alias="tcpDriverAvailable") tcp_driver_available: Optional[StrictBool] = Field(default=None, description="Status of TCP test support on the agent.", alias="tcpDriverAvailable")
npcap_version: Optional[StrictStr] = Field(default=None, description="For Windows agents, the version of the NPCAP driver that the agent has loaded.", alias="npcapVersion") npcap_version: Optional[StrictStr] = Field(default=None, description="For Windows agents, the version of the NPCAP driver that the agent has loaded.", alias="npcapVersion")
links: Optional[SelfLinks] = Field(default=None, alias="_links") links: Optional[SelfLinks] = Field(default=None, alias="_links")
__properties: ClassVar[List[str]] = ["id", "aid", "name", "computerName", "osVersion", "platform", "kernelVersion", "manufacturer", "model", "lastSeen", "status", "deleted", "version", "targetVersion", "createdAt", "numberOfClients", "publicIP", "location", "clients", "totalMemory", "agentType", "vpnProfiles", "externalMetadata", "networkInterfaceProfiles", "asnDetails", "licenseType", "tcpDriverAvailable", "npcapVersion", "_links"] __properties: ClassVar[List[str]] = ["id", "aid", "name", "computerName", "osVersion", "platform", "kernelVersion", "manufacturer", "model", "serialNumber", "lastSeen", "status", "deleted", "version", "targetVersion", "createdAt", "numberOfClients", "publicIP", "location", "clients", "totalMemory", "agentType", "vpnProfiles", "externalMetadata", "networkInterfaceProfiles", "asnDetails", "licenseType", "tcpDriverAvailable", "npcapVersion", "_links"]
model_config = ConfigDict( model_config = ConfigDict(
populate_by_name=True, populate_by_name=True,
@ -118,6 +119,7 @@ class EndpointAgent(BaseModel):
* OpenAPI `readOnly` fields are excluded. * OpenAPI `readOnly` fields are excluded.
* OpenAPI `readOnly` fields are excluded. * 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([ excluded_fields: Set[str] = set([
"id", "id",
@ -126,6 +128,7 @@ class EndpointAgent(BaseModel):
"kernel_version", "kernel_version",
"manufacturer", "manufacturer",
"model", "model",
"serial_number",
"last_seen", "last_seen",
"deleted", "deleted",
"version", "version",
@ -205,6 +208,7 @@ class EndpointAgent(BaseModel):
"kernelVersion": obj.get("kernelVersion"), "kernelVersion": obj.get("kernelVersion"),
"manufacturer": obj.get("manufacturer"), "manufacturer": obj.get("manufacturer"),
"model": obj.get("model"), "model": obj.get("model"),
"serialNumber": obj.get("serialNumber"),
"lastSeen": obj.get("lastSeen"), "lastSeen": obj.get("lastSeen"),
"status": obj.get("status"), "status": obj.get("status"),
"deleted": obj.get("deleted"), "deleted": obj.get("deleted"),

View File

@ -108,6 +108,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -276,6 +277,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -498,6 +500,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -656,6 +659,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -825,6 +829,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -1017,6 +1022,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -1175,6 +1181,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"
@ -1377,6 +1384,7 @@ class TestEndpointAgentsApi(unittest.TestCase):
"computerName" : "DESKJET-123", "computerName" : "DESKJET-123",
"model" : "MacBookAir7,2", "model" : "MacBookAir7,2",
"id" : "861b7557-cd57-4bbb-b648-00bddf88ef49", "id" : "861b7557-cd57-4bbb-b648-00bddf88ef49",
"serialNumber" : "xaab2ba4-d40f-4e80-9363-7e4826556055",
"externalMetadata" : [ { "externalMetadata" : [ {
"key" : "anyConnectDeviceId", "key" : "anyConnectDeviceId",
"value" : "DF434343D" "value" : "DF434343D"

View File

@ -13,7 +13,7 @@ The URLs for these API test data endpoints are provided within the test definiti
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -4,7 +4,7 @@ Manage labels applied to endpoint agents using this API.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -3,7 +3,7 @@ Retrieve results for scheduled and dynamic tests on endpoint agents.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -5,7 +5,7 @@ Manage endpoint agent dynamic and scheduled tests using the Endpoint Tests API.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -12,7 +12,7 @@ With the Events API, you can perform the following tasks on the ThousandEyes pla
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -6,7 +6,7 @@ The response does not include the immediate test results. Use the Test Results e
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -14,7 +14,7 @@ For more information about Internet Insights, see the [Internet Insights](https:
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -3,7 +3,7 @@ Creates a new test snapshot in ThousandEyes.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -15,7 +15,7 @@ For more information about ThousandEyes for OpenTelemetry, see the [product docu
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -16,7 +16,7 @@ Things to note with the ThousandEyes Tags API:
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -3,7 +3,7 @@ Get test result metrics for Network and Application Synthetics tests.
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -4,7 +4,7 @@ This API allows you to list, create, edit, and delete Network and Application Sy
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator

View File

@ -18,7 +18,7 @@ Refer to the Usage API operations for detailed usage instructions and optional p
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
- API version: 7.0.73 - API version: 7.0.74
- Generator version: 7.6.0 - Generator version: 7.6.0
- Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator