Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.34 KB

File metadata and controls

36 lines (27 loc) · 1.34 KB

AgentPoolUpdateSetting

Setting for auto-update

Properties

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]

Example

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)

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