Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.09 KB

File metadata and controls

31 lines (22 loc) · 1.09 KB

AgentConfigurationUpdate

Properties

Name Type Description Notes
remote_branch str [optional]
remote_name str [optional]
remote_uri str [optional]

Example

from instana_client.models.agent_configuration_update import AgentConfigurationUpdate

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

# convert the object into a dict
agent_configuration_update_dict = agent_configuration_update_instance.to_dict()
# create an instance of AgentConfigurationUpdate from a dict
agent_configuration_update_from_dict = AgentConfigurationUpdate.from_dict(agent_configuration_update_dict)

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