Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.26 KB

File metadata and controls

34 lines (25 loc) · 1.26 KB

AgentPool

An AgentPool is a collection of agents that serve a common purpose. An AgentPool has a unique ID within an org, and contains a collection of agents disjoint to every other AgentPool (i.e. no two AgentPools share an Agent).

Properties

Name Type Description Notes
agents List[Agent] [optional]
id str [optional] [readonly]
name str [optional]
operational_status OperationalStatus [optional]
type AgentType [optional]

Example

from okta.models.agent_pool import AgentPool

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

# convert the object into a dict
agent_pool_dict = agent_pool_instance.to_dict()
# create an instance of AgentPool from a dict
agent_pool_from_dict = AgentPool.from_dict(agent_pool_dict)

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