Setting for auto-update
| Name | Type | Description | Notes |
|---|---|---|---|
| agent_type | AgentType | [optional] | |
| continue_on_error | bool | [optional] | |
| latest_version | str | [optional] | |
| minimal_supported_version | str | [optional] | |
| pool_id | str | [optional] [readonly] | |
| pool_name | str | [optional] | |
| release_channel | ReleaseChannel | [optional] |
from okta.models.agent_pool_update_setting import AgentPoolUpdateSetting
# TODO update the JSON string below
json = "{}"
# create an instance of AgentPoolUpdateSetting from a JSON string
agent_pool_update_setting_instance = AgentPoolUpdateSetting.from_json(json)
# print the JSON string representation of the object
print(AgentPoolUpdateSetting.to_json())
# convert the object into a dict
agent_pool_update_setting_dict = agent_pool_update_setting_instance.to_dict()
# create an instance of AgentPoolUpdateSetting from a dict
agent_pool_update_setting_from_dict = AgentPoolUpdateSetting.from_dict(agent_pool_update_setting_dict)