Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.67 KB

File metadata and controls

34 lines (25 loc) · 1.67 KB

AgentAssignmentByFrontPanelPort

Details of an agent assignment by front panel port

Properties

Name Type Description Notes
capture_settings CaptureSettings The capture settings of the front panel port that is assigned. [optional]
compute_resources_by_type Dict[str, int] The number of compute resources to assign per compute node type name + aggregation mode. Each key must be formatted as '<computeNodeTypeName>:<aggregationMode>'. [optional]
front_panel_port_id str The id of the front panel port that is assigned.
id str
links List[APILink] [optional]

Example

from cyperf.models.agent_assignment_by_front_panel_port import AgentAssignmentByFrontPanelPort

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

# convert the object into a dict
agent_assignment_by_front_panel_port_dict = agent_assignment_by_front_panel_port_instance.to_dict()
# create an instance of AgentAssignmentByFrontPanelPort from a dict
agent_assignment_by_front_panel_port_from_dict = AgentAssignmentByFrontPanelPort.from_dict(agent_assignment_by_front_panel_port_dict)

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