Various information about agent auto update configuration
| 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] |
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)