Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.67 KB

File metadata and controls

35 lines (26 loc) · 1.67 KB

AgentGraphPatch

Request body for updating an agent graph. If rootConfigKey or edges are present, both must be present.

Properties

Name Type Description Notes
name str A human-readable name for the agent graph [optional]
description str A description of the agent graph [optional]
maintainer_id str The ID of the member who maintains this agent graph. Pass an empty string to remove maintainer. [optional]
maintainer_team_key str The key of the team that maintains this agent graph. Pass an empty string to remove maintainer. [optional]
root_config_key str The AI Config key of the root node. If present, edges must also be present. [optional]
edges List[AgentGraphEdge] The edges in the graph. If present, rootConfigKey must also be present. Replaces all existing edges. [optional]

Example

from launchdarkly_api.models.agent_graph_patch import AgentGraphPatch

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

# convert the object into a dict
agent_graph_patch_dict = agent_graph_patch_instance.to_dict()
# create an instance of AgentGraphPatch from a dict
agent_graph_patch_from_dict = AgentGraphPatch.from_dict(agent_graph_patch_dict)

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