EnvironmentOptions
class EnvironmentOptions(log_level='WARNING', callback=None, job_tags=<factory>)
Options related to the execution environment.
Parameters
-
log_level (
str
) – logging level to set in the execution environment. The valid log levels are:DEBUG
,INFO
,WARNING
,ERROR
, andCRITICAL
. The default level isWARNING
. -
callback (
Optional
[Callable
]) –Callback function to be invoked for any interim results and final result. The callback function will receive 2 positional parameters:
- Job ID
- Job result.
-
job_tags (
Optional
[List
]) – Tags to be assigned to the job. The tags can subsequently be used as a filter in theqiskit_ibm_runtime.qiskit_runtime_service.jobs()
function call.
Attributes
callback
Type: Callable | None
Default value: None
log_level
Type: str
Default value: 'WARNING'
job_tags
Type: List | None
Methods
validate_environment_options
static validate_environment_options(environment_options)
Validate that environment options are legal. :raises ValueError: if log_level is not in LogLevelType.
Return type
None