DeploymentEnvironment

An environment that deployments target (e.g. production, staging). Environments are auto-created the first time a deployment references them, and carry whether change monitoring is enabled plus a short human-authored description.

Field Type Behavior Description
name string OUTPUT_ONLY Resource name (deployment-environments/{environment})
monitoring_enabled bool   Whether deployment monitoring is enabled for this environment. Defaults to true when auto-created
description string   Short, human-authored description of what this environment is (e.g. “Live customer traffic” or “Pre-prod mirror, safe to ignore for alerting”). Empty until set
create_time timestamp OUTPUT_ONLY When the environment record was created
update_time timestamp OUTPUT_ONLY When the environment record was last updated
delete_time timestamp OUTPUT_ONLY When the environment was soft-deleted (null if active)

Example

{
  "name": "deployment-environments/production",
  "monitoringEnabled": true,
  "description": "Live customer traffic.",
  "createTime": "2026-02-13T01:04:29.873715Z",
  "updateTime": "2026-06-26T22:40:00.000000Z"
}

This site uses Just the Docs, a documentation theme for Jekyll.