Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.52 KB

File metadata and controls

41 lines (32 loc) · 1.52 KB

AgentPoolUpdate

Various information about agent auto update configuration

Properties

Name Type Description Notes
agents List[Agent] [optional]
agent_type AgentType [optional]
enabled bool [optional]
id str [optional] [readonly]
name str [optional]
notify_admin bool [optional]
reason str [optional]
schedule AutoUpdateSchedule [optional]
sort_order int [optional]
status AgentUpdateJobStatus [optional]
target_version str [optional]
links LinksSelf [optional]

Example

from okta.models.agent_pool_update import AgentPoolUpdate

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

# convert the object into a dict
agent_pool_update_dict = agent_pool_update_instance.to_dict()
# create an instance of AgentPoolUpdate from a dict
agent_pool_update_from_dict = AgentPoolUpdate.from_dict(agent_pool_update_dict)

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