Skip to content

Commit

Permalink
docs: Update docs for POST /v1/projects/{project_id}/revisions endp…
Browse files Browse the repository at this point in the history
…oint (#2926)
  • Loading branch information
andrewnguonly authored Jan 3, 2025
1 parent d74ec2c commit 0809868
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/docs/cloud/reference/api/openapi_control_plane.json
Original file line number Diff line number Diff line change
Expand Up @@ -386,16 +386,16 @@
},
"env_vars": {
"type": "array",
"description": "List of environment variables or secrets.\n\nThe complete list of environment variables and secrets must ALWAYS be specified in every request to `POST /{version}/projects/{project_id}/revisions`.",
"description": "List of environment variables or secrets.\n\nIf this field is omitted or set to `null`, the previous revision's `env_vars` value is used.",
"items": {
"$ref": "#/components/schemas/EnvVar"
},
"default": "null"
},
"shareable": {
"type": "boolean",
"description": "Boolean flag to configure if a deployment is shareable through LangGraph Studio.\n\nThis field does not apply to BYOC deployments.",
"default": false
"type": ["boolean", "null"],
"description": "Boolean flag to configure if a deployment is shareable through LangGraph Studio.\n\nIf this field is omitted or set to `null`, the previous revision's `shareable` value is used. This field does not apply to BYOC deployments.",
"default": "null"
},
"container_spec": {
"description": "If this field is omitted or set to `null`, the previous revision's `container_spec` value is used.",
Expand Down

0 comments on commit 0809868

Please sign in to comment.