thousandeyes-sdk-python/thousandeyes-sdk-agents/src/thousandeyes_sdk/agents/models/agent_details.py
Miguel Pragosa 73e713bbaa
Some checks failed
Python CI / build (push) Has been cancelled
[GitHub Bot] Generated python SDK (#91)
Co-authored-by: API Team <api-team@thousandeyes.com>
2025-01-23 11:06:17 +00:00

158 lines
6.5 KiB
Python

# coding: utf-8
"""
Agents API
## Overview Manage Cloud and Enterprise Agents available to your account in ThousandEyes.
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
from __future__ import annotations
import json
import pprint
from pydantic import BaseModel, ConfigDict, Field, StrictStr, ValidationError, field_validator
from typing import Any, List, Optional
from thousandeyes_sdk.agents.models.cloud_agent_detail import CloudAgentDetail
from thousandeyes_sdk.agents.models.enterprise_agent_cluster_detail import EnterpriseAgentClusterDetail
from thousandeyes_sdk.agents.models.enterprise_agent_detail import EnterpriseAgentDetail
from pydantic import StrictStr, Field, model_serializer
from typing import Union, List, Set, Optional, Dict
from typing_extensions import Literal, Self
AGENTDETAILS_ONE_OF_SCHEMAS = ["CloudAgentDetail", "EnterpriseAgentClusterDetail", "EnterpriseAgentDetail"]
class AgentDetails(BaseModel):
"""
AgentDetails
"""
# data type: CloudAgentDetail
oneof_schema_1_validator: Optional[CloudAgentDetail] = None
# data type: EnterpriseAgentDetail
oneof_schema_2_validator: Optional[EnterpriseAgentDetail] = None
# data type: EnterpriseAgentClusterDetail
oneof_schema_3_validator: Optional[EnterpriseAgentClusterDetail] = None
actual_instance: Optional[Union[CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail]] = None
one_of_schemas: Set[str] = { "CloudAgentDetail", "EnterpriseAgentClusterDetail", "EnterpriseAgentDetail" }
model_config = ConfigDict(
validate_assignment=True,
protected_namespaces=(),
)
discriminator_value_class_map: Dict[str, str] = {
}
def __init__(self, *args, **kwargs) -> None:
if args:
if len(args) > 1:
raise ValueError("If a position argument is used, only 1 is allowed to set `actual_instance`")
if kwargs:
raise ValueError("If a position argument is used, keyword arguments cannot be used.")
super().__init__(actual_instance=args[0])
else:
super().__init__(**kwargs)
@field_validator('actual_instance')
def actual_instance_must_validate_oneof(cls, v):
instance = AgentDetails.model_construct()
error_messages = []
match = 0
# validate data type: CloudAgentDetail
if not isinstance(v, CloudAgentDetail):
error_messages.append(f"Error! Input type `{type(v)}` is not `CloudAgentDetail`")
else:
match += 1
# validate data type: EnterpriseAgentDetail
if not isinstance(v, EnterpriseAgentDetail):
error_messages.append(f"Error! Input type `{type(v)}` is not `EnterpriseAgentDetail`")
else:
match += 1
# validate data type: EnterpriseAgentClusterDetail
if not isinstance(v, EnterpriseAgentClusterDetail):
error_messages.append(f"Error! Input type `{type(v)}` is not `EnterpriseAgentClusterDetail`")
else:
match += 1
if match > 1:
# more than 1 match
raise ValueError("Multiple matches found when setting `actual_instance` in AgentDetails with oneOf schemas: CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail. Details: " + ", ".join(error_messages))
elif match == 0:
# no match
raise ValueError("No match found when setting `actual_instance` in AgentDetails with oneOf schemas: CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail. Details: " + ", ".join(error_messages))
else:
return v
@classmethod
def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
return cls.from_json(json.dumps(obj))
@classmethod
def from_json(cls, json_str: str) -> Self:
"""Returns the object represented by the json string"""
instance = cls.model_construct()
error_messages = []
match = 0
# deserialize data into CloudAgentDetail
try:
instance.actual_instance = CloudAgentDetail.from_json(json_str)
match += 1
except (ValidationError, ValueError) as e:
error_messages.append(str(e))
# deserialize data into EnterpriseAgentDetail
try:
instance.actual_instance = EnterpriseAgentDetail.from_json(json_str)
match += 1
except (ValidationError, ValueError) as e:
error_messages.append(str(e))
# deserialize data into EnterpriseAgentClusterDetail
try:
instance.actual_instance = EnterpriseAgentClusterDetail.from_json(json_str)
match += 1
except (ValidationError, ValueError) as e:
error_messages.append(str(e))
if match > 1:
# more than 1 match
raise ValueError("Multiple matches found when deserializing the JSON string into AgentDetails with oneOf schemas: CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail. Details: " + ", ".join(error_messages))
elif match == 0:
# no match
raise ValueError("No match found when deserializing the JSON string into AgentDetails with oneOf schemas: CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail. Details: " + ", ".join(error_messages))
else:
return instance
@model_serializer(when_used="json")
def serialize_model(self):
return json.loads(self.to_json())
def to_json(self) -> str:
"""Returns the JSON representation of the actual instance"""
if self.actual_instance is None:
return "null"
if hasattr(self.actual_instance, "to_json") and callable(self.actual_instance.to_json):
return self.actual_instance.to_json()
else:
return json.dumps(self.actual_instance)
def to_dict(self) -> Optional[Union[Dict[str, Any], CloudAgentDetail, EnterpriseAgentClusterDetail, EnterpriseAgentDetail]]:
"""Returns the dict representation of the actual instance"""
if self.actual_instance is None:
return None
if hasattr(self.actual_instance, "to_dict") and callable(self.actual_instance.to_dict):
return self.actual_instance.to_dict()
else:
# primitive type
return self.actual_instance
def to_str(self) -> str:
"""Returns the string representation of the actual instance"""
return pprint.pformat(self.model_dump())