Skip to content

Commit 5360446

Browse files
Update LGP control plane API data models (#136)
### Summary Quick updates to the LGP Control Plane API data models. 1. Updated all of the data model heads to be plural (`Deployment` --> `Deployments`). 1. Added `Integrations` data model. This data model was always there, but we never exposed it in the API spec until recently. 1. Added `Listeners` data model. This data model is new. ### Next Steps 1. Update `Deploy to Hybrid` page with new instructions for deploying to configuring a `Listener`. Will do this in a different PR.
1 parent e90e41c commit 5360446

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/langgraph-platform/control-plane.mdx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,24 @@ The Control Plane UI is embedded in [LangSmith](https://docs.smith.langchain.com
2626

2727
This section describes the data model of the control plane API. The API is used to create, update, and delete deployments. See the [control plane API reference](/langgraph-platform/api-ref-control-plane) for more details.
2828

29-
### Deployment
29+
### Integrations
30+
31+
An integration is an abstraction for a `git` repository provider (e.g. GitHub). It contains all of the required metadata needed to connect with and deploy from a `git` repository.
32+
33+
### Deployments
3034

3135
A deployment is an instance of a LangGraph Server. A single deployment can have many revisions.
3236

33-
### Revision
37+
### Revisions
3438

3539
A revision is an iteration of a deployment. When a new deployment is created, an initial revision is automatically created. To deploy code changes or update secrets for a deployment, a new revision must be created.
3640

41+
### Listeners
42+
43+
A listener is an instance of a ["listener" application](/langgraph-platform/data-plane#”listener”-application). A listener contains metadata about the application (e.g. version) and metadata about the compute infrastructure where it can deploy to (e.g. Kubernetes namespaces).
44+
45+
The listener data model only applies for [Hybrid](/langgraph-platform/hybrid) and [Self-Hosted](/langgraph-platform/self-hosted) deployments.
46+
3747
## Control Plane Features
3848

3949
This section describes various features of the control plane.

0 commit comments

Comments
 (0)