Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

AgentAssignmentByPort

Details of an agent assignment by port

Properties

Name Type Description Notes
capture_settings CaptureSettings The capture settings of the port that is assigned. [optional]
id str
links List[APILink] [optional]
port_id str The id of the port that is assigned. [optional]

Example

from cyperf.models.agent_assignment_by_port import AgentAssignmentByPort

# TODO update the JSON string below
json = "{}"
# create an instance of AgentAssignmentByPort from a JSON string
agent_assignment_by_port_instance = AgentAssignmentByPort.from_json(json)
# print the JSON string representation of the object
print(AgentAssignmentByPort.to_json())

# convert the object into a dict
agent_assignment_by_port_dict = agent_assignment_by_port_instance.to_dict()
# create an instance of AgentAssignmentByPort from a dict
agent_assignment_by_port_from_dict = AgentAssignmentByPort.from_dict(agent_assignment_by_port_dict)

[Back to Model list] [Back to API list] [Back to README]