@@ -159,7 +159,9 @@ export namespace DeploymentStateEvent {
159159 entrypoint_rel_path ?: string ;
160160
161161 /**
162- * Environment variables configured for this deployment
162+ * Environment variables configured for this deployment. Values are redacted for
163+ * API key, OAuth, and managed-auth callers, which receive every key with an empty
164+ * string value. Only dashboard sessions receive the actual values.
163165 */
164166 env_vars ?: { [ key : string ] : string } ;
165167
@@ -205,7 +207,9 @@ export interface DeploymentCreateResponse {
205207 entrypoint_rel_path ?: string ;
206208
207209 /**
208- * Environment variables configured for this deployment
210+ * Environment variables configured for this deployment. Values are redacted for
211+ * API key, OAuth, and managed-auth callers, which receive every key with an empty
212+ * string value. Only dashboard sessions receive the actual values.
209213 */
210214 env_vars ?: { [ key : string ] : string } ;
211215
@@ -250,7 +254,9 @@ export interface DeploymentRetrieveResponse {
250254 entrypoint_rel_path ?: string ;
251255
252256 /**
253- * Environment variables configured for this deployment
257+ * Environment variables configured for this deployment. Values are redacted for
258+ * API key, OAuth, and managed-auth callers, which receive every key with an empty
259+ * string value. Only dashboard sessions receive the actual values.
254260 */
255261 env_vars ?: { [ key : string ] : string } ;
256262
@@ -295,7 +301,9 @@ export interface DeploymentListResponse {
295301 entrypoint_rel_path ?: string ;
296302
297303 /**
298- * Environment variables configured for this deployment
304+ * Environment variables configured for this deployment. Values are redacted for
305+ * API key, OAuth, and managed-auth callers, which receive every key with an empty
306+ * string value. Only dashboard sessions receive the actual values.
299307 */
300308 env_vars ?: { [ key : string ] : string } ;
301309
@@ -361,7 +369,8 @@ export namespace DeploymentFollowResponse {
361369 version : string ;
362370
363371 /**
364- * Environment variables configured for this app version
372+ * Environment variables configured for this app version. Not currently populated
373+ * on streamed app_version_summary events.
365374 */
366375 env_vars ?: { [ key : string ] : string } ;
367376 }
0 commit comments