---
title: EnvironmentOptions (latest version)
description: API reference for qiskit_ibm_runtime.options.EnvironmentOptions in the latest version of qiskit-ibm-runtime
source: https://eu-de.quantum.cloud.ibm.com/docs/en/api/qiskit-ibm-runtime/options-environment-options
---

# EnvironmentOptions

*class* `EnvironmentOptions(log_level='WARNING', job_tags=None, private=False)`

[GitHub](https://github.com/Qiskit/qiskit-ibm-runtime/tree/stable/0.49/qiskit_ibm_runtime/options/environment_options.py#L28-L59)

Bases: `object`

Options related to the execution environment.

## Attributes

**Parameters**

- **log\_level** (*Literal\['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL']*)
- **job\_tags** (*list | None*)
- **private** (*bool | None*)

### job\_tags

Type: `list` | `None`

Default value: `None`

Tags to be assigned to the job.

The tags can subsequently be used as a filter in the `qiskit_ibm_runtime.qiskit_runtime_service.jobs()` function call.

Default: `None`.

### log\_level

Type: `Literal`\[`'DEBUG'`, `'INFO'`, `'WARNING'`, `'ERROR'`, `'CRITICAL'`]

Default value: `'WARNING'`

logging level to set in the execution environment.

The valid log levels are: `DEBUG`, `INFO`, `WARNING`, `ERROR`, and `CRITICAL`.

Default: `WARNING`.

### private

Type: `bool` | `None`

Default value: `False`

Boolean that indicates whether the job is marked as private.

When set to true, input parameters are not returned, and the results can only be read once. After the job is completed, input parameters are deleted from the service. After the results are read, these are also deleted from the service. When set to false, the input parameters and results follow the standard retention behavior of the API.

Default: False.

## Methods
