Environment Variables
Settings and secrets for Vals
List
client.vals.environmentVariables.list(stringvalID, EnvironmentVariableListParams { limit, offset } query, RequestOptionsoptions?): PageCursorURL<EnvironmentVariableListResponse { createdAt, description, key, updatedAt } >
/v2/vals/{val_id}/environment_variables
Create
client.vals.environmentVariables.create(stringvalID, EnvironmentVariableCreateParams { key, value, description } body, RequestOptionsoptions?): EnvironmentVariableCreateResponse { createdAt, description, key, updatedAt }
/v2/vals/{val_id}/environment_variables
Update
client.vals.environmentVariables.update(stringkey, EnvironmentVariableUpdateParams { val_id, value, description } params, RequestOptionsoptions?): EnvironmentVariableUpdateResponse { createdAt, description, key, updatedAt }
/v2/vals/{val_id}/environment_variables/{key}
Delete
client.vals.environmentVariables.delete(stringkey, EnvironmentVariableDeleteParams { val_id } params, RequestOptionsoptions?): void
/v2/vals/{val_id}/environment_variables/{key}