Elipse Plant Manager — EPM Web API

Version 5.0.45

epmwebapi.dataobjectsfilter

class DataObjectsFilterType(enum.IntFlag):

Enumeration with all types of filter for Data Objects.

ExpressionVariable = <DataObjectsFilterType.ExpressionVariable: 2>
Inherited Members
builtins.int
conjugate
bit_length
bit_count
to_bytes
from_bytes
as_integer_ratio
real
imag
numerator
denominator
enum.Enum
name
value
class DataObjectsFilter:

Class representing a Data Object Filter.

DataObjectsFilter( type: DataObjectsFilterType = None, name: str = None, eu: str = None, description: str = None, domain: epmwebapi.domainfilter.DomainFilter = None)

Creates a new instance of a Data Object Filter.

Parameters
  • type: An optional parameter indicating a type of Data Object Filter. Default is None.
  • name: An optional parameter indicating a name to a Data Object Filter. Use * for All. Default is None.
  • eu: An optional parameter indicating an engineering unit of a Data Object Filter. Use * for All. Default is None.
  • description: An optional parameter indicating a description of a Data Object Filter. Use * for All. Default is None.
  • domain: Optional parameter indicating a Domain for a Data Object Filter. Possible values are 0 (zero, All), 1 (one, Continuous), or 2 (two, Discrete). Default is None.

Returns a type of Filter of a Data Object. Possible values are BasicVariable, ExpressionVariable or both. Default is None.

Returns

A DataObjectsFilterType object.

name: str

Returns the name of a Data Object Filter. Default is None.

Returns

A str with the name of a Data Object Filter. A value of * means "All".

eu: str

Returns the engineering unit of a Data Object Filter. Default is None.

Returns

A str with the engineering unit of a Data Object Filter. A value of * means "All".

description: str

Returns the description of a Data Object Filter. Default is None.

Returns

A str with the description of a Data Object Filter. A value of * means "All".

Returns the domain of a Data Object Filter. Default is None.

Returns

An epmwebapi.domainfilter.DomainFilter enumeration. Possible values are 0 (zero, All), 1 (one, Continuous), or 2 (two, Discrete).